From 2fa786d3921f8a41117cfefe2215b204b6501b0a Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Thu, 16 Dec 2010 08:14:25 +0000 Subject: [PATCH] MINOR Added it_IT javascript translation (fixes #6265, thanks giulio) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@115126 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- javascript/lang/it_IT.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 javascript/lang/it_IT.js diff --git a/javascript/lang/it_IT.js b/javascript/lang/it_IT.js new file mode 100644 index 00000000000..fc36307fe17 --- /dev/null +++ b/javascript/lang/it_IT.js @@ -0,0 +1,15 @@ +if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') { + console.error('Class ss.i18n not defined'); +} else { + ss.i18n.addDictionary('fr_FR', { + 'VALIDATOR.FIELDREQUIRED': 'Completare il campo "%s", che è obbligatorio.', + 'HASMANYFILEFIELD.UPLOADING': 'Invio file... %s', + 'TABLEFIELD.DELETECONFIRMMESSAGE': 'Si è sicuri di voler eliminare questo elemento?', + 'LOADING': 'caricamento...', + 'UNIQUEFIELD.SUGGESTED': "Cambiare il valore di '%s': %s", + 'UNIQUEFIELD.ENTERNEWVALUE': 'È necessario scegliere un\'altro valore per questo campo', + 'UNIQUEFIELD.CANNOTLEAVEEMPTY': 'Questo campo non può essere lasciato vuoto', + 'RESTRICTEDTEXTFIELD.CHARCANTBEUSED': "Il carattere '%s' non può essere utilizzato in questo campo", + 'UPDATEURL.CONFIRM': 'Volete cambiare l\'URL in:\n\n%s/\n\nClicca OK per cambiare l\'URL, clicca Annuler per lasciarla a:\n\n%s' + }); +} \ No newline at end of file