@json-layout/core 0.25.0 → 0.26.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/package.json +1 -1
- package/src/i18n/index.js +3 -1
- package/src/i18n/nl.js +33 -0
- package/src/utils/doc-options.js +5 -5
package/package.json
CHANGED
package/src/i18n/index.js
CHANGED
package/src/i18n/nl.js
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/** @type {import('./types.js').LocaleMessages} */
|
|
2
|
+
export default {
|
|
3
|
+
errorOneOf: 'Kies er een',
|
|
4
|
+
errorRequired: 'benodigde informatie',
|
|
5
|
+
addItem: 'Item toevoegen',
|
|
6
|
+
delete: 'Verwijderen',
|
|
7
|
+
edit: 'Bewerken',
|
|
8
|
+
close: 'Sluiten',
|
|
9
|
+
duplicate: 'Verveelvoudigen',
|
|
10
|
+
sort: 'Sorteren',
|
|
11
|
+
up: 'Omhoog verplaatsen',
|
|
12
|
+
down: 'Omlaag verplaatsen',
|
|
13
|
+
showHelp: 'Toon helpbericht',
|
|
14
|
+
mdeLink1: '[Link titel',
|
|
15
|
+
mdeLink2: '](link url)',
|
|
16
|
+
mdeImg1: '',
|
|
18
|
+
mdeTable1: '',
|
|
19
|
+
mdeTable2: '\n\n| Kolom 1 | Kolom 2 | Kolom 3 |\n| -------- | -------- | -------- |\n| Tekst | Tekst | Tekst |\n\n',
|
|
20
|
+
bold: 'Vet',
|
|
21
|
+
italic: 'Cursief',
|
|
22
|
+
heading: 'Titel',
|
|
23
|
+
quote: 'Citaat',
|
|
24
|
+
unorderedList: 'Ongeordende lijst',
|
|
25
|
+
orderedList: 'Geordende lijst',
|
|
26
|
+
createLink: 'Maak een koppeling',
|
|
27
|
+
insertImage: 'Afbeelding invoegen',
|
|
28
|
+
createTable: 'Tabel aanmaken',
|
|
29
|
+
preview: 'Voorbeeld',
|
|
30
|
+
mdeGuide: 'Documentatie over syntaxis',
|
|
31
|
+
undo: 'Ongedaan maken',
|
|
32
|
+
redo: 'Opnieuw'
|
|
33
|
+
}
|
package/src/utils/doc-options.js
CHANGED
|
@@ -124,11 +124,6 @@ export const runtimeOptions = [
|
|
|
124
124
|
false: 'Never remove additional properties (alias "none").'
|
|
125
125
|
}
|
|
126
126
|
},
|
|
127
|
-
{
|
|
128
|
-
key: 'autofocus',
|
|
129
|
-
description: 'Activate autofocus. The focus will be given to the first input of the form.',
|
|
130
|
-
default: false
|
|
131
|
-
},
|
|
132
127
|
{
|
|
133
128
|
key: 'readOnlyPropertiesMode',
|
|
134
129
|
description: 'Control the way readOnly properties from the schema are managed.',
|
|
@@ -138,5 +133,10 @@ export const runtimeOptions = [
|
|
|
138
133
|
hide: 'Hide the readOnly properties but keep them in the data.',
|
|
139
134
|
show: 'Show the readOnly properties.'
|
|
140
135
|
}
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
key: 'autofocus',
|
|
139
|
+
description: 'Activate autofocus. The focus will be given to the first input of the form.',
|
|
140
|
+
default: false
|
|
141
141
|
}
|
|
142
142
|
]
|