refinerycms-pages 1.0.11 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (126) hide show
  1. data/app/controllers/refinery/admin/page_parts_controller.rb +26 -0
  2. data/app/controllers/refinery/admin/pages_controller.rb +77 -0
  3. data/app/controllers/refinery/admin/pages_dialogs_controller.rb +91 -0
  4. data/app/controllers/refinery/page_sweeper.rb +29 -0
  5. data/app/controllers/refinery/pages_controller.rb +103 -0
  6. data/app/helpers/refinery/pages/content_pages_helper.rb +26 -0
  7. data/app/helpers/refinery/pages_helper.rb +4 -0
  8. data/app/models/refinery/page.rb +467 -0
  9. data/app/models/refinery/page_part.rb +33 -0
  10. data/app/presenters/refinery/page_presenter.rb +7 -0
  11. data/app/views/admin/pages/_sortable_list.html.erb +7 -4
  12. data/app/views/{admin → refinery/admin}/pages/_actions.html.erb +5 -4
  13. data/app/views/refinery/admin/pages/_form.html.erb +63 -0
  14. data/app/views/{admin → refinery/admin}/pages/_form_advanced_options.html.erb +35 -16
  15. data/app/views/refinery/admin/pages/_form_advanced_options_seo.html.erb +3 -0
  16. data/app/views/{admin → refinery/admin}/pages/_form_fields_after_title.html.erb +0 -0
  17. data/app/views/{admin → refinery/admin}/pages/_form_new_page_parts.html.erb +5 -7
  18. data/app/views/{admin → refinery/admin}/pages/_form_page_parts.html.erb +19 -11
  19. data/app/views/{admin → refinery/admin}/pages/_locale_picker.html.erb +3 -3
  20. data/app/views/refinery/admin/pages/_page.html.erb +48 -0
  21. data/app/views/{admin → refinery/admin}/pages/_page_part_field.html.erb +1 -1
  22. data/app/views/refinery/admin/pages/_records.html.erb +14 -0
  23. data/app/views/refinery/admin/pages/_sortable_list.html.erb +4 -0
  24. data/app/views/refinery/admin/pages/children.html.erb +1 -0
  25. data/app/views/refinery/admin/pages/edit.html.erb +1 -0
  26. data/app/views/refinery/admin/pages/index.html.erb +9 -0
  27. data/app/views/refinery/admin/pages/new.html.erb +1 -0
  28. data/app/views/refinery/admin/pages_dialogs/_page_link.html.erb +20 -0
  29. data/app/views/{admin → refinery/admin}/pages_dialogs/link_to.html.erb +31 -36
  30. data/app/views/refinery/pages/home.html.erb +1 -0
  31. data/app/views/refinery/pages/show.html.erb +1 -0
  32. data/config/locales/bg.yml +81 -73
  33. data/config/locales/cs.yml +71 -72
  34. data/config/locales/da.yml +69 -72
  35. data/config/locales/de.yml +69 -72
  36. data/config/locales/el.yml +70 -72
  37. data/config/locales/en.yml +88 -73
  38. data/config/locales/es.yml +70 -73
  39. data/config/locales/fi.yml +70 -73
  40. data/config/locales/fr.yml +69 -72
  41. data/config/locales/it.yml +92 -89
  42. data/config/locales/ja.yml +72 -0
  43. data/config/locales/ko.yml +83 -0
  44. data/config/locales/lt.yml +71 -73
  45. data/config/locales/lv.yml +71 -74
  46. data/config/locales/nb.yml +69 -72
  47. data/config/locales/nl.yml +68 -71
  48. data/config/locales/pl.yml +70 -73
  49. data/config/locales/pt-BR.yml +70 -73
  50. data/config/locales/pt-PT.yml +75 -0
  51. data/config/locales/rs.yml +69 -72
  52. data/config/locales/ru.yml +77 -96
  53. data/config/locales/sk.yml +69 -72
  54. data/config/locales/sl.yml +68 -71
  55. data/config/locales/sv.yml +69 -72
  56. data/config/locales/vi.yml +69 -72
  57. data/config/locales/zh-CN.yml +75 -72
  58. data/config/locales/zh-TW.yml +69 -72
  59. data/config/routes.rb +10 -5
  60. data/db/migrate/20100913234708_create_refinerycms_pages_schema.rb +49 -43
  61. data/db/seeds.rb +41 -0
  62. data/lib/generators/refinery/pages/pages_generator.rb +21 -0
  63. data/lib/generators/refinery/pages/templates/config/initializers/refinery/pages.rb.erb +44 -0
  64. data/lib/refinery/pages/admin/instance_methods.rb +10 -8
  65. data/lib/refinery/pages/configuration.rb +44 -0
  66. data/lib/refinery/pages/content_page_presenter.rb +33 -0
  67. data/lib/refinery/pages/content_presenter.rb +56 -0
  68. data/lib/refinery/pages/engine.rb +73 -0
  69. data/lib/refinery/pages/instance_methods.rb +12 -26
  70. data/lib/refinery/pages/page_part_section_presenter.rb +19 -0
  71. data/lib/refinery/pages/section_presenter.rb +69 -0
  72. data/lib/{pages/tabs.rb → refinery/pages/tab.rb} +0 -0
  73. data/lib/refinery/pages/title_section_presenter.rb +14 -0
  74. data/lib/refinery/pages/type.rb +17 -0
  75. data/lib/refinery/pages/types.rb +32 -0
  76. data/lib/refinery/pages.rb +55 -0
  77. data/lib/refinerycms-pages.rb +1 -61
  78. data/refinerycms-pages.gemspec +17 -118
  79. data/spec/factories/pages.rb +5 -0
  80. data/spec/helpers/refinery/pages/content_pages_helper_spec.rb +44 -0
  81. data/spec/lib/generators/refinery/pages/pages_generator_spec.rb +29 -0
  82. data/spec/lib/pages/content_page_presenter_spec.rb +43 -0
  83. data/spec/lib/pages/content_presenter_spec.rb +97 -0
  84. data/spec/lib/pages/page_part_section_presenter_spec.rb +35 -0
  85. data/spec/lib/pages/section_presenter_spec.rb +86 -0
  86. data/spec/lib/pages/title_section_presenter_spec.rb +21 -0
  87. data/spec/lib/pages_spec.rb +26 -0
  88. data/spec/models/refinery/page_spec.rb +415 -0
  89. data/spec/requests/refinery/admin/pages_spec.rb +581 -0
  90. data/spec/requests/refinery/pages_spec.rb +302 -0
  91. metadata +162 -153
  92. data/app/controllers/admin/page_parts_controller.rb +0 -24
  93. data/app/controllers/admin/pages_controller.rb +0 -68
  94. data/app/controllers/admin/pages_dialogs_controller.rb +0 -85
  95. data/app/controllers/pages_controller.rb +0 -33
  96. data/app/helpers/pages_helper.rb +0 -2
  97. data/app/models/page.rb +0 -391
  98. data/app/models/page_part.rb +0 -29
  99. data/app/presenters/page_presenter.rb +0 -7
  100. data/app/views/admin/pages/_form.html.erb +0 -61
  101. data/app/views/admin/pages/_form_advanced_options_seo.html.erb +0 -4
  102. data/app/views/admin/pages/_page.html.erb +0 -33
  103. data/app/views/admin/pages/_records.html.erb +0 -14
  104. data/app/views/admin/pages/edit.html.erb +0 -1
  105. data/app/views/admin/pages/index.html.erb +0 -11
  106. data/app/views/admin/pages/new.html.erb +0 -1
  107. data/app/views/admin/pages_dialogs/_page_link.html.erb +0 -14
  108. data/app/views/pages/home.html.erb +0 -1
  109. data/app/views/pages/show.html.erb +0 -1
  110. data/config/locales/jp.yml +0 -75
  111. data/config/locales/lolcat.yml +0 -76
  112. data/db/migrate/20101214040815_translate_page_plugin.rb +0 -29
  113. data/db/migrate/20101216194133_remove_cached_slug_from_pages.rb +0 -11
  114. data/db/migrate/20110307025652_translate_custom_title_on_pages.rb +0 -26
  115. data/db/migrate/20110314213540_remove_translated_fields_from_pages.rb +0 -13
  116. data/db/migrate/20110329080451_create_seo_meta.rb +0 -89
  117. data/db/seeds/pages.rb +0 -42
  118. data/features/manage_pages.feature +0 -48
  119. data/features/step_definitions/page_steps.rb +0 -72
  120. data/features/support/paths.rb +0 -28
  121. data/features/translate_pages.feature +0 -40
  122. data/features/visit_pages.feature +0 -68
  123. data/lib/gemspec.rb +0 -40
  124. data/lib/generators/refinerycms_pages_generator.rb +0 -8
  125. data/lib/pages/marketable_routes.rb +0 -12
  126. data/spec/models/page_spec.rb +0 -235
@@ -1,78 +1,93 @@
1
1
  en:
2
- plugins:
3
- refinery_pages:
4
- title: Pages
5
- description: Manage content pages
6
- admin:
7
- pages_dialogs:
8
- page_link:
9
- link_to_this_page: Link to this page
10
- link_to:
11
- insert: Insert
12
- your_page:
13
- tab_name: Your page
14
- web_address:
15
- tab_name: Website
16
- location: Location
17
- new_window: New window
18
- new_window_label: Check this box to have the link open in a new browser window.
19
- not_sure: Not sure what to put in the box above?
20
- step1: Find the page on the web you want to link to.
21
- step2: Copy the web address from your browser's address bar and paste it into the box above.
22
- email_address:
23
- tab_name: Email address
24
- subject_line_optional: Optional subject
25
- body_optional: Optional body
26
- not_sure: Not sure what to put in the boxes above?
27
- step1_html: Write or copy and paste (e.g. from your address book) the email address to link to into the '<strong>Email Address</strong>' box above.
28
- step2_html: Use the '<strong>Subject Line</strong>' box above if you want the message to be composed with a <strong>pre-written subject line</strong>.
29
- step3_html: Use the <strong>Email Body</strong> box above if you want the message to be composed with a <strong>pre-written message</strong>.
30
- your_resource:
31
- tab_name: Your file
32
- link_to_this_resource: Link to this file
33
- pages:
34
- delete: Remove this page forever
35
- edit: Edit this page
36
- reserved_system_word: "Sorry, but that title is a reserved system word."
37
- page:
38
- view_live_html: View this page live <br/><em>(opens in a new window)</em>
39
- hidden: hidden
40
- draft: draft
41
- form_new_page_parts:
42
- title: Title
43
- form_page_parts:
44
- create_content_section: Add content section
45
- delete_content_section: Delete content section
46
- form_advanced_options:
47
- toggle_advanced_options: Access meta tag settings and menu options
48
- page_options: Page Options
49
- parent_page: Parent page
50
- advanced_options: Advanced Options
51
- custom_title: Custom title
52
- title_types:
53
- none: None
54
- text: Text
55
- show_in_menu_title: Show in menu
56
- show_in_menu_description: Display this page in the site menu
57
- show_in_menu_help: Uncheck this box if you want to remove a page from your site menu. This can be handy if you have a page you want to link people to directly but don&apos;t want to show the page in the menu.
58
- save_as_draft: Save as Draft
59
- skip_to_first_child: Skip top-level page
60
- skip_to_first_child_label: Redirect visitors to the first sub-level page.
61
- skip_to_first_child_help: This option makes this page link to the first page underneath. This can be useful when grouping pages together.
62
- link_url: Forward this page to another website or page
63
- link_url_help: If you want this page to go to another website or page when you click this page in the menu, enter a URL. e.g. http://google.com otherwise leave it blank
64
- parent_page_help: You can put a page under another page by selecting it in the list. If you want this page to be a top-level page, just leave it blank.
65
- custom_title_help: If you want the page to have a different title than the one that shows in the menu then select &apos;Text&apos; and enter it here.
66
- actions:
67
- create_new_page: Add new page
68
- reorder_pages: Reorder pages
69
- reorder_pages_done: Done reordering pages
70
- records:
71
- no_pages_yet: There are no pages yet. Click "Add new page" to add your first page.
72
- translator_access: You do not have the required permission to modify pages in this language.
2
+ refinery:
3
+ plugins:
4
+ refinery_pages:
5
+ title: Pages
6
+ description: Manage content pages
7
+ admin:
8
+ pages_dialogs:
9
+ page_link:
10
+ link_to_this_page: Link to this page
11
+ link_to:
12
+ insert: Insert
13
+ your_page:
14
+ tab_name: Your page
15
+ web_address:
16
+ tab_name: Website
17
+ location: Location
18
+ new_window: New window
19
+ new_window_label: Check this box to have the link open in a new browser window.
20
+ not_sure: Not sure what to put in the box above?
21
+ step1: Find the page on the web you want to link to.
22
+ step2: Copy the web address from your browser's address bar and paste it into the box above.
23
+ email_address:
24
+ tab_name: Email address
25
+ subject_line_optional: Optional subject
26
+ body_optional: Optional body
27
+ not_sure: Not sure what to put in the boxes above?
28
+ step1_html: Write or copy and paste (e.g. from your address book) the email address to link to into the '<strong>Email Address</strong>' box above.
29
+ step2_html: Use the '<strong>Subject Line</strong>' box above if you want the message to be composed with a <strong>pre-written subject line</strong>.
30
+ step3_html: Use the <strong>Email Body</strong> box above if you want the message to be composed with a <strong>pre-written message</strong>.
31
+ your_resource:
32
+ tab_name: Your file
33
+ link_to_this_resource: Link to this file
34
+ pages:
35
+ delete: Remove this page forever
36
+ edit: Edit this page
37
+ new: Add a new child page
38
+ expand_collapse: Expand or collapse sub pages
39
+ page:
40
+ view_live_html: View this page live <br/><em>(opens in a new window)</em>
41
+ hidden: hidden
42
+ draft: draft
43
+ form:
44
+ preview: Preview
45
+ preview_changes: Preview your changes before making them live
46
+ form_new_page_parts:
47
+ title: Title
48
+ form_page_parts:
49
+ create_content_section: Add content section
50
+ delete_content_section: Delete content section
51
+ reorder_content_section: Reorder content sections
52
+ form_advanced_options:
53
+ toggle_advanced_options: Access meta tag settings and menu options
54
+ page_options: Page Options
55
+ parent_page: Parent page
56
+ advanced_options: Advanced Options
57
+ menu_title: Menu title
58
+ custom_slug: Custom slug
59
+ show_in_menu_title: Show in menu
60
+ show_in_menu_description: Display this page in the site menu
61
+ show_in_menu_help: Uncheck this box if you want to remove a page from your site menu. This can be handy if you have a page you want to link people to directly but don&apos;t want to show the page in the menu.
62
+ save_as_draft: Save as Draft
63
+ skip_to_first_child: Skip top-level page
64
+ skip_to_first_child_label: Redirect visitors to the first sub-level page.
65
+ skip_to_first_child_help: This option makes this page link to the first page underneath. This can be useful when grouping pages together.
66
+ link_url: Forward this page to another website or page
67
+ link_url_help: If you want this page to go to another website or page when you click this page in the menu, enter a URL. e.g. http://google.com otherwise leave it blank
68
+ parent_page_help: You can put a page under another page by selecting it in the list. If you want this page to be a top-level page, just leave it blank.
69
+ menu_title_help: If you want the menu to display a different title than the one that dipsplays on the page, enter it here.
70
+ custom_slug_help: A slug is a human-readable ID used to create a page&apos;s full URL, for example &apos;about-us&apos;. To override the slug that is automatically created by Refinery, enter your custom slug here.
71
+ view_template: View template
72
+ view_template_help: You can chose different template for this page
73
+ form_advanced_options_seo:
74
+ seo: Search Engine Optimization
75
+ seo_override_title: Browser title
76
+ seo_override_title_help: Enter a 5-10 word title that summarizes the contents of this page.
77
+ meta_keywords_title: Meta keywords
78
+ meta_keywords_help: Enter 5-10 keywords that relate to this page. Separate keywords by a comma.
79
+ meta_description_title: Meta description
80
+ meta_description_help: Enter a concise two or three sentences describing what this page is about.
81
+ actions:
82
+ create_new_page: Add new page
83
+ reorder_pages: Reorder pages
84
+ reorder_pages_done: Done reordering pages
85
+ records:
86
+ no_pages_yet: There are no pages yet. Click "Add new page" to add your first page.
87
+ translator_access: You do not have the required permission to modify pages in this language.
73
88
  activerecord:
74
89
  models:
75
- page: page
90
+ refinery/page: page
76
91
  attributes:
77
- page:
92
+ refinery/page:
78
93
  title: Title
@@ -1,78 +1,75 @@
1
1
  es:
2
- plugins:
3
- refinery_pages:
4
- title: Páginas
5
- description: Gestionar páginas de contenido
6
- article: femenino
7
- admin:
8
- pages_dialogs:
9
- page_link:
10
- link_to_this_page: Enlace a esta página
11
- link_to:
12
- insert: Insertar
13
- your_page:
14
- tab_name: Tu página
15
- web_address:
16
- tab_name: Web
17
- location: Dirección
18
- new_window: Nueva ventana
19
- new_window_label: Marca esta casilla para que el enlace se abra en una ventana nueva del navegador.
20
- not_sure: ¿No sabes qué escribir en el campo anterior?
21
- step1: Busca en la web qué página quieres enlazar.
22
- step2: Copia la dirección web desde la barra de direcciones de tu navegador y pégala en el campo anterior.
23
- email_address:
24
- tab_name: Dirección e-mail
25
- subject_line_optional: Asunto opcional
26
- body_optional: Mensaje opcional
27
- not_sure: ¿No sabes qué escribir en estos campos?
28
- step1_html: Escribe o copia y pega (por ej. desde tu libreta de direcciones) la dirección e-mail a la que quieres enlazar en el campo '<strong>Dirección e-mail</strong>' anterior.
29
- step2_html: Usa el campo <strong>Asunto opcional</strong> si quieres que el mensaje se envíe con un <strong>asunto predeterminado</strong>
30
- step3_html: Usa el campo <strong>Mensaje opcional</strong> si quieres que el mensaje se envíe con un <strong>contenido predeterminado</strong>
31
- your_resource:
32
- tab_name: Tu archivo
33
- link_to_this_resource: Enlace a este archivo
34
- pages:
35
- delete: Borrar esta página para siempre
36
- edit: Editar esta página
37
- reserved_system_word: "Lo sentimos, pero ese título es una palabra reservada del sistema."
38
- page:
39
- view_live_html: Ver esta página como abierta al público<br/><em>(la abre en ventana nueva)</em>
40
- hidden: oculta
41
- draft: borrador
42
- form_new_page_parts:
43
- title: Título
44
- form_page_parts:
45
- create_content_section: Crear sección de contenido
46
- delete_content_section: Borrar sección de contenido
47
- form_advanced_options:
48
- toggle_advanced_options: Pulsa para acceder a las opciones de meta tags y menú
49
- page_options: Opciones de página
50
- parent_page: Página padre
51
- advanced_options: Opciones avanzadas
52
- custom_title: Título personalizado
53
- title_types:
54
- none: Ninguno
55
- text: Texto
56
- show_in_menu_title: Ver en menú
57
- show_in_menu_description: Mostrar esta página en el menú de la web
58
- show_in_menu_help: Deja sin marcar esta casilla para eliminar una página del menú de tu web. Puede ser útil si tienes una página que quieres que la gente enlace directamente pero no quieres mostrarla en el menú.
59
- save_as_draft: Guardar como borrador
60
- skip_to_first_child: Saltar página de primer nivel
61
- skip_to_first_child_label: Redirigir a los visitantes a la primera página hija.
62
- skip_to_first_child_help: Esta opción hace que esta página enlace a su primera página hija. Puede ser útil para agrupar varias páginas juntas.
63
- link_url: Redirigir esta página a otra web o a otra página
64
- link_url_help: "Si quieres que esta página envíe a otra web o página entonces pulsa esta página en el menú y introduce una URL (por ej: http://google.com). En caso contrario déjalo en blanco."
65
- parent_page_help: Puedes incluir una página dentro de otra seleccionándola en la lista. Si quieres que sea una página de primer nivel, déjalo en blanco.
66
- custom_title_help: Si quieres que la página tenga un título diferente al que aparece en el menú selecciona &apos;Texto&apos; y teclea el título que prefieres.
67
- actions:
68
- create_new_page: Crear nueva página
69
- reorder_pages: Reordenar páginas
70
- reorder_pages_done: Reordenación de páginas completada
71
- records:
72
- no_pages_yet: "Aún no hay páginas. Pulsa \"Crear nueva página\" para añadir tu primera página."
2
+ refinery:
3
+ plugins:
4
+ refinery_pages:
5
+ title: Páginas
6
+ description: Gestionar páginas de contenido
7
+ article: femenino
8
+ admin:
9
+ pages_dialogs:
10
+ page_link:
11
+ link_to_this_page: Enlace a esta página
12
+ link_to:
13
+ insert: Insertar
14
+ your_page:
15
+ tab_name: Tu página
16
+ web_address:
17
+ tab_name: Web
18
+ location: Dirección
19
+ new_window: Nueva ventana
20
+ new_window_label: Marca esta casilla para que el enlace se abra en una ventana nueva del navegador.
21
+ not_sure: ¿No sabes qué escribir en el campo anterior?
22
+ step1: Busca en la web qué página quieres enlazar.
23
+ step2: Copia la dirección web desde la barra de direcciones de tu navegador y pégala en el campo anterior.
24
+ email_address:
25
+ tab_name: Dirección e-mail
26
+ subject_line_optional: Asunto opcional
27
+ body_optional: Mensaje opcional
28
+ not_sure: ¿No sabes qué escribir en estos campos?
29
+ step1_html: Escribe o copia y pega (por ej. desde tu libreta de direcciones) la dirección e-mail a la que quieres enlazar en el campo '<strong>Dirección e-mail</strong>' anterior.
30
+ step2_html: Usa el campo <strong>Asunto opcional</strong> si quieres que el mensaje se envíe con un <strong>asunto predeterminado</strong>
31
+ step3_html: Usa el campo <strong>Mensaje opcional</strong> si quieres que el mensaje se envíe con un <strong>contenido predeterminado</strong>
32
+ your_resource:
33
+ tab_name: Tu archivo
34
+ link_to_this_resource: Enlace a este archivo
35
+ pages:
36
+ delete: Borrar esta página para siempre
37
+ edit: Editar esta página
38
+ page:
39
+ view_live_html: Ver esta página como abierta al público<br/><em>(la abre en ventana nueva)</em>
40
+ hidden: oculta
41
+ draft: borrador
42
+ form_new_page_parts:
43
+ title: Título
44
+ form_page_parts:
45
+ create_content_section: Crear sección de contenido
46
+ delete_content_section: Borrar sección de contenido
47
+ form_advanced_options:
48
+ toggle_advanced_options: Pulsa para acceder a las opciones de meta tags y menú
49
+ page_options: Opciones de página
50
+ parent_page: Página padre
51
+ advanced_options: Opciones avanzadas
52
+ custom_title: Título personalizado
53
+ show_in_menu_title: Ver en menú
54
+ show_in_menu_description: Mostrar esta página en el menú de la web
55
+ show_in_menu_help: Deja sin marcar esta casilla para eliminar una página del menú de tu web. Puede ser útil si tienes una página que quieres que la gente enlace directamente pero no quieres mostrarla en el menú.
56
+ save_as_draft: Guardar como borrador
57
+ skip_to_first_child: Saltar página de primer nivel
58
+ skip_to_first_child_label: Redirigir a los visitantes a la primera página hija.
59
+ skip_to_first_child_help: Esta opción hace que esta página enlace a su primera página hija. Puede ser útil para agrupar varias páginas juntas.
60
+ link_url: Redirigir esta página a otra web o a otra página
61
+ link_url_help: "Si quieres que esta página envíe a otra web o página entonces pulsa esta página en el menú y introduce una URL (por ej: http://google.com). En caso contrario déjalo en blanco."
62
+ parent_page_help: Puedes incluir una página dentro de otra seleccionándola en la lista. Si quieres que sea una página de primer nivel, déjalo en blanco.
63
+ custom_title_help: Si quieres que la página tenga un título diferente al que aparece en el menú selecciona &apos;Texto&apos; y teclea el título que prefieres.
64
+ actions:
65
+ create_new_page: Crear nueva página
66
+ reorder_pages: Reordenar páginas
67
+ reorder_pages_done: Reordenación de páginas completada
68
+ records:
69
+ no_pages_yet: "Aún no hay páginas. Pulsa \"Crear nueva página\" para añadir tu primera página."
73
70
  activerecord:
74
71
  models:
75
- page: página
72
+ refinery/page: página
76
73
  attributes:
77
- page:
74
+ refinery/page:
78
75
  title: Título
@@ -1,78 +1,75 @@
1
1
  fi:
2
- plugins:
3
- refinery_pages:
4
- title: Sivut
5
- description: Hallitse sivuja
6
- admin:
7
- pages_dialogs:
8
- page_link:
9
- link_to_this_page: Linkki tälle sivulle
10
- link_to:
11
- insert: Lisää
12
- your_page:
13
- tab_name: Sivu
14
- web_address:
15
- tab_name: Nettisivu
16
- location: Sijainti
17
- new_window: Uusi ikkuna
18
- new_window_label: "Rastita tämä laatikko, jos haluat linkin aukeavan uudessa ikkunassa"
19
- not_sure: "Etkö tiedä, mitä laittaa yllä olevaan kenttään?"
20
- step1: "Etsi nettisivu, jolle haluat linkittää"
21
- step2: "Kopioi nettisivun osoite selaimesi osoitepalkista ja liitä se yllä olevaan laatikkoon."
22
- email_address:
23
- tab_name: Sähköposti
24
- subject_line_optional: Vapaaehtoinen aihe
25
- body_optional: Vapaaehtoinen teksti
26
- not_sure: "Etkö tiedä, mitä laittaa yllä oleviin kenttiin?"
27
- step1_html: "Kirjoita tai kopioi ja liitä sähköpostiosoite (esim. osoitekirjastasi) johon linkittää '<strong>Sähköpostiosoite-</strong>' kenttään yläpuolella."
28
- step2_html: "Täytä <strong>aihekenttä</strong> yläpuolella, jos haluat että viestissä on <strong>valmiiksi kirjoitettu otsikko</strong>."
29
- step3_html: "Täytä <strong>tekstikenttä</strong> yläpuolella, jos haluat että viestissä on <strong>valmiiksi kirjoitettu sisältö</strong>."
30
- your_resource:
31
- tab_name: Tiedosto
32
- link_to_this_resource: Linkki tähän tiedostoon
33
- pages:
34
- delete: Poista tämä sivu ikuisesti
35
- edit: Muokkaa tätä sivua
36
- reserved_system_word: "Valitettavasti kirjoittamasi otsikko on rajoitettu Refineryn avainsana, ja sitä ei voida käyttää."
37
- page:
38
- view_live_html: Katsele tätä sivua <br/><em>(avautuu uudessa ikkunassa)</em>
39
- hidden: piilotettu
40
- draft: luonnos
41
- form_new_page_parts:
42
- title: Otsikko
43
- form_page_parts:
44
- create_content_section: Lisää sisältöosio
45
- delete_content_section: Poista sisältöosio
46
- form_advanced_options:
47
- toggle_advanced_options: "Näe metatieto- ja valikko-ominaisuudet"
48
- page_options: Sivun ominaisuudet
49
- parent_page: Yläsivu
50
- advanced_options: Lisäasetukset
51
- custom_title: Kustomoitu otsikko
52
- title_types:
53
- none: Ei mitään
54
- text: Teksti
55
- show_in_menu_title: Näytä valikossa
56
- show_in_menu_description: Näytä tämä sivu nettisivuston valikossa
57
- show_in_menu_help: "Poista rasti tästä kentästä, jos haluat poistaa sivun valikosta. Tämä voi olla hyödyllinen ominaisuus, jos haluat näkymättömän sivun jonka linkin voit antaa tietyille ihmisille."
58
- save_as_draft: Tallenna luonnoksena
59
- skip_to_first_child: "Näytä ensimmäinen alisivu"
60
- skip_to_first_child_label: "Uudelleenohjaa kävijät ensimmäiseen alisivuun"
61
- skip_to_first_child_help: "Tämä ominaisuus linkittää tämän sivun ensimmäiseen alisivuun, joka sillä on. Tämä on hyödyllistä, kun haluat ryhmitellä sivuja yhteen."
62
- link_url: Uudelleenohjaa tämä sivu toiselle nettisivustolle tai sivulle
63
- link_url_help: "Jos haluat tämän sivun uudelleenohjaavan käyttäjän toiselle nettisivustolle tai sivulle, kirjoita URL (esim. http://google.com) tai jätä muuten tyhjäksi"
64
- parent_page_help: "Voit asettaa sivun toisen sivun alisivuksi valitsemalla yläsivun valikosta. Jos haluat tämän sivun olevan pääsivu, jätä sivu valitsematta."
65
- custom_title_help: "Jos haluat sivun näyttävän eri otsikon valikossa, valitse 'Teksti' ja kirjoita se tähän."
66
- actions:
67
- create_new_page: Lisää uusi sivu
68
- reorder_pages: Muuta sivujen järjestystä
69
- reorder_pages_done: Tallenna
70
- records:
71
- no_pages_yet: Sivuja ei ole vielä. Paina "Lisää uusi sivu-" painiketta lisätäksesi ensimmäisen sivun.
72
- translator_access: Sinulla ei ole lupaa muokata sivuja tällä kielellä.
2
+ refinery:
3
+ plugins:
4
+ refinery_pages:
5
+ title: Sivut
6
+ description: Hallitse sivuja
7
+ admin:
8
+ pages_dialogs:
9
+ page_link:
10
+ link_to_this_page: Linkki tälle sivulle
11
+ link_to:
12
+ insert: Lisää
13
+ your_page:
14
+ tab_name: Sivu
15
+ web_address:
16
+ tab_name: Nettisivu
17
+ location: Sijainti
18
+ new_window: Uusi ikkuna
19
+ new_window_label: "Rastita tämä laatikko, jos haluat linkin aukeavan uudessa ikkunassa"
20
+ not_sure: "Etkö tiedä, mitä laittaa yllä olevaan kenttään?"
21
+ step1: "Etsi nettisivu, jolle haluat linkittää"
22
+ step2: "Kopioi nettisivun osoite selaimesi osoitepalkista ja liitä se yllä olevaan laatikkoon."
23
+ email_address:
24
+ tab_name: Sähköposti
25
+ subject_line_optional: Vapaaehtoinen aihe
26
+ body_optional: Vapaaehtoinen teksti
27
+ not_sure: "Etkö tiedä, mitä laittaa yllä oleviin kenttiin?"
28
+ step1_html: "Kirjoita tai kopioi ja liitä sähköpostiosoite (esim. osoitekirjastasi) johon linkittää '<strong>Sähköpostiosoite-</strong>' kenttään yläpuolella."
29
+ step2_html: "Täytä <strong>aihekenttä</strong> yläpuolella, jos haluat että viestissä on <strong>valmiiksi kirjoitettu otsikko</strong>."
30
+ step3_html: "Täytä <strong>tekstikenttä</strong> yläpuolella, jos haluat että viestissä on <strong>valmiiksi kirjoitettu sisältö</strong>."
31
+ your_resource:
32
+ tab_name: Tiedosto
33
+ link_to_this_resource: Linkki tähän tiedostoon
34
+ pages:
35
+ delete: Poista tämä sivu ikuisesti
36
+ edit: Muokkaa tätä sivua
37
+ page:
38
+ view_live_html: Katsele tätä sivua <br/><em>(avautuu uudessa ikkunassa)</em>
39
+ hidden: piilotettu
40
+ draft: luonnos
41
+ form_new_page_parts:
42
+ title: Otsikko
43
+ form_page_parts:
44
+ create_content_section: Lisää sisältöosio
45
+ delete_content_section: Poista sisältöosio
46
+ form_advanced_options:
47
+ toggle_advanced_options: "Näe metatieto- ja valikko-ominaisuudet"
48
+ page_options: Sivun ominaisuudet
49
+ parent_page: Yläsivu
50
+ advanced_options: Lisäasetukset
51
+ custom_title: Kustomoitu otsikko
52
+ show_in_menu_title: Näytä valikossa
53
+ show_in_menu_description: Näytä tämä sivu nettisivuston valikossa
54
+ show_in_menu_help: "Poista rasti tästä kentästä, jos haluat poistaa sivun valikosta. Tämä voi olla hyödyllinen ominaisuus, jos haluat näkymättömän sivun jonka linkin voit antaa tietyille ihmisille."
55
+ save_as_draft: Tallenna luonnoksena
56
+ skip_to_first_child: "Näytä ensimmäinen alisivu"
57
+ skip_to_first_child_label: "Uudelleenohjaa kävijät ensimmäiseen alisivuun"
58
+ skip_to_first_child_help: "Tämä ominaisuus linkittää tämän sivun ensimmäiseen alisivuun, joka sillä on. Tämä on hyödyllistä, kun haluat ryhmitellä sivuja yhteen."
59
+ link_url: Uudelleenohjaa tämä sivu toiselle nettisivustolle tai sivulle
60
+ link_url_help: "Jos haluat tämän sivun uudelleenohjaavan käyttäjän toiselle nettisivustolle tai sivulle, kirjoita URL (esim. http://google.com) tai jätä muuten tyhjäksi"
61
+ parent_page_help: "Voit asettaa sivun toisen sivun alisivuksi valitsemalla yläsivun valikosta. Jos haluat tämän sivun olevan pääsivu, jätä sivu valitsematta."
62
+ custom_title_help: "Jos haluat sivun näyttävän eri otsikon valikossa, valitse 'Teksti' ja kirjoita se tähän."
63
+ actions:
64
+ create_new_page: Lisää uusi sivu
65
+ reorder_pages: Muuta sivujen järjestystä
66
+ reorder_pages_done: Tallenna
67
+ records:
68
+ no_pages_yet: Sivuja ei ole vielä. Paina "Lisää uusi sivu-" painiketta lisätäksesi ensimmäisen sivun.
69
+ translator_access: Sinulla ei ole lupaa muokata sivuja tällä kielellä.
73
70
  activerecord:
74
71
  models:
75
- page: sivu
72
+ refinery/page: sivu
76
73
  attributes:
77
- page:
74
+ refinery/page:
78
75
  title: Otsikko