@plone/volto-slate 19.0.0-alpha.9 → 19.0.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.
- package/.release-it.json +2 -2
- package/AGENTS.md +28 -0
- package/CHANGELOG.md +77 -0
- package/locales/af/LC_MESSAGES/volto.po +183 -0
- package/locales/ar/LC_MESSAGES/volto.po +184 -0
- package/locales/bg/LC_MESSAGES/volto.po +183 -0
- package/locales/bn/LC_MESSAGES/volto.po +183 -0
- package/locales/ca/LC_MESSAGES/volto.po +183 -0
- package/locales/cs/LC_MESSAGES/volto.po +183 -0
- package/locales/cy/LC_MESSAGES/volto.po +184 -0
- package/locales/da/LC_MESSAGES/volto.po +183 -0
- package/locales/de/LC_MESSAGES/volto.po +9 -4
- package/locales/el/LC_MESSAGES/volto.po +183 -0
- package/locales/en/LC_MESSAGES/volto.po +9 -4
- package/locales/en_AU/LC_MESSAGES/volto.po +183 -0
- package/locales/en_GB/LC_MESSAGES/volto.po +183 -0
- package/locales/eo/LC_MESSAGES/volto.po +183 -0
- package/locales/es/LC_MESSAGES/volto.po +190 -0
- package/locales/et/LC_MESSAGES/volto.po +183 -0
- package/locales/eu/LC_MESSAGES/volto.po +149 -0
- package/locales/fa/LC_MESSAGES/volto.po +183 -0
- package/locales/fi/LC_MESSAGES/volto.po +191 -0
- package/locales/fr/LC_MESSAGES/volto.po +183 -0
- package/locales/fu/LC_MESSAGES/volto.po +183 -0
- package/locales/gl/LC_MESSAGES/volto.po +185 -0
- package/locales/he/LC_MESSAGES/volto.po +184 -0
- package/locales/hi/LC_MESSAGES/volto.po +183 -0
- package/locales/hr/LC_MESSAGES/volto.po +184 -0
- package/locales/hu/LC_MESSAGES/volto.po +183 -0
- package/locales/hy/LC_MESSAGES/volto.po +183 -0
- package/locales/id/LC_MESSAGES/volto.po +183 -0
- package/locales/it/LC_MESSAGES/volto.po +7 -2
- package/locales/ja/LC_MESSAGES/volto.po +183 -0
- package/locales/ka/LC_MESSAGES/volto.po +183 -0
- package/locales/kn/LC_MESSAGES/volto.po +183 -0
- package/locales/ko/LC_MESSAGES/volto.po +183 -0
- package/locales/lt/LC_MESSAGES/volto.po +185 -0
- package/locales/lv/LC_MESSAGES/volto.po +184 -0
- package/locales/mi/LC_MESSAGES/volto.po +183 -0
- package/locales/mk/LC_MESSAGES/volto.po +183 -0
- package/locales/my/LC_MESSAGES/volto.po +183 -0
- package/locales/nb_NO/LC_MESSAGES/volto.po +183 -0
- package/locales/nl/LC_MESSAGES/volto.po +10 -5
- package/locales/nn/LC_MESSAGES/volto.po +183 -0
- package/locales/pl/LC_MESSAGES/volto.po +184 -0
- package/locales/pt/LC_MESSAGES/volto.po +183 -0
- package/locales/pt_BR/LC_MESSAGES/volto.po +1 -1
- package/locales/rm/LC_MESSAGES/volto.po +183 -0
- package/locales/ro/LC_MESSAGES/volto.po +205 -0
- package/locales/ru/LC_MESSAGES/volto.po +184 -0
- package/locales/sk/LC_MESSAGES/volto.po +183 -0
- package/locales/sl/LC_MESSAGES/volto.po +184 -0
- package/locales/sm/LC_MESSAGES/volto.po +183 -0
- package/locales/sq/LC_MESSAGES/volto.po +183 -0
- package/locales/sr/LC_MESSAGES/volto.po +184 -0
- package/locales/sr@cyrl/LC_MESSAGES/volto.po +184 -0
- package/locales/sr@latn/LC_MESSAGES/volto.po +184 -0
- package/locales/sv/LC_MESSAGES/volto.po +183 -0
- package/locales/ta/LC_MESSAGES/volto.po +183 -0
- package/locales/te/LC_MESSAGES/volto.po +183 -0
- package/locales/th/LC_MESSAGES/volto.po +183 -0
- package/locales/to/LC_MESSAGES/volto.po +183 -0
- package/locales/tr/LC_MESSAGES/volto.po +183 -0
- package/locales/uk/LC_MESSAGES/volto.po +184 -0
- package/locales/vi/LC_MESSAGES/volto.po +183 -0
- package/locales/zh_Hans/LC_MESSAGES/volto.po +183 -0
- package/locales/zh_Hant/LC_MESSAGES/volto.po +183 -0
- package/locales/zh_Hant_HK/LC_MESSAGES/volto.po +183 -0
- package/package.json +5 -6
- package/src/blocks/Table/TableBlockEdit.jsx +319 -465
- package/src/blocks/Table/TableBlockEdit.test.jsx +0 -6
- package/src/blocks/Table/TableBlockView.jsx +65 -62
- package/src/blocks/Table/__snapshots__/Cell.test.jsx.snap +3 -0
- package/src/blocks/Table/__snapshots__/{TableBlockEdit.test.js.snap → TableBlockEdit.test.jsx.snap} +2 -2
- package/src/blocks/Table/__snapshots__/TableBlockView.test.jsx.snap +38 -0
- package/src/blocks/Table/deconstruct.js +1 -1
- package/src/blocks/Table/deconstruct.test.js +24 -0
- package/src/blocks/Text/TextBlockEdit.test.jsx +51 -34
- package/src/blocks/Text/__snapshots__/{TextBlockEdit.test.js.snap → TextBlockEdit.test.jsx.snap} +19 -6
- package/src/editor/config.jsx +1 -1
- package/src/editor/plugins/Link/index.jsx +0 -1
- package/src/editor/plugins/Table/less/public.less +4 -0
- package/src/editor/ui/__snapshots__/{ToolbarButton.test.js.snap → ToolbarButton.test.jsx.snap} +2 -2
- package/src/widgets/HtmlSlateWidget.jsx +9 -3
- package/src/blocks/Table/__snapshots__/Cell.test.js.snap +0 -3
- package/src/blocks/Table/__snapshots__/TableBlockView.test.js.snap +0 -27
package/.release-it.json
CHANGED
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"changelog": "pipx run towncrier build --draft --yes --version 0.0.0",
|
|
18
18
|
"requireUpstream": false,
|
|
19
19
|
"requireCleanWorkingDir": false,
|
|
20
|
-
"commitMessage": "Release @plone/slate ${version}",
|
|
20
|
+
"commitMessage": "Release @plone/volto-slate ${version}",
|
|
21
21
|
"tagName": "plone-slate-${version}",
|
|
22
|
-
"tagAnnotation": "Release @plone/slate ${version}"
|
|
22
|
+
"tagAnnotation": "Release @plone/volto-slate ${version}"
|
|
23
23
|
},
|
|
24
24
|
"github": {
|
|
25
25
|
"release": true,
|
package/AGENTS.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# AGENTS.md
|
|
2
|
+
|
|
3
|
+
This file applies only to `packages/volto-slate` and its subdirectories.
|
|
4
|
+
|
|
5
|
+
## What This Package Is
|
|
6
|
+
|
|
7
|
+
- `@plone/volto-slate` provides the Slate-based editor integration used by Volto.
|
|
8
|
+
- It is tightly coupled to Volto editor behavior even though it is versioned as a separate package.
|
|
9
|
+
|
|
10
|
+
## Editing Rules
|
|
11
|
+
|
|
12
|
+
- Prefer TypeScript for all new modules and features.
|
|
13
|
+
- Refactoring touched code toward TypeScript is welcome, but not required.
|
|
14
|
+
- Treat changes here as editor-platform changes, not isolated component tweaks.
|
|
15
|
+
- Preserve serialization, deserialization, and editor schema expectations.
|
|
16
|
+
- When changing editor behavior, check whether fixtures, Cypress flows, or Volto-side block/editor integrations also need updates.
|
|
17
|
+
- Avoid introducing APIs that bypass existing Volto editor configuration patterns unless the task explicitly calls for it.
|
|
18
|
+
|
|
19
|
+
## Validation
|
|
20
|
+
|
|
21
|
+
This package does not expose a dedicated local test script in this branch.
|
|
22
|
+
Validate through Volto:
|
|
23
|
+
|
|
24
|
+
```sh
|
|
25
|
+
pnpm --filter @plone/volto test --run
|
|
26
|
+
pnpm --filter @plone/volto build
|
|
27
|
+
make ci-acceptance-test-run-all
|
|
28
|
+
```
|
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,83 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 19.0.0 (2026-05-19)
|
|
12
|
+
|
|
13
|
+
### Internal
|
|
14
|
+
|
|
15
|
+
- Release Volto 19.0.0 final. @sneridagh
|
|
16
|
+
|
|
17
|
+
## 19.0.0-alpha.19 (2026-05-19)
|
|
18
|
+
|
|
19
|
+
### Feature
|
|
20
|
+
|
|
21
|
+
- Update translations. @erral [#8194](https://github.com/plone/volto/issues/8194)
|
|
22
|
+
|
|
23
|
+
## 19.0.0-alpha.17 (2026-05-12)
|
|
24
|
+
|
|
25
|
+
### Internal
|
|
26
|
+
|
|
27
|
+
- Refactored the `TableBlockEdit` component from a class-based component to a modern functional component using React hooks. @Manik-Khajuria-5 [#7760](https://github.com/plone/volto/issues/7760)
|
|
28
|
+
|
|
29
|
+
## 19.0.0-alpha.16 (2026-05-07)
|
|
30
|
+
|
|
31
|
+
### Documentation
|
|
32
|
+
|
|
33
|
+
- Added package-specific `AGENTS.md` contributor guidance for `@plone/volto-slate` maintainers.
|
|
34
|
+
|
|
35
|
+
## 19.0.0-alpha.15 (2026-04-27)
|
|
36
|
+
|
|
37
|
+
### Bugfix
|
|
38
|
+
|
|
39
|
+
- Added Romanian translations for the `@plone/volto-slate` core addon catalog. @avoinea
|
|
40
|
+
|
|
41
|
+
### Internal
|
|
42
|
+
|
|
43
|
+
- Update dependency: `uuid` 14.0.0. @davisagli
|
|
44
|
+
|
|
45
|
+
## 19.0.0-alpha.14 (2026-04-09)
|
|
46
|
+
|
|
47
|
+
### Breaking
|
|
48
|
+
|
|
49
|
+
- Change hotkey for strikethrough text to Ctrl+Shift+X / Cmd+Shift+X. @MAX-786 [#4196](https://github.com/plone/volto/issues/4196)
|
|
50
|
+
|
|
51
|
+
### Bugfix
|
|
52
|
+
|
|
53
|
+
- fix LinkEditor not opening from SlateEditor @CannedShroud [#4130](https://github.com/plone/volto/issues/4130)
|
|
54
|
+
|
|
55
|
+
### Internal
|
|
56
|
+
|
|
57
|
+
- Update devDependency: release-it 19.2.4. @davisagli
|
|
58
|
+
|
|
59
|
+
## 19.0.0-alpha.13 (2026-03-31)
|
|
60
|
+
|
|
61
|
+
### Internal
|
|
62
|
+
|
|
63
|
+
- Run volto-slate test suite as part of the Vitest multi-project setup. @Abhishek-17h [#7892](https://github.com/plone/volto/issues/7892)
|
|
64
|
+
- Remove devDependency babel-plugin-transform-class-properties (now
|
|
65
|
+
@babel/plugin-transform-class-properties, which is included in
|
|
66
|
+
@babel/preset-env). @davisagli
|
|
67
|
+
- Update dependency: lodash 4.17.23. @davisagli
|
|
68
|
+
- Update devDependency: jsdom 28.1.0. @davisagli
|
|
69
|
+
|
|
70
|
+
## 19.0.0-alpha.12 (2026-03-02)
|
|
71
|
+
|
|
72
|
+
### Bugfix
|
|
73
|
+
|
|
74
|
+
- Fix error in HtmlSlateWidget when rendering elements that need i18n. @davisagli [#7889](https://github.com/plone/volto/issues/7889)
|
|
75
|
+
|
|
76
|
+
## 19.0.0-alpha.11 (2026-02-20)
|
|
77
|
+
|
|
78
|
+
### Breaking
|
|
79
|
+
|
|
80
|
+
- Table block is now responsive and can scroll horizontally for non-fixed tables. @sneridagh [#7916](https://github.com/plone/volto/issues/7916)
|
|
81
|
+
|
|
82
|
+
## 19.0.0-alpha.10 (2026-02-12)
|
|
83
|
+
|
|
84
|
+
### Bugfix
|
|
85
|
+
|
|
86
|
+
- Use Slate Table block when pasting tables snippets (instead of deprecated DraftJS) @cekk [#7865](https://github.com/plone/volto/issues/7865)
|
|
87
|
+
|
|
11
88
|
## 19.0.0-alpha.9 (2025-12-08)
|
|
12
89
|
|
|
13
90
|
### Feature
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
msgid ""
|
|
2
|
+
msgstr ""
|
|
3
|
+
"Project-Id-Version: Plone\n"
|
|
4
|
+
"POT-Creation-Date: 2022-07-20T12:45:09.681Z\n"
|
|
5
|
+
"Last-Translator: Automatically generated\n"
|
|
6
|
+
"Language-Team: none\n"
|
|
7
|
+
"Language: af\n"
|
|
8
|
+
"MIME-Version: 1.0\n"
|
|
9
|
+
"Content-Type: text/plain; charset=utf-8\n"
|
|
10
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
11
|
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
12
|
+
"Language-Code: en\n"
|
|
13
|
+
"Language-Name: English\n"
|
|
14
|
+
"Preferred-Encodings: utf-8\n"
|
|
15
|
+
"Domain: volto\n"
|
|
16
|
+
|
|
17
|
+
# defaultMessage: Add link
|
|
18
|
+
#: editor/plugins/Link/index
|
|
19
|
+
msgid "Add link"
|
|
20
|
+
msgstr ""
|
|
21
|
+
|
|
22
|
+
# defaultMessage: An error has occurred while editing "{name}" field. We have been notified and we are looking into it. Please save your work and retry. If the issue persists please contact the site administrator.
|
|
23
|
+
#: widgets/HtmlSlateWidget
|
|
24
|
+
msgid "An error has occurred while editing "{name}" field. We have been notified and we are looking into it. Please save your work and retry. If the issue persists please contact the site administrator."
|
|
25
|
+
msgstr ""
|
|
26
|
+
|
|
27
|
+
# defaultMessage: An error has occurred while rendering "{name}" field. We have been notified and we are looking into it. If the issue persists please contact the site administrator.
|
|
28
|
+
#: widgets/RichTextWidgetView
|
|
29
|
+
msgid "An error has occurred while rendering "{name}" field. We have been notified and we are looking into it. If the issue persists please contact the site administrator."
|
|
30
|
+
msgstr ""
|
|
31
|
+
|
|
32
|
+
# defaultMessage: Bottom
|
|
33
|
+
#: blocks/Table/TableBlockEdit
|
|
34
|
+
msgid "Bottom"
|
|
35
|
+
msgstr ""
|
|
36
|
+
|
|
37
|
+
# defaultMessage: Center
|
|
38
|
+
#: blocks/Table/TableBlockEdit
|
|
39
|
+
msgid "Center"
|
|
40
|
+
msgstr ""
|
|
41
|
+
|
|
42
|
+
# defaultMessage: Delete col
|
|
43
|
+
#: blocks/Table/TableBlockEdit
|
|
44
|
+
#: editor/plugins/Table/index
|
|
45
|
+
msgid "Delete col"
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
# defaultMessage: Delete row
|
|
49
|
+
#: blocks/Table/TableBlockEdit
|
|
50
|
+
#: editor/plugins/Table/index
|
|
51
|
+
msgid "Delete row"
|
|
52
|
+
msgstr ""
|
|
53
|
+
|
|
54
|
+
# defaultMessage: Delete table
|
|
55
|
+
#: editor/plugins/Table/index
|
|
56
|
+
msgid "Delete table"
|
|
57
|
+
msgstr ""
|
|
58
|
+
|
|
59
|
+
# defaultMessage: Divide each row into separate cells
|
|
60
|
+
#: blocks/Table/TableBlockEdit
|
|
61
|
+
msgid "Divide each row into separate cells"
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
64
|
+
# defaultMessage: Edit element
|
|
65
|
+
#: elementEditor/messages
|
|
66
|
+
msgid "Edit element"
|
|
67
|
+
msgstr ""
|
|
68
|
+
|
|
69
|
+
# defaultMessage: Edit link
|
|
70
|
+
#: editor/plugins/AdvancedLink/index
|
|
71
|
+
#: editor/plugins/Link/index
|
|
72
|
+
msgid "Edit link"
|
|
73
|
+
msgstr ""
|
|
74
|
+
|
|
75
|
+
# defaultMessage: Fixed width table cells
|
|
76
|
+
#: blocks/Table/TableBlockEdit
|
|
77
|
+
msgid "Fixed width table cells"
|
|
78
|
+
msgstr ""
|
|
79
|
+
|
|
80
|
+
# defaultMessage: Hide headers
|
|
81
|
+
#: blocks/Table/TableBlockEdit
|
|
82
|
+
msgid "Hide headers"
|
|
83
|
+
msgstr ""
|
|
84
|
+
|
|
85
|
+
# defaultMessage: Insert col after
|
|
86
|
+
#: blocks/Table/TableBlockEdit
|
|
87
|
+
#: editor/plugins/Table/index
|
|
88
|
+
msgid "Insert col after"
|
|
89
|
+
msgstr ""
|
|
90
|
+
|
|
91
|
+
# defaultMessage: Insert col before
|
|
92
|
+
#: blocks/Table/TableBlockEdit
|
|
93
|
+
#: editor/plugins/Table/index
|
|
94
|
+
msgid "Insert col before"
|
|
95
|
+
msgstr ""
|
|
96
|
+
|
|
97
|
+
# defaultMessage: Insert row after
|
|
98
|
+
#: blocks/Table/TableBlockEdit
|
|
99
|
+
#: editor/plugins/Table/index
|
|
100
|
+
msgid "Insert row after"
|
|
101
|
+
msgstr ""
|
|
102
|
+
|
|
103
|
+
# defaultMessage: Insert row before
|
|
104
|
+
#: blocks/Table/TableBlockEdit
|
|
105
|
+
#: editor/plugins/Table/index
|
|
106
|
+
msgid "Insert row before"
|
|
107
|
+
msgstr ""
|
|
108
|
+
|
|
109
|
+
# defaultMessage: Left
|
|
110
|
+
#: blocks/Table/TableBlockEdit
|
|
111
|
+
msgid "Left"
|
|
112
|
+
msgstr ""
|
|
113
|
+
|
|
114
|
+
# defaultMessage: Make the table compact
|
|
115
|
+
#: blocks/Table/TableBlockEdit
|
|
116
|
+
msgid "Make the table compact"
|
|
117
|
+
msgstr ""
|
|
118
|
+
|
|
119
|
+
# defaultMessage: Make the table sortable
|
|
120
|
+
#: blocks/Table/TableBlockEdit
|
|
121
|
+
msgid "Make the table sortable"
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
124
|
+
# defaultMessage: Middle
|
|
125
|
+
#: blocks/Table/TableBlockEdit
|
|
126
|
+
msgid "Middle"
|
|
127
|
+
msgstr ""
|
|
128
|
+
|
|
129
|
+
# defaultMessage: No matching blocks
|
|
130
|
+
#: blocks/Text/SlashMenu
|
|
131
|
+
msgid "No matching blocks"
|
|
132
|
+
msgstr ""
|
|
133
|
+
|
|
134
|
+
# defaultMessage: Reduce complexity
|
|
135
|
+
#: blocks/Table/TableBlockEdit
|
|
136
|
+
msgid "Reduce complexity"
|
|
137
|
+
msgstr ""
|
|
138
|
+
|
|
139
|
+
# defaultMessage: Remove element
|
|
140
|
+
#: elementEditor/messages
|
|
141
|
+
msgid "Remove element"
|
|
142
|
+
msgstr ""
|
|
143
|
+
|
|
144
|
+
# defaultMessage: Remove link
|
|
145
|
+
#: editor/plugins/AdvancedLink/index
|
|
146
|
+
msgid "Remove link"
|
|
147
|
+
msgstr ""
|
|
148
|
+
|
|
149
|
+
# defaultMessage: Right
|
|
150
|
+
#: blocks/Table/TableBlockEdit
|
|
151
|
+
msgid "Right"
|
|
152
|
+
msgstr ""
|
|
153
|
+
|
|
154
|
+
# defaultMessage: Stripe alternate rows with color
|
|
155
|
+
#: blocks/Table/TableBlockEdit
|
|
156
|
+
msgid "Stripe alternate rows with color"
|
|
157
|
+
msgstr ""
|
|
158
|
+
|
|
159
|
+
# defaultMessage: Table
|
|
160
|
+
#: blocks/Table/TableBlockEdit
|
|
161
|
+
msgid "Table"
|
|
162
|
+
msgstr ""
|
|
163
|
+
|
|
164
|
+
# defaultMessage: Table color inverted
|
|
165
|
+
#: blocks/Table/TableBlockEdit
|
|
166
|
+
msgid "Table color inverted"
|
|
167
|
+
msgstr ""
|
|
168
|
+
|
|
169
|
+
# defaultMessage: Top
|
|
170
|
+
#: blocks/Table/TableBlockEdit
|
|
171
|
+
msgid "Top"
|
|
172
|
+
msgstr ""
|
|
173
|
+
|
|
174
|
+
# defaultMessage: Type text…
|
|
175
|
+
#: blocks/Text/DefaultTextBlockEditor
|
|
176
|
+
#: blocks/Text/DetachedTextBlockEditor
|
|
177
|
+
msgid "Type text…"
|
|
178
|
+
msgstr ""
|
|
179
|
+
|
|
180
|
+
# defaultMessage: Visible only in view mode
|
|
181
|
+
#: blocks/Table/TableBlockEdit
|
|
182
|
+
msgid "Visible only in view mode"
|
|
183
|
+
msgstr ""
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
msgid ""
|
|
2
|
+
msgstr ""
|
|
3
|
+
"Project-Id-Version: Plone\n"
|
|
4
|
+
"POT-Creation-Date: 2022-07-20T12:45:09.681Z\n"
|
|
5
|
+
"Last-Translator: Automatically generated\n"
|
|
6
|
+
"Language-Team: none\n"
|
|
7
|
+
"Language: ar\n"
|
|
8
|
+
"MIME-Version: 1.0\n"
|
|
9
|
+
"Content-Type: text/plain; charset=utf-8\n"
|
|
10
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
11
|
+
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
|
12
|
+
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
|
13
|
+
"Language-Code: en\n"
|
|
14
|
+
"Language-Name: English\n"
|
|
15
|
+
"Preferred-Encodings: utf-8\n"
|
|
16
|
+
"Domain: volto\n"
|
|
17
|
+
|
|
18
|
+
# defaultMessage: Add link
|
|
19
|
+
#: editor/plugins/Link/index
|
|
20
|
+
msgid "Add link"
|
|
21
|
+
msgstr ""
|
|
22
|
+
|
|
23
|
+
# defaultMessage: An error has occurred while editing "{name}" field. We have been notified and we are looking into it. Please save your work and retry. If the issue persists please contact the site administrator.
|
|
24
|
+
#: widgets/HtmlSlateWidget
|
|
25
|
+
msgid "An error has occurred while editing "{name}" field. We have been notified and we are looking into it. Please save your work and retry. If the issue persists please contact the site administrator."
|
|
26
|
+
msgstr ""
|
|
27
|
+
|
|
28
|
+
# defaultMessage: An error has occurred while rendering "{name}" field. We have been notified and we are looking into it. If the issue persists please contact the site administrator.
|
|
29
|
+
#: widgets/RichTextWidgetView
|
|
30
|
+
msgid "An error has occurred while rendering "{name}" field. We have been notified and we are looking into it. If the issue persists please contact the site administrator."
|
|
31
|
+
msgstr ""
|
|
32
|
+
|
|
33
|
+
# defaultMessage: Bottom
|
|
34
|
+
#: blocks/Table/TableBlockEdit
|
|
35
|
+
msgid "Bottom"
|
|
36
|
+
msgstr ""
|
|
37
|
+
|
|
38
|
+
# defaultMessage: Center
|
|
39
|
+
#: blocks/Table/TableBlockEdit
|
|
40
|
+
msgid "Center"
|
|
41
|
+
msgstr ""
|
|
42
|
+
|
|
43
|
+
# defaultMessage: Delete col
|
|
44
|
+
#: blocks/Table/TableBlockEdit
|
|
45
|
+
#: editor/plugins/Table/index
|
|
46
|
+
msgid "Delete col"
|
|
47
|
+
msgstr ""
|
|
48
|
+
|
|
49
|
+
# defaultMessage: Delete row
|
|
50
|
+
#: blocks/Table/TableBlockEdit
|
|
51
|
+
#: editor/plugins/Table/index
|
|
52
|
+
msgid "Delete row"
|
|
53
|
+
msgstr ""
|
|
54
|
+
|
|
55
|
+
# defaultMessage: Delete table
|
|
56
|
+
#: editor/plugins/Table/index
|
|
57
|
+
msgid "Delete table"
|
|
58
|
+
msgstr ""
|
|
59
|
+
|
|
60
|
+
# defaultMessage: Divide each row into separate cells
|
|
61
|
+
#: blocks/Table/TableBlockEdit
|
|
62
|
+
msgid "Divide each row into separate cells"
|
|
63
|
+
msgstr ""
|
|
64
|
+
|
|
65
|
+
# defaultMessage: Edit element
|
|
66
|
+
#: elementEditor/messages
|
|
67
|
+
msgid "Edit element"
|
|
68
|
+
msgstr ""
|
|
69
|
+
|
|
70
|
+
# defaultMessage: Edit link
|
|
71
|
+
#: editor/plugins/AdvancedLink/index
|
|
72
|
+
#: editor/plugins/Link/index
|
|
73
|
+
msgid "Edit link"
|
|
74
|
+
msgstr ""
|
|
75
|
+
|
|
76
|
+
# defaultMessage: Fixed width table cells
|
|
77
|
+
#: blocks/Table/TableBlockEdit
|
|
78
|
+
msgid "Fixed width table cells"
|
|
79
|
+
msgstr ""
|
|
80
|
+
|
|
81
|
+
# defaultMessage: Hide headers
|
|
82
|
+
#: blocks/Table/TableBlockEdit
|
|
83
|
+
msgid "Hide headers"
|
|
84
|
+
msgstr ""
|
|
85
|
+
|
|
86
|
+
# defaultMessage: Insert col after
|
|
87
|
+
#: blocks/Table/TableBlockEdit
|
|
88
|
+
#: editor/plugins/Table/index
|
|
89
|
+
msgid "Insert col after"
|
|
90
|
+
msgstr ""
|
|
91
|
+
|
|
92
|
+
# defaultMessage: Insert col before
|
|
93
|
+
#: blocks/Table/TableBlockEdit
|
|
94
|
+
#: editor/plugins/Table/index
|
|
95
|
+
msgid "Insert col before"
|
|
96
|
+
msgstr ""
|
|
97
|
+
|
|
98
|
+
# defaultMessage: Insert row after
|
|
99
|
+
#: blocks/Table/TableBlockEdit
|
|
100
|
+
#: editor/plugins/Table/index
|
|
101
|
+
msgid "Insert row after"
|
|
102
|
+
msgstr ""
|
|
103
|
+
|
|
104
|
+
# defaultMessage: Insert row before
|
|
105
|
+
#: blocks/Table/TableBlockEdit
|
|
106
|
+
#: editor/plugins/Table/index
|
|
107
|
+
msgid "Insert row before"
|
|
108
|
+
msgstr ""
|
|
109
|
+
|
|
110
|
+
# defaultMessage: Left
|
|
111
|
+
#: blocks/Table/TableBlockEdit
|
|
112
|
+
msgid "Left"
|
|
113
|
+
msgstr ""
|
|
114
|
+
|
|
115
|
+
# defaultMessage: Make the table compact
|
|
116
|
+
#: blocks/Table/TableBlockEdit
|
|
117
|
+
msgid "Make the table compact"
|
|
118
|
+
msgstr ""
|
|
119
|
+
|
|
120
|
+
# defaultMessage: Make the table sortable
|
|
121
|
+
#: blocks/Table/TableBlockEdit
|
|
122
|
+
msgid "Make the table sortable"
|
|
123
|
+
msgstr ""
|
|
124
|
+
|
|
125
|
+
# defaultMessage: Middle
|
|
126
|
+
#: blocks/Table/TableBlockEdit
|
|
127
|
+
msgid "Middle"
|
|
128
|
+
msgstr ""
|
|
129
|
+
|
|
130
|
+
# defaultMessage: No matching blocks
|
|
131
|
+
#: blocks/Text/SlashMenu
|
|
132
|
+
msgid "No matching blocks"
|
|
133
|
+
msgstr ""
|
|
134
|
+
|
|
135
|
+
# defaultMessage: Reduce complexity
|
|
136
|
+
#: blocks/Table/TableBlockEdit
|
|
137
|
+
msgid "Reduce complexity"
|
|
138
|
+
msgstr ""
|
|
139
|
+
|
|
140
|
+
# defaultMessage: Remove element
|
|
141
|
+
#: elementEditor/messages
|
|
142
|
+
msgid "Remove element"
|
|
143
|
+
msgstr ""
|
|
144
|
+
|
|
145
|
+
# defaultMessage: Remove link
|
|
146
|
+
#: editor/plugins/AdvancedLink/index
|
|
147
|
+
msgid "Remove link"
|
|
148
|
+
msgstr ""
|
|
149
|
+
|
|
150
|
+
# defaultMessage: Right
|
|
151
|
+
#: blocks/Table/TableBlockEdit
|
|
152
|
+
msgid "Right"
|
|
153
|
+
msgstr ""
|
|
154
|
+
|
|
155
|
+
# defaultMessage: Stripe alternate rows with color
|
|
156
|
+
#: blocks/Table/TableBlockEdit
|
|
157
|
+
msgid "Stripe alternate rows with color"
|
|
158
|
+
msgstr ""
|
|
159
|
+
|
|
160
|
+
# defaultMessage: Table
|
|
161
|
+
#: blocks/Table/TableBlockEdit
|
|
162
|
+
msgid "Table"
|
|
163
|
+
msgstr ""
|
|
164
|
+
|
|
165
|
+
# defaultMessage: Table color inverted
|
|
166
|
+
#: blocks/Table/TableBlockEdit
|
|
167
|
+
msgid "Table color inverted"
|
|
168
|
+
msgstr ""
|
|
169
|
+
|
|
170
|
+
# defaultMessage: Top
|
|
171
|
+
#: blocks/Table/TableBlockEdit
|
|
172
|
+
msgid "Top"
|
|
173
|
+
msgstr ""
|
|
174
|
+
|
|
175
|
+
# defaultMessage: Type text…
|
|
176
|
+
#: blocks/Text/DefaultTextBlockEditor
|
|
177
|
+
#: blocks/Text/DetachedTextBlockEditor
|
|
178
|
+
msgid "Type text…"
|
|
179
|
+
msgstr ""
|
|
180
|
+
|
|
181
|
+
# defaultMessage: Visible only in view mode
|
|
182
|
+
#: blocks/Table/TableBlockEdit
|
|
183
|
+
msgid "Visible only in view mode"
|
|
184
|
+
msgstr ""
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
msgid ""
|
|
2
|
+
msgstr ""
|
|
3
|
+
"Project-Id-Version: Plone\n"
|
|
4
|
+
"POT-Creation-Date: 2022-07-20T12:45:09.681Z\n"
|
|
5
|
+
"Last-Translator: Automatically generated\n"
|
|
6
|
+
"Language-Team: none\n"
|
|
7
|
+
"Language: bg\n"
|
|
8
|
+
"MIME-Version: 1.0\n"
|
|
9
|
+
"Content-Type: text/plain; charset=utf-8\n"
|
|
10
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
11
|
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
12
|
+
"Language-Code: en\n"
|
|
13
|
+
"Language-Name: English\n"
|
|
14
|
+
"Preferred-Encodings: utf-8\n"
|
|
15
|
+
"Domain: volto\n"
|
|
16
|
+
|
|
17
|
+
# defaultMessage: Add link
|
|
18
|
+
#: editor/plugins/Link/index
|
|
19
|
+
msgid "Add link"
|
|
20
|
+
msgstr ""
|
|
21
|
+
|
|
22
|
+
# defaultMessage: An error has occurred while editing "{name}" field. We have been notified and we are looking into it. Please save your work and retry. If the issue persists please contact the site administrator.
|
|
23
|
+
#: widgets/HtmlSlateWidget
|
|
24
|
+
msgid "An error has occurred while editing "{name}" field. We have been notified and we are looking into it. Please save your work and retry. If the issue persists please contact the site administrator."
|
|
25
|
+
msgstr ""
|
|
26
|
+
|
|
27
|
+
# defaultMessage: An error has occurred while rendering "{name}" field. We have been notified and we are looking into it. If the issue persists please contact the site administrator.
|
|
28
|
+
#: widgets/RichTextWidgetView
|
|
29
|
+
msgid "An error has occurred while rendering "{name}" field. We have been notified and we are looking into it. If the issue persists please contact the site administrator."
|
|
30
|
+
msgstr ""
|
|
31
|
+
|
|
32
|
+
# defaultMessage: Bottom
|
|
33
|
+
#: blocks/Table/TableBlockEdit
|
|
34
|
+
msgid "Bottom"
|
|
35
|
+
msgstr ""
|
|
36
|
+
|
|
37
|
+
# defaultMessage: Center
|
|
38
|
+
#: blocks/Table/TableBlockEdit
|
|
39
|
+
msgid "Center"
|
|
40
|
+
msgstr ""
|
|
41
|
+
|
|
42
|
+
# defaultMessage: Delete col
|
|
43
|
+
#: blocks/Table/TableBlockEdit
|
|
44
|
+
#: editor/plugins/Table/index
|
|
45
|
+
msgid "Delete col"
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
# defaultMessage: Delete row
|
|
49
|
+
#: blocks/Table/TableBlockEdit
|
|
50
|
+
#: editor/plugins/Table/index
|
|
51
|
+
msgid "Delete row"
|
|
52
|
+
msgstr ""
|
|
53
|
+
|
|
54
|
+
# defaultMessage: Delete table
|
|
55
|
+
#: editor/plugins/Table/index
|
|
56
|
+
msgid "Delete table"
|
|
57
|
+
msgstr ""
|
|
58
|
+
|
|
59
|
+
# defaultMessage: Divide each row into separate cells
|
|
60
|
+
#: blocks/Table/TableBlockEdit
|
|
61
|
+
msgid "Divide each row into separate cells"
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
64
|
+
# defaultMessage: Edit element
|
|
65
|
+
#: elementEditor/messages
|
|
66
|
+
msgid "Edit element"
|
|
67
|
+
msgstr ""
|
|
68
|
+
|
|
69
|
+
# defaultMessage: Edit link
|
|
70
|
+
#: editor/plugins/AdvancedLink/index
|
|
71
|
+
#: editor/plugins/Link/index
|
|
72
|
+
msgid "Edit link"
|
|
73
|
+
msgstr ""
|
|
74
|
+
|
|
75
|
+
# defaultMessage: Fixed width table cells
|
|
76
|
+
#: blocks/Table/TableBlockEdit
|
|
77
|
+
msgid "Fixed width table cells"
|
|
78
|
+
msgstr ""
|
|
79
|
+
|
|
80
|
+
# defaultMessage: Hide headers
|
|
81
|
+
#: blocks/Table/TableBlockEdit
|
|
82
|
+
msgid "Hide headers"
|
|
83
|
+
msgstr ""
|
|
84
|
+
|
|
85
|
+
# defaultMessage: Insert col after
|
|
86
|
+
#: blocks/Table/TableBlockEdit
|
|
87
|
+
#: editor/plugins/Table/index
|
|
88
|
+
msgid "Insert col after"
|
|
89
|
+
msgstr ""
|
|
90
|
+
|
|
91
|
+
# defaultMessage: Insert col before
|
|
92
|
+
#: blocks/Table/TableBlockEdit
|
|
93
|
+
#: editor/plugins/Table/index
|
|
94
|
+
msgid "Insert col before"
|
|
95
|
+
msgstr ""
|
|
96
|
+
|
|
97
|
+
# defaultMessage: Insert row after
|
|
98
|
+
#: blocks/Table/TableBlockEdit
|
|
99
|
+
#: editor/plugins/Table/index
|
|
100
|
+
msgid "Insert row after"
|
|
101
|
+
msgstr ""
|
|
102
|
+
|
|
103
|
+
# defaultMessage: Insert row before
|
|
104
|
+
#: blocks/Table/TableBlockEdit
|
|
105
|
+
#: editor/plugins/Table/index
|
|
106
|
+
msgid "Insert row before"
|
|
107
|
+
msgstr ""
|
|
108
|
+
|
|
109
|
+
# defaultMessage: Left
|
|
110
|
+
#: blocks/Table/TableBlockEdit
|
|
111
|
+
msgid "Left"
|
|
112
|
+
msgstr ""
|
|
113
|
+
|
|
114
|
+
# defaultMessage: Make the table compact
|
|
115
|
+
#: blocks/Table/TableBlockEdit
|
|
116
|
+
msgid "Make the table compact"
|
|
117
|
+
msgstr ""
|
|
118
|
+
|
|
119
|
+
# defaultMessage: Make the table sortable
|
|
120
|
+
#: blocks/Table/TableBlockEdit
|
|
121
|
+
msgid "Make the table sortable"
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
124
|
+
# defaultMessage: Middle
|
|
125
|
+
#: blocks/Table/TableBlockEdit
|
|
126
|
+
msgid "Middle"
|
|
127
|
+
msgstr ""
|
|
128
|
+
|
|
129
|
+
# defaultMessage: No matching blocks
|
|
130
|
+
#: blocks/Text/SlashMenu
|
|
131
|
+
msgid "No matching blocks"
|
|
132
|
+
msgstr ""
|
|
133
|
+
|
|
134
|
+
# defaultMessage: Reduce complexity
|
|
135
|
+
#: blocks/Table/TableBlockEdit
|
|
136
|
+
msgid "Reduce complexity"
|
|
137
|
+
msgstr ""
|
|
138
|
+
|
|
139
|
+
# defaultMessage: Remove element
|
|
140
|
+
#: elementEditor/messages
|
|
141
|
+
msgid "Remove element"
|
|
142
|
+
msgstr ""
|
|
143
|
+
|
|
144
|
+
# defaultMessage: Remove link
|
|
145
|
+
#: editor/plugins/AdvancedLink/index
|
|
146
|
+
msgid "Remove link"
|
|
147
|
+
msgstr ""
|
|
148
|
+
|
|
149
|
+
# defaultMessage: Right
|
|
150
|
+
#: blocks/Table/TableBlockEdit
|
|
151
|
+
msgid "Right"
|
|
152
|
+
msgstr ""
|
|
153
|
+
|
|
154
|
+
# defaultMessage: Stripe alternate rows with color
|
|
155
|
+
#: blocks/Table/TableBlockEdit
|
|
156
|
+
msgid "Stripe alternate rows with color"
|
|
157
|
+
msgstr ""
|
|
158
|
+
|
|
159
|
+
# defaultMessage: Table
|
|
160
|
+
#: blocks/Table/TableBlockEdit
|
|
161
|
+
msgid "Table"
|
|
162
|
+
msgstr ""
|
|
163
|
+
|
|
164
|
+
# defaultMessage: Table color inverted
|
|
165
|
+
#: blocks/Table/TableBlockEdit
|
|
166
|
+
msgid "Table color inverted"
|
|
167
|
+
msgstr ""
|
|
168
|
+
|
|
169
|
+
# defaultMessage: Top
|
|
170
|
+
#: blocks/Table/TableBlockEdit
|
|
171
|
+
msgid "Top"
|
|
172
|
+
msgstr ""
|
|
173
|
+
|
|
174
|
+
# defaultMessage: Type text…
|
|
175
|
+
#: blocks/Text/DefaultTextBlockEditor
|
|
176
|
+
#: blocks/Text/DetachedTextBlockEditor
|
|
177
|
+
msgid "Type text…"
|
|
178
|
+
msgstr ""
|
|
179
|
+
|
|
180
|
+
# defaultMessage: Visible only in view mode
|
|
181
|
+
#: blocks/Table/TableBlockEdit
|
|
182
|
+
msgid "Visible only in view mode"
|
|
183
|
+
msgstr ""
|