From eb1d4fdee478e7cd379c3dd4a89f81ad096155c6 Mon Sep 17 00:00:00 2001 From: Claudio Lanconelli Date: Mon, 25 Nov 2013 02:00:56 +0100 Subject: translation update --- inc/lang/it/lang.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'inc/lang/it') diff --git a/inc/lang/it/lang.php b/inc/lang/it/lang.php index 5300dfd2a..a2bde3b60 100644 --- a/inc/lang/it/lang.php +++ b/inc/lang/it/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Giorgio Vecchiocattivi * @author Roberto Bolli [http://www.rbnet.it/] * @author Silvia Sargentoni @@ -16,6 +16,7 @@ * @author Matteo Pasotti * @author snarchio@gmail.com * @author Edmondo Di Tucci + * @author Claudio Lanconelli */ $lang['encoding'] = 'utf-8'; $lang['direction'] = 'ltr'; @@ -298,6 +299,7 @@ $lang['i_policy'] = 'Regole di accesso iniziali'; $lang['i_pol0'] = 'Wiki Aperto (lettura, scrittura, caricamento file per tutti)'; $lang['i_pol1'] = 'Wiki Pubblico (lettura per tutti, scrittura e caricamento file per gli utenti registrati)'; $lang['i_pol2'] = 'Wiki Chiuso (lettura, scrittura, caricamento file solamente per gli utenti registrati)'; +$lang['i_allowreg'] = 'Permetti agli utenti di registrarsi'; $lang['i_retry'] = 'Riprova'; $lang['i_license'] = 'Per favore scegli la licenza sotto cui vuoi rilasciare il contenuto:'; $lang['i_license_none'] = 'Non mostrare informazioni sulla licenza'; @@ -335,3 +337,4 @@ $lang['media_perm_read'] = 'Spiacente, non hai abbastanza privilegi per le $lang['media_perm_upload'] = 'Spiacente, non hai abbastanza privilegi per caricare files.'; $lang['media_update'] = 'Carica nuova versione'; $lang['media_restore'] = 'Ripristina questa versione'; +$lang['searchresult'] = 'Risultati della ricerca'; -- cgit v1.2.3 From 58f98bfffb8d9736ce366d14524b41739f85e1d9 Mon Sep 17 00:00:00 2001 From: admin Date: Tue, 10 Dec 2013 15:26:39 +0100 Subject: translation update --- inc/lang/it/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'inc/lang/it') diff --git a/inc/lang/it/lang.php b/inc/lang/it/lang.php index a2bde3b60..b19ec9316 100644 --- a/inc/lang/it/lang.php +++ b/inc/lang/it/lang.php @@ -17,6 +17,7 @@ * @author snarchio@gmail.com * @author Edmondo Di Tucci * @author Claudio Lanconelli + * @author admin */ $lang['encoding'] = 'utf-8'; $lang['direction'] = 'ltr'; -- cgit v1.2.3 From ef00962189d77a87a26d132bd84cb7176e96e185 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Tue, 10 Dec 2013 16:05:43 +0100 Subject: Revert "Merge pull request #472 from dokuwiki-translate/lang_update_559" This reverts commit 32eed03cda7768e2efac40f1791c6b967d82778b, reversing changes made to 9e8bcd5f2ba2246ad2dff46d0313cb0c9e9f5579. I accidentally hit the wrong button on github :-) This translation added no new strings and should not have been merged. --- inc/lang/it/lang.php | 1 - 1 file changed, 1 deletion(-) (limited to 'inc/lang/it') diff --git a/inc/lang/it/lang.php b/inc/lang/it/lang.php index b19ec9316..a2bde3b60 100644 --- a/inc/lang/it/lang.php +++ b/inc/lang/it/lang.php @@ -17,7 +17,6 @@ * @author snarchio@gmail.com * @author Edmondo Di Tucci * @author Claudio Lanconelli - * @author admin */ $lang['encoding'] = 'utf-8'; $lang['direction'] = 'ltr'; -- cgit v1.2.3 From 138bfd16df9cb583107097f32be288b8705cd035 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Fri, 17 Jan 2014 15:36:34 +0100 Subject: localize jQuery UI date picker FS#2912 --- inc/lang/it/jquery.ui.datepicker.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 inc/lang/it/jquery.ui.datepicker.js (limited to 'inc/lang/it') diff --git a/inc/lang/it/jquery.ui.datepicker.js b/inc/lang/it/jquery.ui.datepicker.js new file mode 100644 index 000000000..a01f043f8 --- /dev/null +++ b/inc/lang/it/jquery.ui.datepicker.js @@ -0,0 +1,23 @@ +/* Italian initialisation for the jQuery UI date picker plugin. */ +/* Written by Antonello Pasella (antonello.pasella@gmail.com). */ +jQuery(function($){ + $.datepicker.regional['it'] = { + closeText: 'Chiudi', + prevText: '<Prec', + nextText: 'Succ>', + currentText: 'Oggi', + monthNames: ['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno', + 'Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'], + monthNamesShort: ['Gen','Feb','Mar','Apr','Mag','Giu', + 'Lug','Ago','Set','Ott','Nov','Dic'], + dayNames: ['Domenica','Lunedì','Martedì','Mercoledì','Giovedì','Venerdì','Sabato'], + dayNamesShort: ['Dom','Lun','Mar','Mer','Gio','Ven','Sab'], + dayNamesMin: ['Do','Lu','Ma','Me','Gi','Ve','Sa'], + weekHeader: 'Sm', + dateFormat: 'dd/mm/yy', + firstDay: 1, + isRTL: false, + showMonthAfterYear: false, + yearSuffix: ''}; + $.datepicker.setDefaults($.datepicker.regional['it']); +}); -- cgit v1.2.3