ecm_cms2 5.0.0 → 5.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.rdoc +13 -0
- data/app/helpers/ecm/cms_helper.rb +30 -7
- data/config/locales/de.yml +140 -0
- data/config/locales/en.yml +140 -0
- data/lib/ecm/cms/version.rb +1 -1
- data/lib/ecm_cms2.rb +0 -1
- metadata +4 -32
- data/config/locales/ecm.cms.content_box.de.yml +0 -15
- data/config/locales/ecm.cms.content_box.en.yml +0 -15
- data/config/locales/ecm.cms.de.yml +0 -20
- data/config/locales/ecm.cms.en.yml +0 -20
- data/config/locales/ecm.cms.navigation.de.yml +0 -16
- data/config/locales/ecm.cms.navigation.en.yml +0 -16
- data/config/locales/ecm.cms.navigation_item.de.yml +0 -25
- data/config/locales/ecm.cms.navigation_item.en.yml +0 -25
- data/config/locales/ecm.cms.page.content_block.de.yml +0 -14
- data/config/locales/ecm.cms.page.content_block.en.yml +0 -14
- data/config/locales/ecm.cms.page.de.yml +0 -26
- data/config/locales/ecm.cms.page.en.yml +0 -26
- data/config/locales/ecm.cms.partial.de.yml +0 -21
- data/config/locales/ecm.cms.partial.en.yml +0 -21
- data/config/locales/ecm.cms.template.de.yml +0 -21
- data/config/locales/ecm.cms.template.en.yml +0 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f2cd2ca6d167d53551ce7fb876da1e1d5601bea
|
4
|
+
data.tar.gz: b57a30fce64cac0e43707c8981e6131aa44104ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4cc1af5dadb7971bee8958b1a7c10ad5ade830d37d6fb89940770b8c11dc0abcb70326155301fc75c55406ea3ecf86b7c2732c7ad1a739e06f1d3a8050b94462
|
7
|
+
data.tar.gz: 5eda3375e9f6ff2864132903e71de5ba8d1f61e1104b00e77f385653a63589c91bd3e63cb6a6129282f35c12a9ee655ffb8e63496a38b655d1036d1eee243530
|
data/README.rdoc
CHANGED
@@ -72,6 +72,19 @@ Warning: *RUNNING THIS WILL DELETE ALL OF YOUR CMS DATA AND REPLACE IT WITH EXAM
|
|
72
72
|
...
|
73
73
|
end
|
74
74
|
|
75
|
+
= Using the navigation helper
|
76
|
+
|
77
|
+
# app/controllers/application_controller.rb
|
78
|
+
class ApplicationController < ActionController::Base
|
79
|
+
helper Ecm::CmsHelper
|
80
|
+
...
|
81
|
+
end
|
82
|
+
|
83
|
+
Then you can render navigation in your views:
|
84
|
+
|
85
|
+
# app/views/_navigation.rb
|
86
|
+
= cms_render_navigation(:main)
|
87
|
+
|
75
88
|
= Running specs
|
76
89
|
|
77
90
|
gem install bundler
|
@@ -1,11 +1,32 @@
|
|
1
1
|
module Ecm::CmsHelper
|
2
|
+
# Example:
|
3
|
+
#
|
4
|
+
# # This will render a bootstrap 4 compatible navigation
|
5
|
+
# = cms_render_navigation(
|
6
|
+
# :main,
|
7
|
+
# renderer: :list,
|
8
|
+
# container_css_class: 'navbar-nav',
|
9
|
+
# selected_class: 'active',
|
10
|
+
# item_html: { class: 'nav-item' },
|
11
|
+
# link_html: { class: 'nav-link' }
|
12
|
+
# )
|
2
13
|
def cms_render_navigation(name, options = {})
|
3
|
-
options.reverse_merge!
|
14
|
+
options.reverse_merge!(
|
15
|
+
renderer: :bootstrap,
|
16
|
+
expand_all: true,
|
17
|
+
level: 1,
|
18
|
+
selected_class: nil,
|
19
|
+
item_html: {},
|
20
|
+
link_html: {}
|
21
|
+
)
|
4
22
|
|
5
23
|
level = options.delete(:level)
|
6
24
|
expand_all = options.delete(:expand_all)
|
7
25
|
container_css_class = options.delete(:container_css_class)
|
8
26
|
renderer = options.delete(:renderer)
|
27
|
+
selected_class = options.delete(:selected_class)
|
28
|
+
item_html = options.delete(:item_html)
|
29
|
+
link_html = options.delete(:link_html)
|
9
30
|
|
10
31
|
level_as_array = (level).is_a?(Range) ? level.to_a : [level]
|
11
32
|
|
@@ -24,22 +45,24 @@ module Ecm::CmsHelper
|
|
24
45
|
|
25
46
|
render_navigation(level: level, expand_all: expand_all, renderer: renderer) do |navigation|
|
26
47
|
navigation.dom_class = container_css_class
|
48
|
+
navigation.selected_class = selected_class unless selected_class.nil?
|
27
49
|
roots.each do |navigation_item|
|
28
|
-
build_navigation_item(navigation, navigation_item, container_css_class)
|
50
|
+
build_navigation_item(navigation, navigation_item, container_css_class, item_html, link_html)
|
29
51
|
end
|
30
52
|
end
|
31
53
|
end
|
32
54
|
|
33
|
-
def build_navigation_item(navigation, item, container_css_class)
|
34
|
-
options = {}
|
35
|
-
options[:highlights_on] = /#{item.highlights_on}/ if item.highlights_on.present?
|
55
|
+
def build_navigation_item(navigation, item, container_css_class, item_html = {}, link_html = {})
|
36
56
|
options = item.li_attributes.marshal_dump.delete_if { |_key, value| value.blank? }
|
57
|
+
options[:highlights_on] = /#{item.highlights_on}/ if item.highlights_on.present?
|
58
|
+
|
59
|
+
options.reverse_merge!(html: item_html.dup, link_html: link_html)
|
37
60
|
|
38
61
|
navigation.dom_class = container_css_class
|
39
62
|
if item.children.present?
|
40
|
-
navigation.item
|
63
|
+
navigation.item(item.key, item.name, item.url, options) do |sub_navigation|
|
41
64
|
item.children.each do |sub_item|
|
42
|
-
build_navigation_item(sub_navigation, sub_item, container_css_class)
|
65
|
+
build_navigation_item(sub_navigation, sub_item, container_css_class, item_html, link_html)
|
43
66
|
end
|
44
67
|
end
|
45
68
|
else
|
@@ -0,0 +1,140 @@
|
|
1
|
+
de:
|
2
|
+
activerecord:
|
3
|
+
models:
|
4
|
+
ecm/cms/page/content_block:
|
5
|
+
one: Content Block
|
6
|
+
other: Content Blöcke
|
7
|
+
ecm/cms/content_box:
|
8
|
+
one: Content Box
|
9
|
+
other: Content Boxen
|
10
|
+
ecm/cms/navigation:
|
11
|
+
one: Navigation
|
12
|
+
other: Navigationen
|
13
|
+
ecm/cms/navigation_item:
|
14
|
+
one: Navigationseintrag
|
15
|
+
other: Navigationseinträge
|
16
|
+
ecm/cms/page:
|
17
|
+
one: Seite
|
18
|
+
other: Seiten
|
19
|
+
ecm/cms/partial:
|
20
|
+
one: Fragment
|
21
|
+
other: Fragmente
|
22
|
+
ecm/cms/template:
|
23
|
+
one: Vorlage
|
24
|
+
other: Vorlagen
|
25
|
+
attributes:
|
26
|
+
ecm/cms/page/content_block:
|
27
|
+
id: ID
|
28
|
+
body: Inhalt
|
29
|
+
ecm_cms_page: Seite
|
30
|
+
ecm_cms_page_id: Seite
|
31
|
+
ecm_cms_content_box: Content Box
|
32
|
+
ecm_cms_content_box_id: Content Box
|
33
|
+
created_at: Erstellt am
|
34
|
+
updated_at: Aktualisiert am
|
35
|
+
ecm/cms/content_box:
|
36
|
+
id: ID
|
37
|
+
name: Name
|
38
|
+
body: Inhalt
|
39
|
+
ecm_cms_page_content_blocks: Content Blöcke
|
40
|
+
ecm_cms_page_content_blocks_count: Content Blöcke
|
41
|
+
created_at: Erstellt am
|
42
|
+
updated_at: Aktualisiert am
|
43
|
+
ecm/cms/navigation:
|
44
|
+
id: ID
|
45
|
+
created_at: Erstellt am
|
46
|
+
ecm_cms_navigation_items: Navigationseinträge
|
47
|
+
ecm_cms_navigation_items_count: Navigationseinträge
|
48
|
+
locale: Sprache
|
49
|
+
name: Name
|
50
|
+
slug: Freundliche ID
|
51
|
+
updated_at: Aktualisiert am
|
52
|
+
ecm/cms/navigation_item:
|
53
|
+
id: ID
|
54
|
+
children_count: Unterelemente
|
55
|
+
data_add_icon: Symbol
|
56
|
+
depth: Baumtiefe
|
57
|
+
ecm_cms_navigation: Navigation
|
58
|
+
ecm_cms_navigation_id: Navigation
|
59
|
+
ecm_cms_page: Seite
|
60
|
+
ecm_cms_page_id: Seite
|
61
|
+
highlights_on: Hervorgehoben bei
|
62
|
+
key: Schlüssel
|
63
|
+
lft: Links
|
64
|
+
li_attributes: 'Listen-Element Attribute'
|
65
|
+
name: Name
|
66
|
+
options: Optionen
|
67
|
+
parent: Untereintrag von
|
68
|
+
parent_id: Untereintrag von
|
69
|
+
properties: Eigenschaften
|
70
|
+
rgt: Rechts
|
71
|
+
slug: Freundliche ID
|
72
|
+
url: Ziel-URL
|
73
|
+
created_at: Erstellt am
|
74
|
+
updated_at: Aktualisiert am
|
75
|
+
ecm/cms/page:
|
76
|
+
id: ID
|
77
|
+
basename: Name
|
78
|
+
body: Inhalt
|
79
|
+
ecm_cms_folder_id: Ordner
|
80
|
+
ecm_cms_folder: Ordner
|
81
|
+
ecm_cms_navigation_items: Verlinkt von
|
82
|
+
ecm_cms_navigation_item_ids: Verlinkt von
|
83
|
+
filename: Dateiname
|
84
|
+
format: Format
|
85
|
+
handler: Handler
|
86
|
+
layout: Layout
|
87
|
+
locale: Sprache
|
88
|
+
meta_description: Meta Beschreibung
|
89
|
+
path_and_filename: Dateipfad
|
90
|
+
pathname: Pfad
|
91
|
+
title: Titel
|
92
|
+
created_at: Erstellt am
|
93
|
+
updated_at: Aktualisiert am
|
94
|
+
ecm/cms/partial:
|
95
|
+
id: ID
|
96
|
+
basename: Name
|
97
|
+
body: Inhalt
|
98
|
+
ecm_cms_folder_id: Ordner
|
99
|
+
ecm_cms_folder: Ordner
|
100
|
+
filename: Dateiname
|
101
|
+
format: Format
|
102
|
+
handler: Handler
|
103
|
+
layout: Layout
|
104
|
+
locale: Sprache
|
105
|
+
pathname: Pfad
|
106
|
+
created_at: Erstellt am
|
107
|
+
updated_at: Aktualisiert am
|
108
|
+
ecm/cms/template:
|
109
|
+
id: ID
|
110
|
+
basename: Name
|
111
|
+
body: Inhalt
|
112
|
+
ecm_cms_folder_id: Ordner
|
113
|
+
ecm_cms_folder: Ordner
|
114
|
+
filename: Dateiname
|
115
|
+
format: Format
|
116
|
+
handler: Handler
|
117
|
+
layout: Layout
|
118
|
+
locale: Sprache
|
119
|
+
pathname: Pfad
|
120
|
+
created_at: Erstellt am
|
121
|
+
updated_at: Aktualsiert am
|
122
|
+
classes:
|
123
|
+
ecm/cms/add_homepages_service: 'Dienst zum hinzufügen von Homepages'
|
124
|
+
ecm/cms/import_partials_service: 'Dienst zum importieren von Fragmenten'
|
125
|
+
ecm:
|
126
|
+
cms:
|
127
|
+
active_admin:
|
128
|
+
menu: CMS
|
129
|
+
navigation:
|
130
|
+
messages:
|
131
|
+
empty: Navigation %{name} (%{lang}) ist leer
|
132
|
+
not_found: Navigation %{name} (%{lang}) nicht gefunden
|
133
|
+
resources:
|
134
|
+
ecm_cms_folders: ordner
|
135
|
+
ecm_cms_navigations: navigationen
|
136
|
+
ecm_cms_navigation_items: navigationseintraege
|
137
|
+
ecm_cms_pages: seiten
|
138
|
+
ecm_cms_partials: fragmente
|
139
|
+
ecm_cms_templates: vorlagen
|
140
|
+
|
@@ -0,0 +1,140 @@
|
|
1
|
+
en:
|
2
|
+
activerecord:
|
3
|
+
models:
|
4
|
+
ecm/cms/page/content_block:
|
5
|
+
one: Content block
|
6
|
+
other: Content blocks
|
7
|
+
ecm/cms/content_box:
|
8
|
+
one: Content box
|
9
|
+
other: Content boxes
|
10
|
+
ecm/cms/navigation:
|
11
|
+
one: Navigation
|
12
|
+
other: Navigations
|
13
|
+
ecm/cms/navigation_item:
|
14
|
+
one: Navigation item
|
15
|
+
other: Navigation items
|
16
|
+
ecm/cms/page:
|
17
|
+
one: Page
|
18
|
+
other: Pages
|
19
|
+
ecm/cms/partial:
|
20
|
+
one: Partial
|
21
|
+
other: Partials
|
22
|
+
ecm/cms/template:
|
23
|
+
one: Template
|
24
|
+
other: Templates
|
25
|
+
attributes:
|
26
|
+
ecm/cms/page/content_block:
|
27
|
+
id: ID
|
28
|
+
body: Body
|
29
|
+
ecm_cms_page: Page
|
30
|
+
ecm_cms_page_id: Page
|
31
|
+
ecm_cms_content_box: Content box
|
32
|
+
ecm_cms_content_box_id: Content box
|
33
|
+
created_at: Created at
|
34
|
+
updated_at: Updated at
|
35
|
+
ecm/cms/content_box:
|
36
|
+
id: ID
|
37
|
+
name: Name
|
38
|
+
body: Body
|
39
|
+
ecm_cms_page_content_blocks: Content blocks
|
40
|
+
ecm_cms_page_content_blocks_count: Content blocks
|
41
|
+
created_at: Created at
|
42
|
+
updated_at: updated at
|
43
|
+
ecm/cms/navigation:
|
44
|
+
id: ID
|
45
|
+
ecm_cms_navigation_items: Navigation items
|
46
|
+
ecm_cms_navigation_items_count: Navigation items
|
47
|
+
locale: Language
|
48
|
+
name: Name
|
49
|
+
slug: Slug
|
50
|
+
created_at: Created at
|
51
|
+
updated_at: updated at
|
52
|
+
ecm/cms/navigation_item:
|
53
|
+
id: ID
|
54
|
+
children_count: Subitems
|
55
|
+
data_add_icon: Icon
|
56
|
+
depth: Tree depth
|
57
|
+
ecm_cms_navigation: Nvigation
|
58
|
+
ecm_cms_navigation_id: Navigation
|
59
|
+
ecm_cms_page: Page
|
60
|
+
ecm_cms_page_id: Page
|
61
|
+
highlights_on: Highlights on
|
62
|
+
key: Key
|
63
|
+
lft: Left
|
64
|
+
li_attributes: 'List-element attributes'
|
65
|
+
name: Name
|
66
|
+
options: Options
|
67
|
+
parent: Parent
|
68
|
+
parent_id: Parent
|
69
|
+
properties: Properties
|
70
|
+
rgt: Right
|
71
|
+
slug: Slug
|
72
|
+
url: Target url
|
73
|
+
created_at: Created at
|
74
|
+
updated_at: Updated at
|
75
|
+
ecm/cms/page:
|
76
|
+
id: ID
|
77
|
+
basename: Name
|
78
|
+
body: Body
|
79
|
+
ecm_cms_folder_id: Folder
|
80
|
+
ecm_cms_folder: Folder
|
81
|
+
ecm_cms_navigation_items: Navigation items
|
82
|
+
ecm_cms_navigation_item_ids: Navigation items
|
83
|
+
filename: Filename
|
84
|
+
format: Format
|
85
|
+
handler: Handler
|
86
|
+
layout: Layout
|
87
|
+
locale: Language
|
88
|
+
meta_description: Meta description
|
89
|
+
path_and_filename: Filepath
|
90
|
+
pathname: Path
|
91
|
+
title: Title
|
92
|
+
created_at: Created at
|
93
|
+
updated_at: Updated at
|
94
|
+
ecm/cms/partial:
|
95
|
+
id: ID
|
96
|
+
basename: Name
|
97
|
+
body: Body
|
98
|
+
ecm_cms_folder_id: Folder
|
99
|
+
ecm_cms_folder: Folder
|
100
|
+
filename: Filename
|
101
|
+
format: Format
|
102
|
+
handler: Handler
|
103
|
+
layout: Layout
|
104
|
+
locale: Language
|
105
|
+
pathname: Path
|
106
|
+
created_at: Created at
|
107
|
+
updated_at: Updated at
|
108
|
+
ecm/cms/template:
|
109
|
+
id: ID
|
110
|
+
basename: Name
|
111
|
+
body: Body
|
112
|
+
ecm_cms_folder_id: Folder
|
113
|
+
ecm_cms_folder: Folder
|
114
|
+
filename: Filename
|
115
|
+
format: Format
|
116
|
+
handler: Handler
|
117
|
+
layout: Layout
|
118
|
+
locale: Language
|
119
|
+
pathname: Path
|
120
|
+
created_at: Created at
|
121
|
+
updated_at: Updated at
|
122
|
+
classes:
|
123
|
+
ecm/cms/add_homepages_service: 'Add homepages service'
|
124
|
+
ecm/cms/import_partials_service: 'Import partials service'
|
125
|
+
ecm:
|
126
|
+
cms:
|
127
|
+
active_admin:
|
128
|
+
menu: CMS
|
129
|
+
navigation:
|
130
|
+
messages:
|
131
|
+
empty: Navigation %{name} (%{lang}) is empty
|
132
|
+
not_found: Could not find navigation %{name} (%{lang})
|
133
|
+
resources:
|
134
|
+
ecm_cms_folders: folders
|
135
|
+
ecm_cms_navigations: navigations
|
136
|
+
ecm_cms_navigation_items: navigation_items
|
137
|
+
ecm_cms_pages: pages
|
138
|
+
ecm_cms_partials: partials
|
139
|
+
ecm_cms_templates: templates
|
140
|
+
|
data/lib/ecm/cms/version.rb
CHANGED
data/lib/ecm_cms2.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ecm_cms2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Roberto Vasquez Angel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-03-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -94,20 +94,6 @@ dependencies:
|
|
94
94
|
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
name: simple-navigation-bootstrap
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
100
|
-
requirements:
|
101
|
-
- - ">="
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: '0'
|
104
|
-
type: :runtime
|
105
|
-
prerelease: false
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - ">="
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: '0'
|
111
97
|
- !ruby/object:Gem::Dependency
|
112
98
|
name: yard
|
113
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -433,22 +419,8 @@ files:
|
|
433
419
|
- app/views/ecm/cms/page/fallback.txt
|
434
420
|
- config/initializers/assets.rb
|
435
421
|
- config/initializers/mime_types.rb
|
436
|
-
- config/locales/
|
437
|
-
- config/locales/
|
438
|
-
- config/locales/ecm.cms.de.yml
|
439
|
-
- config/locales/ecm.cms.en.yml
|
440
|
-
- config/locales/ecm.cms.navigation.de.yml
|
441
|
-
- config/locales/ecm.cms.navigation.en.yml
|
442
|
-
- config/locales/ecm.cms.navigation_item.de.yml
|
443
|
-
- config/locales/ecm.cms.navigation_item.en.yml
|
444
|
-
- config/locales/ecm.cms.page.content_block.de.yml
|
445
|
-
- config/locales/ecm.cms.page.content_block.en.yml
|
446
|
-
- config/locales/ecm.cms.page.de.yml
|
447
|
-
- config/locales/ecm.cms.page.en.yml
|
448
|
-
- config/locales/ecm.cms.partial.de.yml
|
449
|
-
- config/locales/ecm.cms.partial.en.yml
|
450
|
-
- config/locales/ecm.cms.template.de.yml
|
451
|
-
- config/locales/ecm.cms.template.en.yml
|
422
|
+
- config/locales/de.yml
|
423
|
+
- config/locales/en.yml
|
452
424
|
- config/routes.rb
|
453
425
|
- db/migrate/001_create_ecm_cms_folders.rb
|
454
426
|
- db/migrate/002_create_ecm_cms_pages.rb
|
@@ -1,15 +0,0 @@
|
|
1
|
-
de:
|
2
|
-
activerecord:
|
3
|
-
models:
|
4
|
-
ecm/cms/content_box:
|
5
|
-
one: Content Box
|
6
|
-
other: Content Boxen
|
7
|
-
attributes:
|
8
|
-
ecm/cms/content_box:
|
9
|
-
name: Name
|
10
|
-
body: Inhalt
|
11
|
-
created_at: Erstellt am
|
12
|
-
ecm_cms_page_content_blocks: Content Blöcke
|
13
|
-
ecm_cms_page_content_blocks_count: Content Blöcke
|
14
|
-
updated_at: Aktualisiert am
|
15
|
-
|
@@ -1,15 +0,0 @@
|
|
1
|
-
en:
|
2
|
-
activerecord:
|
3
|
-
models:
|
4
|
-
ecm/cms/content_box:
|
5
|
-
one: content box
|
6
|
-
other: content boxes
|
7
|
-
attributes:
|
8
|
-
ecm/cms/content_box:
|
9
|
-
name: name
|
10
|
-
body: body
|
11
|
-
created_at: created at
|
12
|
-
ecm_cms_page_content_blocks: content blocks
|
13
|
-
ecm_cms_page_content_blocks_count: content blocks
|
14
|
-
updated_at: updated at
|
15
|
-
|
@@ -1,20 +0,0 @@
|
|
1
|
-
de:
|
2
|
-
classes:
|
3
|
-
ecm/cms/add_homepages_service: 'Dienst zum hinzufügen von Homepages'
|
4
|
-
ecm/cms/import_partials_service: 'Dienst zum importieren von Fragmenten'
|
5
|
-
ecm:
|
6
|
-
cms:
|
7
|
-
active_admin:
|
8
|
-
menu: CMS
|
9
|
-
navigation:
|
10
|
-
messages:
|
11
|
-
empty: Navigation %{name} (%{lang}) ist leer
|
12
|
-
not_found: Navigation %{name} (%{lang}) nicht gefunden
|
13
|
-
resources:
|
14
|
-
ecm_cms_folders: ordner
|
15
|
-
ecm_cms_navigations: navigationen
|
16
|
-
ecm_cms_navigation_items: navigationseintraege
|
17
|
-
ecm_cms_pages: seiten
|
18
|
-
ecm_cms_partials: fragmente
|
19
|
-
ecm_cms_templates: vorlagen
|
20
|
-
|
@@ -1,20 +0,0 @@
|
|
1
|
-
en:
|
2
|
-
classes:
|
3
|
-
ecm/cms/add_homepages_service: 'Add homepages service'
|
4
|
-
ecm/cms/import_partials_service: 'Import partials service'
|
5
|
-
ecm:
|
6
|
-
cms:
|
7
|
-
active_admin:
|
8
|
-
menu: CMS
|
9
|
-
navigation:
|
10
|
-
messages:
|
11
|
-
empty: Navigation %{name} (%{lang}) is empty
|
12
|
-
not_found: Could not find navigation %{name} (%{lang})
|
13
|
-
resources:
|
14
|
-
ecm_cms_folders: folders
|
15
|
-
ecm_cms_navigations: navigations
|
16
|
-
ecm_cms_navigation_items: navigation_items
|
17
|
-
ecm_cms_pages: pages
|
18
|
-
ecm_cms_partials: partials
|
19
|
-
ecm_cms_templates: templates
|
20
|
-
|
@@ -1,16 +0,0 @@
|
|
1
|
-
de:
|
2
|
-
activerecord:
|
3
|
-
models:
|
4
|
-
ecm/cms/navigation:
|
5
|
-
one: Navigation
|
6
|
-
other: Navigationen
|
7
|
-
attributes:
|
8
|
-
ecm/cms/navigation:
|
9
|
-
created_at: Erstellt am
|
10
|
-
ecm_cms_navigation_items: Navigationseinträge
|
11
|
-
ecm_cms_navigation_items_count: Navigationseinträge
|
12
|
-
locale: Sprache
|
13
|
-
name: Name
|
14
|
-
slug: Freundliche ID
|
15
|
-
updated_at: Aktualisiert am
|
16
|
-
|
@@ -1,16 +0,0 @@
|
|
1
|
-
en:
|
2
|
-
activerecord:
|
3
|
-
models:
|
4
|
-
ecm/cms/navigation:
|
5
|
-
one: navigation
|
6
|
-
other: navigations
|
7
|
-
attributes:
|
8
|
-
ecm/cms/navigation:
|
9
|
-
created_at: created at
|
10
|
-
ecm_cms_navigation_items: navigation items
|
11
|
-
ecm_cms_navigation_items_count: navigation items
|
12
|
-
locale: language
|
13
|
-
name: name
|
14
|
-
slug: friendly id
|
15
|
-
updated_at: updated at
|
16
|
-
|
@@ -1,25 +0,0 @@
|
|
1
|
-
de:
|
2
|
-
activerecord:
|
3
|
-
models:
|
4
|
-
ecm/cms/navigation_item:
|
5
|
-
one: Navigationseintrag
|
6
|
-
other: Navigationseinträge
|
7
|
-
attributes:
|
8
|
-
ecm/cms/navigation_item:
|
9
|
-
created_at: Erstellt am
|
10
|
-
depth: Baumtiefe
|
11
|
-
ecm_cms_navigation: Navigation
|
12
|
-
ecm_cms_page: Seite
|
13
|
-
data_add_icon: Symbol
|
14
|
-
highlights_on: Hervorgehoben bei
|
15
|
-
key: Schlüssel
|
16
|
-
lft: Links
|
17
|
-
li_attributes: 'Listen-Element Attribute'
|
18
|
-
name: Name
|
19
|
-
options: Optionen
|
20
|
-
parent: Untereintrag von
|
21
|
-
rgt: Rechts
|
22
|
-
slug: Freundliche ID
|
23
|
-
updated_at: Aktualisiert am
|
24
|
-
url: Ziel-URL
|
25
|
-
|
@@ -1,25 +0,0 @@
|
|
1
|
-
en:
|
2
|
-
activerecord:
|
3
|
-
models:
|
4
|
-
ecm/cms/navigation_item:
|
5
|
-
one: navigation item
|
6
|
-
other: navigation items
|
7
|
-
attributes:
|
8
|
-
ecm/cms/navigation_item:
|
9
|
-
created_at: created at
|
10
|
-
depth: tree depth
|
11
|
-
ecm_cms_navigation: navigation
|
12
|
-
ecm_cms_page: page
|
13
|
-
data_add_icon: icon
|
14
|
-
highlights_on: highlights on
|
15
|
-
key: key
|
16
|
-
lft: left
|
17
|
-
li_attributes: 'list-element attributes'
|
18
|
-
name: name
|
19
|
-
options: options
|
20
|
-
parent: parent
|
21
|
-
rgt: right
|
22
|
-
slug: friendly id
|
23
|
-
updated_at: updated at
|
24
|
-
url: target url
|
25
|
-
|
@@ -1,14 +0,0 @@
|
|
1
|
-
de:
|
2
|
-
activerecord:
|
3
|
-
models:
|
4
|
-
ecm/cms/page/content_block:
|
5
|
-
one: Content Block
|
6
|
-
other: Content Blöcke
|
7
|
-
attributes:
|
8
|
-
ecm/cms/page/content_block:
|
9
|
-
body: Inhalt
|
10
|
-
created_at: Erstellt am
|
11
|
-
ecm_cms_page: Seite
|
12
|
-
ecm_cms_content_box: Content Box
|
13
|
-
updated_at: Aktualisiert am
|
14
|
-
|
@@ -1,14 +0,0 @@
|
|
1
|
-
en:
|
2
|
-
activerecord:
|
3
|
-
models:
|
4
|
-
ecm/cms/page/content_block:
|
5
|
-
one: content block
|
6
|
-
other: content blocks
|
7
|
-
attributes:
|
8
|
-
ecm/cms/page/content_block:
|
9
|
-
body: body
|
10
|
-
created_at: created at
|
11
|
-
ecm_cms_page: page
|
12
|
-
ecm_cms_content_box: content box
|
13
|
-
updated_at: udpated at
|
14
|
-
|
@@ -1,26 +0,0 @@
|
|
1
|
-
de:
|
2
|
-
activerecord:
|
3
|
-
models:
|
4
|
-
ecm/cms/page:
|
5
|
-
one: Seite
|
6
|
-
other: Seiten
|
7
|
-
attributes:
|
8
|
-
ecm/cms/page:
|
9
|
-
basename: Name
|
10
|
-
body: Inhalt
|
11
|
-
created_at: Erstellt am
|
12
|
-
ecm_cms_folder_id: Ordner
|
13
|
-
ecm_cms_folder: Ordner
|
14
|
-
ecm_cms_navigation_items: Verlinkt von
|
15
|
-
ecm_cms_navigation_item_ids: Verlinkt von
|
16
|
-
filename: Dateiname
|
17
|
-
format: Format
|
18
|
-
handler: Handler
|
19
|
-
layout: Layout
|
20
|
-
locale: Sprache
|
21
|
-
meta_description: Meta Beschreibung
|
22
|
-
path_and_filename: Dateipfad
|
23
|
-
pathname: Pfad
|
24
|
-
title: Titel
|
25
|
-
updated_at: Aktualisiert am
|
26
|
-
|
@@ -1,26 +0,0 @@
|
|
1
|
-
en:
|
2
|
-
activerecord:
|
3
|
-
models:
|
4
|
-
ecm/cms/page:
|
5
|
-
one: page
|
6
|
-
other: pages
|
7
|
-
attributes:
|
8
|
-
ecm/cms/page:
|
9
|
-
basename: name
|
10
|
-
body: body
|
11
|
-
created_at: created at
|
12
|
-
ecm_cms_folder_id: folder
|
13
|
-
ecm_cms_folder: folder
|
14
|
-
ecm_cms_navigation_items: navigation items
|
15
|
-
ecm_cms_navigation_item_ids: navigation items
|
16
|
-
filename: filename
|
17
|
-
format: format
|
18
|
-
handler: handler
|
19
|
-
layout: layout
|
20
|
-
locale: language
|
21
|
-
meta_description: meta description
|
22
|
-
path_and_filename: filepath
|
23
|
-
pathname: path
|
24
|
-
title: title
|
25
|
-
updated_at: updated at
|
26
|
-
|
@@ -1,21 +0,0 @@
|
|
1
|
-
de:
|
2
|
-
activerecord:
|
3
|
-
models:
|
4
|
-
ecm/cms/partial:
|
5
|
-
one: Fragment
|
6
|
-
other: Fragmente
|
7
|
-
attributes:
|
8
|
-
ecm/cms/partial:
|
9
|
-
basename: Name
|
10
|
-
body: Inhalt
|
11
|
-
created_at: Erstellt am
|
12
|
-
ecm_cms_folder_id: Ordner
|
13
|
-
ecm_cms_folder: Ordner
|
14
|
-
filename: Dateiname
|
15
|
-
format: Format
|
16
|
-
handler: Handler
|
17
|
-
layout: Layout
|
18
|
-
locale: Sprache
|
19
|
-
pathname: Pfad
|
20
|
-
updated_at: Aktualisiert am
|
21
|
-
|
@@ -1,21 +0,0 @@
|
|
1
|
-
en:
|
2
|
-
activerecord:
|
3
|
-
models:
|
4
|
-
ecm/cms/partial:
|
5
|
-
one: partial
|
6
|
-
other: partials
|
7
|
-
attributes:
|
8
|
-
ecm/cms/partial:
|
9
|
-
basename: name
|
10
|
-
body: body
|
11
|
-
created_at: created at
|
12
|
-
ecm_cms_folder_id: folder
|
13
|
-
ecm_cms_folder: folder
|
14
|
-
filename: filename
|
15
|
-
format: format
|
16
|
-
handler: handler
|
17
|
-
layout: layout
|
18
|
-
locale: language
|
19
|
-
pathname: path
|
20
|
-
updated_at: updated at
|
21
|
-
|
@@ -1,21 +0,0 @@
|
|
1
|
-
de:
|
2
|
-
activerecord:
|
3
|
-
models:
|
4
|
-
ecm/cms/template:
|
5
|
-
one: Vorlage
|
6
|
-
other: Vorlagen
|
7
|
-
attributes:
|
8
|
-
ecm/cms/template:
|
9
|
-
basename: Name
|
10
|
-
body: Inhalt
|
11
|
-
created_at: Erstellt am
|
12
|
-
ecm_cms_folder_id: Ordner
|
13
|
-
ecm_cms_folder: Ordner
|
14
|
-
filename: Dateiname
|
15
|
-
format: Format
|
16
|
-
handler: Handler
|
17
|
-
layout: Layout
|
18
|
-
locale: Sprache
|
19
|
-
pathname: Pfad
|
20
|
-
updated_at: Aktualsiert am
|
21
|
-
|
@@ -1,21 +0,0 @@
|
|
1
|
-
en:
|
2
|
-
activerecord:
|
3
|
-
models:
|
4
|
-
ecm/cms/template:
|
5
|
-
one: template
|
6
|
-
other: templates
|
7
|
-
attributes:
|
8
|
-
ecm/cms/template:
|
9
|
-
basename: name
|
10
|
-
body: body
|
11
|
-
created_at: created at
|
12
|
-
ecm_cms_folder_id: folder
|
13
|
-
ecm_cms_folder: folder
|
14
|
-
filename: filename
|
15
|
-
format: format
|
16
|
-
handler: handler
|
17
|
-
layout: layout
|
18
|
-
locale: language
|
19
|
-
pathname: path
|
20
|
-
updated_at: updated at
|
21
|
-
|