alchemy_i18n 4.2.0 → 4.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c4e6f92639f3910900ed4b975fe66367030d1d6590fe3fced5f03e3e7bd2b251
4
- data.tar.gz: f82e5111bafa458b63dbe66dd183c95d32e98c234b99cb02c040ecbd22b2aed5
3
+ metadata.gz: a956462e3a5a2edf0380ad91d6c9760219f91d84e80d492468cd51a63d616843
4
+ data.tar.gz: 071e52d9683484f47098560ef597b166fb476cbe2f09ac005b1f1ee3c4f62d5b
5
5
  SHA512:
6
- metadata.gz: 880ff8f963334974947454c46b7639bb05b898288c6c118bba205ddec64909e29e9967f6ecdf5abe2930d7a65f45c6f7001aedf51efb31006c906af594643fc2
7
- data.tar.gz: 1b77f1975245191a93d2bb7f6dab67c9f8317ae17e29ec4c11c2c906566c3b7d2a513e16541175ddfc7bf65ab16f655041fdc49d5d1c853d6e1c89791cb1d009
6
+ metadata.gz: 775151c90e6e23fe8162e9406c8881ed825ca32c28def478815a9c7463810d3f7308cbb68842a1de7006e1e9e385a5fb3b2d0e2adc88c54121a9f33fa7cd3c7e
7
+ data.tar.gz: d73b7b37a7aa76f86bd8b71295f31e02e9d0ddf68c1fdd534669e2430d53e55c802cd2cd8c3df90f382edcd1becb3f23d27c57cf6752ef3d07fa6890e7b7d3c2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [v4.2.2](https://github.com/AlchemyCMS/alchemy_i18n/tree/v4.2.2) (2024-09-06)
4
+
5
+ [Full Changelog](https://github.com/AlchemyCMS/alchemy_i18n/compare/v4.2.1...v4.2.2)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Add some missing German translations [\#67](https://github.com/AlchemyCMS/alchemy_i18n/pull/67) ([tvdeyen](https://github.com/tvdeyen))
10
+ - Update alchemy.es.yml \(modules.menus\) [\#66](https://github.com/AlchemyCMS/alchemy_i18n/pull/66) ([HatsuMora](https://github.com/HatsuMora))
11
+
12
+ ## [v4.2.1](https://github.com/AlchemyCMS/alchemy_i18n/tree/v4.2.1) (2024-07-30)
13
+
14
+ [Full Changelog](https://github.com/AlchemyCMS/alchemy_i18n/compare/v4.2.0...v4.2.1)
15
+
16
+ **Merged pull requests:**
17
+
18
+ - Fix element validation error messages [\#65](https://github.com/AlchemyCMS/alchemy_i18n/pull/65) ([tvdeyen](https://github.com/tvdeyen))
19
+
3
20
  ## [v4.2.0](https://github.com/AlchemyCMS/alchemy_i18n/tree/v4.2.0) (2024-05-31)
4
21
 
5
22
  [Full Changelog](https://github.com/AlchemyCMS/alchemy_i18n/compare/v4.1.3...v4.2.0)
@@ -1,3 +1,3 @@
1
1
  module AlchemyI18n
2
- VERSION = "4.2.0"
2
+ VERSION = "4.2.2"
3
3
  end
@@ -46,58 +46,58 @@ de:
46
46
  element_names:
47
47
  article: Artikel
48
48
 
49
- # == Translated names for contents in elements.
50
- # Used for the content editor label inside the element editor view (The elements window)
49
+ # == Translated roles for ingredients in elements.
50
+ # Used for the ingredient editor label inside the element editor view (The elements window)
51
51
  #
52
- # Tip: You can translate content names globally for all contents of this name, or specificly for an element.
53
- # To do so, just place the content_name under the element name
52
+ # Tip: You can translate ingredient roles globally for all ingredients with this role, or specificly for an element.
53
+ # To do so, just place the ingredient_role under the element name
54
54
  #
55
55
  # Example:
56
56
  #
57
57
  # de:
58
58
  # alchemy:
59
- # content_names:
59
+ # ingredient_roles:
60
60
  # headline: Überschrift
61
61
  # news_article:
62
62
  # headline: News Überschrift
63
63
  # image_caption: Bildunterschrift
64
64
  # show_caption: Zeige Bildunterschrift
65
65
  #
66
- content_names:
66
+ ingredient_roles:
67
67
  headline: Überschrift
68
68
  text: Text
69
69
  picture: Bild
70
70
 
71
- # === Translations for content validations
72
- # Used when a user did not enter (correct) values to the content field.
71
+ # === Translations for ingredient validations
72
+ # Used when a user did not enter (correct) values to the ingredient field.
73
73
  #
74
- # Tip: You can define the validation messages translations different for each element and content
74
+ # Tip: You can define the validation messages translations different for each element and ingredient
75
75
  #
76
76
  # Example:
77
77
  #
78
78
  # de:
79
79
  # alchemy:
80
- # content_validations:
80
+ # ingredient_validations:
81
81
  # contactform:
82
82
  # success_page:
83
83
  # blank: 'Bitte wählen Sie eine Folgeseite.'
84
84
  # mail_to:
85
85
  # blank: 'Bitte geben Sie eine E-Mail Adresse an zu der das Kontaktformular sendet.'
86
86
  #
87
- content_validations:
87
+ ingredient_validations:
88
88
  errors:
89
89
  blank: "%{field} darf nicht leer sein"
90
90
  invalid: "%{field} hat das falsche Format"
91
91
  taken: "%{field} wurde schon benutzt"
92
92
 
93
- # Hint texts for contents
94
- content_hints:
93
+ # Hint texts for ingredients
94
+ ingredient_hints:
95
95
  headline: "Dies ist ein einzeiliger unformatierter Text"
96
96
  picture: "Bilder werden in der Bibliothek gespeichert. Ein Bild kann mehrfach einem Element zugewiesen werden. Auch ein Bildauswahlwerkzeug ist in Alchemy integriert."
97
97
  text: "Dies ist ein formatierbarer Textblock. Die Einstellungen des Editors können angepasst werden. Siehe http://guides.alchemy-cms.com/stable/customize_tinymce.html"
98
98
 
99
- # Default texts for new contents created
100
- default_content_texts:
99
+ # Default texts for new ingredients created
100
+ default_ingredient_texts:
101
101
  article_headline: "Willkommen auf Ihrer Alchemy Seite"
102
102
  article_text: '<p>Als erstes sollte man sich mit der Struktur von Alchemy vertraut machen. <a class="external" href="http://guides.alchemy-cms.com/stable/alchemy_approach.html" target="_blank" data-link-target="blank">Mehr dazu in den Guidelines</a>.</p><p>Die wichtigsten beiden Dinge die man über Alchemy wissen muss sind Elemente und Seitentypen.</p><p><span style="text-decoration: underline;"><strong>Elemente:</strong></span></p><p>Mit Alchemy kann man eine Seite in Inhaltsbereiche aufteilen, Elemente. Diese Elemente werden aus verschiedenen Grundtypen (Essenzen) zusammengesetzt. Die Essenzen sind:</p><ul><li>EssenceText - <em>Eine Zeile Text</em></li><li>EssenceRichtext - <em>Ein TinyMCE basierter formatierter Textblock</em></li><li>EssencePicture - <em>Ein Verweis auf ein Bild</em></li><li>EssenceHtml - <em>HTML Code</em></li><li>EssenceSelect - <em>Eine Auswahl an Werten</em></li><li>EssenceBoolean - <em>Eine Checkbox</em></li></ul><p>Elemente werden in einer YAML Datei definiert: <strong>config/alchemy/elements.yml</strong></p><p><a class="external" href="http://guides.alchemy-cms.com/stable/elements.html" target="_blank" data-link-target="blank">Mehr über Elemente und wie sie definiert werden, kann in den Guidelines nachgelesen werden.</a></p><p><span style="text-decoration: underline;"><strong>Seitentypen:</strong></span></p><p>Es können verschiedene Seitentypen definiert werden. Diesen können Elemente zugewiesen und ihr Verhalten definiert werden.</p><p>Seitentypen werden ein einer YAML Datei definiert: <strong>config/alchemy/page_layouts.yml</strong></p><p><a class="external" href="http://guides.alchemy-cms.com/stable/page_layouts.html" target="_blank" data-link-target="blank">Mehr über das Erstellen von Seitentypen kann in den Guidelines nachgelesen werden.</a></p>'
103
103
  lorem: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
@@ -107,7 +107,7 @@ de:
107
107
  element_hints:
108
108
  article: "Dies ist ein Hinweistext für das Artikel Element. Dieser Text kann in der `config/locales/alchemy.de.yml` Datei angepasst werden."
109
109
 
110
- essence_pictures:
110
+ picture_ingredients:
111
111
  css_classes:
112
112
  left: "Links vom Text"
113
113
  right: "Rechts vom Text"
@@ -245,6 +245,7 @@ de:
245
245
  back: "zurück"
246
246
  create_tree_as_new_language: "%{language} als neuen Sprachbaum anlegen"
247
247
  locked_pages: "Aktive Seiten"
248
+ "Add a page": "Eine Seite hinzufügen"
248
249
  "Add global page": "Neue globale Seite"
249
250
  "Add page link": "Verweis hinzufügen"
250
251
  "Alchemy is open software and itself uses open software and free resources:": "Alchemy ist offene Software und benutzt selbst offene Software und freie Ressourcen:"
@@ -266,7 +267,6 @@ de:
266
267
  "Delete element": "Element löschen"
267
268
  "Do you really want to clear the clipboard?": "Wollen Sie die Zwischenablage wirklich leeren?"
268
269
  "Do you really want to clear the trash?": "Wollen Sie den Papierkorb wirklich leeren?"
269
- "Do you really want to delete this content?": "Wollen Sie diesen Inhalt wirklich löschen?"
270
270
  "Drag an element over to the element window to restore it": "Ziehen Sie ein Element mit der Maus in das Elemente Fenster, um es wieder herzustellen."
271
271
  "Edit Picturemask": "Bildmaske bearbeiten"
272
272
  "Edit image": "Bild bearbeiten"
@@ -282,6 +282,7 @@ de:
282
282
  "Flush picture cache": "Bildercache löschen"
283
283
  "Global shortcuts": "Globale Tastaturbefehle"
284
284
  "Hide childpages": "Unterseiten ausblenden"
285
+ "Hierarchical": "Als Seitenbaum anzeigen"
285
286
  hide_elements: "Elemente ausblenden"
286
287
  hide_element: "Element ausblenden"
287
288
  "Image missing": "Bild fehlt"
@@ -353,6 +354,7 @@ de:
353
354
  "Site successfully removed": "Website wurde erfolgreich gelöscht."
354
355
  "Site successfully updated": "Website wurde erfolgreich aktualisiert."
355
356
  "Size": "Größe"
357
+ "Sortable List": "Als Liste anzeigen"
356
358
  "Sort pages": "Seiten sortieren"
357
359
  "Successfully added content": "%{content} wurde hinzugefügt"
358
360
  "Successfully deleted content": "%{content} wurde gelöscht"
@@ -371,7 +373,7 @@ de:
371
373
  "Attachment Preview": "Dateivorschau"
372
374
  "Visit page": "zur Seite gehen"
373
375
  "Warning!": "Achtung!"
374
- content_definition_missing: "Warnung: Für diesen Content konnte die Vorlage nicht gefunden werden. Bitte überprüfen Sie die elements.yml Datei."
376
+ ingredient_definition_missing: "Warnung: Für diesen Content konnte die Vorlage nicht gefunden werden. Bitte überprüfen Sie die elements.yml Datei."
375
377
  element_definition_missing: "Warnung! Für dieses Element konnte die Vorlage nicht gefunden werden. Bitte überprüfen Sie die elements.yml Datei."
376
378
  page_definition_missing: "Warnung! Für diese Seite konnte die Vorlage nicht gefunden werden. Bitte überprüfen Sie die page_layouts.yml Datei."
377
379
  "Welcome to Alchemy": "Willkommen in Alchemy"
@@ -415,7 +417,7 @@ de:
415
417
  confirm_to_delete_page: "Wollen Sie diese Seite wirklich löschen? Alle Inhalte (auch die aus dem Papierkorb) gehen dabei unwiderruflich verloren!"
416
418
  content_essence_not_found: "Essenz wurde nicht gefunden"
417
419
  content_not_found: "Das Feld für diesen Inhalt ist nicht vorhanden."
418
- content_validations_headline: "Bitte überprüfen Sie die markierten Felder."
420
+ ingredient_validations_headline: "Bitte überprüfen Sie die markierten Felder."
419
421
  copy: "kopieren"
420
422
  copy_element: "Element kopieren"
421
423
  copy_page: "Seite kopieren"
@@ -646,6 +648,15 @@ de:
646
648
  created: erstellt
647
649
  updated: aktualisiert
648
650
  removed: gelöscht
651
+ attachment:
652
+ filters:
653
+ all: Alle
654
+ page:
655
+ filters:
656
+ all: Alle
657
+ picture:
658
+ filters:
659
+ all: Alle
649
660
  relation_select:
650
661
  blank: "- ohne -"
651
662
  right: "rechts"
@@ -892,6 +903,9 @@ de:
892
903
  alchemy/picture:
893
904
  one: Bild
894
905
  other: Bilder
906
+ alchemy/picture_description:
907
+ one: Bildbeschreibung
908
+ other: Bildbeschreibungen
895
909
  alchemy/user:
896
910
  one: Benutzer
897
911
  other: Benutzer
@@ -990,6 +1004,8 @@ de:
990
1004
  image_file_size: "Dateigröße"
991
1005
  name: "Name"
992
1006
  tag_list: Tags
1007
+ alchemy/picture_description:
1008
+ text: "Beschreibung"
993
1009
  alchemy/site:
994
1010
  name: "Bezeichnung"
995
1011
  host: "primäre Domain"
@@ -48,58 +48,58 @@ es:
48
48
  element_names:
49
49
  article: Artículo
50
50
 
51
- # == Translated names for contents in elements.
52
- # Used for the content editor label inside the element editor view (The elements window)
51
+ # == Translated roles for ingredients in elements.
52
+ # Used for the ingredient editor label inside the element editor view (The elements window)
53
53
  #
54
- # Tip: You can translate content names globally for all contents of this name, or specificly for an element.
55
- # To do so, just place the content_name under the element name
54
+ # Tip: You can translate ingredient roles globally for all ingredients with this role, or specificly for an element.
55
+ # To do so, just place the ingredient_role under the element name
56
56
  #
57
57
  # Example:
58
58
  #
59
59
  # es:
60
60
  # alchemy:
61
- # content_names:
61
+ # ingredient_roles:
62
62
  # headline: Titular
63
63
  # news_article:
64
64
  # headline: Titular de noticia
65
65
  # image_caption: Subtítulo
66
66
  # show_caption: Subtítulo de programa
67
67
  #
68
- content_names:
68
+ ingredient_roles:
69
69
  headline: Encabezado
70
70
  text: Texto
71
71
  picture: Imagen
72
72
 
73
- # === Translations for content validations
74
- # Used when a user did not enter (correct) values to the content field.
73
+ # === Translations for ingredient validations
74
+ # Used when a user did not enter (correct) values to the ingredient field.
75
75
  #
76
- # Tip: You can define the validation messages translations different for each element and content
76
+ # Tip: You can define the validation messages translations different for each element and ingredient
77
77
  #
78
78
  # Example:
79
79
  #
80
80
  # es:
81
81
  # alchemy:
82
- # content_validations:
82
+ # ingredient_validations:
83
83
  # contactform:
84
84
  # success_page:
85
85
  # blank: 'Por favor elige una página para mostrar.'
86
86
  # mail_to:
87
87
  # blank: 'Por favor proporciona una dirección de correo donde entregar las consultas de contacto.'
88
88
  #
89
- content_validations:
89
+ ingredient_validations:
90
90
  errors:
91
91
  blank: "%{field} no puede estar en blanco"
92
92
  invalid: '%{field} tiene un formato incorrecto '
93
93
  taken: '%{field} ya está en uso'
94
94
 
95
- # Hint texts for contents
96
- content_hints:
95
+ # Hint texts for ingredients
96
+ ingredient_hints:
97
97
  headline: "Esta es una sencilla linea de texto sin formato"
98
98
  picture: "Las imágenes se almacenan en la librería. Puedes asignar una imagen varias veces en tu sitio. Alchemy tiene una herramienta de recorte de imagen integrada."
99
99
  text: "Este es un bloque de texto enriquecido mediante el editor TinyMCE. Puedes cambiar la configuración del editor. Ver http://guides.alchemy-cms.com/stable/customize_tinymce.html"
100
100
 
101
- # Default texts for new contents created
102
- default_content_texts:
101
+ # Default texts for new ingredients created
102
+ default_ingredient_texts:
103
103
  article_headline: "Bienvenido a tu primera página de Alchemy CMS"
104
104
  article_text: '<p><strong>Como empezar.</strong></p><p>Lo primero de todo deberías leer sobre Alchemy y su arquitectura en las <a class="external" href="http://guides.alchemy-cms.com/stable/alchemy_approach.html" target="_blank" data-link-target="blank">guías</a>.</p><p>Las cosas más importantes que debes saber sobre Alchemy son elementos (<i>elements</i>) y disposiciones de página (<i>page layouts</i>).</p><p><span style="text-decoration: underline;"><strong>Elementos:</strong></span></p><p>Con Alchemy puedes dividir las páginas en partes de contenido, elementos. Estos elementos se pueden definir mediante varios tipos de contenido básicos: esencias (<i>essences</i>). Las esencias básicas son:</p><ul><li>EssenceText - <em>Un única línea de texto</em></li><li>EssenceRichtext - <em>Un bloque de texto formateado mediante TinyMCE</em></li><li>EssencePicture - <em>Una referencia a una imagen</em></li><li>EssenceHtml - <em>Código HTML empotrado</em></li><li>EssenceSelect - <em>Una selección de valores</em></li><li>EssenceBoolean - <em>Una casilla de verificación</em></li></ul><p>Los elementos se definen en el fichero YAML <strong>config/alchemy/elements.yml</strong></p><p><a class="external" href="http://guides.alchemy-cms.com/stable/elements.html" target="_blank" data-link-target="blank">Lee más sobre elementos y cómo definirlos en las guías.</a></p><p><span style="text-decoration: underline;"><strong>Tipos de página:</strong></span></p><p>Puedes definir varios tipos de páginas, llamados disposiciones de páginas (<i>page layouts</i>). Puedes asignar elementos a las disposiciones de páginas y controlar cómo se comportan los elementos y una página con una disposición concreta.</p><p>Las disposiciones de páginas se definen en el fichero YAML <strong>config/alchemy/page_layouts.yml</strong></p><p><a class="external" href="http://guides.alchemy-cms.com/stable/page_layouts.html" target="_blank" data-link-target="blank">Lee más sobre definir disposiciones de páginas en las guías.</a></p>'
105
105
  lorem: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
@@ -109,7 +109,7 @@ es:
109
109
  element_hints:
110
110
  article: "Este es el texto de ayuda del elemento artículo. Puedes cambiar este texto en `config/locales/alchemy.en.yml`. Siéntete libre de cambiarlo a tu gusto, es tuyo."
111
111
 
112
- essence_pictures:
112
+ picture_ingredients:
113
113
  css_classes:
114
114
  left: 'A la izquierda'
115
115
  right: 'A la derecha'
@@ -320,7 +320,7 @@ es:
320
320
  "Attachment Preview": "Vista previa"
321
321
  "Visit page": "Visitar página"
322
322
  "Warning!": "¡Atención!"
323
- content_definition_missing: "Atención: Falta la descripción del contenido. Por favor comprueba el archivo elements.yml"
323
+ ingredient_definition_missing: "Atención: Falta la descripción del contenido. Por favor comprueba el archivo elements.yml"
324
324
  element_definition_missing: "¡Atención! Falta la descripción. Por favor comprueba tu archivo elements.yml."
325
325
  "Welcome to Alchemy": "Bienvenido a Alchemy"
326
326
  "Who else is online": "Quien más está conectado"
@@ -360,7 +360,7 @@ es:
360
360
  confirm_to_delete_page: "¿Realmente desea eliminar esta página? ¡Todos los elementos se perderán!"
361
361
  content_essence_not_found: "Esencia del contenido no encontrada"
362
362
  content_not_found: "Campo para el contenido no presente."
363
- content_validations_headline: "Por favor compruebe los campos marcados abajo"
363
+ ingredient_validations_headline: "Por favor compruebe los campos marcados abajo"
364
364
  copy: "copiar"
365
365
  copy_element: "Copiar este elemento"
366
366
  copy_page: "Copiar página"
@@ -465,11 +465,11 @@ es:
465
465
  languages: "Idiomas"
466
466
  layoutpages: "Páginas globales"
467
467
  library: "Librería"
468
+ menus: "Menús"
468
469
  pages: "Páginas"
469
470
  tags: "Etiquetas"
470
471
  sites: "Sitios"
471
472
  user_sessions: "Login"
472
- user_sessions: "Login"
473
473
  users: "Usuarios"
474
474
  name: "Nombre"
475
475
  names: "Nombres"
@@ -64,12 +64,12 @@ fr:
64
64
  searchresult: "detail de recherche"
65
65
  contactform: "Formulaire de contact"
66
66
 
67
- # == Translated names for contents in elements.
68
- # Used for the content editor label inside the element editor view (The elements window)
67
+ # == Translated roles for ingredients in elements.
68
+ # Used for the ingredient editor label inside the element editor view (The elements window)
69
69
  #
70
- # Tip: You can translate content names globally for all contents of this name, or specificly for an element.
71
- # To do so, just place the content_name under the element name
72
- content_names:
70
+ # Tip: You can translate ingredient roles globally for all ingredients with this role, or specificly for an element.
71
+ # To do so, just place the ingredient_role under the element name
72
+ ingredient_roles:
73
73
  text: "Texte"
74
74
  date: "Date"
75
75
  body: "Contenu"
@@ -89,9 +89,9 @@ fr:
89
89
  contactform:
90
90
  success_page: "Page suivante"
91
91
 
92
- # Translations for content validations
92
+ # Translations for ingredient validations
93
93
  #
94
- content_validations:
94
+ ingredient_validations:
95
95
  contactform:
96
96
  success_page:
97
97
  blank: "sélectionnez la page suivante s’il vous plait"
@@ -100,11 +100,11 @@ fr:
100
100
  invalid: "%{field} A le mauvais format"
101
101
  taken: "%{field} Déja utilisé"
102
102
 
103
- default_content_texts:
103
+ default_ingredient_texts:
104
104
  lorem: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
105
105
  corporate_lorem: "Appropriately enable sustainable growth strategies vis-a-vis holistic materials. Energistically orchestrate open-source e-tailers vis-a-vis plug-and-play best practices. Uniquely plagiarize client-centric opportunities whereas plug-and-play ideas. Distinctively reconceptualize backward-compatible partnerships vis-a-vis reliable total linkage. Interactively fabricate highly efficient networks for clicks-and-mortar content. Collaboratively reconceptualize holistic markets via 2.0 architectures."
106
106
 
107
- essence_pictures:
107
+ picture_ingredients:
108
108
  css_classes:
109
109
  left: "À gauche du texte"
110
110
  right: "À droite du texte"
@@ -316,7 +316,7 @@ fr:
316
316
  "View File": "Montrer Dossier"
317
317
  "Visit page": "Allerà la page"
318
318
  "Warning!": "Attention !"
319
- content_definition_missing: "Avertissement : Pour ce contenu le modèle n’a pas été trouvé. S’il vous plaît vérifier le fichier elements.yml."
319
+ ingredient_definition_missing: "Avertissement : Pour ce contenu le modèle n’a pas été trouvé. S’il vous plaît vérifier le fichier elements.yml."
320
320
  element_definition_missing: "AVERTISSEMENT ! Pour cet élément, le modèle ne peut pas être trouvé. S’il vous plaît vérifier le fichier elements.yml."
321
321
  "Welcome to Alchemy": "Bienvenue sur Alchemy"
322
322
  "Who else is online": "Qui d’autre est en ligne"
@@ -359,7 +359,7 @@ fr:
359
359
  contactform_body: "Modèle de message"
360
360
  content_essence_not_found: "Essence n’a pas été trouvé"
361
361
  content_not_found: "Le champ de ce contenu n’est pas disponible."
362
- content_validations_headline: "S’il vous plaît vérifier les champs en surbrillance."
362
+ ingredient_validations_headline: "S’il vous plaît vérifier les champs en surbrillance."
363
363
  copy: "Copier"
364
364
  copy_element: "Copier élément"
365
365
  copy_page: "Copier page"
@@ -44,24 +44,24 @@ it:
44
44
  #
45
45
  element_names:
46
46
 
47
- # == Translated names for contents in elements.
48
- # Used for the content editor label inside the element editor view (The elements window)
47
+ # == Translated roles for ingredients in elements.
48
+ # Used for the ingredient editor label inside the element editor view (The elements window)
49
49
  #
50
- # Tip: You can translate content names globally for all contents of this name, or specificly for an element.
51
- # To do so, just place the content_name under the element name
50
+ # Tip: You can translate ingredient roles globally for all ingredients with this role, or specificly for an element.
51
+ # To do so, just place the ingredient_role under the element name
52
52
  #
53
53
  # Example:
54
54
  #
55
55
  # en:
56
56
  # alchemy:
57
- # content_names:
57
+ # ingredient_roles:
58
58
  # headline: Headline
59
59
  # news_article:
60
60
  # headline: News Headline
61
61
  # image_caption: Caption
62
62
  # show_caption: Show Caption
63
63
  #
64
- content_names:
64
+ ingredient_roles:
65
65
 
66
66
  # === Translations for content validations
67
67
  # Used when a user did not enter (correct) values to the content field.
@@ -72,24 +72,24 @@ it:
72
72
  #
73
73
  # en:
74
74
  # alchemy:
75
- # content_validations:
75
+ # ingredient_validations:
76
76
  # contactform:
77
77
  # success_page:
78
78
  # blank: 'Please choose a follow up page.'
79
79
  # mail_to:
80
80
  # blank: 'Please provide an email address where the contact inquiries will be delivered to.'
81
81
  #
82
- content_validations:
82
+ ingredient_validations:
83
83
  errors:
84
84
  blank: "%{field} non può essere vuoto"
85
85
  invalid: "%{field} ha un formato errato"
86
86
  taken: "%{field} è già stato preso"
87
87
 
88
- default_content_texts:
88
+ default_ingredient_texts:
89
89
  lorem: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
90
90
  corporate_lorem: "Appropriately enable sustainable growth strategies vis-a-vis holistic materials. Energistically orchestrate open-source e-tailers vis-a-vis plug-and-play best practices. Uniquely plagiarize client-centric opportunities whereas plug-and-play ideas. Distinctively reconceptualize backward-compatible partnerships vis-a-vis reliable total linkage. Interactively fabricate highly efficient networks for clicks-and-mortar content. Collaboratively reconceptualize holistic markets via 2.0 architectures."
91
91
 
92
- essence_pictures:
92
+ picture_ingredients:
93
93
  css_classes:
94
94
  left: "Alla sinistra del testo"
95
95
  right: "Alla destra del testo"
@@ -298,7 +298,7 @@ it:
298
298
  "View File": "Mostra File"
299
299
  "Visit page": "Visita pagina"
300
300
  "Warning!": "Attenzione!"
301
- content_definition_missing: "Attenzione: Manca la definizione del contenuto. Controlla il file elements.yml"
301
+ ingredient_definition_missing: "Attenzione: Manca la definizione del contenuto. Controlla il file elements.yml"
302
302
  element_definition_missing: "ATTENZIONE! Manca la definizione dell'elemento. Controlla il file elements.yml."
303
303
  page_definition_missing: "ATTENZIONE! Manca la definizione del layout della pagina. Controlla il file page_layouts.yml."
304
304
  "Welcome to Alchemy": "Benvenuto su Alchemy"
@@ -341,7 +341,7 @@ it:
341
341
  confirm_to_delete_page: "Vuoi eliminare veramente questa pagina? I suoi elementi andranno persi!"
342
342
  content_essence_not_found: "Essenza del contenuto non trovata"
343
343
  content_not_found: "Campo per il contenuto non trovato."
344
- content_validations_headline: "Controlla i campi segnati qui sotto"
344
+ ingredient_validations_headline: "Controlla i campi segnati qui sotto"
345
345
  copy: "copia"
346
346
  copy_element: "Copia questo elemento"
347
347
  copy_page: "Copia pagina"
@@ -364,15 +364,15 @@ nb-NO:
364
364
  messages:
365
365
  success: Din beskjed ble levert
366
366
  contactform_body:
367
- content_definition_missing: "Advarsel: Innhold mangler definisjon. Vennligst sjekk elements.yml"
367
+ ingredient_definition_missing: "Advarsel: Innhold mangler definisjon. Vennligst sjekk elements.yml"
368
368
  content_essence_not_found: Innholdsessens ikke funnet
369
- content_names:
369
+ ingredient_roles:
370
370
  content_not_found: Felt for innhold mangler
371
- content_validations:
371
+ ingredient_validations:
372
372
  contactform:
373
373
  success_page:
374
374
  blank:
375
- content_validations:
375
+ ingredient_validations:
376
376
  contactform:
377
377
  mail_to:
378
378
  blank:
@@ -382,7 +382,7 @@ nb-NO:
382
382
  blank: "%{field} kan ikke være blankt"
383
383
  invalid: "%{field} har feil format"
384
384
  taken: "%{field} er allerede i bruk"
385
- content_validations_headline: Vennligst sjekk markerte felt under
385
+ ingredient_validations_headline: Vennligst sjekk markerte felt under
386
386
  copy: kopier
387
387
  copy_element: Kopier dette elementet
388
388
  copy_language_tree_heading: Kopier sidetre
@@ -397,7 +397,7 @@ nb-NO:
397
397
  currently_edited_by: Denne siden er låst av
398
398
  cut_element: Klipp ut dette elementet.
399
399
  dashboard: Kontrollpanel
400
- default_content_texts:
400
+ default_ingredient_texts:
401
401
  corporate_lorem: Appropriately enable sustainable growth strategies vis-a-vis holistic materials. Energistically orchestrate open-source e-tailers vis-a-vis plug-and-play best practices. Uniquely plagiarize client-centric opportunities whereas plug-and-play ideas. Distinctively reconceptualize backward-compatible partnerships vis-a-vis reliable total linkage. Interactively fabricate highly efficient networks for clicks-and-mortar content. Collaboratively reconceptualize holistic markets via 2.0 architectures.
402
402
  lorem: Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
403
403
  delete_file: Slett denne filen fra serveren.
@@ -426,7 +426,7 @@ nb-NO:
426
426
  element_of_type: Element
427
427
  element_saved: Lagret element.
428
428
  enter_external_link: Vennligst skriv inn URL du ønsker å lenke til
429
- essence_pictures:
429
+ picture_ingredients:
430
430
  css_classes:
431
431
  left: Venstre fra tekst
432
432
  no_float: Over tekst
@@ -44,52 +44,52 @@ nl:
44
44
  #
45
45
  element_names:
46
46
 
47
- # == Translated names for contents in elements.
48
- # Used for the content editor label inside the element editor view (The elements window)
47
+ # == Translated roles for ingredients in elements.
48
+ # Used for the ingredient editor label inside the element editor view (The elements window)
49
49
  #
50
- # Tip: You can translate content names globally for all contents of this name, or specificly for an element.
51
- # To do so, just place the content_name under the element name
50
+ # Tip: You can translate ingredient roles globally for all ingredients with this role, or specificly for an element.
51
+ # To do so, just place the ingredient_role under the element name
52
52
  #
53
53
  # Example:
54
54
  #
55
55
  # nl:
56
56
  # alchemy:
57
- # content_names:
57
+ # ingredient_roles:
58
58
  # headline: Koptekst
59
59
  # news_article:
60
60
  # headline: Nieuws Koptekst
61
61
  # image_caption: Onderschrift
62
62
  # show_caption: Onderschrift weergeven
63
63
  #
64
- content_names:
64
+ ingredient_roles:
65
65
 
66
- # === Translations for content validations
67
- # Used when a user did not enter (correct) values to the content field.
66
+ # === Translations for ingredient validations
67
+ # Used when a user did not enter (correct) values to the ingredient field.
68
68
  #
69
- # Tip: You can define the validation messages translations different for each element and content
69
+ # Tip: You can define the validation messages translations different for each element and ingredient
70
70
  #
71
71
  # Example:
72
72
  #
73
73
  # nl:
74
74
  # alchemy:
75
- # content_validations:
75
+ # ingredient_validations:
76
76
  # contactform:
77
77
  # success_page:
78
78
  # blank: 'Kies een Opvolgpagina.'
79
79
  # mail_to:
80
80
  # blank: 'Kies een Emailadres.'
81
81
  #
82
- content_validations:
82
+ ingredient_validations:
83
83
  errors:
84
84
  blank: "%{field} mag niet leeg zijn"
85
85
  invalid: "%{field} heeft een verkeerd formaat"
86
86
  taken: "%{field} is al in gebruik"
87
87
 
88
- default_content_texts:
88
+ default_ingredient_texts:
89
89
  lorem: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
90
90
  corporate_lorem: "Appropriately enable sustainable growth strategies vis-a-vis holistic materials. Energistically orchestrate open-source e-tailers vis-a-vis plug-and-play best practices. Uniquely plagiarize client-centric opportunities whereas plug-and-play ideas. Distinctively reconceptualize backward-compatible partnerships vis-a-vis reliable total linkage. Interactively fabricate highly efficient networks for clicks-and-mortar content. Collaboratively reconceptualize holistic markets via 2.0 architectures."
91
91
 
92
- essence_pictures:
92
+ picture_ingredients:
93
93
  css_classes:
94
94
  left: "Links van de tekst"
95
95
  right: "Rechts van de tekst"
@@ -295,7 +295,7 @@ nl:
295
295
  "View File": "Bestand weergeven"
296
296
  "Visit page": "Pagina bezoeken"
297
297
  "Warning!": "Waarschuwing!"
298
- content_definition_missing: "Waarschuwing: content mist een beschrijving. Controleer elements.yml"
298
+ ingredient_definition_missing: "Waarschuwing: content mist een beschrijving. Controleer elements.yml"
299
299
  element_definition_missing: "Waarschuwing: Er is geen beschijving gevonden voor dit element. Controleer elements.yml"
300
300
  "Welcome to Alchemy": "Welkom bij Alchemy"
301
301
  "Who else is online": "Wie is ook online"
@@ -337,7 +337,7 @@ nl:
337
337
  confirm_to_delete_page: "Deze pagina verwijderen? Alle inhoud gaat verloren."
338
338
  content_essence_not_found: "Content essence is niet gevonden"
339
339
  content_not_found: "Veld voor content is niet aanwezig"
340
- content_validations_headline: "Controleer de gemarkeerde velden"
340
+ ingredient_validations_headline: "Controleer de gemarkeerde velden"
341
341
  copy: "kopiëren"
342
342
  copy_element: "Dit element kopiëren"
343
343
  copy_page: "Pagina kopiëren"
@@ -42,52 +42,52 @@ pl:
42
42
  #
43
43
  element_names:
44
44
 
45
- # == Translated names for contents in elements.
46
- # Used for the content editor label inside the element editor view (The elements window)
45
+ # == Translated roles for ingredients in elements.
46
+ # Used for the ingredient editor label inside the element editor view (The elements window)
47
47
  #
48
- # Tip: You can translate content names globally for all contents of this name, or specificly for an element.
49
- # To do so, just place the content_name under the element name
48
+ # Tip: You can translate ingredient roles globally for all ingredients with this role, or specificly for an element.
49
+ # To do so, just place the ingredient_role under the element name
50
50
  #
51
51
  # Example:
52
52
  #
53
53
  # en:
54
54
  # alchemy:
55
- # content_names:
55
+ # ingredient_roles:
56
56
  # headline: Headline
57
57
  # news_article:
58
58
  # headline: News Headline
59
59
  # image_caption: Caption
60
60
  # show_caption: Show Caption
61
61
  #
62
- content_names:
62
+ ingredient_roles:
63
63
 
64
- # === Translations for content validations
65
- # Used when a user did not enter (correct) values to the content field.
64
+ # === Translations for ingredient validations
65
+ # Used when a user did not enter (correct) values to the ingredient field.
66
66
  #
67
- # Tip: You can define the validation messages translations different for each element and content
67
+ # Tip: You can define the validation messages translations different for each element and ingredient
68
68
  #
69
69
  # Example:
70
70
  #
71
71
  # en:
72
72
  # alchemy:
73
- # content_validations:
73
+ # ingredient_validations:
74
74
  # contactform:
75
75
  # success_page:
76
76
  # blank: 'Please choose a follow up page.'
77
77
  # mail_to:
78
78
  # blank: 'Please provide an email address where the contact inquiries will be delivered to.'
79
79
  #
80
- content_validations:
80
+ ingredient_validations:
81
81
  errors:
82
82
  blank: "%{field} can't be blank"
83
83
  invalid: "%{field} has wrong format"
84
84
  taken: "%{field} has already been taken"
85
85
 
86
- default_content_texts:
86
+ default_ingredient_texts:
87
87
  lorem: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
88
88
  corporate_lorem: "Appropriately enable sustainable growth strategies vis-a-vis holistic materials. Energistically orchestrate open-source e-tailers vis-a-vis plug-and-play best practices. Uniquely plagiarize client-centric opportunities whereas plug-and-play ideas. Distinctively reconceptualize backward-compatible partnerships vis-a-vis reliable total linkage. Interactively fabricate highly efficient networks for clicks-and-mortar content. Collaboratively reconceptualize holistic markets via 2.0 architectures."
89
89
 
90
- essence_pictures:
90
+ picture_ingredients:
91
91
  css_classes:
92
92
  left: "Left from text"
93
93
  right: "Right from text"
@@ -297,7 +297,7 @@ pl:
297
297
  "Attachment Preview": "Attachment Preview"
298
298
  "Visit page": "Visit page"
299
299
  "Warning!": "Warning!"
300
- content_definition_missing: "Warning: Content is missing its definition. Please check the elements.yml"
300
+ ingredient_definition_missing: "Warning: Content is missing its definition. Please check the elements.yml"
301
301
  element_definition_missing: "WARNING! Missing element definition. Please check your elements.yml file."
302
302
  page_definition_missing: "WARNING! Missing page layout definition. Please check your page_layouts.yml file."
303
303
  "Welcome to Alchemy": "Welcome to Alchemy"
@@ -338,7 +338,7 @@ pl:
338
338
  confirm_to_delete_page: "Do you really want to delete this page? All its elements (even trashed ones) will get lost!"
339
339
  content_essence_not_found: "Content essence not found"
340
340
  content_not_found: "Field for content not present."
341
- content_validations_headline: "Please check marked fields below"
341
+ ingredient_validations_headline: "Please check marked fields below"
342
342
  copy: "copy"
343
343
  copy_element: "Copy this element"
344
344
  copy_page: "Copy page"
@@ -42,52 +42,52 @@ ru:
42
42
  #
43
43
  element_names:
44
44
 
45
- # == Translated names for contents in elements.
46
- # Used for the content editor label inside the element editor view (The elements window)
45
+ # == Translated roles for ingredients in elements.
46
+ # Used for the ingredient editor label inside the element editor view (The elements window)
47
47
  #
48
- # Tip: You can translate content names globally for all contents of this name, or specificly for an element.
49
- # To do so, just place the content_name under the element name
48
+ # Tip: You can translate ingredient roles globally for all ingredients with this role, or specificly for an element.
49
+ # To do so, just place the ingredient_role under the element name
50
50
  #
51
51
  # Example:
52
52
  #
53
53
  # en:
54
54
  # alchemy:
55
- # content_names:
55
+ # ingredient_roles:
56
56
  # headline: Headline
57
57
  # news_article:
58
58
  # headline: News Headline
59
59
  # image_caption: Caption
60
60
  # show_caption: Show Caption
61
61
  #
62
- content_names:
62
+ ingredient_roles:
63
63
 
64
- # === Translations for content validations
65
- # Used when a user did not enter (correct) values to the content field.
64
+ # === Translations for ingredient validations
65
+ # Used when a user did not enter (correct) values to the ingredient field.
66
66
  #
67
- # Tip: You can define the validation messages translations different for each element and content
67
+ # Tip: You can define the validation messages translations different for each element and ingredient
68
68
  #
69
69
  # Example:
70
70
  #
71
71
  # en:
72
72
  # alchemy:
73
- # content_validations:
73
+ # ingredient_validations:
74
74
  # contactform:
75
75
  # success_page:
76
76
  # blank: 'Please choose a follow up page.'
77
77
  # mail_to:
78
78
  # blank: 'Please provide an email address where the contact inquiries will be delivered to.'
79
79
  #
80
- content_validations:
80
+ ingredient_validations:
81
81
  errors:
82
82
  blank: "%{field} не может быть пустым"
83
83
  invalid: "%{field} имеет неверный формат"
84
84
  taken: "%{field} уже занят"
85
85
 
86
- default_content_texts:
86
+ default_ingredient_texts:
87
87
  lorem: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
88
88
  corporate_lorem: "Appropriately enable sustainable growth strategies vis-a-vis holistic materials. Energistically orchestrate open-source e-tailers vis-a-vis plug-and-play best practices. Uniquely plagiarize client-centric opportunities whereas plug-and-play ideas. Distinctively reconceptualize backward-compatible partnerships vis-a-vis reliable total linkage. Interactively fabricate highly efficient networks for clicks-and-mortar content. Collaboratively reconceptualize holistic markets via 2.0 architectures."
89
89
 
90
- essence_pictures:
90
+ picture_ingredients:
91
91
  css_classes:
92
92
  left: "Слева от текста"
93
93
  right: "Справа от текста"
@@ -295,7 +295,7 @@ ru:
295
295
  "View File": "Просмотр файла"
296
296
  "Visit page": "Перейти на страницу"
297
297
  "Warning!": "Внимание!"
298
- content_definition_missing: "Внимание: Отсутствует описание для контента. Проверьте elements.yml."
298
+ ingredient_definition_missing: "Внимание: Отсутствует описание для контента. Проверьте elements.yml."
299
299
  element_definition_missing: "Внимание! Отсутствует описание для элемента. Проверьте elements.yml."
300
300
  "Welcome to Alchemy": "Добро пожаловать в Alchemy"
301
301
  "Who else is online": "Кто еще онлайн"
@@ -335,7 +335,7 @@ ru:
335
335
  confirm_to_delete_page: "Вы действительно хотите удалить эту страницу? Все её элементы будут безвозвратно потеряны!"
336
336
  content_essence_not_found: "Эссенция контента не найдена"
337
337
  content_not_found: "Поле неактуально для контента."
338
- content_validations_headline: "Пожалуйста, проверьте отмеченные ниже поля"
338
+ ingredient_validations_headline: "Пожалуйста, проверьте отмеченные ниже поля"
339
339
  copy: "копировать"
340
340
  copy_element: "Копировать этот элемент"
341
341
  copy_page: "Копировать страницу"
@@ -46,64 +46,62 @@ zh-CN:
46
46
  article: 文章
47
47
  contactform: 联系表单
48
48
 
49
- # == Translated names for contents in elements.
50
- # Used for the content editor label inside the element editor view (The elements window)
49
+ # == Translated roles for ingredients in elements.
50
+ # Used for the ingredient editor label inside the element editor view (The elements window)
51
51
  #
52
- # Tip: You can translate content names globally for all contents of this name, or specificly for an element.
53
- # To do so, just place the content_name under the element name
52
+ # Tip: You can translate ingredient roles globally for all ingredients with this role, or specificly for an element.
53
+ # To do so, just place the ingredient_role under the element name
54
54
  #
55
55
  # Example:
56
56
  #
57
57
  # en:
58
58
  # alchemy:
59
- # content_names:
59
+ # ingredient_roles:
60
60
  # headline: Headline
61
61
  # news_article:
62
62
  # headline: News Headline
63
63
  # image_caption: Caption
64
64
  # show_caption: Show Caption
65
65
  #
66
- content_names:
66
+ ingredient_roles:
67
67
  headline: 标题
68
68
  news_article:
69
69
  headline: 新标题
70
70
  image_caption: 标题
71
71
  show_caption: 显示标题
72
72
 
73
- # === Translations for content validations
74
- # Used when a user did not enter (correct) values to the content field.
73
+ # === Translations for ingredient validations
74
+ # Used when a user did not enter (correct) values to the ingredient field.
75
75
  #
76
- # Tip: You can define the validation messages translations different for each element and content
76
+ # Tip: You can define the validation messages translations different for each element and ingredient
77
77
  #
78
78
  # Example:
79
79
  #
80
80
  # en:
81
81
  # alchemy:
82
- # content_validations:
82
+ # ingredient_validations:
83
83
  # contactform:
84
84
  # success_page:
85
85
  # blank: 'Please choose a follow up page.'
86
86
  # mail_to:
87
87
  # blank: 'Please provide an email address where the contact inquiries will be delivered to.'
88
88
  #
89
- content_validations:
90
- content_validations:
91
- contactform:
92
- success_page:
93
- blank: "请选择一个跳转页面。"
94
- mail_to:
95
- blank: "请选择一个电子邮件地址已便所有咨询转发到这个地址。"
96
-
89
+ ingredient_validations:
90
+ contactform:
91
+ success_page:
92
+ blank: "请选择一个跳转页面。"
93
+ mail_to:
94
+ blank: "请选择一个电子邮件地址已便所有咨询转发到这个地址。"
97
95
  errors:
98
96
  blank: "%{field} 不能为空"
99
97
  invalid: "%{field} 格式出错"
100
98
  taken: "%{field} 已经被使用"
101
99
 
102
- default_content_texts:
100
+ default_ingredient_texts:
103
101
  lorem: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
104
102
  corporate_lorem: "Appropriately enable sustainable growth strategies vis-a-vis holistic materials. Energistically orchestrate open-source e-tailers vis-a-vis plug-and-play best practices. Uniquely plagiarize client-centric opportunities whereas plug-and-play ideas. Distinctively reconceptualize backward-compatible partnerships vis-a-vis reliable total linkage. Interactively fabricate highly efficient networks for clicks-and-mortar content. Collaboratively reconceptualize holistic markets via 2.0 architectures."
105
103
 
106
- essence_pictures:
104
+ picture_ingredients:
107
105
  css_classes:
108
106
  left: "文字左边"
109
107
  right: "文字右边"
@@ -313,7 +311,7 @@ zh-CN:
313
311
  "Attachment Preview": "预览附件"
314
312
  "Visit page": "访问页面"
315
313
  "Warning!": "警告!"
316
- content_definition_missing: "警告: 在定义中没有内容。 请检查 elements.yml"
314
+ ingredient_definition_missing: "警告: 在定义中没有内容。 请检查 elements.yml"
317
315
  element_definition_missing: "警告! 没有元素定义。 请检查 elements.yml。"
318
316
  page_definition_missing: "警告! 没有页面布局定义。 请检查 page_layouts.yml 文件。"
319
317
  "Welcome to Alchemy": "欢迎来到Alchemy"
@@ -355,7 +353,7 @@ zh-CN:
355
353
  confirm_to_delete_page: "你确认要删除这个页面? 其中的所有元素 (甚至垃圾桶中的) 都回丢失!"
356
354
  content_essence_not_found: "无法找到内容"
357
355
  content_not_found: "针对内容的字段不存在"
358
- content_validations_headline: "请检查如下字段"
356
+ ingredient_validations_headline: "请检查如下字段"
359
357
  copy: "复制"
360
358
  copy_element: "复制这个元素"
361
359
  copy_page: "复制页面"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alchemy_i18n
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.0
4
+ version: 4.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas von Deyen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-31 00:00:00.000000000 Z
11
+ date: 2024-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: alchemy_cms
@@ -130,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
130
130
  - !ruby/object:Gem::Version
131
131
  version: '0'
132
132
  requirements: []
133
- rubygems_version: 3.5.9
133
+ rubygems_version: 3.5.16
134
134
  signing_key:
135
135
  specification_version: 4
136
136
  summary: AlchemyCMS translation files