adva 0.1.4 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (251) hide show
  1. checksums.yaml +4 -4
  2. data/adva.gemspec +3 -0
  3. data/app/assets/config/manifest.js +6 -0
  4. data/app/assets/javascripts/adva_cms/ckeditor.js.erb +12 -0
  5. data/app/assets/javascripts/adva_cms/concat_main_menus.js +13 -0
  6. data/app/assets/javascripts/adva_cms/jquery.table_tree.js +704 -0
  7. data/app/assets/javascripts/adva_cms.js +7 -0
  8. data/app/assets/javascripts/ckeditor/config.js.erb +94 -0
  9. data/app/assets/stylesheets/adva_cms/admin/common.scss +15 -1
  10. data/app/assets/stylesheets/adva_cms/admin/projection.scss +2 -5
  11. data/app/assets/stylesheets/adva_cms/admin/sidebar.scss +30 -9
  12. data/app/assets/stylesheets/adva_cms/admin.scss +1 -1
  13. data/app/controllers/admin/base_controller.rb +10 -24
  14. data/app/controllers/admin/page/articles_controller.rb +8 -27
  15. data/app/controllers/admin/page/categories_controller.rb +6 -9
  16. data/app/controllers/admin/page/links_controller.rb +6 -9
  17. data/app/controllers/admin/sections_controller.rb +7 -9
  18. data/app/controllers/admin/sites_controller.rb +9 -12
  19. data/app/controllers/admin/users_controller.rb +6 -9
  20. data/app/controllers/articles_controller.rb +30 -52
  21. data/app/controllers/base_controller.rb +8 -8
  22. data/app/controllers/password_controller.rb +3 -5
  23. data/app/controllers/session_controller.rb +3 -5
  24. data/app/helpers/activities_helper.rb +9 -20
  25. data/app/helpers/admin/base_helper.rb +4 -22
  26. data/app/helpers/base_helper.rb +1 -1
  27. data/app/helpers/content_helper.rb +7 -5
  28. data/app/helpers/resource_helper.rb +4 -5
  29. data/app/helpers/users_helper.rb +1 -1
  30. data/app/models/activity.rb +3 -0
  31. data/app/models/article.rb +0 -11
  32. data/app/models/category.rb +3 -3
  33. data/app/models/content.rb +10 -39
  34. data/app/models/link.rb +0 -1
  35. data/app/models/password_mailer.rb +6 -9
  36. data/app/models/section.rb +6 -7
  37. data/app/models/site.rb +0 -2
  38. data/app/models/user.rb +1 -2
  39. data/app/views/activity_notifier/new_content_notification.html.erb +5 -5
  40. data/app/views/admin/activities/_activities.html.erb +4 -4
  41. data/app/views/admin/activities/_comment.html.erb +21 -21
  42. data/app/views/admin/activities/_content.html.erb +4 -3
  43. data/app/views/admin/activities/_topic.html.erb +5 -5
  44. data/app/views/admin/install/confirmation.html.erb +3 -3
  45. data/app/views/admin/install/index.html.erb +14 -14
  46. data/app/views/admin/page/articles/_form.html.erb +28 -25
  47. data/app/views/admin/page/articles/_options.html.erb +3 -4
  48. data/app/views/admin/page/articles/edit.html.erb +3 -3
  49. data/app/views/admin/page/articles/new.html.erb +4 -4
  50. data/app/views/admin/page/categories/edit.html.erb +9 -9
  51. data/app/views/admin/page/categories/index.html.erb +16 -16
  52. data/app/views/admin/page/categories/new.html.erb +5 -3
  53. data/app/views/admin/page/contents/index.html.erb +3 -18
  54. data/app/views/admin/page/links/_form.html.erb +17 -17
  55. data/app/views/admin/page/links/_options.html.erb +16 -19
  56. data/app/views/admin/page/links/edit.html.erb +3 -3
  57. data/app/views/admin/page/links/new.html.erb +3 -3
  58. data/app/views/admin/sections/_form.html.haml +5 -5
  59. data/app/views/admin/sections/edit.html.haml +2 -2
  60. data/app/views/admin/sections/index.html.erb +18 -18
  61. data/app/views/admin/sections/new.html.erb +15 -13
  62. data/app/views/admin/sections/settings/_page.html.haml +4 -6
  63. data/app/views/admin/shared/_header.html.erb +5 -4
  64. data/app/views/admin/shared/_section_tree.html.erb +2 -2
  65. data/app/views/admin/sites/_email_notifications.html.erb +6 -7
  66. data/app/views/admin/sites/_form.html.erb +7 -7
  67. data/app/views/admin/sites/_recent_users.html.erb +4 -2
  68. data/app/views/admin/sites/_unapproved_comments.html.erb +1 -1
  69. data/app/views/admin/sites/index.html.erb +1 -1
  70. data/app/views/admin/sites/new.html.erb +2 -2
  71. data/app/views/admin/sites/show.html.erb +7 -8
  72. data/app/views/admin/users/edit.html.erb +1 -1
  73. data/app/views/admin/users/index.html.erb +10 -10
  74. data/app/views/admin/users/new.html.erb +1 -1
  75. data/app/views/admin/users/show.html.erb +7 -7
  76. data/app/views/layouts/admin.html.haml +3 -5
  77. data/app/views/layouts/login.html.erb +1 -1
  78. data/app/views/password/edit.html.erb +12 -5
  79. data/app/views/password/new.html.erb +7 -7
  80. data/app/views/password_mailer/reset_password_email.html.erb +21 -1
  81. data/app/views/password_mailer/updated_password_email.html.erb +3 -1
  82. data/app/views/session/new.html.erb +9 -9
  83. data/app/views/shared/_flash.html.erb +2 -2
  84. data/app/views/shared/_sidebar.html.erb +2 -2
  85. data/config/initializers/ckeditor.rb +61 -0
  86. data/config/initializers/time_format.rb +2 -0
  87. data/lib/adva/authenticate_user.rb +193 -0
  88. data/lib/{active_record → adva}/belongs_to_author.rb +4 -4
  89. data/lib/adva/event.rb +34 -0
  90. data/lib/adva/extensible_forms.rb +285 -0
  91. data/lib/{has_options.rb → adva/has_options.rb} +5 -7
  92. data/lib/adva/has_permalink.rb +36 -0
  93. data/lib/adva/version.rb +1 -1
  94. data/lib/adva.rb +10 -36
  95. data/lib/rails_ext/action_controller/event_helper.rb +1 -1
  96. data/lib/rails_ext.rb +0 -9
  97. data/vendor/gems/cacheable_flash/.gitignore +8 -0
  98. data/vendor/gems/cacheable_flash/Gemfile +8 -0
  99. data/vendor/gems/cacheable_flash/README.md +35 -0
  100. data/vendor/gems/cacheable_flash/Rakefile +4 -0
  101. data/vendor/gems/cacheable_flash/bin/console +15 -0
  102. data/vendor/gems/cacheable_flash/bin/setup +8 -0
  103. data/vendor/gems/cacheable_flash/cacheable_flash.gemspec +38 -0
  104. data/vendor/gems/cacheable_flash/lib/cacheable_flash/controller.rb +29 -0
  105. data/vendor/gems/cacheable_flash/lib/cacheable_flash/javascript.js +19 -0
  106. data/vendor/gems/cacheable_flash/lib/cacheable_flash/middleware.rb +30 -0
  107. data/vendor/gems/cacheable_flash/lib/cacheable_flash/version.rb +5 -0
  108. data/vendor/gems/cacheable_flash/lib/cacheable_flash.rb +12 -0
  109. data/vendor/gems/simple_taggable/lib/tag_list.rb +1 -1
  110. data/vendor/gems/tags/lib/menu.rb +1 -1
  111. data/vendor/gems/tags/lib/tags/tag.rb +1 -1
  112. metadata +71 -144
  113. data/app/assets/javascripts/adva_cms/admin/jquery.admin.js +0 -23
  114. data/app/assets/javascripts/adva_cms/admin/jquery.article.js +0 -22
  115. data/app/assets/javascripts/adva_cms/admin/jquery.cached_pages.js +0 -14
  116. data/app/assets/javascripts/adva_cms/admin/jquery.table_tree.js +0 -7
  117. data/app/assets/javascripts/adva_cms/application.js +0 -13
  118. data/app/assets/javascripts/adva_cms/base.js +0 -4
  119. data/app/assets/javascripts/adva_cms/cookie.js +0 -49
  120. data/app/assets/javascripts/adva_cms/jquery/jquery-lowpro.js +0 -224
  121. data/app/assets/javascripts/adva_cms/jquery/jquery.qtip.js +0 -2085
  122. data/app/assets/javascripts/adva_cms/jquery/jquery.table_tree.js +0 -307
  123. data/app/assets/javascripts/adva_cms/jquery/jquery.tablednd_0_5.js +0 -386
  124. data/app/assets/javascripts/adva_cms/jquery.common.js +0 -41
  125. data/app/assets/javascripts/adva_cms/jquery.dates.js +0 -51
  126. data/app/assets/javascripts/adva_cms/jquery.flash.js +0 -59
  127. data/app/assets/javascripts/adva_cms/jquery.roles.js +0 -25
  128. data/app/assets/javascripts/adva_cms/json.js +0 -139
  129. data/app/controllers/admin/base_account_controller.rb +0 -13
  130. data/app/controllers/admin/install_controller.rb +0 -61
  131. data/app/controllers/admin/plugins_controller.rb +0 -38
  132. data/app/helpers/meta_tags_helper.rb +0 -30
  133. data/app/models/account.rb +0 -7
  134. data/app/models/event.rb +0 -34
  135. data/app/views/admin/articles/_meta_tags.html.erb +0 -7
  136. data/app/views/admin/cached_pages/_filter.html.erb +0 -8
  137. data/app/views/admin/cached_pages/destroy.js.erb +0 -18
  138. data/app/views/admin/cached_pages/index.html.erb +0 -26
  139. data/app/views/admin/plugins/_form.html.erb +0 -11
  140. data/app/views/admin/plugins/index.html.erb +0 -16
  141. data/app/views/admin/plugins/show.html.erb +0 -43
  142. data/app/views/admin/shared/_language_select.html.erb +0 -6
  143. data/app/views/admin/shared/_section_summary.html.erb +0 -23
  144. data/app/views/admin/sites/_meta_tags.html.erb +0 -15
  145. data/app/views/layouts/default.html.erb +0 -38
  146. data/app/views/layouts/simple.html.erb +0 -22
  147. data/app/views/shared/_footer.html.erb +0 -4
  148. data/app/views/shared/messages/insufficient_permissions.html.erb +0 -4
  149. data/config/initializers/article.rb +0 -8
  150. data/config/initializers/has_options.rb +0 -2
  151. data/config/initializers/has_permalink.rb +0 -2
  152. data/config/initializers/site.rb +0 -8
  153. data/config/locales/en.yml +0 -1319
  154. data/lib/action_controller/authenticate_anonymous.rb +0 -69
  155. data/lib/action_controller/authenticate_user.rb +0 -203
  156. data/lib/core_ext.rb +0 -7
  157. data/lib/extensible_forms.rb +0 -284
  158. data/lib/has_permalink.rb +0 -33
  159. data/lib/login/helper_integration.rb +0 -11
  160. data/lib/login/mail_config.rb +0 -39
  161. data/lib/rails_ext/action_controller/cacheable_flash.rb +0 -30
  162. data/lib/rails_ext/action_controller/content_for_assignments.rb +0 -106
  163. data/lib/rails_ext/action_controller/page_caching.rb +0 -23
  164. data/lib/rails_ext/action_controller/responds_to_parent.rb +0 -46
  165. data/lib/rails_ext/active_record/exists.rb +0 -5
  166. data/lib/rails_ext/active_record/sti_instantiation.rb +0 -35
  167. data/lib/rails_ext/active_record/sticky_changes.rb +0 -30
  168. data/lib/rails_ext/railties/plugin.rb +0 -58
  169. data/lib/rails_ext/railties/plugin_configuration.rb +0 -72
  170. data/lib/registry.rb +0 -49
  171. data/lib/tasks/translation.rake +0 -69
  172. data/lib/time_hacks.rb +0 -57
  173. data/lib/webrat_patch.rb +0 -11
  174. data/test/meta_tags_test.rb +0 -42
  175. data/vendor/gems/has_counter/.gitignore +0 -17
  176. data/vendor/gems/has_counter/Gemfile +0 -4
  177. data/vendor/gems/has_counter/LICENSE +0 -22
  178. data/vendor/gems/has_counter/MIT-LICENSE +0 -20
  179. data/vendor/gems/has_counter/README.markdown +0 -64
  180. data/vendor/gems/has_counter/README.md +0 -29
  181. data/vendor/gems/has_counter/Rakefile +0 -2
  182. data/vendor/gems/has_counter/db/migrate/20080601194338_create_counters_table.rb.rb +0 -13
  183. data/vendor/gems/has_counter/has_counter.gemspec +0 -17
  184. data/vendor/gems/has_counter/lib/active_record/has_counter.rb +0 -67
  185. data/vendor/gems/has_counter/lib/counter.rb +0 -23
  186. data/vendor/gems/has_counter/lib/has_counter/version.rb +0 -3
  187. data/vendor/gems/has_counter/lib/has_counter.rb +0 -4
  188. data/vendor/gems/has_counter/spec/has_counter.sqlite3.db +0 -0
  189. data/vendor/gems/has_counter/spec/has_counter_spec.rb +0 -55
  190. data/vendor/gems/has_counter/spec/spec_helper.rb +0 -117
  191. data/vendor/gems/has_filter/.gitignore +0 -17
  192. data/vendor/gems/has_filter/Gemfile +0 -4
  193. data/vendor/gems/has_filter/LICENSE +0 -22
  194. data/vendor/gems/has_filter/README.md +0 -29
  195. data/vendor/gems/has_filter/Rakefile +0 -2
  196. data/vendor/gems/has_filter/app/assets/images/has_filter/filter_add.png +0 -0
  197. data/vendor/gems/has_filter/app/assets/images/has_filter/filter_button_left.png +0 -0
  198. data/vendor/gems/has_filter/app/assets/images/has_filter/filter_button_right.png +0 -0
  199. data/vendor/gems/has_filter/app/assets/images/has_filter/filter_remove.png +0 -0
  200. data/vendor/gems/has_filter/app/assets/javascripts/has_filter/filter.js +0 -35
  201. data/vendor/gems/has_filter/app/assets/javascripts/has_filter/jquery.filter.js +0 -23
  202. data/vendor/gems/has_filter/app/assets/stylesheets/has_filter/alternate/filter.scss +0 -102
  203. data/vendor/gems/has_filter/app/assets/stylesheets/has_filter/filter.scss +0 -100
  204. data/vendor/gems/has_filter/app/helpers/filter_helper.rb +0 -3
  205. data/vendor/gems/has_filter/has_filter.gemspec +0 -17
  206. data/vendor/gems/has_filter/init.rb +0 -3
  207. data/vendor/gems/has_filter/lib/has_filter/active_record/act_macro.rb +0 -102
  208. data/vendor/gems/has_filter/lib/has_filter/filter/base.rb +0 -67
  209. data/vendor/gems/has_filter/lib/has_filter/filter/categorized.rb +0 -24
  210. data/vendor/gems/has_filter/lib/has_filter/filter/chain.rb +0 -45
  211. data/vendor/gems/has_filter/lib/has_filter/filter/set.rb +0 -80
  212. data/vendor/gems/has_filter/lib/has_filter/filter/state.rb +0 -25
  213. data/vendor/gems/has_filter/lib/has_filter/filter/tagged.rb +0 -22
  214. data/vendor/gems/has_filter/lib/has_filter/filter/text.rb +0 -55
  215. data/vendor/gems/has_filter/lib/has_filter/filter.rb +0 -17
  216. data/vendor/gems/has_filter/lib/has_filter/version.rb +0 -3
  217. data/vendor/gems/has_filter/lib/has_filter.rb +0 -22
  218. data/vendor/gems/has_filter/test/db/setup.rb +0 -45
  219. data/vendor/gems/has_filter/test/db/test.sqlite3.db +0 -0
  220. data/vendor/gems/has_filter/test/fixtures.rb +0 -15
  221. data/vendor/gems/has_filter/test/has_filter/filter_chain_test.rb +0 -41
  222. data/vendor/gems/has_filter/test/has_filter/filter_scopes_test.rb +0 -102
  223. data/vendor/gems/has_filter/test/has_filter/filter_tags_test.rb +0 -113
  224. data/vendor/gems/has_filter/test/has_filter/integration.rb +0 -15
  225. data/vendor/gems/has_filter/test/has_filter/scopes_test.rb +0 -48
  226. data/vendor/gems/has_filter/test/log/test.log +0 -34346
  227. data/vendor/gems/has_filter/test/models.rb +0 -23
  228. data/vendor/gems/has_filter/test/templates/has_filter/test/index.html.erb +0 -5
  229. data/vendor/gems/has_filter/test/test_helper.rb +0 -66
  230. data/vendor/gems/xss_terminate/.gitignore +0 -17
  231. data/vendor/gems/xss_terminate/Gemfile +0 -4
  232. data/vendor/gems/xss_terminate/LICENSE +0 -22
  233. data/vendor/gems/xss_terminate/MIT-LICENSE +0 -20
  234. data/vendor/gems/xss_terminate/README +0 -94
  235. data/vendor/gems/xss_terminate/README.md +0 -29
  236. data/vendor/gems/xss_terminate/Rakefile +0 -23
  237. data/vendor/gems/xss_terminate/lib/html5lib_sanitize.rb +0 -2453
  238. data/vendor/gems/xss_terminate/lib/rails_sanitize.rb +0 -8
  239. data/vendor/gems/xss_terminate/lib/xss_terminate/version.rb +0 -3
  240. data/vendor/gems/xss_terminate/lib/xss_terminate.rb +0 -141
  241. data/vendor/gems/xss_terminate/tasks/xss_terminate_tasks.rake +0 -7
  242. data/vendor/gems/xss_terminate/test/models/comment.rb +0 -5
  243. data/vendor/gems/xss_terminate/test/models/entry.rb +0 -7
  244. data/vendor/gems/xss_terminate/test/models/message.rb +0 -3
  245. data/vendor/gems/xss_terminate/test/models/person.rb +0 -5
  246. data/vendor/gems/xss_terminate/test/models/review.rb +0 -5
  247. data/vendor/gems/xss_terminate/test/schema.rb +0 -34
  248. data/vendor/gems/xss_terminate/test/setup_test.rb +0 -16
  249. data/vendor/gems/xss_terminate/test/xss_terminate_test.rb +0 -50
  250. data/vendor/gems/xss_terminate/xss_terminate.gemspec +0 -17
  251. /data/lib/tasks/{adva_cms.rake → adva.rake} +0 -0
@@ -1,1319 +0,0 @@
1
- en:
2
- i18n:
3
- transliterate:
4
- rule:
5
- a: a
6
- activemodel:
7
- errors:
8
- models:
9
- contact:
10
- blank: can't be empty
11
- activerecord:
12
- errors:
13
- messages:
14
- only_integer: can only be whole number.
15
- models:
16
- comment:
17
- blank: can't be empty
18
- invalid: is invalid
19
- attributes:
20
- author: Author
21
- author_name: Author name
22
- author_email: Author email
23
- body: Body
24
- first_name: First name
25
- last_name: Last name
26
- phone: Phone
27
- email: Email
28
- adva:
29
- common:
30
- locale: Locale
31
- content_locale: Content locale
32
- about: About
33
- details: Details
34
- by_author: by %{author}
35
- cancel: Cancel
36
- edit: Edit
37
- delete: Delete
38
- hide: Hide
39
- save: Save
40
- save_without_revision: Save without Revision
41
- import: Import
42
- upload: Upload
43
- import: Import
44
- subscribe: Subscribe
45
- approve: Approve
46
- unapprove: Unapprove
47
- language: Language
48
- none: none
49
- next: Next
50
- previous: Previous
51
- events: Events
52
- you: You
53
- connector:
54
- or: or
55
- "yes": "yes"
56
- by_author: by %{author}
57
- content_categories: "in %{links}<br />"
58
- content_tags: "tagged: %{links}<br />"
59
- unknown: unknown
60
- add: Add
61
- add_new: add new
62
- titles:
63
- accounts: Accounts
64
- actions: Actions
65
- activate: Activate
66
- archives: Archives
67
- articles: Articles
68
- contents: Contents
69
- assets: Assets
70
- author: Author
71
- board: Board
72
- boards: Boards
73
- cache: Cache
74
- calendar_events: Events
75
- categories: Categories
76
- clear: Clear
77
- clear_all: Clear all
78
- comment: Comment
79
- comments: Comments
80
- contact_mails: Contact mails
81
- dashboard: Dashboard
82
- deactivate: Deactivate
83
- download: Download
84
- email_notifications: Email notifications
85
- events: Events
86
- files: Files
87
- filter: Filter
88
- filters: Filters
89
- general_settings: General settings
90
- history: History
91
- import: Import
92
- install: adva-cms installation
93
- issues: Issues
94
- login: Login
95
- logout: Logout
96
- register: Register
97
- manage: Manage
98
- meta_tags: Meta tags
99
- new: New
100
- new_article: New article
101
- new_link: New link
102
- new_quick_search: New quick search
103
- edit: Edit
104
- delete: Delete
105
- home_section: Home section
106
- newsletters: Newsletters
107
- options: Options
108
- overview: Overview
109
- parent_settings: Parent setting
110
- pending: Pending
111
- permalink: Permalink
112
- permissions: Permissions
113
- photos: Photos
114
- plugin: Plugin
115
- plugins: Plugins
116
- posts: Posts
117
- preview: Preview
118
- publish_in_categories: Publish in these categories
119
- published: Published
120
- quick_search: Quick Search
121
- quick_searches: Quick Searches
122
- recently_logged_in: Recently logged in
123
- restore_defaults: Restore Defaults
124
- roles: Roles
125
- sections: Sections
126
- sets: Sets
127
- settings: Settings
128
- show: Show
129
- site: Site
130
- sites: Sites
131
- spam_filters: Spam filters
132
- spam_protection: Spam protection
133
- subscriptions: Subscriptions
134
- success: Success!
135
- tags: Tags
136
- templates: Templates
137
- theme: Theme
138
- themes: Themes
139
- topic: Topic
140
- topics: Topics
141
- tracking: Tracking
142
- upload: Upload
143
- users: Users
144
- view: View
145
- website: Website
146
- website_configuration: Website configuration
147
- wikipages: Pages
148
- admin_account: Admin account
149
- links:
150
- back: Back
151
- create_one_now: Create one now. &raquo;
152
- delete: Delete
153
- edit: Edit
154
- view: View
155
- next: next
156
- previous: previous
157
- login: Log In
158
- logout: Logout
159
- profile: Profile
160
- reorder: Reorder
161
- sites_overview: Sites overview
162
- skip_to_content: Skip to Content
163
- skip_to_navigation: Skip to Navigation
164
- superusers_admins: Superusers + Admins
165
- entries_feed: Entries feed
166
- comments_feed: Comments feed
167
- labels:
168
- author_name: Name
169
- author_email: E-Mail
170
- body: Body
171
- filters: Filters
172
- email: E-mail
173
- subject: Subject
174
- submit: Submit
175
- hints:
176
- tags: Enter one or more tags separated by a space. You may include spaces by enclosing a tag with quotes. (For example, <em>"Web Dev" Tutorials</em>).
177
- content_translations: Click to change the translation to edit. To add another translation, use the locales option in the menu on the right.
178
- locale: Choose what region or language your article should be formatted for.
179
- filter: How is your content written? If you used the graphical text editor, use the default Plain HTML option. Otherwise, choose your markup languange.
180
- meta_keywords: Enter a few words separated by commas to describe your content. Meta keywords make it easier for search engines to find your page.
181
- meta_description: Enter a short description of this page so a search engine can tell users what they can find here.
182
- template: Enter the location (like “Templates/*”) of the template that articles in this section should use. If you're unsure, leave this field blank.
183
- layout: Enter the location (like “Layouts/*”) of the layout that articles in this section should use. If you're unsure, leave this field blank.
184
- akismet: Askimet is a third-party service to filter spam. If you've signed up for the service, enter your API Key and URL and check the box to enable this service.
185
- defensio: Defensio is a third-party service to filter spam. If you've signed up for the service, enter your API Key and URL and check the box to enable this service.
186
- roles: Choose which areas this user can access on the site.
187
- categories: "Avoid names countaining only 4 or 2 digits!"
188
- sets: "Avoid names countaining only 4 or 2 digits!"
189
- messages:
190
- insufficient_permissions:
191
- title: Insufficient permissions
192
- body: If you think you should be allowed to perform this action please contact the admin of this site and ask him to reconfigure your permissions.
193
- not_editable: "Sorry, but it's not editable!"
194
- resources:
195
- links:
196
- view: View
197
- show: Show
198
- new: New
199
- edit: Edit
200
- delete: Delete
201
- reorder: Reorder
202
- reordering_done: Done reordering
203
- confirm_delete: "Are you sure you want to delete this item?"
204
- activity:
205
- from_to: "%{from} - %{to}"
206
- types:
207
- article: Article
208
- action_names:
209
- created: created
210
- published: published
211
- revised: revised
212
- titles:
213
- today: Today %{date}
214
- yesterday: Yesterday %{date}
215
- past: Before %{date}
216
- none: Nothing happened
217
- notifier:
218
- new: New %{activity} posted
219
- view:
220
- new: "%{name} <%{email}> just posted a new %{activity} on %{site} in section %{section}."
221
- comment: Comment %{actions}
222
- topic: Topic %{actions}
223
- actions: "%{type} %{actions} in %{activity}."
224
- state:
225
- draft: Draft
226
- published: Published
227
- hold: On hold
228
- queued: Queued
229
- delivered: Delivered
230
- sites:
231
- email_notification_activated: "Activate Email notifcations"
232
- title:
233
- create: Create a new site
234
- hints:
235
- host_name: Include the port if it's a non-standard one. E.g. localhost:3000
236
- admin_email: Shown in emails sent from your site
237
- email_notification: "If email notifications are activated, an email is sent to administrators every time content is created or updated. No emails are sent if notifications are deactivated."
238
- attributes:
239
- name: Name
240
- host: Host
241
- install:
242
- success_fully_created: You have successfully created your site. Enjoy!
243
- welcome_to_installation: "Welcome to adva-cms' less-than-one-minute installation process. Just fill in the information below and you're done."
244
- can_always_change_settings: Don't worry. You can always change these settings later.
245
- section_default: Home
246
- no_sites: You currently do not have any sites created.
247
- no_users: Site does not have any users.
248
- links:
249
- index: Sites
250
- new: New
251
- edit: Settings
252
- show: Show
253
- delete: Delete
254
- create_site_and_account: "Create site & account \xC2\xBB"
255
- manage_new: Manage your new site &raquo;
256
- flash:
257
- destroy:
258
- success: The site has been deleted.
259
- failure: The site could not be deleted
260
- install:
261
- error_already_complete: Installation is already complete. Please log in with your admin account.
262
- success: Congratulations! You have successfully set up your site.
263
- failure: "The following models could not be created: %{models}."
264
- create:
265
- success: The site has been created.
266
- failure: The site could not be created
267
- update:
268
- success: The site has been updated.
269
- failure: The site could not be updated
270
- label:
271
- name: Website name
272
- title: Website title
273
- timezone: Website Timezone
274
- admin_email: Administrator email
275
- subtitle: Website subtitle
276
- host: Host name
277
- confirm_delete: Are you sure you want to delete this site?
278
- meta_tags:
279
- hints:
280
- meta_geourl_link: http://geourl.org/
281
- meta_geourl: "See %{meta_geourl_link} for details."
282
- sections:
283
- hints:
284
- content_filter: How should your articles be read? The default option is Plain HTML.
285
- sections: "Listed here are all the sections currently on your site. Whichever section is on top is the default homepage."
286
- reorder: "You can use the reorder option to set your home root to different section and to reorder your sections. If you want to nest your sections you can drag the section to the right and its gets set as a child of the upper section. Finish the reordering by clicking the reorder button. Please note that this option is only available when you have 2 or more sections."
287
- parent_setting: Choosing a parent for your section will nest this section under the chosen parent. Leave empty if you want to create this section as a root section.
288
- parent_setting_for_edit: "You can use the reorder button on the index page of sections to nest and reorder your sections, you can find further instructions for this on the index page help hints."
289
- permalink: "You can use normal letters and special letters like scandinavian letters but avoid special characters like $%&!"
290
- publish: "Uncheck this if you don't want this section published."
291
- titles:
292
- page_settings: Page specific settings
293
- blog_settings: Blog specific settings
294
- forum_settings: Forum specific settings
295
- create: Create a new section
296
- behaviour: Behaviour
297
- publish: Publish option
298
- links:
299
- save_and_create_new: Save and create another section
300
- index: Sections
301
- new: Create a new section
302
- show: Show
303
- edit: Settings
304
- delete: Delete
305
- add_section: Add a section
306
- reorder: Reorder sections
307
- create: Create a new section
308
- settings:
309
- single_article_mode: Single article per page
310
- multi_article_mode: Multiple articles per page
311
- confirm_delete: Are you sure you want to delete this section?
312
- flash:
313
- destroy:
314
- success: The section has been deleted.
315
- failure: The section could not be deleted.
316
- create:
317
- success: The section has been created.
318
- failure: The section could not be created.
319
- update:
320
- success: The section has been updated.
321
- failure: The section could not be updated.
322
- total_with_count:
323
- one: "Total: %{count} section"
324
- other: "Total: %{count} sections"
325
- blog:
326
- titles:
327
- date: "from %{date}"
328
- about: "about %{category}"
329
- tags: "tagged %{tags}"
330
- articles: "Articles %{articles}"
331
- show_articles: "Show articles:"
332
- manage: Manage
333
- actions: Actions
334
- links:
335
- articles: Articles
336
- categories: Categories
337
- settings: Settings
338
- create_article: Create a new article
339
- create_article_now: "Create one now &raquo;"
340
- more: Read the rest of this entry
341
- options:
342
- filter:
343
- category: in category
344
- tags: tagged with
345
- title: whose title contains
346
- body: whose body contains
347
- draft: not published
348
- tabs:
349
- article: Article
350
- comments: Comments
351
- published: Published
352
- author: Author
353
- feeds:
354
- category: Category %{category}
355
- tags:
356
- one: "Tag: %{tags}"
357
- other: "Tags: %{tags}"
358
- no_articles: "There are no articles in %{section}."
359
- no_filtered_articles: "There are no articles matching that criteria."
360
- attribution: "by: %{author}"
361
- categories:
362
- columns:
363
- title: Title
364
- category: Category
365
- attributes:
366
- name: name
367
- hints:
368
- reorder: "You can use the reorder option to reorder your categories. If you want to nest your categories you can drag the category to the right and its gets set as a child of the upper category. Finish the reordering by clicking the reorder button. Please note that this option is only available when you have 2 or more categories."
369
- parent_setting: "Choosing a parent for your category will nest this category under the chosen parent. Leave empty if you want to create this category as a root category."
370
- parent_setting_for_edit: "You can use the reorder button on the index page of categories to nest and reorder your categories, you can find further instructions for this on the index page help hints."
371
- permalink: "You can use normal letters and special letters like scandinavian letters but avoid special characters like $%&!"
372
- titles:
373
- edit: Edit category
374
- new: Create a new category
375
- no_categories_in_section: There are no categories in %{section}.
376
- total_with_count:
377
- one: "Total: %{count} category"
378
- other: "Total: %{count} categories"
379
- links:
380
- index: Categories
381
- new: New
382
- edit: Edit
383
- delete: Delete
384
- reorder: Reorder categories
385
- create_now: "Create one now &raquo;"
386
- flash:
387
- destroy:
388
- success: The category has been deleted.
389
- failure: The category could not be deleted.
390
- create:
391
- success: The category has been created.
392
- failure: The category could not be created.
393
- update:
394
- success: The category has been updated.
395
- failure: The category could not be updated.
396
- confirm_delete: Are you sure you want to delete this category?
397
- all: "&mdash; All categories &mdash;"
398
- contents:
399
- not_published: not published
400
- articles:
401
- optimistic_lock:
402
- exception:
403
- missing_timestamp: "Can not update article: timestamp missing. Please make sure that your form has a hidden field: updated_at."
404
- count:
405
- one: "%{count} article"
406
- other: "%{count} articles"
407
- published_count: "%{count} published"
408
- draft_count:
409
- one: "%{count} draft"
410
- other: "%{count} drafts"
411
- columns:
412
- type: Type
413
- article: Article
414
- title: Title
415
- comments: Comments
416
- published: Published
417
- author: Author
418
- translation_links: "available translations: %{locales}"
419
- locale_for_record: "Locale for this article: "
420
- write_article: Write your article
421
- question_save_as_draft: Save as Draft?
422
- confirm_save_as_draft: Yes, save this article as a draft
423
- titles:
424
- edit: Edit article
425
- new: New article
426
- total_with_count:
427
- one: "Total: %{count} article"
428
- other: "Total: %{count} articles"
429
- links:
430
- index: Articles
431
- new: New
432
- edit: Edit
433
- show: Show
434
- delete: Delete
435
- preview: Preview
436
- create_now: Create one now
437
- excerpt_add: Add an excerpt
438
- no_articles: "There are no articles in %{section}."
439
- no_filtered_articles: "There are no articles matching that criteria."
440
- publish_on_date: Publish on this date
441
- flash:
442
- optimistic_lock:
443
- failure: In the meantime this article has been updated by someone else. Please resolve any conflicts.
444
- destroy:
445
- success: The article has been deleted.
446
- failure: The article could not be deleted.
447
- rollback:
448
- success: The article has been rolled back to revision %{version}
449
- failure: The article could not be rolled back to revision %{version}
450
- create:
451
- success: The article has been created.
452
- failure: The article could not be created.
453
- update:
454
- success: The article has been updated.
455
- failure: The article could not be updated.
456
- confirm_delete: Are you sure you want to delete this article?
457
- attributes:
458
- excerpt: Excerpt
459
- #Added this -----------------
460
- contents:
461
- optimistic_lock:
462
- exception:
463
- missing_timestamp: "Can not update content: timestamp missing. Please make sure that your form has a hidden field: updated_at."
464
- count:
465
- one: "%{count} content"
466
- other: "%{count} contents"
467
- published_count: "%{count} published"
468
- draft_count:
469
- one: "%{count} draft"
470
- other: "%{count} drafts"
471
- columns:
472
- address: Address
473
- content: Link
474
- comments: Comments
475
- published: Published
476
- author: Author
477
- translation_contents: "available translations: %{locales}"
478
- locale_for_record: "Locale for this content: "
479
- write_content: Enter the content address
480
- question_save_as_draft: Save as Draft?
481
- confirm_save_as_draft: Yes, save this content as a draft
482
- titles:
483
- edit: Edit content
484
- new: New content
485
- total_with_count:
486
- one: "Total: %{count} content"
487
- other: "Total: %{count} contents"
488
- links:
489
- index: Contents
490
- new: New
491
- edit: Edit
492
- show: Show
493
- delete: Delete
494
- preview: Preview
495
- create_now: Create one now
496
- no_contents: "There are no contents in %{section}."
497
- no_filtered_contents: "There are no contents matching that criteria."
498
- publish_on_date: Publish on this date
499
- flash:
500
- optimistic_lock:
501
- failure: In the meantime this content has been updated by someone else. Please resolve any conflicts.
502
- destroy:
503
- success: The content has been deleted.
504
- failure: The content could not be deleted.
505
- rollback:
506
- success: The content has been rolled back to revision %{version}
507
- failure: The content could not be rolled back to revision %{version}
508
- create:
509
- success: The content has been created.
510
- failure: The content could not be created.
511
- update:
512
- success: The content has been updated.
513
- failure: The content could not be updated.
514
- confirm_delete: Are you sure you want to delete this content?
515
- quick_searches:
516
- back: Back
517
- create_one_now: Create one now. &raquo;
518
- delete: Delete
519
- edit: Edit
520
- view: View
521
- next: next
522
- previous: previous
523
- login: Log In
524
- logout: Logout
525
- profile: Profile
526
- reorder: Reorder
527
- sites_overview: Sites overview
528
- skip_to_content: Skip to Content
529
- skip_to_navigation: Skip to Navigation
530
- superusers_admins: Superusers + Admins
531
- entries_feed: Entries feed
532
- comments_feed: Comments feed
533
-
534
- optimistic_lock:
535
- exception:
536
- missing_timestamp: "Can not update quick search: timestamp missing. Please make sure that your form has a hidden field: updated_at."
537
- count:
538
- one: "%{count} quick search"
539
- other: "%{count} quick searches"
540
- published_count: "%{count} published"
541
- draft_count:
542
- one: "%{count} draft"
543
- other: "%{count} drafts"
544
- columns:
545
- address: Address
546
- quick_search: Quick search
547
- comments: Comments
548
- published: Published
549
- author: Author
550
- translation_quick_searches: "available translations: %{locales}"
551
- locale_for_record: "Locale for this quick search: "
552
- write_quick_search: Enter the quick search address
553
- question_save_as_draft: Save as Draft?
554
- confirm_save_as_draft: Yes, save this quick search as a draft
555
- titles:
556
- edit: Edit quick search
557
- new: New quick search
558
- total_with_count:
559
- one: "Total: %{count} quick search"
560
- other: "Total: %{count} quick searches"
561
- quick_searches:
562
- index: Quick searches
563
- new: New
564
- edit: Edit
565
- show: Show
566
- delete: Delete
567
- preview: Preview
568
- create_now: Create one now
569
- no_quick_searches: "There are no quick searches in %{section}."
570
- no_filtered_quick_searches: "There are no quick searches matching that criteria."
571
- publish_on_date: Publish on this date
572
- flash:
573
- optimistic_lock:
574
- failure: In the meantime this quick search has been updated by someone else. Please resolve any conflicts.
575
- destroy:
576
- success: The quick search has been deleted.
577
- failure: The quick search could not be deleted.
578
- rollback:
579
- success: The quick search has been rolled back to revision %{version}
580
- failure: The quick search could not be rolled back to revision %{version}
581
- create:
582
- success: The quick search has been created.
583
- failure: The quick search could not be created.
584
- update:
585
- success: The quick search has been updated.
586
- failure: The quick search could not be updated.
587
- confirm_delete: Are you sure you want to delete this quick search?
588
- links:
589
- back: Back
590
- create_one_now: Create one now. &raquo;
591
- delete: Delete
592
- edit: Edit
593
- view: View
594
- next: next
595
- previous: previous
596
- login: Log In
597
- logout: Logout
598
- profile: Profile
599
- reorder: Reorder
600
- sites_overview: Sites overview
601
- skip_to_content: Skip to Content
602
- skip_to_navigation: Skip to Navigation
603
- superusers_admins: Superusers + Admins
604
- entries_feed: Entries feed
605
- comments_feed: Comments feed
606
-
607
- optimistic_lock:
608
- exception:
609
- missing_timestamp: "Can not update link: timestamp missing. Please make sure that your form has a hidden field: updated_at."
610
- count:
611
- one: "%{count} link"
612
- other: "%{count} links"
613
- published_count: "%{count} published"
614
- draft_count:
615
- one: "%{count} draft"
616
- other: "%{count} drafts"
617
- columns:
618
- address: Address
619
- link: Link
620
- comments: Comments
621
- published: Published
622
- author: Author
623
- translation_links: "available translations: %{locales}"
624
- locale_for_record: "Locale for this link: "
625
- write_link: Enter the link address
626
- question_save_as_draft: Save as Draft?
627
- confirm_save_as_draft: Yes, save this link as a draft
628
- titles:
629
- edit: Edit link
630
- new: New link
631
- total_with_count:
632
- one: "Total: %{count} link"
633
- other: "Total: %{count} links"
634
- links:
635
- index: Links
636
- new: New
637
- edit: Edit
638
- show: Show
639
- delete: Delete
640
- preview: Preview
641
- create_now: Create one now
642
- no_links: "There are no links in %{section}."
643
- no_filtered_links: "There are no links matching that criteria."
644
- publish_on_date: Publish on this date
645
- flash:
646
- optimistic_lock:
647
- failure: In the meantime this link has been updated by someone else. Please resolve any conflicts.
648
- destroy:
649
- success: The link has been deleted.
650
- failure: The link could not be deleted.
651
- rollback:
652
- success: The link has been rolled back to revision %{version}
653
- failure: The link could not be rolled back to revision %{version}
654
- create:
655
- success: The link has been created.
656
- failure: The link could not be created.
657
- update:
658
- success: The link has been updated.
659
- failure: The link could not be updated.
660
- confirm_delete: Are you sure you want to delete this link?
661
- cached_pages:
662
- links:
663
- index: Cache
664
- clear_all: Clear all
665
- columns:
666
- url: URL
667
- cached_at: Cached
668
- no_entries: There currently aren't any pages being cached.
669
- confirmation:
670
- cleared: This page has been removed from the cache.
671
- cleared_short: Cleared
672
- filter:
673
- show_cached_pages: Show cached pages
674
- total_with_count:
675
- one: "Total: %{count} cached page"
676
- other: "Total: %{count} cached pages"
677
- no_entries_matching_criteria: There currently aren't any pages being cached that match this criteria.
678
- flash:
679
- clear:
680
- success: The cache has been cleared.
681
- comments:
682
- said_time_ago: said %{time} ago
683
- flash:
684
- thank_you: Thank you for the comment!
685
- create:
686
- success: The comment has been created.
687
- failure: The comment could not be created.
688
- update:
689
- success: The comment has been updated.
690
- failure: The comment could not be updated.
691
- destroy:
692
- success: The comment has been deleted.
693
- failure: The comment could not be deleted.
694
- links:
695
- delete: Delete
696
- edit: Edit
697
- approve: Approve
698
- view: View
699
- unapprove: Unapprove
700
- titles:
701
- comments_awaiting_approval: Comments awaiting your approval
702
- save_comment: Save Comment
703
- comment_on_by: "Comment on '%{on}' by %{by}"
704
- add_reply: Leave your reply
705
- comment_number: "Comment #%{number}"
706
- edit: Edit comment
707
- comments_on: Comments on %{location}
708
- submit_comment: Submit Comment
709
- your_reply: Your reply
710
- comment_with_count:
711
- one: 1 Comment
712
- other: "%{count} Comments"
713
- filter:
714
- show_comments: Show comments
715
- options:
716
- all: All
717
- body: Whose body contains
718
- author_name: Whose author is
719
- author_email: Author's email is
720
- author_url: Author's website is
721
- state: Whose state is
722
- go: Go
723
- state:
724
- options:
725
- approved: Approved
726
- unapproved: Unapproved
727
- options:
728
- expiration:
729
- not_allowed: Are not allowed
730
- never_expire: Never expire
731
- x_hours_after_publishing:
732
- one: Expire 1 hour after publishing
733
- other: Expire %{count} hours after publishing
734
- x_weeks_after_publishing:
735
- one: Expire 1 week after publishing
736
- other: Expire %{count} weeks after publishing
737
- x_months_after_publishing:
738
- one: Expire 1 month after publishing
739
- other: Expire %{count} months after publishing
740
- labels:
741
- "on": "on"
742
- comments: Comments
743
- approved: Approved
744
- hints:
745
- comments_filter: Which markup should be used to read comments? The default is Plain HTML.
746
- confirm_delete: Are you sure you want to delete this comment?
747
- info:
748
- under_review: This comment is currently under review.
749
- messages:
750
- not_allowed: "Comments are not allowed here."
751
- no_comments: There are no comments.
752
- no_filtered_comments: There are no comments matching your query.
753
- signup:
754
- notifications:
755
- email_verification:
756
- subject: Email Verification
757
- body: |
758
- Dear %{name},
759
-
760
- You recently registered for our service. Our service requires
761
- all new users to verify their email address. Simply click the link below and
762
- your username will be verified allowing you to login.
763
-
764
- %{link}
765
- flash:
766
- destroy:
767
- success: The user account %{name} has been deleted.
768
- create:
769
- failure: Your registration could not be saved.
770
- verify:
771
- success: You successfully confirmed your email address.
772
- failure: You have already verified your email address.
773
- passwords:
774
- attributes:
775
- token: Confirmation code
776
- links:
777
- reset: Reset password
778
- info:
779
- please_enter_email_to_reset_password: Please enter your email address. An email will be sent to you which will include a link to reset your password.
780
- please_enter_new_password: Please enter your new password.
781
- please_enter_new_password_and_token: Please enter the confirmation code you received via email and your new password.
782
- titles:
783
- new: Reset your password
784
- edit: Change your password
785
- notifications:
786
- password_updated:
787
- subject: Password Updated
788
- body: |
789
- Dear %{name},
790
-
791
- you have successfully updated your password.
792
- reset_password:
793
- subject: Forgotton Password
794
- body: |
795
- Dear %{name},
796
-
797
- Someone (hopefully you) has indicated that you cannot remember your password.
798
- To let you reset your password we have provided a link below that will allow
799
- you to reset your password.
800
-
801
- %{link}
802
-
803
- Alternatively, if your browser window is still open, you can use the following
804
- confirmation code together with your new password:
805
-
806
- %{token}
807
-
808
- It is suggested you reset your password as soon as possible since this is a
809
- time-limited link (to protect your account).
810
-
811
- If you did not request that your password be changed someone must have
812
- entered your account in the "Forgot password" page on our site. Your account is
813
- still perfectly safe since you were the only person this message was sent to.
814
- Simply delete this message and no changes will be made to your account if this
815
- message was sent in error.
816
- flash:
817
- new:
818
- email_sent: We just sent you a notice. Please check your email.
819
- no_such_user: We could not find a user with the email address you entered.
820
- create:
821
- notification: "If the given email address exists in our system, we have just sent you an email with information on how to reset your password."
822
- update:
823
- success: Your password was changed successfully.
824
- failure: Your password could not be changed.
825
- session:
826
- flash:
827
- destroy:
828
- success: Logged out successfully.
829
- create:
830
- success: Logged in successfully.
831
- failure: Could not login with this email and password.
832
- labels:
833
- remember_me: Remember me
834
- users:
835
- attributes:
836
- new_password: New password
837
- password: Password
838
- email: E-Mail
839
- links:
840
- new: Add a new user
841
- create_user: Create user
842
- edit: Edit
843
- delete: Delete
844
- actions:
845
- delete_user: Delete this user
846
- create_new: Create a new user
847
- titles:
848
- new: New user
849
- edit: Edit user
850
- register: Register a user account
851
- signup: Sign up
852
- your_profile: Your Profile
853
- flash:
854
- not_member_of_this_site: The user you requested is not a member of this site.
855
- destroy:
856
- success: The user account has been deleted.
857
- failure: The user account could not be deleted.
858
- create:
859
- success: The user account has been created.
860
- failure: The user account could not be created.
861
- update:
862
- success: The user account has been updated.
863
- failure: The user account could not be updated.
864
- labels:
865
- updated_at: Last login
866
- url: Homepage
867
- created_at: Created
868
- email: Email
869
- info:
870
- showed_up: "showed up: %{time_ago} ago"
871
- logged_in_as: "Logged in as: %{name}"
872
- confirm_delete: Are you sure you want to delete this user account?
873
- roles:
874
- hints:
875
- superuser: "<strong>A superuser</strong> can do anything on all sites of your account. Only a superuser can create sites for an account."
876
- admin: "<strong>An admin</strong> for site '%{site}' can do anything on this site."
877
- designer: "<strong>A designer</strong> for site '%{site}' can do anything a moderator can do on this site. Above that, a designer can manage themes for this site."
878
- moderator: "<strong>A moderator</strong> for site '%{site}' can do anything an author can do on this site. Above that, a moderator has permissions for managing forums' boards and topics, as well as comments, wikipages and newsletters."
879
- author: "<strong>An author</strong> for site '%{site}' can basically manage all contents for this site, e.g. articles. An author is not allowed to manage themes, comments, forums and newsletters. He is allowed to write newsletter issues for an existing newsletter."
880
- user: "<strong>A live user</strong> for website '%{site}' is at no point allowed to access the admin area of your site. A live user can login on your website and use available feature, e.g. write comments."
881
- labels:
882
- admin_for: "Admin for %{context}"
883
- superuser: Superuser
884
- moderator_for: "Moderator for %{context}"
885
- author_for: "Author for %{context}"
886
- designer_for: "Designer for %{context}"
887
- user_for: "Live User for website %{context}"
888
- errors:
889
- messages:
890
- role_required: "You need one of the following roles to perform this action: %{roles}"
891
- not_admin: You need to be an admin to perform this action.
892
- not_user: You need to be logged in to perform this action.
893
- not_superuser: You need to be a superuser to perform this action.
894
- not_author: You need to be the author of this object to perform this action.
895
- not_moderator: You need to be a moderator to perform this action.
896
-
897
- assets:
898
- links:
899
- new: New asset
900
- flash:
901
- upload:
902
- failure: The asset upload failed.
903
- update:
904
- success: The asset has been updated.
905
- failure: The asset update failed.
906
- delete:
907
- success: "Deleted %{filename}"
908
- failure: The asset update failed.
909
- destroy:
910
- success: "%{asset} detached from this %{content}."
911
- create:
912
- first_success: "'%{asset}' was uploaded."
913
- success:
914
- one: "One asset was uploaded."
915
- other: "%{count} assets were uploaded."
916
- add:
917
- success: "%{asset} added to bucket."
918
- clear:
919
- success: Asset bucket has been cleared.
920
- validation:
921
- duplicate: Cannot have a duplicate assignment for this content and asset
922
- tab:
923
- attached:
924
- title: Attached assets
925
- name: Attached
926
- latest:
927
- title: Latest assets uploaded
928
- name: Latest
929
- bucket:
930
- title: Your asset bucket
931
- name: Bucket
932
- search:
933
- title: Search for assets
934
- name: Search
935
- upload:
936
- title: Upload new assets
937
- name: Upload
938
- audio: Audio
939
- movies: Movies
940
- pictures: Pictures
941
- others: Others
942
- tags: Tags
943
- title: Title
944
- new: New asset
945
- add_to_bucket: Add to bucket
946
- no_files: You do not have any files yet.
947
- no_files_filtered: You do not have any files matching these criteria.
948
- upload: 'Upload one now &raquo;'
949
- enter_tags: 'Enter one or more tags separated by a comma or a space (for example, <em>"Web Dev" Tutorials</em> or <em>Web Dev, Tutorials</em>).'
950
- save: Save Asset
951
- your_bucket: Your bucket
952
- add_files: Add files to your bucket temporarily in order to carry them with you when creating or revising articles.
953
- upload_summary:
954
- one: You have a uploaded <strong>one asset</strong>, using <strong>%{size}</strong>.
955
- other: You have a uploaded a total of <strong>%{count} assets</strong>, using <strong>%{size}</strong>.
956
- stats: Some stats
957
- labels:
958
- upload:
959
- files: Select files to upload
960
- title: Title
961
- tags: Tags
962
- delete: remove this file field
963
- tag_all: Apply tags to all
964
- add_file: Add another file
965
- select_file: Select a file
966
- edit_asset: Edit this asset
967
- delete_asset: Delete this asset
968
- clear_bucket: Clear
969
- upload: Upload an asset
970
- confirm_delete: Are you sure you want to delete this asset?
971
- search_by_tag_or_title: Search by tag or title
972
- empty_bucket: Your bucket is empty.
973
- themes:
974
- no_themes_available: You currently do not have any themes created.
975
- hints:
976
- asset_caching: "When caching your stylesheets/javascripts use either /cache/ folder or filename starting with cache_ word. All the files are recursively destroyed from cache/ folder and all files starting with cache_ are removed, everything else stays unaffected."
977
- lables:
978
- zip_file: Zip file
979
- titles:
980
- new: Create a new theme
981
- edit: "Edit theme: %{theme}"
982
- valid_file_types: Valid file types
983
- import: Import a theme
984
- edit_file: Edit theme file
985
- theme_id: Theme ID
986
- links:
987
- index: Themes
988
- add_another_file: Add another file
989
- new: New
990
- edit: Edit
991
- activate: Activate
992
- deactivate: Deactivate
993
- delete: Delete
994
- create_one_now: Create one now. &raquo;
995
- delete_file: Delete theme file
996
- uninstall: Uninstall
997
- download: Download
998
- upload_file: Upload a new file
999
- import: Import
1000
- create_file: Create a new file
1001
- upload_template_or_asset: Upload a template or an asset.
1002
- labels:
1003
- asssets: Assets
1004
- templates: Templates
1005
- filename: Filename
1006
- confirm_activate: Are you sure you want to activate this theme?
1007
- confirm_deactivate: Are you sure you want to deactivate this theme?
1008
- confirm_delete: Are you sure you want to delete this theme?
1009
- confirm_uninstall: Are you sure you want to uninstall this theme? (You won't be able to recover it.)
1010
- flash:
1011
- destroy:
1012
- success: The theme has been deleted.
1013
- failure: The theme could not be deleted.
1014
- create:
1015
- success: The theme has been created.
1016
- failure: "The theme could not be created: %{errors}."
1017
- update:
1018
- success: The theme has been updated.
1019
- failure: "The theme could not be updated: %{errors}."
1020
- import:
1021
- success: The theme has been imported.
1022
- error_filename_blank: The theme file cannot be blank.
1023
- failure: The file does not have a valid theme file structure.
1024
-
1025
- # yuk!
1026
- theme_templates:
1027
- columns:
1028
- path: Path
1029
- theme_stylesheets:
1030
- columns:
1031
- path: Path
1032
- theme_javascripts:
1033
- columns:
1034
- path: Path
1035
- theme_images:
1036
- columns:
1037
- path: Path
1038
- theme_others:
1039
- columns:
1040
- path: Path
1041
-
1042
- theme_files:
1043
- no_files: You currently do not have any files available.
1044
- remove_file: Remove file
1045
- add_file: Add file
1046
- columns:
1047
- path: Path
1048
- type: Type
1049
- links:
1050
- create_one_now: Create one now. &raquo;
1051
- new_file: New File
1052
- new: New
1053
- edit: Edit
1054
- delete: Delete
1055
- upload: Upload
1056
- confirm_delete: Are you sure you want to delete this file?
1057
- types:
1058
- template: Template
1059
- templates: Templates
1060
- image: Image
1061
- images: Images
1062
- javascript: Javascript
1063
- javascripts: Javascripts
1064
- stylesheet: Stylesheet
1065
- stylesheets: Stylesheets
1066
- preview: Preview
1067
- others: Others
1068
- flash:
1069
- destroy:
1070
- success: The file has been deleted.
1071
- failure: The file could not be deleted.
1072
- create:
1073
- success: The file has been created.
1074
- failure: The file could not be created.
1075
- update:
1076
- success: The file has been updated.
1077
- failure: The file could not be updated.
1078
- titles:
1079
- upload: Upload a theme file
1080
- create: Create theme file
1081
- plugins:
1082
- no_plugins_installed: There currently aren't any plugins installed.
1083
- attributes:
1084
- name: Name
1085
- configurable: Configurable
1086
- author: Author
1087
- version: Version
1088
- homepage: Homepage
1089
- flash:
1090
- destroy:
1091
- success: The default settings have been restored.
1092
- failure: The section could not be deleted.
1093
- update:
1094
- success: The plugin settings have been updated.
1095
- failure: The section could not be created.
1096
- no_config_options_available: This plugin does not have any config options available.
1097
- settings:
1098
- filter_options:
1099
- plain_html: Plain HTML
1100
- forums:
1101
- info:
1102
- total_contents: This forum has total of %{boards} boards, %{topics} topics and %{posts} posts.
1103
- settings:
1104
- post_content_filter: 'When forum posts are posted, they use this as a default setting.'
1105
- boards:
1106
- columns:
1107
- title: Title
1108
- description: Description
1109
- topics_count: Topics count
1110
- posts_count: Posts count
1111
- boards_count:
1112
- one: "%{count} board"
1113
- other: "%{count} boards"
1114
- topics_count:
1115
- one: "%{count} topic"
1116
- other: "%{count} topics"
1117
- posts_count:
1118
- one: "%{count} post"
1119
- other: "%{count} posts"
1120
- comments_count:
1121
- one: "%{count} comment"
1122
- other: "%{count} comments"
1123
- info:
1124
- no_boards_in_forum: You don't have any boards created in %{forum}.
1125
- move_topics_to_board: Existing forum topics will be moved to your first board when you create one.
1126
- titles:
1127
- new: New Board
1128
- edit: Edit Board
1129
- labels:
1130
- board: Board
1131
- move_to_board: Move to board
1132
- links:
1133
- index: Boards
1134
- new: New Board
1135
- boards: Boards
1136
- forum: Forum
1137
- settings: Settings
1138
- reorder: Reorder boards
1139
- create_now: Create one now
1140
- create: Create a new Board
1141
- flash:
1142
- no_next_board: There is no next board. Showing the last one.
1143
- destroy:
1144
- success: The board has been deleted.
1145
- failure: The board could not be deleted.
1146
- create:
1147
- success: The board has been created.
1148
- failure: The board could not be created.
1149
- update:
1150
- success: The board has been updated.
1151
- failure: The board could not be updated.
1152
- no_previous_board: There is no previous board. Showing the first one.
1153
- confirm_delete: Are you sure you want to delete this board? All the topics of this board are also deleted with the board.
1154
- confirm_delete_on_last: Are you sure you want to delete this board? Your topics will not be removed.
1155
- topics:
1156
- columns:
1157
- board: Board
1158
- title: Title
1159
- author: Author
1160
- last_updated: Last updated
1161
- posts: Posts
1162
- info:
1163
- no_topics_in_forum: There are no topics in this forum.
1164
- no_topics_in_board: There are no topics in this board.
1165
- titles:
1166
- new: New topic
1167
- edit: Edit topic
1168
- post_topic: Post Topic
1169
- latest_post: Latest post
1170
- post_count:
1171
- one: "%{count} Post"
1172
- other: "%{count} Posts"
1173
- states:
1174
- sticky: Sticky
1175
- locked: Locked
1176
- links:
1177
- post_new: Post one now
1178
- post_now: Post one now
1179
- new_topic: New topic
1180
- new: Create a new Topic
1181
- flash:
1182
- destroy:
1183
- success: The topic has been deleted.
1184
- failure: The topic could not be deleted.
1185
- create:
1186
- success: The topic has been created.
1187
- failure: The topic could not be created.
1188
- update:
1189
- success: The topic has been updated.
1190
- failure: The topic could not be updated.
1191
- no_next_topic: There is no next topic. Showing the last one.
1192
- no_previous_topic: There is no previous topic. Showing the first one.
1193
- confirm_delete: Are you sure you want to delete this topic?
1194
- posts:
1195
- titles:
1196
- reply: Leave your reply
1197
- edit: Edit your post
1198
- save_post: Save post
1199
- submit_post: Submit post
1200
- flash:
1201
- destroy:
1202
- success: The post has been deleted.
1203
- create:
1204
- success: The post has been saved.
1205
- failure: The post could not be saved.
1206
- update:
1207
- success: The post has been updated.
1208
- failure: The post could not be updated.
1209
- confirm_delete: Are you sure you want to delete this post?
1210
- tracking:
1211
- enable_tracking: Enable tracking with Google Analytics
1212
- tracking_campaign: Campaign
1213
- tracking_source: Source
1214
- hints:
1215
- tracking_code: Use your Google Analytics Tracking Code (UA-xxxxxxx-x) to enable Google Analytics support. Leaving this blank will deactivate Google Analytics support.
1216
- no_tracking_code: If you'd like to use Google Analytics to track your issue, enable Google Analytics by entering your tracking code on the main Settings page.
1217
- glossary: Not sure what to use here? Check %{link} for further information.
1218
- glossary_name: the Google Analytics help
1219
- spam:
1220
- hints:
1221
- filters: When comments are posted, the following filters are used to check their spam status.
1222
- options:
1223
- default_ham_none: Do not automatically approve any comments.
1224
- default_ham_all: Approve all comments automatically.
1225
- default_ham_authenticated: Approve comments posted by authenticated users.
1226
- labels:
1227
- enable: "Enable %{name} filter"
1228
- settings: Settings
1229
- api_key: API Key
1230
- site_url: Site URL
1231
- info:
1232
- greeting_logged_in: Hi <span>user</span>, you are logged in.
1233
- footer:
1234
- site_powered_by: "Site powered by %{link}."
1235
- theme_inspired_by: Theme inspired by depo.
1236
- flash:
1237
- authentication_required_role: "You need to have the role %{role} to administrate the sites of your account."
1238
- no_permission_for_admin_area_of_site: "You do not have permission to access the admin area of this site. Please, contact your system administrator or login with another user account."
1239
- no_permission_for_admin_area_of_account: "You do not have permission to access the admin area of this account. Please, contact your system administrator or login with another user account."
1240
- login_to_access_admin_area_of_site: "Please login to access the admin area of this site."
1241
- login_to_access_admin_area_of_account: "Please login to access the admin area of this account."
1242
- sidebar:
1243
- titles:
1244
- tags: Tags
1245
- topics: Topics
1246
- subscription:
1247
- no_subscriptions: There are no subscriptions.
1248
- confirm_delete: Are you sure you want unsubscribe?
1249
- flash:
1250
- destroy_success: Successfully unsubsribed.
1251
- link:
1252
- index: Subscribers
1253
- new: Add a new subscriber
1254
- destroy: Unsubscribe
1255
- label:
1256
- user: Users
1257
- subscriber: Subscriber
1258
- email: Email
1259
- time: Subscription time
1260
- subscriptions: Subscribers
1261
- locations:
1262
- attributes:
1263
- title: Location name
1264
- country: Country
1265
- postcode: Postcode
1266
- town: Town
1267
- address: Street / Number
1268
- description: Description
1269
- contact_mails:
1270
- no_mails: You currently do not have any contact mails.
1271
- delivered: Your mail has been delivered!
1272
- columns:
1273
- subject: Subject
1274
- created_at: Created at
1275
- flash:
1276
- record_not_found: Contact mail you requested could not be found!
1277
- destroy:
1278
- success: The contact mail has been deleted.
1279
- create:
1280
- success: The contact mail was successfully created.
1281
- failure: The contact mail could not be saved.
1282
- confirm_delete: Are you sure you want to delete this contact mail?
1283
-
1284
- # have cells translations here for the moment
1285
- cells:
1286
- album:
1287
- name: Photoalbum
1288
- states:
1289
- single:
1290
- name: Single photoalbum
1291
- description: Display a single photoalbum
1292
- form:
1293
- section: Section
1294
- sections:
1295
- name: Sections
1296
- states:
1297
- recent_articles:
1298
- name: Recent articles
1299
- description: Display a given number of articles from a certain section
1300
- form:
1301
- section: Section
1302
- count: Number of articles
1303
- blog:
1304
- name: Blog
1305
- states:
1306
- recent_articles:
1307
- name: Recent articles
1308
- description: Display a given number of articles from a certain blog
1309
- form:
1310
- section: Section
1311
- count: Number of articles
1312
- user:
1313
- name: Users
1314
- states:
1315
- recent:
1316
- name: Recent users
1317
- description: Display a list with a given number of users
1318
- form:
1319
- count: Number of users