35 lines
838 B
PHP
35 lines
838 B
PHP
<?php
|
|
$lang ['admin'] ['head'] = 'Pannello di controllo';
|
|
|
|
$lang ['admin'] ['panels'] = array(
|
|
'main' => 'Principale',
|
|
'config' => 'Opzioni',
|
|
// 'users' => 'Utenti',
|
|
'entry' => 'Articoli',
|
|
'static' => 'Pagine statiche',
|
|
'uploader' => 'Caricatore',
|
|
'widgets' => 'Widget',
|
|
// 'add' => 'Aggiungi',
|
|
// 'edit' => 'Modifica/Elimina',
|
|
'maintain' => 'Manutenzione',
|
|
'plugin' => 'Plugin',
|
|
'themes' => 'Temi'
|
|
// 'updates' => 'Aggiornamenti',
|
|
);
|
|
|
|
$lang ['admin'] ['general'] = array(
|
|
'id' => 'Id', # for entry ids
|
|
'name' => 'Nome', # for file names
|
|
'title' => 'Titolo', # for entry/posts/static titles
|
|
'comments' => '#Commenti',
|
|
'author' => 'Autore',
|
|
'actdel' => 'Elimina',
|
|
'actedit' => 'Modifica',
|
|
'actenable' => 'Abilita',
|
|
'actdisable' => 'Disabilita',
|
|
'startpage' => 'Pagina iniziale',
|
|
'logout' => 'Disconnessione'
|
|
);
|
|
|
|
?>
|