From 2b4ef3a49d43a37e0d281040abcc86ecf97a8edd Mon Sep 17 00:00:00 2001 From: Luca Marra Date: Mon, 8 Jul 2013 20:56:26 +0200 Subject: [PATCH] added italian locale --- locales/it_IT/translations.php | 103 +++++++++++++++++++++++++++++++++ model.php | 3 +- 2 files changed, 105 insertions(+), 1 deletion(-) create mode 100644 locales/it_IT/translations.php diff --git a/locales/it_IT/translations.php b/locales/it_IT/translations.php new file mode 100644 index 0000000..82624c5 --- /dev/null +++ b/locales/it_IT/translations.php @@ -0,0 +1,103 @@ + 'Articoli per pagina', + 'Previous page' => 'Pagina precedente', + 'Next page' => 'Pagina successiva', + 'Do not fetch the content of articles' => 'Non scaricare il contenuto degli articoli', + 'Remove automatically read items' => 'Cancella automaticamente articoli già letti', + 'Never' => 'Mai', + 'After %d day' => 'Dopo %d giorno', + 'After %d days' => 'Dopo %d giorni', + 'French' => 'Francese', + 'English' => 'Inglese', + 'German' => 'Tedesco', + 'Italian' => 'Italiano', + 'unread' => 'non letti', + 'bookmarks' => 'bookmark', + 'bookmark' => 'bookmark', + 'remove bookmark' => 'cancella bookmark', + 'Bookmarks' => 'Bookmark', + 'Bookmark item' => 'Aggiungi ai bookmark', + 'No bookmark' => 'Nessun bookmark', + 'history' => 'cronologia', + 'subscriptions' => 'sottoscrizioni', + 'Subscriptions' => 'Sottoscrizioni', + 'preferences' => 'preferenze', + 'Preferences' => 'Preferenze', + 'logout' => 'esci', + 'Username' => 'Utente', + 'Password' => 'Password', + 'Confirmation' => 'Conferma', + 'Language' => 'Lingua', + 'Save' => 'Salva', + 'More informations' => 'Altre informazioni', + 'Database' => 'Database', + 'Database size:' => 'Dimensione database :', + 'Optimize the database' => 'Ottimizza il database', + '(VACUUM command)' => '(comando VACUUM)', + 'Download the entire database' => 'Scarica l\'intero database', + '(Gzip compressed Sqlite file)' => '(Comprimi il file Sqlite con Gzip)', + 'Keyboard shortcuts' => 'Scorciatoie da tastiera', + 'Previous item' => 'Articolo precedente', + 'Next item' => 'Articolo successivo', + 'Mark as read or unread' => 'Segna come già letto o non letto', + 'Open original link' => 'Apri link originale', + 'Open item' => 'Apri articolo', + 'About' => 'Informazioni sul software', + 'Miniflux version:' => 'Versione Miniflux:', + 'Nothing to read' => 'Nichts zu lesen', + 'unread items' => 'articoli non letti', + 'mark all as read' => 'segna tutti come già letti', + 'original link' => 'link originale', + 'mark as read' => 'segna come già letto', + 'No history' => 'Nessuna cronologia', + 'mark as unread' => 'segna come non letto', + 'History' => 'Cronologia', + 'flush all items' => 'cancella tutti gli articoli', + 'Item not found' => 'Articolo non trovato', + 'Unread items' => 'Articoli non letti', + 'Next' => 'Successivo', + 'Previous' => 'Precedente', + 'Sign in' => 'Accedi', + 'feeds' => 'feeds', + 'add' => 'aggiungi', + 'import' => 'importa', + 'export' => 'esporta', + 'OPML Import' => 'Importa OPML', + 'OPML file' => 'file OPML', + 'Import' => 'Importa', + 'refresh all' => 'aggiorna tutti', + 'No subscription' => 'Nessuna sottoscrizione', + 'remove' => 'cancella', + 'refresh' => 'aggiorna', + 'feed link' => 'link feed', + 'New subscription' => 'Nuova sottoscrizione', + 'Website or Feed URL' => 'Sito web o URL del feed', + 'Add' => 'Aggiungi', + 'http://website/' => 'http://sitoweb/', + 'Yes' => 'Sì', + 'cancel' => 'annulla', + 'or' => 'o', + 'Official website:' => 'Sito ufficiale:', + 'Bad username or password' => 'Utente o password errati', + 'Unable to update your preferences.' => 'Impossibile aggiornare le preferenze.', + 'Your preferences are updated.' => 'Preferenze aggiornate.', + 'Unable to import your OPML file.' => 'Impossibile importare il file OPML.', + 'Your feeds have been imported.' => 'I tuoi feed sono stati importati.', + 'Unable to find a subscription.' => 'Impossibile effettuare sottoscrizione.', + 'Subscription added successfully.' => 'Sottoscrizione effettuata con successo.', + 'Your subscriptions are updated' => 'Sottoscrizioni aggiornate.', + 'Unable to remove this subscription.' => 'Impossibile rimuovere questa sottoscrizione.', + 'This subscription has been removed successfully.' => 'Sottoscrizione rimossa con successo.', + 'The user name is required' => 'Il nome utente è obbligatorio.', + 'The maximum length is 50 characters' => 'La lunghezza massima è di 50 caratteri.', + 'The password is required' => 'La password è obbligatoria.', + 'The minimum length is 6 characters' => 'La lunghezza minima è di 6 caratteri.', + 'The confirmation is required' => 'La conferma è obbligatoria.', + 'Passwords doesn\'t match' => 'Le password non coincidono', + 'Do you really want to remove these items from your history?' => 'Vuoi veramente cancellare questi articoli dalla cronologia?', + 'Do you really want to remove this subscription: "%s"?' => 'Vuoi veramente cancellare la sottoscrizione a: "%s" ?', + 'Nothing to read, do you want to update your subscriptions?' => + 'Niente da leggere, vuoi aggiornare tutte le sottoscrizioni?' +); diff --git a/model.php b/model.php index f873fc6..777dc3c 100644 --- a/model.php +++ b/model.php @@ -32,7 +32,8 @@ function get_languages() return array( 'en_US' => t('English'), 'fr_FR' => t('French'), - 'de_DE' => t('German') + 'de_DE' => t('German'), + 'it_IT' => t('Italian') ); }