camaleon_cms 2.2.0 → 2.2.1
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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/apps/plugins/attack/config/locales/translation.yml +38 -1
- data/app/apps/plugins/front_cache/admin_controller.rb +2 -3
- data/app/apps/plugins/front_cache/config/locales/translation.yml +39 -0
- data/app/apps/plugins/front_cache/front_cache_helper.rb +7 -2
- data/app/apps/plugins/front_cache/views/admin/settings.html.erb +1 -0
- data/app/apps/themes/camaleon_first/views/layouts/mailer.html.erb +2 -2
- data/app/assets/javascripts/camaleon_cms/admin/_custom_fields.js +2 -1
- data/app/controllers/camaleon_cms/admin/settings_controller.rb +10 -0
- data/app/controllers/camaleon_cms/admin/users_controller.rb +6 -2
- data/app/controllers/camaleon_cms/frontend_controller.rb +5 -6
- data/app/helpers/camaleon_cms/html_helper.rb +2 -3
- data/app/helpers/camaleon_cms/plugins_helper.rb +4 -3
- data/app/mailers/camaleon_cms/html_mailer.rb +7 -1
- data/app/models/camaleon_cms/ability.rb +1 -1
- data/app/models/camaleon_cms/custom_field.rb +1 -1
- data/app/models/camaleon_cms/custom_field_group.rb +1 -1
- data/app/views/camaleon_cms/admin/plugins/_plugins_list.html.erb +4 -0
- data/app/views/camaleon_cms/admin/posts/_sidebar.html.erb +1 -1
- data/app/views/camaleon_cms/admin/settings/_configuration_settings.html.erb +8 -4
- data/app/views/camaleon_cms/admin/settings/_email_settings.html.erb +26 -4
- data/app/views/camaleon_cms/admin/settings/custom_fields/_render.html.erb +2 -2
- data/app/views/camaleon_cms/default_theme/partials/_search_form.html.erb +1 -1
- data/app/views/layouts/camaleon_cms/admin/_form_error.html.erb +1 -1
- data/app/views/layouts/camaleon_cms/mailer.html.erb +2 -2
- data/config/locales/camaleon_cms/admin/en.yml +2 -1
- data/config/locales/camaleon_cms/admin/es.yml +1 -0
- data/config/locales/camaleon_cms/admin/it.yml +125 -77
- data/config/locales/camaleon_cms/admin/pt-BR.yml +2 -0
- data/config/locales/camaleon_cms/admin/pt.yml +641 -0
- data/config/locales/camaleon_cms/common.yml +66 -1
- data/config/locales/camaleon_cms/languages.yml +25 -6
- data/config/locales/pt-BR.yml +10 -8
- data/config/locales/pt.yml +201 -0
- data/config/routes/admin.rb +1 -0
- data/lib/camaleon_cms/version.rb +1 -1
- data/lib/generators/camaleon_cms/gem_plugin_template/config/initializers/custom_models.rb +4 -2
- data/lib/plugin_routes.rb +2 -0
- metadata +5 -3
- data/lib/generators/camaleon_cms/install_template/apps/plugins/readme.txt +0 -0
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<label>
|
|
23
23
|
<%= field.options[:label_eval].present? ? eval(field.name) : field.name %>
|
|
24
24
|
<%= raw "<em class='text-danger'>*</em>" if field.options[:required].to_s.to_bool %>
|
|
25
|
-
<% if ["post", "posttype", "category", "postTag", "site", "user", "navmenu", "theme"].include?(obj_class) %>
|
|
25
|
+
<% if current_site.get_option('custom_fields_show_shortcodes') && ["post", "posttype", "category", "postTag", "site", "user", "navmenu", "theme"].include?(obj_class) %>
|
|
26
26
|
<small class="shortcode_field"><br><%= raw cama_shortcode_print("[data field='#{field.slug}' #{"object='#{obj_class}' #{"id='#{record.id}'" if obj_class != "Theme" }" unless record.new_record?}]") %></small>
|
|
27
27
|
<% end %>
|
|
28
28
|
</label>
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
</div>
|
|
36
36
|
<% end %>
|
|
37
37
|
</div>
|
|
38
|
-
<script> jQuery(function(){ build_custom_field_group(<%= raw(params[:field_options].present? ? (r = []; params[:field_options].each{|k, v| val = {}; v.each{|kk, vv| val["#{kk}"] = vv['values'].values; }; r << val }; r) : record.get_fields_grouped(fields.pluck(:slug).uniq).to_json) %>, '<%= group.id %>', <%= raw group_field_data.to_json %>, <%= group.is_repeat %>); }); </script>
|
|
38
|
+
<script> jQuery(function(){ build_custom_field_group(<%= raw(params[:field_options].present? ? (r = []; params[:field_options].each{|k, v| val = {}; v.each{|kk, vv| val["#{kk}"] = vv['values'].values; }; r << val }; r.to_json) : record.get_fields_grouped(fields.pluck(:slug).uniq).to_json) %>, '<%= group.id %>', <%= raw group_field_data.to_json %>, <%= group.is_repeat %>); }); </script>
|
|
39
39
|
</div>
|
|
40
40
|
</div>
|
|
41
41
|
<% if group.is_repeat %>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="input-group">
|
|
3
3
|
<input type="text" name="q" class="form-control" placeholder="<%= ct("search", default: 'Search here') %>...">
|
|
4
4
|
<div class="input-group-btn">
|
|
5
|
-
<button type="submit" class="btn"><i class="glyphicon glyphicon-search"></i></button>
|
|
5
|
+
<button type="submit" class="btn btn-default"><i style="font-size: 14px;" class="glyphicon glyphicon-search"></i></button>
|
|
6
6
|
</div>
|
|
7
7
|
</div>
|
|
8
8
|
<% end %>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<% if data.errors.any? %>
|
|
2
2
|
<div id="error_explanation" class="alert alert-danger">
|
|
3
|
-
<strong><%= "#{(data.errors.count > 1)? "#{data.errors.count} #{t('camaleon_cms.admin.table.errors')}" : "#{data.errors.count} #{t('camaleon_cms.admin.table.error')}" }"
|
|
3
|
+
<strong><%= "#{(data.errors.count > 1)? "#{data.errors.count} #{t('camaleon_cms.admin.table.errors')}" : "#{data.errors.count} #{t('camaleon_cms.admin.table.error')}" }" %>, <%= t('camaleon_cms.admin.message.so_their_data_has_not_been_saved')%>:</strong>
|
|
4
4
|
<ul>
|
|
5
5
|
<% data.errors.full_messages.each do |msg| %>
|
|
6
6
|
<li><%= msg %></li>
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<body>
|
|
8
8
|
<table style="width: 100%">
|
|
9
9
|
<tr>
|
|
10
|
-
<td style="text-align: center; background-color: #fe5e00; padding: 10px;"
|
|
10
|
+
<td style="text-align: center; background-color: #fe5e00; padding: 10px;"><%= image_tag @current_site.the_logo %></td>
|
|
11
11
|
</tr>
|
|
12
12
|
<tr>
|
|
13
13
|
<td>
|
|
@@ -19,4 +19,4 @@
|
|
|
19
19
|
</tr>
|
|
20
20
|
</table>
|
|
21
21
|
</body>
|
|
22
|
-
</html>
|
|
22
|
+
</html>
|
|
@@ -199,7 +199,7 @@ en:
|
|
|
199
199
|
remove_items_submenu: 'Really remove this item and its sub menu items?'
|
|
200
200
|
you_must_upload_image: 'You must upload an image'
|
|
201
201
|
you_must_upload_video: 'You must upload an video'
|
|
202
|
-
so_their_data_has_not_been_saved: '
|
|
202
|
+
so_their_data_has_not_been_saved: 'So their data has not been saved'
|
|
203
203
|
no_response_fields: 'No response fields '
|
|
204
204
|
quick_info: 'Some quick info about this user'
|
|
205
205
|
was_inactivated: 'was inactivated.'
|
|
@@ -353,6 +353,7 @@ en:
|
|
|
353
353
|
filesystem_s3_secret_key: "AWS S3 Secret Key"
|
|
354
354
|
filesystem_s3_bucket_name: "AWS S3 Bucket name"
|
|
355
355
|
filesystem_s3_endpoint: "AWS S3 Bucket endpoint"
|
|
356
|
+
send_test_email: 'Send Test Email'
|
|
356
357
|
filesystem_region: "AWS S3 Region"
|
|
357
358
|
filesystem_cdn: "CDN url"
|
|
358
359
|
security:
|
|
@@ -346,6 +346,7 @@ es:
|
|
|
346
346
|
filesystem_s3_bucket_name: "AWS S3 nombre del bucket"
|
|
347
347
|
filesystem_cdn: "CDN url"
|
|
348
348
|
filesystem_s3_cloudfront: 'Cloudfront URL'
|
|
349
|
+
custom_fields_show_shortcodes: 'Mostrar códigos abreviados de los campos personalizados?'
|
|
349
350
|
security:
|
|
350
351
|
captcha_user_register: "¿Activar captcha en el registro de usuarios?"
|
|
351
352
|
need_validate_email: "¿Es necesario validar el email?"
|
|
@@ -1,63 +1,66 @@
|
|
|
1
1
|
it:
|
|
2
|
+
updated_at: 'Aggiornato il'
|
|
2
3
|
camaleon_cms:
|
|
3
4
|
updated_at: 'Aggiornato il'
|
|
4
5
|
welcome_message: "Benvenuto su Camaleon CMS"
|
|
5
6
|
admin:
|
|
6
7
|
button:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
8
|
+
activity: 'Attività'
|
|
9
|
+
add_folder: 'Aggiungi cartella'
|
|
10
|
+
add_new_field: 'Aggiungi un campo'
|
|
11
|
+
add_option: "Aggiungi un'opzione"
|
|
12
|
+
add_menu: 'Aggiungi al menù'
|
|
13
|
+
add_widget: 'Aggiungi Widget'
|
|
14
|
+
accept: 'Accetta'
|
|
15
|
+
actived: 'Attivato'
|
|
16
|
+
activate_plugin: 'Attiva Plugin'
|
|
17
|
+
back: 'Indietro'
|
|
18
|
+
change_photo: 'Cambia foto'
|
|
19
|
+
change_password: 'Cambia Password'
|
|
20
|
+
create_menu: 'Crea Menù'
|
|
21
|
+
create: 'Crea'
|
|
22
|
+
cancel: 'Cancella'
|
|
23
|
+
chat: 'Chat'
|
|
24
|
+
close: 'Chiudi'
|
|
25
|
+
delete: 'Elimina'
|
|
26
|
+
disable_plugin: 'Disattiva Plugin'
|
|
27
|
+
enter: 'Entra'
|
|
28
|
+
edit: 'Modifica'
|
|
29
|
+
following: 'Following'
|
|
30
|
+
log_in: 'Login'
|
|
31
|
+
move_trash: 'Sposta nel cestino'
|
|
32
|
+
no: 'No'
|
|
33
|
+
none: 'No'
|
|
34
|
+
not_actived: 'Inattivo'
|
|
35
|
+
publish: 'Pubblico'
|
|
36
|
+
preview: 'Anteprima'
|
|
37
|
+
proccess: 'Proccesso'
|
|
38
|
+
recover: 'Recupera'
|
|
39
|
+
restore: 'Ripristina'
|
|
40
|
+
restore_selections: 'Ripristina selezioni'
|
|
41
|
+
search: 'Cerca'
|
|
42
|
+
select: 'Seleziona'
|
|
43
|
+
select_all: 'Seleziona tutto'
|
|
44
|
+
select_file: 'Seleziona File'
|
|
45
|
+
select_none: 'Deseleziona'
|
|
46
|
+
sign_up: 'Registra'
|
|
47
|
+
submit: 'Conferma'
|
|
48
|
+
settings: 'Impostazioni'
|
|
49
|
+
sortable: 'Ordinabile'
|
|
50
|
+
update: 'Aggiorna'
|
|
51
|
+
update_menu: 'Aggiorna menù'
|
|
52
|
+
upload_audio: 'Carica Audio'
|
|
53
|
+
upload_file: 'Carica File'
|
|
54
|
+
drag_drop: 'Trascinare e rilasciare i file qui'
|
|
55
|
+
upload_image: 'Carica Immagine'
|
|
56
|
+
upload_icon: 'Carica Icona'
|
|
57
|
+
upload_video: 'Carica Video'
|
|
58
|
+
view_draft: 'Vedi Bozza'
|
|
59
|
+
view_page: 'Vedi pagina'
|
|
60
|
+
yes: 'Si'
|
|
61
|
+
out_yes: 'Si'
|
|
62
|
+
out_not: 'No'
|
|
63
|
+
domain: "Dominio"
|
|
61
64
|
comments:
|
|
62
65
|
comments_list_post: 'Lista dei commenti agli articoli'
|
|
63
66
|
responses: 'Repliche'
|
|
@@ -103,7 +106,26 @@ it:
|
|
|
103
106
|
field_attrs: 'Field Attributes'
|
|
104
107
|
website: 'Website'
|
|
105
108
|
multiple_choice: 'Radio Button'
|
|
106
|
-
|
|
109
|
+
header:
|
|
110
|
+
member_since: 'Iscritto dal'
|
|
111
|
+
intro:
|
|
112
|
+
appearance: 'Modifica temi, widget e menù'
|
|
113
|
+
comments: 'I commenti ai tuoi post'
|
|
114
|
+
content: 'In questa sezione puoi modificare i contenuti del tuo sito'
|
|
115
|
+
custom_fields: 'Gestisci i tuoi campi personalizzati'
|
|
116
|
+
gral_site: 'Impostazioni generali'
|
|
117
|
+
languages: 'Lingue'
|
|
118
|
+
media: 'Gestisci facilmente di tuoi contenuti multimediali'
|
|
119
|
+
menus: 'Crea e gestisci al meglio le voci di menù'
|
|
120
|
+
plugins: 'Installa e tieni sotto controllo i plugin presenti nel tuo sito'
|
|
121
|
+
post_type: 'Gestisci gruppi di contenuto'
|
|
122
|
+
profile: 'Profilo'
|
|
123
|
+
settings: 'Impostazioni del tuo sito'
|
|
124
|
+
shortcodes: 'Shortcodes'
|
|
125
|
+
sites: 'Impostazioni sui siti'
|
|
126
|
+
themes: "Se nel tuo sito è presente un tema custom, ti consigliamo di rivolgerti al tuo team di sviluppo per le modifiche di questa sezione"
|
|
127
|
+
users: 'In questa sezione puoi gestire gli utenti del sito e assegnare loro ruoli o particolari privilegi'
|
|
128
|
+
widgets: 'Gestisci facilmente i tuoi widget'
|
|
107
129
|
login:
|
|
108
130
|
already_have_account: 'Hai già un account?'
|
|
109
131
|
authentication: 'Autenticazione'
|
|
@@ -150,6 +172,7 @@ it:
|
|
|
150
172
|
media:
|
|
151
173
|
media_manager: 'Media Manager'
|
|
152
174
|
home: "Home"
|
|
175
|
+
info: 'Info'
|
|
153
176
|
menus:
|
|
154
177
|
menus: 'Menù'
|
|
155
178
|
link_url: 'Link URL'
|
|
@@ -236,6 +259,8 @@ it:
|
|
|
236
259
|
configuration: 'Configurazione'
|
|
237
260
|
other_configuration: 'Configurazioni personalizzate'
|
|
238
261
|
comments: 'Commenti'
|
|
262
|
+
default_layout: 'Layout di default'
|
|
263
|
+
default_template: 'Template di default'
|
|
239
264
|
draft: 'Bozza'
|
|
240
265
|
edit_post_type: 'Modifica Post Type'
|
|
241
266
|
edit_category: 'Modifica Categoria'
|
|
@@ -264,13 +289,16 @@ it:
|
|
|
264
289
|
layout: 'Impaginazione'
|
|
265
290
|
trash: 'Cestino'
|
|
266
291
|
tooltip:
|
|
292
|
+
default_layout: 'Layout di default'
|
|
293
|
+
default_template: 'Template di default'
|
|
267
294
|
permission_asing_categories: 'Assegnare categorie'
|
|
268
|
-
permission_add_tags: 'Aggiungere Tag'
|
|
269
295
|
permission_add_content: 'Aggiungere contenuti'
|
|
270
296
|
permission_add_content_summary: 'Aggiungere sommari'
|
|
271
|
-
permission_reviews: 'Permessi per le recensioni'
|
|
272
297
|
permission_add_image_presentation: "Aggiungere un'immagine alla presentazione"
|
|
298
|
+
permission_add_tags: 'Aggiungere Tag'
|
|
299
|
+
permission_manage_layout: 'Permessi per gestione layout'
|
|
273
300
|
permission_manage_template: 'Gestire template'
|
|
301
|
+
permission_reviews: 'Permessi per le recensioni'
|
|
274
302
|
permission_add_keywords: 'Aggiungere parole chiave'
|
|
275
303
|
upload_image: 'Carica immagine'
|
|
276
304
|
view_comments: 'Vedi commenti'
|
|
@@ -281,6 +309,7 @@ it:
|
|
|
281
309
|
status_true: 'Attivo'
|
|
282
310
|
type_contents: 'Type Contents'
|
|
283
311
|
upgrade_to: "Aggiornamento a"
|
|
312
|
+
disabled_plugins: 'Disattiva plugins'
|
|
284
313
|
settings:
|
|
285
314
|
activate_create_account: 'Attiva account creato'
|
|
286
315
|
activate_login_social_networks: 'Attiva i Login con i Social Network'
|
|
@@ -297,6 +326,15 @@ it:
|
|
|
297
326
|
edit_custom_field_group: 'Modifica Custom Field Group'
|
|
298
327
|
field: 'Field'
|
|
299
328
|
fields: 'Field'
|
|
329
|
+
filesystem_s3_access_key: 'Chiave di accesso AWS S3'
|
|
330
|
+
filesystem_s3_secret_key: 'Password di accesso AWS S3'
|
|
331
|
+
filesystem_s3_bucket_name: 'Nome del Bucket AWS S3'
|
|
332
|
+
filesystem_s3_endpoint: 'AWS S3 Bucket endpoint'
|
|
333
|
+
filesystem_region: 'Regione AWS S3'
|
|
334
|
+
filesystem_cdn: 'CDN url'
|
|
335
|
+
filesystem_thumb_size: 'Dimensione minuature [100x100]'
|
|
336
|
+
filesystem_max_file_size: 'Dimensione massima dei file [MB]'
|
|
337
|
+
aws: 'Salva file in AWS3'
|
|
300
338
|
information_basic: 'Informazioni principali'
|
|
301
339
|
theme_setting: "Impostazioni tema"
|
|
302
340
|
input_only_date: 'Inserisci solo la data'
|
|
@@ -336,6 +374,9 @@ it:
|
|
|
336
374
|
permission_login_facebook: 'Login con Facebook'
|
|
337
375
|
permission_login_google: 'Login con Google+'
|
|
338
376
|
posts_in: 'Articoli in'
|
|
377
|
+
security:
|
|
378
|
+
captcha_user_register: 'Attivare captcha sulla registrazione degli utenti?'
|
|
379
|
+
need_validate_email: 'Validazione email necessaria?'
|
|
339
380
|
settings: 'Impostazioni'
|
|
340
381
|
tooltip:
|
|
341
382
|
add_custom_field_posts: "Aggiungi Custom Field negli Articoli di "
|
|
@@ -350,12 +391,13 @@ it:
|
|
|
350
391
|
appearance: 'Aspetto'
|
|
351
392
|
comments: 'Commenti'
|
|
352
393
|
content: 'Contenuto'
|
|
353
|
-
contents: '
|
|
394
|
+
contents: 'Contenuti'
|
|
354
395
|
custom_fields: 'Custom Field'
|
|
355
396
|
dashboard: 'Dashboard'
|
|
356
397
|
general_site: 'Generale'
|
|
357
398
|
information: 'Informazioni'
|
|
358
399
|
languages: 'Lingue'
|
|
400
|
+
main_navigation: 'Menù principale'
|
|
359
401
|
media: 'Media'
|
|
360
402
|
menus: 'Menù'
|
|
361
403
|
navigation: 'Navigazione'
|
|
@@ -391,7 +433,6 @@ it:
|
|
|
391
433
|
author: 'Autore'
|
|
392
434
|
basic: 'Base'
|
|
393
435
|
categories: 'Categorie'
|
|
394
|
-
updated_at: "Aggiornato il"
|
|
395
436
|
comments: 'Commenti'
|
|
396
437
|
count: 'Contatore'
|
|
397
438
|
date_published: 'Data di pubblicazione'
|
|
@@ -410,7 +451,6 @@ it:
|
|
|
410
451
|
excerpt: 'Estratto'
|
|
411
452
|
facebook: 'Facebook'
|
|
412
453
|
favicon: 'Favicon'
|
|
413
|
-
screenshot: "Screenshot"
|
|
414
454
|
first_names: 'Nome'
|
|
415
455
|
group_name: 'Nome gruppo'
|
|
416
456
|
google_plus: 'Google+'
|
|
@@ -432,15 +472,15 @@ it:
|
|
|
432
472
|
logo: 'Logo'
|
|
433
473
|
manage_category: 'Gestisci Categoria'
|
|
434
474
|
manage_content: 'Gestisci Contenuto'
|
|
475
|
+
manage_keywords: 'Gestisci parole chiave'
|
|
476
|
+
manage_layout: 'Gestisci Layout'
|
|
477
|
+
manage_parent_structure: 'Gestisci gerarchia delle pagine'
|
|
435
478
|
manage_picture: 'Gestisci Immagine'
|
|
436
479
|
manage_summary: 'Gestisci Sommario'
|
|
437
480
|
manage_tags: 'Gestisci Tag'
|
|
438
481
|
manage_template: 'Gestisci Template'
|
|
439
482
|
modified: 'Modificato'
|
|
440
483
|
multiple_field_int: 'Campo multiplo?'
|
|
441
|
-
required_field_int: 'Campo obbligatorio?'
|
|
442
|
-
translate_field_int: 'Traduci campo?'
|
|
443
|
-
show_in_frontend: 'Mostra nel Frontend (solo contenuto articoli)'
|
|
444
484
|
name: 'Nome'
|
|
445
485
|
new_password: 'Nuova Password'
|
|
446
486
|
no_default: 'No Default'
|
|
@@ -452,6 +492,7 @@ it:
|
|
|
452
492
|
password_confirmation: 'Conferma Password'
|
|
453
493
|
password_protection: 'Protezione Password'
|
|
454
494
|
permit_comments_default: 'Accetta commenti (default)'
|
|
495
|
+
permit_is_featured: 'Permetti articoli in primo piano'
|
|
455
496
|
post: 'Articolo'
|
|
456
497
|
post_type: 'Post Type'
|
|
457
498
|
pending: 'In attesa'
|
|
@@ -461,7 +502,11 @@ it:
|
|
|
461
502
|
quick_info: 'Informazioni rapide'
|
|
462
503
|
registration: 'Registrazione'
|
|
463
504
|
repeat_new: 'Ripeti di nuovo'
|
|
505
|
+
required_field_int: 'Campo obbligatorio?'
|
|
464
506
|
role: 'Ruolo'
|
|
507
|
+
settings: 'Impostazioni'
|
|
508
|
+
screenshot: "Screenshot"
|
|
509
|
+
show_in_frontend: 'Mostra nel Frontend (solo contenuto articoli)'
|
|
465
510
|
slogan: 'Slogan'
|
|
466
511
|
slug: 'Slug'
|
|
467
512
|
short_code: 'Codice breve'
|
|
@@ -474,8 +519,10 @@ it:
|
|
|
474
519
|
text: 'Testo'
|
|
475
520
|
title: 'Titolo'
|
|
476
521
|
total: 'Totale'
|
|
522
|
+
translate_field_int: 'Traduci campo?'
|
|
477
523
|
trash: 'Cestino'
|
|
478
524
|
twitter: 'Twitter'
|
|
525
|
+
updated_at: "Aggiornato il"
|
|
479
526
|
username: 'Username'
|
|
480
527
|
value: 'Valore'
|
|
481
528
|
version: 'Versione'
|
|
@@ -500,20 +547,21 @@ it:
|
|
|
500
547
|
edit_profile: 'Modifica Profilo'
|
|
501
548
|
list_users: 'Lista Utenti'
|
|
502
549
|
list_user_roles: 'Ruoli'
|
|
550
|
+
post_types: Contenuto
|
|
503
551
|
message:
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
552
|
+
error: 'Utente non trovato.'
|
|
553
|
+
error_captcha: 'CAPTCHA errato!'
|
|
554
|
+
created: 'Utente creato.'
|
|
555
|
+
updated: 'Utente aggiornato.'
|
|
556
|
+
deleted: 'Utente eliminato.'
|
|
557
|
+
incorrect_old_password: 'Password precedente errata'
|
|
558
|
+
rol_error: 'Gruppo utenti non trovato.'
|
|
559
|
+
rol_created: 'Ruolo utente creato.'
|
|
560
|
+
rol_updated: 'Ruolo utente aggiornato.'
|
|
561
|
+
rol_deleted: 'Ruolo utente eliminato.'
|
|
562
|
+
requires_different_name: 'Inserisci un nome diverso'
|
|
563
|
+
requires_different_username: 'Inserisci uno username diverso'
|
|
564
|
+
requires_different_email: 'Inserisci una email diversa'
|
|
517
565
|
new_photo: 'Nuova foto'
|
|
518
566
|
others_permissions: 'Altri permessi'
|
|
519
567
|
profile: 'Profilo'
|
|
@@ -582,4 +630,4 @@ it:
|
|
|
582
630
|
deleted: 'Widget eliminato.'
|
|
583
631
|
error_created: 'Widget non creato.'
|
|
584
632
|
error_updated: 'Widget non aggiornato.'
|
|
585
|
-
not_registered_widgets: 'Non ci sono widget registrati'
|
|
633
|
+
not_registered_widgets: 'Non ci sono widget registrati'
|
|
@@ -0,0 +1,641 @@
|
|
|
1
|
+
# encoding: utf-8
|
|
2
|
+
pt:
|
|
3
|
+
camaleon_cms:
|
|
4
|
+
see_intro: "Ver introdução"
|
|
5
|
+
welcome_message: "Benvindo ao Camaleon CMS"
|
|
6
|
+
captcha_placeholder: 'Por favor escreva o texto da imagem'
|
|
7
|
+
page_not_exist: "<h1>ooops...</h1><h5>A página que procura não existe.</h5>"
|
|
8
|
+
page_error_500: "<h1>ooops...</h1><h5>Erro tipo 500 - Erro interno de servidor. Por favor, contacte o administrador.</h5>"
|
|
9
|
+
admin:
|
|
10
|
+
request_error_message: "Um erro ocorreu, por favor contacte o administrador."
|
|
11
|
+
authorization_error: "Não possui autorização."
|
|
12
|
+
header:
|
|
13
|
+
member_since: "Membro desde %{time}"
|
|
14
|
+
button:
|
|
15
|
+
activity: 'Atividade'
|
|
16
|
+
add_new_field: 'Adicionar novo campo'
|
|
17
|
+
add_option: 'Adicionar opção'
|
|
18
|
+
add_menu: 'Adicionar menu'
|
|
19
|
+
add_widget: 'Adicionar Widget'
|
|
20
|
+
accept: 'Aceitar'
|
|
21
|
+
actived: 'Ativado'
|
|
22
|
+
activate_plugin: 'Plugin Ativado'
|
|
23
|
+
back: 'Voltar'
|
|
24
|
+
change_photo: 'Mudar foto'
|
|
25
|
+
change_password: 'Mudar password'
|
|
26
|
+
create_menu: 'Criar menu'
|
|
27
|
+
create: 'Criar'
|
|
28
|
+
cancel: 'Cancelar'
|
|
29
|
+
chat: 'Chat'
|
|
30
|
+
close: 'Fechar'
|
|
31
|
+
delete: 'Apagar'
|
|
32
|
+
disable_plugin: 'Desativar Plugin'
|
|
33
|
+
enter: 'Entrar'
|
|
34
|
+
edit: 'Editar'
|
|
35
|
+
following: 'A seguir'
|
|
36
|
+
log_in: 'Entrar'
|
|
37
|
+
move_trash: 'Mover para o lixo'
|
|
38
|
+
no: 'Não'
|
|
39
|
+
none: 'Nenhum'
|
|
40
|
+
not_actived: 'Desativado'
|
|
41
|
+
publish: 'Publicar'
|
|
42
|
+
preview: 'Pré-Visualização'
|
|
43
|
+
proccess: 'Enviar'
|
|
44
|
+
recover: 'Recuperar'
|
|
45
|
+
restore: 'Restaurar'
|
|
46
|
+
restore_selections: 'Restaurar seleções'
|
|
47
|
+
search: 'Procurar'
|
|
48
|
+
select: 'Selecionar'
|
|
49
|
+
select_all: 'Selecionar Tudo'
|
|
50
|
+
select_file: 'Selecionar Arquivo'
|
|
51
|
+
select_none: 'Selecionar Nenhum'
|
|
52
|
+
sign_up: 'Registar'
|
|
53
|
+
submit: 'Enviar'
|
|
54
|
+
settings: 'Configurações'
|
|
55
|
+
sortable: 'Classificável'
|
|
56
|
+
update: 'Atualizar'
|
|
57
|
+
update_menu: 'Atualizar Menu'
|
|
58
|
+
upload_audio: 'Atualizar Áudio'
|
|
59
|
+
upload_file: 'Atualizar Arquivo'
|
|
60
|
+
drag_drop: 'Arraste e solte os arquivos aqui'
|
|
61
|
+
upload_image: 'Atualizar Imagem'
|
|
62
|
+
upload_icon: 'Atualizar Ícone'
|
|
63
|
+
upload_video: 'Atualizar Vídeo'
|
|
64
|
+
view_draft: 'Ver Rascunho'
|
|
65
|
+
view_page: 'Ver Página'
|
|
66
|
+
yes: 'Sim'
|
|
67
|
+
out_yes: 'Sim'
|
|
68
|
+
out_not: 'Não'
|
|
69
|
+
domain: "Domínio"
|
|
70
|
+
comments:
|
|
71
|
+
comments_list_post: 'Lista de comentários'
|
|
72
|
+
responses: 'Respostas'
|
|
73
|
+
message:
|
|
74
|
+
approved: 'Aprovado'
|
|
75
|
+
change_status: 'O estado da resposta foi alterado para '
|
|
76
|
+
created: 'O comentário foi criado.'
|
|
77
|
+
destroy: 'A resposta foi eliminada.'
|
|
78
|
+
destroy_comments: 'Os comentários foram eliminados.'
|
|
79
|
+
deleted: 'As respostas foram removidas.'
|
|
80
|
+
error: 'Nenhum comentário encontrado'
|
|
81
|
+
pending: 'Pendente'
|
|
82
|
+
responses: 'A resposta foi criada.'
|
|
83
|
+
spam: 'Spam'
|
|
84
|
+
there_no_comments: 'Não há comentários.'
|
|
85
|
+
updated: 'O comentário foi atualizado.'
|
|
86
|
+
|
|
87
|
+
tooltip:
|
|
88
|
+
approved_comment: 'Comentário aprovado'
|
|
89
|
+
comment_pending: 'Comentário pendente'
|
|
90
|
+
comment_spam: 'Comentário para Spam'
|
|
91
|
+
reply_comment: 'Comentário respondido'
|
|
92
|
+
delete_comment: 'Comentário eliminado'
|
|
93
|
+
custom_field:
|
|
94
|
+
message:
|
|
95
|
+
custom_group_error: 'Erro grupo campo personalizado'
|
|
96
|
+
custom_created: 'O grupo campo personalizado foi criado.'
|
|
97
|
+
custom_updated: 'O grupo personalizado campo foi atualizado.'
|
|
98
|
+
fields:
|
|
99
|
+
text_box: 'Caixa de texto'
|
|
100
|
+
text_area: 'Área de texto'
|
|
101
|
+
select: 'Selecionar'
|
|
102
|
+
colorpicker: 'Seletor de cores'
|
|
103
|
+
date: 'Data'
|
|
104
|
+
email: 'E-mail'
|
|
105
|
+
file: 'Arquivo'
|
|
106
|
+
image: 'Imagem'
|
|
107
|
+
numeric: 'Numérico'
|
|
108
|
+
phone: 'Telefone'
|
|
109
|
+
users: 'utilizadores'
|
|
110
|
+
posts: 'Publicações'
|
|
111
|
+
select_eval: 'Selecionar Eval'
|
|
112
|
+
field_attrs: 'Atributos de campo'
|
|
113
|
+
website: 'Website'
|
|
114
|
+
multiple_choice: 'Botão de rádio'
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
login:
|
|
118
|
+
already_have_account: 'Já tem uma conta?'
|
|
119
|
+
authentication: 'Autenticação'
|
|
120
|
+
captcha: 'Captcha'
|
|
121
|
+
create_account: 'Criar uma conta'
|
|
122
|
+
login: 'Login'
|
|
123
|
+
forgot_your_password_int: 'Esqueceu-se da sua password?'
|
|
124
|
+
message:
|
|
125
|
+
success: 'Benvindo!!!'
|
|
126
|
+
fail: 'Utilizador ou password incorreta'
|
|
127
|
+
forgot_url_incorrect: 'Endereço incorreto'
|
|
128
|
+
forgot_expired: 'Expirou o prazo para redefinir a password.'
|
|
129
|
+
hello: 'Olá'
|
|
130
|
+
reset_password_succes: 'Password redefinida com sucesso!'
|
|
131
|
+
reset_password_error: 'Password incorreta'
|
|
132
|
+
reset_url: 'Endereço de Redifinição'
|
|
133
|
+
subject_email: 'Reestabeleça seu acesso'
|
|
134
|
+
send_mail_succes: 'Email de redefinição enviado com sucesso.'
|
|
135
|
+
send_mail_error: 'Nenhum endereço de email encontrado.'
|
|
136
|
+
invalid_caption: 'Catpcha Inválido'
|
|
137
|
+
email_not_validated: 'Email não foi validado'
|
|
138
|
+
confirm_email_token_incorrect: 'Endereço incorreto'
|
|
139
|
+
confirm_email_token_expired: 'Endereço de confirmação expirou'
|
|
140
|
+
confirm_email_success: 'Email confirmado com sucesso'
|
|
141
|
+
personal_info: 'Informações pessoais'
|
|
142
|
+
please_login: 'Por favor faça login para prosseguir'
|
|
143
|
+
reset_password: 'Redefinir password'
|
|
144
|
+
reCaptcha: 'reCaptcha'
|
|
145
|
+
send_email: 'Enviar email'
|
|
146
|
+
reset_password_html: '<strong>Enviar email</strong>, redefinir password'
|
|
147
|
+
welcome: 'Benvindo'
|
|
148
|
+
welcome_login_html: '<strong>Bem-vindo</strong>, por favor faça login para prosseguir'
|
|
149
|
+
do_not_have_account_yet: "Não tem uma conta ainda?"
|
|
150
|
+
msg_registration_html: '<strong>Registe-se</strong> utilizando o formulário abaixo'
|
|
151
|
+
username: "Utilizador"
|
|
152
|
+
password: "Password"
|
|
153
|
+
password_confirm: "Confirmação de password"
|
|
154
|
+
first_name: "Primeiro Nome"
|
|
155
|
+
last_name: "Último Nome"
|
|
156
|
+
email: "Email"
|
|
157
|
+
remember_me: "Lembre-me"
|
|
158
|
+
logout:
|
|
159
|
+
log: 'Sair'
|
|
160
|
+
out: ''
|
|
161
|
+
logout: 'Sair'
|
|
162
|
+
logout_html: 'Deseja <strong>sair</strong>?'
|
|
163
|
+
message:
|
|
164
|
+
closed: 'Sessão terminada'
|
|
165
|
+
media:
|
|
166
|
+
media_manager: 'Gerir multimedia'
|
|
167
|
+
home: "Início"
|
|
168
|
+
menus:
|
|
169
|
+
link_url: 'Ligação URL'
|
|
170
|
+
message:
|
|
171
|
+
created: 'O menu foi criado.'
|
|
172
|
+
deleted: 'O menu foi eliminado.'
|
|
173
|
+
error_menu: 'Erro no menu'
|
|
174
|
+
name_link: 'Ligação do nome'
|
|
175
|
+
name_menu: 'Nome do menu'
|
|
176
|
+
external_link: 'Ligação externo'
|
|
177
|
+
or: 'ou'
|
|
178
|
+
create_new: 'criar um novo menu'
|
|
179
|
+
select: 'Selecionar menu'
|
|
180
|
+
select_edit: 'Selecione o menu que quer editar:'
|
|
181
|
+
message:
|
|
182
|
+
are_you_sure_you_want_log_out_int: 'Tem certeza que quer sair?'
|
|
183
|
+
are_you_sure_to_import: "Tem certeza que quer importar?"
|
|
184
|
+
data_found_list: 'Nenhum dado foi encontrado foi encontrado na lista'
|
|
185
|
+
delete: 'Tem certeza?'
|
|
186
|
+
delete_item: 'Quer realmente apagar este item?'
|
|
187
|
+
edit_menu: 'Coloque cada item na ordem de sua preferência. Clique no ícone de um lápis para editar o item e clique no ícone em forma de x para apagar o item.'
|
|
188
|
+
add_menus: 'Adicionar itens do menu na coluna da esquerda.'
|
|
189
|
+
press_no_continue_work_press_yes_logout: 'Pressione não se quer continuar o trabalho. Pressione sim para sair.'
|
|
190
|
+
updated_success: 'Atualizado com sucesso'
|
|
191
|
+
remove_items_submenu: 'Deseja realmente apagar este item do submenu?'
|
|
192
|
+
you_must_upload_image: 'Deve carregar um imagem'
|
|
193
|
+
you_must_upload_video: 'Deve carregar um vídeo'
|
|
194
|
+
so_their_data_has_not_been_saved: 'Os seus dados não foram gravados'
|
|
195
|
+
no_response_fields: 'nenhum campo de resposta '
|
|
196
|
+
quick_info: 'Algumas informações rápidas sobre esse utilizador'
|
|
197
|
+
was_inactivated: 'foi inativado.'
|
|
198
|
+
was_activated: 'foi ativado.'
|
|
199
|
+
was_upgraded: 'foi atualizado.'
|
|
200
|
+
can_not_be_removed: 'não pode ser removido.'
|
|
201
|
+
was_removed: 'foi removido.'
|
|
202
|
+
processing: 'Processamento...'
|
|
203
|
+
change_photo: 'Utilize o formulário abaixo para fazer upload de arquivos. Somente arquivos de imagem.'
|
|
204
|
+
change_password: 'Para alterar sua password digite sua password antiga em primeiro lugar, em seguida, digite a nova password e repita a nova password.'
|
|
205
|
+
you_must_upload_json_file: 'Deve fazer upload de um arquivo json'
|
|
206
|
+
import_process: 'Importação em processo'
|
|
207
|
+
unauthorized: "Acesso negado"
|
|
208
|
+
welcome: 'Bem-vindo ao painel de administração do seu site.'
|
|
209
|
+
no_templates_defined: 'Não foram definidos templates'
|
|
210
|
+
avatar_updated: 'Avatar atualizado'
|
|
211
|
+
form_error: 'Formulário de erro'
|
|
212
|
+
page_title:
|
|
213
|
+
page_title: 'Título da página'
|
|
214
|
+
create: 'Criar'
|
|
215
|
+
details: 'Detalhes'
|
|
216
|
+
edit: 'Editar'
|
|
217
|
+
add: 'Adicionar'
|
|
218
|
+
list: 'Listar'
|
|
219
|
+
list_of: 'Lista de'
|
|
220
|
+
new_site: 'Novo Site'
|
|
221
|
+
edit_site: 'Editar Site'
|
|
222
|
+
update: 'Atualizar'
|
|
223
|
+
post:
|
|
224
|
+
add_tag: 'Adicionar uma tag'
|
|
225
|
+
clone: 'Clonar'
|
|
226
|
+
clone_content: 'Clonar conteúdo'
|
|
227
|
+
label_required: 'Tag(label) necessária'
|
|
228
|
+
placeholder_required: 'Placeholder necessário'
|
|
229
|
+
message:
|
|
230
|
+
created: 'O %{post_type} foi criado.'
|
|
231
|
+
updated: 'O %{post_type} foi atualizado.'
|
|
232
|
+
deleted: 'O %{post_type} foi removido.'
|
|
233
|
+
error: 'Erro %{post_type}'
|
|
234
|
+
error_post_type: 'Erro %{post_type}'
|
|
235
|
+
trash: 'O %{post_type} foi movido para o lixo.'
|
|
236
|
+
requires_different_slug: 'É necessário que o slug seja único'
|
|
237
|
+
restore: 'O %{post_type} foi restaurado.'
|
|
238
|
+
draft: 'Rascunho gravado com sucesso'
|
|
239
|
+
recover: 'Recuperar...'
|
|
240
|
+
permalink: 'Ligação permanente'
|
|
241
|
+
post_type:
|
|
242
|
+
all: 'Todos os itens'
|
|
243
|
+
add: 'Adicionar'
|
|
244
|
+
add_category: 'Adicionar Categoria'
|
|
245
|
+
add_post_type: 'Adicionar tipo de post'
|
|
246
|
+
add_new: 'Adicionar novo'
|
|
247
|
+
add_post_tag: 'Adicionar tag para post'
|
|
248
|
+
categories: 'Categorias'
|
|
249
|
+
category: 'Categorias'
|
|
250
|
+
configuration: 'Configurações'
|
|
251
|
+
other_configuration: 'Configurações personalizadas'
|
|
252
|
+
comments: 'Comentários'
|
|
253
|
+
draft: 'Rascunho'
|
|
254
|
+
edit_post_type: 'Editar tipo de post'
|
|
255
|
+
edit_category: 'Editar categoria'
|
|
256
|
+
enter_password: 'Entre com a password'
|
|
257
|
+
featured_image: 'Imagem destacada'
|
|
258
|
+
keywords: 'Palavras-chave'
|
|
259
|
+
default_layout: 'Layout Padrão'
|
|
260
|
+
default_template: 'Template Padrão'
|
|
261
|
+
icon: 'Ícone'
|
|
262
|
+
message:
|
|
263
|
+
error: 'Erro de classe'
|
|
264
|
+
error_term: 'Erro de termo de classe'
|
|
265
|
+
created: 'Gravado'
|
|
266
|
+
updated: 'Atualizado'
|
|
267
|
+
deleted: 'eliminado'
|
|
268
|
+
no_created_html: '<br> Nenhuma %{taxonomy} encontrado'
|
|
269
|
+
pending: 'Pendente'
|
|
270
|
+
permit_comments: 'Permitir comentários?'
|
|
271
|
+
post_types: 'Tipos de publicação'
|
|
272
|
+
posts: 'Publicações'
|
|
273
|
+
post_tags: 'Tags de publicações'
|
|
274
|
+
published: 'Publicado'
|
|
275
|
+
published_date: 'Data de Publicação'
|
|
276
|
+
save_draft: 'Rascunho Gravado'
|
|
277
|
+
save_pending: 'Gravação Pendente'
|
|
278
|
+
summary: 'Resumo'
|
|
279
|
+
tags: 'Tags'
|
|
280
|
+
template: 'Template'
|
|
281
|
+
layout: 'Layout'
|
|
282
|
+
trash: 'Lixo'
|
|
283
|
+
tooltip:
|
|
284
|
+
permission_asing_categories: 'Permissão para atribuir categorias'
|
|
285
|
+
permission_add_tags: 'Permissão para adicionar tags'
|
|
286
|
+
permission_add_content: 'Permissão para adicionar conteúdo'
|
|
287
|
+
permission_add_content_summary: 'Permissão para adicionar conteúdo resumido'
|
|
288
|
+
permission_reviews: 'Permissão para revisões'
|
|
289
|
+
permission_add_image_presentation: 'Permissão para adicionar uma imagem de apresentação'
|
|
290
|
+
permission_manage_template: 'Permissão gerir Template'
|
|
291
|
+
permission_add_keywords: 'Permissão para adicionar palavras-chave'
|
|
292
|
+
permission_to_support_parent_structure: 'Permitir que a publicação indique a página pai'
|
|
293
|
+
upload_image: 'Carregar imagem'
|
|
294
|
+
view_comments: 'Ver comentários'
|
|
295
|
+
plugins:
|
|
296
|
+
active_plugins: 'Ativar Plugins'
|
|
297
|
+
all_plugins: 'Todos os Plugins'
|
|
298
|
+
status_false: 'Inativos'
|
|
299
|
+
status_true: 'Ativos'
|
|
300
|
+
type_contents: 'Tipo de conteúdo'
|
|
301
|
+
upgrade_to: "Atualizar para"
|
|
302
|
+
settings:
|
|
303
|
+
aws: "Salvar arquivos na Amazon"
|
|
304
|
+
filesystem_settings: "Configurações de arquivos"
|
|
305
|
+
filesystem_thumb_size: "Tamanho do thumbnail [100x100]"
|
|
306
|
+
filesystem_max_file_size: "Tamanho máximo do arquivo para Upload [MB]"
|
|
307
|
+
activate_create_account: 'Ative criar conta'
|
|
308
|
+
activate_login_social_networks: 'Ative login por meio de redes sociais'
|
|
309
|
+
add_field_group: 'Adicionar grupo de campo'
|
|
310
|
+
admin_language: 'Idioma da Administração'
|
|
311
|
+
allow_user_registration: 'Permitir cadastro de utilizadores'
|
|
312
|
+
available_fields: 'Campos disponíveis'
|
|
313
|
+
available_languages: 'Idiomas disponíveis'
|
|
314
|
+
categories_in: 'Categorias em'
|
|
315
|
+
configuration_site: 'Configurações do site'
|
|
316
|
+
current_languages: 'Idioma atual'
|
|
317
|
+
details_custom_field_group: 'Detalhes grupo de campos personalizados'
|
|
318
|
+
details_site: 'Detalhes do site'
|
|
319
|
+
edit_custom_field_group: 'Editar grupo de campos personalizados'
|
|
320
|
+
field: 'Campo'
|
|
321
|
+
fields: 'Campos'
|
|
322
|
+
information_basic: 'Informação básica'
|
|
323
|
+
theme_setting: "Configurações do Tema"
|
|
324
|
+
input_only_date: 'Apenas a data'
|
|
325
|
+
input_date_time: 'Data e hora'
|
|
326
|
+
languages_configuration: 'Configurações de idioma'
|
|
327
|
+
list_custom_fields_group: 'Lista de grupo de campos personalizados'
|
|
328
|
+
list_sites: 'Listar sites'
|
|
329
|
+
login_twitter: 'Twitter'
|
|
330
|
+
login_facebook: 'Facebook'
|
|
331
|
+
login_google: 'Google+'
|
|
332
|
+
email_enabled: "Use as configurações para enviar emails"
|
|
333
|
+
email_server: "Servidor de email"
|
|
334
|
+
email_port: "Porta de email"
|
|
335
|
+
email_domain: "Domínio do email"
|
|
336
|
+
email_username: "Nome do utilizador"
|
|
337
|
+
email_pass: "Password do utilizador"
|
|
338
|
+
email_from: "De"
|
|
339
|
+
email_cc: "Cópia"
|
|
340
|
+
twitter_card: "Twitter Card"
|
|
341
|
+
author: "Nome do autor"
|
|
342
|
+
seo_setting: "Configurações SEO"
|
|
343
|
+
email_settings: "Configurações de Email (SMTP)"
|
|
344
|
+
filesystem_type: "Tipo de sistema de arquivos"
|
|
345
|
+
filesystem_s3_access_key: "Chave de acesso da AWS S3"
|
|
346
|
+
filesystem_s3_secret_key: "Chave secreta da AWS S3"
|
|
347
|
+
filesystem_s3_bucket_name: "Nome do Bucket da AWS S3"
|
|
348
|
+
filesystem_s3_endpoint: "Endpoint do bucket da AWS S3"
|
|
349
|
+
filesystem_region: "Região da AWS S3"
|
|
350
|
+
filesystem_cdn: "Url da CDN"
|
|
351
|
+
security:
|
|
352
|
+
captcha_user_register: "Habilitar captcha no registro de utilizadores"
|
|
353
|
+
message:
|
|
354
|
+
language_updated: 'O seu idioma foi configurado.'
|
|
355
|
+
site_updated: 'O site foi atualziado.'
|
|
356
|
+
new_custom_field_group: 'Novo grupo de campos personalizados'
|
|
357
|
+
options_select: 'Seleção de opções'
|
|
358
|
+
option_title: 'Opção de título'
|
|
359
|
+
others: 'Outros'
|
|
360
|
+
please_separated_commas: 'Por favor separe com vírgula'
|
|
361
|
+
comment_status: 'Registrar comentários como aprovados?'
|
|
362
|
+
list_per_page_front: 'Quantidade de itens listados no frontend'
|
|
363
|
+
list_per_page_admin: 'Quantidade de itens listados no backend'
|
|
364
|
+
permission_register_users: 'Permissão para registrar utilizadores'
|
|
365
|
+
permission_login_twitter: 'Permissão para Login com Twitter'
|
|
366
|
+
permission_login_facebook: 'Permissão para Login com Facebook'
|
|
367
|
+
permission_login_google: 'Permissão para Login com Google+'
|
|
368
|
+
posts_in: 'Publicações em'
|
|
369
|
+
settings: 'Configurações'
|
|
370
|
+
tooltip:
|
|
371
|
+
add_custom_field_posts: 'Adicionar campo personalizado em Publicações de '
|
|
372
|
+
add_custom_field_categories: 'Adicionar campo personalizado em Categorias de '
|
|
373
|
+
add_custom_field_users: 'Adicionar campo personalizado em utilizadores '
|
|
374
|
+
add_custom_field_sites: 'Adicionar campo personalizado em Site '
|
|
375
|
+
add_custom_field_themes: 'Adicionar campo personalizado em Tema '
|
|
376
|
+
add_custom_field_widget: 'Adicionar campo personalizado em Widget '
|
|
377
|
+
untitled: 'Sem título'
|
|
378
|
+
where_display_group: 'Onde mostrar este grupo'
|
|
379
|
+
sidebar:
|
|
380
|
+
appearance: 'Aparência'
|
|
381
|
+
comments: 'Comentários'
|
|
382
|
+
content: 'Conteúdo'
|
|
383
|
+
contents: 'Conteúdos'
|
|
384
|
+
content_groups: 'Gupos de conteúdo'
|
|
385
|
+
custom_fields: 'Campos personalizados'
|
|
386
|
+
dashboard: 'Painel'
|
|
387
|
+
general_site: 'Site geral'
|
|
388
|
+
information: 'Informação'
|
|
389
|
+
languages: 'Idiomas'
|
|
390
|
+
media: 'Mídia'
|
|
391
|
+
menus: 'Menus'
|
|
392
|
+
navigation: 'Navegação'
|
|
393
|
+
plugins: 'Plugins'
|
|
394
|
+
post_type: 'Tipo de Publicações'
|
|
395
|
+
settings: 'Configurações'
|
|
396
|
+
site_settings: 'Configurações do Site'
|
|
397
|
+
sites: 'Sites'
|
|
398
|
+
themes: 'Temas'
|
|
399
|
+
users: 'utilizadores'
|
|
400
|
+
widget: 'Widget'
|
|
401
|
+
widgets: 'Widgets'
|
|
402
|
+
main_navigation: "NAVEGAÇÃO PRINCIPAL"
|
|
403
|
+
sidebar_top:
|
|
404
|
+
admin_panel: 'Admin. Painel'
|
|
405
|
+
visit: 'Visite'
|
|
406
|
+
sites:
|
|
407
|
+
add_site: 'Adicionar Site'
|
|
408
|
+
message:
|
|
409
|
+
error: 'Site não encontrado'
|
|
410
|
+
created: 'O site foi criado.'
|
|
411
|
+
updated: 'O site foi atualizado.'
|
|
412
|
+
deleted: 'Exclusão feita'
|
|
413
|
+
enter_key_domain: 'Entre com uma chave ou um domínio'
|
|
414
|
+
enter_key_domain_empty: 'Entre com uma chave ou um domínio'
|
|
415
|
+
signin:
|
|
416
|
+
message:
|
|
417
|
+
enter_username_password: 'Deve entrar com o utilizador e/ou password'
|
|
418
|
+
combination_username_password_invalid: 'Combinação de utilizador/password inválido.'
|
|
419
|
+
success_user: 'Utilizador entrou com sucesso'
|
|
420
|
+
table:
|
|
421
|
+
actions: 'Ações'
|
|
422
|
+
attribute: 'Atributo'
|
|
423
|
+
author: 'Autor'
|
|
424
|
+
basic: 'Básico'
|
|
425
|
+
categories: 'Categorias'
|
|
426
|
+
updated_at: "Atualizado em"
|
|
427
|
+
comments: 'Comentários'
|
|
428
|
+
count: 'Contar'
|
|
429
|
+
date_published: 'Data de publicação'
|
|
430
|
+
default: 'Padrão'
|
|
431
|
+
default_thumbnail: 'Miniatura padrão'
|
|
432
|
+
default_value: 'Valor padrão'
|
|
433
|
+
description: 'Descrição'
|
|
434
|
+
dimensions: 'Dimensões'
|
|
435
|
+
display_objects: 'Objetos mostrados'
|
|
436
|
+
draft: 'Rascunho'
|
|
437
|
+
email: 'Email'
|
|
438
|
+
e_mail: 'E-mail'
|
|
439
|
+
email_address: 'Endereço de Email'
|
|
440
|
+
error: 'Erro'
|
|
441
|
+
errors: 'Erros'
|
|
442
|
+
excerpt: 'Excerto'
|
|
443
|
+
facebook: 'Facebook'
|
|
444
|
+
favicon: 'Favicon'
|
|
445
|
+
screenshot: "Captura de Tela"
|
|
446
|
+
first_names: 'Primeiros nomes'
|
|
447
|
+
group_name: 'Nome grupo'
|
|
448
|
+
google_plus: 'Google plus'
|
|
449
|
+
hide: 'Esconder'
|
|
450
|
+
home_page: 'Página inicial'
|
|
451
|
+
has_keywords: 'Tem palavras-chave'
|
|
452
|
+
manage_keywords: 'Gerir palavras-chave'
|
|
453
|
+
id: 'ID'
|
|
454
|
+
images: 'Imagens'
|
|
455
|
+
import: 'Importar'
|
|
456
|
+
instagram: 'Instagram'
|
|
457
|
+
keywords: 'Palavras-chave (separe por vírgula)'
|
|
458
|
+
kind: 'Tipo'
|
|
459
|
+
last_login: 'Último login'
|
|
460
|
+
last_names: 'Último Nome'
|
|
461
|
+
last_visit: 'Última visita'
|
|
462
|
+
link: 'Ligação'
|
|
463
|
+
linkedin: 'LinkedIn'
|
|
464
|
+
login: 'Login'
|
|
465
|
+
logo: 'Logótipo'
|
|
466
|
+
manage_category: 'Gerir Categoria'
|
|
467
|
+
manage_content: 'Gerir Conteúdo'
|
|
468
|
+
manage_picture: 'Gerir Imagem'
|
|
469
|
+
manage_summary: 'Gerir Resumo'
|
|
470
|
+
manage_tags: 'Gerir Tags'
|
|
471
|
+
manage_template: 'Gerir Template'
|
|
472
|
+
manage_layout: 'Gerir Layout'
|
|
473
|
+
modified: 'Modificado'
|
|
474
|
+
multiple_field_int: 'Campo múltiplo?'
|
|
475
|
+
required_field_int: 'Campo obrigatório?'
|
|
476
|
+
translate_field_int: 'Campo traduzido?'
|
|
477
|
+
show_in_frontend: 'Mostrar no Frontend (apenas conteúdo publicado)'
|
|
478
|
+
name: 'Nome'
|
|
479
|
+
new_password: 'Nova password'
|
|
480
|
+
no_default: 'Nenhum padrão'
|
|
481
|
+
old_password: 'Password antiga'
|
|
482
|
+
options: 'Opções'
|
|
483
|
+
options_field: 'Campo de opções'
|
|
484
|
+
parent: 'Pai'
|
|
485
|
+
password: 'Password'
|
|
486
|
+
password_confirmation: 'Confirmação de password'
|
|
487
|
+
password_protection: 'Proteçao de password'
|
|
488
|
+
permit_comments_default: 'Permitir comentários (padrão)'
|
|
489
|
+
post: 'Publicação'
|
|
490
|
+
post_type: 'Tipo de publicação'
|
|
491
|
+
pending: 'Pendente'
|
|
492
|
+
private: 'Privado'
|
|
493
|
+
public: 'Público'
|
|
494
|
+
qty: 'Quantidade'
|
|
495
|
+
quick_info: 'Informação rápida'
|
|
496
|
+
registration: 'Registro'
|
|
497
|
+
repeat_new: 'Repetir Novo'
|
|
498
|
+
role: 'Cargo'
|
|
499
|
+
slogan: 'Descrição'
|
|
500
|
+
slug: 'Slug'
|
|
501
|
+
short_code: 'Short Code'
|
|
502
|
+
site_name: 'Nome do Site'
|
|
503
|
+
size: 'Tamanho'
|
|
504
|
+
social: 'Social'
|
|
505
|
+
skype: 'Skype'
|
|
506
|
+
status: 'Status'
|
|
507
|
+
tags: 'Tags'
|
|
508
|
+
text: 'Texto'
|
|
509
|
+
title: 'Título'
|
|
510
|
+
total: 'Total'
|
|
511
|
+
trash: 'Lixo'
|
|
512
|
+
twitter: 'Twitter'
|
|
513
|
+
username: 'Utilizador'
|
|
514
|
+
value: 'Valor'
|
|
515
|
+
version: 'Versão'
|
|
516
|
+
visibility: 'Visibilidade'
|
|
517
|
+
page_404: 'Página 404'
|
|
518
|
+
youtube: 'Youtube'
|
|
519
|
+
more_actions: 'Mais ações'
|
|
520
|
+
more_actions_info: 'Mais ações...'
|
|
521
|
+
shorcodes: "Shortcodes"
|
|
522
|
+
themes:
|
|
523
|
+
footer_copyright: 'Direitos autorais do rodapé'
|
|
524
|
+
theme_select: 'Selecione o Tema'
|
|
525
|
+
title: 'Configurações do Tema %{theme} '
|
|
526
|
+
analytics_code: 'Código Analytics'
|
|
527
|
+
social_share: 'Compartilhamento Social'
|
|
528
|
+
|
|
529
|
+
message:
|
|
530
|
+
updated: 'Tema atualizado'
|
|
531
|
+
users:
|
|
532
|
+
all_users: 'Todos utilizadores'
|
|
533
|
+
add_user: 'Adicionar utilizador'
|
|
534
|
+
add_user_role: 'Adicionar regra de utilizador'
|
|
535
|
+
avatar: 'Avatar'
|
|
536
|
+
create_user: 'Criar Utilizador'
|
|
537
|
+
edit_profile: 'Editar Perfil'
|
|
538
|
+
list_users: 'Listar utilizadores'
|
|
539
|
+
list_user_roles: 'Regras de utilizador'
|
|
540
|
+
message:
|
|
541
|
+
error: 'Utilizador não encontrado.'
|
|
542
|
+
error_captcha: 'Ih! Tem um erro com o CAPTCHA!'
|
|
543
|
+
created: 'O utilizador foi criado.'
|
|
544
|
+
updated: 'O utilizador foi atualizado.'
|
|
545
|
+
deleted: 'O utilizador foi eliminado.'
|
|
546
|
+
incorrect_old_password: 'Password antiga incorreta'
|
|
547
|
+
rol_error: 'Grupo de utilizador não encontrado.'
|
|
548
|
+
rol_created: 'A regra do utilizador foi criada.'
|
|
549
|
+
rol_updated: 'A regra do utilizador foi atualizada.'
|
|
550
|
+
rol_deleted: 'A regra do utilizador foi eliminada.'
|
|
551
|
+
requires_different_name: 'Requer nome diferentes'
|
|
552
|
+
requires_different_username: 'Requer utilizador diferente'
|
|
553
|
+
requires_different_email: 'Requer email diferente'
|
|
554
|
+
new_photo: 'Nova foto'
|
|
555
|
+
others_permissions: 'Outras permissões'
|
|
556
|
+
profile: 'Perfil'
|
|
557
|
+
slogan: 'Slogan'
|
|
558
|
+
type_contents: 'TIpo de conteúdos'
|
|
559
|
+
user_roles: 'Regras de utilizadores'
|
|
560
|
+
roles_values:
|
|
561
|
+
comments: 'Comentários'
|
|
562
|
+
forms: 'Formulários'
|
|
563
|
+
media: 'Mídia'
|
|
564
|
+
publish: 'Publicar'
|
|
565
|
+
themes: 'Temas'
|
|
566
|
+
html_create_or_edit: 'Criar<br>ou Editar'
|
|
567
|
+
html_edit_other: 'Editar <br> Outro'
|
|
568
|
+
html_edit_publish: 'Editar <br> Publicar'
|
|
569
|
+
html_delete_other: 'Apagar <br> Outro'
|
|
570
|
+
html_delete_publish: 'Apagar <br> Publicar'
|
|
571
|
+
html_read_private: 'Ler <br> Privado'
|
|
572
|
+
html_manage_categories: 'Gerir <br> Categorias'
|
|
573
|
+
html_manage_tags: 'Gerir <br> Tags'
|
|
574
|
+
tool_tip:
|
|
575
|
+
comments: 'Permissão para a secção de comentários'
|
|
576
|
+
delete: 'Permissão para apagar publicações'
|
|
577
|
+
forms: 'Permissão para secção de formulários'
|
|
578
|
+
media: 'Permissão para o meio'
|
|
579
|
+
publish: 'Permissão para Criar ou Editar, Editar Outro, Editar, Publicar, para habilitar esta permissão'
|
|
580
|
+
themes: 'Permissão para a secção Temas'
|
|
581
|
+
widgets: 'Permissão para a secção Widgets'
|
|
582
|
+
menus: 'Permissão para a secção Menu'
|
|
583
|
+
plugins: 'Permissão para a secção Plugins'
|
|
584
|
+
users: 'Permissão para criar, editar, apagar utilizadores'
|
|
585
|
+
settings: 'Permissão para secção Configurações'
|
|
586
|
+
create_or_edit: 'Permite criar e editar suas postagens (O post não está publicado)'
|
|
587
|
+
edit_other: 'Permite editar o post de outros utilizadores (O post não está publicado)'
|
|
588
|
+
edit_publish: 'Permite editar o post publicado'
|
|
589
|
+
delete_other: 'Precisa de permissão para remover a edição de outras postagens por outros utilizadores'
|
|
590
|
+
delete_publish: 'Precisa permitir Exclusão, Exclusão de outros, para habilitar esta permissão'
|
|
591
|
+
read_private: 'Permitir que veja postagens privadas'
|
|
592
|
+
manage_categories: 'Permissão para criar, editar e apagar categorias'
|
|
593
|
+
manage_tags: 'Permissão para criar, editar e apagar tag de post'
|
|
594
|
+
validate:
|
|
595
|
+
required: 'Este campo é obrigatório.'
|
|
596
|
+
remote: 'Por favor, corrija este campo.'
|
|
597
|
+
email: 'Por favor, digite um endereço de email válido.'
|
|
598
|
+
url: 'Por favor, digite uma URL válida.'
|
|
599
|
+
date: 'Por favor, digite um data válida.'
|
|
600
|
+
dateiso: 'Por favor, digite uma data válida ( ISO ).'
|
|
601
|
+
number: 'Por favor, digite m número válido.'
|
|
602
|
+
digits: 'Por favor, digite apenas dígitos.'
|
|
603
|
+
creditcard: 'Por favor, digite um número de cartão de crédito válido.'
|
|
604
|
+
equalto: 'Por favor, digite o mesmo valor novamente.'
|
|
605
|
+
maxlength: 'Por favor, não digite mais que {0} caracteres.'
|
|
606
|
+
minlength: 'Por favor, digite ao menos {0} caracteres.'
|
|
607
|
+
rangelength: 'Por favor, digite um valor entre {0} e {1} caracteres.'
|
|
608
|
+
range: 'Por favor, digite um valor entre {0} e {1}.'
|
|
609
|
+
max: 'Por favor, digite um valor menor ou igual a {0}.'
|
|
610
|
+
min: 'Por favor, digite um valor maior ou igual a {0}.'
|
|
611
|
+
widgets:
|
|
612
|
+
create_widget: 'Criar Widget'
|
|
613
|
+
create_sidebar: 'Criar Sidebar'
|
|
614
|
+
complex_widgets: 'Widgets Complexo'
|
|
615
|
+
simple_widgets: 'Widgets Simples'
|
|
616
|
+
message:
|
|
617
|
+
created: 'O widget foi criado.'
|
|
618
|
+
updated: 'O widget foi atualizado.'
|
|
619
|
+
deleted: 'O widget foi eliminado.'
|
|
620
|
+
error_created: 'Nenhum Widget criado.'
|
|
621
|
+
error_updated: 'Nenhum Widget atualizado.'
|
|
622
|
+
not_registered_widgets: 'Não há widgets registados'
|
|
623
|
+
intro:
|
|
624
|
+
profile: "Neste lugar pode ver suas opções de perfis."
|
|
625
|
+
content: "Este bloco contém todo o grupo de conteúdo de seu site. Cada conteúdo pode ter uma estrutura diferente configurada em Configurações => Grupos de conteúdo"
|
|
626
|
+
#dashboard: "Nesta secção pode ver "
|
|
627
|
+
media: "Esta secção gere todos os arquivos de mídia público"
|
|
628
|
+
comments: "Esta secção gere todos os comentários de seus conteúdos"
|
|
629
|
+
appearance: "Gerir todas as informações relatadas para a Interface Pública"
|
|
630
|
+
themes: "Nesta secção pode escolher seu tema preferido (Interface Pública)"
|
|
631
|
+
widgets: "Este módulo permite que gira seus widgets e cole o código em qualquer conteúdo."
|
|
632
|
+
menus: "<img style=\"max-width: 100%;\" src=\"%{image}\" /> Este módulo permite controlar seu menu para a Interface Pública em níveis múltiplos."
|
|
633
|
+
plugins: "Nesta secção pode ver todos plugins (aplicações personalizadas para extender as funcionalidades de seu site)."
|
|
634
|
+
users: "Permite gerer todos os utilizadores de seu site.Também pode gerer as regras de seus utilizadores."
|
|
635
|
+
settings: "Nesta secção pode achar todas as configurações do site"
|
|
636
|
+
gral_site: "Esta é a secção onde pode configurar as definições de seu site e o tema atual"
|
|
637
|
+
sites: "Este módulo permite gerer seus subsites, pode criar sites ilimitados como este (Isto é mostrado apenas para o site principal). Confira em /config/system.json para personalizar as configurações."
|
|
638
|
+
custom_fields: "Esta secção permite extender facilmente seu conteúdo, temas, ... por campos personalizados."
|
|
639
|
+
post_type: "Neste módulo pode gerer grupos de conteúdos sem programar nada."
|
|
640
|
+
languages: "Este módulo permite gerer todos os idiomas para seu site. Também pode configurar o idioma para seu painel administrativo."
|
|
641
|
+
shortcodes: "Nesta secção pode ver todos os atalhos (shortcodes) disposníveis para usar no seu conteúdo."
|