
Added Japanese setup translation by North Hill Work Studios - thanks as well! Also: git:ignore for local test content folders
49 lines
1.1 KiB
PHP
49 lines
1.1 KiB
PHP
<?php
|
|
//Terminado 15 de fevereiro de 2020.
|
|
|
|
$lang['admin']['themes']['submenu'] = array(
|
|
'default' => 'Temas',
|
|
'style' => 'Estilos',
|
|
);
|
|
|
|
/* default panel action (change theme) */
|
|
|
|
$lang['admin']['themes']['default'] = array(
|
|
'head1' => 'Tema atual',
|
|
|
|
'head2' => 'Temas disponíveis',
|
|
'descr' => 'Selecione o tema que você deseja usar.',
|
|
|
|
'nodescr' => 'Sem descrição',
|
|
'noauthor' => 'Autor desconhecido',
|
|
|
|
);
|
|
|
|
$lang['admin']['themes']['default']['msgs'] = array(
|
|
1 => 'O tema foi alterado.',
|
|
-1 => 'Ocorreu um erro ao tentar alterar o tema.',
|
|
-2 => 'O tema que você escolheu não existe.'
|
|
);
|
|
|
|
|
|
/* select style */
|
|
|
|
$lang['admin']['themes']['style'] = array(
|
|
'head1' => 'Estilo atual',
|
|
|
|
'head2' => 'Estilos dispoíveis',
|
|
'descr' => 'Selecione o estilo que você deseja usar com este tema.',
|
|
|
|
'nodescr' => 'Sem descrição',
|
|
'noauthor' => 'Autor desconhecido',
|
|
);
|
|
|
|
$lang['admin']['themes']['style']['msgs'] = array(
|
|
1 => 'O estilo foi alterado',
|
|
-1 => 'Ocorreu um erro ao tentar alterar o estilo.',
|
|
-2 => 'O estilo que você escolheu não existe.'
|
|
);
|
|
|
|
|
|
?>
|