
- 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
33 lines
1.1 KiB
PHP
Executable File
33 lines
1.1 KiB
PHP
Executable File
<?php
|
|
$lang ['admin'] ['plugin'] ['submenu'] = array (
|
|
'default' => 'Manage Plugins'
|
|
);
|
|
|
|
/* main plugin panel */
|
|
$lang ['admin'] ['plugin'] ['default'] = array(
|
|
'head' => 'Manage Plugins',
|
|
'enable' => 'Enable',
|
|
'disable' => 'Disable',
|
|
'descr' => 'A <a class="hint" ' .
|
|
'href="https://wiki.flatpress.org/doc:techfaq#plugins" target="_blank" title="What is a plugin?">Plugin</a> is a component which can expand the capabilities of FlatPress.</p>' .
|
|
'<p>You can install plugins by uploading them in your <code>fp-plugins/</code> directory.</p><p>This panel allows you to enable and disable plugins.',
|
|
'name' => 'Name',
|
|
'description' => 'Description',
|
|
'author' => 'Author',
|
|
'version' => 'Version',
|
|
'action' => 'Action'
|
|
);
|
|
|
|
$lang ['admin'] ['plugin'] ['default'] ['msgs'] = array(
|
|
1 => 'Config saved',
|
|
-1 => 'An error occurred while trying to save. This may happen for several reasons: maybe your file contains syntax errors.'
|
|
);
|
|
|
|
/* system errors */
|
|
$lang ['admin'] ['plugin'] ['errors'] = array(
|
|
'head' => 'The following errors were encountered while loading plugins:',
|
|
'notfound' => 'Plugin was not found. Skipped.',
|
|
'generic' => 'Error number %d'
|
|
);
|
|
?>
|