pageflow 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pageflow might be problematic. Click here for more details.

Files changed (210) hide show
  1. checksums.yaml +8 -8
  2. data/admins/pageflow/entry.rb +8 -8
  3. data/admins/pageflow/revisions.rb +1 -1
  4. data/admins/pageflow/user.rb +24 -20
  5. data/app/assets/images/pageflow/scroll_down_indicator.png +0 -0
  6. data/app/assets/images/pageflow/scroll_down_indicator_invert.png +0 -0
  7. data/app/assets/images/pageflow/touch_indicator.png +0 -0
  8. data/app/assets/images/pageflow/touch_indicator_invert.png +0 -0
  9. data/app/assets/javascripts/pageflow/audio_player.js +8 -1
  10. data/app/assets/javascripts/pageflow/audio_player/media_events.js +27 -0
  11. data/app/assets/javascripts/pageflow/base.js +2 -1
  12. data/app/assets/javascripts/pageflow/editor/api.js +15 -0
  13. data/app/assets/javascripts/pageflow/editor/base.js +17 -1
  14. data/app/assets/javascripts/pageflow/editor/controllers/sidebar_controller.js +9 -1
  15. data/app/assets/javascripts/pageflow/editor/initializers/setup_help_entries.js +5 -0
  16. data/app/assets/javascripts/pageflow/editor/models/edit_lock_container.js +30 -9
  17. data/app/assets/javascripts/pageflow/editor/models/entry.js +8 -0
  18. data/app/assets/javascripts/pageflow/editor/models/file_stage.js +1 -1
  19. data/app/assets/javascripts/pageflow/editor/models/mixins/transient_references.js +1 -1
  20. data/app/assets/javascripts/pageflow/editor/templates/back_button_decorator.jst.ejs +1 -1
  21. data/app/assets/javascripts/pageflow/editor/templates/background_positioning.jst.ejs +5 -5
  22. data/app/assets/javascripts/pageflow/editor/templates/blank_entry.jst.ejs +6 -6
  23. data/app/assets/javascripts/pageflow/editor/templates/chapter_item.jst.ejs +2 -2
  24. data/app/assets/javascripts/pageflow/editor/templates/confirm_encoding.jst.ejs +7 -6
  25. data/app/assets/javascripts/pageflow/editor/templates/confirmable_file_item.jst.ejs +1 -1
  26. data/app/assets/javascripts/pageflow/editor/templates/edit_chapter.jst.ejs +4 -4
  27. data/app/assets/javascripts/pageflow/editor/templates/edit_entry.jst.ejs +7 -7
  28. data/app/assets/javascripts/pageflow/editor/templates/edit_meta_data.jst.ejs +3 -3
  29. data/app/assets/javascripts/pageflow/editor/templates/edit_page.jst.ejs +4 -4
  30. data/app/assets/javascripts/pageflow/editor/templates/embedded/page_link.jst.ejs +1 -1
  31. data/app/assets/javascripts/pageflow/editor/templates/file_item.jst.ejs +8 -8
  32. data/app/assets/javascripts/pageflow/editor/templates/files.jst.ejs +1 -1
  33. data/app/assets/javascripts/pageflow/editor/templates/files_blank_slate.jst.ejs +1 -1
  34. data/app/assets/javascripts/pageflow/editor/templates/files_explorer.jst.ejs +3 -3
  35. data/app/assets/javascripts/pageflow/editor/templates/files_explorer_blank_slate.jst.ejs +1 -1
  36. data/app/assets/javascripts/pageflow/editor/templates/files_gallery_blank_slate.jst.ejs +1 -1
  37. data/app/assets/javascripts/pageflow/editor/templates/help.jst.ejs +9 -0
  38. data/app/assets/javascripts/pageflow/editor/templates/help_button.jst.ejs +1 -1
  39. data/app/assets/javascripts/pageflow/editor/templates/loading.jst.ejs +1 -1
  40. data/app/assets/javascripts/pageflow/editor/templates/locked.jst.ejs +4 -4
  41. data/app/assets/javascripts/pageflow/editor/templates/notifications.jst.ejs +6 -6
  42. data/app/assets/javascripts/pageflow/editor/templates/other_entries_blank_slate.jst.ejs +1 -1
  43. data/app/assets/javascripts/pageflow/editor/templates/page_item.jst.ejs +1 -1
  44. data/app/assets/javascripts/pageflow/editor/templates/publish_entry.jst.ejs +13 -13
  45. data/app/assets/javascripts/pageflow/editor/templates/select_button.jst.ejs +1 -1
  46. data/app/assets/javascripts/pageflow/editor/views/background_positioning_view.js +1 -1
  47. data/app/assets/javascripts/pageflow/editor/views/chapter_item_view.js +2 -2
  48. data/app/assets/javascripts/pageflow/editor/views/configuration_editors/audio_loop.js +0 -3
  49. data/app/assets/javascripts/pageflow/editor/views/edit_chapter_view.js +1 -1
  50. data/app/assets/javascripts/pageflow/editor/views/edit_meta_data_view.js +7 -0
  51. data/app/assets/javascripts/pageflow/editor/views/edit_page_view.js +11 -2
  52. data/app/assets/javascripts/pageflow/editor/views/editor_view.js +4 -4
  53. data/app/assets/javascripts/pageflow/editor/views/entry_preview_view.js +4 -1
  54. data/app/assets/javascripts/pageflow/editor/views/entry_publication_quota_decorator_view.js +1 -1
  55. data/app/assets/javascripts/pageflow/editor/views/files_explorer_view.js +1 -1
  56. data/app/assets/javascripts/pageflow/editor/views/files_view.js +4 -4
  57. data/app/assets/javascripts/pageflow/editor/views/help_view.js +37 -24
  58. data/app/assets/javascripts/pageflow/editor/views/locked_view.js +4 -2
  59. data/app/assets/javascripts/pageflow/editor/views/page_item_view.js +1 -1
  60. data/app/assets/javascripts/pageflow/editor/views/page_preview_view.js +7 -0
  61. data/app/assets/javascripts/pageflow/editor/views/publish_entry_view.js +8 -1
  62. data/app/assets/javascripts/pageflow/links.js +42 -0
  63. data/app/assets/javascripts/pageflow/page_types/audio.js +3 -1
  64. data/app/assets/javascripts/pageflow/page_types/video.js +1 -0
  65. data/app/assets/javascripts/pageflow/ready.js +1 -20
  66. data/app/assets/javascripts/pageflow/ui.js +2 -2
  67. data/app/assets/javascripts/pageflow/ui/templates/inputs/file_input.jst.ejs +3 -3
  68. data/app/assets/javascripts/pageflow/ui/templates/inputs/page_reference.jst.ejs +1 -1
  69. data/app/assets/javascripts/pageflow/ui/templates/inputs/text_area_input.jst.ejs +7 -7
  70. data/app/assets/javascripts/pageflow/ui/views/collection_view.js +10 -1
  71. data/app/assets/javascripts/pageflow/ui/views/configuration_editor_view.js +1 -1
  72. data/app/assets/javascripts/pageflow/ui/views/inputs/check_box_input_view.js +5 -1
  73. data/app/assets/javascripts/pageflow/ui/views/inputs/extended_select_input_view.js +106 -0
  74. data/app/assets/javascripts/pageflow/ui/views/inputs/file_input_view.js +1 -1
  75. data/app/assets/javascripts/pageflow/ui/views/inputs/proxy_url_input_view.js +2 -2
  76. data/app/assets/javascripts/pageflow/ui/views/inputs/select_input_view.js +50 -14
  77. data/app/assets/javascripts/pageflow/ui/views/inputs/text_area_input_view.js +1 -1
  78. data/app/assets/javascripts/pageflow/ui/views/inputs/text_input_view.js +1 -1
  79. data/app/assets/javascripts/pageflow/ui/views/inputs/url_input_view.js +4 -4
  80. data/app/assets/javascripts/pageflow/ui/views/mixins/input_view.js +1 -1
  81. data/app/assets/javascripts/pageflow/video_player.js +5 -0
  82. data/app/assets/javascripts/pageflow/video_player/media_events.js +27 -0
  83. data/app/assets/stylesheets/pageflow/editor/base.css.scss +4 -0
  84. data/app/assets/stylesheets/pageflow/editor/help.css.scss +91 -45
  85. data/app/assets/stylesheets/pageflow/entries.css.scss +18 -5
  86. data/app/assets/stylesheets/pageflow/jquery_ui.css.scss +3 -2
  87. data/app/assets/stylesheets/pageflow/page.css.scss +23 -21
  88. data/app/assets/stylesheets/pageflow/subshare.css.scss +1 -1
  89. data/app/assets/stylesheets/pageflow/text_variants.css.scss +11 -2
  90. data/app/assets/stylesheets/pageflow/themes/default.css.scss +1 -41
  91. data/app/assets/stylesheets/pageflow/themes/default/base.css.scss +21 -0
  92. data/app/assets/stylesheets/pageflow/themes/default/overview.css.scss +16 -1
  93. data/app/assets/stylesheets/pageflow/themes/default/page.css.scss +5 -0
  94. data/app/assets/stylesheets/pageflow/themes/default/variables.css.scss +20 -0
  95. data/app/assets/stylesheets/pageflow/ui.css.scss +2 -0
  96. data/app/assets/stylesheets/pageflow/ui/input/extended_select_input.css.scss +105 -0
  97. data/app/controllers/concerns/pageflow/edit_locking.rb +2 -2
  98. data/app/controllers/concerns/pageflow/quota_verification.rb +1 -1
  99. data/app/controllers/pageflow/application_controller.rb +6 -2
  100. data/app/controllers/pageflow/editor/entries_controller.rb +5 -0
  101. data/app/controllers/pageflow/entries_controller.rb +3 -1
  102. data/app/controllers/pageflow/revisions_controller.rb +2 -0
  103. data/app/helpers/pageflow/admin/locales_helper.rb +11 -0
  104. data/app/helpers/pageflow/admin/users_helper.rb +1 -1
  105. data/app/helpers/pageflow/entries_helper.rb +8 -2
  106. data/app/helpers/pageflow/file_thumbnails_helper.rb +1 -1
  107. data/app/helpers/pageflow/files_helper.rb +13 -0
  108. data/app/helpers/pageflow/help_entries_helper.rb +19 -0
  109. data/app/helpers/pageflow/render_json_helper.rb +11 -0
  110. data/app/mailers/pageflow/user_mailer.rb +4 -1
  111. data/app/models/pageflow/draft_entry.rb +1 -0
  112. data/app/models/pageflow/positioned_file.rb +45 -0
  113. data/app/models/pageflow/published_entry.rb +12 -1
  114. data/app/models/pageflow/revision.rb +4 -0
  115. data/app/models/pageflow/theming.rb +1 -1
  116. data/app/models/pageflow/thumbnail_file_resolver.rb +20 -12
  117. data/app/views/admin/entries/_attributes_table.html.arb +3 -3
  118. data/app/views/admin/entries/_links.html.arb +3 -3
  119. data/app/views/admin/revisions/_form.html.erb +1 -1
  120. data/app/views/admin/users/_form.html.erb +8 -2
  121. data/app/views/admin/users/delete_me.html.erb +3 -3
  122. data/app/views/admin/users/me.html.erb +11 -3
  123. data/app/views/components/pageflow/admin/entries_tab.rb +1 -1
  124. data/app/views/components/pageflow/admin/grouped_folder_list.rb +7 -7
  125. data/app/views/components/pageflow/admin/members_tab.rb +4 -4
  126. data/app/views/components/pageflow/admin/revisions_tab.rb +8 -8
  127. data/app/views/components/pageflow/admin/users_tab.rb +1 -1
  128. data/app/views/layouts/pageflow/application.html.erb +2 -2
  129. data/app/views/pageflow/config/_editor_seeds.json.jbuilder +1 -1
  130. data/app/views/pageflow/devise/mailer/reset_password_instructions.html.erb +6 -4
  131. data/app/views/pageflow/editor/entries/_entry.json.jbuilder +1 -1
  132. data/app/views/pageflow/editor/entries/_help_entries_seed.html.erb +6 -0
  133. data/app/views/pageflow/editor/entries/seed.json.erb +14 -0
  134. data/app/views/pageflow/editor/entry_publications/_published_message.html.erb +1 -0
  135. data/app/views/pageflow/editor/entry_publications/check.json.jbuilder +3 -0
  136. data/app/views/pageflow/entries/_entry.html.erb +3 -3
  137. data/app/views/pageflow/entries/_ie8_hint.html.erb +2 -13
  138. data/app/views/pageflow/entries/_mobile_navigation.html.erb +6 -6
  139. data/app/views/pageflow/entries/_multimedia_alert.html.erb +5 -9
  140. data/app/views/pageflow/entries/_non_js_hint.html.erb +1 -1
  141. data/app/views/pageflow/entries/_skip_links.html.erb +3 -3
  142. data/app/views/pageflow/entries/edit.html.erb +5 -23
  143. data/app/views/pageflow/entries/navigation/_bar_bottom.html.erb +5 -5
  144. data/app/views/pageflow/entries/navigation/_bar_top.html.erb +15 -15
  145. data/app/views/pageflow/entries/navigation/_home_button.html.erb +2 -2
  146. data/app/views/pageflow/entries/overview/_chapter.html.erb +1 -1
  147. data/app/views/pageflow/entries/overview/_entry.html.erb +6 -4
  148. data/app/views/pageflow/entries/show.html.erb +2 -2
  149. data/app/views/pageflow/help_entries/_menu.html.erb +5 -0
  150. data/app/views/pageflow/help_entries/_menu_item.html.erb +7 -0
  151. data/app/views/pageflow/help_entries/_section.html.erb +3 -0
  152. data/app/views/pageflow/page_types/_page_type.json.jbuilder +1 -1
  153. data/app/views/pageflow/pages/_page.html.erb +1 -1
  154. data/app/views/pageflow/pages/_video_tag.html.erb +1 -1
  155. data/app/views/pageflow/pages/templates/_audio.html.erb +1 -1
  156. data/app/views/pageflow/pages/templates/_background_video.html.erb +1 -1
  157. data/app/views/pageflow/pages/templates/_video.html.erb +1 -1
  158. data/app/views/pageflow/social_share/_entry_meta_tags.html.erb +3 -0
  159. data/app/views/pageflow/social_share/_image_tags.html.erb +4 -0
  160. data/app/views/pageflow/social_share/_page_meta_tags.html.erb +3 -0
  161. data/app/views/pageflow/user_mailer/invitation.html.erb +4 -6
  162. data/app/views/pageflow/user_mailer/invitation.text.erb +5 -6
  163. data/config/initializers/help_entries.rb +17 -0
  164. data/config/locales/de.yml +1866 -2
  165. data/config/locales/en.yml +1800 -1
  166. data/config/routes.rb +2 -0
  167. data/db/migrate/20141128150305_add_locale_to_users.rb +5 -0
  168. data/db/migrate/20141208161030_add_locale_to_revisions.rb +5 -0
  169. data/lib/active_admin/patches/views/pages/base.rb +8 -0
  170. data/lib/generators/pageflow/{active_admin_menu/active_admin_menu_generator.rb → active_admin_initializer/active_admin_initializer_generator.rb} +3 -1
  171. data/lib/generators/pageflow/install/install_generator.rb +1 -1
  172. data/lib/pageflow.rb +6 -0
  173. data/lib/pageflow/built_in_page_type.rb +8 -0
  174. data/lib/pageflow/configuration.rb +29 -0
  175. data/lib/pageflow/engine.rb +8 -5
  176. data/lib/pageflow/help_entries.rb +55 -0
  177. data/lib/pageflow/help_entry.rb +19 -0
  178. data/lib/pageflow/page_type.rb +23 -33
  179. data/lib/pageflow/plugin.rb +13 -0
  180. data/lib/pageflow/user_mixin.rb +4 -0
  181. data/lib/pageflow/version.rb +1 -1
  182. data/vendor/assets/javascripts/jquery.ui.all.js +4 -0
  183. metadata +52 -39
  184. data/app/assets/javascripts/pageflow/editor/templates/help.jst.ejs.erb +0 -160
  185. data/config/locales/activeadmin.de.yml +0 -114
  186. data/config/locales/activerecord.de.yml +0 -182
  187. data/config/locales/admin/accounts.yml +0 -5
  188. data/config/locales/admin/entries.yml +0 -42
  189. data/config/locales/admin/folders.de.yml +0 -7
  190. data/config/locales/admin/revisions.yml +0 -4
  191. data/config/locales/admin/tabs.de.yml +0 -8
  192. data/config/locales/admin/themings.yml +0 -7
  193. data/config/locales/admin/users.yml +0 -26
  194. data/config/locales/admin/users/delete_me.de.yml +0 -7
  195. data/config/locales/admin/users/me.de.yml +0 -9
  196. data/config/locales/devise.de.yml +0 -72
  197. data/config/locales/devise.en.yml +0 -59
  198. data/config/locales/edit_locks.de.yml +0 -16
  199. data/config/locales/editor.de.yml +0 -64
  200. data/config/locales/editor/blank_entry.yml +0 -9
  201. data/config/locales/editor/quotas.de.yml +0 -4
  202. data/config/locales/formtastic.de.yml +0 -10
  203. data/config/locales/pageflow/audio.de.yml +0 -4
  204. data/config/locales/pageflow/editor/background_positioning.de.yml +0 -13
  205. data/config/locales/pageflow/editor/errors.de.yml +0 -6
  206. data/config/locales/pageflow/ui.de.yml +0 -6
  207. data/config/locales/pageflow/user_mailer.yml +0 -5
  208. data/config/locales/pageflow/widgets.de.yml +0 -14
  209. data/config/locales/quotas.de.yml +0 -3
  210. data/config/locales/rails.de.yml +0 -199
@@ -1,2 +1,1801 @@
1
1
  en:
2
- unauthorized: "You are not authorized to access this page."
2
+ active_admin:
3
+ access_denied:
4
+ message: You are not authorized to perform this action.
5
+ any: Any
6
+ batch_actions:
7
+ action_label: ! '%{title} Selected'
8
+ button_label: Batch Actions
9
+ default_confirmation: Are you sure you want to do this?
10
+ delete_confirmation: Are you sure you want to delete these %{plural_model}?
11
+ labels:
12
+ destroy: Delete
13
+ link: Create one
14
+ selection_toggle_explanation: (Toggle Selection)
15
+ succesfully_destroyed:
16
+ one: Successfully destroyed 1 %{model}
17
+ other: Successfully destroyed %{count} %{plural_model}
18
+ blank_slate:
19
+ content: There are no %{resource_name} yet.
20
+ link: Create one
21
+ cancel: Cancel
22
+ clear_filters: Clear filters
23
+ comments:
24
+ add: Add Comment
25
+ author: Author
26
+ author_missing: Anonymous
27
+ author_type: Author Type
28
+ body: Body
29
+ errors:
30
+ empty_text: Comment wasn't saved, text was empty.
31
+ no_comments_yet: No comments yet.
32
+ resource: Resource
33
+ resource_type: Resource Type
34
+ title: Comment
35
+ title_content: Comments (%{count})
36
+ create_model: Create %{model}
37
+ dashboard: Dashboard
38
+ dashboard_welcome:
39
+ call_to_action: To add dashboard sections, checkout 'app/admin/dashboard.rb'
40
+ welcome: Welcome to Active Admin. This is the default dashboard page.
41
+ delete: Delete
42
+ delete_confirmation: Are you sure you want to delete this?
43
+ delete_model: Delete %{model}
44
+ details: ! '%{model} Details'
45
+ devise:
46
+ change_password:
47
+ submit: Change my password
48
+ title: Change your password
49
+ email:
50
+ title: Email
51
+ links:
52
+ forgot_your_password: Forgot your password?
53
+ resend_confirmation_instructions: Re-send confirmation instructions
54
+ resend_unlock_instructions: Re-send unlock instructions
55
+ sign_in: Sign in
56
+ sign_in_with_omniauth_provider: Sign in with %{provider}
57
+ sign_up: Sign up
58
+ login:
59
+ remember_me: Remember me
60
+ submit: Login
61
+ title: Login
62
+ password:
63
+ title: Password
64
+ resend_confirmation_instructions:
65
+ submit: Resend confirmation instructions
66
+ title: Resend confirmation instructions
67
+ reset_password:
68
+ submit: Reset My Password
69
+ title: Forgot your password?
70
+ sign_up:
71
+ submit: Sign up
72
+ title: Sign up
73
+ subdomain:
74
+ title: Subdomain
75
+ unlock:
76
+ submit: Resend unlock instructions
77
+ title: Resend unlock instructions
78
+ username:
79
+ title: Username
80
+ download: ! 'Download:'
81
+ dropdown_actions:
82
+ button_label: Actions
83
+ edit: Edit
84
+ edit_model: Edit %{model}
85
+ empty: Empty
86
+ equal_to: Equal to
87
+ filter: Filter
88
+ filters:
89
+ buttons:
90
+ clear: Clear Filters
91
+ filter: Filter
92
+ predicates:
93
+ contains: Contains
94
+ ends_with: Ends with
95
+ equals: Equals
96
+ greater_than: Greater than
97
+ less_than: Less than
98
+ starts_with: Starts with
99
+ greater_than: Greater than
100
+ has_many_delete: Delete
101
+ has_many_new: Add New %{model}
102
+ has_many_remove: Remove
103
+ index_list:
104
+ block: List
105
+ blog: Blog
106
+ grid: Grid
107
+ table: Table
108
+ less_than: Less than
109
+ logout: Logout
110
+ main_content: Please implement %{model}#main_content to display content.
111
+ new_model: New %{model}
112
+ next: Next
113
+ pagination:
114
+ empty: No %{model} found
115
+ entry:
116
+ one: entry
117
+ other: entries
118
+ multiple: Displaying %{model} <b>%{from}&nbsp;-&nbsp;%{to}</b> of <b>%{total}</b> in total
119
+ multiple_without_total: Displaying %{model} <b>%{from}&nbsp;-&nbsp;%{to}</b>
120
+ one_page: Displaying <b>all %{n}</b> %{model}
121
+ powered_by: ! ' '
122
+ previous: Previous
123
+ scopes:
124
+ frozen: All
125
+ publications: Only published
126
+ publications_and_user_snapshots: Only published/snapshots
127
+ search_field: ! 'Search %{field} '
128
+ sidebars:
129
+ filters: Filters
130
+ folders: Folders
131
+ status_tag:
132
+ 'no': 'No'
133
+ 'yes': 'Yes'
134
+ undelete: Undelete
135
+ unsupported_browser:
136
+ headline: Please note that Internet Explorer versions 9 or less is no longer supported.
137
+ recommendation: We recommend upgrading to the latest <a href="http://windows.microsoft.com/ie">Internet Explorer</a>, <a href="https://chrome.google.com/">Google Chrome</a>, or <a href="https://mozilla.org/firefox/">Firefox</a>.
138
+ turn_off_compatibility_view: If you are using IE 9 or later, make sure you <a href="http://windows.microsoft.com/en-US/windows7/webpages-look-incorrect-in-Internet-Explorer">turn off "Compatibility View"</a>.
139
+ view: View
140
+ activerecord:
141
+ attributes:
142
+ admin_user:
143
+ created_at: Created at
144
+ current_sign_in_at: Current sign in at
145
+ current_sign_in_ip: Current IP-Address
146
+ email: Email
147
+ encrypted_Password: Encrypted password
148
+ id: ID
149
+ last_sign_in_at: Last sign-in at
150
+ last_sign_in_ip: Last sign-in IP
151
+ remember_created_at: Remember password since
152
+ reset_password_sent_at: Password reset instructions sent at
153
+ reset_password_token: Passwort reset token
154
+ sign_in_count: Sign-in count
155
+ updated_at: Updated at
156
+ pageflow/account:
157
+ created_at: Created at
158
+ default_file_rights: Default file credits
159
+ default_theming: Default theming
160
+ landing_page_name: Landing page
161
+ name: Name
162
+ pageflow/audio_file:
163
+ duration: Duration
164
+ format: Format
165
+ pageflow/chapter:
166
+ title: Title
167
+ pageflow/entry:
168
+ account: Account
169
+ created_at: Created at
170
+ credits: Credits
171
+ emphasize_chapter_beginning: Emphasize chapter beginning
172
+ emphasize_new_pages: Emphasize new pages
173
+ home_button_enabled: Show 'Home' button
174
+ home_url: ! '''Home'' Button URL'
175
+ locale: Language
176
+ manual_start: Show Instruction-Overlay
177
+ published?: Publication state
178
+ share_image_id: Social Sharing Image
179
+ summary: Summary
180
+ title: Title
181
+ updated_at: Updated at
182
+ url: Permalink
183
+ pageflow/folder:
184
+ account: Account
185
+ name: Name
186
+ pageflow/image_file:
187
+ dimensions: Dimensions
188
+ pageflow/membership:
189
+ entry: Story
190
+ user: Editor
191
+ pageflow/page:
192
+ additional_description: Infobox Description
193
+ additional_title: Infobox Title
194
+ allow_full_screen: Allow fullscreen
195
+ audio_file_id: Audio
196
+ autoplay: Autoplay
197
+ background_image_id: Background-Image
198
+ background_video_id: Background-Video
199
+ description: Description (Overview)
200
+ display_in_navigation: Show in navigationbar
201
+ gradient_opacity: Gradient opacity
202
+ hide_title: Hide titles
203
+ invert: Invert colors
204
+ linked_page_ids: Link pages
205
+ linked_pages_layout: Hero
206
+ mobile_poster_image_id: Posterimage (mobile)
207
+ poster_image_id: Posterimage
208
+ subtitle: Subtitle
209
+ tagline: Tagline
210
+ template: Pagetype
211
+ text: Text
212
+ text_position: Textposition
213
+ thumbnail_image_id: Thumbnail
214
+ title: Title
215
+ transition: Transition effect
216
+ video_file_id: Video
217
+ pageflow/revision:
218
+ created_at: Created at
219
+ created_with: Created by
220
+ creator: Created by
221
+ frozen_at: Effective
222
+ published_at: Published at
223
+ published_until: Published until
224
+ updated_at: Updated at
225
+ pageflow/theming:
226
+ cname: CNAME
227
+ copyright_link_label: Copyright link Text
228
+ copyright_link_url: Copyright link URL
229
+ home_button_enabled_by_default: ! '''Home''-Button enabled by default'
230
+ home_url: Redirect URL
231
+ imprint_link_label: Imprint link label
232
+ imprint_link_url: Imprint link URL
233
+ theme_name: Theme
234
+ pageflow/video_file:
235
+ dimensions: Dimensions
236
+ duration: Duration
237
+ format: Format
238
+ user:
239
+ account: Account
240
+ admin: Administrator
241
+ admin?: Administrator
242
+ created_at: Registered at
243
+ current_password: Current password
244
+ current_sign_in_at: Signed in at
245
+ email: Email address
246
+ entry: Story
247
+ first_name: First name
248
+ full_name: Full name
249
+ last_name: Last name
250
+ last_sign_in_at: Last signed in at
251
+ locale: Language
252
+ membership: Membership
253
+ password: Password
254
+ password_confirmation: Password confirmation
255
+ role: Role
256
+ sign_in_count: ! '# of sign ins'
257
+ suspended?: Suspended
258
+ unconfirmed_email: Unconfirmed Email
259
+ errors:
260
+ messages:
261
+ accepted: has to be accepted
262
+ blank: required
263
+ confirmation: not equal
264
+ empty: required
265
+ equal_to:
266
+ one: must be equal to %{count}
267
+ other: must be equal to %{count}
268
+ even: must be even
269
+ exclusion: not available
270
+ greater_than:
271
+ one: must be greater than %{count}
272
+ other: must be greater than %{count}
273
+ greater_than_or_equal_to:
274
+ one: must be greater or equal %{count}
275
+ other: must be greater or equal %{count}
276
+ inclusion: invalid
277
+ invalid: invalid
278
+ invalid_date: is not a valid date
279
+ less_than:
280
+ one: must be smaller than %{count}
281
+ other: must be smaller than %{count}
282
+ less_than_or_equal_to:
283
+ one: must be smaller or equal than %{count}
284
+ other: must be smaller or equal than %{count}
285
+ not_a_number: not a number
286
+ not_an_integer: not an integer
287
+ odd: must be odd
288
+ record_invalid: Record is invalid %{errors}
289
+ taken: already taken
290
+ too_long:
291
+ one: too long (only %{count} chars allowed)
292
+ other: too long (only %{count} chars allowed)
293
+ too_short:
294
+ one: too short (minimum of %{count} chars required)
295
+ other: too short (minimum of %{count} chars required)
296
+ validation: has to be at least 5 chars and to contain one decimal
297
+ wrong_length:
298
+ one: wrong length (must be exactly %{count} chars)
299
+ other: wrong length (must be exactly %{count} chars)
300
+ models:
301
+ account:
302
+ one: Account
303
+ other: Accounts
304
+ admin_user:
305
+ one: Administrator
306
+ other: Administrators
307
+ entry:
308
+ one: Story
309
+ other: Stories
310
+ folder:
311
+ one: Folder
312
+ other: Folders
313
+ membership:
314
+ one: Membership
315
+ other: Memberships
316
+ pageflow/account:
317
+ one: Account
318
+ other: Accounts
319
+ pageflow/entry:
320
+ one: Story
321
+ other: Stories
322
+ pageflow/folder:
323
+ one: Folder
324
+ other: Folders
325
+ pageflow/membership:
326
+ one: Membership
327
+ other: Memberships
328
+ pageflow/revision:
329
+ one: Version
330
+ other: Versions
331
+ pageflow/theming:
332
+ one: Theming
333
+ other: Themings
334
+ revision:
335
+ one: Version
336
+ other: Versions
337
+ theming:
338
+ one: Theming
339
+ other: Themings
340
+ user:
341
+ one: User
342
+ other: Users
343
+ values:
344
+ pageflow/page:
345
+ linked_pages_layout:
346
+ default: (none)
347
+ hero_top_left: Top left
348
+ hero_top_right: Top right
349
+ template:
350
+ audio: Audio
351
+ audio_loop: Background-Audio
352
+ background_image: Background-Image
353
+ background_video: Background-Video
354
+ internal_links: Internal Links
355
+ video: Video
356
+ text_position:
357
+ left: Left
358
+ right: Right
359
+ transition:
360
+ fade: Fade
361
+ scroll: Scroll
362
+ date:
363
+ abbr_day_names:
364
+ - Sun
365
+ - Mon
366
+ - Tue
367
+ - Wed
368
+ - Thu
369
+ - Fri
370
+ - Sat
371
+ abbr_month_names:
372
+ -
373
+ - Jan
374
+ - Feb
375
+ - Mar
376
+ - Apr
377
+ - May
378
+ - Jun
379
+ - Jul
380
+ - Aug
381
+ - Sep
382
+ - Oct
383
+ - Nov
384
+ - Dec
385
+ day_names:
386
+ - Sunday
387
+ - Monday
388
+ - Tuesday
389
+ - Wednesday
390
+ - Thursday
391
+ - Friday
392
+ - Saturday
393
+ formats:
394
+ default: ! '%Y-%m-%d'
395
+ long: ! '%B %d, %Y'
396
+ short: ! '%b %d'
397
+ month_names:
398
+ -
399
+ - January
400
+ - February
401
+ - March
402
+ - April
403
+ - May
404
+ - June
405
+ - July
406
+ - August
407
+ - September
408
+ - October
409
+ - November
410
+ - December
411
+ order:
412
+ - :year
413
+ - :month
414
+ - :day
415
+ datetime:
416
+ distance_in_words:
417
+ about_x_hours:
418
+ one: about 1 hour
419
+ other: about %{count} hours
420
+ about_x_months:
421
+ one: about 1 month
422
+ other: about %{count} months
423
+ about_x_years:
424
+ one: about 1 year
425
+ other: about %{count} years
426
+ almost_x_years:
427
+ one: almost 1 year
428
+ other: almost %{count} years
429
+ half_a_minute: half a minute
430
+ less_than_x_minutes:
431
+ one: less than a minute
432
+ other: less than %{count} minutes
433
+ less_than_x_seconds:
434
+ one: less than 1 second
435
+ other: less than %{count} seconds
436
+ over_x_years:
437
+ one: over 1 year
438
+ other: over %{count} years
439
+ x_days:
440
+ one: 1 day
441
+ other: ! '%{count} days'
442
+ x_minutes:
443
+ one: 1 minute
444
+ other: ! '%{count} minutes'
445
+ x_months:
446
+ one: 1 month
447
+ other: ! '%{count} months'
448
+ x_seconds:
449
+ one: 1 second
450
+ other: ! '%{count} seconds'
451
+ prompts:
452
+ day: Day
453
+ hour: Hour
454
+ minute: Minute
455
+ month: Month
456
+ second: Seconds
457
+ year: Year
458
+ devise:
459
+ confirmations:
460
+ confirmed: Your account was successfully confirmed. You are now signed in.
461
+ send_instructions: You will receive an email with instructions about how to confirm your account in a few minutes.
462
+ send_paranoid_instructions: If your email address exists in our database, you will receive an email with instructions about how to confirm your account in a few minutes.
463
+ failure:
464
+ admin_user:
465
+ invalid: Password or username was not correct.
466
+ unauthenticated: Please log-in using an administrator account.
467
+ already_authenticated: You are already signed in.
468
+ inactive: Your account was not activated yet.
469
+ invalid: Invalid email or password.
470
+ invalid_token: Invalid authentication token.
471
+ locked: Your account is locked.
472
+ not_found_in_database: Invalid email or password.
473
+ timeout: Your session expired, please sign in again to continue.
474
+ unauthenticated: You need to sign in or sign up before continuing.
475
+ unconfirmed: You have to confirm your account before continuing.
476
+ mailer:
477
+ confirmation_instructions:
478
+ subject: Confirmation instructions
479
+ reset_password_instructions:
480
+ subject: Reset password instructions
481
+ unlock_instructions:
482
+ subject: Unlock Instructions
483
+ oauth_providers:
484
+ facebook: Facebook
485
+ google_oauth2: Google
486
+ omniauth_callbacks:
487
+ failure: Could not authenticate you from %{kind} because "%{reason}".
488
+ success: Successfully authenticated from %{kind} account.
489
+ passwords:
490
+ no_token: You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided.
491
+ send_instructions: You will receive an email with instructions about how to reset your password in a few minutes.
492
+ send_paranoid_instructions: If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes.
493
+ updated: Your password was changed successfully. You are now signed in.
494
+ updated_not_active: Your password was changed successfully.
495
+ registrations:
496
+ destroyed: Bye! Your account was successfully cancelled. We hope to see you again soon.
497
+ edit:
498
+ are_you_sure: Are you sure?
499
+ change_password: Change password
500
+ delete_account: Delete account
501
+ submit: Save
502
+ userdata: Userinfo
503
+ new:
504
+ cancel_oauth_sign_up: Cancel
505
+ registration: Registration
506
+ sign_up_with_facebook: Log-in using Facebook
507
+ sign_up_with_google: Log in using Google
508
+ submit: Submit
509
+ signed_up: Welcome! You have signed up successfully.
510
+ signed_up_but_inactive: You have signed up successfully. However, we could not sign you in because your account is not yet activated.
511
+ signed_up_but_locked: You have signed up successfully. However, we could not sign you in because your account is locked.
512
+ signed_up_but_unconfirmed: A message with a confirmation link has been sent to your email address. Please open the link to activate your account.
513
+ update_needs_confirmation: You updated your account successfully, but we need to verify your new email address. Please check your email and click on the confirm link to finalize confirming your new email address.
514
+ updated: You updated your account successfully.
515
+ sessions:
516
+ admin_user:
517
+ signed_in: Successfully signed in as administrator.
518
+ new:
519
+ sign_in_with_facebook: Sign in with Facebook
520
+ sign_in_with_google: Sign in with Google
521
+ signed_in: Signed in successfully.
522
+ signed_out: Signed out successfully.
523
+ unlocks:
524
+ send_instructions: You will receive an email with instructions about how to unlock your account in a few minutes.
525
+ send_paranoid_instructions: If your account exists, you will receive an email with instructions about how to unlock it in a few minutes.
526
+ unlocked: Your account has been unlocked successfully. Please sign in to continue.
527
+ errors:
528
+ format: ! '%{attribute} %{message}'
529
+ messages:
530
+ accepted: must be accepted
531
+ already_confirmed: was already confirmed, please try signing in
532
+ blank: can't be blank
533
+ confirmation: not equal with confirmation
534
+ confirmation_period_expired: needs to be confirmed within %{period}, please request a new one
535
+ empty: can't be empty
536
+ equal_to:
537
+ one: must be equal to %{count}
538
+ other: must be equal to %{count}
539
+ even: must be even
540
+ exclusion: is reserved
541
+ expired: has expired, please request a new one
542
+ greater_than:
543
+ one: must be greater than %{count}
544
+ other: must be greater than %{count}
545
+ greater_than_or_equal_to:
546
+ one: must be greater than or equal to %{count}
547
+ other: must be greater than or equal to %{count}
548
+ inclusion: is not included in the list
549
+ invalid: is invalid
550
+ invalid_date: is not a valid date
551
+ less_than:
552
+ one: must be less than %{count}
553
+ other: must be less than %{count}
554
+ less_than_or_equal_to:
555
+ one: must be less than or equal to %{count}
556
+ other: must be less than or equal to %{count}
557
+ not_a_number: is not a number
558
+ not_an_integer: must be an integer
559
+ not_found: not found
560
+ not_locked: was not locked
561
+ not_saved:
562
+ one: Could not save. One error.
563
+ other: Could not save. %{count} errors.
564
+ odd: must be odd
565
+ other_than:
566
+ one: must be other than %{count}
567
+ other: must be other than %{count}
568
+ present: must be blank
569
+ readonly: readonly
570
+ record_invalid: ! 'Validation failed: %{errors}'
571
+ restrict_dependent_destroy:
572
+ many: Cannot delete record because dependent %{record} exist
573
+ one: Cannot delete record because a dependent %{record} exists
574
+ taken: has already been taken
575
+ too_long:
576
+ one: is too long (maximum is 1 character)
577
+ other: is too long (maximum is %{count} characters)
578
+ too_short:
579
+ one: is too short (minimum is 1 character)
580
+ other: is too short (minimum is %{count} characters)
581
+ wrong_length:
582
+ one: is the wrong length (should be 1 character)
583
+ other: is the wrong length (should be %{count} characters)
584
+ template:
585
+ body: ! 'There were problems with the following fields:'
586
+ header:
587
+ one: 1 error prohibited this %{model} from being saved
588
+ other: ! '%{count} errors prohibited this %{model} from being saved'
589
+ formtastic:
590
+ cancel: Cancel
591
+ create: ! 'Create %{model} '
592
+ 'no': 'No'
593
+ required: required
594
+ reset: ! 'Reset %{model} '
595
+ submit: ! 'Submit %{model} '
596
+ update: ! 'Update %{model} '
597
+ 'yes': 'Yes'
598
+ helpers:
599
+ select:
600
+ prompt: Please select
601
+ submit:
602
+ create: Create %{model}
603
+ submit: Save %{model}
604
+ update: Update %{model}
605
+ language: English
606
+ number:
607
+ currency:
608
+ format:
609
+ delimiter: ! ','
610
+ format: ! '%u%n'
611
+ precision: 2
612
+ separator: .
613
+ significant: false
614
+ strip_insignificant_zeros: false
615
+ unit: $
616
+ format:
617
+ delimiter: ! ','
618
+ precision: 3
619
+ separator: .
620
+ significant: false
621
+ strip_insignificant_zeros: false
622
+ human:
623
+ decimal_units:
624
+ format: ! '%n %u'
625
+ units:
626
+ billion:
627
+ one: Billion
628
+ other: Billion
629
+ million: Million
630
+ quadrillion:
631
+ one: Quadrillion
632
+ other: Quadrillion
633
+ thousand: Thousand
634
+ trillion: Trillion
635
+ unit: Unit
636
+ format:
637
+ delimiter: ! ','
638
+ precision: 3
639
+ significant: true
640
+ strip_insignificant_zeros: true
641
+ storage_units:
642
+ format: ! '%n %u'
643
+ units:
644
+ byte:
645
+ one: Byte
646
+ other: Bytes
647
+ gb: GB
648
+ kb: KB
649
+ mb: MB
650
+ tb: TB
651
+ percentage:
652
+ format:
653
+ delimiter: ! ','
654
+ format: ! '%n%'
655
+ precision:
656
+ format:
657
+ delimiter: ! ','
658
+ pageflow:
659
+ admin:
660
+ accounts:
661
+ no_entries: No Stories
662
+ no_members: No members
663
+ entries:
664
+ add_folder: Add folder
665
+ confirm_depublish: Unpublish this story?
666
+ confirm_restore: Restore story to the selected version? A snapshot will be created, so that you can roll back later.
667
+ depublish: Unpublish story
668
+ edit: Edit
669
+ edit_config: Edit configuration
670
+ edit_revision: Edit
671
+ editor: Editor
672
+ entries: Stories
673
+ forever: (unlimited)
674
+ members: Members
675
+ no_members: No members assigned
676
+ no_revisions: No versions yet
677
+ not_published: Not yet published
678
+ preview: Preview
679
+ published_forever: Published
680
+ published_revision_legend: Currently published version
681
+ published_until: Published until %{published_until}
682
+ remove: Remove
683
+ remove_logo: Remove logo
684
+ restore: Restore
685
+ revision_created_with:
686
+ auto: Automatic snapshot
687
+ publish: Publish
688
+ restore: Automatic snapshot
689
+ user: Manual snapshot
690
+ revision_created_with_hint:
691
+ auto: This version was automatically saved
692
+ publish: This version has been published
693
+ restore: This version has been automatically saved before an resrore was made
694
+ user: This version was manually saved
695
+ show: View
696
+ show_public: Public
697
+ snapshot: Save current version
698
+ title_hint: This field determines the URL for this story.
699
+ folders:
700
+ all: All
701
+ confirm_destroy: ! 'Delete folder? Note: Containing stories will be preserved.'
702
+ destroy: Delete
703
+ edit: Edit
704
+ resource_tabs:
705
+ entries: Stories
706
+ members: Members
707
+ revisions: Versions
708
+ users: User
709
+ revisions:
710
+ published_until_hint: Leave blank to publish indefinitely.
711
+ themings:
712
+ cname_hint: For social sharing
713
+ name: ! '%{account_name}'
714
+ remove_logo: Remove logo
715
+ show: View
716
+ users:
717
+ account: Profile
718
+ add: Add user
719
+ add_entry: Add story
720
+ confirm_delete: Delete this user? This action cannot be undone.
721
+ delete: Delete
722
+ delete_me:
723
+ cancel_label: No, do not delete my account!
724
+ delete_label: Delete account
725
+ warning_html: Please enter your current password to confirm deletion of your account. <b>All data will be deleted. This action cannot be undone.</b>
726
+ deleted: This user was deleted.
727
+ edit: Edit
728
+ email_invitation_hint: The user will be invited to choose a password.
729
+ empty: ! 'This user has no associated stories. '
730
+ invite_user: Invite user
731
+ me:
732
+ change_password_hint: Leave blank to keep your current password.
733
+ delete_account: Delete account
734
+ delete_account_hint: You don't want to continue using Pageflow?
735
+ deleted: Your account has been deleted. You may sign-up for a new one at any time!
736
+ updated: Your profile has been updated.
737
+ none: There are no stories.
738
+ resend_invitation: Resend invitation email
739
+ resent_invitation: The invitation email has been resent.
740
+ role_hint:
741
+ admin: Account-Administrators are able to manage all users and stories of their account only. System-Administrators can manage all settings.
742
+ others: Account-Administrators are able to manage all users and stories of their account.
743
+ roles:
744
+ account_manager: Account-Administrator
745
+ admin: System-Administrator
746
+ editor: Editor
747
+ suspend: Suspend
748
+ suspended: ! 'The user was suspended and will not be able to sign-in again. '
749
+ unsuspend: Unsuspend
750
+ unsuspended: The user was unsuspended.
751
+ audio:
752
+ open: Play audio
753
+ built_in_page_type:
754
+ audio:
755
+ page_type_category_name: Audio
756
+ page_type_description: Audio player with controls
757
+ audio_loop:
758
+ page_type_category_name: Audio
759
+ page_type_description: Audio playback in the background without controls
760
+ background_image:
761
+ page_type_category_name: Basic
762
+ page_type_description: Fullscreen image with text
763
+ background_video:
764
+ page_type_category_name: Video
765
+ page_type_description: Fullscreen video loop without controls
766
+ internal_links:
767
+ page_type_category_name: Links
768
+ page_type_description: A grid of thumbnails linking to other pages inside the Pageflow
769
+ video:
770
+ page_type_category_name: Video
771
+ page_type_description: Video player with controls
772
+ devise:
773
+ mailer:
774
+ reset_password_instructions:
775
+ ignore_hint: Please ignore this mail If you have not requested a password reset. Your password will not be changed in this case.
776
+ instruction: Somebody recently asked to reset your Pageflow password. Click here to change your password.
777
+ salutation: Hello %{first_name}
778
+ edit_locks:
779
+ break_action:
780
+ aquire: Continue here
781
+ errors:
782
+ held_by_other_session_error:
783
+ aquire_html: <p>This story is already open in another editor window.</p>
784
+ other_html: ! '<p>This story is already open in another editor window. Please reload this page and click on the ''Continue here'' button.</p>
785
+
786
+ <p>If you continue working without reload, data loss may occur.</p>'
787
+ held_by_other_user_error:
788
+ aquire_html: <p><strong>%{user_name}</strong> is currently working on this story or has left the editor window open. Click 'Continue here' to take over.</p>
789
+ other_html: <p><strong>%{user_name}</strong> has ended your editor session. Please reload the page and click 'Continue here' to view the current version.</p>
790
+ not_held_error:
791
+ other_html: <p>Your editor session has been ended from another session. Please reload the page and click 'Continue here' to view the current version.</p>
792
+ required: This action cannot be executed because this story has been opened in another editor session.
793
+ required_but_held_by_other_user: This action cannot be executed because this story has been opened by another user.
794
+ editor:
795
+ blank_entry:
796
+ create_chapter: Click <em>New chapter</em> to create your first chapter.
797
+ create_page: Use the <em>New page</em> button within the chapter to add pages.
798
+ edit_page: Click directly on a page to switch to the pages edit view.
799
+ header: This is an empty Pageflow
800
+ intro: Each Pageflow consist of chapters and pages. The editor panel to your right shows the outline of your story.
801
+ outro: In this area, a live preview will be shown.
802
+ errors:
803
+ UnmatchedUploadError: This filetype is not supported.
804
+ unknown: A unknown error has occurred.
805
+ files:
806
+ stages:
807
+ encoding:
808
+ action_required: Confirmation required.
809
+ active: Encoding in progress.
810
+ failed: Encoding failed.
811
+ finished: Encoding was successful.
812
+ pending: Encoding pending.
813
+ fetching_meta_data:
814
+ active: Fetching metadata.
815
+ failed: Metadata failure.
816
+ finished: Metadata successfully fetched.
817
+ pending: Metadata polling pending.
818
+ processing:
819
+ active: Processing.
820
+ failed: Processing failure.
821
+ finished: Processing successfully finished.
822
+ pending: Processing pending.
823
+ uploading:
824
+ active: Upload in progress.
825
+ failed: Upload failure.
826
+ finished: Successfully uploaded.
827
+ pending: Upload pending.
828
+ uploading_to_s3:
829
+ active: Transfering to S3.
830
+ failed: Transfer to S3 failed.
831
+ finished: Successfully transferred to S3.
832
+ pending: Transfer to S3 pending.
833
+ tabs:
834
+ audio_files: Audios
835
+ image_files: Images
836
+ video_files: Videos
837
+ templates:
838
+ back_button_decorator:
839
+ outline: Outline
840
+ background_positioning:
841
+ cancel: Cancel
842
+ help: In order to have an optimal presentation on mobile devices you can adjust the image detail to the display.
843
+ preview_title: Preview
844
+ previews:
845
+ banner: Banner
846
+ ratio16to9: 16:9 Landscape
847
+ ratio16to9Portrait: 16:9 Portrait
848
+ ratio4to3: 4:3 Landscape
849
+ ratio4to3Portrait: 4:3 Portrait
850
+ save: Save
851
+ title: Adjust position
852
+ chapter_item:
853
+ new_page: New page
854
+ save_error: Errors were detected while saving this chapter.
855
+ confirm_encoding:
856
+ all_released: ! 'All files have been scheduled for encoding. '
857
+ audios_tab: Audios
858
+ confirm_button: Encode selected files
859
+ link_to_progress: The %{link} page shows encoding progress.
860
+ manage_files: Manage files
861
+ videos_tab: Videos
862
+ confirmable_file_item:
863
+ remove: Remove
864
+ edit_chapter:
865
+ destroy: Delete
866
+ outline: Outline
867
+ retry: Retry
868
+ save_error: Errors were detected while saving this chapter.
869
+ edit_entry:
870
+ close: Close
871
+ manage_files: Manage files
872
+ metadata: Title and options
873
+ new_chapter: New chapter
874
+ outline: Outline
875
+ publish: Publish
876
+ save_error: There were errors while saving metadata.
877
+ edit_meta_data:
878
+ outline: Outline
879
+ retry: Retry
880
+ save_error: There were errors while saving metadata.
881
+ edit_page:
882
+ destroy: Delete
883
+ outline: Outline
884
+ retry: Retry
885
+ save_error: There were errors while saving page.
886
+ embedded:
887
+ page_link:
888
+ reset: Reset
889
+ file_item:
890
+ cancel: Cancel
891
+ confirm: Confirm
892
+ credits: Credits
893
+ destroy: Delete
894
+ download: Download
895
+ retry: Retry
896
+ select: Select
897
+ source: Source
898
+ files:
899
+ back: Back
900
+ files_blank_slate:
901
+ no_files: There are no files of this type, yet. You can upload one to get started.
902
+ files_explorer:
903
+ cancel: Cancel
904
+ ok: Ok
905
+ reuse_files: Reuse files from other stories
906
+ files_explorer_blank_slate:
907
+ choose_hint: Please choose a story.
908
+ files_gallery_blank_slate:
909
+ no_files: This story does not contain any files of this type.
910
+ help:
911
+ close: Close
912
+ title: Help
913
+ help_button:
914
+ open_help: Open help
915
+ loading:
916
+ loading: Loading...
917
+ locked:
918
+ close: Close editor
919
+ loading: Loading story. Please wait...
920
+ open_here: Continue here
921
+ notification:
922
+ approve_files: ! '%{num_files} files awaiting confirmation for the encoding process.'
923
+ retry: Retry
924
+ save_error: There were errors while saving changes.
925
+ saved: All changes have been saved.
926
+ saving: Saving changes...
927
+ show: Show
928
+ upload_pending: Uploads pending.
929
+ other_entries_blank_slate:
930
+ none_available: There are no other stories yet
931
+ page_item:
932
+ save_error: There were errors while saving page.
933
+ publish_entry:
934
+ date: Date
935
+ files_pending_notice: Please wait until all files have been processed and check the results. You may then publish your story.
936
+ not_published_notice: This story is currently not published.
937
+ publish: Publish
938
+ publish_current: Publish current version
939
+ publish_success: Your story has been sucessfully published.
940
+ published_notice: A version of this story is currently published.
941
+ published_url_hint: ! 'It can be accessed using following URL:'
942
+ show_files: Show files
943
+ time: Time
944
+ unlimited: indefinitely
945
+ until_including: Until including
946
+ view_revisions: View versions
947
+ select_button:
948
+ select: Select
949
+ views:
950
+ chapter_item_view:
951
+ chapter: Chapter
952
+ unnamed: (New chapter)
953
+ edit_chapter_view:
954
+ confirm_destroy: ! 'Really delete this chapter including ALL its pages?
955
+
956
+
957
+ This operation cannot be undone.'
958
+ edit_page_view:
959
+ confirm_destroy: Really delete this page?
960
+ editor_views:
961
+ files_pending_warning: You are currently uploading files. All uploads will be canceled if you leave this page.
962
+ hide_editor: Hide editor panel
963
+ resize_editor: Resize editor panel
964
+ show_editor: Show editor panel
965
+ entry_preview_view:
966
+ scroll_hint: Scroll down to continue
967
+ files_view:
968
+ add: Add
969
+ reuse: Reuse
970
+ upload: Upload
971
+ page_item_view:
972
+ unnamed: (New page)
973
+ entries:
974
+ entry:
975
+ print_logo: Logo
976
+ scroll_indicator: Scroll down to continue
977
+ swipe_indicator: Swipe to continue
978
+ ie8_hint:
979
+ close: Close
980
+ deprecated_browser: <p>Your browser is outdated and this page might not work as intended. We recommend upgrading to a current browser version. Please visit <a href="http://www.browserchoice.eu/">http://www.browserchoice.eu/</a> for download suggestions.</p>
981
+ mobile_navigation:
982
+ imprint: Imprint
983
+ overview: Overview
984
+ share_with_twitter: Tweet
985
+ multimedia_alert:
986
+ alert: Alert
987
+ close: Continue
988
+ scroll_hint: Use the mouse wheel or the arrow keys on your keyboard to navigate between pages.
989
+ sound_hint: This multimedia story format uses video and audio footage. Please make sure your speakers are turned on.
990
+ swipe_hint: Swipe to navigate between pages.
991
+ navigation:
992
+ bar_bottom:
993
+ close_fullscreen: Exit fullscreen mode
994
+ hide_text: Hide text
995
+ mute_off: Unmute
996
+ mute_on: Mute
997
+ open_fullscreen: Fullscreen mode
998
+ scroll_down: Scroll down
999
+ show_text: Show text
1000
+ volume: Volume
1001
+ bar_top:
1002
+ close_overview: Close overview
1003
+ close_top_navigation: Close navigation
1004
+ imprint: Imprint
1005
+ navigate_top: Goto first page
1006
+ open_overview: Overview
1007
+ open_top_navigation: Open navigation
1008
+ scroll_up: Scroll up
1009
+ share: Share
1010
+ share_with_facebook: Share on Facebook
1011
+ share_with_twitter: Tweet
1012
+ home_button:
1013
+ show_home: Start
1014
+ non_js_hint:
1015
+ js_hint: This application utilizes JavaScript for enhanced functionality and user experience. Your browser may not have JavaScript or it may be disabled.
1016
+ overview:
1017
+ chapter:
1018
+ chapter: Chapter
1019
+ entry:
1020
+ close: Close
1021
+ overview: Overview
1022
+ scroll_left: Scroll left
1023
+ scroll_right: Scroll right
1024
+ skip_links:
1025
+ goto_content: Goto content
1026
+ goto_navigation: Goto navigation
1027
+ goto_topnavigation: Goto main navigation
1028
+ help_entries:
1029
+ built_in_page_type:
1030
+ audio:
1031
+ menu_item: Audio
1032
+ text: ! '# Audio
1033
+
1034
+
1035
+ Playing audio-files with controls
1036
+
1037
+
1038
+ Here you can combine audio-files with pictures and
1039
+
1040
+ text-content. Controls similar to the page type „Video“
1041
+
1042
+ are shown. In addition to that you can write a
1043
+
1044
+ description into an „Infobox“.
1045
+
1046
+
1047
+ Examples of application: interviews, direct quotes, music
1048
+
1049
+ '
1050
+ audio_loop:
1051
+ menu_item: Audio Loop
1052
+ text: ! '# Audio Loop
1053
+
1054
+
1055
+ Playing an audio-loop without control (Ambience)
1056
+
1057
+
1058
+ A full-screen photo is shown as a „Background-Image“. The
1059
+
1060
+ difference to the normal Audio-Page is that the user
1061
+
1062
+ cannot influence the audio-file by controlling it. Instead
1063
+
1064
+ it is an endless-loop.
1065
+
1066
+
1067
+ Typical examples of application: Ambience, soundscape, field-recordings
1068
+
1069
+ '
1070
+ background_image:
1071
+ menu_item: Background Image
1072
+ text: ! '# Background Image
1073
+
1074
+
1075
+ Full-screen image and text
1076
+
1077
+
1078
+ By using the page type „Background-Image“, large pictures
1079
+
1080
+ are the background for the text and are paired with a
1081
+
1082
+ manually adjustable color gradient for an optimal
1083
+
1084
+ legibility. In order to have an optimal presentation on
1085
+
1086
+ mobile devices you can adjust the image detail to the
1087
+
1088
+ display. Optionally the text color can be inverted. This
1089
+
1090
+ is especially useful for bright background-images.
1091
+
1092
+
1093
+ Users are able to hide the color-gradient and text in
1094
+
1095
+ the front-end, if they want to have a view of the
1096
+
1097
+ background-image.
1098
+
1099
+
1100
+ Examples: Presentation, part of a picture gallery,
1101
+
1102
+ portrait'
1103
+ background_video:
1104
+ menu_item: Background Video
1105
+ text: ! '# Background Video
1106
+
1107
+
1108
+ Full-screen video played in a loop without control
1109
+
1110
+
1111
+ This type of page is comparable to „Background-Image“. But
1112
+
1113
+ instead of an image, a video is shown in the
1114
+
1115
+ background. This video starts automatically and is played
1116
+
1117
+ without control. Thus the user cannot influence the start
1118
+
1119
+ and stop of the video. Since the video is played in an
1120
+
1121
+ endless-loop, it should be long enough and it should have
1122
+
1123
+ a proper crossover. The same applies to the soundtrack.
1124
+
1125
+
1126
+ As a hint for the use of Pageflow on a smartphone: In
1127
+
1128
+ order to prevent unintended data consumption, the video is
1129
+
1130
+ not played on smartphones. Instead a poster-image is
1131
+
1132
+ shown, which is generated automatically. You can however
1133
+
1134
+ also choose the image yourself.
1135
+
1136
+
1137
+ Examples of application: intro, chapter cross-fade,
1138
+
1139
+ ambience
1140
+
1141
+ '
1142
+ internal_links:
1143
+ menu_item: Internal Links
1144
+ text: ! '# Internal Links
1145
+
1146
+
1147
+ References to other pages inside a Pageflow
1148
+
1149
+
1150
+ In contrast to external link, you can link to pages inside
1151
+
1152
+ your Pageflow. This page type helps you guide your users
1153
+
1154
+ through your Pageflow.
1155
+
1156
+
1157
+ Examples of application: Welcome page, chapter homepage
1158
+
1159
+ '
1160
+ video:
1161
+ menu_item: Video
1162
+ text: ! '# Video
1163
+
1164
+
1165
+ Playing a video with control
1166
+
1167
+
1168
+ In contrast to „Background-Videos“ the text elements fade
1169
+
1170
+ out after a few seconds, in order to draw attention to the
1171
+
1172
+ video. With controls the user can start and pause the
1173
+
1174
+ video or even fast-forward and rewind it. You can choose
1175
+
1176
+ whether the video should start automatically as soon as
1177
+
1178
+ the page is opened.
1179
+
1180
+
1181
+ As an alternative to the normal text input, you can write
1182
+
1183
+ a description into an „Infobox“ with text.
1184
+
1185
+
1186
+ Examples of application: Videos of all kinds, interviews,
1187
+
1188
+ portraits
1189
+
1190
+ '
1191
+ files:
1192
+ menu_item: Manage Files
1193
+ text: ! '# Manage Files
1194
+
1195
+
1196
+ Pageflow processes all major media formats (photo, audio,
1197
+
1198
+ video) and converts them into different formats and
1199
+
1200
+ qualities. The system adapts the quality of the media to the
1201
+
1202
+ internet connection and the end device of the user
1203
+
1204
+ automatically. In principle the files should be uploaded in
1205
+
1206
+ the optimal resolution and not be compressed beforehand. In
1207
+
1208
+ order to have a well-structured work-flow, it is helpful to
1209
+
1210
+ store all audio-files, background-video-loops, movies,
1211
+
1212
+ pictures and texts in the required version in a separate
1213
+
1214
+ file on your computer.
1215
+
1216
+
1217
+ ## Upload and Manage Files
1218
+
1219
+
1220
+ The menu item „Manage Files“ leads to the files, which have
1221
+
1222
+ already been uploaded. If you click „Add more“ and „Upload“
1223
+
1224
+ you can add more files.
1225
+
1226
+
1227
+ After you have uploaded the files, they are processed on the
1228
+
1229
+ server. This can take a few minutes - especially if the
1230
+
1231
+ videos are long. Click on the thumbnail of a file, in order
1232
+
1233
+ to see its status. Moreover you can see the general features
1234
+
1235
+ like the size of the picture or length of an audio-file and
1236
+
1237
+ you can download the original file.
1238
+
1239
+
1240
+ The files can already be used before the process is
1241
+
1242
+ finished. You can therefore continue your work during the
1243
+
1244
+ loading process.
1245
+
1246
+
1247
+ ## Copyrights of Files
1248
+
1249
+
1250
+ If you click on the thumbnail of a media file (picture,
1251
+
1252
+ video, audio), you can add information with regards to its
1253
+
1254
+ copyright. This information is shown automatically in the
1255
+
1256
+ legal notice.
1257
+
1258
+
1259
+ ## Reuse Files
1260
+
1261
+
1262
+ Videos, audio files and pictures can be used in more than
1263
+
1264
+ one article. Thus, videos, for example, do not have to be
1265
+
1266
+ uploaded several times. Click on „Manage Files“ and on
1267
+
1268
+ „Add“/„Reuse“, to search for files in other articles and add
1269
+
1270
+ them to a new one.
1271
+
1272
+ '
1273
+ meta_data:
1274
+ menu_item: Title and Options
1275
+ text: ! '# Title and Options
1276
+
1277
+
1278
+ ## General
1279
+
1280
+
1281
+ ### Title of the Pageflow
1282
+
1283
+
1284
+ Here you can choose a title for your Pageflow. It will be
1285
+
1286
+ shown on the title bar of the browser window. It also acts
1287
+
1288
+ as an indicator for search engines once the report is
1289
+
1290
+ published.
1291
+
1292
+
1293
+ ### Language
1294
+
1295
+
1296
+ Decide in which language your Pageflow should be
1297
+
1298
+ displayed. This refers to text which cannot be edited - like
1299
+
1300
+ multimedia tips, scroll-indicators, the overview and the
1301
+
1302
+ legal notice.
1303
+
1304
+
1305
+ ## Appearance
1306
+
1307
+
1308
+ ### Multimedia tips before the start
1309
+
1310
+
1311
+ Decide if tips or advice should be shown at the beginning of
1312
+
1313
+ your Pageflow.
1314
+
1315
+
1316
+ ### Highlighting chapter beginnings
1317
+
1318
+
1319
+ This option lets the title of the first page of a chapter
1320
+
1321
+ appear in a bigger font.
1322
+
1323
+
1324
+ ### Highlighting new pages
1325
+
1326
+
1327
+ At the beginning of a Pageflow an info-box shows new pages
1328
+
1329
+ that were created since the last visit.
1330
+
1331
+
1332
+ ### Display Home-Button
1333
+
1334
+
1335
+ You can have a button in the navigation, which hyperlinks to
1336
+
1337
+ an external website, for example back to the website from
1338
+
1339
+ which you hyperlinked to the Pageflow.
1340
+
1341
+
1342
+ ### Navigation
1343
+
1344
+
1345
+ Choose between two forms of navigation: The navigation with
1346
+
1347
+ a progress bar or the navigation with thumbnails. Please
1348
+
1349
+ note, that due to the lack of space on mobile devices only
1350
+
1351
+ the icon „Overview“ is shown.
1352
+
1353
+
1354
+ ## Social
1355
+
1356
+
1357
+ ### Social Sharing Picture
1358
+
1359
+
1360
+ Choose a picture, which should be shown, if your Pageflow is
1361
+
1362
+ shared in social networks.
1363
+
1364
+
1365
+ ### Summary
1366
+
1367
+
1368
+ Here you can write a description, which is shown, when your
1369
+
1370
+ Pageflow is shared in social networks.
1371
+
1372
+ '
1373
+ outline:
1374
+ menu_item: Chapters and Pages
1375
+ text: ! '# Chapters and Pages
1376
+
1377
+
1378
+ A Pageflow consists of at least one chapter with at least
1379
+
1380
+ one page. You can create as many chapters and pages as you
1381
+
1382
+ want. In order to create content, click:
1383
+
1384
+
1385
+ 1. „New Chapter“ to create a new chapter,
1386
+
1387
+ 2. „New Page“ to add a page,
1388
+
1389
+ 3. onto the new page, in order to edit the content.
1390
+
1391
+
1392
+ ## Structuring Chapters
1393
+
1394
+
1395
+ You can structure the composition of your Pageflow with
1396
+
1397
+ chapters - e.g. thematically or chronologically . The
1398
+
1399
+ chapters are shown in the overview and help the users find
1400
+
1401
+ their way around. It is therefore advisable to give each
1402
+
1403
+ chapter a title.
1404
+
1405
+
1406
+ If you create an unnamed chapter, Pageflow acts as if there
1407
+
1408
+ is no structure of chapters. The chapter and the title of
1409
+
1410
+ this chapter are consequently not shown in the
1411
+
1412
+ overview/navigation.'
1413
+ overview:
1414
+ menu_item: Overview
1415
+ text: ! '# Overview
1416
+
1417
+
1418
+ This is Pageflow’s editing platform. The division of the
1419
+
1420
+ screen into two allows you to edit your Pageflow and see a
1421
+
1422
+ preview at the same time. The editor shows modifications and
1423
+
1424
+ newly selected files directly and saves them automatically.
1425
+
1426
+
1427
+ The sidebar can be hidden or shown. You can change the size
1428
+
1429
+ of the preview-window by pulling the sidebar to the right or
1430
+
1431
+ the left. If the preview-window is long and narrow like ´ a
1432
+
1433
+ smartphone, you will only be able to see the „overview“ icon
1434
+
1435
+ and not the entire navigation. This is due to lack of space.
1436
+
1437
+
1438
+ The navigation is divided into four parts:
1439
+
1440
+
1441
+ ## Title and Options
1442
+
1443
+
1444
+ Under „Title and Options“ you can set up basic appearance
1445
+
1446
+ parameters as well as the title, language and lega
1447
+
1448
+ notice. You can also decide which content should be
1449
+
1450
+ displayed when sharing the report on social media platforms.
1451
+
1452
+
1453
+ For more details see: [Title and Options](#pageflow.help_entries.meta_data)
1454
+
1455
+
1456
+ ## Manage Files
1457
+
1458
+
1459
+ Under „Manage Files“ you can upload your media files, which
1460
+
1461
+ you want to use in Pageflow. Furthermore you can reuse
1462
+
1463
+ videos, photos and audio-files that have already been
1464
+
1465
+ uploaded.
1466
+
1467
+
1468
+ For more details see: [Manage Files](#pageflow.help_entries.files)
1469
+
1470
+
1471
+ ## Outline
1472
+
1473
+
1474
+ Via the „Outline“ you can add chapters and pages - the
1475
+
1476
+ actual content. Per Drag and Drop you can resort the pages
1477
+
1478
+ and chapters any time.
1479
+
1480
+
1481
+ For more details see: [Chapter and Pages](#pageflow.help_entries.outline)
1482
+
1483
+ '
1484
+ page_options:
1485
+ menu_item: General Page Options
1486
+ text: ! '# General Page Options
1487
+
1488
+
1489
+ ### Title
1490
+
1491
+
1492
+ Here you can add the title of a particular page. This
1493
+
1494
+ title is not only the headline of the text on the page, it
1495
+
1496
+ also functions as the title in the navigation and
1497
+
1498
+ overview. If a single page is shared in social networks,
1499
+
1500
+ this title is also the title of the social media post.
1501
+
1502
+
1503
+ ### Hide the title
1504
+
1505
+
1506
+ Optionally you can hide the title. Thus the title is not shown as the
1507
+
1508
+ heading of the text body. For the identification of the page it
1509
+
1510
+ remains visible in the navigation, overview and on social media posts.
1511
+
1512
+
1513
+ ### Tagline and Subtitle
1514
+
1515
+
1516
+ Here you can optionally enter a tagline and/or a
1517
+
1518
+ subtitle. If you click on „Hide title“ the tagline and
1519
+
1520
+ subtitle are not shown either.
1521
+
1522
+
1523
+ ### Text
1524
+
1525
+
1526
+ The text-block can be formatted with the buttons underneath
1527
+
1528
+ the input field. [B= bold / I=italic / U=underlined /
1529
+
1530
+ infinity symbol= Link/URL to an external website]
1531
+
1532
+
1533
+ All changes are visible in the left front-end-view as soon
1534
+
1535
+ as you leave the appropriate input field in the editor.
1536
+
1537
+
1538
+ ### Textposition
1539
+
1540
+
1541
+ Decide if the text should be shown on the left or right side.
1542
+
1543
+
1544
+ ### Opacity of the gradient
1545
+
1546
+
1547
+ The opacity of the gradient improves the legibility of
1548
+
1549
+ the text on background-videos or pictures.
1550
+
1551
+
1552
+ You can use the slider to darken or lighten up the
1553
+
1554
+ background until the contrast between text and background is
1555
+
1556
+ optimal.
1557
+
1558
+
1559
+ ### Invert colors
1560
+
1561
+
1562
+ If you invert the colors, „bright“ and „dark“ are
1563
+
1564
+ interchanged. Thus the normally white font changes into
1565
+
1566
+ black.
1567
+
1568
+
1569
+ A general rule: Bright font for dark pictures, dark font for
1570
+
1571
+ bright pictures.
1572
+
1573
+
1574
+ ### Thumbnail
1575
+
1576
+
1577
+ The thumbnail replaces the automatically generated
1578
+
1579
+ preview-picture in the navigation and overview.
1580
+
1581
+
1582
+ ### Display in navigation
1583
+
1584
+
1585
+ If this option is not taken, the particular page is not
1586
+
1587
+ represented in the navigation and therefore cannot be
1588
+
1589
+ reached through it. You can use this option if a page is
1590
+
1591
+ supposed to read more like a subpage of another page.
1592
+
1593
+
1594
+ ### Transition effect
1595
+
1596
+
1597
+ There are two two different effects, which are visible when
1598
+
1599
+ the user scrolls or swipe to the next page: cross-fade or
1600
+
1601
+ scrolling. You can determine which effect should be used for
1602
+
1603
+ each individual page.
1604
+
1605
+
1606
+ ### Description for the overview
1607
+
1608
+
1609
+ You can enter a text, which appears when the user navigates
1610
+
1611
+ with the mouse over the particular page. This text matches
1612
+
1613
+ with the mouse-over-text for the page-type „Page References“
1614
+
1615
+ as well as with the text, which appears when you share the
1616
+
1617
+ Pageflow in social networks.'
1618
+ page_types:
1619
+ menu_item: Page Types
1620
+ text: ! '# Page Types
1621
+
1622
+
1623
+ By choosing the page type, you determine what type of media
1624
+
1625
+ files are used for which page. For each type of page you can
1626
+
1627
+ use different settings. For further information please
1628
+
1629
+ click on a page type on the left column.
1630
+
1631
+ '
1632
+ publishing:
1633
+ menu_item: Publishing
1634
+ text: ! '# Publishing
1635
+
1636
+
1637
+ Click on the „Publish“ button to publish your Pageflow. A
1638
+
1639
+ Pageflow can be published at any point in time. Published
1640
+
1641
+ Pageflows can also be unpublished manually at any time. If a
1642
+
1643
+ Pageflow has already been published, changes will not be
1644
+
1645
+ shown until you publish your report again. A Pageflow can
1646
+
1647
+ only be edited by one author at one time.
1648
+
1649
+
1650
+ Thumbnail for embedding the Pageflow on external websites
1651
+
1652
+ After publishing your Pageflow, the system generates a
1653
+
1654
+ thumbnail, which can be embedded as an iframe to the
1655
+
1656
+ hyperlink of another website. By means of the code, the size
1657
+
1658
+ of the iframe can be adjusted. The minimum size is a height
1659
+
1660
+ 150px and a width of 220px.
1661
+
1662
+ '
1663
+ helpers:
1664
+ entries:
1665
+ global_links: Global links
1666
+ image_rights: Credits
1667
+ invalid_transition: Invalid transition
1668
+ pages:
1669
+ templates:
1670
+ audio:
1671
+ hint: Audio
1672
+ background_video:
1673
+ hint: Video loop
1674
+ page:
1675
+ goto_top: Goto first page
1676
+ video:
1677
+ hint: Video
1678
+ video_tag:
1679
+ view_video: Play video
1680
+ quotas:
1681
+ exhausted: Quota exhausted
1682
+ ui:
1683
+ configuration_editor:
1684
+ tabs:
1685
+ files: Files
1686
+ general: General
1687
+ links: Links
1688
+ options: Options
1689
+ social: Social
1690
+ widgets: Appearance
1691
+ inline_help:
1692
+ pageflow/chapter:
1693
+ title: Will be shown on the overview page.
1694
+ pageflow/entry:
1695
+ credits: Will be shown in the info box.
1696
+ emphasize_chapter_beginning: This option emphasizes the title of the first page of a chapter.
1697
+ emphasize_new_pages: At the beginning of a Pageflow an info-box shows news pages that were created since the last visit.
1698
+ home_button_enabled: Pageflow can display a button in the navigation, which hyperlinks to an external website, for example back to the website from which you hyperlinked to the Pageflow.
1699
+ home_button_enabled_disabled: This option is not available for your theme.
1700
+ home_url: URL of your home page. Leave empty to use your accounts default setting.
1701
+ home_url_disabled: This option is not available for your theme.
1702
+ manual_start: Decide if tips or advice should be shown at the beginning of your Pageflow.
1703
+ summary: Here you can write a description, which is shown, when your Pageflow is shared in social networks.
1704
+ title: Here you can choose a title for your Pageflow. It will be shown on the title bar of the browser window. It also acts as an indicator for search engines once the report is published.
1705
+ pageflow/page:
1706
+ additional_title: The info box appears close to the player controls.
1707
+ description: You can enter a text, which appears when the user navigates with the mouse over the particular page. This text matches with the mouse-over-text for the page-type „Page References“ as well as with the text, which appears when you share the Pageflow in social networks.
1708
+ gradient_opacity: ! 'The opacity of the gradient improves the legibility of the text on background-videos or pictures.
1709
+
1710
+
1711
+ You can use the slider to darken or lighten up the background until the contrast between text and background is optimal.'
1712
+ invert: ! 'If you invert the colors, „bright“ and „dark“ are interchanged. Thus the normally white font changes into black.
1713
+
1714
+
1715
+ A general rule: Bright font for dark pictures, dark font for bright pictures.'
1716
+ mobile_poster_image_id: This image is used as poster image on mobile devices.
1717
+ text: ! 'The text-block can be formatted with the buttons underneath the input field. [B= bold / I=italic / U=underlined / infinity symbol= Link/URL to an external website]
1718
+
1719
+
1720
+ All changes are visible in the left front-end-view as soon as you leave the appropriate input field in the editor.'
1721
+ thumbnail_image_id: ! 'The thumbnail replaces the automatically generated preview-picture in the navigation and overview.
1722
+
1723
+ '
1724
+ templates:
1725
+ inputs:
1726
+ file_input:
1727
+ adjust_positioning: Adjust field of view
1728
+ edit: Edit
1729
+ reset: Reset
1730
+ page_reference:
1731
+ drag_hint: Drag pages into the preview to create links.
1732
+ text_area_input:
1733
+ bold: Bold
1734
+ cancel: Cancel
1735
+ create_link: Insert link
1736
+ italic: Italic
1737
+ ok: Ok
1738
+ underline: Underline
1739
+ url: URL
1740
+ views:
1741
+ extended_select_input_view:
1742
+ display_help: Display help
1743
+ inputs:
1744
+ file_input_view:
1745
+ none: (none)
1746
+ proxy_url_input_view:
1747
+ http_error: The given URL could not be fetched. (The server answered with a HTTP status code ' %{status}')
1748
+ url_validation: Checking URL...
1749
+ select_input_view:
1750
+ none: (none)
1751
+ placeholder: Default (%{text})
1752
+ text_input_view:
1753
+ required_field: Required field
1754
+ url_input_view:
1755
+ required_field: Required field
1756
+ supported_vendors: ! 'Following providers are supported:'
1757
+ url_hint: ! 'URL must start with http:// '
1758
+ url_hint_https: URL must start with http:// or https://
1759
+ unauthorized: You are not authorized to view this page.
1760
+ user_mailer:
1761
+ invitation:
1762
+ ending: Thank you and have fun,
1763
+ greeting: Your Pageflow Team
1764
+ instruction: ! 'Welcome to Pageflow. Please use the following link to set your personal password. You may use your email address to sign-in. '
1765
+ salutation: Hello %{first_name}
1766
+ subject: Your Pageflow Invitation
1767
+ widgets:
1768
+ none: (none)
1769
+ roles:
1770
+ analytics: Tracking
1771
+ mobile_navigation: Mobile navigation
1772
+ navigation: Navigation bar
1773
+ share_menu:
1774
+ current_page: This page
1775
+ entry: This story
1776
+ share_with_facebook: Share on Facebook
1777
+ share_with_google: Share on Google+
1778
+ share_with_twitter: Share on Twitter
1779
+ type_names:
1780
+ default_mobile_navigation: Navigation bar with thumbnails
1781
+ default_navigation: Navigation bar with thumbnails
1782
+ support:
1783
+ array:
1784
+ last_word_connector: ! ', and '
1785
+ two_words_connector: ! ' and '
1786
+ words_connector: ! ', '
1787
+ time:
1788
+ am: am
1789
+ formats:
1790
+ date: ! '%Y-%m-%d'
1791
+ default: ! '%a, %d %b %Y %H:%M:%S %z'
1792
+ long: ! '%B %d, %Y %H:%M'
1793
+ short: ! '%d %b %H:%M'
1794
+ pm: pm
1795
+ views:
1796
+ pagination:
1797
+ first: ! '|<'
1798
+ last: ! '>|'
1799
+ next: ! '>>'
1800
+ previous: <<
1801
+ truncate: ! '...'