goldencobra 1.4.0 → 1.4.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. data/README.markdown +3 -2
  2. data/app/assets/images/goldencobra/Jcrop.gif +0 -0
  3. data/app/assets/javascripts/goldencobra/active_admin.js +145 -84
  4. data/app/assets/javascripts/goldencobra/jquery.Jcrop.min.js +22 -0
  5. data/app/assets/javascripts/goldencobra/jquery.color.js +661 -0
  6. data/app/assets/stylesheets/goldencobra/active_admin.css.scss +375 -252
  7. data/app/assets/stylesheets/goldencobra/{application.css → application.css.scss} +0 -0
  8. data/app/assets/stylesheets/goldencobra/ikusei_active_admin.scss +35 -26
  9. data/app/assets/stylesheets/goldencobra/jquery.Jcrop.min.css +29 -0
  10. data/app/controllers/goldencobra/api/v2/articles_controller.rb +221 -0
  11. data/app/controllers/goldencobra/api/v2/locales_controller.rb +31 -0
  12. data/app/controllers/goldencobra/api/v2/settings_controller.rb +31 -0
  13. data/app/controllers/goldencobra/articles_controller.rb +42 -16
  14. data/app/controllers/goldencobra/sessions_controller.rb +8 -1
  15. data/app/helpers/goldencobra/application_helper.rb +3 -1
  16. data/app/helpers/goldencobra/articles_helper.rb +14 -8
  17. data/app/middleware/goldencobra/handle_invalid_percent_encoding.rb +40 -0
  18. data/app/models/ability.rb +43 -48
  19. data/app/models/goldencobra/article.rb +292 -218
  20. data/app/models/goldencobra/article_author.rb +19 -0
  21. data/app/models/goldencobra/article_image.rb +2 -0
  22. data/app/models/goldencobra/articletype.rb +30 -28
  23. data/app/models/goldencobra/author.rb +5 -3
  24. data/app/models/goldencobra/domain.rb +2 -0
  25. data/app/models/goldencobra/import.rb +2 -2
  26. data/app/models/goldencobra/link_checker.rb +64 -0
  27. data/app/models/goldencobra/menue.rb +4 -2
  28. data/app/models/goldencobra/permission.rb +3 -1
  29. data/app/models/goldencobra/redirector.rb +131 -0
  30. data/app/models/goldencobra/setting.rb +29 -3
  31. data/app/models/goldencobra/upload.rb +60 -1
  32. data/app/models/goldencobra/url_builder.rb +58 -0
  33. data/app/models/goldencobra/vita.rb +4 -0
  34. data/app/models/goldencobra/widget.rb +10 -0
  35. data/app/models/user.rb +1 -1
  36. data/app/views/goldencobra/admin/articles/_article_type.html.erb +1 -1
  37. data/app/views/goldencobra/admin/articles/_articles_index.html.erb +3 -3
  38. data/app/views/goldencobra/admin/articles/_image_module_sidebar.html.erb +19 -7
  39. data/app/views/goldencobra/admin/articles/_layout_sidebar.html.erb +2 -2
  40. data/app/views/goldencobra/admin/articles/_link_checker.html.erb +4 -4
  41. data/app/views/goldencobra/admin/articles/_link_checker_index.html.erb +1 -1
  42. data/app/views/goldencobra/admin/articles/_select_article_type.html.erb +8 -8
  43. data/app/views/goldencobra/admin/articles/_sort_articles_index.html.erb +1 -1
  44. data/app/views/goldencobra/admin/articles/_widgets_sidebar.html.erb +2 -2
  45. data/app/views/goldencobra/admin/articles/toggle_expert_mode.js.erb +2 -2
  46. data/app/views/goldencobra/admin/settings/_index.html.erb +14 -0
  47. data/app/views/goldencobra/admin/settings/_key_value.html.erb +12 -0
  48. data/app/views/goldencobra/admin/settings/_settings_group.html.erb +14 -0
  49. data/app/views/goldencobra/admin/shared/_help.html.erb +12 -10
  50. data/app/views/goldencobra/admin/shared/_item.html.erb +4 -4
  51. data/app/views/goldencobra/admin/shared/_overview.html.erb +14 -4
  52. data/app/views/goldencobra/admin/shared/load_overviewtree.js.erb +6 -0
  53. data/app/views/goldencobra/admin/uploads/_jcrop.html.erb +23 -0
  54. data/app/views/goldencobra/articles/_edit_article_link.html.erb +1 -1
  55. data/app/views/goldencobra/articles/show.rss.builder +5 -0
  56. data/app/views/goldencobra/articles/sitemap.xml.builder +15 -1
  57. data/app/views/goldencobra/manage/_admin_article_management.html.erb +1 -1
  58. data/app/views/goldencobra/manage/_admin_article_management_content.html.erb +4 -4
  59. data/app/views/goldencobra/manage/render_admin_menue.html.erb +1 -0
  60. data/app/views/goldencobra/manage/render_admin_menue.js.erb +0 -1
  61. data/app/views/goldencobra/sessions/_login.html.erb +4 -4
  62. data/app/views/goldencobra/sessions/_register.html.erb +6 -6
  63. data/app/views/layouts/goldencobra/active_admin_resque.html.erb +1 -1
  64. data/app/worker/articles_cache_worker.rb +1 -1
  65. data/config/initializers/check_for_missing_articletypes.rb +40 -37
  66. data/config/initializers/devise.rb +3 -1
  67. data/config/initializers/http_validator.rb +9 -2
  68. data/config/initializers/liquid_tags.rb +2 -2
  69. data/config/locales/active_admin.de.yml +509 -3
  70. data/config/locales/active_admin.en.yml +580 -64
  71. data/config/locales/de.yml +478 -4
  72. data/config/locales/en.yml +406 -10
  73. data/config/pre-commit.rb +3 -0
  74. data/config/routes.rb +12 -1
  75. data/config/settings.yml +51 -50
  76. data/db/migrate/20130114154115_add_sorter_to_goldencobra_permissions.rb +4 -1
  77. data/db/migrate/20140204221345_add_operator_to_goldencobra_permissions.rb +5 -0
  78. data/db/migrate/20140411152728_add_creator_id_to_goldencobra_articles.rb +5 -0
  79. data/db/migrate/20140505144517_add_taggingcounter.rb +15 -0
  80. data/db/migrate/20140603084537_add_domain_to_goldencobra_permissions.rb +7 -0
  81. data/db/migrate/20140615200342_resize_link_checkfield.rb +13 -0
  82. data/db/migrate/20140626135753_add_externalreferee_to_goldencobra_articles.rb +6 -0
  83. data/db/migrate/20140702103024_add_externaldate_to_goldencobra_articles.rb +5 -0
  84. data/db/migrate/20140702105550_add_remoteurl_to_goldencobra_uploads.rb +5 -0
  85. data/db/migrate/20140702142818_add_image_gallery_type_to_goldencobra_articles.rb +5 -0
  86. data/db/migrate/20140819101033_add_urlpath_to_goldencobra_articles.rb +5 -0
  87. data/db/migrate/20141009104216_set_db_and_tables_to_utf8.rb +20 -0
  88. data/db/migrate/20141104115144_create_goldencobra_redirectors.rb +15 -0
  89. data/db/migrate/20141112124531_add_globalsorting_to_goldencobra_articles.rb +7 -0
  90. data/db/migrate/20141124170930_add_indiex_to_gc.rb +26 -0
  91. data/db/migrate/20150115111024_create_goldencobra_article_authors.rb +28 -0
  92. data/db/migrate/20150115134707_add_remove_author_stuff.rb +11 -0
  93. data/db/migrate/20150417153454_add_status_to_goldencobra_vita_steps.rb +5 -0
  94. data/db/seeds.rb +4 -153
  95. data/lib/generators/goldencobra/articletype/templates/edit_index.html.erb +1 -1
  96. data/lib/generators/goldencobra/articletype/templates/initializer.rb +4 -2
  97. data/lib/generators/goldencobra/install_generator.rb +3 -0
  98. data/lib/generators/goldencobra/server_generator.rb +67 -0
  99. data/lib/generators/goldencobra/templates/active_admin.rb.erb +3 -0
  100. data/lib/generators/goldencobra/templates/robots.txt +5 -0
  101. data/lib/generators/goldencobra/templates/views/articletypes/default/_edit_index.html.erb +9 -0
  102. data/lib/generators/goldencobra/templates/views/articletypes/default/_edit_show.html.erb +0 -0
  103. data/lib/generators/goldencobra/templates/views/articletypes/default/_index.html.erb +31 -18
  104. data/lib/generators/goldencobra/templates/views/articletypes/default/_show.html.erb +22 -15
  105. data/lib/goldencobra/engine.rb +19 -3
  106. data/lib/goldencobra/version.rb +1 -1
  107. data/lib/tasks/article_cache.rake +19 -0
  108. data/lib/tasks/i18n.rake +1 -1
  109. data/lib/tasks/import.rake +31 -3
  110. data/lib/tasks/link_checker.rake +4 -2
  111. metadata +217 -23
  112. data/config/locales/activerecord.de.yml +0 -227
  113. data/config/locales/activerecord.en.yml +0 -148
  114. data/config/locales/devise.de.yml +0 -54
  115. data/config/locales/devise.en.yml +0 -57
  116. data/config/locales/formtastic.de.yml +0 -10
  117. data/config/locales/formtastic.en.yml +0 -10
  118. data/config/locales/goldencobra.de.yml +0 -40
  119. data/config/locales/goldencobra.en.yml +0 -3
@@ -1,105 +1,621 @@
1
1
  en:
2
2
  goldencobra:
3
3
  flash_notice:
4
- name_of_flashnotice: "Do you REALLY want make this Article as Startpage?"
5
- action_Startpage: "Make this article Startpage"
6
- startpage: "This Article is the Startpage!"
4
+ name_of_flashnotice: "Do you REALLY want make this article as startpage?"
5
+ action_Startpage: "Make this article startpage"
6
+ startpage: "This article is the startpage!"
7
7
  online: "Change the visibility of the article?"
8
- delete_article: "Realy want to delete this Article?"
8
+ delete_article: "Realy want to delete this article?"
9
9
  filter:
10
- filter_titel: "title"
11
- filter_subtitel: "subtitle"
12
- filter_breadcrumb: "breadcrumb"
13
- filter_url: "url"
14
- filter_template: "template file"
15
- filter_created: "creted at"
16
- filter_updated: "updated at"
17
- filter_parent: "parent"
18
- filter_type: "article type"
10
+ filter_titel: "Title"
11
+ filter_subtitel: "Subtitle"
12
+ filter_breadcrumb: "Breadcrumb title"
13
+ filter_url: "Website address"
14
+ filter_template: "Layout"
15
+ filter_created: "Created at"
16
+ filter_updated: "Edited at"
17
+ filter_parent: "Parent element"
18
+ filter_type: "Article type"
19
19
  menue:
20
- menue: "Menue"
21
- name: "name"
20
+ menue: "Menu"
21
+ name: "Name"
22
22
  list: "list"
23
23
  create: "create"
24
+ manage:
25
+ admin_article_management_content:
26
+ link1: "logout"
27
+ link1_text: "Article edit in Backend"
28
+ link2: "Set Article offline"
29
+ confirm2: "Set Page offline?"
30
+ link3: "Set Article offline"
31
+ confirm3: "Set page online?"
32
+ sessions:
33
+ login:
34
+ link1: "logout"
35
+ label_email: "E-Mail Address"
36
+ label_password: "Password"
37
+ submit: "Login"
38
+ register:
39
+ label_email: "E-Mail Address *"
40
+ label_username: 'Username *'
41
+ label_password: 'Password *'
42
+ label_pass_confirmation: 'Password confirmation *'
43
+ div: "I accept AGB & Privacy Policy *"
44
+ submit: "Sign-up"
24
45
  active_admin:
25
- menue:
26
- settings: "Settings"
27
- dashboard: Dashboard
46
+ redirector:
47
+ as: "Redirections"
48
+ dashboard: "Dashboard"
28
49
  dashboard_welcome:
29
- welcome: "Welcome to Active Admin. This is the default dashboard page."
30
- call_to_action: "To add dashboard sections, checkout 'app/admin/dashboards.rb'"
31
- view: "View"
50
+ welcome: "Welcome to Active Admin. This is the standard dashboard page."
51
+ call_to_action: "See 'app/admin/dashboards.rb' to add new dashboard elements."
52
+ view: "Show"
53
+ devise:
54
+ login:
55
+ title: " -- administration"
56
+ remember_me: "Remember me"
57
+ links:
58
+ sign_up: "Sign up"
59
+ forgot_your_password: "Forgot password?"
60
+ resend_unlock_instructions: "Send email with unlock instructions"
32
61
  edit: "Edit"
33
62
  delete: "Delete"
34
- delete_confirmation: "Are you sure you want to delete this?"
63
+ delete_confirmation: "Do you really want to delete this element?"
35
64
  new_model: "New %{model}"
36
- create_model: "New %{model}"
65
+ create_model: "Create %{model}"
37
66
  edit_model: "Edit %{model}"
38
- update_model: "Edit %{model}"
39
67
  delete_model: "Delete %{model}"
40
- details: "%{model} Details"
68
+ update_model: "Update %{model}"
69
+ details: "%{model} details"
41
70
  cancel: "Cancel"
42
71
  empty: "Empty"
43
- previous: "Previous"
72
+ previous: "Back"
44
73
  next: "Next"
45
74
  download: "Download:"
46
- has_many_new: "Add New %{model}"
75
+ has_many_new: "Add %{model}"
47
76
  has_many_delete: "Delete"
48
77
  filter: "Filter"
49
- clear_filters: "Clear Filters"
78
+ clear_filters: "Remove filter"
50
79
  search_field: "Search %{field}"
51
- equal_to: "Equal To"
52
- greater_than: "Greater Than"
53
- less_than: "Less Than"
54
- main_content: "Please implement %{model}#main_content to display content."
80
+ equal_to: "Equal to"
81
+ greater_than: "Greater than"
82
+ less_than: "Less than"
83
+ main_content: "Please, implement %{model}#main_content for content view."
55
84
  logout: "Logout"
56
85
  sidebars:
57
- submit_widget: "Save Widgets"
58
- submit_layout: "allocate Layout"
59
- widgets_options: "Widget Options"
86
+ submit_widget: "Save selection"
87
+ submit_layout: "Submit layout"
88
+ widgets_options: "Widget options"
89
+ startpage_options: "Startpage options"
90
+ filters: "Filter"
91
+ layout: "Article type & layout"
92
+ image_module: "Image galery"
93
+ image_formates: "Image formats"
60
94
  overview: "Overview"
61
- startpage_options: "Startpage Options"
62
- layout: "Layout"
63
- image_formates: "Image Formates"
64
- image_module: "Image Module"
65
- filters: "Filters"
66
- per_page: "Items per page"
95
+ menue_options: "Menu options"
96
+ link_checker: "Links confirmation"
97
+ per_page: "Entries per page"
67
98
  pagination:
68
99
  empty: "No %{model} found"
69
- one: "Displaying <b>1</b> %{model}"
70
- one_page: "Displaying <b>all %{n}</b> %{model}"
71
- multiple: "Displaying %{model} <b>%{from}&nbsp;-&nbsp;%{to}</b> of <b>%{total}</b> in total"
100
+ one: "Show <b>1</b> %{model}"
101
+ one_page: "Show <b>all %{n}</b> %{model}"
102
+ multiple: "Show %{model} <b>%{from}&nbsp;–&nbsp;%{to}</b> from <b>%{total}</b>"
72
103
  entry:
73
- one: "entry"
74
- other: "entries"
75
- any: "Any"
104
+ one: "Entry"
105
+ other: "Entries"
106
+ any: "All"
76
107
  blank_slate:
77
108
  content: "There are no %{resource_name} yet."
78
- link: "Create one"
109
+ link: "Create"
79
110
  batch_actions:
80
- button_label: "Batch Actions"
81
- delete_confirmation: "Are you sure you want to delete these %{plural_model}? You won't be able to undo this."
82
- succesfully_destroyed:
83
- one: "Successfully destroyed 1 %{model}"
84
- other: "Successfully destroyed %{count} %{plural_model}"
85
- selection_toggle_explanation: "(Toggle Selection)"
86
- link: "Create one"
87
- action_label: "%{title} Selected"
88
111
  labels:
89
- set_article_online: "Artikel online stellen"
90
- set_article_offline: "Artikel offline stellen"
91
- reset_cache: "reset cache"
92
- send_default_conf_mails: "Send confirmation mails"
112
+ set_article_online: "Set article online"
113
+ set_article_offline: "Set article offline"
114
+ set_menue_offline: "Set menu online"
115
+ set_menue_online: "Set menu offline"
116
+ reset_cache: "Clear cache"
117
+ send_default_conf_mails: "Send confirmation emails"
93
118
  destroy: "Delete"
119
+ button_label: "Edit batch"
120
+ delete_confirmation: "Are you sure you want to delete those %{plural_model}? Undo option not available."
121
+ succesfully_destroyed:
122
+ one: "1 %{model} was successfully deleted"
123
+ other: "%{count} %{plural_model} was successfully deleted"
124
+ selection_toggle_explanation: "(reverse selection)"
125
+ link: "Create one"
94
126
  comments:
95
- body: "Body"
127
+ as: "Comments"
128
+ title: "Edit"
129
+ title0: "Delete"
130
+ show: "Show"
131
+ delete_comment: "Delete comment?"
132
+ body: "Content"
96
133
  author: "Author"
97
134
  title: "Comment"
98
- add: "Add Comment"
99
135
  resource: "Resource"
136
+ add: "Add a Comment"
100
137
  no_comments_yet: "No comments yet."
101
138
  title_content: "Comments (%{count})"
102
139
  errors:
103
- empty_text: "Comment wasn't saved, text was empty."
140
+ empty_text: "Comment was not saved. Missing text"
141
+ settings:
142
+ as: "Website settings"
143
+ scope: "All website settings"
144
+ action_item:
145
+ link: "Undo"
146
+ form:
147
+ general: "General"
148
+ notice:
149
+ undid_event: "Undid"
104
150
  articles:
105
- tag-select-placeholder: "Select tag"
151
+ as: "Article"
152
+ parent: "Content-Management"
153
+ tag-select-placeholder: "Select a tag"
154
+ filter:
155
+ default1: "Parent element"
156
+ default2: "Article type"
157
+ default3: "Title"
158
+ default4: "Filter criteria"
159
+ default5: "Internal tags"
160
+ default6: "Website"
161
+ default7: "Created"
162
+ default8: "Edited"
163
+ scope1: "All"
164
+ scope2: "Online"
165
+ scope3: "Offline"
166
+ form:
167
+ general: "General"
168
+ title_label: "Title"
169
+ label_hint: "Blank spaces and special characters can be used for title or heading for the article/site."
170
+ content_label: "Main Text-Field"
171
+ teaser_hint: "This text is used for short describtion of the article and can also be used for Facebook and Google."
172
+ tag_list_label: "List of internal tags"
173
+ tag_list_hint: "Tags are keywords, separated by comma, with which article is categorized."
174
+ frontent_tag_list_label: "Filter criteria"
175
+ frontent_tag_list_hint: "Entries will be used as filtering options on overview pages."
176
+ active_label: "Active?"
177
+ active_hint: "Should this article stay active in the system and visible online?"
178
+ weiterer_inhalt: "Next content"
179
+ subtitle_label: "Subtitle"
180
+ context_info_hint: "This text is created for the sidebar."
181
+ summary_label: "Summary"
182
+ summary_hint: "Creates highlited summarized introduction of the main text"
183
+ metadescriptions: "Meta descriptions"
184
+ name_label: "Art"
185
+ name_hint: "Different meta tags and create OpenGraph settings can be defined."
186
+ value_label: "Value"
187
+ destroy_label: "Remove/set back"
188
+ destroy_hint: "Values will be removed or set back to default."
189
+ settings: "Settings"
190
+ breadcrump_label: "Breadcrumb title"
191
+ breadcrump_hint: "Short title for breadcrumb navigation"
192
+ url_name_label: "Website address for the article"
193
+ url_name_hint: "Can not contain more than 64 characters, no special or blank characters are accepted. If the page should be reachable under 'http://my-site.com/my-article', enter 'my-article'."
194
+ parent_id_label: "Parent article"
195
+ parent_id_hint: "Selection of the article that should be _above_ this article in the site structure. Example: http://www.my-site.com/above-article/my-article"
196
+ canonical_url_label: "Canonical url"
197
+ canonical_url_hint: "If content of this page has been published on another page, the url to that page should be entered to avoid Googles punishment for duplicated content."
198
+ active_since_label: "Active since"
199
+ active_since_hint: "Article active since i.e. example 24.10.2011 15:35"
200
+ enable_social_sharing_label: "show social sharing actions"
201
+ enable_social_sharing_hint: "Should visitors see links, which enables them to share this article in their social network?"
202
+ robots_no_index_label: "Article shouldn't be found through search engines."
203
+ robots_no_index_hint: "To avoid competition with other important pages on your own website, Google may here be told not to index this page"
204
+ cacheable_label: "Cacheable article"
205
+ cacheable_hint: "This article is allowed to be in cache"
206
+ commentable_label: "Commentable article"
207
+ commentable_hint: "Activate commenting function for this article?"
208
+ dynamic_redirection_label: "Automatic forwarding"
209
+ external_url_redirect_label: "Forwarding to exernal url"
210
+ redirect_link_title_label: "Name of external links"
211
+ redirection_target_in_new_window_label: "Forwarding open in the new window?"
212
+ author_label: "Author"
213
+ author_hint: "Who is the author of these articles?"
214
+ access_rights: "Access rights"
215
+ role: "All"
216
+ media: "Media"
217
+ JS_scripts: "JS-Scripts"
218
+ views:
219
+ article_type:
220
+ input: "test"
221
+ image_module_sidebar:
222
+ h5: "Insert photo gallery"
223
+ p: "All images that are provided with the following tags should be displayed"
224
+ placeholder: "Choose tags"
225
+ type_p: "Choose display style on website"
226
+ tag1: "Photo"
227
+ tag2: "Photos"
228
+ submit: "Choose photos"
229
+ layout_sidebar:
230
+ h5: "Article-Pagetype:"
231
+ submit: "Assign an article type"
232
+ link_checker:
233
+ h5: "Here you can check the functionality of all the links in this article."
234
+ h4: "All the links are ok!"
235
+ status: "Status: "
236
+ link: "Check links now"
237
+ link_checker_index:
238
+ link1: "Edit"
239
+ link2: "now"
240
+ select_article_type:
241
+ label_type: "Article type"
242
+ label_title: "Title"
243
+ hint_title: "Title/headline of the article/page can contain spaces and/or special characters"
244
+ label_short: "Shorter Title"
245
+ hint_short: "In URL for breadcrumb trail and for meta title of the page only 70 characters are allowed"
246
+ label_text: "Main text field"
247
+ hint_text: "The main text box will be used for the content of the entire page"
248
+ hint_teaser: "Text offers short describtion of the article. The description can also be used for Google & Facebook."
249
+ label_tags: "List of internal tags"
250
+ hint_tags: "Tags are values, separated by a comma, with which article is groupped internally"
251
+ label_filter: "Filter criteria"
252
+ hint_filter: "Here registered terms are offered on overview pages as filter options"
253
+ sort_articles_index:
254
+ inputs: "Manually sorting index"
255
+ toggle_expert_mode:
256
+ text1: "Expert-Modus deaktivieren"
257
+ text2: "Expert-Modus aktivieren"
258
+ widgets_sidebar:
259
+ h5: "The following widgets are displayed in addition to the standard widgets"
260
+ position: "Position: "
261
+ index:
262
+ website_title: "Website title"
263
+ website_url: "Website address"
264
+ active: "Active?"
265
+ article_type: "Article type"
266
+ permission: "Permission"
267
+ default: "Default"
268
+ restricted: "<span class='secured'>shortened</span>"
269
+ list_menu: "List menu items"
270
+ create_menu: "Create menu item for the article"
271
+ article_preview: "Preview if the article"
272
+ article_edit: "Edit article"
273
+ create_subarticle: "Create new sub article"
274
+ delete_article: "Delete article"
275
+ views:
276
+ inputs: "Overview Options"
277
+ label1: "Index of articles in the directory"
278
+ hint1: "All Articles beneath this Article are listed, except for this Article."
279
+ label2: "Pages"
280
+ hint2: "Which Pages should be displayed in the Overview?"
281
+ sidebar:
282
+ h5: "Menu items for this article already exist."
283
+ seo_link: "SEO view"
284
+ new_sub_article: "create subarticle"
285
+ div_link: "You can list them here"
286
+ div_link1: "create additional menu item"
287
+ h5_1: "Menu items for this article don't exist yet."
288
+ div_link2: "Create matching menu item"
289
+ h5_achtung: "ATTENTION!!! There"
290
+ h5_achtung2: "are other articles"
291
+ h5_achtung3: "is another article"
292
+ h5_achtung4: "with this url:"
293
+ member_action:
294
+ flash:
295
+ article_online: "This article is now online."
296
+ article_offline: "This article is now offline."
297
+ widgets: "Widgets added"
298
+ link_checker: "Links for this article will be inspected. This can take couple of minutes. Thank you for your patience."
299
+ batch_action:
300
+ cache: "Are you sure you want to clear the cache?"
301
+ flash:
302
+ cache: "Cache has been cleared."
303
+ set_article_online: "Article has been set online."
304
+ set_article_offline: "Article has been set offline."
305
+ confirm_online: "Are you sure you want to set article online?"
306
+ confirm_offline: "Are you sure you want to set article offline?"
307
+ action_item:
308
+ link_to:
309
+ article_preview: "Show article preview"
310
+ expert_modus: "Expert mode"
311
+ deactivate: "deactivate"
312
+ activate: "activate"
313
+ import: "Import"
314
+ undo: "Undo"
315
+ dashboards:
316
+ article_section: "Newest article"
317
+ title1: "Preview article"
318
+ title2: "Edit article"
319
+ title3: "Create new sub article"
320
+ widget_section: "Newest widget"
321
+ vita_steps: "Vita Step Errors"
322
+ title4: "Edit widget"
323
+ new_link: "Create new article"
324
+ domains:
325
+ form:
326
+ hint: "This domain has been set as main domain. All canonical urls use this prefix"
327
+ imports:
328
+ link_to:
329
+ start_import: "Start import"
330
+ edit: "Edit"
331
+ delete: "Delete"
332
+ allocation: "Allocation"
333
+ edit_import: "Edit import"
334
+ title:
335
+ start_import: "Start import"
336
+ edit: "Edit"
337
+ delete: "Delete"
338
+ form:
339
+ select_file: "Choose data"
340
+ upload: "Upload"
341
+ csv_file: "Csv data"
342
+ hint: "Currently chosen data:"
343
+ flash:
344
+ member_action:
345
+ run: "Import has started."
346
+ linkcheck_articles:
347
+ link_to:
348
+ run: "Run link checker"
349
+ menues:
350
+ as: "Menus"
351
+ parent: "Content-Management"
352
+ active: "Active"
353
+ inactive: "Inactive"
354
+ labels:
355
+ title: "Target"
356
+ target: "Target"
357
+ css_class: "Css classes"
358
+ sorter: "Sorting number"
359
+ form:
360
+ generals:
361
+ general: "General"
362
+ title: "Title"
363
+ title_hint: "Title of menu items, visible on the website."
364
+ target: "Target"
365
+ target_hint: "Where should the menu items lead? If item should lead to 'http://my-site.com/my-article', then enter 'my-article'. No special special characters or blank spaces allowed."
366
+ parent_id: "Parent menu item"
367
+ parent_id_hint: "Under which menu should current item appear?"
368
+ options:
369
+ class: "foldable closed inputs"
370
+ option: "Options"
371
+ sorter_label: "Sorting number"
372
+ sorter_hint: "Menues will be sorted after this number - the higher, the further down the view"
373
+ checkbox_label: "Shown?"
374
+ checkbox_hint: "Should this menu item be visible on the page?"
375
+ css_class_label: "Css classes"
376
+ css_class_hint: "Style classes for the menu item separated by spaces - special feature: 'hidden' makes the menu item invisible"
377
+ active_label: "Active?"
378
+ active_hint: "Should this menu item stay active in the system and visible online?"
379
+ remote_label: "Remote?"
380
+ remote_hint: "Should this menu item be sent through Ajax?"
381
+ access:
382
+ access_rights: "Access rights"
383
+ include_blank: "All"
384
+ details: "Details for extended menu"
385
+ image_label: "Photo"
386
+ image_hint: "Choose from uploaded photos in media List"
387
+ details_description_title: "Title"
388
+ details_decription_label: "Description"
389
+ details_description_call_to_action: "Call-to-action text"
390
+ index:
391
+ column: "Title"
392
+ title: "Edit menu item"
393
+ column1: "Target"
394
+ column2: "Active?"
395
+ column3: "Sort"
396
+ column4: "Access"
397
+ column5: "Article"
398
+ search_link: "search"
399
+ search_class: "list"
400
+ search_title: "List article"
401
+ search_link1: "create one"
402
+ search_class1: "create"
403
+ search_title1: "Generate article, matching menu item."
404
+ column:
405
+ edit: "Edit"
406
+ edit_title: "Edit menu item"
407
+ submenu: "New submenu"
408
+ submenu_class1: "New sub article"
409
+ submenu_title: "Create new sub menu item"
410
+ delete: "Delete"
411
+ delete_confirm: "Really delete menu items?"
412
+ delete_title: "Delete menue items"
413
+ sidebar:
414
+ link_name: "title"
415
+ url_path: "menu"
416
+ order_by: "title"
417
+ batch_action:
418
+ confirm: "Are you sure, you want to set menu items offline"
419
+ flash: "Menu items have been set offline"
420
+ confirm1: "Are you sure, you want to set menu items online"
421
+ flash1: "Menu items have been set online"
422
+ confirm_clone: "Replicate this menu?"
423
+ title_clone: "Replicated from:"
424
+ flash_clone: "Menu will be replicated"
425
+ member_action:
426
+ notice: "Undo:"
427
+ action_item:
428
+ link_to: "undo"
429
+ permissions:
430
+ as: "Permissions"
431
+ scope: "All"
432
+ index:
433
+ column: "Role"
434
+ title_edit: "edit"
435
+ confirm: "Delete comment?"
436
+ title_delete: "delete"
437
+ form:
438
+ include_blank: "All"
439
+ sidebar:
440
+ sidebar: "Sorting / weighting"
441
+ sidebar_info: "the higher the number, the more important is the access right: <b>10 is more important than 1</b>. <br/> If not defined, the role gets by default all the rights in this model"
442
+ roles:
443
+ as: "Roles"
444
+ seo_articles:
445
+ as: "SEO-Article"
446
+ scope1: "All"
447
+ scope2: "online"
448
+ scope3: "offline"
449
+ scope4: "no title tags"
450
+ scope5: "no Meta description"
451
+ index:
452
+ title_column: "Title"
453
+ tag_column: "Title tag"
454
+ meta_column: "Meta description"
455
+ search_column: "Search engines closed"
456
+ search_column_yes: "Yes"
457
+ search_column_no: "No"
458
+ links_column: "Links"
459
+ active_online: "online"
460
+ active_offline: "offline"
461
+ column:
462
+ title1: "Preview"
463
+ title2: "edit"
464
+ title3: "New subarticle"
465
+ title4: "delete"
466
+ collection_flash: "Checking all Links. This can last a few minutes."
467
+ action_link: "Link checker index"
468
+ action_link1: "Run link checker"
469
+ supports:
470
+ label: "Live support"
471
+ panel: "Support inquiry"
472
+ h3: "Instructions"
473
+ para1: "Here is how you require help: ..."
474
+ para_raw: "Request help!"
475
+ para2: "This service is supported by https://togetherjs.com"
476
+ translations:
477
+ as: "Translations"
478
+ all: "All"
479
+ general: "General"
480
+ uploads:
481
+ as: "Uploads/Media"
482
+ file: "File"
483
+ file_hint: "Upload a new picture for this resource, if the file name is the same!"
484
+ file_url_hint: "or a url to download an image"
485
+ content_type_hint: "e.g.: image/png, image/jpg, image/jpeg, application/pdf, application/octet-stream, ..."
486
+ preview: "Preview"
487
+ photo: "Photo Cut"
488
+ photo_hint: "Make a selection in the preview image above before saving"
489
+ data: "Data Name"
490
+ general: "General"
491
+ general_hint: "Tags are keywords, separated by comma, with which article is described."
492
+ general_label: "Tag list"
493
+ js: "JS-Scripts"
494
+ url: "url"
495
+ preview1: "preview"
496
+ tags: "Tags"
497
+ zip: "zip"
498
+ pack: "unpack"
499
+ title1: "Preview"
500
+ title2: "edit"
501
+ title3: "delete"
502
+ preview_row: "Preview"
503
+ original_row: "original"
504
+ format_original: "original => AxB>"
505
+ format_large: "large => 900x900>"
506
+ format_big: "big => 600x600>"
507
+ format_medium: "medium => 300x300>"
508
+ format_px250: "px250 => 250x250>"
509
+ format_px200: "px200 => 200x200>"
510
+ format_px150: "px150 => 150x150>"
511
+ format_thumb: "thumb => 100x100>"
512
+ format_mini: "mini => 50x50>"
513
+ unzip_notice: "File unzipped"
514
+ users:
515
+ as: "Users"
516
+ general: "General"
517
+ hint1: "Leave empty if password will not be changed."
518
+ hint2: "If Password has been changed, type it again."
519
+ history: "History"
520
+ label1: "Entry"
521
+ label2: "Editor"
522
+ hint3: "Enter your name here, so that the action can be assigned."
523
+ user: "User"
524
+ visitors:
525
+ status: "Status"
526
+ status1: "unlocked"
527
+ general: "General"
528
+ hint1: "Leave empty if password will not be changed."
529
+ hint2: "If password has been changed, type it again."
530
+ hint3: "Article id of runner/blogger"
531
+ status2: "closed"
532
+ flash: "This account has been"
533
+ yes_check: "yes"
534
+ no_check: "no"
535
+ widget:
536
+ as: "Widgets"
537
+ parent: "Content-Management"
538
+ title: "Title"
539
+ css_class: "Css class"
540
+ id: "ID Name"
541
+ sorter: "Sorting number"
542
+ scope1: "All"
543
+ scope2: "Active"
544
+ scope3: "Not active"
545
+ scope4: "Standards"
546
+ general: "General"
547
+ label1: "Title"
548
+ label2: "Position"
549
+ label3: "Active?"
550
+ label4: "Standard?"
551
+ hint1: "Name of the widget"
552
+ hint2: "Name the title of the position in the page layout"
553
+ hint3: "Should this widget stay active in the System and visible online?"
554
+ hint4: "Confirm, if you want the widget to be shown on ever page"
555
+ layout_web: "Layout - website"
556
+ label_web: "Main text field"
557
+ hint_web: "Widget content for webpage, possible also in HTML"
558
+ layout_mobile: "Layout - mobile"
559
+ label_mobile: "Mobile text field"
560
+ hint_mobile: "Alternative widget content for mobile pages, possible also in HTML"
561
+ info: "Extended information"
562
+ label_info1: "Sorting number"
563
+ label_hint1: "After this number is sorted, the higher, the further down the view"
564
+ label_info2: "Css classes"
565
+ label_hint2: "Style classes for the menu item separated by spaces - special feature: 'hidden' makes the menu item invisible"
566
+ label_info3: "Id name"
567
+ label_hint3: "Unique identifier of this element within the site"
568
+ label_info4: "Description"
569
+ label_hint4: "Internal description of the widget"
570
+ time: "Time regulation"
571
+ time_label1: "Time regulated?"
572
+ time_label2: "Starting date"
573
+ time_label3: "Ending date"
574
+ time_label4: "Days, when alternative content should be shown"
575
+ time_hint1: 'Should this widget be visible differently on different days/hours?'
576
+ time_hint2: "From this date will Widget every Mon, Tue, ... be shown from xx:xx until xx:xx each day... If you leave date field empty, the time settings will apply to all chosen days."
577
+ time_hint3: "Until this date will Widget every Mon, Tue, ... be shown from xx:xx until xx:xx each day... If you leave date field empty, the time settings will apply to all chosen days."
578
+ access_rights: "Access rights"
579
+ article: "Assigned article"
580
+ article_label: "Article"
581
+ article_hint: "Selection of all the articles where widget is present."
582
+ article_placeholder: "Please select"
583
+ title: "Title"
584
+ title1: "Edit widget"
585
+ position: "Position"
586
+ active: "Active?"
587
+ online: "online"
588
+ offline: "offline"
589
+ sorternr: "Sorting number"
590
+ standard: "Default?"
591
+ css_classes: "Css classes"
592
+ yes: "Yes"
593
+ no: "No"
594
+ access: "Access"
595
+ title_widget_edit: "Edit widget"
596
+ title_widget_delete: "Delete widget"
597
+ widget: "Widget"
598
+ articles: "Articles"
599
+ revert_notice: "Undid"
600
+ undo: "Undo"
601
+ duplicate: "Create duplicate"
602
+ success_duplicating_notice: "Widget successfully duplicated"
603
+ error_duplicating_notice: "Sorry. There was an error while duplicating. Couldn't duplicate widget."
604
+ articletypes:
605
+ as: "Article types"
606
+ general: "General"
607
+ article_fields: "Article fields"
608
+ position_hint: "Field options of article type between first and last block"
609
+ foldable_hint: "Is this part foldable?"
610
+ closed_hint: "Is this part closed on load?"
611
+ expert_hint: "Is this part only visible in expert mode?"
612
+ sorter_hint: "Sort number/position"
613
+ authors:
614
+ as: "Authors"
615
+ shared:
616
+ views:
617
+ item:
618
+ link1: "edit"
619
+ title1: "Edit"
620
+ link2: "new"
621
+ title2: "New"