alchemy_cms 3.3.3 → 3.4.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/CHANGELOG.md +42 -4
- data/README.md +7 -3
- data/alchemy_cms.gemspec +1 -0
- data/app/assets/javascripts/alchemy/{alchemy.js → admin.js} +1 -2
- data/app/assets/javascripts/alchemy/alchemy.datepicker.js.coffee +28 -25
- data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +1 -0
- data/app/assets/javascripts/alchemy/alchemy.i18n.js.coffee +7 -1
- data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.sitemap.js.coffee +26 -0
- data/app/assets/javascripts/alchemy/alchemy.translations.js.coffee +56 -1
- data/app/assets/stylesheets/alchemy/_variables.scss +1 -0
- data/app/assets/stylesheets/alchemy/admin.scss +2 -1
- data/app/assets/stylesheets/alchemy/archive.scss +7 -0
- data/app/assets/stylesheets/alchemy/base.scss +0 -42
- data/app/assets/stylesheets/alchemy/buttons.scss +2 -1
- data/app/assets/stylesheets/alchemy/form_fields.scss +9 -0
- data/app/assets/stylesheets/alchemy/forms.scss +36 -10
- data/app/assets/stylesheets/alchemy/frame.scss +12 -1
- data/app/assets/stylesheets/alchemy/icons.scss +1 -1
- data/app/assets/stylesheets/alchemy/jquery-ui.scss +0 -260
- data/app/assets/stylesheets/alchemy/jquery.datetimepicker.scss +507 -0
- data/app/assets/stylesheets/alchemy/lists.scss +62 -0
- data/app/assets/stylesheets/alchemy/selects.scss +9 -2
- data/app/assets/stylesheets/alchemy/sitemap.scss +28 -51
- data/app/assets/stylesheets/alchemy/toolbar.scss +0 -2
- data/app/controllers/alchemy/admin/attachments_controller.rb +4 -6
- data/app/controllers/alchemy/admin/base_controller.rb +2 -2
- data/app/controllers/alchemy/admin/dashboard_controller.rb +2 -2
- data/app/controllers/alchemy/admin/languages_controller.rb +5 -0
- data/app/controllers/alchemy/admin/pages_controller.rb +14 -5
- data/app/controllers/alchemy/admin/resources_controller.rb +17 -1
- data/app/controllers/alchemy/base_controller.rb +1 -0
- data/app/controllers/alchemy/messages_controller.rb +1 -1
- data/app/controllers/alchemy/pages_controller.rb +16 -26
- data/app/controllers/alchemy/pictures_controller.rb +23 -10
- data/app/controllers/concerns/alchemy/page_redirects.rb +7 -7
- data/app/helpers/alchemy/admin/base_helper.rb +22 -19
- data/app/helpers/alchemy/admin/essences_helper.rb +26 -11
- data/app/helpers/alchemy/admin/pages_helper.rb +2 -1
- data/app/helpers/alchemy/essences_helper.rb +0 -35
- data/app/helpers/alchemy/url_helper.rb +1 -1
- data/app/mailers/alchemy/base_mailer.rb +18 -0
- data/app/mailers/alchemy/{messages.rb → messages_mailer.rb} +1 -1
- data/app/models/alchemy/attachment.rb +9 -0
- data/app/models/alchemy/cell.rb +1 -1
- data/app/models/alchemy/essence_picture.rb +4 -1
- data/app/models/alchemy/essence_picture_view.rb +68 -0
- data/app/models/alchemy/language.rb +8 -10
- data/app/models/alchemy/language/code.rb +4 -1
- data/app/models/alchemy/page.rb +69 -26
- data/app/models/alchemy/page/page_natures.rb +22 -0
- data/app/models/alchemy/page/page_scopes.rb +20 -6
- data/app/models/alchemy/picture.rb +37 -4
- data/app/models/alchemy/site.rb +8 -0
- data/app/serializers/alchemy/page_tree_serializer.rb +1 -1
- data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +9 -6
- data/app/views/alchemy/admin/attachments/_file_to_assign.html.erb +11 -9
- data/app/views/alchemy/admin/attachments/_filter_bar.html.erb +32 -0
- data/app/views/alchemy/admin/attachments/_overlay_file_list.html.erb +14 -2
- data/app/views/alchemy/admin/attachments/index.html.erb +10 -9
- data/app/views/alchemy/admin/dashboard/_locked_pages.html.erb +20 -9
- data/app/views/alchemy/admin/dashboard/_recent_pages.html.erb +11 -1
- data/app/views/alchemy/admin/languages/_form.html.erb +1 -0
- data/app/views/alchemy/admin/languages/index.html.erb +7 -8
- data/app/views/alchemy/admin/layoutpages/_layoutpage.html.erb +1 -1
- data/app/views/alchemy/admin/layoutpages/index.html.erb +2 -2
- data/app/views/alchemy/admin/pages/_current_page.html.erb +4 -0
- data/app/views/alchemy/admin/pages/_form.html.erb +16 -1
- data/app/views/alchemy/admin/pages/_locked_page.html.erb +2 -12
- data/app/views/alchemy/admin/pages/_page.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_page_for_links.html.erb +2 -2
- data/app/views/alchemy/admin/pages/_page_status.html.erb +23 -11
- data/app/views/alchemy/admin/pages/edit.html.erb +2 -1
- data/app/views/alchemy/admin/pages/index.html.erb +2 -2
- data/app/views/alchemy/admin/partials/_language_tree_select.html.erb +3 -0
- data/app/views/alchemy/admin/partials/_site_select.html.erb +9 -0
- data/app/views/alchemy/admin/pictures/_picture.html.erb +6 -1
- data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +2 -1
- data/app/views/alchemy/admin/pictures/show.html.erb +1 -1
- data/app/views/alchemy/admin/resources/_filter_bar.html.erb +31 -0
- data/app/views/alchemy/admin/resources/_form.html.erb +6 -0
- data/app/views/alchemy/admin/resources/_tag_list.html.erb +16 -0
- data/app/views/alchemy/admin/resources/index.html.erb +13 -1
- data/app/views/alchemy/essences/_essence_file_view.html.erb +2 -5
- data/app/views/alchemy/essences/_essence_picture_view.html.erb +5 -3
- data/app/views/alchemy/{messages → messages_mailer}/contact_form_mail.de.text.erb +0 -0
- data/app/views/alchemy/{messages → messages_mailer}/contact_form_mail.en.text.erb +0 -0
- data/app/views/alchemy/{messages → messages_mailer}/contact_form_mail.es.text.erb +0 -0
- data/app/views/alchemy/{messages → messages_mailer}/new.html.erb +0 -0
- data/app/views/layouts/alchemy/admin.html.erb +3 -8
- data/config/alchemy/config.yml +4 -3
- data/config/initializers/assets.rb +2 -2
- data/config/initializers/dragonfly.rb +3 -0
- data/config/initializers/mime_types.rb +1 -0
- data/config/locales/alchemy.de.yml +10 -2
- data/config/locales/alchemy.en.yml +6 -2
- data/config/locales/alchemy.es.yml +6 -3
- data/config/locales/alchemy.fr.yml +6 -2
- data/config/locales/alchemy.it.yml +937 -0
- data/config/locales/alchemy.nl.yml +6 -2
- data/config/locales/alchemy.ru.yml +3 -2
- data/config/locales/simple_form.it.yml +25 -0
- data/db/migrate/20160108174834_add_timebased_publishing_columns_to_pages.rb +32 -0
- data/db/migrate/20160422195310_add_image_file_format_to_alchemy_pictures.rb +21 -0
- data/db/migrate/20160617224938_change_alchemy_pages_locked_to_locked_at.rb +22 -0
- data/lib/alchemy/ability_helper.rb +23 -0
- data/lib/alchemy/configuration_methods.rb +2 -2
- data/lib/alchemy/controller_actions.rb +4 -33
- data/lib/alchemy/engine.rb +1 -0
- data/lib/alchemy/resource.rb +30 -13
- data/lib/alchemy/resources_helper.rb +17 -0
- data/lib/alchemy/test_support/factories/page_factory.rb +7 -2
- data/lib/alchemy/upgrader.rb +1 -0
- data/lib/alchemy/upgrader/tasks/install_asset_manifests.rb +15 -0
- data/lib/alchemy/upgrader/three_point_four.rb +16 -0
- data/lib/alchemy/version.rb +1 -1
- data/lib/rails/generators/alchemy/elements/elements_generator.rb +8 -7
- data/lib/rails/generators/alchemy/essence/essence_generator.rb +2 -6
- data/lib/rails/generators/alchemy/install/files/all.css +11 -0
- data/lib/rails/generators/alchemy/install/files/all.js +11 -0
- data/lib/rails/generators/alchemy/install/files/{alchemy.elements.css.scss → article.scss} +0 -0
- data/lib/rails/generators/alchemy/install/install_generator.rb +20 -19
- data/lib/rails/generators/alchemy/module/module_generator.rb +3 -5
- data/lib/rails/generators/alchemy/page_layouts/page_layouts_generator.rb +7 -6
- data/lib/rails/generators/alchemy/site_layouts/site_layouts_generator.rb +7 -6
- data/vendor/assets/javascripts/date-formatter.js +161 -0
- data/vendor/assets/javascripts/jquery_plugins/jquery.datetimepicker.full.min.js +2 -0
- data/vendor/assets/javascripts/tinymce/langs/it.js +219 -0
- metadata +48 -13
- data/app/assets/javascripts/alchemy/alchemy.custom.js +0 -1
- data/app/assets/stylesheets/alchemy/custom.scss +0 -1
@@ -0,0 +1,9 @@
|
|
1
|
+
<%- if multi_site? -%>
|
2
|
+
<div class="button_with_label">
|
3
|
+
<%= select_tag 'change_site',
|
4
|
+
options_for_select(sites_for_select, Alchemy::Site.current.id),
|
5
|
+
class: 'alchemy_selectbox' %>
|
6
|
+
<label><%= Alchemy.t("Current site") %></label>
|
7
|
+
</div>
|
8
|
+
<div class="toolbar_spacer"></div>
|
9
|
+
<%- end -%>
|
@@ -22,7 +22,12 @@
|
|
22
22
|
</span>
|
23
23
|
<% end %>
|
24
24
|
<% image = image_tag(
|
25
|
-
alchemy.thumbnail_path(
|
25
|
+
alchemy.thumbnail_path(
|
26
|
+
id: picture,
|
27
|
+
size: @size,
|
28
|
+
sh: picture.security_token(size: @size),
|
29
|
+
format: picture.image_file_format
|
30
|
+
),
|
26
31
|
alt: picture.name,
|
27
32
|
title: Alchemy.t(:zoom_image)
|
28
33
|
) %>
|
@@ -0,0 +1,31 @@
|
|
1
|
+
<% params_to_keep = [:tagged_with, :q] %>
|
2
|
+
|
3
|
+
<div id="filter_bar">
|
4
|
+
<h2><%= Alchemy.t('Filter') %></h2>
|
5
|
+
<%= select_tag(
|
6
|
+
'resource_filter',
|
7
|
+
options_for_select(
|
8
|
+
resource_filter_select, params[:filter]
|
9
|
+
),
|
10
|
+
include_blank: Alchemy.t(:all, scope: ['resources', resource_name, 'filters']),
|
11
|
+
data: { remote: !!request.xhr? },
|
12
|
+
class: 'alchemy_selectbox'
|
13
|
+
) %>
|
14
|
+
</div>
|
15
|
+
|
16
|
+
<script type="text/javascript">
|
17
|
+
$(function() {
|
18
|
+
$('#resource_filter').on('change', function(e) {
|
19
|
+
var $this = $(this);
|
20
|
+
var url = '<%= resources_path(resource_handler.namespaced_resources_name, merge_params_only(params_to_keep)).html_safe %>';
|
21
|
+
if ($this.data('remote') === true) {
|
22
|
+
$.get(url, {filter: $this.val()}, null, 'script');
|
23
|
+
} else {
|
24
|
+
Alchemy.pleaseWaitOverlay();
|
25
|
+
delimiter = url.match(/\?/) ? '&' : '?';
|
26
|
+
window.location = url + delimiter + 'filter=' + encodeURIComponent($this.val());
|
27
|
+
}
|
28
|
+
return false;
|
29
|
+
});
|
30
|
+
});
|
31
|
+
</script>
|
@@ -9,5 +9,11 @@
|
|
9
9
|
<%= f.input attribute[:name], resource_attribute_field_options(attribute) %>
|
10
10
|
<% end %>
|
11
11
|
<% end %>
|
12
|
+
<% if f.object.respond_to?(:tag_list) %>
|
13
|
+
<div class="input string">
|
14
|
+
<%= f.label :tag_list %>
|
15
|
+
<%= render 'alchemy/admin/partials/autocomplete_tag_list', f: f %>
|
16
|
+
</div>
|
17
|
+
<% end %>
|
12
18
|
<%= f.submit Alchemy.t(:save) %>
|
13
19
|
<% end %>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<div class="<%= params[:tagged_with].present? ? 'tag-list filtered' : 'tag-list' %>">
|
2
|
+
<% p = params.dup %>
|
3
|
+
<h2><%= Alchemy.t("Filter by tag") %></h2>
|
4
|
+
<%= js_filter_field '.tag-list li' %>
|
5
|
+
<ul>
|
6
|
+
<%= render_tag_list(resource_model.name, p) %>
|
7
|
+
</ul>
|
8
|
+
<% if p[:tagged_with].present? %>
|
9
|
+
<%= link_to(
|
10
|
+
render_icon('delete-small') + Alchemy.t('Remove tag filter'),
|
11
|
+
url_for(p.delete_if { |k, v| k == "tagged_with" }.merge(action: 'index')),
|
12
|
+
remote: request.xhr?,
|
13
|
+
class: 'button small with_icon please_wait'
|
14
|
+
) %>
|
15
|
+
<% end %>
|
16
|
+
</div>
|
@@ -26,7 +26,19 @@
|
|
26
26
|
]
|
27
27
|
) %>
|
28
28
|
|
29
|
-
<div id="archive_all" class="resources-table-wrapper">
|
29
|
+
<div id="archive_all" class="resources-table-wrapper<%= ' with_tag_filter' if resource_has_tags || resource_has_filters %>">
|
30
30
|
<%= resources_header %>
|
31
31
|
<%= render 'table' %>
|
32
|
+
|
33
|
+
<% if resource_has_tags || resource_has_filters %>
|
34
|
+
<div id="library_sidebar">
|
35
|
+
<% if resource_has_filters %>
|
36
|
+
<%= render 'filter_bar' %>
|
37
|
+
<% end %>
|
38
|
+
|
39
|
+
<% if resource_has_tags %>
|
40
|
+
<%= render 'tag_list' %>
|
41
|
+
<% end %>
|
42
|
+
</div>
|
43
|
+
<% end %>
|
32
44
|
</div>
|
@@ -1,6 +1,5 @@
|
|
1
1
|
<%- cache(content) do -%>
|
2
2
|
<%- if attachment = content.ingredient -%>
|
3
|
-
<%- html_options = local_assigns.fetch(:html_options, {}) -%>
|
4
3
|
<%= link_to(
|
5
4
|
content.essence.link_text.presence ||
|
6
5
|
content.settings_value(:link_text, local_assigns.fetch(:options, {})) ||
|
@@ -10,10 +9,8 @@
|
|
10
9
|
name: attachment.urlname,
|
11
10
|
format: attachment.suffix
|
12
11
|
),
|
13
|
-
|
14
|
-
|
15
|
-
title: content.essence.title.presence
|
16
|
-
}.merge(html_options)
|
12
|
+
class: content.essence.css_class.presence,
|
13
|
+
title: content.essence.title.presence
|
17
14
|
) -%>
|
18
15
|
<%- end -%>
|
19
16
|
<%- end -%>
|
@@ -1,5 +1,7 @@
|
|
1
1
|
<% cache(content) do %>
|
2
|
-
<%=
|
3
|
-
|
4
|
-
local_assigns
|
2
|
+
<%= Alchemy::EssencePictureView.new(
|
3
|
+
content,
|
4
|
+
local_assigns[:options],
|
5
|
+
local_assigns[:html_options]
|
6
|
+
).render %>
|
5
7
|
<% end %>
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -6,8 +6,8 @@
|
|
6
6
|
<link rel="shortcut icon" href="<%= asset_path('alchemy/favicon.ico') %>">
|
7
7
|
<%= csrf_meta_tag %>
|
8
8
|
<meta name="robots" content="noindex">
|
9
|
-
<%= stylesheet_link_tag('alchemy/admin', :
|
10
|
-
<%= stylesheet_link_tag('alchemy/print', :
|
9
|
+
<%= stylesheet_link_tag('alchemy/admin/all', media: 'screen', 'data-turbolinks-track' => true) %>
|
10
|
+
<%= stylesheet_link_tag('alchemy/print', media: 'print', 'data-turbolinks-track' => true) %>
|
11
11
|
<%= yield :stylesheets %>
|
12
12
|
<script>
|
13
13
|
// Global Alchemy JavaScript object.
|
@@ -34,7 +34,7 @@
|
|
34
34
|
};
|
35
35
|
</script>
|
36
36
|
<%= render 'alchemy/admin/partials/routes' %>
|
37
|
-
<%= javascript_include_tag('alchemy/
|
37
|
+
<%= javascript_include_tag('alchemy/admin/all', 'data-turbolinks-track' => true) %>
|
38
38
|
<%= yield :javascript_includes %>
|
39
39
|
</head>
|
40
40
|
<body id="alchemy" class="<%= alchemy_body_class %>">
|
@@ -89,11 +89,6 @@
|
|
89
89
|
<%= select_tag 'change_locale',
|
90
90
|
options_for_select(translations_for_select, ::I18n.locale),
|
91
91
|
class: 'alchemy_selectbox tiny' %>
|
92
|
-
<%- if multi_site? -%>
|
93
|
-
<%= select_tag 'change_site',
|
94
|
-
options_for_select(sites_for_select, Alchemy::Site.current.id),
|
95
|
-
class: 'alchemy_selectbox tiny' %>
|
96
|
-
<%- end -%>
|
97
92
|
</div>
|
98
93
|
</div>
|
99
94
|
<% end %>
|
data/config/alchemy/config.yml
CHANGED
@@ -69,13 +69,13 @@ url_nesting: true
|
|
69
69
|
#
|
70
70
|
# output_image_jpg_quality [Integer] # If image gets rendered as JPG this is the quality setting for it. (Default 85)
|
71
71
|
# preprocess_image_resize [String] # Use this option to resize images to that value. Downsizing example: '1000x1000>' (Default nil)
|
72
|
-
# image_output_format [String] # The global image output format setting.
|
72
|
+
# image_output_format [String] # The global image output format setting. (Default +original+)
|
73
73
|
#
|
74
|
-
# NOTE: You can always override the output format in the options of your Essence. I.E. {:
|
74
|
+
# NOTE: You can always override the output format in the options of your Essence. I.E. {format: 'gif'}
|
75
75
|
#
|
76
76
|
output_image_jpg_quality: 85
|
77
77
|
preprocess_image_resize:
|
78
|
-
image_output_format:
|
78
|
+
image_output_format: original
|
79
79
|
|
80
80
|
# This is used by the seeder to create the default site.
|
81
81
|
default_site:
|
@@ -161,6 +161,7 @@ uploader:
|
|
161
161
|
- jpeg
|
162
162
|
- gif
|
163
163
|
- png
|
164
|
+
- svg
|
164
165
|
|
165
166
|
# === Link Target Options
|
166
167
|
#
|
@@ -1,10 +1,10 @@
|
|
1
1
|
# Add Alchemy assets for precompiling
|
2
2
|
Rails.application.config.assets.precompile += [
|
3
|
-
'alchemy/
|
3
|
+
'alchemy/admin/all.css',
|
4
|
+
'alchemy/admin/all.js',
|
4
5
|
'alchemy/alchemy-logo.svg',
|
5
6
|
'alchemy/favicon.ico',
|
6
7
|
'alchemy/preview.js',
|
7
|
-
'alchemy/admin.css',
|
8
8
|
'alchemy/menubar.css',
|
9
9
|
'alchemy/menubar.js',
|
10
10
|
'alchemy/print.css',
|
@@ -1,8 +1,11 @@
|
|
1
|
+
require 'dragonfly_svg'
|
2
|
+
|
1
3
|
# Alchemy CMS Dragonfly configuration.
|
2
4
|
|
3
5
|
# Pictures
|
4
6
|
Dragonfly.app(:alchemy_pictures).configure do
|
5
7
|
plugin :imagemagick
|
8
|
+
plugin :svg
|
6
9
|
datastore :file,
|
7
10
|
root_path: Rails.root.join('uploads/pictures').to_s,
|
8
11
|
store_meta: false
|
@@ -0,0 +1 @@
|
|
1
|
+
Mime::Type.register "image/svg+xml", :svg
|
@@ -107,8 +107,11 @@ de:
|
|
107
107
|
translations:
|
108
108
|
de: 'DE'
|
109
109
|
en: 'EN'
|
110
|
-
|
110
|
+
es: 'ES'
|
111
|
+
it: 'IT'
|
111
112
|
fr: 'FR'
|
113
|
+
nl: 'NL'
|
114
|
+
ru: 'RU'
|
112
115
|
|
113
116
|
# == User roles translations
|
114
117
|
user_roles:
|
@@ -163,7 +166,6 @@ de:
|
|
163
166
|
locked_pages: "Aktive Seiten"
|
164
167
|
"Add global page": "Neue globale Seite"
|
165
168
|
"Add page link": "Verweis hinzufügen"
|
166
|
-
"Adobe Website": "Adobe Webseite"
|
167
169
|
"Alchemy is open software and itself uses open software and free resources:": "Alchemy ist offene Software und benutzt selbst offene Software und freie Ressourcen:"
|
168
170
|
"Alchemy is up to date": 'Alchemy ist aktuell'
|
169
171
|
'An error happened': 'Es ist leider ein Fehler aufgetreten!'
|
@@ -258,6 +260,7 @@ de:
|
|
258
260
|
"Send reset instructions": "Anweisungen senden"
|
259
261
|
show_elements: "Elemente anzeigen"
|
260
262
|
show_element: "Element anzeigen"
|
263
|
+
"Show all files": Alle Dateien anzeigen
|
261
264
|
"Show childpages": "Unterseiten anzeigen"
|
262
265
|
"Show clipboard": "Zwischenablage anzeigen"
|
263
266
|
"Show picture infos": "Bild Informationen anzeigen"
|
@@ -369,6 +372,7 @@ de:
|
|
369
372
|
female: "Frau"
|
370
373
|
file: "Datei"
|
371
374
|
file_rename_error: "Datei konnte nicht umbenannt werden."
|
375
|
+
from: 'von'
|
372
376
|
from_at: "von %{by} am %{at}"
|
373
377
|
height: "Höhe"
|
374
378
|
help:
|
@@ -503,6 +507,7 @@ de:
|
|
503
507
|
'768': '768px (iPad - Portrait)'
|
504
508
|
'1024': '1024px (iPad - Breitbild)'
|
505
509
|
'1280': '1280px (Desktop)'
|
510
|
+
public_available: Öffentlich verfügbar
|
506
511
|
recently_uploaded_only: 'Kürzlich hochgeladene'
|
507
512
|
"regular method": "herkömmlichen Methode"
|
508
513
|
remove: "entfernen"
|
@@ -548,6 +553,7 @@ de:
|
|
548
553
|
unlink: "Link entfernen"
|
549
554
|
unlock_page: "Seite verlassen"
|
550
555
|
unlocked_page: "Seite %{name} wurde freigegeben."
|
556
|
+
until: 'bis'
|
551
557
|
uploader:
|
552
558
|
alchemy/attachment:
|
553
559
|
button_label: Datei(en) hochladen
|
@@ -615,6 +621,8 @@ de:
|
|
615
621
|
page_status: "%d.%m.%Y um %H:%M Uhr"
|
616
622
|
date: "%d.%m.%Y"
|
617
623
|
datepicker: "%d.%m.%Y"
|
624
|
+
timepicker: "%H:%M"
|
625
|
+
datetimepicker: "%d.%m.%Y %H:%M"
|
618
626
|
time: "%H:%M"
|
619
627
|
am: "vormittags"
|
620
628
|
pm: "nachmittags"
|
@@ -107,8 +107,11 @@ en:
|
|
107
107
|
translations:
|
108
108
|
de: 'DE'
|
109
109
|
en: 'EN'
|
110
|
-
|
110
|
+
es: 'ES'
|
111
|
+
it: 'IT'
|
111
112
|
fr: 'FR'
|
113
|
+
nl: 'NL'
|
114
|
+
ru: 'RU'
|
112
115
|
|
113
116
|
# == User roles translations
|
114
117
|
user_roles:
|
@@ -162,7 +165,6 @@ en:
|
|
162
165
|
locked_pages: "Active pages"
|
163
166
|
"Add global page": "Add global page"
|
164
167
|
"Add page link": "Add page link"
|
165
|
-
"Adobe Website": "Adobe Website"
|
166
168
|
"Alchemy is open software and itself uses open software and free resources:": "Alchemy is open software and itself uses open software and free resources:"
|
167
169
|
"Alchemy is up to date": 'Alchemy is up to date'
|
168
170
|
'An error happened': 'An error happened'
|
@@ -613,6 +615,8 @@ en:
|
|
613
615
|
page_status: "%m.%d.%Y %H:%M"
|
614
616
|
date: "%Y-%m-%d"
|
615
617
|
datepicker: "%Y-%m-%d"
|
618
|
+
timepicker: "%H:%M"
|
619
|
+
datetimepicker: "%Y-%m-%d %H:%M"
|
616
620
|
am: "am"
|
617
621
|
pm: "pm"
|
618
622
|
support:
|
@@ -107,9 +107,11 @@ es:
|
|
107
107
|
translations:
|
108
108
|
de: 'DE'
|
109
109
|
en: 'EN'
|
110
|
-
nl: 'NL'
|
111
|
-
fr: 'FR'
|
112
110
|
es: 'ES'
|
111
|
+
it: 'IT'
|
112
|
+
fr: 'FR'
|
113
|
+
nl: 'NL'
|
114
|
+
ru: 'RU'
|
113
115
|
|
114
116
|
# == User roles translations
|
115
117
|
user_roles:
|
@@ -163,7 +165,6 @@ es:
|
|
163
165
|
locked_pages: "Páginas activas"
|
164
166
|
"Add global page": "Añadir página global"
|
165
167
|
"Add page link": "Añadir redirección"
|
166
|
-
"Adobe Website": "Sitio web de Adobe"
|
167
168
|
"Alchemy is open software and itself uses open software and free resources:": "Alchemy es un software abierto que utiliza software abierto y recursos libres:"
|
168
169
|
"Alchemy is up to date": 'Alchemy está actualizado'
|
169
170
|
'An error happened': 'Ha ocurrido un error'
|
@@ -617,6 +618,8 @@ es:
|
|
617
618
|
page_status: "%d/%m/%Y %H:%M"
|
618
619
|
date: "%d/%m/%Y"
|
619
620
|
datepicker: "%d/%m/%Y"
|
621
|
+
timepicker: "%H:%M"
|
622
|
+
datetimepicker: "%d/%m/%Y %H:%M"
|
620
623
|
time: "%H:%M"
|
621
624
|
support:
|
622
625
|
array:
|
@@ -122,8 +122,11 @@ fr:
|
|
122
122
|
translations:
|
123
123
|
de: 'DE'
|
124
124
|
en: 'EN'
|
125
|
-
|
125
|
+
es: 'ES'
|
126
|
+
it: 'IT'
|
126
127
|
fr: 'FR'
|
128
|
+
nl: 'NL'
|
129
|
+
ru: 'RU'
|
127
130
|
|
128
131
|
# == User roles translations
|
129
132
|
user_roles:
|
@@ -178,7 +181,6 @@ fr:
|
|
178
181
|
locked_pages: "sites actifs"
|
179
182
|
"Add global page": "Nouvelle page globale"
|
180
183
|
"Add page link": "Add Reference"
|
181
|
-
"Adobe Website": "site Web d'Adobe"
|
182
184
|
"Alchemy is open software and itself uses open software and free resources:": "Alchemy est un logiciel open source et utilise le logiciel libre et les ressources libres même:"
|
183
185
|
"Alchemy is up to date": 'Alchemy est à jour'
|
184
186
|
'An error happened': 'une erreur est apparue'
|
@@ -637,6 +639,8 @@ fr:
|
|
637
639
|
page_status: "%d.%m.%Y um %H:%M Heure"
|
638
640
|
date: "%d.%m.%Y"
|
639
641
|
datepicker: "%d.%m.%Y"
|
642
|
+
timepicker: "%H:%M"
|
643
|
+
datetimepicker: "%d.%m.%Y %H:%M"
|
640
644
|
time: "%H:%M"
|
641
645
|
am: "le matin"
|
642
646
|
pm: "l'après-midi"
|
@@ -0,0 +1,937 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
it:
|
4
|
+
|
5
|
+
# = Alchemy Translations
|
6
|
+
# All translations used in Alchemy CMS are inside this alchemy namespace.
|
7
|
+
alchemy:
|
8
|
+
|
9
|
+
# == Translations for page_layout names
|
10
|
+
# Just use the page_layouts name like defined inside the config/alchemy/page_layouts.yml file and translate it.
|
11
|
+
#
|
12
|
+
# Example:
|
13
|
+
#
|
14
|
+
# en:
|
15
|
+
# alchemy:
|
16
|
+
# page_layout_names:
|
17
|
+
# contact: Contact
|
18
|
+
# search: Search
|
19
|
+
#
|
20
|
+
page_layout_names:
|
21
|
+
|
22
|
+
# == Translations for element names
|
23
|
+
# Just use the elements name like defined inside the config/alchemy/elements.yml file and translate it.
|
24
|
+
#
|
25
|
+
# Example:
|
26
|
+
#
|
27
|
+
# en:
|
28
|
+
# alchemy:
|
29
|
+
# element_names:
|
30
|
+
# article: Article
|
31
|
+
# contactform: Contact form
|
32
|
+
#
|
33
|
+
element_names:
|
34
|
+
|
35
|
+
# == Translated names for contents in elements.
|
36
|
+
# Used for the content editor label inside the element editor view (The elements window)
|
37
|
+
#
|
38
|
+
# Tip: You can translate content names globally for all contents of this name, or specificly for an element.
|
39
|
+
# To do so, just place the content_name under the element name
|
40
|
+
#
|
41
|
+
# Example:
|
42
|
+
#
|
43
|
+
# en:
|
44
|
+
# alchemy:
|
45
|
+
# content_names:
|
46
|
+
# headline: Headline
|
47
|
+
# news_article:
|
48
|
+
# headline: News Headline
|
49
|
+
# image_caption: Caption
|
50
|
+
# show_caption: Show Caption
|
51
|
+
#
|
52
|
+
content_names:
|
53
|
+
|
54
|
+
# === Translations for content validations
|
55
|
+
# Used when a user did not enter (correct) values to the content field.
|
56
|
+
#
|
57
|
+
# Tip: You can define the validation messages translations different for each element and content
|
58
|
+
#
|
59
|
+
# Example:
|
60
|
+
#
|
61
|
+
# en:
|
62
|
+
# alchemy:
|
63
|
+
# content_validations:
|
64
|
+
# contactform:
|
65
|
+
# success_page:
|
66
|
+
# blank: 'Please choose a follow up page.'
|
67
|
+
# mail_to:
|
68
|
+
# blank: 'Please provide an email address where the contact inquiries will be delivered to.'
|
69
|
+
#
|
70
|
+
content_validations:
|
71
|
+
errors:
|
72
|
+
blank: "%{field} non può essere vuoto"
|
73
|
+
invalid: '%{field} ha un formato errato'
|
74
|
+
taken: '%{field} è già stato preso'
|
75
|
+
|
76
|
+
default_content_texts:
|
77
|
+
lorem: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
|
78
|
+
corporate_lorem: "Appropriately enable sustainable growth strategies vis-a-vis holistic materials. Energistically orchestrate open-source e-tailers vis-a-vis plug-and-play best practices. Uniquely plagiarize client-centric opportunities whereas plug-and-play ideas. Distinctively reconceptualize backward-compatible partnerships vis-a-vis reliable total linkage. Interactively fabricate highly efficient networks for clicks-and-mortar content. Collaboratively reconceptualize holistic markets via 2.0 architectures."
|
79
|
+
|
80
|
+
essence_pictures:
|
81
|
+
css_classes:
|
82
|
+
left: 'Alla sinistra del testo'
|
83
|
+
right: 'Alla destra del testo'
|
84
|
+
no_float: 'Sopra al testo'
|
85
|
+
|
86
|
+
# == Contactform translations
|
87
|
+
contactform:
|
88
|
+
labels:
|
89
|
+
salutation: 'Salve'
|
90
|
+
choose: 'Scegli'
|
91
|
+
mr: 'Sig.'
|
92
|
+
mrs: 'Sig.ra'
|
93
|
+
firstname: 'Nome'
|
94
|
+
lastname: 'Cognome'
|
95
|
+
address: 'Via / N.'
|
96
|
+
zip: 'CAP / Città'
|
97
|
+
phone: 'Telefono'
|
98
|
+
email: 'Email'
|
99
|
+
message: 'Messaggio'
|
100
|
+
send: 'Invia'
|
101
|
+
mandatory_fields: '*Campi obbligatori.'
|
102
|
+
# The flash message shown after successfully sending the message.
|
103
|
+
messages:
|
104
|
+
success: 'Il suo messaggio è stato consegnato con successo.'
|
105
|
+
|
106
|
+
# == Translated language names for translation select
|
107
|
+
translations:
|
108
|
+
de: 'DE'
|
109
|
+
en: 'EN'
|
110
|
+
es: 'ES'
|
111
|
+
it: 'IT'
|
112
|
+
fr: 'FR'
|
113
|
+
nl: 'NL'
|
114
|
+
ru: 'RU'
|
115
|
+
|
116
|
+
# == User roles translations
|
117
|
+
user_roles:
|
118
|
+
registered: "Registrato"
|
119
|
+
member: "Membro"
|
120
|
+
author: "Autore"
|
121
|
+
editor: "Editore"
|
122
|
+
admin: "Amministratore"
|
123
|
+
|
124
|
+
# == Mime Types translations
|
125
|
+
# These are human readable mime types used for the document-type row in archive files.
|
126
|
+
mime_types:
|
127
|
+
audio/mp4: 'Audio-MP4'
|
128
|
+
application/msword: 'Documento-Word'
|
129
|
+
application/rtf: 'Documento-RTF'
|
130
|
+
audio/mpeg: 'Audio-MP3'
|
131
|
+
text/plain: 'Documento-di-Testo'
|
132
|
+
video/mp4: 'Video-MP4'
|
133
|
+
video/mpeg: 'Video-MPEG'
|
134
|
+
application/pdf: 'Documento-PDF'
|
135
|
+
application/x-flash-video: 'Video-Flash'
|
136
|
+
video/x-flv: 'Video-Flash'
|
137
|
+
application/x-shockwave-flash: 'Video-Flash'
|
138
|
+
application/zip: 'Archivio-ZIP'
|
139
|
+
application/x-rar: 'Archivio-RAR'
|
140
|
+
application/vnd:
|
141
|
+
ms-excel: 'Documento-Excel'
|
142
|
+
video/quicktime: 'Video-Quicktime'
|
143
|
+
image/x-psd: 'File-Photoshop'
|
144
|
+
image/gif: 'Immagine-GIF'
|
145
|
+
image/png: 'Immagine-PNG'
|
146
|
+
image/svg+xml: 'Immagine-SVG'
|
147
|
+
image/jpeg: 'Immagine-JPG'
|
148
|
+
video/x-msvideo: 'Video-AVI'
|
149
|
+
video/x-ms-wmv: 'Windows Media Video'
|
150
|
+
image/tiff: 'Immagine-TIFF'
|
151
|
+
'text/x-vcard': 'vCard'
|
152
|
+
application/vcard: 'vCard'
|
153
|
+
|
154
|
+
link_target_options:
|
155
|
+
default: Stessa Finestra
|
156
|
+
blank: Nuova Finestra/Tab
|
157
|
+
overlay: Sovrapposta
|
158
|
+
|
159
|
+
resource_help_texts:
|
160
|
+
site:
|
161
|
+
aliases: Separa i domini aggiuntivi con uno spazio od un ritorno a capo.
|
162
|
+
|
163
|
+
anchor: 'Collegamento'
|
164
|
+
back: 'indietro'
|
165
|
+
create_tree_as_new_language: "Crea una nuova struttura della lingua per %{language}"
|
166
|
+
locked_pages: "Pagine attive"
|
167
|
+
"Add global page": "Aggiungi pagina globale"
|
168
|
+
"Add page link": "Aggiungi un collegamento alla pagina"
|
169
|
+
"Alchemy is open software and itself uses open software and free resources:": "Alchemy è software open ed usa software open e risorse liberamente disponibili:"
|
170
|
+
"Alchemy is up to date": 'Alchemy è aggiornato'
|
171
|
+
'An error happened': 'Si è verificato un errore'
|
172
|
+
"Change password": "Modifica password"
|
173
|
+
"Choose page": "Scegli pagina"
|
174
|
+
"Cleared trash": "Cestino svuotato"
|
175
|
+
"Clear selection": "Annulla selezione"
|
176
|
+
"Forgot your password?": "Hai dimenticato la password?"
|
177
|
+
"Clipboard": "Appunti"
|
178
|
+
"Confirm new password": "Conferma la nuova passowrd"
|
179
|
+
"Copy": "Copia"
|
180
|
+
"Could not load Adobe Flash® Plugin!": "È stato impossibile caricare il Plugin Adobe Flash®!"
|
181
|
+
"Currently locked pages": "Pagine attualmente bloccate"
|
182
|
+
"Default language has to be public": "La lingua di default deve essere pubblica"
|
183
|
+
"Delete image": "Elimina immagine"
|
184
|
+
"Do you really want to clear the clipboard?": "Vuoi veramente eliminare gli appunti?"
|
185
|
+
"Do you really want to clear the trash?": "Vuoi veramente svuotare il cestino?"
|
186
|
+
"Do you really want to delete this content?": "Vuoi veramente eliminare questo contenuto?"
|
187
|
+
"Drag an element over to the element window to restore it": "Trascina un elemento sulla finestra degli elementi per ripristinarlo"
|
188
|
+
"Edit Picturemask": "Modifica maschera delle immagini"
|
189
|
+
"Edit image": "Modifica immagine"
|
190
|
+
"Edit multiple pictures": "Modifica diverse immagini insieme"
|
191
|
+
"Elements": "Elementi"
|
192
|
+
"Element trashed": "Elemento cestinato"
|
193
|
+
"Error with the Flash® Uploader!": "Errore dell'Uploader Flash®!"
|
194
|
+
"Excerpt": "Estratto"
|
195
|
+
"File successfully updated": "File aggiornato con successo"
|
196
|
+
"File deleted successfully": "%{name} è stato eliminato"
|
197
|
+
"Filter by tag": "Filtra per tag"
|
198
|
+
"Flush page cache": "Svuota la cache delle pagine"
|
199
|
+
"Flush picture cache": "Svuota la cache delle immagini"
|
200
|
+
"Global shortcuts": "Shortcuts globali"
|
201
|
+
"Hide childpages": "Nascondi le pagine figlie"
|
202
|
+
hide_elements: nascondi_elementi
|
203
|
+
hide_element: "Nascondi elemento"
|
204
|
+
"Image missing": "Immagine mancante"
|
205
|
+
"Image size": "Dimensione immagine"
|
206
|
+
"Language successfully created": "Lingua creata con successo."
|
207
|
+
"Language successfully removed": "Lingua rimossa con successo."
|
208
|
+
"Language successfully updated": "Lingua aggiornata con successo."
|
209
|
+
"Language tree": "Struttura delle lingue"
|
210
|
+
"Layout default": "Layout di default"
|
211
|
+
"Library shortcuts": "Scorciatoie della libreria"
|
212
|
+
"Logged in as": "Autenticato come"
|
213
|
+
"Mandatory": "Campi obbligatori"
|
214
|
+
"Name": "Nome"
|
215
|
+
"New": "Nuovo"
|
216
|
+
"New Element": "Nuovo elemento"
|
217
|
+
"New page": "Nuova pagina"
|
218
|
+
"No page links for this page found": "Nessun link trovato per questa pagina"
|
219
|
+
"New password": "Nuova password"
|
220
|
+
"New Tag": "Nuovo tag"
|
221
|
+
"New Tag Created": "Nuovo Tag Creato"
|
222
|
+
"No": "No"
|
223
|
+
"No items in your clipboard": "Nessun elemento nei tuoi appunti"
|
224
|
+
"No Tags found": "Nessun Tag trovato"
|
225
|
+
"None": "Nessuno"
|
226
|
+
"Open Link in": "Apri Link in"
|
227
|
+
"Page": "Pagina"
|
228
|
+
"Page edit shortcuts": "Scorciatoie per modificare la pagina"
|
229
|
+
"Page deleted": "%{name} eliminata"
|
230
|
+
"Page saved": "%{name} salvata"
|
231
|
+
"Page cache flushed": "Cache delle pagine svuotata"
|
232
|
+
"Pages order saved": "Ordine delle pagine salvato"
|
233
|
+
"Password": "Password"
|
234
|
+
"Password reset": "Reset della password"
|
235
|
+
"Paste from clipboard": "Incolla dagli appunti"
|
236
|
+
"Picture infos": "Informazioni sull'immagine"
|
237
|
+
"Picture renamed successfully": "Immagine rinominata con successo da %{from} a %{to}"
|
238
|
+
"Picture deleted successfully": "Immagine %{name} eliminata con successo"
|
239
|
+
"Pictures updated successfully": "Immagini caricate con successo"
|
240
|
+
"Picture cache flushed": "Cache delle immagini svuotata"
|
241
|
+
"Please Signup": "Registrati per modificare il tuo sito web."
|
242
|
+
"Please choose": "Scegli"
|
243
|
+
"Please enter a new password": "Inserisci una nuova password."
|
244
|
+
"Please enter your email address": "Inserisci il tuo indirizzo email."
|
245
|
+
"Please log in": "Autenticati."
|
246
|
+
"Please seperate the tags with commata": "* Separa i tag con delle virgole."
|
247
|
+
"Properties": "Proprietà"
|
248
|
+
"Publish page": "Pubblica pagina"
|
249
|
+
"Read the License": "Leggi la Licenza"
|
250
|
+
"Redirects to": "Effettua un redirect a"
|
251
|
+
"Reload Preview": "Ricarica anteprima"
|
252
|
+
"Remove item from clipboard": "Rimuovi elemento dagli appunti"
|
253
|
+
"Remove tag filter": "Rimuovi filtro tag"
|
254
|
+
"Remove this content": "Rimuovi questo contenuto"
|
255
|
+
"Reset Imagemask": "Ripristina la maschera delle immagini"
|
256
|
+
"Reset password instructions": "Ripristina le istruzioni per la password"
|
257
|
+
"Select all": "Seleziona tutto"
|
258
|
+
"Select an content": "Seleziona un contenuto"
|
259
|
+
"Select style": "Seleziona lo stile"
|
260
|
+
"Send reset instructions": "Invia istruzioni per il ripristino"
|
261
|
+
show_elements: "Mostra Elementi"
|
262
|
+
show_element: "Mostra elemento"
|
263
|
+
"Show childpages": "Mostra pagine figlie"
|
264
|
+
"Show clipboard": "Mostra appunti"
|
265
|
+
"Show picture infos": "Mostra informazioni immagine"
|
266
|
+
"Show trash": "Mostra cestino"
|
267
|
+
"Site successfully created": "Sito web creato con successo."
|
268
|
+
"Site successfully removed": "Sito web rimosso con successo."
|
269
|
+
"Site successfully updated": "Sito web aggiornato con sucesso."
|
270
|
+
"Size": "Dimensioni"
|
271
|
+
"Sort pages": "Riordina pagine"
|
272
|
+
"Successfully added content": "%{content} aggiunto con successo"
|
273
|
+
"Successfully deleted content": "%{content} eliminato con successo"
|
274
|
+
"Successfully saved content position": "Posizione del contenuto salvata con sucesso"
|
275
|
+
"Tags": "Tag"
|
276
|
+
"These pictures could not be deleted, because they were in use": "Queste immagini non possono essere eliminate poiché erano in uso: %{names}"
|
277
|
+
"This page is locked": "Questa pagina è attualmente bloccata da %{name}"
|
278
|
+
"Title": "Titolo"
|
279
|
+
"Trash": "Cestino"
|
280
|
+
"User created": "Utente %{name} creato"
|
281
|
+
"User deleted": "Utente %{name} eliminato"
|
282
|
+
"User updated": "Utente %{name} aggiornato"
|
283
|
+
"Validation failed": "Validazione fallita"
|
284
|
+
"Version": "Versione"
|
285
|
+
"View File": "Mostra File"
|
286
|
+
"Visit page": "Visita pagina"
|
287
|
+
"Warning!": "Attenzione!"
|
288
|
+
content_definition_missing: "Attenzione: Manca la definizione del contenuto. Controlla il file elements.yml"
|
289
|
+
element_definition_missing: "ATTENZIONE! Manca la definizione dell'elemento. Controlla il file elements.yml."
|
290
|
+
page_definition_missing: "ATTENZIONE! Manca la definizione del layout della pagina. Controlla il file page_layouts.yml."
|
291
|
+
"Welcome to Alchemy": "Benvenuto su Alchemy"
|
292
|
+
"Who else is online": "Altre persone online"
|
293
|
+
"Yes": "Sì"
|
294
|
+
"You are not authorized": "Non sei autorizzato"
|
295
|
+
"You are about to edit many pictures at once": "Stai per modificare %{length} immagini contemporaneamente"
|
296
|
+
element_dirty_close_window_notice: "Hai degli elementi non salvati. Vuoi veramente chiudere la finestra degli elementi?"
|
297
|
+
"Your last login was on": "Il tuo ultimo login è stato alle %{time}."
|
298
|
+
"Your last updated pages": "Le tue pagine modificate di recente"
|
299
|
+
"Your trash is empty": "Il cestino è vuoto"
|
300
|
+
above: "sopra"
|
301
|
+
add: "Aggiungi"
|
302
|
+
"add new content": "Aggiungi nuovo contenuto"
|
303
|
+
add_image_to_element: "Aggiungi un immagine"
|
304
|
+
align_in_text: "Allineamento nel testo"
|
305
|
+
all: "tutto"
|
306
|
+
all_pictures: "Tutte le immagini"
|
307
|
+
apply: "applica"
|
308
|
+
assign_file: "Assegna un file"
|
309
|
+
assign_file_from_archive: "assegna un file dal tuo archivio"
|
310
|
+
assign_image: "Assegna un'immagine"
|
311
|
+
attachment_filename_notice: "* Non utilizzare alcun carattere speciale per il nome del file."
|
312
|
+
auto_play: "Riproduci il video dopo il caricamento"
|
313
|
+
big_thumbnails: "Miniature grandi"
|
314
|
+
cancel: "annulla"
|
315
|
+
cannot_delete_picture_notice: "Impossibile eliminare l'Immagine %{name} poiché è ancora in uso."
|
316
|
+
choose_element_as_target: "Scegli un elemento come destinatario"
|
317
|
+
choose_element_to_link: "Scegli un elemento"
|
318
|
+
choose_file_to_link: "Scegli un file da linkare"
|
319
|
+
"clear clipboard": "svuota appunti"
|
320
|
+
"clear trash": "svuota cestino"
|
321
|
+
click_to_show_all: "Clicca per tornare a mostrare tutto."
|
322
|
+
confirm_to_delete_file: "Vuoi veramente eliminare questo file dal server?"
|
323
|
+
confirm_to_delete_image: "Vuoi veramente eliminare questa immagine dal server?"
|
324
|
+
confirm_to_delete_image_from_server: "Vuoi veramente eliminare questa immagine dal server?"
|
325
|
+
confirm_to_delete_images_from_server: "Vuoi veramente eliminare queste immagini dal server?"
|
326
|
+
confirm_to_delete_page: "Vuoi eliminare veramente questa pagina? I suoi elementi andranno persi!"
|
327
|
+
content_essence_not_found: "Essenza del contenuto non trovata"
|
328
|
+
content_not_found: "Campo per il contenuto non trovato."
|
329
|
+
content_validations_headline: "Controlla i campi segnati qui sotto"
|
330
|
+
copy: "copia"
|
331
|
+
copy_element: "Copia questo elemento"
|
332
|
+
copy_page: "Copia pagina"
|
333
|
+
"Could not delete Pictures": "Impossibile eliminare le Immagini"
|
334
|
+
copy_language_tree_heading: "Copia struttura delle pagine"
|
335
|
+
country_code_placeholder: 'ad es. US (opzionale)'
|
336
|
+
country_code_foot_note: "È necessario configurare un codice nazione solo se vuoi supportare diverse nazioni con la stessa lingua."
|
337
|
+
create: "crea"
|
338
|
+
"Create language": "Crea una nuova lingua"
|
339
|
+
"Create site": "Crea un nuovo sito"
|
340
|
+
create_language_tree_heading: "Crea una struttura delle lingue vuoto"
|
341
|
+
create_page: "Crea una nuova sottopagina"
|
342
|
+
currently_edited_by: "Questa pagina è bloccata da"
|
343
|
+
cut_element: "Taglia questo elemento."
|
344
|
+
delete_file: "Elimina questo file dal server."
|
345
|
+
delete_image: "Elimina quest'immagine"
|
346
|
+
delete_language: "Elimina questa lingua"
|
347
|
+
delete_page: "Elimina questa pagina"
|
348
|
+
delete_tag: 'Elimina tag'
|
349
|
+
document: "File"
|
350
|
+
download_csv: "Scarica CSV"
|
351
|
+
download_file: "Scarica file '%{filename}'"
|
352
|
+
do_you_really_want_to_delete_this_tag?: "Vuoi veramente eliminare questo tag?"
|
353
|
+
drag_to_sort: "Clicca e trascina per riordinare le immagini"
|
354
|
+
edit_file_properties: "Modifica le proprietà del file."
|
355
|
+
edit_image_properties: "Modifica le proprietà dell'immagine."
|
356
|
+
edit_language: "Modifica lingua"
|
357
|
+
edit_page: "Modifica questa pagina"
|
358
|
+
edit_page_properties: "Modifica proprietà pagina"
|
359
|
+
edit_tag: 'Modifica tag'
|
360
|
+
edit_selected_pictures: "Modifica le immagini selezionate"
|
361
|
+
element_editor_not_found: "Errore in questo Elemento"
|
362
|
+
element_of_type: "Elemento"
|
363
|
+
element_saved: "Elemento salvato."
|
364
|
+
enter_external_link: "Inserisci l'URL con il quale vuoi creare il link"
|
365
|
+
explain_cropping: "<p>Muovi la cornice e cambia la sua dimensione per configurare la sezione dell'immagine.</p><p>Clicca su applica quando sei soddisfatto.</p>"
|
366
|
+
explain_publishing: "Pubblica la pagina e rimuovi la versione in cache dal server."
|
367
|
+
explain_sitemap_dragndrop_sorting: "Suggerimento: Trascina le immagini dall'icona per riordinarle."
|
368
|
+
explain_unlocking: "Lascia la pagina e sbloccala per l'utilizzo da parte di altri utenti."
|
369
|
+
external_link_notice_1: "Inserisci l'url completo con http:// o un protocollo simile."
|
370
|
+
external_link_notice_2: "Per fare riferimento ad un indirizzo interno al tuo sito, comincia il link con /."
|
371
|
+
female: "Femmina"
|
372
|
+
file: "File"
|
373
|
+
file_rename_error: "Errore nel modificare il nome del file."
|
374
|
+
from_at: "da %{by} a %{at}"
|
375
|
+
height: "Altezza"
|
376
|
+
help:
|
377
|
+
shortcuts:
|
378
|
+
"Open help window": "Apri finestra di aiuto"
|
379
|
+
"Close current dialog": "Chiudi finestra attiva"
|
380
|
+
"Open logout dialog": "Apri finestra di logout"
|
381
|
+
"Focus search field": "Attiva il campo di ricerca"
|
382
|
+
"Create a new record": "Crea un nuovo record"
|
383
|
+
"Show page infos": "Mostra informazioni pagina"
|
384
|
+
"Create new element": "Crea nuovo elemento"
|
385
|
+
"Edit page properties": "Modifica proprietà pagina"
|
386
|
+
"Reload the preview": "Ricarica la preview"
|
387
|
+
"Leave the page": "Lascia la pagina"
|
388
|
+
"Open upload form": "Apri form di upload"
|
389
|
+
"Select all pictures": "Seleziona tutte le immagini"
|
390
|
+
hide_element_content: "Nascondi il contenuto di questi elementi."
|
391
|
+
dashboard: "Dashboard"
|
392
|
+
image_alt_tag: "Alt-tag"
|
393
|
+
image_caption: "Caption"
|
394
|
+
image_name: "Name"
|
395
|
+
image_title: "Title-tag"
|
396
|
+
internal_link_headline: "Scegli una pagina a cui linkare."
|
397
|
+
internal_link_page_elements_explanation: "In aggiunta puoi cliccare appena sotto una pagina su 'Mostra Elementi' per linkare ad un anchor di un elemento da quella pagina."
|
398
|
+
internal_link_page_anchors_explanation: "Alternativamente puoi linkare ad un anchor della pagina stessa."
|
399
|
+
"item copied to clipboard": "%{name} copiato nella clipboard"
|
400
|
+
"item moved to clipboard": "%{name} spostato alla clipboard"
|
401
|
+
"item removed from clipboard": "%{name} eliminato dalla clipboard"
|
402
|
+
javascript_disabled_headline: "Javascript disabilitato!"
|
403
|
+
javascript_disabled_text: "Javascript è richiesto per far funzionare Alchemy al meglio. Abilitalo nelle configurazioni del tuo browser."
|
404
|
+
language_code_placeholder: 'i.e. it'
|
405
|
+
language_does_not_exist: "Questa struttura della lingua non esiste"
|
406
|
+
language_pages_copied: "Struttura della lingua copiata con successo."
|
407
|
+
last_upload_only: "Solo ultimo upload"
|
408
|
+
left: "sinistra"
|
409
|
+
legacy_url_info_text: "Un link è un redirect da una vecchia URL alla nuova URL di questa pagina. Questo redirect viene gestito tramite uno <a href='https://support.google.com/webmasters/answer/93633' target='_blank'>status code 301</a>."
|
410
|
+
link_image: "Crea collegamento a questa immagine."
|
411
|
+
link_overlay_tab_label:
|
412
|
+
contactform: "Form dei contatti"
|
413
|
+
external: "Esterno"
|
414
|
+
file: "File"
|
415
|
+
internal: "Interno"
|
416
|
+
link_title: "Titolo link"
|
417
|
+
login: "login"
|
418
|
+
logout: "logout"
|
419
|
+
mail_to: "Destinatario"
|
420
|
+
main_content: "Contanuto principale"
|
421
|
+
male: "Maschio"
|
422
|
+
me: "Me"
|
423
|
+
medium_thumbnails: "Thumbnail di meda dimensione"
|
424
|
+
meta_data: "Meta-Data"
|
425
|
+
meta_description: "Meta-Description"
|
426
|
+
meta_keywords: "Meta-Keywords"
|
427
|
+
modules:
|
428
|
+
attachments: "File"
|
429
|
+
dashboard: "Dashboard"
|
430
|
+
pictures: "Immagini"
|
431
|
+
languages: "Lingue"
|
432
|
+
layoutpages: "Pagine Globali"
|
433
|
+
library: "Libreria"
|
434
|
+
pages: "Pagine"
|
435
|
+
tags: "Tags"
|
436
|
+
sites: "Siti"
|
437
|
+
name: "Nome"
|
438
|
+
names: "Nomi"
|
439
|
+
navigation_name: "Nome di navigazione"
|
440
|
+
no_image_for_cropper_found: "Nessuna immagine trovata. Salva prima l'elemento."
|
441
|
+
no: "No"
|
442
|
+
"no pages": "nessuna pagina"
|
443
|
+
"no users": "nessun utente"
|
444
|
+
no_default_language_found: "Nessuna lingua di default trovata."
|
445
|
+
no_element_given: "Nessun elemento selezionato."
|
446
|
+
no_files_in_archive: "Non hai nessun file nel tuo archivio."
|
447
|
+
no_images_in_archive: "Non hai nessuna immagine nel tuo archivio."
|
448
|
+
no_more_elements_to_add: "Nessun elemento disponibile."
|
449
|
+
no_search_results: "La tua ricerca non ha prodotto alcun risultato."
|
450
|
+
"not a valid image": "Questa non è un'immagine valida."
|
451
|
+
"or": 'oppure'
|
452
|
+
or_replace_it_with_an_existing_tag: 'Oppure sostituiscilo con un tag esistente'
|
453
|
+
"Page created": "Pagina: '%{name}' creata."
|
454
|
+
page_for_links:
|
455
|
+
choose_page: "Sceglio %{name}"
|
456
|
+
page_infos: 'Informazioni pagina'
|
457
|
+
page_layout_changed_notice: "Il tipo di pagina è stato cambiato. Gli elementi che non erano più disponibili sono stati spostati nel cestino."
|
458
|
+
page_properties: "Proprietà della pagina"
|
459
|
+
page_public: "pubblicata"
|
460
|
+
page_published: "Pagina pubblicata"
|
461
|
+
page_restricted: "riservata"
|
462
|
+
page_states:
|
463
|
+
visible:
|
464
|
+
"true": "Pagina visibile in navigazione."
|
465
|
+
"false": "Pagina non visibile in navigazione."
|
466
|
+
public:
|
467
|
+
"true": "Pagina pubblicata."
|
468
|
+
"false": "Pagina non pubblicata."
|
469
|
+
locked:
|
470
|
+
"true": "Qualcun altro sta modificando la pagina."
|
471
|
+
"false": ""
|
472
|
+
restricted:
|
473
|
+
"true": "Pagina riservata."
|
474
|
+
"false": "Pagina non riservata."
|
475
|
+
page_status: "Stato"
|
476
|
+
page_title: "Titolo"
|
477
|
+
page_type: "Tipologia"
|
478
|
+
page_visible_in_navigation: "visibile in navigazione"
|
479
|
+
page_was_created: "È stata creata"
|
480
|
+
page_was_updated: "È stata aggiornata"
|
481
|
+
pages:
|
482
|
+
update:
|
483
|
+
comma_seperated: "Separate da virgola"
|
484
|
+
password: "Password"
|
485
|
+
paste: "incolla"
|
486
|
+
picture_gallery_editor: 'Immagini'
|
487
|
+
picture_library:
|
488
|
+
filter:
|
489
|
+
last_upload: "dall'ultimo upload"
|
490
|
+
recent: "che sono state aggiunte di recente"
|
491
|
+
without_tag: "senza tag"
|
492
|
+
picture_not_in_use_yet: "Questa immagine non è ancora in uso"
|
493
|
+
pictures_in_page: "%{page} in %{pictures}"
|
494
|
+
place_link: "Testo del link"
|
495
|
+
player_version: "Versione Flash Player"
|
496
|
+
"please enter subject and mail address": "Inserisci destinatario ed oggetto."
|
497
|
+
please_confirm: "Conferma"
|
498
|
+
please_wait: "Attendi prego"
|
499
|
+
position_in_text: "Posizione nel testo"
|
500
|
+
preview_size: "Dimensione preview"
|
501
|
+
preview_sizes:
|
502
|
+
'240': '240px (telefono piccolo)'
|
503
|
+
'320': '320px (iPhone)'
|
504
|
+
'480': '480px (Tablet piccolo)'
|
505
|
+
'768': '768px (iPad - Portrait)'
|
506
|
+
'1024': '1024px (iPad - Landscape)'
|
507
|
+
'1280': '1280px (Desktop)'
|
508
|
+
recently_uploaded_only: 'Solo caricate recentemente'
|
509
|
+
"regular method": "Metodo normale"
|
510
|
+
remove: "Rimuovi"
|
511
|
+
rename_file: "Rinomina questo file."
|
512
|
+
rename: "Rinomina"
|
513
|
+
replace: sostituisci
|
514
|
+
'Replaced Tag': "Il tag '%{old_tag}' è stato sostiuito con '%{new_tag}'"
|
515
|
+
resources:
|
516
|
+
relation_select:
|
517
|
+
blank: '- vuoto -'
|
518
|
+
right: "destra"
|
519
|
+
robot_follow: "i robot possono seguire i link."
|
520
|
+
robot_index: "permetti ai robot di indicizzare."
|
521
|
+
save: "Salva"
|
522
|
+
"save order": "Salva ordine"
|
523
|
+
saved_link: "Link salvato."
|
524
|
+
search: "cerca"
|
525
|
+
search_engines: "Motori di ricerca"
|
526
|
+
select_element: "Seleziona elemento"
|
527
|
+
seperate_tags_with_comma: "Separa i tag con una virgola"
|
528
|
+
show_element_content: "Mostra contenuto di questo elemento."
|
529
|
+
show_elements_from_page: "Mostra tutti gli elementi di questa pagina"
|
530
|
+
show_eq: "Mostra EQ"
|
531
|
+
show_navigation: "Mostra in navigazione"
|
532
|
+
show_page_in_sitemap: "Mostra la pagina nella sitemap."
|
533
|
+
signup_mail_delivery_error: 'Non è stato possibile consegnare la mail di signup. Ricontrolla le impostazioni dell''email.'
|
534
|
+
small_thumbnails: "Thumbnail piccoli"
|
535
|
+
subject: "Soggetto"
|
536
|
+
successfully_added_element: "Aggiunto nuovo elemento con successo."
|
537
|
+
successfully_deleted_tag: "Tag eliminato con successo"
|
538
|
+
successfully_restored_element: "Elemento ripristinato con successo."
|
539
|
+
successfully_saved_element_position: "Posizione dell'elemento aggiornata con successo."
|
540
|
+
successfully_updated_tag: "Tag aggiornato con successo"
|
541
|
+
swap_image: "Modifica immagine"
|
542
|
+
insert_image: "Inserisci immagine"
|
543
|
+
tag_list: Tag
|
544
|
+
tags_get_created_if_used_the_first_time: 'I tag vengono creati se usati per la prima volta.'
|
545
|
+
this_picture_is_used_on_these_pages: "L'immagine è usata nelle seguenti pagine"
|
546
|
+
title: "Titolo"
|
547
|
+
to_alchemy: "Torna ad Alchemy"
|
548
|
+
"trash element": "Metti l'elemento nel cestino"
|
549
|
+
unknown: "sconosciuto"
|
550
|
+
unlink: "Rimuovi link da questa immagine."
|
551
|
+
unlock_page: "Lascia la pagina"
|
552
|
+
unlocked_page: "Pagina %{name} sbloccata."
|
553
|
+
uploader:
|
554
|
+
alchemy/attachment:
|
555
|
+
button_label: "Carica uno(/più) file"
|
556
|
+
upload_success: "File %{name} caricato con successo"
|
557
|
+
upload_failure: "Errore nel caricare il file %{name}: %{error}"
|
558
|
+
alchemy/picture:
|
559
|
+
button_label: "Carica una(/più) immagini"
|
560
|
+
upload_success: "Immagine %{name} caricata con successo"
|
561
|
+
upload_failure: "Errore nel caricare %{name}: %{error}"
|
562
|
+
url_name: "URL-Name"
|
563
|
+
visible: "visibile"
|
564
|
+
want_to_create_new_language: "Vuoi creare una nuova struttura vuota della lingua?"
|
565
|
+
want_to_make_copy_of_existing_language: "Vuoi copiare una struttura esistente della lingua?"
|
566
|
+
"We need at least one default.": "Deve esistere almeno una lingua di default."
|
567
|
+
welcome_note: "Benvenuto %{name}"
|
568
|
+
welcome_back_note: "Bentornato %{name}"
|
569
|
+
welcome_please_identify_notice: "Benvenuto! Per favore identificati."
|
570
|
+
width: "Larghezza"
|
571
|
+
without_tag: "Senza tag"
|
572
|
+
you_can_rename_this_tag: "Puoi rinominare questo tag"
|
573
|
+
zoom_image: "Effettua lo zoom di questa immagine"
|
574
|
+
"Leave Alchemy": "Esci da Alchemy"
|
575
|
+
leave: "esci da"
|
576
|
+
"You are about to leave Alchemy": "Stai per uscire da Alchemy"
|
577
|
+
"Do you want to": "Vuoi veramente"
|
578
|
+
"stay logged in": "rimani connesso"
|
579
|
+
"or to completely": "oppure vuoi completamente"
|
580
|
+
"Are you sure?": "Sei sicuro?"
|
581
|
+
"Create": "Crea"
|
582
|
+
"Edit": "Modifica"
|
583
|
+
"Delete": "Elimina"
|
584
|
+
"Succesfully created": "Creato con successo"
|
585
|
+
"Succesfully updated": "Aggiornato con successo"
|
586
|
+
"Succesfully removed": "Rimosso con successo"
|
587
|
+
"Nothing found": "Non è stato trovato nulla."
|
588
|
+
complete: 'Completato'
|
589
|
+
"Update available": 'Aggiornamento disponibile'
|
590
|
+
"Update status unavailable": 'Stato dell''update non disponibile'
|
591
|
+
"Uploading": "Caricamento in corso"
|
592
|
+
|
593
|
+
# END of Alchemy translation
|
594
|
+
|
595
|
+
# == Rails translations
|
596
|
+
# Below are Rails specific translations for date, time, number, currency, error messages and so on.
|
597
|
+
date:
|
598
|
+
formats:
|
599
|
+
default: "%Y-%m-%d"
|
600
|
+
datepicker: "%Y-%m-%d"
|
601
|
+
short: "%d %b"
|
602
|
+
long: "%d %B, %Y"
|
603
|
+
only_day: "%e"
|
604
|
+
day_names: [Domenica, Lunedì, Martedì, Mercoledì, Giovedì, Venerdì, Sabato]
|
605
|
+
abbr_day_names: [Dom, Lun, Mar, Mer, Gio, Ven, Sab]
|
606
|
+
month_names: [~, Gennaio, Febbraio, Marzo, Aprile, Maggio, Giugno, Luglio, Agosto, Settembre, Ottobre, Novembre, Dicembre]
|
607
|
+
abbr_month_names: [~, Gen, Feb, Mar, Apr, Mag, Giu, Lug, Ago, Set, Ott, Nov, Dic]
|
608
|
+
order:
|
609
|
+
- :year
|
610
|
+
- :month
|
611
|
+
- :day
|
612
|
+
time:
|
613
|
+
formats:
|
614
|
+
default: "%a, %d %b %Y %H:%M:%S %z"
|
615
|
+
short: "%d %b %H:%M"
|
616
|
+
long: "%d %B, %Y %H:%M"
|
617
|
+
page_status: "%d.%m.%Y %H:%M"
|
618
|
+
date: "%Y-%m-%d"
|
619
|
+
datepicker: "%Y-%m-%d"
|
620
|
+
timepicker: "%H:%M"
|
621
|
+
datetimepicker: "%Y-%m-%d %H:%M"
|
622
|
+
time: "%H:%M"
|
623
|
+
am: "am"
|
624
|
+
pm: "pm"
|
625
|
+
support:
|
626
|
+
array:
|
627
|
+
words_connector: ", "
|
628
|
+
two_words_connector: " e "
|
629
|
+
last_word_connector: " e "
|
630
|
+
|
631
|
+
number:
|
632
|
+
# Used in number_with_delimiter()
|
633
|
+
# These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
|
634
|
+
format:
|
635
|
+
# Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
|
636
|
+
separator: ","
|
637
|
+
# Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
|
638
|
+
delimiter: "."
|
639
|
+
# Number of decimals, behind the separator (1 with a precision of 2 gives: 1.00)
|
640
|
+
precision: 3
|
641
|
+
|
642
|
+
# Used in number_to_currency()
|
643
|
+
currency:
|
644
|
+
format:
|
645
|
+
# Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
|
646
|
+
format: "%u%n"
|
647
|
+
unit: "€"
|
648
|
+
# These three are to override number.format and are optional
|
649
|
+
separator: ","
|
650
|
+
delimiter: "."
|
651
|
+
precision: 2
|
652
|
+
|
653
|
+
# Used in number_to_percentage()
|
654
|
+
percentage:
|
655
|
+
format:
|
656
|
+
# These three are to override number.format and are optional
|
657
|
+
# separator:
|
658
|
+
delimiter: "."
|
659
|
+
precision: 2
|
660
|
+
|
661
|
+
# Used in number_to_human_size()
|
662
|
+
human:
|
663
|
+
format:
|
664
|
+
# These three are to override number.format and are optional
|
665
|
+
# separator:
|
666
|
+
delimiter: ""
|
667
|
+
precision: 1
|
668
|
+
storage_units:
|
669
|
+
# Storage units output formatting.
|
670
|
+
# %u is the storage unit, %n is the number (default: 2 MB)
|
671
|
+
format: "%n %u"
|
672
|
+
units:
|
673
|
+
byte:
|
674
|
+
one: "Byte"
|
675
|
+
other: "Bytes"
|
676
|
+
kb: "KB"
|
677
|
+
mb: "MB"
|
678
|
+
gb: "GB"
|
679
|
+
tb: "TB"
|
680
|
+
|
681
|
+
# Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
|
682
|
+
datetime:
|
683
|
+
distance_in_words:
|
684
|
+
half_a_minute: "mezzo minuto"
|
685
|
+
less_than_x_seconds:
|
686
|
+
zero: "meno di un secondo"
|
687
|
+
one: "meno di un secondo"
|
688
|
+
other: "meno di %{count} secondi"
|
689
|
+
x_seconds:
|
690
|
+
one: "1 secondo"
|
691
|
+
other: "%{count} secondi"
|
692
|
+
less_than_x_minutes:
|
693
|
+
zero: "meno di un minuto"
|
694
|
+
one: "meno di un minuto"
|
695
|
+
other: "meno di %{count} minuti"
|
696
|
+
x_minutes:
|
697
|
+
one: "1 minuto"
|
698
|
+
other: "%{count} minuti"
|
699
|
+
about_x_hours:
|
700
|
+
one: "circa un'ora"
|
701
|
+
other: "circa %{count} ore"
|
702
|
+
x_days:
|
703
|
+
one: "1 giorno"
|
704
|
+
other: "%{count} giorni"
|
705
|
+
about_x_months:
|
706
|
+
one: "circa un mese"
|
707
|
+
other: "circa %{count} mesi"
|
708
|
+
x_months:
|
709
|
+
one: "1 mese"
|
710
|
+
other: "%{count} mesi"
|
711
|
+
about_x_years:
|
712
|
+
one: "circa un anno"
|
713
|
+
other: "circa %{count} anni"
|
714
|
+
over_x_years:
|
715
|
+
one: "oltre un anno"
|
716
|
+
other: "oltre %{count} anni"
|
717
|
+
prompts:
|
718
|
+
second: "Secondo"
|
719
|
+
minute: "Minuto"
|
720
|
+
hour: "Ora"
|
721
|
+
day: "Giorno"
|
722
|
+
month: "Mese"
|
723
|
+
year: "Anno"
|
724
|
+
|
725
|
+
errors: &errors
|
726
|
+
template:
|
727
|
+
header: "Validazione fallita"
|
728
|
+
body: 'Riguarda la form e controlla gli errori.'
|
729
|
+
|
730
|
+
messages:
|
731
|
+
inclusion: "non è incluso nella lista"
|
732
|
+
exclusion: "è riservato"
|
733
|
+
invalid: "è invalido"
|
734
|
+
record_invalid: 'Validazione di %{errors} fallita'
|
735
|
+
confirmation: "non è uguale alla conferma"
|
736
|
+
accepted: "deve essere accettato"
|
737
|
+
empty: "non può essere vuoto"
|
738
|
+
blank: "non può essere assente"
|
739
|
+
too_long: "è troppo lungo (massimo %{count} caratteri)"
|
740
|
+
too_short: "è troppo corto (minimo %{count} caratteri)"
|
741
|
+
wrong_length: "è della lunghezza sbagliata (dovrebbe essere %{count} caratteri)"
|
742
|
+
taken: "è stato già preso"
|
743
|
+
not_a_number: "non è un numero"
|
744
|
+
greater_than: "deve essere maggiore di %{count}"
|
745
|
+
greater_than_or_equal_to: "deve essere maggiore o uguale a %{count}"
|
746
|
+
equal_to: "deve essere uguale a %{count}"
|
747
|
+
less_than: "deve essere minore di %{count}"
|
748
|
+
less_than_or_equal_to: "deve essere minore o uguale a %{count}"
|
749
|
+
odd: "deve essere disparo"
|
750
|
+
even: "deve essere paro"
|
751
|
+
models:
|
752
|
+
alchemy/content:
|
753
|
+
attributes:
|
754
|
+
name:
|
755
|
+
taken: 'è stato già preso in questo elemento.'
|
756
|
+
essence:
|
757
|
+
validation_failed: 'Validazione fallita.'
|
758
|
+
alchemy/element:
|
759
|
+
attributes:
|
760
|
+
name:
|
761
|
+
blank: "^Scegli un elemento."
|
762
|
+
alchemy/language:
|
763
|
+
attributes:
|
764
|
+
language_code:
|
765
|
+
invalid: '^Il formato del codice della lingua è errato. Usa esattamente 2 lettere minuscole.'
|
766
|
+
taken: 'è già preso per questo codice nazione.'
|
767
|
+
locale:
|
768
|
+
missing_file: "Localizzazione non trovata per il codice lingua fornito. Scegline uno esistente."
|
769
|
+
alchemy/page:
|
770
|
+
attributes:
|
771
|
+
name:
|
772
|
+
blank: "^Inserisci un nome."
|
773
|
+
page_layout:
|
774
|
+
blank: "^Scegli un layout per la pagina."
|
775
|
+
urlname:
|
776
|
+
too_short: "^L'url della pagina è troppo corto (minimo 3 caratteri)."
|
777
|
+
taken: "^URL-Name è già preso."
|
778
|
+
exclusion: "^URL-Name è riservato."
|
779
|
+
alchemy/picture:
|
780
|
+
attributes:
|
781
|
+
image_file:
|
782
|
+
blank: "Carica un'immagine."
|
783
|
+
|
784
|
+
activemodel:
|
785
|
+
models:
|
786
|
+
alchemy/message:
|
787
|
+
one: Messaggio
|
788
|
+
other: Messaggi
|
789
|
+
|
790
|
+
attributes:
|
791
|
+
alchemy/message:
|
792
|
+
salutation: 'Salve'
|
793
|
+
firstname: 'Nome'
|
794
|
+
lastname: 'Cognome'
|
795
|
+
address: 'Via / N.'
|
796
|
+
zip: 'CAP'
|
797
|
+
city: Città
|
798
|
+
phone: 'Telefono'
|
799
|
+
email: 'Email'
|
800
|
+
message: 'Messaggio'
|
801
|
+
|
802
|
+
errors:
|
803
|
+
<<: *errors
|
804
|
+
|
805
|
+
# Translations for active record database models and error messages.
|
806
|
+
activerecord:
|
807
|
+
|
808
|
+
models:
|
809
|
+
acts_as_taggable_on/tag:
|
810
|
+
one: Tag
|
811
|
+
other: Tag
|
812
|
+
|
813
|
+
alchemy/attachment:
|
814
|
+
one: File
|
815
|
+
other: File
|
816
|
+
|
817
|
+
alchemy/element:
|
818
|
+
one: "Elemento"
|
819
|
+
other: "Elementi"
|
820
|
+
|
821
|
+
alchemy/legacy_page_url:
|
822
|
+
one: "Collegamento"
|
823
|
+
other: "Collegamenti"
|
824
|
+
|
825
|
+
alchemy/language:
|
826
|
+
one: "Lingua"
|
827
|
+
other: "Lingue"
|
828
|
+
|
829
|
+
alchemy/page:
|
830
|
+
one: "Pagina"
|
831
|
+
other: "Pagine"
|
832
|
+
|
833
|
+
alchemy/site:
|
834
|
+
one: Sito web
|
835
|
+
other: Siti web
|
836
|
+
|
837
|
+
alchemy/picture:
|
838
|
+
one: Immagine
|
839
|
+
other: Immagini
|
840
|
+
|
841
|
+
attributes:
|
842
|
+
|
843
|
+
acts_as_taggable_on/tag:
|
844
|
+
taggings_types: Usato per
|
845
|
+
taggings_count: Numero utilizzi
|
846
|
+
|
847
|
+
alchemy/attachment:
|
848
|
+
file_mime_type: Tipo file
|
849
|
+
created_at: "Creato il"
|
850
|
+
file_name: Nome file
|
851
|
+
name: Nome
|
852
|
+
file_size: Dimensione file
|
853
|
+
tag_list: Tag
|
854
|
+
|
855
|
+
alchemy/element:
|
856
|
+
display_name: "Nome"
|
857
|
+
name: "Nome"
|
858
|
+
public: "visibile"
|
859
|
+
tag_list: Tag
|
860
|
+
|
861
|
+
alchemy/essence_file:
|
862
|
+
css_class: Stile
|
863
|
+
link_text: Link-Text
|
864
|
+
title: Titolo
|
865
|
+
|
866
|
+
alchemy/essence_picture:
|
867
|
+
caption: "Didascalia"
|
868
|
+
title: "Titolo"
|
869
|
+
alt_tag: "Testo alternativo"
|
870
|
+
link: Link
|
871
|
+
link_class_name: "Classe link CSS"
|
872
|
+
link_title: Titolo link
|
873
|
+
css_class: Stile
|
874
|
+
link_target: Destinazione link
|
875
|
+
render_size: Dimensione render
|
876
|
+
crop_from: Taglia da
|
877
|
+
crop_size: Dimensione taglio
|
878
|
+
picture_id: Immagine
|
879
|
+
|
880
|
+
alchemy/language:
|
881
|
+
country_code: "Codice nazione"
|
882
|
+
language_code: "Codice lingua"
|
883
|
+
default: "Default"
|
884
|
+
frontpage_name: "Nome della prima pagina"
|
885
|
+
name: "Nome"
|
886
|
+
page_layout: "Tipo della prima pagiona"
|
887
|
+
public: "Pubblica"
|
888
|
+
locale: Localizzazione
|
889
|
+
code: Codice-ISO
|
890
|
+
alchemy/legacy_page_url:
|
891
|
+
urlname: "Percorso URL"
|
892
|
+
|
893
|
+
alchemy/page:
|
894
|
+
created_at: "Creato il"
|
895
|
+
language: "Lingua"
|
896
|
+
locked: "Questa pagina è bloccata da un altro utente."
|
897
|
+
locked_by: "bloccata da"
|
898
|
+
meta_description: "Descrizione"
|
899
|
+
meta_keywords: "Parole chiave"
|
900
|
+
name: "Nome"
|
901
|
+
page_layout: "Tipo pagina"
|
902
|
+
public: "pubblica"
|
903
|
+
restricted: "riservata"
|
904
|
+
robot_follow: "i robot possono seguire i link"
|
905
|
+
robot_index: "consenti ai robot di indizzare la pagina"
|
906
|
+
sitemap: "visibile nella sitemap"
|
907
|
+
tag_list: Tag
|
908
|
+
title: "Titolo"
|
909
|
+
updated_at: "Aggiornata il"
|
910
|
+
urlname: "Nome url"
|
911
|
+
visible: "Visibile nella navigazione"
|
912
|
+
|
913
|
+
alchemy/picture:
|
914
|
+
image_file_name: "Nome del file"
|
915
|
+
image_file_height: "Altezza"
|
916
|
+
image_file_width: "Larghezza"
|
917
|
+
image_file_dimensions: "Dimensioni"
|
918
|
+
image_file_size: "Dimensione del file"
|
919
|
+
name: "Nome"
|
920
|
+
tag_list: Tag
|
921
|
+
|
922
|
+
alchemy/site:
|
923
|
+
name: "Nome"
|
924
|
+
host: "Host Primario"
|
925
|
+
public: "Publico"
|
926
|
+
aliases: "Alias di Dominio"
|
927
|
+
redirect_to_primary_host: "Redirect all'Host Primario"
|
928
|
+
|
929
|
+
errors:
|
930
|
+
<<: *errors
|
931
|
+
|
932
|
+
views:
|
933
|
+
pagination:
|
934
|
+
first: "Prima Pagina"
|
935
|
+
previous_page: "Pagina Precedente"
|
936
|
+
next_page: "Prossima Pagina"
|
937
|
+
last: "Ultima Pagina"
|