pageflow 0.9.2 → 0.10.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 (263) hide show
  1. checksums.yaml +5 -13
  2. data/CHANGELOG.md +193 -11
  3. data/README.md +9 -1
  4. data/Rakefile +5 -0
  5. data/admins/pageflow/accounts.rb +2 -1
  6. data/admins/pageflow/entry.rb +21 -1
  7. data/admins/pageflow/revisions.rb +1 -1
  8. data/app/assets/fonts/pageflow/entypo-license.txt +358 -0
  9. data/app/assets/fonts/pageflow/fontawesome-license.txt +1 -0
  10. data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.eot +0 -0
  11. data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.svg +1236 -194
  12. data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.ttf +0 -0
  13. data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.woff +0 -0
  14. data/app/assets/fonts/pageflow/sourcesanspro-license.txt +93 -0
  15. data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.eot +0 -0
  16. data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.svg +1153 -839
  17. data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.ttf +0 -0
  18. data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.woff +0 -0
  19. data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.eot +0 -0
  20. data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.svg +1252 -199
  21. data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.ttf +0 -0
  22. data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.woff +0 -0
  23. data/app/assets/javascripts/pageflow/base.js +2 -0
  24. data/app/assets/javascripts/pageflow/browser/agent.js +25 -0
  25. data/app/assets/javascripts/pageflow/browser/css_animations.js +18 -0
  26. data/app/assets/javascripts/pageflow/browser/mobile_platform.js +1 -4
  27. data/app/assets/javascripts/pageflow/browser/video.js +8 -1
  28. data/app/assets/javascripts/pageflow/chapter_filter.js +6 -16
  29. data/app/assets/javascripts/pageflow/editor/api.js +6 -2
  30. data/app/assets/javascripts/pageflow/editor/api/page_type.js +12 -0
  31. data/app/assets/javascripts/pageflow/editor/base.js +4 -0
  32. data/app/assets/javascripts/pageflow/editor/collections/chapter_pages_collection.js +4 -1
  33. data/app/assets/javascripts/pageflow/editor/collections/chapters_collection.js +1 -5
  34. data/app/assets/javascripts/pageflow/editor/collections/mixins/add_and_return_model.js +11 -0
  35. data/app/assets/javascripts/pageflow/editor/collections/mixins/ordered_collection.js +6 -4
  36. data/app/assets/javascripts/pageflow/editor/collections/ordered_page_links_collection.js +9 -0
  37. data/app/assets/javascripts/pageflow/editor/collections/page_links_collection.js +78 -0
  38. data/app/assets/javascripts/pageflow/editor/collections/pages_collection.js +9 -3
  39. data/app/assets/javascripts/pageflow/editor/collections/storyline_chapters_collection.js +35 -0
  40. data/app/assets/javascripts/pageflow/editor/collections/storylines_collection.js +33 -0
  41. data/app/assets/javascripts/pageflow/editor/controllers/sidebar_controller.js +19 -2
  42. data/app/assets/javascripts/pageflow/editor/initializers/edit_lock.js +1 -1
  43. data/app/assets/javascripts/pageflow/editor/initializers/setup_collections.js +11 -0
  44. data/app/assets/javascripts/pageflow/editor/initializers/setup_common_seed.js +3 -0
  45. data/app/assets/javascripts/pageflow/editor/initializers/stylesheet_reloading.js +11 -0
  46. data/app/assets/javascripts/pageflow/editor/models/chapter.js +14 -7
  47. data/app/assets/javascripts/pageflow/editor/models/chapter_scaffold.js +13 -0
  48. data/app/assets/javascripts/pageflow/editor/models/edit_lock_container.js +4 -4
  49. data/app/assets/javascripts/pageflow/editor/models/entry.js +33 -4
  50. data/app/assets/javascripts/pageflow/editor/models/mixins/persited_promise.js +18 -0
  51. data/app/assets/javascripts/pageflow/editor/models/page.js +4 -0
  52. data/app/assets/javascripts/pageflow/editor/models/page_link.js +37 -0
  53. data/app/assets/javascripts/pageflow/editor/models/page_link_file_selection_handler.js +14 -0
  54. data/app/assets/javascripts/pageflow/editor/models/preview_entry_data.js +15 -0
  55. data/app/assets/javascripts/pageflow/editor/models/scaffold.js +26 -0
  56. data/app/assets/javascripts/pageflow/editor/models/storyline.js +99 -0
  57. data/app/assets/javascripts/pageflow/editor/models/storyline_configuration.js +15 -0
  58. data/app/assets/javascripts/pageflow/editor/models/storyline_ordering.js +117 -0
  59. data/app/assets/javascripts/pageflow/editor/models/storyline_scaffold.js +23 -0
  60. data/app/assets/javascripts/pageflow/editor/models/storyline_transitive_child_pages.js +33 -0
  61. data/app/assets/javascripts/pageflow/editor/routers/sidebar_router.js +3 -0
  62. data/app/assets/javascripts/pageflow/editor/templates/edit_entry.jst.ejs +1 -6
  63. data/app/assets/javascripts/pageflow/editor/templates/edit_page_link.jst.ejs +3 -0
  64. data/app/assets/javascripts/pageflow/editor/templates/edit_storyline.jst.ejs +12 -0
  65. data/app/assets/javascripts/pageflow/editor/templates/page_link_item.jst.ejs +1 -0
  66. data/app/assets/javascripts/pageflow/editor/templates/page_selection.jst.ejs +2 -2
  67. data/app/assets/javascripts/pageflow/editor/templates/storyline_outline.jst.ejs +4 -0
  68. data/app/assets/javascripts/pageflow/editor/templates/storyline_picker.jst.ejs +7 -0
  69. data/app/assets/javascripts/pageflow/editor/utils/reload_stylesheet.js +9 -0
  70. data/app/assets/javascripts/pageflow/editor/views/configuration_editors/groups/options.js +2 -2
  71. data/app/assets/javascripts/pageflow/editor/views/configuration_editors/groups/page_link.js +10 -0
  72. data/app/assets/javascripts/pageflow/editor/views/edit_chapter_view.js +0 -4
  73. data/app/assets/javascripts/pageflow/editor/views/edit_entry_view.js +9 -15
  74. data/app/assets/javascripts/pageflow/editor/views/edit_meta_data_view.js +14 -6
  75. data/app/assets/javascripts/pageflow/editor/views/edit_page_link_view.js +47 -0
  76. data/app/assets/javascripts/pageflow/editor/views/edit_storyline_view.js +97 -0
  77. data/app/assets/javascripts/pageflow/editor/views/editor_view.js +6 -3
  78. data/app/assets/javascripts/pageflow/editor/views/entry_preview_view.js +13 -7
  79. data/app/assets/javascripts/pageflow/editor/views/file_item_view.js +1 -1
  80. data/app/assets/javascripts/pageflow/editor/views/inputs/page_link_input_view.js +3 -1
  81. data/app/assets/javascripts/pageflow/editor/views/locked_view.js +3 -3
  82. data/app/assets/javascripts/pageflow/editor/views/mixins/loadable.js +1 -1
  83. data/app/assets/javascripts/pageflow/editor/views/page_item_view.js +2 -0
  84. data/app/assets/javascripts/pageflow/editor/views/page_link_configuration_editor_view.js +7 -0
  85. data/app/assets/javascripts/pageflow/editor/views/page_link_item_view.js +8 -1
  86. data/app/assets/javascripts/pageflow/editor/views/page_preview_view.js +1 -1
  87. data/app/assets/javascripts/pageflow/editor/views/page_selection_view.js +13 -12
  88. data/app/assets/javascripts/pageflow/editor/views/storyline_outline_view.js +33 -0
  89. data/app/assets/javascripts/pageflow/editor/views/storyline_picker_view.js +114 -0
  90. data/app/assets/javascripts/pageflow/entry_data.js +38 -4
  91. data/app/assets/javascripts/pageflow/highlighted_page.js +5 -5
  92. data/app/assets/javascripts/pageflow/history.js +1 -1
  93. data/app/assets/javascripts/pageflow/native_scrolling.js +14 -0
  94. data/app/assets/javascripts/pageflow/page_transitions.js +3 -1
  95. data/app/assets/javascripts/pageflow/page_type.js +2 -0
  96. data/app/assets/javascripts/pageflow/ready.js +4 -1
  97. data/app/assets/javascripts/pageflow/seed_entry_data.js +28 -1
  98. data/app/assets/javascripts/pageflow/slideshow.js +11 -8
  99. data/app/assets/javascripts/pageflow/slideshow/dom_order_scroll_navigator.js +93 -8
  100. data/app/assets/javascripts/pageflow/slideshow/hidden_text_indicator_widget.js +5 -3
  101. data/app/assets/javascripts/pageflow/slideshow/lazy_page_widget.js +4 -0
  102. data/app/assets/javascripts/pageflow/slideshow/page_widget.js +15 -6
  103. data/app/assets/javascripts/pageflow/ui/templates/tooltip.jst.ejs +2 -0
  104. data/app/assets/javascripts/pageflow/ui/views/inputs/text_area_input_view.js +17 -4
  105. data/app/assets/javascripts/pageflow/ui/views/mixins/tooltip_container.js +42 -0
  106. data/app/assets/javascripts/pageflow/ui/views/tooltip_view.js +49 -0
  107. data/app/assets/javascripts/pageflow/video_player.js +2 -2
  108. data/app/assets/javascripts/pageflow/video_player/{filter_for_silk.js → filter_sources.js} +2 -2
  109. data/app/assets/javascripts/pageflow/widgets/navigation.js +17 -14
  110. data/app/assets/javascripts/pageflow/widgets/navigation_mobile.js +7 -2
  111. data/app/assets/javascripts/pageflow/widgets/overview.js +9 -6
  112. data/app/assets/javascripts/pageflow/widgets/page_navigation_list.js +51 -13
  113. data/app/assets/javascripts/pageflow/widgets/page_navigation_list_animation.js +48 -0
  114. data/app/assets/javascripts/pageflow/widgets/parent_page_button.js +9 -2
  115. data/app/assets/stylesheets/pageflow/admin.css.scss +2 -15
  116. data/app/assets/stylesheets/pageflow/admin/features.scss +5 -0
  117. data/app/assets/stylesheets/pageflow/admin/forms.scss +18 -0
  118. data/app/assets/stylesheets/pageflow/animations.css.scss +1 -0
  119. data/app/assets/stylesheets/pageflow/animations/navigation_bar.scss +89 -0
  120. data/app/assets/stylesheets/pageflow/delayed_text_fade_in.css.scss +1 -1
  121. data/app/assets/stylesheets/pageflow/editor/base.css.scss +5 -0
  122. data/app/assets/stylesheets/pageflow/editor/menu.css.scss +1 -0
  123. data/app/assets/stylesheets/pageflow/editor/outline.css.scss +5 -0
  124. data/app/assets/stylesheets/pageflow/editor/page_links.css.scss +9 -1
  125. data/app/assets/stylesheets/pageflow/editor/page_selection.css.scss +7 -1
  126. data/app/assets/stylesheets/pageflow/editor/storyline_picker.css.scss +32 -0
  127. data/app/assets/stylesheets/pageflow/extendables.scss +26 -0
  128. data/app/assets/stylesheets/pageflow/mixins/pageflow.css.scss +25 -0
  129. data/app/assets/stylesheets/pageflow/navigation_bar.css.scss +64 -4
  130. data/app/assets/stylesheets/pageflow/navigation_mobile.css.scss +56 -0
  131. data/app/assets/stylesheets/pageflow/page_transitions.css.scss +4 -1
  132. data/app/assets/stylesheets/pageflow/page_transitions/scroll_over_from_left.scss +12 -0
  133. data/app/assets/stylesheets/pageflow/page_transitions/scroll_over_from_right.scss +12 -0
  134. data/app/assets/stylesheets/pageflow/page_types/video.css.scss +5 -1
  135. data/app/assets/stylesheets/pageflow/themes/default/page.css.scss +180 -42
  136. data/app/assets/stylesheets/pageflow/ui.css.scss +1 -0
  137. data/app/assets/stylesheets/pageflow/ui/forms.css.scss +11 -2
  138. data/app/assets/stylesheets/pageflow/ui/input/extended_select_input.css.scss +1 -0
  139. data/app/assets/stylesheets/pageflow/ui/tabs_view.css.scss +0 -3
  140. data/app/assets/stylesheets/pageflow/ui/tooltip.scss +57 -0
  141. data/app/controllers/concerns/pageflow/entry_password_protection.rb +13 -0
  142. data/app/controllers/pageflow/chapters_controller.rb +24 -9
  143. data/app/controllers/pageflow/edit_locks_controller.rb +2 -2
  144. data/app/controllers/pageflow/editor/files_controller.rb +0 -2
  145. data/app/controllers/pageflow/editor/widgets_controller.rb +1 -1
  146. data/app/controllers/pageflow/entries_controller.rb +5 -9
  147. data/app/controllers/pageflow/files_controller.rb +3 -0
  148. data/app/controllers/pageflow/storylines_controller.rb +69 -0
  149. data/app/helpers/pageflow/admin/features_helper.rb +17 -6
  150. data/app/helpers/pageflow/admin/widgets_helper.rb +18 -0
  151. data/app/helpers/pageflow/audio_files_helper.rb +2 -2
  152. data/app/helpers/pageflow/common_entry_seed_helper.rb +52 -0
  153. data/app/helpers/pageflow/entries_helper.rb +7 -1
  154. data/app/helpers/pageflow/entry_json_seed_helper.rb +27 -10
  155. data/app/helpers/pageflow/meta_tags_helper.rb +11 -0
  156. data/app/helpers/pageflow/page_types_helper.rb +9 -5
  157. data/app/helpers/pageflow/pages_helper.rb +9 -96
  158. data/app/helpers/pageflow/public_i18n_helper.rb +13 -0
  159. data/app/helpers/pageflow/social_share_helper.rb +1 -1
  160. data/app/helpers/pageflow/video_files_helper.rb +133 -0
  161. data/app/helpers/pageflow/widgets_helper.rb +3 -9
  162. data/app/models/concerns/pageflow/feature_target.rb +21 -3
  163. data/app/models/concerns/pageflow/hosted_file.rb +4 -0
  164. data/app/models/pageflow/account.rb +2 -2
  165. data/app/models/pageflow/chapter.rb +4 -4
  166. data/app/models/pageflow/chapter_scaffold.rb +33 -0
  167. data/app/models/pageflow/cname_theming_request_scope.rb +7 -1
  168. data/app/models/pageflow/draft_entry.rb +13 -2
  169. data/app/models/pageflow/edit_lock.rb +2 -2
  170. data/app/models/pageflow/entry.rb +3 -2
  171. data/app/models/pageflow/image_file.rb +6 -0
  172. data/app/models/pageflow/published_entry.rb +13 -2
  173. data/app/models/pageflow/revision.rb +17 -4
  174. data/app/models/pageflow/storyline.rb +23 -0
  175. data/app/models/pageflow/storyline_scaffold.rb +27 -0
  176. data/app/models/pageflow/theming.rb +4 -0
  177. data/app/models/pageflow/widget.rb +16 -12
  178. data/app/views/admin/accounts/_form.html.erb +8 -12
  179. data/app/views/admin/accounts/_widgets_inline_help.html.erb +5 -0
  180. data/app/views/layouts/pageflow/application.html.erb +4 -1
  181. data/app/views/pageflow/admin/widgets/_fields.html.erb +9 -0
  182. data/app/views/pageflow/config/_editor_seeds.json.jbuilder +1 -1
  183. data/app/views/pageflow/editor/entries/_entry.json.jbuilder +2 -2
  184. data/app/views/pageflow/editor/entries/_other_entry.json.jbuilder +1 -0
  185. data/app/views/pageflow/editor/entries/index.json.jbuilder +1 -1
  186. data/app/views/pageflow/editor/entries/seed.json.erb +4 -1
  187. data/app/views/pageflow/editor/files/_file.json.jbuilder +4 -0
  188. data/app/views/pageflow/editor/themings/_theming.json.jbuilder +1 -0
  189. data/app/views/pageflow/entries/_entry.html.erb +2 -2
  190. data/app/views/pageflow/entries/_ie8_hint.html.erb +2 -2
  191. data/app/views/pageflow/entries/_indicators.html.erb +3 -3
  192. data/app/views/pageflow/entries/_mobile_navigation.html.erb +6 -5
  193. data/app/views/pageflow/entries/_multimedia_alert.html.erb +6 -6
  194. data/app/views/pageflow/entries/_non_js_hint.html.erb +1 -1
  195. data/app/views/pageflow/entries/_skip_links.html.erb +3 -3
  196. data/app/views/pageflow/entries/edit.html.erb +4 -2
  197. data/app/views/pageflow/entries/navigation/_bar_bottom.html.erb +6 -5
  198. data/app/views/pageflow/entries/navigation/_bar_top.html.erb +13 -13
  199. data/app/views/pageflow/entries/navigation/_home_button.html.erb +2 -2
  200. data/app/views/pageflow/entries/navigation/_page.html.erb +1 -1
  201. data/app/views/pageflow/entries/overview/_chapter.html.erb +1 -1
  202. data/app/views/pageflow/entries/overview/_entry.html.erb +7 -6
  203. data/app/views/pageflow/entries/share_menu/_facebook_link.html.erb +1 -1
  204. data/app/views/pageflow/entries/share_menu/_google_link.html.erb +1 -1
  205. data/app/views/pageflow/entries/share_menu/_twitter_link.html.erb +1 -1
  206. data/app/views/pageflow/entries/show.html.erb +4 -1
  207. data/app/views/pageflow/file_types/_thumbnails.css.erb +2 -0
  208. data/app/views/pageflow/meta_tags/_entry.html.erb +4 -0
  209. data/app/views/pageflow/pages/_page.html.erb +2 -2
  210. data/app/views/pageflow/pages/templates/_audio.html.erb +2 -2
  211. data/app/views/pageflow/pages/templates/_audio_loop.html.erb +1 -1
  212. data/app/views/pageflow/pages/templates/_background_video.html.erb +8 -3
  213. data/app/views/pageflow/pages/templates/_video.html.erb +9 -4
  214. data/app/views/pageflow/public_i18n/_javascript_tag.html.erb +5 -0
  215. data/app/views/pageflow/social_share/_entry_meta_tags.html.erb +1 -1
  216. data/app/views/pageflow/video_files/_script_tag.html.erb +3 -0
  217. data/app/views/pageflow/video_files/_video_file.html.erb +4 -1
  218. data/app/views/pageflow/video_files/_video_tag.html.erb +7 -0
  219. data/config/initializers/admin_resource_tabs.rb +1 -0
  220. data/config/initializers/features.rb +3 -1
  221. data/config/initializers/paperclip.rb +5 -0
  222. data/config/locales/de.yml +205 -601
  223. data/config/locales/en.yml +198 -405
  224. data/config/routes.rb +10 -2
  225. data/db/migrate/20150826125417_create_pageflow_storylines.rb +12 -0
  226. data/db/migrate/20150826125744_add_storyline_id_to_chapters.rb +6 -0
  227. data/db/migrate/20150826125745_insert_main_storylines.rb +28 -0
  228. data/db/migrate/20150830105831_remove_revision_id_from_chapters.rb +5 -0
  229. data/db/migrate/20150830110006_remove_entry_id_from_chapters.rb +5 -0
  230. data/db/migrate/20160201130118_add_additional_cnames_to_themings.rb +5 -0
  231. data/db/migrate/20160216130336_add_meta_fields_to_revision.rb +7 -0
  232. data/lib/generators/pageflow/initializer/templates/pageflow.rb +7 -0
  233. data/lib/pageflow/ability_mixin.rb +7 -1
  234. data/lib/pageflow/configuration.rb +27 -2
  235. data/lib/pageflow/engine.rb +4 -1
  236. data/lib/pageflow/features.rb +24 -0
  237. data/lib/pageflow/global_config_api.rb +1 -0
  238. data/lib/pageflow/seeds.rb +4 -2
  239. data/lib/pageflow/theme.rb +4 -0
  240. data/lib/pageflow/version.rb +1 -1
  241. data/spec/factories/chapters.rb +6 -3
  242. data/spec/factories/storylines.rb +13 -0
  243. metadata +1021 -928
  244. data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.eot +0 -0
  245. data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.svg +0 -768
  246. data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.ttf +0 -0
  247. data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.woff +0 -0
  248. data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.eot +0 -0
  249. data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.svg +0 -968
  250. data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.ttf +0 -0
  251. data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.woff +0 -0
  252. data/app/assets/fonts/pageflow/thesansboldplain.eot +0 -0
  253. data/app/assets/fonts/pageflow/thesansboldplain.svg +0 -228
  254. data/app/assets/fonts/pageflow/thesansboldplain.ttf +0 -0
  255. data/app/assets/fonts/pageflow/thesansboldplain.woff +0 -0
  256. data/app/assets/fonts/pageflow/thesanssemiboldplain.eot +0 -0
  257. data/app/assets/fonts/pageflow/thesanssemiboldplain.svg +0 -228
  258. data/app/assets/fonts/pageflow/thesanssemiboldplain.ttf +0 -0
  259. data/app/assets/fonts/pageflow/thesanssemiboldplain.woff +0 -0
  260. data/app/assets/javascripts/pageflow/browser/hashchange_support.js +0 -8
  261. data/app/assets/javascripts/pageflow/widgets/button.js +0 -22
  262. data/app/views/layouts/pageflow/_meta_tags.html.erb +0 -5
  263. data/app/views/pageflow/pages/_video_tag.html.erb +0 -13
@@ -4,14 +4,14 @@ en:
4
4
  message: You are not authorized to perform this action.
5
5
  any: Any
6
6
  batch_actions:
7
- action_label: ! '%{title} Selected'
7
+ action_label: "%{title} Selected"
8
8
  button_label: Batch Actions
9
9
  default_confirmation: Are you sure you want to do this?
10
10
  delete_confirmation: Are you sure you want to delete these %{plural_model}?
11
11
  labels:
12
12
  destroy: Delete
13
13
  link: Create one
14
- selection_toggle_explanation: (Toggle Selection)
14
+ selection_toggle_explanation: "(Toggle Selection)"
15
15
  succesfully_destroyed:
16
16
  one: Successfully destroyed 1 %{model}
17
17
  other: Successfully destroyed %{count} %{plural_model}
@@ -41,7 +41,7 @@ en:
41
41
  delete: Delete
42
42
  delete_confirmation: Are you sure you want to delete this?
43
43
  delete_model: Delete %{model}
44
- details: ! '%{model} Details'
44
+ details: "%{model} Details"
45
45
  devise:
46
46
  change_password:
47
47
  submit: Change my password
@@ -77,7 +77,7 @@ en:
77
77
  title: Resend unlock instructions
78
78
  username:
79
79
  title: Username
80
- download: ! 'Download:'
80
+ download: 'Download:'
81
81
  dropdown_actions:
82
82
  button_label: Actions
83
83
  edit: Edit
@@ -118,13 +118,13 @@ en:
118
118
  multiple: Displaying %{model} <b>%{from}&nbsp;-&nbsp;%{to}</b> of <b>%{total}</b> in total
119
119
  multiple_without_total: Displaying %{model} <b>%{from}&nbsp;-&nbsp;%{to}</b>
120
120
  one_page: Displaying <b>all %{n}</b> %{model}
121
- powered_by: ! ' '
121
+ powered_by: " "
122
122
  previous: Previous
123
123
  scopes:
124
124
  frozen: All
125
125
  publications: Only published
126
126
  publications_and_user_snapshots: Only published/snapshots
127
- search_field: ! 'Search %{field} '
127
+ search_field: 'Search %{field} '
128
128
  sidebars:
129
129
  filters: Filters
130
130
  folders: Folders
@@ -163,21 +163,24 @@ en:
163
163
  duration: Duration
164
164
  format: Format
165
165
  pageflow/chapter:
166
- display_parent_page_button: Display parent page button
166
+ display_parent_page_button: Display 'Parent Page'-Button
167
167
  navigation_bar_mode: Navigation Bar
168
168
  parent_page_perma_id: Parent Page
169
169
  title: Title
170
170
  pageflow/entry:
171
171
  account: Account
172
+ author: Author
172
173
  created_at: Created at
173
174
  credits: Credits
174
175
  emphasize_chapter_beginning: Emphasize chapter beginning
175
176
  emphasize_new_pages: Emphasize new pages
176
177
  home_button_enabled: Show 'Home' button
177
- home_url: ! '''Home'' Button URL'
178
+ home_url: "'Home' Button URL"
179
+ keywords: Keywords
178
180
  locale: Language
179
181
  manual_start: Show Instruction-Overlay
180
182
  published?: Publication state
183
+ publisher: Publisher
181
184
  share_image_id: Social Sharing Image
182
185
  summary: Summary
183
186
  title: Title
@@ -233,10 +236,11 @@ en:
233
236
  published_until: Published until
234
237
  updated_at: Updated at
235
238
  pageflow/theming:
239
+ additional_cnames: Additional CNAMES
236
240
  cname: CNAME
237
241
  copyright_link_label: Copyright link Text
238
242
  copyright_link_url: Copyright link URL
239
- home_button_enabled_by_default: ! '''Home''-Button enabled by default'
243
+ home_button_enabled_by_default: "'Home'-Button enabled by default"
240
244
  home_url: Redirect URL
241
245
  imprint_link_label: Imprint link label
242
246
  imprint_link_url: Imprint link URL
@@ -263,7 +267,7 @@ en:
263
267
  password: Password
264
268
  password_confirmation: Password confirmation
265
269
  role: Role
266
- sign_in_count: ! '# of sign ins'
270
+ sign_in_count: "# of sign ins"
267
271
  suspended?: Suspended
268
272
  unconfirmed_email: Unconfirmed Email
269
273
  errors:
@@ -370,7 +374,7 @@ en:
370
374
  no_fade: No fade in
371
375
  short: Short delay
372
376
  linked_pages_layout:
373
- default: (none)
377
+ default: "(none)"
374
378
  hero_top_left: Top left
375
379
  hero_top_right: Top right
376
380
  scroll_indicator_mode:
@@ -426,9 +430,9 @@ en:
426
430
  - Friday
427
431
  - Saturday
428
432
  formats:
429
- default: ! '%Y-%m-%d'
430
- long: ! '%B %d, %Y'
431
- short: ! '%b %d'
433
+ default: "%Y-%m-%d"
434
+ long: "%B %d, %Y"
435
+ short: "%b %d"
432
436
  month_names:
433
437
  -
434
438
  - January
@@ -473,16 +477,16 @@ en:
473
477
  other: over %{count} years
474
478
  x_days:
475
479
  one: 1 day
476
- other: ! '%{count} days'
480
+ other: "%{count} days"
477
481
  x_minutes:
478
482
  one: 1 minute
479
- other: ! '%{count} minutes'
483
+ other: "%{count} minutes"
480
484
  x_months:
481
485
  one: 1 month
482
- other: ! '%{count} months'
486
+ other: "%{count} months"
483
487
  x_seconds:
484
488
  one: 1 second
485
- other: ! '%{count} seconds'
489
+ other: "%{count} seconds"
486
490
  prompts:
487
491
  day: Day
488
492
  hour: Hour
@@ -560,7 +564,7 @@ en:
560
564
  send_paranoid_instructions: If your account exists, you will receive an email with instructions about how to unlock it in a few minutes.
561
565
  unlocked: Your account has been unlocked successfully. Please sign in to continue.
562
566
  errors:
563
- format: ! '%{attribute} %{message}'
567
+ format: "%{attribute} %{message}"
564
568
  messages:
565
569
  accepted: must be accepted
566
570
  already_confirmed: was already confirmed, please try signing in
@@ -602,7 +606,7 @@ en:
602
606
  other: must be other than %{count}
603
607
  present: must be blank
604
608
  readonly: readonly
605
- record_invalid: ! 'Validation failed: %{errors}'
609
+ record_invalid: 'Validation failed: %{errors}'
606
610
  restrict_dependent_destroy:
607
611
  many: Cannot delete record because dependent %{record} exist
608
612
  one: Cannot delete record because a dependent %{record} exists
@@ -617,18 +621,18 @@ en:
617
621
  one: is the wrong length (should be 1 character)
618
622
  other: is the wrong length (should be %{count} characters)
619
623
  template:
620
- body: ! 'There were problems with the following fields:'
624
+ body: 'There were problems with the following fields:'
621
625
  header:
622
626
  one: 1 error prohibited this %{model} from being saved
623
- other: ! '%{count} errors prohibited this %{model} from being saved'
627
+ other: "%{count} errors prohibited this %{model} from being saved"
624
628
  formtastic:
625
629
  cancel: Cancel
626
- create: ! 'Create %{model} '
630
+ create: 'Create %{model} '
627
631
  'no': 'No'
628
632
  required: required
629
- reset: ! 'Reset %{model} '
630
- submit: ! 'Submit %{model} '
631
- update: ! 'Update %{model} '
633
+ reset: 'Reset %{model} '
634
+ submit: 'Submit %{model} '
635
+ update: 'Update %{model} '
632
636
  'yes': 'Yes'
633
637
  helpers:
634
638
  select:
@@ -641,22 +645,22 @@ en:
641
645
  number:
642
646
  currency:
643
647
  format:
644
- delimiter: ! ','
645
- format: ! '%u%n'
648
+ delimiter: ","
649
+ format: "%u%n"
646
650
  precision: 2
647
- separator: .
651
+ separator: "."
648
652
  significant: false
649
653
  strip_insignificant_zeros: false
650
- unit: $
654
+ unit: "$"
651
655
  format:
652
- delimiter: ! ','
656
+ delimiter: ","
653
657
  precision: 3
654
- separator: .
658
+ separator: "."
655
659
  significant: false
656
660
  strip_insignificant_zeros: false
657
661
  human:
658
662
  decimal_units:
659
- format: ! '%n %u'
663
+ format: "%n %u"
660
664
  units:
661
665
  billion:
662
666
  one: Billion
@@ -669,12 +673,12 @@ en:
669
673
  trillion: Trillion
670
674
  unit: Unit
671
675
  format:
672
- delimiter: ! ','
676
+ delimiter: ","
673
677
  precision: 3
674
678
  significant: true
675
679
  strip_insignificant_zeros: true
676
680
  storage_units:
677
- format: ! '%n %u'
681
+ format: "%n %u"
678
682
  units:
679
683
  byte:
680
684
  one: Byte
@@ -685,16 +689,17 @@ en:
685
689
  tb: TB
686
690
  percentage:
687
691
  format:
688
- delimiter: ! ','
689
- format: ! '%n%'
692
+ delimiter: ","
693
+ format: "%n%"
690
694
  precision:
691
695
  format:
692
- delimiter: ! ','
696
+ delimiter: ","
693
697
  pageflow:
694
698
  admin:
695
699
  accounts:
696
700
  no_entries: No Stories
697
701
  no_members: No members
702
+ widgets_inline_help: The widgets selected here will be used as defaults for new entries in this account. Changes do not affect existing entries.
698
703
  entries:
699
704
  add_folder: Add folder
700
705
  confirm_depublish: Unpublish this story?
@@ -707,7 +712,7 @@ en:
707
712
  edit_revision: Edit
708
713
  editor: Editor
709
714
  entries: Stories
710
- forever: (unlimited)
715
+ forever: "(unlimited)"
711
716
  members: Members
712
717
  no_members: No members assigned
713
718
  no_revisions: No versions yet
@@ -736,24 +741,28 @@ en:
736
741
  title_hint: This field determines the URL for this story.
737
742
  features:
738
743
  states:
744
+ default: Default (%{inherited})
739
745
  disabled: Disabled
740
746
  enabled: Enabled
741
- undefined: (Default)
747
+ undefined: "(Default)"
742
748
  folders:
743
749
  all: All
744
- confirm_destroy: ! 'Delete folder? Note: Containing stories will be preserved.'
750
+ confirm_destroy: 'Delete folder? Note: Containing stories will be preserved.'
745
751
  destroy: Delete
746
752
  edit: Edit
747
753
  resource_tabs:
748
754
  entries: Stories
755
+ features: Features
749
756
  members: Members
750
757
  revisions: Versions
751
758
  users: User
752
759
  revisions:
753
760
  published_until_hint: Leave blank to publish indefinitely.
754
761
  themings:
755
- cname_hint: For social sharing
756
- name: ! '%{account_name}'
762
+ additional_cnames_hint: Comma separated list of additional CNAMES. Used only to select the correct redirect URL.
763
+ cname_hint: Used in public sharing URLs.
764
+ home_url_hint: Used for requests to the root path with one of the above CNAMES. Default target location for the home button.
765
+ name: "%{account_name}"
757
766
  remove_logo: Remove logo
758
767
  show: View
759
768
  users:
@@ -769,7 +778,7 @@ en:
769
778
  deleted: This user was deleted.
770
779
  edit: Edit
771
780
  email_invitation_hint: The user will be invited to choose a password.
772
- empty: ! 'This user has no associated stories. '
781
+ empty: 'This user has no associated stories. '
773
782
  invite_user: Invite user
774
783
  me:
775
784
  change_password_hint: Leave blank to keep your current password.
@@ -788,7 +797,7 @@ en:
788
797
  admin: System-Administrator
789
798
  editor: Editor
790
799
  suspend: Suspend
791
- suspended: ! 'The user was suspended and will not be able to sign-in again. '
800
+ suspended: 'The user was suspended and will not be able to sign-in again. '
792
801
  unsuspend: Unsuspend
793
802
  unsuspended: The user was unsuspended.
794
803
  atmo:
@@ -818,6 +827,16 @@ en:
818
827
  page_type_description: Video player with controls
819
828
  chapter_hierachy:
820
829
  feature_name: Chapter Hierachy
830
+ common_page_link_attributes:
831
+ label:
832
+ inline_help: Choose a label to recognize the link within the overview. This label is for your orientation only and will not be displayed to the reader.
833
+ label: Label
834
+ page_transition:
835
+ inline_help: Choose the animation, that will be used to transition to the link's target page.
836
+ label: Page transition
837
+ target_page_id:
838
+ inline_help: Users will get to this page when clicking the link.
839
+ label: Target page
821
840
  delayed_text_fade_in:
822
841
  feature_name: Delayed text fade in
823
842
  devise:
@@ -828,18 +847,18 @@ en:
828
847
  salutation: Hello %{first_name}
829
848
  edit_locks:
830
849
  break_action:
831
- aquire: Continue here
850
+ acquire: Continue here
832
851
  errors:
833
852
  held_by_other_session_error:
834
- aquire_html: <p>This story is already open in another editor window.</p>
835
- other_html: ! '<p>This story is already open in another editor window. Please reload this page and click on the ''Continue here'' button.</p>
836
-
837
- <p>If you continue working without reload, data loss may occur.</p>'
853
+ acquire_html: "<p>This story is already open in another editor window.</p>"
854
+ other_html: |-
855
+ <p>This story is already open in another editor window. Please reload this page and click on the 'Continue here' button.</p>
856
+ <p>If you continue working without reload, data loss may occur.</p>
838
857
  held_by_other_user_error:
839
- 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>
840
- 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>
858
+ acquire_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>"
859
+ 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>"
841
860
  not_held_error:
842
- 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>
861
+ 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>"
843
862
  required: This action cannot be executed because this story has been opened in another editor session.
844
863
  required_but_held_by_other_user: This action cannot be executed because this story has been opened by another user.
845
864
  editor:
@@ -908,7 +927,7 @@ en:
908
927
  new_page: New page
909
928
  save_error: Errors were detected while saving this chapter.
910
929
  confirm_encoding:
911
- all_released: ! 'All files have been scheduled for encoding. '
930
+ all_released: 'All files have been scheduled for encoding. '
912
931
  audios_tab: Audios
913
932
  confirm_button: Encode selected files
914
933
  link_to_progress: The %{link} page shows encoding progress.
@@ -925,8 +944,6 @@ en:
925
944
  close: Close
926
945
  manage_files: Manage files
927
946
  metadata: Title and options
928
- new_chapter: New chapter
929
- outline: Outline
930
947
  publish: Publish
931
948
  save_error: There were errors while saving metadata.
932
949
  edit_meta_data:
@@ -938,6 +955,14 @@ en:
938
955
  outline: Outline
939
956
  retry: Retry
940
957
  save_error: There were errors while saving page.
958
+ edit_page_link:
959
+ back: Back
960
+ destroy: Delete
961
+ edit_storyline:
962
+ destroy: Delete
963
+ outline: Outline
964
+ retry: Retry
965
+ save_error: Errors were detected while saving the storyline.
941
966
  embedded:
942
967
  page_link:
943
968
  reset: Reset
@@ -972,7 +997,7 @@ en:
972
997
  edit: Edit
973
998
  reset: Reset
974
999
  list_blank_slate:
975
- text: (No items)
1000
+ text: "(No items)"
976
1001
  list_item:
977
1002
  edit: Edit
978
1003
  remove: Delete
@@ -983,7 +1008,7 @@ en:
983
1008
  loading: Loading story. Please wait...
984
1009
  open_here: Continue here
985
1010
  notification:
986
- approve_files: ! '%{num_files} files awaiting confirmation for the encoding process.'
1011
+ approve_files: "%{num_files} files awaiting confirmation for the encoding process."
987
1012
  retry: Retry
988
1013
  save_error: There were errors while saving changes.
989
1014
  saved: All changes have been saved.
@@ -996,6 +1021,7 @@ en:
996
1021
  save_error: There were errors while saving page.
997
1022
  page_link_item:
998
1023
  edit: Edit page
1024
+ remove: Delete
999
1025
  page_links:
1000
1026
  add: Add
1001
1027
  label: Linked pages
@@ -1017,7 +1043,7 @@ en:
1017
1043
  publish_current: Publish current version
1018
1044
  publish_success: Your story has been sucessfully published.
1019
1045
  published_notice: A version of this story is currently published.
1020
- published_url_hint: ! 'It can be accessed using following URL:'
1046
+ published_url_hint: 'It can be accessed using following URL:'
1021
1047
  show_files: Show files
1022
1048
  time: Time
1023
1049
  unlimited: indefinitely
@@ -1026,17 +1052,29 @@ en:
1026
1052
  view_revisions: View versions
1027
1053
  select_button:
1028
1054
  select: Select
1055
+ storyline_outline:
1056
+ header: Outline
1057
+ new_chapter: New chapter
1058
+ storyline_picker:
1059
+ add: Add
1060
+ edit: Edit settings
1029
1061
  views:
1030
1062
  chapter_item_view:
1031
1063
  chapter: Chapter
1032
- unnamed: (New chapter)
1064
+ unnamed: "(New chapter)"
1033
1065
  edit_chapter_view:
1034
- confirm_destroy: ! 'Really delete this chapter including ALL its pages?
1035
-
1066
+ confirm_destroy: |-
1067
+ Really delete this chapter including ALL its pages?
1036
1068
 
1037
- This operation cannot be undone.'
1069
+ This operation cannot be undone.
1070
+ edit_page_link_view:
1071
+ default_page_transition: "(Default)"
1038
1072
  edit_page_view:
1039
1073
  confirm_destroy: Really delete this page?
1074
+ edit_storyline_view:
1075
+ cannot_destroy: Only empty storylines can be deleted.
1076
+ confirm_destroy: Really delete storyline
1077
+ default_parent_page_transition: "(Default)"
1040
1078
  editor_views:
1041
1079
  files_pending_warning: You are currently uploading files. All uploads will be canceled if you leave this page.
1042
1080
  hide_editor: Hide editor panel
@@ -1050,532 +1088,275 @@ en:
1050
1088
  upload: Upload
1051
1089
  inputs:
1052
1090
  reference_input_view:
1053
- none: (None)
1091
+ none: "(None)"
1054
1092
  page_item_view:
1055
- unnamed: (New page)
1093
+ unnamed: "(New page)"
1056
1094
  page_link_item_view:
1057
- no_page: (No page)
1058
- unnamed: (No title)
1059
- entries:
1060
- entry:
1061
- print_logo: Logo
1062
- scroll_indicator: Scroll down to continue
1063
- swipe_indicator: Swipe to continue
1064
- ie8_hint:
1065
- close: Close
1066
- deprecated_browser: <p>Your browser is outdated and this page might not work as intended. We recommend upgrading to a current browser version.</p>
1067
- mobile_navigation:
1068
- imprint: Imprint
1069
- overview: Overview
1070
- share_with_twitter: Tweet
1071
- multimedia_alert:
1072
- alert: Alert
1073
- close: Continue
1074
- scroll_hint: Use the mouse wheel or the arrow keys on your keyboard to navigate between pages.
1075
- sound_hint: This multimedia story format uses video and audio footage. Please make sure your speakers are turned on.
1076
- swipe_hint: Swipe to navigate between pages.
1077
- navigation:
1078
- bar_bottom:
1079
- close_fullscreen: Exit fullscreen mode
1080
- hide_text: Hide text
1081
- mute_off: Unmute
1082
- mute_on: Mute
1083
- open_fullscreen: Fullscreen mode
1084
- scroll_down: Scroll down
1085
- show_text: Show text
1086
- volume: Volume
1087
- bar_top:
1088
- close_overview: Close overview
1089
- close_top_navigation: Close navigation
1090
- imprint: Imprint
1091
- navigate_top: Goto first page
1092
- open_overview: Overview
1093
- open_top_navigation: Open navigation
1094
- scroll_up: Scroll up
1095
- share: Share
1096
- share_with_facebook: Share on Facebook
1097
- share_with_twitter: Tweet
1098
- home_button:
1099
- show_home: Start
1100
- non_js_hint:
1101
- js_hint: This application utilizes JavaScript for enhanced functionality and user experience. Your browser may not have JavaScript or it may be disabled.
1102
- overview:
1103
- chapter:
1104
- chapter: Chapter
1105
- entry:
1106
- close: Close
1107
- overview: Overview
1108
- scroll_left: Scroll left
1109
- scroll_right: Scroll right
1110
- skip_links:
1111
- goto_content: Goto content
1112
- goto_navigation: Goto navigation
1113
- goto_topnavigation: Goto main navigation
1095
+ no_page: "(No page)"
1096
+ unnamed: "(No title)"
1097
+ storylines_picker_view:
1098
+ label: Storyline
1099
+ without_parent_page: Without parent page
1114
1100
  entry:
1115
1101
  duplicated_title: Copy of %{title}
1116
1102
  help_entries:
1117
1103
  atmo:
1118
1104
  menu_item: Atmo Audio
1119
- text: ! '# Atmo Audio
1105
+ text: |-
1106
+ # Atmo Audio
1120
1107
 
1121
1108
  This feature lets you add background audio to every page regardless of its page type. You can define if a sound should play only for one page or continue playing for more pages without interruption. Simply select the same atmo audio file for some adjacent pages.
1122
1109
 
1123
-
1124
1110
  That way chapters can be seperated acoustically and pages that belong together can be weaved to a stronger unit.
1125
1111
 
1126
-
1127
1112
  For the page type „Video“ there is a special option to pause background audio or continue at lower volume while the video is playing.
1128
1113
 
1129
-
1130
1114
  You find the atmo settings on the „Options“ tab of each page.
1131
1115
 
1116
+ Should you ever feel distracted by the atmo audio while working on your entry, you can use the hot key „Alt + a“ to temporarily mute it. Simply press „Alt + a“ again to reactivate atmo audio.
1132
1117
 
1133
- Should you ever feel distracted by the atmo audio while working on your entry, you can use the hot key „Alt + a“ to temporarily mute it. Simply press „Alt + a“ again to reactivate atmo audio. '
1118
+ CAUTION: Atmo audio does not play on mobile devices.
1134
1119
  built_in_page_type:
1135
1120
  audio:
1136
1121
  menu_item: Audio
1137
- text: ! '# Audio
1138
-
1139
-
1140
- Playing audio-files with controls
1141
-
1142
-
1143
- Here you can combine audio-files with pictures and
1144
-
1145
- text-content. Controls similar to the page type „Video“
1146
-
1147
- are shown. In addition to that you can write a
1148
-
1149
- description into an „Infobox“.
1150
-
1151
-
1152
- Examples of application: interviews, direct quotes, music
1153
-
1154
- '
1122
+ text: "# Audio\n\n*Playing audio-files with controls*\n \nHere you can combine audio-files with pictures and\ntext-content. Controls similar to the page type „Video“\nare shown. In addition to that you can write a\ndescription into an „Infobox“.\n\nExamples of application: interviews, direct quotes, music"
1155
1123
  audio_loop:
1156
1124
  menu_item: Audio Loop
1157
- text: ! '# Audio Loop
1158
-
1159
-
1160
- Playing an audio-loop without control (Ambience)
1161
-
1162
-
1163
- A full-screen photo is shown as a „Background-Image“. The
1164
-
1165
- difference to the normal Audio-Page is that the user
1166
-
1167
- cannot influence the audio-file by controlling it. Instead
1168
-
1169
- it is an endless-loop.
1170
-
1171
-
1172
- Typical examples of application: Ambience, soundscape, field-recordings
1173
-
1174
- '
1125
+ text: "# Audio Loop\n\n*Playing an audio-loop without control (Ambience)*\n \nA full-screen photo is shown as a „Background-Image“. The\ndifference to the normal Audio-Page is that the user\ncannot influence the audio-file by controlling it. Instead\nit is an endless-loop.\n\nTypical examples of application: Ambience, soundscape, field-recordings"
1175
1126
  background_image:
1176
1127
  menu_item: Background Image
1177
- text: ! '# Background Image
1178
-
1128
+ text: |-
1129
+ # Background Image
1179
1130
 
1180
1131
  Full-screen image and text
1181
1132
 
1182
-
1183
1133
  By using the page type „Background-Image“, large pictures
1184
-
1185
1134
  are the background for the text and are paired with a
1186
-
1187
1135
  manually adjustable color gradient for an optimal
1188
-
1189
1136
  legibility. In order to have an optimal presentation on
1190
-
1191
1137
  mobile devices you can adjust the image detail to the
1192
-
1193
1138
  display. Optionally the text color can be inverted. This
1194
-
1195
1139
  is especially useful for bright background-images.
1196
1140
 
1197
-
1198
1141
  Users are able to hide the color-gradient and text in
1199
-
1200
1142
  the front-end, if they want to have a view of the
1201
-
1202
1143
  background-image.
1203
1144
 
1204
-
1205
1145
  Examples: Presentation, part of a picture gallery,
1206
-
1207
- portrait'
1146
+ portrait
1208
1147
  background_video:
1209
1148
  menu_item: Background Video
1210
- text: ! '# Background Video
1211
-
1212
-
1213
- Full-screen video played in a loop without control
1214
-
1215
-
1216
- This type of page is comparable to „Background-Image“. But
1217
-
1218
- instead of an image, a video is shown in the
1219
-
1220
- background. This video starts automatically and is played
1221
-
1222
- without control. Thus the user cannot influence the start
1223
-
1224
- and stop of the video. Since the video is played in an
1225
-
1226
- endless-loop, it should be long enough and it should have
1227
-
1228
- a proper crossover. The same applies to the soundtrack.
1229
-
1230
-
1231
- As a hint for the use of Pageflow on a smartphone: In
1232
-
1233
- order to prevent unintended data consumption, the video is
1234
-
1235
- not played on smartphones. Instead a poster-image is
1236
-
1237
- shown, which is generated automatically. You can however
1238
-
1239
- also choose the image yourself.
1240
-
1241
-
1242
- Examples of application: intro, chapter cross-fade,
1243
-
1244
- ambience
1245
-
1246
- '
1149
+ text: "# Background Video\n\n*Full-screen video played in a loop without control* \n \nThis type of page is comparable to „Background-Image“. But\ninstead of an image, a video is shown in the\nbackground. This video starts automatically and is played\nwithout control. Thus the user cannot influence the start\nand stop of the video. Since the video is played in an\nendless-loop, it should be long enough and it should have\na proper crossover. The same applies to the soundtrack.\n\nAs a hint for the use of Pageflow on a smartphone: In\norder to prevent unintended data consumption, the video is\nnot played on smartphones. Instead a poster-image is\nshown, which is generated automatically. You can however\nalso choose the image yourself.\n\nExamples of application: intro, chapter cross-fade,\nambience"
1247
1150
  internal_links:
1248
1151
  menu_item: Internal Links
1249
- text: ! '# Internal Links
1250
-
1152
+ text: |
1153
+ # Internal Links
1251
1154
 
1252
1155
  References to other pages inside a Pageflow
1253
1156
 
1254
-
1255
1157
  In contrast to external link, you can link to pages inside
1256
-
1257
1158
  your Pageflow. This page type helps you guide your users
1258
-
1259
1159
  through your Pageflow.
1260
1160
 
1261
-
1262
1161
  Examples of application: Welcome page, chapter homepage
1263
-
1264
- '
1265
1162
  video:
1266
1163
  menu_item: Video
1267
- text: ! "# Video\n\nPlaying a video with control\n\nIn contrast to „Background-Videos“ the text elements fade\nout after a few seconds, in order to draw attention to the\nvideo. With controls the user can start and pause the\nvideo or even fast-forward and rewind it. You can choose\nwhether the video should start automatically as soon as\nthe page is opened.\n\nAs an alternative to the normal text input, you can write\na description into an „Infobox“ with text.\n\nOn the „Options“ tab you can activate auto-scrolling to the next page at the end of a video. \nThis can be useful to create a seamless transition.\n\nExamples of application: Videos of all kinds, interviews,\nportraits"
1164
+ text: "# Video\n\n*Playing a video with control*\n \nIn contrast to „Background-Videos“ the text elements fade\nout after a few seconds, in order to draw attention to the\nvideo. With controls the user can start and pause the\nvideo or even fast-forward and rewind it. You can choose\nwhether the video should start automatically as soon as\nthe page is opened.\n\nAs an alternative to the normal text input, you can write\na description into an „Infobox“ with text.\n\nOn the „Options“ tab you can activate auto-scrolling to the next page at the end of a video. \nThis can be useful to create a seamless transition.\n\nExamples of application: Videos of all kinds, interviews,\nportraits"
1268
1165
  files:
1269
1166
  menu_item: Manage Files
1270
- text: ! '# Manage Files
1271
-
1167
+ text: |
1168
+ # Manage Files
1272
1169
 
1273
1170
  Pageflow processes all major media formats (photo, audio,
1274
-
1275
1171
  video) and converts them into different formats and
1276
-
1277
1172
  qualities. The system adapts the quality of the media to the
1278
-
1279
1173
  internet connection and the end device of the user
1280
-
1281
1174
  automatically. In principle the files should be uploaded in
1282
-
1283
1175
  the optimal resolution and not be compressed beforehand. In
1284
-
1285
1176
  order to have a well-structured work-flow, it is helpful to
1286
-
1287
1177
  store all audio-files, background-video-loops, movies,
1288
-
1289
1178
  pictures and texts in the required version in a separate
1290
-
1291
1179
  file on your computer.
1292
1180
 
1293
-
1294
1181
  ## Upload and Manage Files
1295
1182
 
1296
-
1297
1183
  The menu item „Manage Files“ leads to the files, which have
1298
-
1299
1184
  already been uploaded. If you click „Add more“ and „Upload“
1300
-
1301
1185
  you can add more files.
1302
1186
 
1303
-
1304
1187
  After you have uploaded the files, they are processed on the
1305
-
1306
1188
  server. This can take a few minutes - especially if the
1307
-
1308
1189
  videos are long. Click on the thumbnail of a file, in order
1309
-
1310
1190
  to see its status. Moreover you can see the general features
1311
-
1312
1191
  like the size of the picture or length of an audio-file and
1313
-
1314
1192
  you can download the original file.
1315
1193
 
1316
-
1317
1194
  The files can already be used before the process is
1318
-
1319
1195
  finished. You can therefore continue your work during the
1320
-
1321
1196
  loading process.
1322
1197
 
1323
-
1324
1198
  ## Copyrights of Files
1325
1199
 
1326
-
1327
1200
  If you click on the thumbnail of a media file (picture,
1328
-
1329
1201
  video, audio), you can add information with regards to its
1330
-
1331
1202
  copyright. This information is shown automatically in the
1332
-
1333
1203
  legal notice.
1334
1204
 
1335
-
1336
1205
  ## Reuse Files
1337
1206
 
1338
-
1339
1207
  Videos, audio files and pictures can be used in more than
1340
-
1341
1208
  one article. Thus, videos, for example, do not have to be
1342
-
1343
1209
  uploaded several times. Click on „Manage Files“ and on
1344
-
1345
1210
  „Add“/„Reuse“, to search for files in other articles and add
1346
-
1347
1211
  them to a new one.
1348
-
1349
- '
1350
1212
  meta_data:
1351
1213
  menu_item: Title and Options
1352
- text: ! '# Title and Options
1353
-
1214
+ text: |
1215
+ # Title and Options
1354
1216
 
1355
1217
  ## General
1356
1218
 
1357
-
1358
1219
  ### Title of the Pageflow
1359
1220
 
1360
-
1361
1221
  Here you can choose a title for your Pageflow. It will be
1362
-
1363
1222
  shown on the title bar of the browser window. It also acts
1364
-
1365
1223
  as an indicator for search engines once the report is
1366
-
1367
1224
  published.
1368
1225
 
1369
-
1370
1226
  ### Language
1371
1227
 
1372
-
1373
1228
  Decide in which language your Pageflow should be
1374
-
1375
1229
  displayed. This refers to text which cannot be edited - like
1376
-
1377
1230
  multimedia tips, scroll-indicators, the overview and the
1378
-
1379
1231
  legal notice.
1380
1232
 
1381
-
1382
1233
  ## Appearance
1383
1234
 
1384
-
1385
1235
  ### Multimedia tips before the start
1386
1236
 
1387
-
1388
1237
  Decide if tips or advice should be shown at the beginning of
1389
-
1390
1238
  your Pageflow.
1391
1239
 
1392
-
1393
1240
  ### Highlighting chapter beginnings
1394
1241
 
1395
-
1396
1242
  This option lets the title of the first page of a chapter
1397
-
1398
1243
  appear in a bigger font.
1399
1244
 
1400
-
1401
1245
  ### Highlighting new pages
1402
1246
 
1403
-
1404
1247
  At the beginning of a Pageflow an info-box shows new pages
1405
-
1406
1248
  that were created since the last visit.
1407
1249
 
1408
-
1409
1250
  ### Display Home-Button
1410
1251
 
1411
-
1412
1252
  You can have a button in the navigation, which hyperlinks to
1413
-
1414
1253
  an external website, for example back to the website from
1415
-
1416
1254
  which you hyperlinked to the Pageflow.
1417
1255
 
1418
-
1419
1256
  ### Navigation
1420
1257
 
1421
-
1422
1258
  Choose between two forms of navigation: The navigation with
1423
-
1424
1259
  a progress bar or the navigation with thumbnails. Please
1425
-
1426
1260
  note, that due to the lack of space on mobile devices only
1427
-
1428
1261
  the icon „Overview“ is shown.
1429
1262
 
1430
-
1431
1263
  ## Social
1432
1264
 
1433
-
1434
1265
  ### Social Sharing Picture
1435
1266
 
1436
-
1437
1267
  Choose a picture, which should be shown, if your Pageflow is
1438
-
1439
1268
  shared in social networks.
1440
1269
 
1441
-
1442
1270
  ### Summary
1443
1271
 
1444
-
1445
1272
  Here you can write a description, which is shown, when your
1446
-
1447
1273
  Pageflow is shared in social networks.
1448
-
1449
- '
1450
1274
  outline:
1451
1275
  menu_item: Chapters and Pages
1452
- text: ! '# Chapters and Pages
1453
-
1276
+ text: |-
1277
+ # Chapters and Pages
1454
1278
 
1455
1279
  A Pageflow consists of at least one chapter with at least
1456
-
1457
1280
  one page. You can create as many chapters and pages as you
1458
-
1459
1281
  want. In order to create content, click:
1460
1282
 
1461
-
1462
1283
  1. „New Chapter“ to create a new chapter,
1463
-
1464
1284
  2. „New Page“ to add a page,
1465
-
1466
1285
  3. onto the new page, in order to edit the content.
1467
1286
 
1468
-
1469
1287
  ## Structuring Chapters
1470
1288
 
1471
-
1472
1289
  You can structure the composition of your Pageflow with
1473
-
1474
1290
  chapters - e.g. thematically or chronologically . The
1475
-
1476
1291
  chapters are shown in the overview and help the users find
1477
-
1478
1292
  their way around. It is therefore advisable to give each
1479
-
1480
1293
  chapter a title.
1481
1294
 
1482
-
1483
1295
  If you create an unnamed chapter, Pageflow acts as if there
1484
-
1485
1296
  is no structure of chapters. The chapter and the title of
1486
-
1487
1297
  this chapter are consequently not shown in the
1488
-
1489
- overview/navigation.'
1298
+ overview/navigation.
1490
1299
  overview:
1491
1300
  menu_item: Overview
1492
- text: ! '# Overview
1493
-
1301
+ text: |-
1302
+ # Overview
1494
1303
 
1495
1304
  This is Pageflow’s editing platform. The division of the
1496
-
1497
1305
  screen into two allows you to edit your Pageflow and see a
1498
-
1499
1306
  preview at the same time. The editor shows modifications and
1500
-
1501
1307
  newly selected files directly and saves them automatically.
1502
1308
 
1503
-
1504
1309
  The sidebar can be hidden or shown. You can change the size
1505
-
1506
1310
  of the preview-window by pulling the sidebar to the right or
1507
-
1508
1311
  the left. If the preview-window is long and narrow like ´ a
1509
-
1510
1312
  smartphone, you will only be able to see the „overview“ icon
1511
-
1512
1313
  and not the entire navigation. This is due to lack of space.
1513
1314
 
1514
-
1515
1315
  The navigation is divided into four parts:
1516
1316
 
1517
-
1518
1317
  ## Title and Options
1519
1318
 
1520
-
1521
1319
  Under „Title and Options“ you can set up basic appearance
1522
-
1523
1320
  parameters as well as the title, language and legal
1524
-
1525
1321
  notice. You can also decide which content should be
1526
-
1527
1322
  displayed when sharing the report on social media platforms.
1528
1323
 
1529
-
1530
1324
  For more details see: [Title and Options](#pageflow.help_entries.meta_data)
1531
1325
 
1532
-
1533
1326
  ## Manage Files
1534
1327
 
1535
-
1536
1328
  Under „Manage Files“ you can upload your media files, which
1537
-
1538
1329
  you want to use in Pageflow. Furthermore you can reuse
1539
-
1540
1330
  videos, photos and audio-files that have already been
1541
-
1542
1331
  uploaded.
1543
1332
 
1544
-
1545
1333
  For more details see: [Manage Files](#pageflow.help_entries.files)
1546
1334
 
1547
-
1548
1335
  ## Outline
1549
1336
 
1550
-
1551
1337
  Via the „Outline“ you can add chapters and pages - the
1552
-
1553
1338
  actual content. Per Drag and Drop you can resort the pages
1554
-
1555
1339
  and chapters any time.
1556
1340
 
1557
-
1558
- For more details see: [Chapter and Pages](#pageflow.help_entries.outline)'
1341
+ For more details see: [Chapter and Pages](#pageflow.help_entries.outline)
1559
1342
  page_options:
1560
1343
  menu_item: General Page Options
1561
- text: ! "# General Page Options\n\n### Title\n\nHere you can add the title of a particular page. This\ntitle is not only the headline of the text on the page, it\nalso functions as the title in the navigation and\noverview. If a single page is shared in social networks,\nthis title is also the title of the social media post.\n\n### Hide the title\n\nOptionally you can hide the title. Thus the title is not shown as the\nheading of the text body. For the identification of the page it\nremains visible in the navigation, overview and on social media posts.\n\n### Tagline and Subtitle\n\nHere you can optionally enter a tagline and/or a\nsubtitle. If you click on „Hide title“ the tagline and\nsubtitle are not shown either.\n\n### Text\n\nThe text-block can be formatted with the buttons underneath\nthe input field. [B= bold / I=italic / U=underlined /\ninfinity symbol= Link/URL to an external website]\n\nAll changes are visible in the left front-end-view as soon\nas you leave the appropriate input field in the editor.\n\n### Textposition\n\nDecide if the text should be shown on the left or right side.\n\n### Opacity of the gradient\n\nThe opacity of the gradient improves the legibility of\nthe text on background-videos or pictures.\n\nYou can use the slider to darken or lighten up the\nbackground until the contrast between text and background is\noptimal.\n\n### Invert colors\n\nIf you invert the colors, „bright“ and „dark“ are\ninterchanged. Thus the normally white font changes into\nblack.\n\nA general rule: Bright font for dark pictures, dark font for\nbright pictures.\n\n### Thumbnail\n\nThe thumbnail replaces the automatically generated\npreview-picture in the navigation and overview.\n\n### Display in navigation\n\nIf this option is not taken, the particular page is not\nrepresented in the navigation and therefore cannot be\nreached through it. You can use this option if a page is\nsupposed to read more like a subpage of another page.\n\n### Transition effect\n\nThere are two two different effects, which are visible when\nthe user scrolls or swipe to the next page: cross-fade or\nscrolling. You can determine which effect should be used for\neach individual page.\n\n### Fade in text after delay\n\nDefine whether text and gradient of a page should appear with a delay. \nUsers will first see the background image, then title, tagline and subtitle until finally the content text will be displayed.\n\nThere are three different durations of delay: short = 1 second, medium = 3 seconds, long = 5 seconds.\n\nThis feature fits best for intros or beginnings of chapters.\n\n### Description for the overview\n\nYou can enter a text, which appears when the user navigates\nwith the mouse over the particular page. This text matches\nwith the mouse-over-text for the page-type „Page References“\nas well as with the text, which appears when you share the\nPageflow in social networks."
1344
+ text: "# General Page Options\n\n### Title\n\nHere you can add the title of a particular page. This\ntitle is not only the headline of the text on the page, it\nalso functions as the title in the navigation and\noverview. If a single page is shared in social networks,\nthis title is also the title of the social media post.\n\n### Hide the title\n\nOptionally you can hide the title. Thus the title is not shown as the\nheading of the text body. For the identification of the page it\nremains visible in the navigation, overview and on social media posts.\n\n### Tagline and Subtitle\n\nHere you can optionally enter a tagline and/or a\nsubtitle. If you click on „Hide title“ the tagline and\nsubtitle are not shown either.\n\n### Text\n\nThe text-block can be formatted with the buttons underneath\nthe input field. [B= bold / I=italic / U=underlined /\ninfinity symbol= Link/URL to an external website]\n\nAll changes are visible in the left front-end-view as soon\nas you leave the appropriate input field in the editor.\n\n### Textposition\n\nDecide if the text should be shown on the left or right side.\n\n### Opacity of the gradient\n\nThe opacity of the gradient improves the legibility of\nthe text on background-videos or pictures.\n\nYou can use the slider to darken or lighten up the\nbackground until the contrast between text and background is\noptimal.\n\n### Invert colors\n\nIf you invert the colors, „bright“ and „dark“ are\ninterchanged. Thus the normally white font changes into\nblack.\n\nA general rule: Bright font for dark pictures, dark font for\nbright pictures.\n\n### Thumbnail\n\nThe thumbnail replaces the automatically generated\npreview-picture in the navigation and overview.\n\n### Display in navigation\n\nIf this option is not taken, the particular page is not\nrepresented in the navigation and therefore cannot be\nreached through it. You can use this option if a page is\nsupposed to read more like a subpage of another page.\n\n### Transition effect\n\nThere are different scroll effects, which are visible when users enter or leave pages. You can use vertical transitions like „crossfade“ or „cut“ or „Fade to black“. Besides this you also can choose horizontal scrolling from right or left. You can determine which effect should be used for each individual page.\n\n### Fade in text after delay\n\nDefine whether text and gradient of a page should appear with a delay. \nUsers will first see the background image, then title, tagline and subtitle until finally the content text will be displayed.\n\nThere are three different durations of delay: short = 1 second, medium = 3 seconds, long = 5 seconds.\n\nThis feature fits best for intros or beginnings of chapters.\n\n### Description for the overview\n\nYou can enter a text, which appears when the user navigates\nwith the mouse over the particular page. This text matches\nwith the mouse-over-text for the page-type „Page References“\nas well as with the text, which appears when you share the\nPageflow in social networks."
1562
1345
  page_types:
1563
1346
  menu_item: Page Types
1564
- text: ! '# Page Types
1565
-
1347
+ text: |
1348
+ # Page Types
1566
1349
 
1567
1350
  By choosing the page type, you determine what type of media
1568
-
1569
1351
  files are used for which page. For each type of page you can
1570
-
1571
1352
  use different settings. For further information please
1572
-
1573
1353
  click on a page type on the left column.
1574
-
1575
- '
1576
1354
  publishing:
1577
1355
  menu_item: Publishing
1578
- text: ! "# Publishing\n\nClick on the „Publish“ button to publish your Pageflow. A\nPageflow can be published at any point in time. \n\nBesides this, there is the possibility to publish Pageflows with \na password protection. Just activate „Protect with password“. \nPageflow uses the name of the account as user name and \nautomatically generates a password, which can be changed afterwords. \n\nAlready published stories can also be protected with a password by \npublishing another version - the other way round works as well. \nFor this please just click on the „Publishing“ button. The following \nsteps will then be shown and explained within the dialog window.\n\nPublished\nPageflows can also be unpublished manually at any time. If a\nPageflow has already been published, changes will not be\nshown until you publish your report again. A Pageflow can\nonly be edited by one author at one time.\n\nThumbnail for embedding the Pageflow on external websites\nAfter publishing your Pageflow, the system generates a\nthumbnail, which can be embedded as an iframe to the\nhyperlink of another website. By means of the code, the size\nof the iframe can be adjusted. The minimum size is a height\n150px and a width of 220px."
1356
+ text: "# Publishing\n\nClick on the „Publish“ button to publish your Pageflow. A\nPageflow can be published at any point in time. \n\nBesides this, there is the possibility to publish Pageflows with \na password protection. Just activate „Protect with password“. \nPageflow uses the name of the account as user name and \nautomatically generates a password, which can be changed afterwords. \n\nAlready published stories can also be protected with a password by \npublishing another version - the other way round works as well. \nFor this please just click on the „Publishing“ button. The following \nsteps will then be shown and explained within the dialog window.\n\nPublished\nPageflows can also be unpublished manually at any time. If a\nPageflow has already been published, changes will not be\nshown until you publish your report again. A Pageflow can\nonly be edited by one author at one time.\n\nThumbnail for embedding the Pageflow on external websites\nAfter publishing your Pageflow, the system generates a\nthumbnail, which can be embedded as an iframe to the\nhyperlink of another website. By means of the code, the size\nof the iframe can be adjusted. The minimum size is a height\n150px and a width of 220px."
1357
+ storylines:
1358
+ menu_item: Storylines
1359
+ text: "# Storylines\n\nIn addition to linear narrations from top to bottom, further storylines can be used as non linear excursions to enlarge upon parts of a story. A „Storyline“ consists of chapters and pages, which users scroll through. Distinguishable is the so called main storyline from further subordinate ones. The user starts off in the main storyline and can then navigate to different excursions.\n\nTo create such an excursion from the main storyline use one of the „Link“ pages (Mosaic, Collage, Hotspot) and create the desired connections via „Links“.\n\nBy choosing a „Parent page“ you can determine to which page users return after scrolling the storyline´s last page.\n\nTransitions to subordinate storylines are visually supported by a horizontal animation as the default setting for entering and leaving. \n\nStorylines are created by clicking onto the plus button next to the storyline menu. Thereby a new chapter opens automatically in which further pages can be added. \n\n\n### Parent pages\n\nIn every subordinate storyline a „Parent page“ must be determined to define where users land when scrolling back.\n\nThis target page can be chosen by clicking on the pen symbol next to the storyline menu. When a „Parent page“ is defined, a back button will be shown automatically in the subordinate storyline that will always lead users back to the „Parent page“.\n\n\n### Chapter hierarchy\n\nThe use of more than one „subordinary“ storylines and the definition of „Parent pages“ leads to a chapter hierarchy as known from books:\n\n1. (Main storyline), 1.1. (Superior sub storyline), 1.1.1. (Subordinate sub storyline) and so on.\n\nThis hierarchy can be edited afterwards by clicking on the pen symbol next to the storyline menu. A subordinate storyline can be turned into the main storyline as well.\n\n\n### Scroll successors\n\nIf you want to lead users from a last page of a subordinate chapter (1.1.1) to another position than\nthe „Parent page“ (e.g. to 2.1) you can define a „Scroll successor“. Therefore click on the blue pen symbol within the storyline settings. As an example the following sequence might be imaginable: 1 -> 1.1 -> 1.1.1 -> 2.1\n\nAttention: While editing only the selected chapter will be shown in the sidebar. To switch to the other chapters click onto the storyline menu."
1579
1360
  helpers:
1580
1361
  entries:
1581
1362
  global_links: Global links
@@ -1588,21 +1369,37 @@ en:
1588
1369
  fade_to_black: Fade to black
1589
1370
  scroll: Scroll
1590
1371
  scroll_left: Scroll left
1372
+ scroll_over_from_left: Scroll over from left
1373
+ scroll_over_from_right: Scroll over from right
1591
1374
  scroll_right: Scroll right
1592
- pages:
1593
- templates:
1594
- audio:
1595
- hint: Audio
1596
- background_video:
1597
- hint: Video loop
1598
- page:
1599
- goto_top: Goto first page
1600
- video:
1601
- hint: Video
1602
- video_tag:
1603
- view_video: Play video
1604
1375
  quotas:
1605
1376
  exhausted: Quota exhausted
1377
+ storyline_attributes:
1378
+ main:
1379
+ inline_help: Turns the first page of this storyline into the start page of the entry.
1380
+ inline_help_disabled: The first page of this storyline is the start page of the entry.
1381
+ label: Main storyline
1382
+ navigation_bar_mode:
1383
+ label: Navigation bar mode
1384
+ values:
1385
+ current_storyline: Current storyline
1386
+ inherit_from_parent: Display parent storyline
1387
+ non: Hide
1388
+ page_transition:
1389
+ inline_help: By default, comming from the parent page, the first page of the storyline is scrolled in from the right. When clicking the back button, pages of the storyline are scrolled back out to the right. Here you can choose an alternative effect.
1390
+ label: Transition effect
1391
+ parent_page_perma_id:
1392
+ inline_help: The user is redirected to this page when reaching the end of the storyline or when clicking the back button. The parent page settings determine the chapter hierachy. For more information on the chapter hierarchy see the 'Storylines' help topic.
1393
+ label: Parent page
1394
+ scroll_successor_id:
1395
+ inline_help: Page to go to when scrolling down from the last page of the storyline. By default the user is brought back to the storyline's parent page.
1396
+ label: Scroll successor
1397
+ title:
1398
+ label: Title
1399
+ storylines:
1400
+ feature_name: Storylines
1401
+ main: Main storyline
1402
+ untitled: Unnamed storyline
1606
1403
  ui:
1607
1404
  configuration_editor:
1608
1405
  tabs:
@@ -1628,24 +1425,26 @@ en:
1628
1425
  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.
1629
1426
  pageflow/page:
1630
1427
  additional_title: The info box appears close to the player controls.
1428
+ atmo_audio_file_id: Choose an audio file, that shall be played in the background. If you want this audio to continue playing on following pages, just choose the same file again there.
1429
+ atmo_during_playback: Choose which way the atmo shall behave during playback of this page's main media.
1631
1430
  delayed_text_fade_in: Fades in the page contents after a delay such that the background image can be viewed initially.
1632
1431
  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.
1633
- gradient_opacity: ! 'The opacity of the gradient improves the legibility of the text on background-videos or pictures.
1634
-
1432
+ gradient_opacity: |-
1433
+ The opacity of the gradient improves the legibility of the text on background-videos or pictures.
1635
1434
 
1636
- You can use the slider to darken or lighten up the background until the contrast between text and background is optimal.'
1637
- invert: ! 'If you invert the colors, „bright“ and „dark“ are interchanged. Thus the normally white font changes into black.
1435
+ You can use the slider to darken or lighten up the background until the contrast between text and background is optimal.
1436
+ invert: |-
1437
+ If you invert the colors, „bright“ and „dark“ are interchanged. Thus the normally white font changes into black.
1638
1438
 
1639
-
1640
- A general rule: Bright font for dark pictures, dark font for bright pictures.'
1439
+ A general rule: Bright font for dark pictures, dark font for bright pictures.
1641
1440
  mobile_poster_image_id: This image is used as poster image on mobile devices.
1642
- 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]
1643
-
1644
-
1645
- All changes are visible in the left front-end-view as soon as you leave the appropriate input field in the editor.'
1646
- thumbnail_image_id: ! 'The thumbnail replaces the automatically generated preview-picture in the navigation and overview.
1441
+ text: |-
1442
+ 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]
1647
1443
 
1648
- '
1444
+ All changes are visible in the left front-end-view as soon as you leave the appropriate input field in the editor.
1445
+ thumbnail_image_id: |
1446
+ The thumbnail replaces the automatically generated preview-picture in the navigation and overview.
1447
+ transition: Choose the animation, that will be used when users scroll to this page.
1649
1448
  templates:
1650
1449
  inputs:
1651
1450
  file_input:
@@ -1667,60 +1466,54 @@ en:
1667
1466
  display_help: Display help
1668
1467
  inputs:
1669
1468
  file_input_view:
1670
- none: (none)
1469
+ none: "(none)"
1671
1470
  proxy_url_input_view:
1672
1471
  http_error: The given URL could not be fetched. (The server answered with a HTTP status code ' %{status}')
1673
1472
  url_validation: Checking URL...
1674
1473
  select_input_view:
1675
- none: (none)
1474
+ none: "(none)"
1676
1475
  placeholder: Default (%{text})
1677
1476
  text_input_view:
1678
1477
  required_field: Required field
1679
1478
  url_input_view:
1680
1479
  required_field: Required field
1681
- supported_vendors: ! 'Following providers are supported:'
1682
- url_hint: ! 'URL must start with http:// '
1480
+ supported_vendors: 'Following providers are supported:'
1481
+ url_hint: 'URL must start with http:// '
1683
1482
  url_hint_https: URL must start with http:// or https://
1684
1483
  unauthorized: You are not authorized to view this page.
1685
1484
  user_mailer:
1686
1485
  invitation:
1687
1486
  ending: Thank you and have fun,
1688
1487
  greeting: Your Pageflow Team
1689
- instruction: ! 'Welcome to Pageflow. Please use the following link to set your personal password. You may use your email address to sign-in. '
1488
+ instruction: 'Welcome to Pageflow. Please use the following link to set your personal password. You may use your email address to sign-in. '
1690
1489
  salutation: Hello %{first_name}
1691
1490
  subject: Your Pageflow Invitation
1692
1491
  widgets:
1693
- none: (none)
1492
+ none: "(none)"
1694
1493
  roles:
1695
1494
  analytics: Tracking
1696
1495
  mobile_navigation: Mobile navigation
1697
1496
  navigation: Navigation bar
1698
- share_menu:
1699
- current_page: This page
1700
- entry: This story
1701
- share_with_facebook: Share on Facebook
1702
- share_with_google: Share on Google+
1703
- share_with_twitter: Share on Twitter
1704
1497
  type_names:
1705
1498
  default_mobile_navigation: Navigation bar with thumbnails
1706
1499
  default_navigation: Navigation bar with thumbnails
1707
1500
  support:
1708
1501
  array:
1709
- last_word_connector: ! ', and '
1710
- two_words_connector: ! ' and '
1711
- words_connector: ! ', '
1502
+ last_word_connector: ", and "
1503
+ two_words_connector: " and "
1504
+ words_connector: ", "
1712
1505
  time:
1713
1506
  am: am
1714
1507
  formats:
1715
- date: ! '%Y-%m-%d'
1716
- default: ! '%a, %d %b %Y %H:%M:%S %z'
1717
- long: ! '%B %d, %Y %H:%M'
1718
- short: ! '%d %b %H:%M'
1508
+ date: "%Y-%m-%d"
1509
+ default: "%a, %d %b %Y %H:%M:%S %z"
1510
+ long: "%B %d, %Y %H:%M"
1511
+ short: "%d %b %H:%M"
1719
1512
  pm: pm
1720
1513
  views:
1721
1514
  pagination:
1722
- first: ! '|<'
1723
- last: ! '>|'
1724
- next: ! '>>'
1725
- previous: <<
1726
- truncate: ! '...'
1515
+ first: "|<"
1516
+ last: ">|"
1517
+ next: ">>"
1518
+ previous: "<<"
1519
+ truncate: "..."