alchemy_cms 3.0.0.rc7 → 3.0.0.rc8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +2 -1
- data/README.md +1 -1
- data/app/assets/javascripts/alchemy/alchemy.dragndrop.js.coffee +0 -2
- data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +26 -2
- data/app/assets/javascripts/alchemy/alchemy.preview_window.js.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.translations.js.coffee +22 -0
- data/app/assets/stylesheets/alchemy/base.scss +1 -5
- data/app/assets/stylesheets/alchemy/elements.scss +11 -61
- data/app/assets/stylesheets/alchemy/frame.scss +1 -1
- data/app/assets/stylesheets/tinymce/skins/alchemy/skin.min.css.scss +1 -1
- data/app/controllers/alchemy/admin/attachments_controller.rb +1 -1
- data/app/controllers/alchemy/admin/base_controller.rb +7 -13
- data/app/controllers/alchemy/admin/clipboard_controller.rb +15 -10
- data/app/controllers/alchemy/admin/elements_controller.rb +15 -11
- data/app/controllers/alchemy/admin/essence_pictures_controller.rb +8 -1
- data/app/controllers/alchemy/admin/pages_controller.rb +95 -22
- data/app/controllers/alchemy/admin/tags_controller.rb +1 -1
- data/app/controllers/alchemy/pictures_controller.rb +33 -32
- data/app/helpers/alchemy/admin/base_helper.rb +3 -16
- data/app/models/alchemy/element.rb +1 -1
- data/app/models/alchemy/page/page_naming.rb +4 -2
- data/app/models/alchemy/page/page_natures.rb +1 -1
- data/app/models/alchemy/page.rb +20 -1
- data/app/models/alchemy/picture.rb +1 -0
- data/app/models/alchemy/tree_node.rb +4 -0
- data/app/views/alchemy/admin/contents/destroy.js.erb +4 -0
- data/app/views/alchemy/admin/dashboard/index.html.erb +1 -1
- data/app/views/alchemy/admin/elements/_element.html.erb +11 -12
- data/app/views/alchemy/admin/elements/_new_element_form.html.erb +0 -3
- data/app/views/alchemy/admin/elements/create.js.erb +3 -3
- data/app/views/alchemy/admin/elements/index.html.erb +4 -19
- data/app/views/alchemy/admin/elements/new.html.erb +0 -3
- data/app/views/alchemy/admin/elements/trash.js.erb +12 -16
- data/app/views/alchemy/admin/pages/_page.html.erb +1 -1
- data/app/views/alchemy/admin/pages/edit.html.erb +36 -30
- data/app/views/alchemy/admin/pictures/edit_multiple.html.erb +1 -1
- data/app/views/alchemy/admin/trash/clear.js.erb +4 -0
- data/config/locales/alchemy.de.yml +56 -84
- data/config/locales/alchemy.en.yml +326 -105
- data/config/locales/alchemy.fr.yml +942 -0
- data/config/locales/alchemy.nl.yml +111 -137
- data/config/locales/simple_form.fr.yml +26 -0
- data/lib/alchemy/engine.rb +7 -1
- data/lib/alchemy/i18n.rb +7 -1
- data/lib/alchemy/middleware/rescue_old_cookies.rb +27 -0
- data/lib/alchemy/permissions.rb +1 -1
- data/lib/alchemy/version.rb +1 -1
- data/spec/controllers/admin/clipboard_controller_spec.rb +16 -19
- data/spec/controllers/admin/elements_controller_spec.rb +20 -23
- data/spec/controllers/admin/essence_pictures_controller_spec.rb +22 -6
- data/spec/controllers/admin/pages_controller_spec.rb +94 -5
- data/spec/controllers/pictures_controller_spec.rb +44 -3
- data/spec/features/admin/link_overlay_spec.rb +1 -0
- data/spec/features/admin/locale_select_feature_spec.rb +22 -0
- data/spec/libraries/i18n_spec.rb +30 -0
- data/spec/libraries/permissions_spec.rb +1 -1
- data/spec/models/element_spec.rb +5 -4
- data/spec/models/page_spec.rb +137 -8
- data/spec/spec_helper.rb +23 -19
- data/vendor/assets/javascripts/jquery_plugins/jquery.ui.nestedSortable.js +9 -3
- metadata +12 -10
- data/app/models/alchemy/clipboard.rb +0 -74
- data/app/views/alchemy/admin/contents/destroy.js.coffee +0 -4
- data/app/views/alchemy/admin/elements/_add_element_button.html.erb +0 -18
- data/app/views/alchemy/admin/trash/clear.js.coffee +0 -4
- data/spec/models/clipboard_spec.rb +0 -111
- data/spec/support/phantomjs_mavericks_fix.rb +0 -32
@@ -10,79 +10,79 @@ en:
|
|
10
10
|
# Just use the page_layouts name like defined inside the config/alchemy/page_layouts.yml file and translate it.
|
11
11
|
#
|
12
12
|
# Example:
|
13
|
-
#
|
14
|
-
#
|
15
|
-
#
|
16
|
-
#
|
17
|
-
#
|
13
|
+
#
|
14
|
+
# en:
|
15
|
+
# alchemy:
|
16
|
+
# page_layout_names:
|
17
|
+
# contact: Contact
|
18
|
+
# search: Search
|
18
19
|
#
|
19
20
|
page_layout_names:
|
20
|
-
layout_header: 'Header Part'
|
21
|
-
layout_footer: 'Footer Part'
|
22
21
|
|
23
22
|
# == Translations for element names
|
24
23
|
# Just use the elements name like defined inside the config/alchemy/elements.yml file and translate it.
|
25
24
|
#
|
26
25
|
# Example:
|
27
|
-
#
|
28
|
-
#
|
29
|
-
#
|
30
|
-
#
|
31
|
-
#
|
26
|
+
#
|
27
|
+
# en:
|
28
|
+
# alchemy:
|
29
|
+
# element_names:
|
30
|
+
# article: Article
|
31
|
+
# contactform: Contact form
|
32
32
|
#
|
33
33
|
element_names:
|
34
|
-
article: Article
|
35
|
-
intro_image_text: Intro Article
|
36
|
-
text: Text
|
37
|
-
bild: Image(s)
|
38
|
-
bild_text: Text (Image)
|
39
|
-
headline: Headline
|
40
|
-
image_mosaic: Image Mosaic
|
41
|
-
footnote: Footnote
|
42
|
-
sitename: Website Name
|
43
|
-
claim: Claim
|
44
|
-
header: Header-Image
|
45
|
-
intro: Intro
|
46
|
-
subheadline: Subheadline
|
47
|
-
news: News
|
48
|
-
searchresult: Searchresults
|
49
|
-
contactform: Contactform
|
50
34
|
|
51
35
|
# == Translated names for contents in elements.
|
52
36
|
# Used for the content editor label inside the element editor view (The elements window)
|
53
37
|
#
|
54
38
|
# Tip: You can translate content names globally for all contents of this name, or specificly for an element.
|
55
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
|
+
#
|
56
52
|
content_names:
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
success_page: 'Followup page'
|
74
|
-
|
75
|
-
# Translations for content validations
|
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.'
|
76
69
|
#
|
77
70
|
content_validations:
|
78
|
-
contactform:
|
79
|
-
success_page:
|
80
|
-
blank: 'Please choose a follow up page'
|
81
71
|
errors:
|
82
72
|
blank: "%{field} can't be blank"
|
83
73
|
invalid: '%{field} has wrong format'
|
84
74
|
taken: '%{field} has already been taken'
|
85
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: 'Left from text'
|
83
|
+
right: 'Right from text'
|
84
|
+
no_float: 'Above the text'
|
85
|
+
|
86
86
|
# == Contactform translations
|
87
87
|
contactform:
|
88
88
|
labels:
|
@@ -108,6 +108,7 @@ en:
|
|
108
108
|
de: 'DE'
|
109
109
|
en: 'EN'
|
110
110
|
nl: 'NL'
|
111
|
+
fr: 'FR'
|
111
112
|
|
112
113
|
# == User roles translations
|
113
114
|
user_roles:
|
@@ -141,6 +142,7 @@ en:
|
|
141
142
|
image/png: 'PNG-Image'
|
142
143
|
image/jpeg: 'JPG-Image'
|
143
144
|
video/x-msvideo: 'AVI-Video'
|
145
|
+
video/x-ms-wmv: 'Windows Media Video'
|
144
146
|
image/tiff: 'TIFF-Image'
|
145
147
|
'text/x-vcard': 'vCard'
|
146
148
|
application/vcard: 'vCard'
|
@@ -150,74 +152,215 @@ en:
|
|
150
152
|
blank: New Window/Tab
|
151
153
|
overlay: Overlay
|
152
154
|
|
155
|
+
resource_help_texts:
|
156
|
+
site:
|
157
|
+
aliases: Please separate additional domains with spaces or new lines.
|
158
|
+
|
159
|
+
anchor: 'Anchor'
|
160
|
+
back: 'back'
|
153
161
|
create_tree_as_new_language: "Create %{language} as a new language tree"
|
154
|
-
"
|
162
|
+
"Active Pages": "Active pages"
|
163
|
+
"Add global page": "Add global page"
|
164
|
+
"Add page link": "Add page link"
|
165
|
+
"Adobe Website": "Adobe Website"
|
166
|
+
"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
|
+
"Alchemy is up to date": 'Alchemy is up to date'
|
168
|
+
'An error happened': 'An error happened'
|
169
|
+
"Change password": "Change password"
|
170
|
+
"Choose page": "Choose page"
|
171
|
+
"Cleared trash": "Cleared trash"
|
172
|
+
"Clear selection": "Clear selection"
|
173
|
+
"Forgot your password?": "Forgot your password?"
|
174
|
+
"Clipboard": "Clipboard"
|
175
|
+
"Confirm new password": "Confirm new password"
|
176
|
+
"Copy": "Copy"
|
177
|
+
"Could not load Adobe Flash® Plugin!": "Could not load Adobe Flash® Plugin!"
|
178
|
+
"Currently locked pages": "Currently locked pages"
|
179
|
+
"Default language has to be public": "Default language has to be public"
|
180
|
+
"Delete image": "Delete image"
|
181
|
+
"Do you really want to clear the clipboard?": "Do you really want to clear the clipboard?"
|
182
|
+
"Do you really want to clear the trash?": "Do you really want to clear the trash?"
|
183
|
+
"Do you really want to delete this content?": "Do you really want to delete this content?"
|
184
|
+
"Drag an element over to the element window to restore it": "Drag an element over to the element window to restore it"
|
185
|
+
"Edit Picturemask": "Edit picturemask"
|
186
|
+
"Edit image": "Edit image"
|
187
|
+
"Edit multiple pictures": "Edit multiple pictures"
|
188
|
+
"Elements": "Elements"
|
189
|
+
"Element trashed": "Element trashed"
|
190
|
+
"Error with the Flash® Uploader!": "Error with the Flash® Uploader!"
|
191
|
+
"Excerpt": "Excerpt"
|
192
|
+
"File uploaded succesfully": "File %{name} succesfully uploaded"
|
193
|
+
"File successfully updated": "File successfully updated"
|
194
|
+
"File upload error": "File upload error: %{error}"
|
195
|
+
"File deleted successfully": "%{name} has been deleted"
|
196
|
+
"Filter by tag": "Filter by tag"
|
197
|
+
"Flush page cache": "Flush page cache"
|
198
|
+
"Flush picture cache": "Flush picture cache"
|
199
|
+
"Global shortcuts": "Global shortcuts"
|
200
|
+
"Hide childpages": "Hide childpages"
|
201
|
+
"Hide Elements": "Hide Elements"
|
202
|
+
"If you have any problems using the Flash uploader you can switch to": "If you have any problems using the Flash uploader you can switch to %{link}"
|
203
|
+
"Image missing": "Image missing"
|
155
204
|
"Image size": "Imagesize"
|
156
|
-
"
|
205
|
+
"Language successfully created": "Language successfully created."
|
206
|
+
"Language successfully removed": "Language successfully removed."
|
207
|
+
"Language successfully updated": "Language successfully updated."
|
208
|
+
"Language tree": "Language tree"
|
209
|
+
"Layout default": "Layout default"
|
210
|
+
"Library shortcuts": "Library shortcuts"
|
211
|
+
"Logged in as": "Logged in as"
|
157
212
|
"Mandatory": "Mandatory fields"
|
158
|
-
"
|
159
|
-
"
|
213
|
+
"Name": "Name"
|
214
|
+
"New": "New"
|
215
|
+
"New Element": "New element"
|
216
|
+
"New page": "New page"
|
217
|
+
"No page links for this page found": "No page links for this page found"
|
218
|
+
"New password": "New password"
|
219
|
+
"New Tag": "New tag"
|
220
|
+
"New Tag Created": "New Tag Created"
|
221
|
+
"No": "No"
|
222
|
+
"No items in your clipboard": "No items in your clipboard"
|
223
|
+
"No Tags found": "No Tags found"
|
224
|
+
"None": "None"
|
225
|
+
"Open Link in": "Open Link in"
|
226
|
+
"Page": "Page"
|
227
|
+
"Page edit shortcuts": "Page edit shortcuts"
|
228
|
+
"Page deleted": "%{name} deleted"
|
229
|
+
"Page saved": "%{name} saved"
|
230
|
+
"Page cache flushed": "Page cache flushed"
|
231
|
+
"Pages order saved": "Pages order saved"
|
160
232
|
"Password": "Password"
|
233
|
+
"Password reset": "Password reset"
|
161
234
|
"Paste from clipboard": "Paste from clipboard"
|
235
|
+
"Picture infos": "Picture infos"
|
236
|
+
"Picture uploaded succesfully": "Picture %{name} uploaded successfully"
|
237
|
+
"Picture validation error": "Error while uploading %{name}"
|
238
|
+
"Picture renamed successfully": "Picture renamed successfully from %{from} to %{to}"
|
239
|
+
"Picture deleted successfully": "Picture %{name} successfully deleted"
|
240
|
+
"Pictures updated successfully": "Pictures updated successfully"
|
241
|
+
"Picture cache flushed": "Picture cache flushed"
|
242
|
+
"Please Signup": "Please signup to edit your Website."
|
243
|
+
"Please choose": "Please choose"
|
244
|
+
"Please enter a new password": "Please enter a new password."
|
245
|
+
"Please enter your email address": "Please enter your email address."
|
246
|
+
"Please log in": "Please log in."
|
247
|
+
"Please seperate the tags with commata": "* Please seperate the tags with commata."
|
248
|
+
"Properties": "Properties"
|
249
|
+
"Publish page": "Publish page"
|
250
|
+
"Read the License": "Read the License"
|
251
|
+
"Redirects to": "Redirects to"
|
252
|
+
"Reload Preview": "Reload Preview"
|
253
|
+
"Remove item from clipboard": "Remove item from clipboard"
|
254
|
+
"Remove tag filter": "Remove tag filter"
|
255
|
+
"Remove this content": "Remove this content"
|
256
|
+
"Reset Imagemask": "Reset Imagemask"
|
257
|
+
"Reset password instructions": "Reset password instructions"
|
258
|
+
"Select all": "Select all"
|
259
|
+
"Select an content": "Select a content"
|
260
|
+
"Select style": "Select style"
|
261
|
+
"Send reset instructions": "Send reset instructions"
|
262
|
+
"Show Elements": "Show Elements"
|
263
|
+
"Show childpages": "Show childpages"
|
264
|
+
"Show clipboard": "Show clipboard"
|
265
|
+
"Show picture infos": "Show picture infos"
|
266
|
+
"Show trash": "Show trash"
|
267
|
+
"Site successfully created": "Website successfully created."
|
268
|
+
"Site successfully removed": "Website successfully removed."
|
269
|
+
"Site successfully updated": "Website successfully updated."
|
270
|
+
"Size": "Size"
|
271
|
+
"Sort pages": "Sort pages"
|
162
272
|
"Successfully added content": "Successfully added %{content}"
|
163
273
|
"Successfully deleted content": "Successfully deleted %{content}"
|
164
|
-
"
|
165
|
-
"
|
166
|
-
"
|
274
|
+
"Successfully saved content position": "Successfully saved content position"
|
275
|
+
"Tags": "Tags"
|
276
|
+
"These pictures could not be deleted, because they were in use": "These pictures could not be deleted, because they were in use: %{names}"
|
277
|
+
"This page is locked": "This page is currently locked by %{name}"
|
278
|
+
"Title": "Title"
|
279
|
+
"Trash": "Trash"
|
280
|
+
"User created": "%{name} User created"
|
281
|
+
"User deleted": "%{name} User deleted"
|
282
|
+
"User updated": "%{name} User updated"
|
283
|
+
"Validation failed": "Validation failed"
|
284
|
+
"Version": "Version"
|
285
|
+
"View File": "View File"
|
286
|
+
"Visit page": "Visit page"
|
287
|
+
"Warning!": "Warning!"
|
288
|
+
content_description_missing: "Warning: Content is missing its description. Please check the elements.yml"
|
289
|
+
element_description_missing: "WARNING! Missing description. Please check your elements.yml file."
|
290
|
+
"Welcome to Alchemy": "Welcome to Alchemy"
|
291
|
+
"Who else is online": "Who else is online"
|
292
|
+
"Yes": "Yes"
|
293
|
+
"You are not authorized": "You are not authorized"
|
294
|
+
"You are about to edit many pictures at once": "You are about to edit %{length} pictures at once"
|
295
|
+
element_dirty_close_window_notice: "You have unsaved elements. Do you really want to close the elements window?"
|
296
|
+
"You may upload files with following extensions": "You may upload %{file_types_description} with following extensions: %{file_types}"
|
297
|
+
"You may upload any file": "You may upload any file"
|
298
|
+
"Your last login was on": "Your last login was on %{time}."
|
299
|
+
"Your last updated pages": "Your last updated pages"
|
300
|
+
"Your trash is empty": "Your trash is empty"
|
301
|
+
above: "above"
|
302
|
+
add: "Add"
|
303
|
+
"add new content": "Add new content"
|
167
304
|
add_image_to_element: "Add an image"
|
168
305
|
align_in_text: "Alignment in text"
|
169
|
-
|
306
|
+
all: "all"
|
307
|
+
all_pictures: "All pictures"
|
308
|
+
apply: "apply"
|
170
309
|
assign_file: "Assign a file"
|
171
310
|
assign_file_from_archive: "assign a file from your archive"
|
172
311
|
assign_image: "Assign an image"
|
173
312
|
attachment_filename_notice: "* Please do not use any special characters for the filename."
|
174
313
|
auto_play: "Play movie after load"
|
175
314
|
big_thumbnails: "Big thumbnails"
|
315
|
+
browse: "browse"
|
316
|
+
cancel: "cancel"
|
176
317
|
cannot_delete_picture_notice: "Cannot delete Picture %{name}, because it's still in use."
|
177
318
|
choose_element_as_target: "Please choose an element as target"
|
178
319
|
choose_element_to_link: "Please choose an element"
|
179
320
|
choose_file_to_link: "Please choose a file to link"
|
321
|
+
"clear clipboard": "clear clipboard"
|
322
|
+
"clear trash": "clear trash"
|
180
323
|
click_to_show_all: "Click to show all again."
|
181
324
|
confirm_to_delete_file: "Do you really want to delete this file from the server?"
|
182
325
|
confirm_to_delete_image: "Do you really want to delete this image from server?"
|
183
326
|
confirm_to_delete_image_from_server: "Do you really want to delete this image from the server?"
|
184
327
|
confirm_to_delete_images_from_server: "Do you really want to delete these images from the server?"
|
185
|
-
|
186
|
-
content_description_missing: "Warning: Content is missing its description. Please check the elements.yml"
|
328
|
+
confirm_to_delete_page: "Do you really want to delete this page? All its elements will get lost!"
|
187
329
|
content_essence_not_found: "Content essence not found"
|
188
330
|
content_not_found: "Field for content not present."
|
189
331
|
content_validations_headline: "Please check marked fields below"
|
332
|
+
copy: "copy"
|
190
333
|
copy_element: "Copy this element"
|
191
|
-
copy_language_tree_heading: "Copy page tree"
|
192
334
|
copy_page: "Copy page"
|
193
335
|
"Could not delete Pictures": "Could not delete Pictures"
|
336
|
+
copy_language_tree_heading: "Copy page tree"
|
194
337
|
country_code_placeholder: 'i.e. us (optional)'
|
195
338
|
country_code_foot_note: "You only need to set a country code if you want to provide each country with an individual language."
|
339
|
+
create: "create"
|
196
340
|
"Create language": "Create a new language"
|
197
341
|
"Create site": "Create a new site"
|
198
342
|
create_language_tree_heading: "Create empty language tree"
|
199
343
|
create_page: "Create a new subpage"
|
200
|
-
created_at: "Created at"
|
201
344
|
currently_edited_by: "This page is locked by"
|
202
345
|
cut_element: "Cut this element."
|
203
346
|
delete_file: "Delete this file from server."
|
204
347
|
delete_image: "Remove this image"
|
205
348
|
delete_language: "Delete this language"
|
206
349
|
delete_page: "Delete this page"
|
350
|
+
delete_tag: 'Delete tag'
|
207
351
|
document: "File"
|
208
352
|
documents: "Files"
|
209
353
|
download_csv: "Download CSV"
|
210
354
|
download_file: "Download file '%{filename}'"
|
211
|
-
|
355
|
+
do_you_really_want_to_delete_this_tag?: "Do you really want to delete this tag?"
|
212
356
|
drag_to_sort: "Drag'n'Drop to sort images"
|
213
357
|
edit_file_properties: "Edit file properties."
|
214
358
|
edit_image_properties: "Edit image properties."
|
215
359
|
edit_language: "Edit language"
|
216
360
|
edit_page: "Edit this page"
|
217
|
-
edit_page_properties: "Edit
|
361
|
+
edit_page_properties: "Edit page properties"
|
362
|
+
edit_tag: 'Edit tag'
|
218
363
|
edit_selected_pictures: "Edit selected pictures"
|
219
|
-
element_description_missing: "WARNING! Missing description. Please check your elements.yml file."
|
220
|
-
element_dirty_close_window_notice: "You have unsaved elements. Do you really want to close the elements window?"
|
221
364
|
element_editor_not_found: "Error within this Element"
|
222
365
|
element_of_type: "Element"
|
223
366
|
element_saved: "Saved element."
|
@@ -232,15 +375,14 @@ en:
|
|
232
375
|
step1: "Click the 'browse' button and navigate to your %{name} folder"
|
233
376
|
step2: "Select all the %{name} you want to upload"
|
234
377
|
step3: "Click the 'open' button. The upload starts!"
|
378
|
+
dragndrop: "You can also drag files from your computer over to the area underneath."
|
235
379
|
external_link_notice_1: "Please enter the complete url with http:// or a similar protocol."
|
236
380
|
external_link_notice_2: "To refer a path from your website url, start with a /."
|
237
381
|
female: "Female"
|
238
382
|
file: "File"
|
239
383
|
file_rename_error: "Error renaming file."
|
240
|
-
|
241
|
-
"File upload error": "File upload error: %{error}"
|
384
|
+
files: "Files"
|
242
385
|
from_at: "from %{by} at %{at}"
|
243
|
-
'Global shortcuts': 'Global shortcuts'
|
244
386
|
height: "Height"
|
245
387
|
help:
|
246
388
|
shortcuts:
|
@@ -258,11 +400,11 @@ en:
|
|
258
400
|
"Select all pictures": "Select all pictures"
|
259
401
|
hide_element_content: "Hide this elements content."
|
260
402
|
dashboard: "Dashboard"
|
261
|
-
"If you have any problems using the Flash uploader you can switch to": "If you have any problems using the Flash® uploader you can switch to %{link}"
|
262
403
|
image_alt_tag: "Alt-tag"
|
263
404
|
image_caption: "Caption"
|
264
405
|
image_name: "Name"
|
265
406
|
image_title: "Title-tag"
|
407
|
+
images: "Images"
|
266
408
|
internal_link_headline: "Choose a page to link to."
|
267
409
|
internal_link_page_elements_explanation: "Additionally you can click right beside a page on 'Show Elements' to link to an anchor of an element from that page."
|
268
410
|
internal_link_page_anchors_explanation: "Alternatively you can link to an anchor of the actual page."
|
@@ -274,8 +416,9 @@ en:
|
|
274
416
|
language_code_placeholder: 'i.e. en'
|
275
417
|
language_does_not_exist: "This language tree does not exist"
|
276
418
|
language_pages_copied: "Language tree successfully copied."
|
419
|
+
last_upload_only: "Last upload only"
|
420
|
+
left: "left"
|
277
421
|
legacy_url_info_text: "A link is a redirect from an old URL to the current URL of this page. This redirect happens with a <a href='https://support.google.com/webmasters/answer/93633' target='_blank'>301 status code</a>."
|
278
|
-
"Library shortcuts": "Library shortcuts"
|
279
422
|
link_image: "Link this image."
|
280
423
|
link_overlay_tab_label:
|
281
424
|
contactform: "Contact form"
|
@@ -283,8 +426,12 @@ en:
|
|
283
426
|
file: "File"
|
284
427
|
internal: "Internal"
|
285
428
|
link_title: "Link title"
|
429
|
+
login: "login"
|
430
|
+
logout: "logout"
|
286
431
|
mail_to: "Recipient"
|
432
|
+
main_content: "Main content"
|
287
433
|
male: "Male"
|
434
|
+
me: "Me"
|
288
435
|
medium_thumbnails: "Medium thumbnails"
|
289
436
|
meta_data: "Meta-Data"
|
290
437
|
meta_description: "Meta-Description"
|
@@ -302,18 +449,23 @@ en:
|
|
302
449
|
name: "Name"
|
303
450
|
names: "Names"
|
304
451
|
navigation_name: "Navigation name"
|
452
|
+
no_image_for_cropper_found: "No image found. Please save the element first."
|
453
|
+
no: "No"
|
454
|
+
"no pages": "no pages"
|
455
|
+
"no users": "no users"
|
305
456
|
no_default_language_found: "No default language found."
|
306
457
|
no_element_given: "No element given."
|
307
458
|
no_files_in_archive: "You do not have any files in your archive."
|
308
|
-
no_image_for_cropper_found: "No image found. Please save the element first."
|
309
459
|
no_images_in_archive: "You don't have any images in your archive."
|
310
460
|
no_more_elements_to_add: "No more elements available."
|
311
461
|
no_search_results: "Your search did not return any results."
|
312
462
|
"not a valid image": "This is not an valid image."
|
463
|
+
"or": 'or'
|
464
|
+
or_replace_it_with_an_existing_tag: 'Or replace it with an existing tag'
|
313
465
|
"Page created": "Page: '%{name}' created."
|
314
|
-
"Page edit shortcuts": "Page edit shortcuts"
|
315
466
|
page_for_links:
|
316
467
|
choose_page: "Choose %{name}"
|
468
|
+
page_infos: 'Page info'
|
317
469
|
page_layout_changed_notice: "Page type was changed. Elements not usable anymore have been moved into the trash."
|
318
470
|
page_properties: "Page properties"
|
319
471
|
page_public: "published"
|
@@ -342,15 +494,8 @@ en:
|
|
342
494
|
update:
|
343
495
|
comma_seperated: "Separate by comma"
|
344
496
|
password: "Password"
|
497
|
+
paste: "paste"
|
345
498
|
picture_gallery_editor: 'Pictures'
|
346
|
-
"Picture uploaded succesfully": "Picture %{name} uploaded successfully"
|
347
|
-
"Picture validation error": "Error while uploading %{name}"
|
348
|
-
"Picture renamed successfully": "Picture renamed successfully from %{from} to %{to}"
|
349
|
-
"Picture deleted successfully": "Picture %{name} successfully deleted"
|
350
|
-
picture_updated_successfully: "Picture %{name} successfully updated"
|
351
|
-
picture_update_failed: "Failed to update picture %{name}"
|
352
|
-
"Pictures deleted successfully": "Pictures %{names} successfully deleted"
|
353
|
-
pictures_deleted_successfully: "Pictures %{name} deleted"
|
354
499
|
picture_library:
|
355
500
|
filter:
|
356
501
|
last_upload: "from last upload"
|
@@ -361,6 +506,8 @@ en:
|
|
361
506
|
"please enter subject and mail address": "Please enter recipient and subject."
|
362
507
|
please_confirm: "Please confirm"
|
363
508
|
please_wait: "Please wait"
|
509
|
+
position_in_text: "Position in text"
|
510
|
+
preview_size: "Preview size"
|
364
511
|
preview_sizes:
|
365
512
|
'240': '240px (small phone)'
|
366
513
|
'320': '320px (iPhone)'
|
@@ -368,53 +515,84 @@ en:
|
|
368
515
|
'768': '768px (iPad - Portrait)'
|
369
516
|
'1024': '1024px (iPad - Landscape)'
|
370
517
|
'1280': '1280px (Desktop)'
|
518
|
+
recently_uploaded_only: 'Recently uploaded only'
|
519
|
+
"regular method": "Regular method"
|
520
|
+
remove: "Remove"
|
371
521
|
rename_file: "Rename this file."
|
522
|
+
rename: "Rename"
|
523
|
+
replace: replace
|
524
|
+
'Replaced Tag': "Tag '%{old_tag}' was replaced with '%{new_tag}'"
|
372
525
|
resources:
|
373
526
|
relation_select:
|
374
527
|
blank: '- none -'
|
528
|
+
right: "right"
|
375
529
|
robot_follow: "robot may follow links."
|
376
530
|
robot_index: "allow robot to index."
|
531
|
+
save: "Save"
|
532
|
+
"save order": "Save order"
|
377
533
|
saved_link: "Link saved."
|
534
|
+
search: "search"
|
378
535
|
search_engines: "Search engines"
|
379
536
|
select_element: "Select element"
|
537
|
+
seperate_tags_with_comma: "Seperate tags with comma"
|
380
538
|
show_element_content: "Show content of this element."
|
381
539
|
show_elements_from_page: "Show all elements from this page"
|
382
540
|
show_eq: "Show EQ"
|
383
541
|
show_navigation: "Show in navigation"
|
384
542
|
show_page_in_sitemap: "Show page in sitemap."
|
385
543
|
signup_mail_delivery_error: 'Signup mail could not be delivered. Please check your mail settings.'
|
386
|
-
sitemap_editor_notice: "The sitemap is autogenerated."
|
387
|
-
searchresults_editor_info: "This element displays the search and the searchresults."
|
388
544
|
small_thumbnails: "Small thumbnails"
|
545
|
+
subject: "Subject"
|
389
546
|
successfully_added_element: "Successfully added new element."
|
547
|
+
successfully_deleted_tag: "Successfully deleted tag"
|
390
548
|
successfully_restored_element: "Element restored successfully."
|
391
549
|
successfully_saved_element_position: "Element position updated successfully."
|
550
|
+
successfully_updated_tag: "Successfully updated tag"
|
392
551
|
swap_image: "Change image"
|
393
|
-
"These pictures could not be deleted, because they were in use": "These pictures could not be deleted, because they were in use: %{names}"
|
394
552
|
insert_image: "Insert image"
|
553
|
+
tag_list: Tags
|
554
|
+
tags_get_created_if_used_the_first_time: 'Tags get created if used the first time.'
|
555
|
+
this_picture_is_used_on_these_pages: "This picture is used on following pages"
|
395
556
|
title: "Title"
|
396
557
|
to_alchemy: "To Alchemy"
|
397
558
|
"trash element": "Put element into trash"
|
398
|
-
|
559
|
+
unknown: "unknown"
|
399
560
|
unlink: "Remove link from this image."
|
400
561
|
unlock_page: "Leave page"
|
401
562
|
unlocked_page: "Unlocked page %{name}."
|
402
|
-
updated_at: "Updated at"
|
403
563
|
upload_file: "Upload file(s)"
|
404
564
|
upload_image: "Upload image(s)"
|
405
565
|
url_name: "URL-Name"
|
566
|
+
visible: "visible"
|
406
567
|
want_to_create_new_language: "Do you want to create a new empty language tree?"
|
407
568
|
want_to_make_copy_of_existing_language: "Do you want to copy an existing language tree?"
|
408
|
-
"
|
569
|
+
"We need at least one default.": "A default language must exist."
|
409
570
|
welcome_note: "Welcome %{name}"
|
410
571
|
welcome_back_note: "Welcome back %{name}"
|
411
572
|
welcome_please_identify_notice: "Welcome! Please identify."
|
412
573
|
width: "Width"
|
413
|
-
|
414
|
-
|
574
|
+
without_tag: "Without tag"
|
575
|
+
you_can_rename_this_tag: "You can rename this tag"
|
415
576
|
zoom_image: "Zoom this image"
|
416
|
-
"
|
417
|
-
|
577
|
+
"Leave Alchemy": "Leave Alchemy"
|
578
|
+
leave: "leave"
|
579
|
+
"You are about to leave Alchemy": "You are about to leave Alchemy"
|
580
|
+
"Do you want to": "Do you want to"
|
581
|
+
"stay logged in": "stay logged in"
|
582
|
+
"or to completly": "or to completly"
|
583
|
+
"Are you sure?": "Are you sure?"
|
584
|
+
"Create": "Create"
|
585
|
+
"Edit": "Edit"
|
586
|
+
"Delete": "Delete"
|
587
|
+
"Succesfully created": "Succesfully created"
|
588
|
+
"Succesfully updated": "Succesfully updated"
|
589
|
+
"Succesfully removed": "Succesfully removed"
|
590
|
+
"Nothing found": "Nothing found."
|
591
|
+
"Or drag files over here": "Or drag files over here"
|
592
|
+
complete: 'Abgeschlossen'
|
593
|
+
"Update available": 'Update available'
|
594
|
+
"Update status unavailable": 'Update status unavailable'
|
595
|
+
"Uploading": "Uploading"
|
418
596
|
|
419
597
|
# END of Alchemy translation
|
420
598
|
|
@@ -422,19 +600,15 @@ en:
|
|
422
600
|
# Below are Rails specific translations for date, time, number, currency, error messages and so on.
|
423
601
|
date:
|
424
602
|
formats:
|
425
|
-
# Use the strftime parameters for formats.
|
426
|
-
# When no format has been given, it uses default.
|
427
|
-
# You can provide other formats here if you like!
|
428
603
|
default: "%Y-%m-%d"
|
429
604
|
datepicker: "%Y-%m-%d"
|
430
605
|
short: "%b %d"
|
431
606
|
long: "%B %d, %Y"
|
607
|
+
only_day: "%e"
|
432
608
|
day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
|
433
609
|
abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
|
434
|
-
# Don't forget the nil at the beginning; there's no such thing as a 0th month
|
435
610
|
month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
|
436
611
|
abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
|
437
|
-
# Used in date_select and datime_select.
|
438
612
|
order:
|
439
613
|
- :year
|
440
614
|
- :month
|
@@ -443,8 +617,8 @@ en:
|
|
443
617
|
formats:
|
444
618
|
default: "%a, %d %b %Y %H:%M:%S %z"
|
445
619
|
short: "%d %b %H:%M"
|
446
|
-
page_status: "%m.%d.%Y %H:%M"
|
447
620
|
long: "%B %d, %Y %H:%M"
|
621
|
+
page_status: "%m.%d.%Y %H:%M"
|
448
622
|
date: "%Y-%m-%d"
|
449
623
|
datepicker: "%Y-%m-%d"
|
450
624
|
am: "am"
|
@@ -543,6 +717,7 @@ en:
|
|
543
717
|
inclusion: "is not included in the list"
|
544
718
|
exclusion: "is reserved"
|
545
719
|
invalid: "is invalid"
|
720
|
+
record_invalid: 'Validation of %{errors} failed'
|
546
721
|
confirmation: "doesn't match confirmation"
|
547
722
|
accepted: "must be accepted"
|
548
723
|
empty: "can't be empty"
|
@@ -572,8 +747,9 @@ en:
|
|
572
747
|
blank: "^Please choose an element."
|
573
748
|
alchemy/language:
|
574
749
|
attributes:
|
575
|
-
|
750
|
+
language_code:
|
576
751
|
invalid: '^Format of languagecode is not valid. Please use exactly two lowercase characters.'
|
752
|
+
taken: 'is already taken for this country code.'
|
577
753
|
alchemy/page:
|
578
754
|
attributes:
|
579
755
|
name:
|
@@ -584,6 +760,10 @@ en:
|
|
584
760
|
too_short: "^The pages urlname is too short (minimum of 3 characters)."
|
585
761
|
taken: "^URL-Name already taken."
|
586
762
|
exclusion: "^URL-Name reserved."
|
763
|
+
alchemy/picture:
|
764
|
+
attributes:
|
765
|
+
image_file:
|
766
|
+
blank: "Please attach a picture."
|
587
767
|
|
588
768
|
activemodel:
|
589
769
|
models:
|
@@ -597,7 +777,8 @@ en:
|
|
597
777
|
firstname: 'Firstname'
|
598
778
|
lastname: 'Lastname'
|
599
779
|
address: 'Street / No.'
|
600
|
-
zip: 'Zipcode
|
780
|
+
zip: 'Zipcode'
|
781
|
+
city: City
|
601
782
|
phone: 'Telephone'
|
602
783
|
email: 'Email'
|
603
784
|
message: 'Message'
|
@@ -617,36 +798,70 @@ en:
|
|
617
798
|
one: File
|
618
799
|
other: Files
|
619
800
|
|
801
|
+
alchemy/element:
|
802
|
+
one: "Element"
|
803
|
+
other: "Elements"
|
804
|
+
|
620
805
|
alchemy/legacy_page_url:
|
621
806
|
one: "Link"
|
622
807
|
other: "Links"
|
623
808
|
|
809
|
+
alchemy/language:
|
810
|
+
one: "Language"
|
811
|
+
other: "Languages"
|
812
|
+
|
813
|
+
alchemy/page:
|
814
|
+
one: "Page"
|
815
|
+
other: "Pages"
|
816
|
+
|
817
|
+
alchemy/site:
|
818
|
+
one: Website
|
819
|
+
other: Websites
|
820
|
+
|
624
821
|
alchemy/picture:
|
625
822
|
one: Picture
|
626
823
|
other: Pictures
|
627
824
|
|
628
825
|
attributes:
|
629
826
|
|
827
|
+
acts_as_taggable_on/tag:
|
828
|
+
taggings_types: Used for
|
829
|
+
taggings_count: Usage count
|
830
|
+
|
630
831
|
alchemy/attachment:
|
631
|
-
|
832
|
+
file_mime_type: Filetype
|
632
833
|
created_at: "Created at"
|
633
|
-
|
834
|
+
file_name: Filename
|
634
835
|
name: Name
|
635
|
-
|
836
|
+
file_size: Filesize
|
837
|
+
tag_list: Tags
|
636
838
|
|
637
839
|
alchemy/element:
|
638
840
|
display_name: "Name"
|
639
841
|
name: "Name"
|
640
842
|
public: "visible"
|
843
|
+
tag_list: Tags
|
641
844
|
|
642
845
|
alchemy/essence_file:
|
643
846
|
css_class: Style
|
644
847
|
|
645
848
|
alchemy/essence_picture:
|
849
|
+
caption: "Caption"
|
850
|
+
title: "Title"
|
851
|
+
alt_tag: "Alternative text"
|
852
|
+
link: Link
|
853
|
+
link_class_name: "Link CSS class"
|
854
|
+
link_title: Link title
|
646
855
|
css_class: Style
|
856
|
+
link_target: Link target
|
857
|
+
render_size: Render size
|
858
|
+
crop_from: Crop from
|
859
|
+
crop_size: Crop size
|
860
|
+
picture_id: Bild
|
647
861
|
|
648
862
|
alchemy/language:
|
649
|
-
|
863
|
+
country_code: "Country code"
|
864
|
+
language_code: "Language code"
|
650
865
|
default: "Default"
|
651
866
|
frontpage_name: "Name of frontpage"
|
652
867
|
name: "Name"
|
@@ -664,12 +879,13 @@ en:
|
|
664
879
|
meta_description: "Description"
|
665
880
|
meta_keywords: "Keywords"
|
666
881
|
name: "Name"
|
667
|
-
page_layout: "
|
882
|
+
page_layout: "Page type"
|
668
883
|
public: "public"
|
669
884
|
restricted: "restricted"
|
670
885
|
robot_follow: "robot may follow links"
|
671
886
|
robot_index: "allow robot to index"
|
672
887
|
sitemap: "visible in sitemap"
|
888
|
+
tag_list: Tags
|
673
889
|
title: "Title"
|
674
890
|
updated_at: "Updated at"
|
675
891
|
urlname: "Urlname"
|
@@ -682,9 +898,14 @@ en:
|
|
682
898
|
image_file_dimensions: "Dimensions"
|
683
899
|
image_file_size: "Filesize"
|
684
900
|
name: "Name"
|
901
|
+
tag_list: Tags
|
685
902
|
|
686
903
|
alchemy/site:
|
687
|
-
|
904
|
+
name: "Name"
|
905
|
+
host: "Primary Host"
|
906
|
+
public: "Public"
|
907
|
+
aliases: "Domain-Aliases"
|
908
|
+
redirect_to_primary_host: "Redirect to primary Host"
|
688
909
|
|
689
910
|
errors:
|
690
911
|
<<: *errors
|