
- 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
41 lines
1008 B
PHP
41 lines
1008 B
PHP
<?php
|
|
$lang ['admin'] ['themes'] ['submenu'] = array(
|
|
'default' => 'Temas',
|
|
'style' => 'Estilos'
|
|
);
|
|
|
|
/* default panel action (change theme) */
|
|
$lang ['admin'] ['themes'] ['default'] = array(
|
|
'head1' => 'Tema actual',
|
|
|
|
'head2' => 'Temas disponibles',
|
|
'descr' => 'Seleccione el tema que desee utilizar',
|
|
|
|
'nodescr' => 'Falta descripción',
|
|
'noauthor' => 'Autor desconocido'
|
|
);
|
|
|
|
$lang ['admin'] ['themes'] ['default'] ['msgs'] = array(
|
|
1 => 'El tema ha cambiado.',
|
|
-1 => 'Error al intentar cambiar el tema.',
|
|
-2 => 'El tema eligido no existe.'
|
|
);
|
|
|
|
/* select style */
|
|
$lang ['admin'] ['themes'] ['style'] = array(
|
|
'head1' => 'Estilo actual',
|
|
|
|
'head2' => 'Estilos disponibles',
|
|
'descr' => 'Seleccione el estilo que desea usar con este tema',
|
|
|
|
'nodescr' => 'Falta descripción',
|
|
'noauthor' => 'Autor desconocido'
|
|
);
|
|
|
|
$lang ['admin'] ['themes'] ['style'] ['msgs'] = array(
|
|
1 => 'Se ha cambiado el estilo.',
|
|
-1 => 'Error al intentar cambiar el estilo.',
|
|
-2 => 'El estilo eligido no existe.'
|
|
);
|
|
?>
|