Merge pull request #204 from Fraenkiman/master

Update Italian language files and Author for the welcome entry
This commit is contained in:
Arvid Zimmermann 2023-04-10 13:44:49 +02:00 committed by GitHub
commit ce8d511893
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 18 additions and 15 deletions

View File

@ -4,17 +4,17 @@ $lang ['admin'] ['head'] = 'Pannello di controllo';
$lang ['admin'] ['panels'] = array(
'main' => 'Principale',
'config' => 'Opzioni',
// 'users' => 'Users',
// 'users' => 'Utenti',
'entry' => 'Articoli',
'static' => 'Pagine statiche',
'uploader' => 'Caricatore',
'widgets' => 'Widget',
// 'add' => 'Add',
// 'edit' => 'Edit/Delete',
// 'add' => 'Aggiungi',
// 'edit' => 'Modifica/Elimina',
'maintain' => 'Manutenzione',
'plugin' => 'Plugin',
'themes' => 'Temi'
// 'updates' => 'Updates',
// 'updates' => 'Aggiornamenti',
);
$lang ['admin'] ['general'] = array(
@ -23,7 +23,7 @@ $lang ['admin'] ['general'] = array(
'title' => 'Titolo', # for entry/posts/static titles
'comments' => '#Commenti',
'author' => 'Autore',
'actdel' => 'Eliimina',
'actdel' => 'Elimina',
'actedit' => 'Modifica',
'actenable' => 'Abilita',
'actdisable' => 'Disabilita',

View File

@ -61,7 +61,7 @@ $lang ['staticauthor'] = array(
$lang ['entryauthor'] = array(
// "Posted by" in entry pages
'posted_by' => 'Postato da',
'posted_by' => 'Pubblicato da',
'at' => 'a'
);

0
fp-interface/sharedtpls/contact.tpl Executable file → Normal file
View File

View File

@ -23,10 +23,10 @@ $lang ['admin'] ['entry'] ['commentcenter'] = array(
'entries' => 'Articoli',
'categories' => 'Categorie',
'nopolicies' => 'Non c\'è nessuna regola.',
'all_entries' => 'Tutti i post',
'fol_entries' => 'La regola è applicata ai seguenti post:',
'all_entries' => 'Tutti gli articoli',
'fol_entries' => 'La regola è applicata ai seguenti articoli:',
'fol_cats' => 'La regola è applicata ai post nelle seguenti categorie:',
'older' => 'La regola è applicata ai post più vecchi di %d giorno/i.',
'older' => 'La regola è applicata agli articoli più vecchi di %d giorno/i.',
'allow' => 'Permetti di commentare',
'block' => 'Blocca i commenti',
'approvation' => 'I commenti devono essere approvati',
@ -105,7 +105,7 @@ $lang ['admin'] ['entry'] ['commentcenter'] = array(
'delc_descm' => 'Stai per eliminare questi commenti: ',
// Manage comments page
'man_searcht' => 'Cerca un post',
'man_searcht' => 'Cerca un articolo',
'man_searchd' => 'Inserisci l\'id dell\'articolo di cui vuoi gestire i commenti.',
'man_search' => 'Cerca',
'man_commfor' => 'Commenti di %s',
@ -136,7 +136,7 @@ $lang ['admin'] ['entry'] ['commentcenter'] = array(
-2 => 'Si è verificato un errore durante il salvataggio della regola (forse le tue opzioni sono scorrette).',
3 => 'Regola spostata.',
-3 => 'Si è verificato un errore nello spostamento della regola (o non la si può muovere).',
-3 => 'Si è verificato un errore nello spostamento della regola (o non la si può spostare).',
4 => 'Regole rimosse.',
-4 => 'Si è verificato un errore durante la rimozione delle regole (o non hai selezionato nessuna regola).',

View File

@ -19,7 +19,7 @@ $lang ['plugin'] ['seometataginfo'] = array(
'blog_page' => 'Blog',
'archive' => 'Archivio',
'category' => 'Categoria',
'tag' => 'Tag',
'tag' => 'Etichetta',
'contact' => 'Contatto',
'comments' => 'Commenti',
'pagenum' => 'Pagina #'

View File

@ -12,7 +12,8 @@ function check_step() {
'subject' => $vl ['entry'] ['subject'],
'content' => $vl ['entry'] ['content'],
'date' => time(),
'version' => system_ver()
'version' => system_ver(),
'author' => 'FlatPress'
));
if (!static_exists('menu')) {
@ -20,7 +21,8 @@ function check_step() {
'subject' => $vl ['menu'] ['subject'],
'content' => $vl ['menu'] ['content'],
'date' => time(),
'version' => system_ver()
'version' => system_ver(),
'author' => 'FlatPress'
), 'menu');
}
if (!static_exists('about')) {
@ -28,7 +30,8 @@ function check_step() {
'subject' => $vl ['about'] ['subject'],
'content' => $vl ['about'] ['content'],
'date' => time(),
'version' => system_ver()
'version' => system_ver(),
'author' => 'FlatPress'
), 'about');
}
}