camaleon_cms 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of camaleon_cms might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/apps/plugins/front_cache/views/admin/settings.html.erb +4 -4
- data/app/assets/javascripts/admin/custom_fields.js +2 -2
- data/app/assets/javascripts/admin/data.js +3 -3
- data/app/assets/javascripts/admin/elfinder/i18n/elfinder.it.js +366 -0
- data/app/assets/javascripts/admin/it.js +23 -0
- data/app/assets/javascripts/admin/tinymce/langs/en.js +179 -0
- data/app/assets/javascripts/admin/tinymce/langs/it.js +219 -0
- data/app/helpers/admin/application_helper.rb +2 -2
- data/app/helpers/admin/menus_helper.rb +1 -1
- data/app/helpers/site_helper.rb +1 -1
- data/app/views/layouts/admin.html.erb +6 -7
- data/config/initializers/elfinder.rb +4 -20
- data/config/initializers/rufus_cron.rb +15 -42
- data/config/locales/admin/it.yml +600 -0
- data/config/locales/common.yml +61 -0
- data/config/locales/it.yml +205 -0
- data/config/locales/languages.yml +11 -1
- data/config/locales/routes.yml +8 -0
- data/config/system.json +2 -3
- data/lib/camaleon_cms/engine.rb +22 -26
- data/lib/camaleon_cms/version.rb +1 -1
- data/lib/generators/cplugin_template/app/apps/plugins/my_plugin/admin_controller.rb +3 -4
- data/lib/generators/cplugin_template/app/apps/plugins/my_plugin/front_controller.rb +3 -4
- data/lib/generators/cplugin_template/app/apps/plugins/my_plugin/main_helper.rb +2 -6
- metadata +8 -23
- data/app/apps/plugins/attack/assets/docs/images/screenshot_1.jpg +0 -0
- data/app/apps/plugins/attack/assets/docs/images/screenshot_2.jpg +0 -0
- data/app/apps/plugins/attack/assets/docs/images/screenshot_3.jpg +0 -0
- data/app/apps/plugins/attack/assets/docs/index.html +0 -60
- data/app/apps/plugins/contact_form/assets/docs/images/screenshot_1.jpg +0 -0
- data/app/apps/plugins/contact_form/assets/docs/images/screenshot_2.jpg +0 -0
- data/app/apps/plugins/contact_form/assets/docs/images/screenshot_3.jpg +0 -0
- data/app/apps/plugins/contact_form/assets/docs/images/screenshot_4.jpg +0 -0
- data/app/apps/plugins/contact_form/assets/docs/images/screenshot_5.jpg +0 -0
- data/app/apps/plugins/contact_form/assets/docs/index.html +0 -89
- data/app/apps/plugins/front_cache/assets/docs/images/screenshot_1.jpg +0 -0
- data/app/apps/plugins/front_cache/assets/docs/images/screenshot_2.jpg +0 -0
- data/app/apps/plugins/front_cache/assets/docs/index.html +0 -58
- data/app/apps/plugins/visibility_post/assets/docs/images/screenshot_1.jpg +0 -0
- data/app/apps/plugins/visibility_post/assets/docs/images/screenshot_2.jpg +0 -0
- data/app/apps/plugins/visibility_post/assets/docs/images/screenshot_3.jpg +0 -0
- data/app/apps/plugins/visibility_post/assets/docs/images/screenshot_4.jpg +0 -0
- data/app/apps/plugins/visibility_post/assets/docs/index.html +0 -62
- data/app/views/admin/plugins/info.html.erb +0 -47
- data/config/initializers/fix_ssl.rb +0 -25
- data/lib/ca-bundle.crt +0 -3554
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5830fa03ce317041674944ce490df0efda85a49a
|
4
|
+
data.tar.gz: 752e2b694adf04b736391ebbed33d66bb8045438
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c34446bf08bf3670f2226c111f8bec2f38a921ce453d055999f0e7d685a888e7c0f61db948f16181178a22f2d57901fc2686d3f27a0cc255e1fc692bd2c1bce6
|
7
|
+
data.tar.gz: 1347c27ddf41316c23f545ed8f287bbc92ac06e24cce339f19cab6234adc554d692a522c4235341a51c8e7f791fd7aa830937b91a538efa412c410614608bdff
|
@@ -56,10 +56,10 @@
|
|
56
56
|
</div>
|
57
57
|
</div>
|
58
58
|
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
59
|
+
<!--<div class="form-group">-->
|
60
|
+
<!--<label><%#= t('plugin.front_cache.message.enabled_cache_inner_content_logged_users') %></label><br>-->
|
61
|
+
<!--<%#= check_box_tag("cache[cache_login]", 1, @caches[:cache_login]) %>-->
|
62
|
+
<!--</div>-->
|
63
63
|
|
64
64
|
</div>
|
65
65
|
<div class="panel-footer">
|
@@ -87,7 +87,7 @@ function custom_field_editor($field){
|
|
87
87
|
var inputs = textarea.data("translation_inputs");
|
88
88
|
if(inputs){ // multiples languages
|
89
89
|
for(var lang in inputs){
|
90
|
-
tinymce.init($.extend({} ,DATA.tiny_mce.advanced, {selector: '#' + inputs[lang].attr("id"), height: 120}));
|
90
|
+
tinymce.init($.extend({} ,DATA.tiny_mce.advanced, {selector: '#' + inputs[lang].attr("id"), language: CURRENT_LOCALE, height: 120}));
|
91
91
|
}
|
92
92
|
return;
|
93
93
|
}
|
@@ -162,4 +162,4 @@ function load_upload_video_field(dom){
|
|
162
162
|
$input.val(file.url.to_url());
|
163
163
|
}
|
164
164
|
});
|
165
|
-
}
|
165
|
+
}
|
@@ -15,7 +15,7 @@ var DATA = {
|
|
15
15
|
toolbar_items_size: 'small',
|
16
16
|
//forced_root_block: '',
|
17
17
|
toolbar: "bold italic | alignleft aligncenter alignright alignjustify | fontselect fontsizeselect | bullist numlist | outdent indent | undo redo | link unlink image media | forecolor backcolor | styleselect template",
|
18
|
-
language:
|
18
|
+
language: CURRENT_LOCALE,
|
19
19
|
relative_urls: false,
|
20
20
|
remove_script_host: false,
|
21
21
|
browser_spellcheck : true,
|
@@ -73,7 +73,7 @@ var DATA = {
|
|
73
73
|
|
74
74
|
// Skin options
|
75
75
|
skin : "bootstrap",
|
76
|
-
language:
|
76
|
+
language: CURRENT_LOCALE
|
77
77
|
}
|
78
78
|
}
|
79
|
-
}
|
79
|
+
}
|
@@ -0,0 +1,366 @@
|
|
1
|
+
/**
|
2
|
+
* Italian translation
|
3
|
+
* @author Alberto Tocci <alberto.tocci@gmail.com>
|
4
|
+
* @version 2014-12-19
|
5
|
+
*/
|
6
|
+
if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object') {
|
7
|
+
elFinder.prototype.i18.it = {
|
8
|
+
translator : 'Alberto Tocci (alberto.tocci@gmail.com)',
|
9
|
+
language : 'Italiano',
|
10
|
+
direction : 'ltr',
|
11
|
+
dateFormat : 'd.m.Y H:i',
|
12
|
+
fancyDateFormat : '$1 H:i',
|
13
|
+
messages : {
|
14
|
+
|
15
|
+
/********************************** errors **********************************/
|
16
|
+
'error' : 'Errore',
|
17
|
+
'errUnknown' : 'Errore sconosciuto.',
|
18
|
+
'errUnknownCmd' : 'Comando sconosciuto.',
|
19
|
+
'errJqui' : 'Configurazione JQuery UI non valida. Devono essere inclusi i plugin Selectable, Draggable e Droppable.',
|
20
|
+
'errNode' : 'elFinder necessita dell\'elemento DOM per essere inizializzato.',
|
21
|
+
'errURL' : 'Configurazione non valida.Il parametro URL non è settato.',
|
22
|
+
'errAccess' : 'Accesso non consentito.',
|
23
|
+
'errConnect' : 'Impossibile collegarsi al backend.',
|
24
|
+
'errAbort' : 'Connessione terminata.',
|
25
|
+
'errTimeout' : 'Timeout di connessione.',
|
26
|
+
'errNotFound' : 'Backend non trovato.',
|
27
|
+
'errResponse' : 'Risposta non valida dal backend.',
|
28
|
+
'errConf' : 'Configurazione backend non valida.',
|
29
|
+
'errJSON' : 'Modulo PHP JSON non installato.',
|
30
|
+
'errNoVolumes' : 'Non è stato possibile leggere i volumi.',
|
31
|
+
'errCmdParams' : 'Parametri non validi per il comando "$1".',
|
32
|
+
'errDataNotJSON' : 'I dati non sono nel formato JSON.',
|
33
|
+
'errDataEmpty' : 'Stringa vuota.',
|
34
|
+
'errCmdReq' : 'Backend request requires command name.',
|
35
|
+
'errOpen' : 'Impossibile aprire "$1".',
|
36
|
+
'errNotFolder' : 'L\'oggetto non è una cartella..',
|
37
|
+
'errNotFile' : 'L\'oggetto non è un file.',
|
38
|
+
'errRead' : 'Impossibile leggere "$1".',
|
39
|
+
'errWrite' : 'Non è possibile scrivere in "$1".',
|
40
|
+
'errPerm' : 'Permesso negato.',
|
41
|
+
'errLocked' : '"$1" è bloccato e non può essere rinominato, spostato o eliminato.',
|
42
|
+
'errExists' : 'Il file "$1" è già esistente.',
|
43
|
+
'errInvName' : 'Nome file non valido.',
|
44
|
+
'errFolderNotFound' : 'Cartella non trovata.',
|
45
|
+
'errFileNotFound' : 'File non trovato.',
|
46
|
+
'errTrgFolderNotFound' : 'La cartella di destinazione"$1" non è stata trovata.',
|
47
|
+
'errPopup' : 'Il tuo Browser non consente di aprire finestre di pop-up. Per aprire il file abilita questa opzione nelle impostazioni del tuo Browser.',
|
48
|
+
'errMkdir' : 'Impossibile creare la cartella "$1".',
|
49
|
+
'errMkfile' : 'Impossibile creare il file "$1".',
|
50
|
+
'errRename' : 'Impossibile rinominare "$1".',
|
51
|
+
'errCopyFrom' : 'Non è possibile copiare file da "$1".',
|
52
|
+
'errCopyTo' : 'Non è possibile copiare file in "$1".',
|
53
|
+
'errUpload' : 'Errore di Caricamento.', // old name - errUploadCommon
|
54
|
+
'errUploadFile' : 'Impossibile Caricare "$1".', // old name - errUpload
|
55
|
+
'errUploadNoFiles' : 'Non sono stati specificati file da caricare.',
|
56
|
+
'errUploadTotalSize' : 'La dimensione totale dei file supera il limite massimo consentito.', // old name - errMaxSize
|
57
|
+
'errUploadFileSize' : 'Le dimensioni del file superano il massimo consentito.', // old name - errFileMaxSize
|
58
|
+
'errUploadMime' : 'FileType non consentito.',
|
59
|
+
'errUploadTransfer' : 'Trasferimento errato del file "$1".',
|
60
|
+
'errNotReplace' : 'Object "$1" already exists at this location and can not be replaced by object with another type.', // new
|
61
|
+
'errReplace' : 'Unable to replace "$1".',
|
62
|
+
'errSave' : 'Impossibile salvare "$1".',
|
63
|
+
'errCopy' : 'Impossibile copiare "$1".',
|
64
|
+
'errMove' : 'Impossibile spostare "$1".',
|
65
|
+
'errCopyInItself' : 'Sorgente e destinazione risultato essere uguali.',
|
66
|
+
'errRm' : 'Impossibile rimuovere "$1".',
|
67
|
+
'errRmSrc' : 'Unable remove source file(s).',
|
68
|
+
'errExtract' : 'Impossibile estrarre file da "$1".',
|
69
|
+
'errArchive' : 'Impossibile creare archivio.',
|
70
|
+
'errArcType' : 'Tipo di archivio non supportato.',
|
71
|
+
'errNoArchive' : 'Il file non è un archivio o contiene file non supportati.',
|
72
|
+
'errCmdNoSupport' : 'Il Backend non supporta questo comando.',
|
73
|
+
'errReplByChild' : 'La cartella $1 non può essere sostituita da un oggetto in essa contenuto.',
|
74
|
+
'errArcSymlinks' : 'Per questioni di sicurezza non è possibile estrarre archivi che contengono collegamenti..',
|
75
|
+
'errArcMaxSize' : 'La dimensione dell\'archivio supera le massime dimensioni consentite.',
|
76
|
+
'errResize' : 'Impossibile ridimensionare "$1".',
|
77
|
+
'errResizeDegree' : 'Invalid rotate degree.', // added 7.3.2013
|
78
|
+
'errResizeRotate' : 'Image dose not rotated.', // added 7.3.2013
|
79
|
+
'errResizeSize' : 'Invalid image size.', // added 7.3.2013
|
80
|
+
'errResizeNoChange' : 'Image size not changed.', // added 7.3.2013
|
81
|
+
'errUsupportType' : 'FileType non supportato.',
|
82
|
+
'errNotUTF8Content' : 'File "$1" is not in UTF-8 and cannot be edited.', // added 9.11.2011
|
83
|
+
'errNetMount' : 'Unable to mount "$1".', // added 17.04.2012
|
84
|
+
'errNetMountNoDriver' : 'Unsupported protocol.', // added 17.04.2012
|
85
|
+
'errNetMountFailed' : 'Mount failed.', // added 17.04.2012
|
86
|
+
'errNetMountHostReq' : 'Host required.', // added 18.04.2012
|
87
|
+
'errSessionExpires' : 'Your session has expired due to inactivity.',
|
88
|
+
'errCreatingTempDir' : 'Unable to create temporary directory: "$1"',
|
89
|
+
'errFtpDownloadFile' : 'Unable to download file from FTP: "$1"',
|
90
|
+
'errFtpUploadFile' : 'Unable to upload file to FTP: "$1"',
|
91
|
+
'errFtpMkdir' : 'Unable to create remote directory on FTP: "$1"',
|
92
|
+
'errArchiveExec' : 'Error while archiving files: "$1"',
|
93
|
+
'errExtractExec' : 'Error while extracting files: "$1"',
|
94
|
+
|
95
|
+
/******************************* commands names ********************************/
|
96
|
+
'cmdarchive' : 'Crea Archivio',
|
97
|
+
'cmdback' : 'Indietro',
|
98
|
+
'cmdcopy' : 'Copia',
|
99
|
+
'cmdcut' : 'Taglia',
|
100
|
+
'cmddownload' : 'Download',
|
101
|
+
'cmdduplicate' : 'Duplica',
|
102
|
+
'cmdedit' : 'Modifica File',
|
103
|
+
'cmdextract' : 'Estrai Archivio',
|
104
|
+
'cmdforward' : 'Avanti',
|
105
|
+
'cmdgetfile' : 'Seleziona File',
|
106
|
+
'cmdhelp' : 'About',
|
107
|
+
'cmdhome' : 'Home',
|
108
|
+
'cmdinfo' : 'Informazioni',
|
109
|
+
'cmdmkdir' : 'Nuova cartella',
|
110
|
+
'cmdmkfile' : 'Nuovo file di testo',
|
111
|
+
'cmdopen' : 'Apri',
|
112
|
+
'cmdpaste' : 'Incolla',
|
113
|
+
'cmdquicklook' : 'Anteprima',
|
114
|
+
'cmdreload' : 'Ricarica',
|
115
|
+
'cmdrename' : 'Rinomina',
|
116
|
+
'cmdrm' : 'Cancella',
|
117
|
+
'cmdsearch' : 'Ricerca file',
|
118
|
+
'cmdup' : 'Vai alla directory padre',
|
119
|
+
'cmdupload' : 'Carica File',
|
120
|
+
'cmdview' : 'Visualizza',
|
121
|
+
'cmdresize' : 'Ridimensiona Immagine',
|
122
|
+
'cmdsort' : 'Ordina',
|
123
|
+
'cmdnetmount' : 'Mount network volume', // added 18.04.2012
|
124
|
+
|
125
|
+
/*********************************** buttons ***********************************/
|
126
|
+
'btnClose' : 'Chiudi',
|
127
|
+
'btnSave' : 'Salva',
|
128
|
+
'btnRm' : 'Rimuovi',
|
129
|
+
'btnApply' : 'Applica',
|
130
|
+
'btnCancel' : 'Cancella',
|
131
|
+
'btnNo' : 'No',
|
132
|
+
'btnYes' : 'Si',
|
133
|
+
'btnMount' : 'Mount', // added 18.04.2012
|
134
|
+
|
135
|
+
/******************************** notifications ********************************/
|
136
|
+
'ntfopen' : 'Apri cartella',
|
137
|
+
'ntffile' : 'Apri file',
|
138
|
+
'ntfreload' : 'Ricarica il contenuto della cartella',
|
139
|
+
'ntfmkdir' : 'Creazione delle directory in corso',
|
140
|
+
'ntfmkfile' : 'Creazione dei files in corso',
|
141
|
+
'ntfrm' : 'Cancellazione files in corso',
|
142
|
+
'ntfcopy' : 'Copia file in corso',
|
143
|
+
'ntfmove' : 'Spostamento file in corso',
|
144
|
+
'ntfprepare' : 'Inizializzando la copia dei file.',
|
145
|
+
'ntfrename' : 'Sto rinominando i file',
|
146
|
+
'ntfupload' : 'Caricamento file in corso',
|
147
|
+
'ntfdownload' : 'Downloading file in corso',
|
148
|
+
'ntfsave' : 'Salvataggio file in corso',
|
149
|
+
'ntfarchive' : 'Creazione archivio in corso',
|
150
|
+
'ntfextract' : 'Estrazione file dall\'archivio in corso',
|
151
|
+
'ntfsearch' : 'Ricerca files in corso',
|
152
|
+
'ntfresize' : 'Resizing images',
|
153
|
+
'ntfsmth' : 'Operazione in corso. Attendere...',
|
154
|
+
'ntfloadimg' : 'Caricamento immagine in corso',
|
155
|
+
'ntfnetmount' : 'Mounting network volume', // added 18.04.2012
|
156
|
+
'ntfdim' : 'Acquiring image dimension', // added 20.05.2013
|
157
|
+
|
158
|
+
/************************************ dates **********************************/
|
159
|
+
'dateUnknown' : 'sconosciuto',
|
160
|
+
'Today' : 'Oggi',
|
161
|
+
'Yesterday' : 'Ieri',
|
162
|
+
'msJan' : 'Gen',
|
163
|
+
'msFeb' : 'Feb',
|
164
|
+
'msMar' : 'Mar',
|
165
|
+
'msApr' : 'Apr',
|
166
|
+
'msMay' : 'Mag',
|
167
|
+
'msJun' : 'Giu',
|
168
|
+
'msJul' : 'Lug',
|
169
|
+
'msAug' : 'Ago',
|
170
|
+
'msSep' : 'Set',
|
171
|
+
'msOct' : 'Ott',
|
172
|
+
'msNov' : 'Nov',
|
173
|
+
'msDec' : 'Dic',
|
174
|
+
'January' : 'January',
|
175
|
+
'February' : 'February',
|
176
|
+
'March' : 'March',
|
177
|
+
'April' : 'April',
|
178
|
+
'May' : 'May',
|
179
|
+
'June' : 'June',
|
180
|
+
'July' : 'July',
|
181
|
+
'August' : 'August',
|
182
|
+
'September' : 'September',
|
183
|
+
'October' : 'October',
|
184
|
+
'November' : 'November',
|
185
|
+
'December' : 'December',
|
186
|
+
'Sunday' : 'Sunday',
|
187
|
+
'Monday' : 'Monday',
|
188
|
+
'Tuesday' : 'Tuesday',
|
189
|
+
'Wednesday' : 'Wednesday',
|
190
|
+
'Thursday' : 'Thursday',
|
191
|
+
'Friday' : 'Friday',
|
192
|
+
'Saturday' : 'Saturday',
|
193
|
+
'Sun' : 'Sun',
|
194
|
+
'Mon' : 'Mon',
|
195
|
+
'Tue' : 'Tue',
|
196
|
+
'Wed' : 'Wed',
|
197
|
+
'Thu' : 'Thu',
|
198
|
+
'Fri' : 'Fri',
|
199
|
+
'Sat' : 'Sat',
|
200
|
+
|
201
|
+
/******************************** sort variants ********************************/
|
202
|
+
'sortname' : 'per nome',
|
203
|
+
'sortkind' : 'per tipo',
|
204
|
+
'sortsize' : 'per dimensione',
|
205
|
+
'sortdate' : 'per data',
|
206
|
+
'sortFoldersFirst' : 'cartelle in testa',
|
207
|
+
|
208
|
+
/********************************** messages **********************************/
|
209
|
+
'confirmReq' : 'Conferma richiesta',
|
210
|
+
'confirmRm' : 'Sei sicuro di voler rimuovere i file?<br />L\'operazione non è reversibile!',
|
211
|
+
'confirmRepl' : 'Sostituire i file ?',
|
212
|
+
'apllyAll' : 'Applica a tutti',
|
213
|
+
'name' : 'Nome',
|
214
|
+
'size' : 'Dimensione',
|
215
|
+
'perms' : 'Permessi',
|
216
|
+
'modify' : 'Modificato il',
|
217
|
+
'kind' : 'Tipo',
|
218
|
+
'read' : 'lettura',
|
219
|
+
'write' : 'scrittura',
|
220
|
+
'noaccess' : 'nessun accesso',
|
221
|
+
'and' : 'e',
|
222
|
+
'unknown' : 'sconosciuto',
|
223
|
+
'selectall' : 'Seleziona tutti i file',
|
224
|
+
'selectfiles' : 'Seleziona file',
|
225
|
+
'selectffile' : 'Seleziona il primo file',
|
226
|
+
'selectlfile' : 'Seleziona l\'ultimo file',
|
227
|
+
'viewlist' : 'Visualizza Elenco',
|
228
|
+
'viewicons' : 'Visualizza Icone',
|
229
|
+
'places' : 'Places',
|
230
|
+
'calc' : 'Calcola',
|
231
|
+
'path' : 'Percorso',
|
232
|
+
'aliasfor' : 'Alias per',
|
233
|
+
'locked' : 'Bloccato',
|
234
|
+
'dim' : 'Dimensioni',
|
235
|
+
'files' : 'File',
|
236
|
+
'folders' : 'Cartelle',
|
237
|
+
'items' : 'Oggetti',
|
238
|
+
'yes' : 'si',
|
239
|
+
'no' : 'no',
|
240
|
+
'link' : 'Collegamento',
|
241
|
+
'searcresult' : 'Risultati ricerca',
|
242
|
+
'selected' : 'oggetti selezionati',
|
243
|
+
'about' : 'About',
|
244
|
+
'shortcuts' : 'Scorciatoie',
|
245
|
+
'help' : 'Help',
|
246
|
+
'webfm' : 'Web file manager',
|
247
|
+
'ver' : 'Versione',
|
248
|
+
'protocolver' : 'versione protocollo',
|
249
|
+
'homepage' : 'Home del progetto',
|
250
|
+
'docs' : 'Documentazione',
|
251
|
+
'github' : 'Seguici su Github',
|
252
|
+
'twitter' : 'Seguici su Twitter',
|
253
|
+
'facebook' : 'Seguici su Facebook',
|
254
|
+
'team' : 'Team',
|
255
|
+
'chiefdev' : 'sviluppatore capo',
|
256
|
+
'developer' : 'sviluppatore',
|
257
|
+
'contributor' : 'collaboratore',
|
258
|
+
'maintainer' : 'maintainer',
|
259
|
+
'translator' : 'traduttore',
|
260
|
+
'icons' : 'Icone',
|
261
|
+
'dontforget' : 'e non dimenticate di portare l\'asciugamano',
|
262
|
+
'shortcutsof' : 'Scorciatoie disabilitate',
|
263
|
+
'dropFiles' : 'Trascina i file qui',
|
264
|
+
'or' : 'o',
|
265
|
+
'selectForUpload' : 'Seleziona file da caricare',
|
266
|
+
'moveFiles' : 'Sposta file',
|
267
|
+
'copyFiles' : 'Copia file',
|
268
|
+
'rmFromPlaces' : 'Rimuovi da places',
|
269
|
+
'aspectRatio' : 'Proporzioni',
|
270
|
+
'scale' : 'Scala',
|
271
|
+
'width' : 'Larghezza',
|
272
|
+
'height' : 'Altezza',
|
273
|
+
'resize' : 'Ridimensione',
|
274
|
+
'crop' : 'Ritaglia',
|
275
|
+
'rotate' : 'Ruota',
|
276
|
+
'rotate-cw' : 'Ruota di 90° in senso orario',
|
277
|
+
'rotate-ccw' : 'Ruota di 90° in senso antiorario',
|
278
|
+
'degree' : 'Gradi',
|
279
|
+
'netMountDialogTitle' : 'Mount network volume', // added 18.04.2012
|
280
|
+
'protocol' : 'Protocol', // added 18.04.2012
|
281
|
+
'host' : 'Host', // added 18.04.2012
|
282
|
+
'port' : 'Port', // added 18.04.2012
|
283
|
+
'user' : 'User', // added 18.04.2012
|
284
|
+
'pass' : 'Password', // added 18.04.2012
|
285
|
+
|
286
|
+
/********************************** mimetypes **********************************/
|
287
|
+
'kindUnknown' : 'Sconosciuto',
|
288
|
+
'kindFolder' : 'Cartella',
|
289
|
+
'kindAlias' : 'Alias',
|
290
|
+
'kindAliasBroken' : 'Alias guasto',
|
291
|
+
// applications
|
292
|
+
'kindApp' : 'Applicazione',
|
293
|
+
'kindPostscript' : 'Documento Postscript',
|
294
|
+
'kindMsOffice' : 'Documento Microsoft Office',
|
295
|
+
'kindMsWord' : 'Documento Microsoft Word',
|
296
|
+
'kindMsExcel' : 'Documento Microsoft Excel',
|
297
|
+
'kindMsPP' : 'Presentazione Microsoft Powerpoint',
|
298
|
+
'kindOO' : 'Documento Open Office',
|
299
|
+
'kindAppFlash' : 'Applicazione Flash',
|
300
|
+
'kindPDF' : 'Documento PDF',
|
301
|
+
'kindTorrent' : 'File Bittorrent',
|
302
|
+
'kind7z' : 'Archivio 7z',
|
303
|
+
'kindTAR' : 'Archivio TAR',
|
304
|
+
'kindGZIP' : 'Archivio GZIP',
|
305
|
+
'kindBZIP' : 'Archivio BZIP',
|
306
|
+
'kindXZ' : 'Archivio XZ',
|
307
|
+
'kindZIP' : 'Archivio ZIP',
|
308
|
+
'kindRAR' : 'Archivio RAR',
|
309
|
+
'kindJAR' : 'File Java JAR',
|
310
|
+
'kindTTF' : 'Font True Type',
|
311
|
+
'kindOTF' : 'Font Open Type',
|
312
|
+
'kindRPM' : 'Pacchetto RPM',
|
313
|
+
// texts
|
314
|
+
'kindText' : 'Documento di testo',
|
315
|
+
'kindTextPlain' : 'Testo Semplice',
|
316
|
+
'kindPHP' : 'File PHP',
|
317
|
+
'kindCSS' : 'File CSS (Cascading Style Sheet)',
|
318
|
+
'kindHTML' : 'Documento HTML',
|
319
|
+
'kindJS' : 'File Javascript',
|
320
|
+
'kindRTF' : 'File RTF (Rich Text Format)',
|
321
|
+
'kindC' : 'File C',
|
322
|
+
'kindCHeader' : 'File C (header)',
|
323
|
+
'kindCPP' : 'File C++',
|
324
|
+
'kindCPPHeader' : 'File C++ (header)',
|
325
|
+
'kindShell' : 'Script Unix shell',
|
326
|
+
'kindPython' : 'File Python',
|
327
|
+
'kindJava' : 'File Java',
|
328
|
+
'kindRuby' : 'File Ruby',
|
329
|
+
'kindPerl' : 'File Perl',
|
330
|
+
'kindSQL' : 'File SQL',
|
331
|
+
'kindXML' : 'File XML',
|
332
|
+
'kindAWK' : 'File AWK',
|
333
|
+
'kindCSV' : 'File CSV (Comma separated values)',
|
334
|
+
'kindDOCBOOK' : 'File Docbook XML',
|
335
|
+
// images
|
336
|
+
'kindImage' : 'Immagine',
|
337
|
+
'kindBMP' : 'Immagine BMP',
|
338
|
+
'kindJPEG' : 'Immagine JPEG',
|
339
|
+
'kindGIF' : 'Immagine GIF',
|
340
|
+
'kindPNG' : 'Immagine PNG',
|
341
|
+
'kindTIFF' : 'Immagine TIFF',
|
342
|
+
'kindTGA' : 'Immagine TGA',
|
343
|
+
'kindPSD' : 'Immagine Adobe Photoshop',
|
344
|
+
'kindXBITMAP' : 'Immagine X bitmap',
|
345
|
+
'kindPXM' : 'Immagine Pixelmator',
|
346
|
+
// media
|
347
|
+
'kindAudio' : 'File Audio',
|
348
|
+
'kindAudioMPEG' : 'Audio MPEG',
|
349
|
+
'kindAudioMPEG4' : 'Audio MPEG-4',
|
350
|
+
'kindAudioMIDI' : 'Audio MIDI',
|
351
|
+
'kindAudioOGG' : 'Audio Ogg Vorbis',
|
352
|
+
'kindAudioWAV' : 'Audio WAV',
|
353
|
+
'AudioPlaylist' : 'Playlist MP3',
|
354
|
+
'kindVideo' : 'File Video',
|
355
|
+
'kindVideoDV' : 'Filmato DV',
|
356
|
+
'kindVideoMPEG' : 'Filmato MPEG',
|
357
|
+
'kindVideoMPEG4' : 'Filmato MPEG-4',
|
358
|
+
'kindVideoAVI' : 'Filmato AVI',
|
359
|
+
'kindVideoMOV' : 'Filmato Quick Time',
|
360
|
+
'kindVideoWM' : 'Filmato Windows Media',
|
361
|
+
'kindVideoFlash' : 'Filmato Flash',
|
362
|
+
'kindVideoMKV' : 'Filmato Matroska',
|
363
|
+
'kindVideoOGG' : 'Filmato Ogg'
|
364
|
+
}
|
365
|
+
};
|
366
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
$.extend($.validator.messages, {
|
2
|
+
required: "Questo campo è obbligatorio.",
|
3
|
+
remote: "Si prega di compilare questo campo.",
|
4
|
+
email: "Inserire un indirizzo email valido.",
|
5
|
+
url: "Inserire una URL valida.",
|
6
|
+
date: "Inserire una data valida.",
|
7
|
+
dateISO: "Inserire una data (ISO) valida.",
|
8
|
+
number: "Inserire un numero valido.",
|
9
|
+
digits: "Inserisci solo cifre.",
|
10
|
+
creditcard: "Inserire una tessera valida.",
|
11
|
+
equalTo: "Inserisci di nuovo lo stesso valore.",
|
12
|
+
extension: "Inserisci un valore con un'estensione valida.",
|
13
|
+
maxlength: $.validator.format("Non scrivere più di {0} caratteri."),
|
14
|
+
minlength: $.validator.format("Non scrivere meno di {0} caratteri."),
|
15
|
+
rangelength: $.validator.format("Inserisci un valore compreso tra {0} e {1} caratteri."),
|
16
|
+
range: $.validator.format("Inserisci un valore tra {0} e {1}."),
|
17
|
+
max: $.validator.format("Inserisci un valore minore o uguale a {0}."),
|
18
|
+
min: $.validator.format("Inserisci un valore maggiore o uguale a {0}."),
|
19
|
+
nifES: "Inserisci un NIF valido.",
|
20
|
+
nieES: "Inserisci un NIE valido.",
|
21
|
+
cifES: "Inserisci un CIF valido.",
|
22
|
+
file_format: "Formato archivio non permesso."
|
23
|
+
});
|