camaleon_cms 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of camaleon_cms might be problematic. Click here for more details.

Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/app/apps/plugins/front_cache/views/admin/settings.html.erb +4 -4
  3. data/app/assets/javascripts/admin/custom_fields.js +2 -2
  4. data/app/assets/javascripts/admin/data.js +3 -3
  5. data/app/assets/javascripts/admin/elfinder/i18n/elfinder.it.js +366 -0
  6. data/app/assets/javascripts/admin/it.js +23 -0
  7. data/app/assets/javascripts/admin/tinymce/langs/en.js +179 -0
  8. data/app/assets/javascripts/admin/tinymce/langs/it.js +219 -0
  9. data/app/helpers/admin/application_helper.rb +2 -2
  10. data/app/helpers/admin/menus_helper.rb +1 -1
  11. data/app/helpers/site_helper.rb +1 -1
  12. data/app/views/layouts/admin.html.erb +6 -7
  13. data/config/initializers/elfinder.rb +4 -20
  14. data/config/initializers/rufus_cron.rb +15 -42
  15. data/config/locales/admin/it.yml +600 -0
  16. data/config/locales/common.yml +61 -0
  17. data/config/locales/it.yml +205 -0
  18. data/config/locales/languages.yml +11 -1
  19. data/config/locales/routes.yml +8 -0
  20. data/config/system.json +2 -3
  21. data/lib/camaleon_cms/engine.rb +22 -26
  22. data/lib/camaleon_cms/version.rb +1 -1
  23. data/lib/generators/cplugin_template/app/apps/plugins/my_plugin/admin_controller.rb +3 -4
  24. data/lib/generators/cplugin_template/app/apps/plugins/my_plugin/front_controller.rb +3 -4
  25. data/lib/generators/cplugin_template/app/apps/plugins/my_plugin/main_helper.rb +2 -6
  26. metadata +8 -23
  27. data/app/apps/plugins/attack/assets/docs/images/screenshot_1.jpg +0 -0
  28. data/app/apps/plugins/attack/assets/docs/images/screenshot_2.jpg +0 -0
  29. data/app/apps/plugins/attack/assets/docs/images/screenshot_3.jpg +0 -0
  30. data/app/apps/plugins/attack/assets/docs/index.html +0 -60
  31. data/app/apps/plugins/contact_form/assets/docs/images/screenshot_1.jpg +0 -0
  32. data/app/apps/plugins/contact_form/assets/docs/images/screenshot_2.jpg +0 -0
  33. data/app/apps/plugins/contact_form/assets/docs/images/screenshot_3.jpg +0 -0
  34. data/app/apps/plugins/contact_form/assets/docs/images/screenshot_4.jpg +0 -0
  35. data/app/apps/plugins/contact_form/assets/docs/images/screenshot_5.jpg +0 -0
  36. data/app/apps/plugins/contact_form/assets/docs/index.html +0 -89
  37. data/app/apps/plugins/front_cache/assets/docs/images/screenshot_1.jpg +0 -0
  38. data/app/apps/plugins/front_cache/assets/docs/images/screenshot_2.jpg +0 -0
  39. data/app/apps/plugins/front_cache/assets/docs/index.html +0 -58
  40. data/app/apps/plugins/visibility_post/assets/docs/images/screenshot_1.jpg +0 -0
  41. data/app/apps/plugins/visibility_post/assets/docs/images/screenshot_2.jpg +0 -0
  42. data/app/apps/plugins/visibility_post/assets/docs/images/screenshot_3.jpg +0 -0
  43. data/app/apps/plugins/visibility_post/assets/docs/images/screenshot_4.jpg +0 -0
  44. data/app/apps/plugins/visibility_post/assets/docs/index.html +0 -62
  45. data/app/views/admin/plugins/info.html.erb +0 -47
  46. data/config/initializers/fix_ssl.rb +0 -25
  47. data/lib/ca-bundle.crt +0 -3554
@@ -5,10 +5,8 @@
5
5
  require 'base64'
6
6
 
7
7
  module ElFinder
8
-
9
8
  # Represents ElFinder connector on Rails side.
10
9
  class Connector
11
-
12
10
  def _resize
13
11
  if image_handler.nil?
14
12
  command_not_implemented
@@ -28,8 +26,8 @@ module ElFinder
28
26
  thumbnail.unlink
29
27
  end
30
28
 
31
- #remove_target(@target)
32
- #@target = @target_new
29
+ # remove_target(@target)
30
+ # @target = @target_new
33
31
 
34
32
  @response[:select] = [to_hash(@target)]
35
33
  _open(@current)
@@ -40,40 +38,26 @@ module ElFinder
40
38
  @response[:error] = "Unable to resize file. It does not exist"
41
39
  end
42
40
  end
43
- end # of resize
41
+ end
44
42
 
45
43
  private
46
- #
47
44
  def thumbnail_for(pathname)
48
45
  @thumb_directory + "#{pathname.path.to_s.parameterize}.png"
49
46
  end
47
+ end
50
48
 
51
- end # of class Connector
52
- end # of module ElFinder
53
-
54
-
55
- module ElFinder
56
49
  class Image
57
50
  def self.resize(pathname, options = {})
58
51
  return nil unless File.exist?(pathname)
59
- #file = "#{File.dirname(pathname.to_s)}/resize_#{File.basename(pathname.to_s)}"
60
52
  system( ::Shellwords.join(['convert', '-resize', "#{options[:width]}x#{options[:height]}", pathname.to_s, pathname.to_s]) )
61
- #file
62
53
  end
63
54
  def self.crop(pathname, options = {})
64
55
  return nil unless File.exist?(pathname)
65
- #file = "#{File.dirname(pathname.to_s)}/crop_#{File.basename(pathname.to_s)}"
66
56
  system( ['convert', '-crop', "#{options[:width]}x#{options[:height]}+#{options[:x]}+#{options[:y]}", pathname.to_s, pathname.to_s].join(' ') )
67
- #file
68
57
  end
69
58
  def self.rotate(pathname, options = {})
70
59
  return nil unless File.exist?(pathname)
71
- #file = "#{File.dirname(pathname.to_s)}/rotate_#{File.basename(pathname.to_s)}"
72
60
  system( ['convert', '-rotate', "#{options[:degree]}", pathname.to_s, pathname.to_s].join(' ') )
73
- #file
74
61
  end
75
-
76
-
77
62
  end
78
-
79
63
  end
@@ -6,49 +6,22 @@
6
6
  This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7
7
  See the GNU Affero General Public License (GPLv3) for more details.
8
8
  =end
9
- begin
10
- require 'rufus-scheduler'
11
- $scheduler = Rufus::Scheduler.singleton
12
- $scheduler.cron '00 05 * * *' do
13
- system("rake camaleon_cms:sitemap")
14
- end
15
- #cronjob for hook by site
16
- begin
17
- Site.all.each do |site|
18
- # hooks
19
- c = CamaleonController.new
20
- c.instance_eval do
21
- @current_site = site
22
- @_hooks_skip = []
23
- end
24
- r = {site: site, eval: nil}; c.hooks_run("cron", r)
25
- r[:eval].call(r) if r[:eval].present?
26
- end
27
- rescue => e # skipping sites not found
28
-
29
- end
30
- rescue LoadError
31
-
9
+ require 'rufus-scheduler'
10
+ $scheduler = Rufus::Scheduler.singleton
11
+ $scheduler.cron '00 05 * * *' do
12
+ system("rake camaleon_cms:sitemap")
32
13
  end
33
-
34
- # only for camaleon site
35
- # $scheduler.cron '00 04 * * *' do
36
- # include SiteHelper
37
- # include PluginsHelper
38
- # include HooksHelper
39
- # Site.where(slug: "demo").destroy_all
40
- # site = Site.create(name: "Demo", slug: "demo")
41
- # @current_site = site
42
- # site_after_install(site)
43
- # end
44
-
45
- ####### DELAYED JOBS
46
- # auto delete file after a time
47
- if defined?(ActiveJob::Base)
48
- class TemporalFileJob < ActiveJob::Base
49
- queue_as "destroy_temporal_file"
50
- def perform(file_path)
51
- FileUtils.rm_rf(file_path) if File.exist?(file_path) && !File.directory?(file_path)
14
+ # cronjob for hook by site
15
+ begin
16
+ Site.all.each do |site|
17
+ # hooks
18
+ c = CamaleonController.new
19
+ c.instance_eval do
20
+ @current_site = site
21
+ @_hooks_skip = []
52
22
  end
23
+ r = {site: site, eval: nil}; c.hooks_run("cron", r)
24
+ r[:eval].call(r) if r[:eval].present? # evaluate the cron job created by plugin or theme
53
25
  end
26
+ rescue ActiveRecord::RecordNotFound # skipping sites not found
54
27
  end
@@ -0,0 +1,600 @@
1
+ it:
2
+ updated_at: 'Aggiornato il'
3
+ camaleon_message: "Benvenuto su Camaleon CMS"
4
+ admin:
5
+ button:
6
+ activity: 'Attività'
7
+ add_new_field: 'Aggiungi un campo'
8
+ add_option: "Aggiungi un'opzione"
9
+ add_menu: 'Aggiungi al menù'
10
+ add_widget: 'Aggiungi Widget'
11
+ accept: 'Accetta'
12
+ actived: 'Attivato'
13
+ activate_plugin: 'Attiva Plugin'
14
+ back: 'Indietro'
15
+ change_photo: 'Cambia foto'
16
+ change_password: 'Cambia Password'
17
+ create_menu: 'Crea Menù'
18
+ create: 'Crea'
19
+ cancel: 'Cancella'
20
+ chat: 'Chat'
21
+ close: 'Chiudi'
22
+ delete: 'Elimina'
23
+ disable_plugin: 'Disattiva Plugin'
24
+ enter: 'Entra'
25
+ edit: 'Modifica'
26
+ following: 'Following'
27
+ log_in: 'Login'
28
+ move_trash: 'Sposta nel cestino'
29
+ no: 'No'
30
+ none: 'No'
31
+ not_actived: 'Inattivo'
32
+ publish: 'Pubblico'
33
+ preview: 'Anteprima'
34
+ proccess: 'Proccesso'
35
+ recover: 'Recupera'
36
+ restore: 'Ripristina'
37
+ restore_selections: 'Ripristina selezioni'
38
+ select: 'Seleziona'
39
+ select_all: 'Seleziona tutto'
40
+ select_file: 'Seleziona File'
41
+ select_none: 'Deseleziona'
42
+ sign_up: 'Registra'
43
+ submit: 'Conferma'
44
+ settings: 'Impostazioni'
45
+ sortable: 'Ordinabile'
46
+ update: 'Aggiorna'
47
+ update_menu: 'Aggiorna menù'
48
+ upload_audio: 'Carica Audio'
49
+ upload_file: 'Carica File'
50
+ upload_image: 'Carica Immagine'
51
+ upload_icon: 'Carica Icona'
52
+ upload_video: 'Carica Video'
53
+ view_draft: 'Vedi Bozza'
54
+ view_page: 'Vedi pagina'
55
+ yes: 'Si'
56
+ out_yes: 'Si'
57
+ out_not: 'No'
58
+ domain: "Dominio"
59
+ comments:
60
+ comments_list_post: 'Lista dei commenti agli articoli'
61
+ responses: 'Repliche'
62
+ message:
63
+ approved: 'Approvato'
64
+ change_status: 'Lo stato della risposta è cambiato in: '
65
+ created: 'Commento creato.'
66
+ destroy: 'Risposte rimosse.'
67
+ destroy_comments: 'Commenti rimossi.'
68
+ deleted: 'Risposte rimosse.'
69
+ error: 'Commento non trovato'
70
+ pending: 'In attesa'
71
+ responses: 'Risposta creata.'
72
+ spam: 'Spam'
73
+ there_no_comments: 'Non ci sono commenti.'
74
+ updated: 'Commento aggiornato.'
75
+
76
+ tooltip:
77
+ approved_comment: 'Approva commento'
78
+ comment_pending: 'Commento in attesa'
79
+ comment_spam: 'Commento allo spam'
80
+ reply_comment: 'Replica commento'
81
+ delete_comment: 'Elimina commento'
82
+ custom_field:
83
+ message:
84
+ custom_group_error: 'Errore custom field group'
85
+ custom_created: 'Il custom field group è stato creato.'
86
+ custom_updated: 'Il custom field group è stato aggiornato.'
87
+ fields:
88
+ text_box: 'Text Box'
89
+ text_area: 'Text Area'
90
+ select: 'Select'
91
+ colorpicker: 'Colorpicker'
92
+ date: 'Data'
93
+ email: 'Email'
94
+ file: 'File'
95
+ image: 'Immagine'
96
+ numeric: 'Numero'
97
+ phone: 'Telefono'
98
+ users: 'Utenti'
99
+ posts: 'Articoli'
100
+ select_eval: 'Select Eval'
101
+ field_attrs: 'Field Attributes'
102
+ website: 'Website'
103
+ multiple_choice: 'Radio Button'
104
+
105
+ login:
106
+ already_have_account: 'Hai già un account?'
107
+ authentication: 'Autenticazione'
108
+ captcha: 'Captcha'
109
+ create_account: 'Crea un account'
110
+ login: 'Login'
111
+ forgot_your_password_int: 'Password dimenticata?'
112
+ message:
113
+ success: 'Benvenuto!!!'
114
+ fail: 'Username o Password errati'
115
+ forgot_url_incorrect: 'URL errato'
116
+ forgot_expired: 'Reset scaduto.'
117
+ hello: 'Ciao'
118
+ reset_password_succes: 'Password resettata con successo!'
119
+ reset_password_error: 'Password errata'
120
+ reset_url: 'Reset URL'
121
+ subject_email: 'Reset login'
122
+ send_mail_succes: 'Email di reset inviata.'
123
+ send_mail_error: 'Email non trovata.'
124
+ personal_info: 'Informazioni personali'
125
+ please_login: 'Loggati'
126
+ reset_password: 'Reset password'
127
+ reCaptcha: 'reCaptcha'
128
+ send_email: 'Invia email'
129
+ reset_password_html: '<strong>Invia email</strong>, reset password'
130
+ welcome: 'Benvenuto'
131
+ welcome_login_html: '<strong>Benvenuto</strong>, Esegui login'
132
+ do_not_have_account_yet: "Non hai ancora un account?"
133
+ msg_registration_html: '<strong>Registratione</strong>, usa il form qui sotto'
134
+ username: "Username"
135
+ password: "Password"
136
+ password_confirm: "Conferma password"
137
+ first_name: "Nome"
138
+ last_name: "Cognome"
139
+ email: "Email"
140
+ logout:
141
+ log: 'Log'
142
+ out: 'Out'
143
+ logout: 'Logout'
144
+ logout_html: 'Log <strong>Out</strong>?'
145
+ message:
146
+ closed: 'Sessione chiusa'
147
+ media:
148
+ media_manager: 'Media Manager'
149
+ home: "Home"
150
+ menus:
151
+ menus: 'Menù'
152
+ link_url: 'Link URL'
153
+ message:
154
+ created: 'Menù creato.'
155
+ deleted: 'Menù cancellato.'
156
+ error_menu: 'Errore nel Menù'
157
+ name_link: 'Nome Link'
158
+ name_menu: 'Nome Menù'
159
+ external_link: 'Link esterno'
160
+ or: 'o'
161
+ create_new: 'Crea menù'
162
+ select: 'Seleziona Menù'
163
+ select_edit: 'Seleziona il menù da modificare:'
164
+ message:
165
+ are_you_sure_you_want_log_out_int: 'Vuoi fare il logout?'
166
+ data_found_list: 'Nessun risultato nella lista'
167
+ delete: 'Sicuro?'
168
+ delete_item: 'Vuoi davvero eliminare questo oggetto'
169
+ edit_menu: "Posiziona ogni elemento nell'ordine preferito. Clicca sull'icona della matita per modificarlo e sulla x per cancellarlo"
170
+ add_menus: 'Aggiungi al menù dalla colonna a sinistra.'
171
+ press_no_continue_work_press_yes_logout: 'Premi No se vuoi continuare a lavorare. Premi Si per fare il logout.'
172
+ updated_success: 'Aggiornato'
173
+ remove_items_submenu: 'Vuoi rimuovere questo oggetto e i suoi sotto menù?'
174
+ you_must_upload_image: "Devi caricare un'immagine"
175
+ you_must_upload_video: 'Devi caricare un video'
176
+ so_their_data_has_not_been_saved: 'I dati non sono stati salvati'
177
+ no_response_fields: 'Nessuna replica'
178
+ quick_info: "Informazioni veloci sull'utente"
179
+ was_inactivated: 'è stato disattivato.'
180
+ was_activated: 'è stato attivato.'
181
+ can_not_be_removed: 'Non può essere rimosso.'
182
+ was_removed: 'è stato rimosso.'
183
+ processing: 'Caricamento...'
184
+ change_photo: "Usa il form per caricare l'immagine."
185
+ change_password: 'Per cambiare la password inserisci prima quella vecchia, quindi inseriscine una nuova.'
186
+ you_must_upload_json_file: 'Devi caricare un file JSON'
187
+ import_process: "Sto elaborando l'importazione"
188
+ unauthorized: "Accesso negato"
189
+ welcome: 'Benvenuto nel pannello di amministrazione del sito.'
190
+ no_templates_defined: 'Nessun template definito'
191
+ avatar_updated: 'Aggiorna Avatar'
192
+ form_error: 'Errore nel form'
193
+ page_title:
194
+ page_title: 'Titolo pagina'
195
+ create: 'Crea'
196
+ details: 'Dettagli'
197
+ edit: 'Modifica'
198
+ add: 'Aggiungi'
199
+ list: 'Lista'
200
+ list_of: 'Lista di'
201
+ new_site: 'Nuovo sito'
202
+ edit_site: 'Modifica sito'
203
+ update: 'Aggiorna'
204
+ post:
205
+ add_tag: 'Aggiungi Tag'
206
+ clone: 'Clona'
207
+ clone_content: 'Clona contenuto'
208
+ label_required: 'Etichetta obbligatoria'
209
+ placeholder_required: 'Placeholder obbligatorio'
210
+ message:
211
+ created: '%{post_type} creato.'
212
+ updated: '%{post_type} aggiornato.'
213
+ deleted: '%{post_type} eliminato.'
214
+ error: 'Errore: %{post_type}'
215
+ error_post_type: 'Errore: %{post_type}'
216
+ trash: '%{post_type} spostato nel cestino.'
217
+ requires_different_slug: 'Inserisci uno slug diverso'
218
+ restore: '%{post_type} ripristinato.'
219
+ draft: 'Bozza salvata'
220
+ recover: 'Ripristino...'
221
+ permalink: 'Permalink'
222
+ post_type:
223
+ all: 'Tutti'
224
+ add: 'Aggiungi'
225
+ add_category: 'Aggiungi categoria'
226
+ add_post_type: 'Aggiungi Post Type'
227
+ add_new: 'Aggiungi nuovo'
228
+ add_post_tag: 'Aggiungi Tag Articolo'
229
+ categories: 'Categorie'
230
+ category: 'Categoria'
231
+ configuration: 'Configurazione'
232
+ other_configuration: 'Configurazioni personalizzate'
233
+ comments: 'Commenti'
234
+ draft: 'Bozza'
235
+ edit_post_type: 'Modifica Post Type'
236
+ edit_category: 'Modifica Categoria'
237
+ enter_password: 'Inserisci password'
238
+ featured_image: 'Immagine personalizzata'
239
+ keywords: 'Parole chiave'
240
+ message:
241
+ error: 'Class Error'
242
+ error_term: 'Term class error'
243
+ created: 'Salvato'
244
+ updated: 'Aggiornato'
245
+ deleted: 'Eliminato'
246
+ no_created_html: '<br> Nessuna %{taxonomy} trovata'
247
+ pending: 'In attesa'
248
+ permit_comments: 'Abilita commenti?'
249
+ post_types: 'Post Type'
250
+ posts: 'Articoli'
251
+ post_tags: 'Tag articoli'
252
+ published: 'Pubblicato'
253
+ published_date: 'Data pubblicazione'
254
+ save_draft: 'Salva bozza'
255
+ save_pending: 'Salva in attesa'
256
+ summary: 'Sommario'
257
+ tags: 'Tag'
258
+ template: 'Template'
259
+ trash: 'Cestino'
260
+ tooltip:
261
+ permission_asing_categories: 'Assegnare categorie'
262
+ permission_add_tags: 'Aggiungere Tag'
263
+ permission_add_content: 'Aggiungere contenuti'
264
+ permission_add_content_summary: 'Aggiungere sommari'
265
+ permission_reviews: 'Permessi per le recensioni'
266
+ permission_add_image_presentation: "Aggiungere un'immagine alla presentazione"
267
+ permission_manage_template: 'Gestire template'
268
+ permission_add_keywords: 'Aggiungere parole chiave'
269
+ upload_image: 'Carica immagine'
270
+ view_comments: 'Vedi commenti'
271
+ plugins:
272
+ active_plugins: 'Plugin attivi'
273
+ all_plugins: 'Tutti i Plugin'
274
+ status_false: 'Inattivo'
275
+ status_true: 'Attivo'
276
+ type_contents: 'Type Contents'
277
+ settings:
278
+ activate_create_account: 'Attiva account creato'
279
+ activate_login_social_networks: 'Attiva i Login con i Social Network'
280
+ add_field_group: 'Aggiungi Field Group'
281
+ admin_language: 'Lingua amministratore'
282
+ allow_user_registration: 'Permetti la registrazione degli utenti'
283
+ available_fields: 'Campi disponibili'
284
+ available_languages: 'Lingue disponibili'
285
+ categories_in: 'Categorie in'
286
+ configuration_site: 'Configurazione Sito'
287
+ current_languages: 'Lingua attiva'
288
+ details_custom_field_group: 'Dettagli Custom Field Group'
289
+ details_site: 'Dettagli sito'
290
+ edit_custom_field_group: 'Modifica Custom Field Group'
291
+ field: 'Field'
292
+ fields: 'Field'
293
+ information_basic: 'Informazioni principali'
294
+ theme_setting: "Impostazioni tema"
295
+ input_only_date: 'Inserisci solo la data'
296
+ input_date_time: 'Inserisci data e ora'
297
+ languages_configuration: 'Configurazione lingue'
298
+ list_custom_fields_group: 'Lista Custom Fields Group'
299
+ list_sites: 'Lista Siti'
300
+ login_twitter: 'Twitter'
301
+ login_facebook: 'Facebook'
302
+ login_google: 'Google+'
303
+ email_enabled: "Usa queste impostazioni per l'invio delle email"
304
+ email_server: "Email Server"
305
+ email_port: "Email Port"
306
+ email_domain: "Email Domain"
307
+ email_username: "Username"
308
+ email_pass: "Email Password"
309
+ email_from: "Email Da"
310
+ email_cc: "Email CC"
311
+ twitter_card: "Twitter Card"
312
+ author: "Mittente"
313
+ seo_setting: "Impostazioni Seo"
314
+ email_settings: "Impostazioni email (SMTP)"
315
+
316
+ message:
317
+ language_updated: 'Lingua configurata.'
318
+ site_updated: 'Sito aggiornato'
319
+ new_custom_field_group: 'Nuovo Custom Field Group'
320
+ options_select: 'Opzioni select'
321
+ option_title: 'Opzioni titolo'
322
+ others: 'Altro'
323
+ please_separated_commas: 'Separati da virgole'
324
+ comment_status: 'Commenti abilitati'
325
+ list_per_page_front: 'Elementi da mostrare nel frontend'
326
+ list_per_page_admin: 'Elementi da mostrare nel backend'
327
+ permission_register_users: 'Registrazione utenti'
328
+ permission_login_twitter: 'Login con Twitter'
329
+ permission_login_facebook: 'Login con Facebook'
330
+ permission_login_google: 'Login con Google+'
331
+ posts_in: 'Articoli in'
332
+ settings: 'Impostazioni'
333
+ tooltip:
334
+ add_custom_field_posts: "Aggiungi Custom Field negli Articoli di "
335
+ add_custom_field_categories: 'Aggiungi Custom Field nelle Categorie di '
336
+ add_custom_field_users: 'Aggiungi Custom Field negli Utenti '
337
+ add_custom_field_sites: 'Aggiungi Custom Field nel Sito '
338
+ add_custom_field_themes: 'Aggiungi Custom Field nel Tema '
339
+ add_custom_field_widget: 'Aggiungi Custom Field nel Widget '
340
+ untitled: 'Senza titolo'
341
+ where_display_group: 'Dove mostrare il gruppo'
342
+ sidebar:
343
+ appearance: 'Aspetto'
344
+ comments: 'Commenti'
345
+ content: 'Contenuto'
346
+ contents_type: 'Content Type'
347
+ custom_fields: 'Custom Field'
348
+ dashboard: 'Dashboard'
349
+ general_site: 'Generale'
350
+ information: 'Informazioni'
351
+ languages: 'Lingue'
352
+ media: 'Media'
353
+ menus: 'Menù'
354
+ navigation: 'Navigazione'
355
+ plugins: 'Plugin'
356
+ settings: 'Impostazioni'
357
+ site_settings: 'Impostazioni sito'
358
+ sites: 'Siti'
359
+ themes: 'Temi'
360
+ users: 'Utenti'
361
+ widget: 'Widget'
362
+ widgets: 'Widget'
363
+ sidebar_top:
364
+ admin_panel: 'Pannello amministrazione'
365
+ visit: 'Visita'
366
+ sites:
367
+ add_site: 'Aggiungi Siti'
368
+ message:
369
+ error: 'Sito non trovato'
370
+ created: 'Sito creato.'
371
+ updated: 'Sito aggiornato.'
372
+ deleted: 'Eliminato correttamente'
373
+ enter_key_domain: 'Inserisci una parola chiave o un dominio'
374
+ enter_key_domain_empty: 'Inserisci una parola chiave o un dominio'
375
+ signin:
376
+ message:
377
+ enter_username_password: 'Inserisci username e/o password'
378
+ combination_username_password_invalid: 'Combinazione username/password sbagliata.'
379
+ success_user: 'Successo'
380
+ table:
381
+ actions: 'Azioni'
382
+ attribute: 'Attributi'
383
+ author: 'Autore'
384
+ basic: 'Base'
385
+ categories: 'Categorie'
386
+ updated_at: "Aggiornato il"
387
+ comments: 'Commenti'
388
+ count: 'Contatore'
389
+ date_published: 'Data di pubblicazione'
390
+ default: 'Default'
391
+ default_thumbnail: 'Thumbnail di Default'
392
+ default_value: 'Valore di Default'
393
+ description: 'Descrizione'
394
+ dimensions: 'Dimensioni'
395
+ display_objects: 'Mostra oggetti'
396
+ draft: 'Bozza'
397
+ email: 'Email'
398
+ e_mail: 'E-mail'
399
+ email_address: 'Indirizzo Email'
400
+ error: 'Errore'
401
+ errors: 'Errori'
402
+ excerpt: 'Estratto'
403
+ facebook: 'Facebook'
404
+ favicon: 'Favicon'
405
+ screenshot: "Screenshot"
406
+ first_names: 'Nome'
407
+ group_name: 'Nome gruppo'
408
+ google_plus: 'Google+'
409
+ hide: 'Nascondi'
410
+ home_page: 'Home Page'
411
+ has_keywords: 'ha una parola chiave'
412
+ id: 'ID'
413
+ images: 'Immagini'
414
+ import: 'Importa'
415
+ instagram: 'Instagram'
416
+ keywords: 'Parole chiave (separate da virgola)'
417
+ kind: 'Tipo'
418
+ last_login: 'Ultimo login'
419
+ last_names: 'Ultimi Nomi'
420
+ last_visit: 'Ultima visita'
421
+ link: 'Link'
422
+ linkedin: 'Linkedin'
423
+ login: 'Login'
424
+ logo: 'Logo'
425
+ manage_category: 'Gestisci Categoria'
426
+ manage_content: 'Gestisci Contenuto'
427
+ manage_picture: 'Gestisci Immagine'
428
+ manage_summary: 'Gestisci Sommario'
429
+ manage_tags: 'Gestisci Tag'
430
+ manage_template: 'Gestisci Template'
431
+ modified: 'Modificato'
432
+ multiple_field_int: 'Campo multiplo?'
433
+ required_field_int: 'Campo obbligatorio?'
434
+ translate_field_int: 'Traduci campo?'
435
+ show_in_frontend: 'Mostra nel Frontend (solo contenuto articoli)'
436
+ name: 'Nome'
437
+ new_password: 'Nuova Password'
438
+ no_default: 'No Default'
439
+ old_password: 'Vecchia Password'
440
+ options: 'Optioni'
441
+ options_field: 'Opzioni campo'
442
+ parent: 'Genitore'
443
+ password: 'Password'
444
+ password_confirmation: 'Conferma Password'
445
+ password_protection: 'Protezione Password'
446
+ permit_comments_default: 'Accetta commenti (default)'
447
+ post: 'Articolo'
448
+ post_type: 'Post Type'
449
+ pending: 'In attesa'
450
+ private: 'Privato'
451
+ public: 'Pubblico'
452
+ qty: 'Quantità'
453
+ quick_info: 'Informazioni rapide'
454
+ registration: 'Registrazione'
455
+ repeat_new: 'Ripeti di nuovo'
456
+ role: 'Ruolo'
457
+ slogan: 'Slogan'
458
+ slug: 'Slug'
459
+ short_code: 'Codice breve'
460
+ site_name: 'Nome del sito'
461
+ size: 'Dimensione'
462
+ social: 'Social'
463
+ skype: 'Skype'
464
+ status: 'Stato'
465
+ tags: 'Tag'
466
+ text: 'Testo'
467
+ title: 'Titolo'
468
+ total: 'Totale'
469
+ trash: 'Cestino'
470
+ twitter: 'Twitter'
471
+ username: 'Username'
472
+ value: 'Valore'
473
+ version: 'Versione'
474
+ visibility: 'Visibilità'
475
+ page_404: 'Pagina 404'
476
+ youtube: 'Youtube'
477
+ themes:
478
+ footer_copyright: 'Footer Copyright'
479
+ theme_select: 'Seleziona tema'
480
+ title: 'Tema %{theme} Impostazioni '
481
+ analytics_code: 'Analytics Code'
482
+ social_share: 'Condividi nei Social'
483
+
484
+ message:
485
+ updated: 'Aggiorna Theme.'
486
+ users:
487
+ all_users: 'Tutti gli Utenti'
488
+ add_user: 'Aggiungi Utente'
489
+ add_user_role: 'Aggiungi ruolo'
490
+ avatar: 'Avatar'
491
+ create_user: 'Crea Utente'
492
+ edit_profile: 'Modifica Profilo'
493
+ list_users: 'Lista Utenti'
494
+ list_user_roles: 'Ruoli'
495
+ message:
496
+ error: 'Utente non trovato.'
497
+ error_captcha: 'CAPTCHA errato!'
498
+ created: 'Utente creato.'
499
+ updated: 'Utente aggiornato.'
500
+ deleted: 'Utente eliminato.'
501
+ incorrect_old_password: 'Password precedente errata'
502
+ rol_error: 'Gruppo utenti non trovato.'
503
+ rol_created: 'Ruolo utente creato.'
504
+ rol_updated: 'Ruolo utente aggiornato.'
505
+ rol_deleted: 'Ruolo utente eliminato.'
506
+ requires_different_name: 'Inserisci un nome diverso'
507
+ requires_different_username: 'Inserisci uno username diverso'
508
+ requires_different_email: 'Inserisci una email diversa'
509
+ new_photo: 'Nuova foto'
510
+ others_permissions: 'Altri permessi'
511
+ profile: 'Profilo'
512
+ slogan: 'Slogan'
513
+ type_contents: 'Tipi di contenuti'
514
+ user_roles: 'Ruoli Utente'
515
+ roles_values:
516
+ comments: 'Commenti'
517
+ forms: 'Form'
518
+ media: 'Media'
519
+ publish: 'Pubblica'
520
+ themes: 'Temi'
521
+ html_create_or_edit: 'Crea<br>o Modifica'
522
+ html_edit_other: 'Modifica <br> altro'
523
+ html_edit_publish: 'Modifica <br> Pubblica'
524
+ html_delete_other: 'Elimina <br> altro'
525
+ html_delete_publish: 'Elimina <br> Pubblica'
526
+ html_read_private: 'Leggi <br> Privato'
527
+ html_manage_categories: 'Gestisci <br> Categorie'
528
+ html_manage_tags: 'Gestisci <br> Tag'
529
+ tool_tip:
530
+ comments: 'Abilita i commenti alla sezione'
531
+ delete: 'Hai bisogno del permesso di creare o modificare un articolo di tua proprietà. '
532
+ forms: 'Abilita selezione Form'
533
+ media: 'Permesso per la midsection'
534
+ publish: 'Devi abilitare Crea o Modifica, Modifica Altro, Modifica, Pubblica, per abilitare questi permessi'
535
+ themes: 'Permessi per la sezione temi'
536
+ widgets: 'Permessi per la sezione widget'
537
+ menus: 'Permessi per la sezione menù'
538
+ plugins: 'Permessi per la sezione plugin'
539
+ users: 'Permesso di creare, modificare e cancellare utenti'
540
+ settings: 'Permessi per la sezione impostazioni'
541
+ create_or_edit: "Ti permette di creare e modificare il tuo articolo (l'articolo non è pubblicato)"
542
+ edit_other: "Ti permette di modificare l'articolo di altri utenti (l'articolo non è pubblicato)"
543
+ edit_publish: 'Ti permette di modificare un articolo pubblicato'
544
+ delete_other: 'Hai bisogno del permesso di eliminare e modificare gli articoli di altri utenti'
545
+ delete_publish: 'Devi abilitare Elimina, Elimina Altro per abilitare questi permessi'
546
+ read_private: 'Permetti di vedere articoli privati'
547
+ manage_categories: 'Permetti di creare, modificare e eliminare categorie'
548
+ manage_tags: 'Permetti di creare, modificare e eliminare tag'
549
+ validate:
550
+ required: 'Campo obbligatorio.'
551
+ remote: 'Sistema questo campo.'
552
+ email: 'Inserisci una email valida.'
553
+ url: 'Inserisci una URL valida.'
554
+ date: 'Inserisci una data valida.'
555
+ dateiso: 'Inserisci una data valida ( ISO ).'
556
+ number: 'Inserisci un numero valido.'
557
+ digits: 'Inserisci solo lettere.'
558
+ creditcard: 'Inserisci un numero di carta di credito valido.'
559
+ equalto: 'Inserisci di nuovo lo stesso valore.'
560
+ maxlength: 'Inserisci non più di {0} caratteri.'
561
+ minlength: 'Inserisci almeno {0} caratteri.'
562
+ rangelength: 'Inserisci una valore tra {0} e {1} caratteri di lunghezza.'
563
+ range: 'Inserisci un valore tra {0} e {1}.'
564
+ max: 'Inserisci un valore minore o uguale a {0}.'
565
+ min: 'Inserisci un valore maggiore o uguale a {0}.'
566
+ widgets:
567
+ create_widget: 'Crea Widget'
568
+ create_sidebar: 'Crea Sidebar'
569
+ complex_widgets: 'Widget complessi'
570
+ simple_widgets: 'Widget semplici'
571
+ message:
572
+ created: 'Widget creato.'
573
+ updated: 'Widget aggiornato.'
574
+ deleted: 'Widget eliminato.'
575
+ error_created: 'Widget non creato.'
576
+ error_updated: 'Widget non aggiornato.'
577
+ not_registered_widgets: 'Non ci sono widget registrati'
578
+
579
+ plugin:
580
+ contact_form:
581
+ contact_form: 'Form di contatto'
582
+ add_form: 'Aggiungi form'
583
+ label_required: "ergoineroinregfoin"
584
+ placeholder_required: "rofmfvopfrmpvo"
585
+ list: 'Lista'
586
+ name: 'Nome'
587
+ description: 'Descrizione'
588
+ slug: 'Slug'
589
+ shortcode: 'Shortcode'
590
+ count: 'Contatore'
591
+ actions: 'Azioni'
592
+ msg_data_found_list: 'Nessun messaggio trovato'
593
+ button:
594
+ back: 'Indietro'
595
+ submit: 'Conferma'
596
+ attack:
597
+ settings: 'Impostazioni'
598
+ front_cache:
599
+ settings: 'Impostazioni'
600
+ clean_cache: 'Pulisci Cache'