
- For future new language packs, a clean basis has been created with the existing language packs. - Removed unnecessary line breaks, spaces and tabs to avoid unexpected views in the responsive design. - Updated links to external sources. - Missing language files created in plugins. - Gallerycaptions plugin: cs-cz, el-gr, es-es, fr-fr, ja-jp, nl-nl - Mediamanager plugin: el-gr, fr-fr - PhotoSwipe plugin: cs-cz, el-gr, es-es, fr-fr, ja-jp, nl-nl - Readmore plugin: el-gr, fr-fr - Seometataginfo plugin: pt-br
25 lines
988 B
PHP
25 lines
988 B
PHP
<?php
|
|
$lang ['admin'] ['widgets'] ['submenu'] ['blockparser'] = 'BlockParser Widgets';
|
|
|
|
$lang ['admin'] ['widgets'] ['blockparser'] = array(
|
|
'head' => 'BlockParser Widgets',
|
|
'description' => 'BlockParser plugin allows you to create a widget from a static page. </p>' .
|
|
'<p>Select one or more static pages from the list to make a corresponding widget available.</p>' .
|
|
'<p>Each <a href="?p=static&action=write">new static page</a> you create will be listed here.',
|
|
|
|
'id' => 'Static page',
|
|
'title' => 'Title',
|
|
'action' => 'Action',
|
|
'enable' => 'Enable',
|
|
'disable' => 'Disable',
|
|
'edit' => 'Edit'
|
|
);
|
|
|
|
$lang ['admin'] ['widgets'] ['blockparser'] ['msgs'] = array(
|
|
1 => 'Your new widget is available. Add it to your blog from the <a href="?p=widgets">main panel!</a>',
|
|
-1 => 'Can\'t create the requested widget',
|
|
2 => 'You have disabled a widget: don\'t forget to remove any references from the <a href="?p=widgets">main panel</a>!',
|
|
-2 => 'Can\'t disable the widget'
|
|
);
|
|
?>
|