@kitconcept/volto-light-theme 1.0.0-rc.5 → 1.0.0-rc.7
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.
- package/.eslintignore +2 -0
- package/CHANGELOG.md +20 -0
- package/dockerfiles/docker-compose.yml +6 -1
- package/locales/de/LC_MESSAGES/volto.po +141 -8
- package/locales/en/LC_MESSAGES/volto.po +141 -8
- package/locales/volto.pot +142 -9
- package/package.json +2 -1
- package/src/components/Theme/EventView.jsx +301 -0
- package/src/customizations/volto/components/theme/View/FileView.jsx +132 -0
- package/src/index.js +2 -0
- package/src/theme/_breadcrumbs.scss +5 -1
- package/src/theme/_content.scss +111 -2
- package/src/theme/_layout.scss +39 -29
- package/src/theme/_variables.scss +9 -0
- package/src/theme/blocks/_accordion.scss +51 -0
- package/src/theme/blocks/_grid.scss +4 -1
- package/src/theme/blocks/_listing.scss +20 -7
- package/src/theme/collections/grid.variables +2 -5
package/.eslintignore
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,26 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 1.0.0-rc.7 (2023-07-13)
|
|
12
|
+
|
|
13
|
+
### Bugfix
|
|
14
|
+
|
|
15
|
+
- Fix File content type @iRohitSingh [#17](https://github.com/kitconcept/volto-light-theme/pull/17)
|
|
16
|
+
- Add idiomatic order CSS package @sneridagh
|
|
17
|
+
Fix margin in edit mode for all blocks @sneridagh [#142](https://github.com/kitconcept/volto-light-theme/pull/142)
|
|
18
|
+
- Fix CSS for Accordion block. @danalvrz [#143](https://github.com/kitconcept/volto-light-theme/pull/143)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
## 1.0.0-rc.6 (2023-07-12)
|
|
22
|
+
|
|
23
|
+
### Bugfix
|
|
24
|
+
|
|
25
|
+
- Fix Event content type @iRohitSingh [#16](https://github.com/kitconcept/volto-light-theme/pull/16)
|
|
26
|
+
- Fix local linting, add proper eslintignore @sneridagh [#139](https://github.com/kitconcept/volto-light-theme/pull/139)
|
|
27
|
+
- Minor fix for Listing margins. @danalvrz [#140](https://github.com/kitconcept/volto-light-theme/pull/140)
|
|
28
|
+
- Fix gutter for grids for small screens. Improve overall margins calculations for all blocks in the content area. @sneridagh [#141](https://github.com/kitconcept/volto-light-theme/pull/141)
|
|
29
|
+
|
|
30
|
+
|
|
11
31
|
## 1.0.0-rc.5 (2023-07-11)
|
|
12
32
|
|
|
13
33
|
### Breaking
|
|
@@ -14,7 +14,10 @@ services:
|
|
|
14
14
|
- ${CURRENT_DIR}:/app/src/addons/${ADDON_PATH}/
|
|
15
15
|
environment:
|
|
16
16
|
RAZZLE_INTERNAL_API_PATH: http://backend:8080/Plone
|
|
17
|
-
|
|
17
|
+
# In case that you want to connect to and outside (non-docker) local instance
|
|
18
|
+
# coment the above, use the next line
|
|
19
|
+
# RAZZLE_INTERNAL_API_PATH: http://host.docker.internal:8080/Plone
|
|
20
|
+
RAZZLE_API_PATH: http://127.0.0.1:8080/Plone
|
|
18
21
|
HOST: 0.0.0.0
|
|
19
22
|
ports:
|
|
20
23
|
- 3000:3000
|
|
@@ -42,6 +45,8 @@ services:
|
|
|
42
45
|
|
|
43
46
|
backend:
|
|
44
47
|
image: ghcr.io/kitconcept/voltolighttheme:latest
|
|
48
|
+
environment:
|
|
49
|
+
CORS_: true
|
|
45
50
|
ports:
|
|
46
51
|
- 8080:8080
|
|
47
52
|
profiles:
|
|
@@ -17,51 +17,184 @@ msgstr ""
|
|
|
17
17
|
"Preferred-Encodings: utf-8 latin1\n"
|
|
18
18
|
"X-Is-Fallback-For: de-at de-li de-lu de-ch de-de\n"
|
|
19
19
|
|
|
20
|
-
#: components/Blocks/Separator/schema
|
|
21
|
-
# defaultMessage: Alignment
|
|
22
|
-
msgid "Alignment"
|
|
23
|
-
msgstr "Ausrichtung"
|
|
24
|
-
|
|
25
20
|
#: components/Blocks/schema
|
|
26
21
|
# defaultMessage: Background color
|
|
27
22
|
msgid "Background color"
|
|
28
23
|
msgstr "Hintergrundfarbe"
|
|
29
24
|
|
|
25
|
+
#: components/Blocks/Button/schema
|
|
26
|
+
# defaultMessage: Block Width
|
|
27
|
+
msgid "Block Width"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
30
|
+
#: components/Breadcrumbs/Breadcrumbs
|
|
31
|
+
# defaultMessage: Breadcrumbs
|
|
32
|
+
msgid "Breadcrumbs"
|
|
33
|
+
msgstr ""
|
|
34
|
+
|
|
30
35
|
#: components/Widgets/AlignWidget
|
|
31
36
|
# defaultMessage: Center
|
|
32
37
|
msgid "Center"
|
|
33
38
|
msgstr ""
|
|
34
39
|
|
|
40
|
+
#: components/Navigation/Navigation
|
|
41
|
+
# defaultMessage: Close menu
|
|
42
|
+
msgid "Close menu"
|
|
43
|
+
msgstr ""
|
|
44
|
+
|
|
45
|
+
#: components/Theme/EventView
|
|
46
|
+
# defaultMessage: Contact
|
|
47
|
+
msgid "Contact"
|
|
48
|
+
msgstr ""
|
|
49
|
+
|
|
50
|
+
#: components/Footer/Footer
|
|
51
|
+
# defaultMessage: Copyright
|
|
52
|
+
msgid "Copyright"
|
|
53
|
+
msgstr ""
|
|
54
|
+
|
|
55
|
+
#: components/Footer/Footer
|
|
56
|
+
# defaultMessage: Distributed under the {license}.
|
|
57
|
+
msgid "Distributed under the {license}."
|
|
58
|
+
msgstr ""
|
|
59
|
+
|
|
60
|
+
#: components/Theme/EventView
|
|
61
|
+
# defaultMessage: End
|
|
62
|
+
msgid "End"
|
|
63
|
+
msgstr "ende"
|
|
64
|
+
|
|
35
65
|
#: components/Widgets/AlignWidget
|
|
36
66
|
# defaultMessage: Full
|
|
37
67
|
msgid "Full"
|
|
38
68
|
msgstr ""
|
|
39
69
|
|
|
40
|
-
#: components/
|
|
41
|
-
# defaultMessage:
|
|
42
|
-
msgid "
|
|
70
|
+
#: components/Footer/Footer
|
|
71
|
+
# defaultMessage: GNU GPL license
|
|
72
|
+
msgid "GNU GPL license"
|
|
73
|
+
msgstr ""
|
|
74
|
+
|
|
75
|
+
#: components/Breadcrumbs/Breadcrumbs
|
|
76
|
+
# defaultMessage: Home
|
|
77
|
+
msgid "Home"
|
|
43
78
|
msgstr ""
|
|
44
79
|
|
|
80
|
+
#: components/Theme/EventView
|
|
81
|
+
# defaultMessage: ICS Download
|
|
82
|
+
msgid "ICS-Download"
|
|
83
|
+
msgstr "ICS-Download"
|
|
84
|
+
|
|
45
85
|
#: components/Widgets/AlignWidget
|
|
46
86
|
# defaultMessage: Left
|
|
47
87
|
msgid "Left"
|
|
48
88
|
msgstr ""
|
|
49
89
|
|
|
90
|
+
#: components/Theme/EventView
|
|
91
|
+
# defaultMessage: Location
|
|
92
|
+
msgid "Location"
|
|
93
|
+
msgstr "Veranstaltungsort"
|
|
94
|
+
|
|
95
|
+
#: components/Anontools/Anontools
|
|
96
|
+
# defaultMessage: Log in
|
|
97
|
+
msgid "Log in"
|
|
98
|
+
msgstr ""
|
|
99
|
+
|
|
100
|
+
#: components/Theme/EventView
|
|
101
|
+
# defaultMessage: No date
|
|
102
|
+
msgid "No date"
|
|
103
|
+
msgstr ""
|
|
104
|
+
|
|
105
|
+
#: components/Navigation/Navigation
|
|
106
|
+
# defaultMessage: Open menu
|
|
107
|
+
msgid "Open menu"
|
|
108
|
+
msgstr ""
|
|
109
|
+
|
|
110
|
+
#: components/Theme/EventView
|
|
111
|
+
# defaultMessage: Phone
|
|
112
|
+
msgid "Phone"
|
|
113
|
+
msgstr ""
|
|
114
|
+
|
|
115
|
+
#: components/Footer/Footer
|
|
116
|
+
# defaultMessage: Plone Foundation
|
|
117
|
+
msgid "Plone Foundation"
|
|
118
|
+
msgstr ""
|
|
119
|
+
|
|
120
|
+
#: components/Logo/Logo
|
|
121
|
+
# defaultMessage: Plone Site
|
|
122
|
+
msgid "Plone Site"
|
|
123
|
+
msgstr ""
|
|
124
|
+
|
|
125
|
+
#: components/Footer/Footer
|
|
126
|
+
# defaultMessage: Plone{reg} Open Source CMS/WCM
|
|
127
|
+
msgid "Plone{reg} Open Source CMS/WCM"
|
|
128
|
+
msgstr ""
|
|
129
|
+
|
|
130
|
+
#: components/Footer/Footer
|
|
131
|
+
# defaultMessage: Powered by Plone & Python
|
|
132
|
+
msgid "Powered by Plone & Python"
|
|
133
|
+
msgstr ""
|
|
134
|
+
|
|
50
135
|
#: index
|
|
51
136
|
# defaultMessage: Press
|
|
52
137
|
msgid "Press"
|
|
53
138
|
msgstr "Presse"
|
|
54
139
|
|
|
140
|
+
#: components/Anontools/Anontools
|
|
141
|
+
#: components/Header/Header
|
|
142
|
+
# defaultMessage: Register
|
|
143
|
+
msgid "Register"
|
|
144
|
+
msgstr ""
|
|
145
|
+
|
|
55
146
|
#: components/Widgets/AlignWidget
|
|
56
147
|
# defaultMessage: Right
|
|
57
148
|
msgid "Right"
|
|
58
149
|
msgstr ""
|
|
59
150
|
|
|
151
|
+
#: components/Blocks/Search/TopSideFacets
|
|
152
|
+
#: components/SearchWidget/SearchWidget
|
|
153
|
+
# defaultMessage: Search
|
|
154
|
+
msgid "Search"
|
|
155
|
+
msgstr ""
|
|
156
|
+
|
|
157
|
+
#: components/SearchWidget/SearchWidget
|
|
158
|
+
# defaultMessage: Search Site
|
|
159
|
+
msgid "Search Site"
|
|
160
|
+
msgstr ""
|
|
161
|
+
|
|
162
|
+
#: components/Logo/Logo
|
|
163
|
+
# defaultMessage: Site
|
|
164
|
+
msgid "Site"
|
|
165
|
+
msgstr ""
|
|
166
|
+
|
|
167
|
+
#: components/Header/Header
|
|
60
168
|
#: index
|
|
61
169
|
# defaultMessage: Sitemap
|
|
62
170
|
msgid "Sitemap"
|
|
63
171
|
msgstr "Übersicht"
|
|
64
172
|
|
|
173
|
+
#: components/Blocks/Search/TopSideFacets
|
|
174
|
+
# defaultMessage: Sorting
|
|
175
|
+
msgid "Sorting"
|
|
176
|
+
msgstr ""
|
|
177
|
+
|
|
178
|
+
#: components/Theme/EventView
|
|
179
|
+
# defaultMessage: Start
|
|
180
|
+
msgid "Start"
|
|
181
|
+
msgstr "Anfang"
|
|
182
|
+
|
|
183
|
+
#: components/Footer/Footer
|
|
184
|
+
# defaultMessage: The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends.
|
|
185
|
+
msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
|
|
186
|
+
msgstr ""
|
|
187
|
+
|
|
188
|
+
#: components/Theme/EventView
|
|
189
|
+
# defaultMessage: Unknown block
|
|
190
|
+
msgid "Unknown block"
|
|
191
|
+
msgstr ""
|
|
192
|
+
|
|
193
|
+
#: components/Theme/EventView
|
|
194
|
+
# defaultMessage: Website
|
|
195
|
+
msgid "Website"
|
|
196
|
+
msgstr ""
|
|
197
|
+
|
|
65
198
|
#: components/Widgets/AlignWidget
|
|
66
199
|
# defaultMessage: Wide
|
|
67
200
|
msgid "Wide"
|
|
@@ -11,29 +11,69 @@ msgstr ""
|
|
|
11
11
|
"Content-Transfer-Encoding: \n"
|
|
12
12
|
"Plural-Forms: \n"
|
|
13
13
|
|
|
14
|
-
#: components/Blocks/Separator/schema
|
|
15
|
-
# defaultMessage: Alignment
|
|
16
|
-
msgid "Alignment"
|
|
17
|
-
msgstr ""
|
|
18
|
-
|
|
19
14
|
#: components/Blocks/schema
|
|
20
15
|
# defaultMessage: Background color
|
|
21
16
|
msgid "Background color"
|
|
22
17
|
msgstr ""
|
|
23
18
|
|
|
19
|
+
#: components/Blocks/Button/schema
|
|
20
|
+
# defaultMessage: Block Width
|
|
21
|
+
msgid "Block Width"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
24
|
+
#: components/Breadcrumbs/Breadcrumbs
|
|
25
|
+
# defaultMessage: Breadcrumbs
|
|
26
|
+
msgid "Breadcrumbs"
|
|
27
|
+
msgstr ""
|
|
28
|
+
|
|
24
29
|
#: components/Widgets/AlignWidget
|
|
25
30
|
# defaultMessage: Center
|
|
26
31
|
msgid "Center"
|
|
27
32
|
msgstr ""
|
|
28
33
|
|
|
34
|
+
#: components/Navigation/Navigation
|
|
35
|
+
# defaultMessage: Close menu
|
|
36
|
+
msgid "Close menu"
|
|
37
|
+
msgstr ""
|
|
38
|
+
|
|
39
|
+
#: components/Theme/EventView
|
|
40
|
+
# defaultMessage: Contact
|
|
41
|
+
msgid "Contact"
|
|
42
|
+
msgstr ""
|
|
43
|
+
|
|
44
|
+
#: components/Footer/Footer
|
|
45
|
+
# defaultMessage: Copyright
|
|
46
|
+
msgid "Copyright"
|
|
47
|
+
msgstr ""
|
|
48
|
+
|
|
49
|
+
#: components/Footer/Footer
|
|
50
|
+
# defaultMessage: Distributed under the {license}.
|
|
51
|
+
msgid "Distributed under the {license}."
|
|
52
|
+
msgstr ""
|
|
53
|
+
|
|
54
|
+
#: components/Theme/EventView
|
|
55
|
+
# defaultMessage: End
|
|
56
|
+
msgid "End"
|
|
57
|
+
msgstr ""
|
|
58
|
+
|
|
29
59
|
#: components/Widgets/AlignWidget
|
|
30
60
|
# defaultMessage: Full
|
|
31
61
|
msgid "Full"
|
|
32
62
|
msgstr ""
|
|
33
63
|
|
|
34
|
-
#: components/
|
|
35
|
-
# defaultMessage:
|
|
36
|
-
msgid "
|
|
64
|
+
#: components/Footer/Footer
|
|
65
|
+
# defaultMessage: GNU GPL license
|
|
66
|
+
msgid "GNU GPL license"
|
|
67
|
+
msgstr ""
|
|
68
|
+
|
|
69
|
+
#: components/Breadcrumbs/Breadcrumbs
|
|
70
|
+
# defaultMessage: Home
|
|
71
|
+
msgid "Home"
|
|
72
|
+
msgstr ""
|
|
73
|
+
|
|
74
|
+
#: components/Theme/EventView
|
|
75
|
+
# defaultMessage: ICS Download
|
|
76
|
+
msgid "ICS-Download"
|
|
37
77
|
msgstr ""
|
|
38
78
|
|
|
39
79
|
#: components/Widgets/AlignWidget
|
|
@@ -41,21 +81,114 @@ msgstr ""
|
|
|
41
81
|
msgid "Left"
|
|
42
82
|
msgstr ""
|
|
43
83
|
|
|
84
|
+
#: components/Theme/EventView
|
|
85
|
+
# defaultMessage: Location
|
|
86
|
+
msgid "Location"
|
|
87
|
+
msgstr ""
|
|
88
|
+
|
|
89
|
+
#: components/Anontools/Anontools
|
|
90
|
+
# defaultMessage: Log in
|
|
91
|
+
msgid "Log in"
|
|
92
|
+
msgstr ""
|
|
93
|
+
|
|
94
|
+
#: components/Theme/EventView
|
|
95
|
+
# defaultMessage: No date
|
|
96
|
+
msgid "No date"
|
|
97
|
+
msgstr ""
|
|
98
|
+
|
|
99
|
+
#: components/Navigation/Navigation
|
|
100
|
+
# defaultMessage: Open menu
|
|
101
|
+
msgid "Open menu"
|
|
102
|
+
msgstr ""
|
|
103
|
+
|
|
104
|
+
#: components/Theme/EventView
|
|
105
|
+
# defaultMessage: Phone
|
|
106
|
+
msgid "Phone"
|
|
107
|
+
msgstr ""
|
|
108
|
+
|
|
109
|
+
#: components/Footer/Footer
|
|
110
|
+
# defaultMessage: Plone Foundation
|
|
111
|
+
msgid "Plone Foundation"
|
|
112
|
+
msgstr ""
|
|
113
|
+
|
|
114
|
+
#: components/Logo/Logo
|
|
115
|
+
# defaultMessage: Plone Site
|
|
116
|
+
msgid "Plone Site"
|
|
117
|
+
msgstr ""
|
|
118
|
+
|
|
119
|
+
#: components/Footer/Footer
|
|
120
|
+
# defaultMessage: Plone{reg} Open Source CMS/WCM
|
|
121
|
+
msgid "Plone{reg} Open Source CMS/WCM"
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
124
|
+
#: components/Footer/Footer
|
|
125
|
+
# defaultMessage: Powered by Plone & Python
|
|
126
|
+
msgid "Powered by Plone & Python"
|
|
127
|
+
msgstr ""
|
|
128
|
+
|
|
44
129
|
#: index
|
|
45
130
|
# defaultMessage: Press
|
|
46
131
|
msgid "Press"
|
|
47
132
|
msgstr ""
|
|
48
133
|
|
|
134
|
+
#: components/Anontools/Anontools
|
|
135
|
+
#: components/Header/Header
|
|
136
|
+
# defaultMessage: Register
|
|
137
|
+
msgid "Register"
|
|
138
|
+
msgstr ""
|
|
139
|
+
|
|
49
140
|
#: components/Widgets/AlignWidget
|
|
50
141
|
# defaultMessage: Right
|
|
51
142
|
msgid "Right"
|
|
52
143
|
msgstr ""
|
|
53
144
|
|
|
145
|
+
#: components/Blocks/Search/TopSideFacets
|
|
146
|
+
#: components/SearchWidget/SearchWidget
|
|
147
|
+
# defaultMessage: Search
|
|
148
|
+
msgid "Search"
|
|
149
|
+
msgstr ""
|
|
150
|
+
|
|
151
|
+
#: components/SearchWidget/SearchWidget
|
|
152
|
+
# defaultMessage: Search Site
|
|
153
|
+
msgid "Search Site"
|
|
154
|
+
msgstr ""
|
|
155
|
+
|
|
156
|
+
#: components/Logo/Logo
|
|
157
|
+
# defaultMessage: Site
|
|
158
|
+
msgid "Site"
|
|
159
|
+
msgstr ""
|
|
160
|
+
|
|
161
|
+
#: components/Header/Header
|
|
54
162
|
#: index
|
|
55
163
|
# defaultMessage: Sitemap
|
|
56
164
|
msgid "Sitemap"
|
|
57
165
|
msgstr ""
|
|
58
166
|
|
|
167
|
+
#: components/Blocks/Search/TopSideFacets
|
|
168
|
+
# defaultMessage: Sorting
|
|
169
|
+
msgid "Sorting"
|
|
170
|
+
msgstr ""
|
|
171
|
+
|
|
172
|
+
#: components/Theme/EventView
|
|
173
|
+
# defaultMessage: Start
|
|
174
|
+
msgid "Start"
|
|
175
|
+
msgstr ""
|
|
176
|
+
|
|
177
|
+
#: components/Footer/Footer
|
|
178
|
+
# defaultMessage: The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends.
|
|
179
|
+
msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
|
|
180
|
+
msgstr ""
|
|
181
|
+
|
|
182
|
+
#: components/Theme/EventView
|
|
183
|
+
# defaultMessage: Unknown block
|
|
184
|
+
msgid "Unknown block"
|
|
185
|
+
msgstr ""
|
|
186
|
+
|
|
187
|
+
#: components/Theme/EventView
|
|
188
|
+
# defaultMessage: Website
|
|
189
|
+
msgid "Website"
|
|
190
|
+
msgstr ""
|
|
191
|
+
|
|
59
192
|
#: components/Widgets/AlignWidget
|
|
60
193
|
# defaultMessage: Wide
|
|
61
194
|
msgid "Wide"
|
package/locales/volto.pot
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
msgid ""
|
|
2
2
|
msgstr ""
|
|
3
3
|
"Project-Id-Version: Plone\n"
|
|
4
|
-
"POT-Creation-Date: 2023-
|
|
4
|
+
"POT-Creation-Date: 2023-07-11T14:53:29.388Z\n"
|
|
5
5
|
"Last-Translator: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
|
|
6
6
|
"Language-Team: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
|
|
7
7
|
"MIME-Version: 1.0\n"
|
|
@@ -13,29 +13,69 @@ msgstr ""
|
|
|
13
13
|
"Preferred-Encodings: utf-8\n"
|
|
14
14
|
"Domain: volto\n"
|
|
15
15
|
|
|
16
|
-
#: components/Blocks/Separator/schema
|
|
17
|
-
# defaultMessage: Alignment
|
|
18
|
-
msgid "Alignment"
|
|
19
|
-
msgstr ""
|
|
20
|
-
|
|
21
16
|
#: components/Blocks/schema
|
|
22
17
|
# defaultMessage: Background color
|
|
23
18
|
msgid "Background color"
|
|
24
19
|
msgstr ""
|
|
25
20
|
|
|
21
|
+
#: components/Blocks/Button/schema
|
|
22
|
+
# defaultMessage: Block Width
|
|
23
|
+
msgid "Block Width"
|
|
24
|
+
msgstr ""
|
|
25
|
+
|
|
26
|
+
#: components/Breadcrumbs/Breadcrumbs
|
|
27
|
+
# defaultMessage: Breadcrumbs
|
|
28
|
+
msgid "Breadcrumbs"
|
|
29
|
+
msgstr ""
|
|
30
|
+
|
|
26
31
|
#: components/Widgets/AlignWidget
|
|
27
32
|
# defaultMessage: Center
|
|
28
33
|
msgid "Center"
|
|
29
34
|
msgstr ""
|
|
30
35
|
|
|
36
|
+
#: components/Navigation/Navigation
|
|
37
|
+
# defaultMessage: Close menu
|
|
38
|
+
msgid "Close menu"
|
|
39
|
+
msgstr ""
|
|
40
|
+
|
|
41
|
+
#: components/Theme/EventView
|
|
42
|
+
# defaultMessage: Contact
|
|
43
|
+
msgid "Contact"
|
|
44
|
+
msgstr ""
|
|
45
|
+
|
|
46
|
+
#: components/Footer/Footer
|
|
47
|
+
# defaultMessage: Copyright
|
|
48
|
+
msgid "Copyright"
|
|
49
|
+
msgstr ""
|
|
50
|
+
|
|
51
|
+
#: components/Footer/Footer
|
|
52
|
+
# defaultMessage: Distributed under the {license}.
|
|
53
|
+
msgid "Distributed under the {license}."
|
|
54
|
+
msgstr ""
|
|
55
|
+
|
|
56
|
+
#: components/Theme/EventView
|
|
57
|
+
# defaultMessage: End
|
|
58
|
+
msgid "End"
|
|
59
|
+
msgstr ""
|
|
60
|
+
|
|
31
61
|
#: components/Widgets/AlignWidget
|
|
32
62
|
# defaultMessage: Full
|
|
33
63
|
msgid "Full"
|
|
34
64
|
msgstr ""
|
|
35
65
|
|
|
36
|
-
#: components/
|
|
37
|
-
# defaultMessage:
|
|
38
|
-
msgid "
|
|
66
|
+
#: components/Footer/Footer
|
|
67
|
+
# defaultMessage: GNU GPL license
|
|
68
|
+
msgid "GNU GPL license"
|
|
69
|
+
msgstr ""
|
|
70
|
+
|
|
71
|
+
#: components/Breadcrumbs/Breadcrumbs
|
|
72
|
+
# defaultMessage: Home
|
|
73
|
+
msgid "Home"
|
|
74
|
+
msgstr ""
|
|
75
|
+
|
|
76
|
+
#: components/Theme/EventView
|
|
77
|
+
# defaultMessage: ICS Download
|
|
78
|
+
msgid "ICS-Download"
|
|
39
79
|
msgstr ""
|
|
40
80
|
|
|
41
81
|
#: components/Widgets/AlignWidget
|
|
@@ -43,21 +83,114 @@ msgstr ""
|
|
|
43
83
|
msgid "Left"
|
|
44
84
|
msgstr ""
|
|
45
85
|
|
|
86
|
+
#: components/Theme/EventView
|
|
87
|
+
# defaultMessage: Location
|
|
88
|
+
msgid "Location"
|
|
89
|
+
msgstr ""
|
|
90
|
+
|
|
91
|
+
#: components/Anontools/Anontools
|
|
92
|
+
# defaultMessage: Log in
|
|
93
|
+
msgid "Log in"
|
|
94
|
+
msgstr ""
|
|
95
|
+
|
|
96
|
+
#: components/Theme/EventView
|
|
97
|
+
# defaultMessage: No date
|
|
98
|
+
msgid "No date"
|
|
99
|
+
msgstr ""
|
|
100
|
+
|
|
101
|
+
#: components/Navigation/Navigation
|
|
102
|
+
# defaultMessage: Open menu
|
|
103
|
+
msgid "Open menu"
|
|
104
|
+
msgstr ""
|
|
105
|
+
|
|
106
|
+
#: components/Theme/EventView
|
|
107
|
+
# defaultMessage: Phone
|
|
108
|
+
msgid "Phone"
|
|
109
|
+
msgstr ""
|
|
110
|
+
|
|
111
|
+
#: components/Footer/Footer
|
|
112
|
+
# defaultMessage: Plone Foundation
|
|
113
|
+
msgid "Plone Foundation"
|
|
114
|
+
msgstr ""
|
|
115
|
+
|
|
116
|
+
#: components/Logo/Logo
|
|
117
|
+
# defaultMessage: Plone Site
|
|
118
|
+
msgid "Plone Site"
|
|
119
|
+
msgstr ""
|
|
120
|
+
|
|
121
|
+
#: components/Footer/Footer
|
|
122
|
+
# defaultMessage: Plone{reg} Open Source CMS/WCM
|
|
123
|
+
msgid "Plone{reg} Open Source CMS/WCM"
|
|
124
|
+
msgstr ""
|
|
125
|
+
|
|
126
|
+
#: components/Footer/Footer
|
|
127
|
+
# defaultMessage: Powered by Plone & Python
|
|
128
|
+
msgid "Powered by Plone & Python"
|
|
129
|
+
msgstr ""
|
|
130
|
+
|
|
46
131
|
#: index
|
|
47
132
|
# defaultMessage: Press
|
|
48
133
|
msgid "Press"
|
|
49
134
|
msgstr ""
|
|
50
135
|
|
|
136
|
+
#: components/Anontools/Anontools
|
|
137
|
+
#: components/Header/Header
|
|
138
|
+
# defaultMessage: Register
|
|
139
|
+
msgid "Register"
|
|
140
|
+
msgstr ""
|
|
141
|
+
|
|
51
142
|
#: components/Widgets/AlignWidget
|
|
52
143
|
# defaultMessage: Right
|
|
53
144
|
msgid "Right"
|
|
54
145
|
msgstr ""
|
|
55
146
|
|
|
147
|
+
#: components/Blocks/Search/TopSideFacets
|
|
148
|
+
#: components/SearchWidget/SearchWidget
|
|
149
|
+
# defaultMessage: Search
|
|
150
|
+
msgid "Search"
|
|
151
|
+
msgstr ""
|
|
152
|
+
|
|
153
|
+
#: components/SearchWidget/SearchWidget
|
|
154
|
+
# defaultMessage: Search Site
|
|
155
|
+
msgid "Search Site"
|
|
156
|
+
msgstr ""
|
|
157
|
+
|
|
158
|
+
#: components/Logo/Logo
|
|
159
|
+
# defaultMessage: Site
|
|
160
|
+
msgid "Site"
|
|
161
|
+
msgstr ""
|
|
162
|
+
|
|
163
|
+
#: components/Header/Header
|
|
56
164
|
#: index
|
|
57
165
|
# defaultMessage: Sitemap
|
|
58
166
|
msgid "Sitemap"
|
|
59
167
|
msgstr ""
|
|
60
168
|
|
|
169
|
+
#: components/Blocks/Search/TopSideFacets
|
|
170
|
+
# defaultMessage: Sorting
|
|
171
|
+
msgid "Sorting"
|
|
172
|
+
msgstr ""
|
|
173
|
+
|
|
174
|
+
#: components/Theme/EventView
|
|
175
|
+
# defaultMessage: Start
|
|
176
|
+
msgid "Start"
|
|
177
|
+
msgstr ""
|
|
178
|
+
|
|
179
|
+
#: components/Footer/Footer
|
|
180
|
+
# defaultMessage: The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends.
|
|
181
|
+
msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
|
|
182
|
+
msgstr ""
|
|
183
|
+
|
|
184
|
+
#: components/Theme/EventView
|
|
185
|
+
# defaultMessage: Unknown block
|
|
186
|
+
msgid "Unknown block"
|
|
187
|
+
msgstr ""
|
|
188
|
+
|
|
189
|
+
#: components/Theme/EventView
|
|
190
|
+
# defaultMessage: Website
|
|
191
|
+
msgid "Website"
|
|
192
|
+
msgstr ""
|
|
193
|
+
|
|
61
194
|
#: components/Widgets/AlignWidget
|
|
62
195
|
# defaultMessage: Wide
|
|
63
196
|
msgid "Wide"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitconcept/volto-light-theme",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.7",
|
|
4
4
|
"description": "Volto Light Theme by kitconcept",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"prettier": "2.0.5",
|
|
38
38
|
"razzle-plugin-scss": "4.2.18",
|
|
39
39
|
"release-it": "^16.1.0",
|
|
40
|
+
"stylelint-config-idiomatic-order": "8.1.0",
|
|
40
41
|
"stylelint-config-prettier": "9.0.4",
|
|
41
42
|
"stylelint-config-sass-guidelines": "9.0.1",
|
|
42
43
|
"stylelint-prettier": "1.1.2"
|