@sanity/locale-nl-nl 0.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Sanity.io
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,44 @@
1
+ # @sanity/locale-nl-nl
2
+
3
+ Dutch / Nederlands language support for [Sanity Studio](https://www.sanity.io/).
4
+
5
+ ## Description
6
+
7
+ This is an unofficial language pack. Initial translations were done by AI and may have errors. Contributions are [more than welcome](#contributing)!
8
+
9
+ ## Installation
10
+
11
+ ```sh
12
+ npm install @sanity/locale-nl-nl
13
+ ```
14
+
15
+ ## Usage
16
+
17
+ ```ts
18
+ // sanity.config.ts / sanity.config.js:
19
+ import {defineConfig} from 'sanity'
20
+ import {nlNLLocale} from '@sanity/locale-nl-nl'
21
+
22
+ export default defineConfig({
23
+ // ...
24
+ plugins: [
25
+ // ... other plugins here ...
26
+ nlNLLocale(),
27
+ ],
28
+ })
29
+ ```
30
+
31
+ The language should now show up in the Studio's user menu.
32
+
33
+ ## Maintainers
34
+
35
+ We are looking for maintainers for this plugin!
36
+ If you are interested, please [send a PR](/CONTRIBUTING.md#maintaining-a-locale) adding yourself as a maintainer.
37
+
38
+ ## Contributing
39
+
40
+ Feel free to contribute improvements/changes! The strings are located in the `src` folder, where the file name represents the "namespace". Send a pull request, and feel free to add yourself to the `contributors` array in `locales/registry.ts`. If you want to help review new translations, add yourself to the `maintainers` array instead. After doing your changes, run `pnpm run reconcile` and add the changes to version control.
41
+
42
+ ## License
43
+
44
+ MIT-licensed. See LICENSE.
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@sanity/locale-nl-nl",
3
+ "version": "0.0.0",
4
+ "private": false,
5
+ "description": "Dutch / Nederlands locale/translation for Sanity Studio",
6
+ "keywords": [
7
+ "sanity",
8
+ "i18n",
9
+ "locale",
10
+ "localization",
11
+ "nl-NL"
12
+ ],
13
+ "homepage": "https://github.com/sanity-io/locales#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/sanity-io/locales/issues"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+ssh://git@github.com/sanity-io/locales.git",
20
+ "directory": "locales/nl-NL"
21
+ },
22
+ "license": "MIT",
23
+ "contributors": [],
24
+ "type": "module",
25
+ "exports": {
26
+ ".": {
27
+ "types": "./dist/index.d.ts",
28
+ "source": "./src/index.ts",
29
+ "import": "./dist/index.js",
30
+ "require": "./dist/index.cjs",
31
+ "default": "./dist/index.js"
32
+ },
33
+ "./package.json": "./package.json"
34
+ },
35
+ "main": "./dist/index.cjs",
36
+ "module": "./dist/index.js",
37
+ "source": "./src/index.ts",
38
+ "types": "./dist/index.d.ts",
39
+ "files": [
40
+ "dist",
41
+ "src"
42
+ ],
43
+ "peerDependencies": {
44
+ "sanity": "^3.21.2"
45
+ },
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
49
+ "scripts": {
50
+ "build": "npm run clean && npm run pkg:build && npm run pkg:check",
51
+ "clean": "rimraf dist",
52
+ "pkg:build": "pkg build --strict",
53
+ "pkg:check": "pkg check --strict"
54
+ }
55
+ }
package/src/index.ts ADDED
@@ -0,0 +1,44 @@
1
+ import {defineLocale, definePlugin} from 'sanity'
2
+
3
+ const locale = defineLocale({
4
+ id: 'nl-NL',
5
+ title: 'Nederlands',
6
+ bundles: [
7
+ {
8
+ namespace: 'structure',
9
+ resources: () => import('./structure'),
10
+ },
11
+
12
+ {
13
+ namespace: 'studio',
14
+ resources: () => import('./studio'),
15
+ },
16
+
17
+ {
18
+ namespace: 'validation',
19
+ resources: () => import('./validation'),
20
+ },
21
+
22
+ {
23
+ namespace: 'vision',
24
+ resources: () => import('./vision'),
25
+ },
26
+ ],
27
+ weekInfo: {
28
+ firstDay: 1,
29
+ minimalDays: 4,
30
+ weekend: [6, 7],
31
+ },
32
+ })
33
+
34
+ /**
35
+ * Nederlands locale/translation plugin for Sanity Studio
36
+ *
37
+ * @public
38
+ */
39
+ export const nlNLLocale = definePlugin({
40
+ name: '@sanity/locale-nl-nl',
41
+ i18n: {
42
+ locales: [locale],
43
+ },
44
+ })
@@ -0,0 +1,392 @@
1
+ import {removeUndefinedLocaleResources} from 'sanity'
2
+
3
+ export default removeUndefinedLocaleResources({
4
+ /** Tooltip when action button is disabled because the operation is not ready */
5
+ 'action.delete.disabled.not-ready': 'Operatie niet klaar',
6
+ /** Tooltip when action button is disabled because the document does not exist */
7
+ 'action.delete.disabled.nothing-to-delete': 'Dit document bestaat nog niet of is al verwijderd',
8
+ /** Label for the "Delete" document action button */
9
+ 'action.delete.label': 'Verwijderen',
10
+ /** Label for the "Delete" document action while the document is being deleted */
11
+ 'action.delete.running.label': 'Verwijderen…',
12
+ /** Message prompting the user to confirm discarding changes */
13
+ 'action.discard-changes.confirm-dialog.confirm-discard-changes':
14
+ 'Weet u zeker dat u alle wijzigingen wilt verwijderen sinds de laatste publicatie?',
15
+ /** Tooltip when action is disabled because the document has no unpublished changes */
16
+ 'action.discard-changes.disabled.no-change':
17
+ 'Dit document heeft geen ongepubliceerde wijzigingen',
18
+ /** Tooltip when action is disabled because the document is not published */
19
+ 'action.discard-changes.disabled.not-published': 'Dit document is niet gepubliceerd',
20
+ /** Tooltip when action button is disabled because the operation is not ready */
21
+ 'action.discard-changes.disabled.not-ready': 'Operatie niet klaar',
22
+ /** Label for the "Discard changes" document action */
23
+ 'action.discard-changes.label': 'Wijzigingen verwijderen',
24
+ /** Tooltip when action is disabled because the operation is not ready */
25
+ 'action.duplicate.disabled.not-ready': 'Operatie niet klaar',
26
+ /** Tooltip when action is disabled because the document doesn't exist */
27
+ 'action.duplicate.disabled.nothing-to-duplicate':
28
+ 'Dit document bestaat nog niet dus er is niets om te dupliceren',
29
+ /** Label for the "Duplicate" document action */
30
+ 'action.duplicate.label': 'Dupliceren',
31
+ /** Label for the "Duplicate" document action while the document is being duplicated */
32
+ 'action.duplicate.running.label': 'Dupliceren…',
33
+ /** Tooltip when publish button is disabled because the document is already published, and published time is unavailable.*/
34
+ 'action.publish.already-published.no-time-ago.tooltip': 'Al gepubliceerd',
35
+ /** Tooltip when publish button is disabled because the document is already published.*/
36
+ 'action.publish.already-published.tooltip': 'Gepubliceerd {{timeSincePublished}} geleden',
37
+ /** Tooltip when action is disabled because the studio is not ready.*/
38
+ 'action.publish.disabled.not-ready': 'Operatie niet klaar',
39
+ /** Label for action when there are pending changes.*/
40
+ 'action.publish.draft.label': 'Publiceren',
41
+ /** Label for the "Publish" document action when the document has live edit enabled.*/
42
+ 'action.publish.live-edit.label': 'Publiceren',
43
+ /** Fallback tooltip for the "Publish" document action when publish is invoked for a document with live edit enabled.*/
44
+ 'action.publish.live-edit.publish-disabled':
45
+ 'Kan niet publiceren omdat Live Edit is ingeschakeld voor dit documenttype',
46
+ /** Tooltip for the "Publish" document action when the document has live edit enabled.*/
47
+ 'action.publish.live-edit.tooltip':
48
+ 'Live Edit is ingeschakeld voor dit inhoudstype en publiceren gebeurt automatisch terwijl u wijzigingen maakt',
49
+ /** Tooltip when publish button is disabled because there are no changes.*/
50
+ 'action.publish.no-changes.tooltip': 'Geen ongepubliceerde wijzigingen',
51
+ /** Label for the "Publish" document action when there are no changes.*/
52
+ 'action.publish.published.label': 'Gepubliceerd',
53
+ /** Label for the "Publish" document action while publish is being executed.*/
54
+ 'action.publish.running.label': 'Publiceren…',
55
+ /** Tooltip when the "Publish" document action is disabled due to validation issues */
56
+ 'action.publish.validation-issues.tooltip':
57
+ 'Er zijn validatiefouten die opgelost moeten worden voordat dit document kan worden gepubliceerd',
58
+ /** Tooltip when publish button is waiting for validation and async tasks to complete.*/
59
+ 'action.publish.waiting': 'Wachten op het afronden van taken voordat er gepubliceerd wordt',
60
+ /** Message prompting the user to confirm that they want to restore to an earlier version*/
61
+ 'action.restore.confirm-dialog.confirm-discard-changes':
62
+ 'Weet u zeker dat u dit document wilt herstellen?',
63
+ /** Fallback tooltip for when user is looking at the initial version */
64
+ 'action.restore.disabled.cannot-restore-initial':
65
+ 'U kunt niet herstellen naar de initiële versie',
66
+ /** Label for the "Restore" document action */
67
+ 'action.restore.label': 'Herstellen',
68
+ /** Default tooltip for the action */
69
+ 'action.restore.tooltip': 'Herstel naar deze versie',
70
+ /** Tooltip when action is disabled because the document is not already published */
71
+ 'action.unpublish.disabled.not-published': 'Dit document is niet gepubliceerd',
72
+ /** Tooltip when action is disabled because the operation is not ready */
73
+ 'action.unpublish.disabled.not-ready': 'Operatie niet klaar',
74
+ /** Label for the "Unpublish" document action */
75
+ 'action.unpublish.label': 'Depubliceren',
76
+ /** Fallback tooltip for the Unpublish document action when publish is invoked for a document with live edit enabled.*/
77
+ 'action.unpublish.live-edit.disabled':
78
+ 'Dit document heeft live bewerken ingeschakeld en kan niet worden gedepubliceerd',
79
+
80
+ /** The text for the restore button on the deleted document banner */
81
+ 'banners.deleted-document-banner.restore-button.text': 'Herstel meest recente versie',
82
+ /** The text content for the deleted document banner */
83
+ 'banners.deleted-document-banner.text': 'Dit document is verwijderd.',
84
+ /** The text for the permission check banner if the user only has one role, and it does not allow updating this document */
85
+ 'banners.permission-check-banner.missing-permission_create_one':
86
+ 'Uw rol <Roles/> heeft geen toestemming om dit document te creëren.',
87
+ /** The text for the permission check banner if the user only has multiple roles, but they do not allow updating this document */
88
+ 'banners.permission-check-banner.missing-permission_create_other':
89
+ 'Uw rollen <Roles/> hebben geen toestemming om dit document te creëren.',
90
+ /** The text for the permission check banner if the user only has one role, and it does not allow updating this document */
91
+ 'banners.permission-check-banner.missing-permission_update_one':
92
+ 'Uw rol <Roles/> heeft geen toestemming om dit document bij te werken.',
93
+ /** The text for the permission check banner if the user only has multiple roles, but they do not allow updating this document */
94
+ 'banners.permission-check-banner.missing-permission_update_other':
95
+ 'Uw rollen <Roles/> hebben geen toestemming om dit document bij te werken.',
96
+ /** The text for the reload button */
97
+ 'banners.reference-changed-banner.reason-changed.reload-button.text': 'Referentie herladen',
98
+ /** The text for the reference change banner if the reason is that the reference has been changed */
99
+ 'banners.reference-changed-banner.reason-changed.text':
100
+ 'Deze referentie is gewijzigd sinds u deze geopend heeft.',
101
+ /** The text for the close button */
102
+ 'banners.reference-changed-banner.reason-removed.close-button.text': 'Referentie sluiten',
103
+ /** The text for the reference change banner if the reason is that the reference has been deleted */
104
+ 'banners.reference-changed-banner.reason-removed.text':
105
+ 'Deze referentie is verwijderd sinds u deze geopend heeft.',
106
+
107
+ /** The action menu button aria-label */
108
+ 'buttons.action-menu-button.aria-label': 'Documentacties openen',
109
+ /** The aria-label for the split pane button on the document panel header */
110
+ 'buttons.split-pane-button.aria-label': 'Deelvenster rechts splitsen',
111
+ /** The tool tip for the split pane button on the document panel header */
112
+ 'buttons.split-pane-button.tooltip': 'Deelvenster rechts splitsen',
113
+ /** The title for the close button on the split pane on the document panel header */
114
+ 'buttons.split-pane-close-button.title': 'Sluit deelvenster',
115
+ /** The title for the close group button on the split pane on the document panel header */
116
+ 'buttons.split-pane-close-group-button.title': 'Sluit paneelgroep',
117
+
118
+ /** The text in the "Cancel" button in the confirm delete dialog that cancels the action and closes the dialog */
119
+ 'confirm-delete-dialog.cancel-button.text': 'Annuleren',
120
+ /** Used in `confirm-delete-dialog.cdr-summary.title` */
121
+ 'confirm-delete-dialog.cdr-summary.document-count_one': '1 document',
122
+ /** Used in `confirm-delete-dialog.cdr-summary.title` */
123
+ 'confirm-delete-dialog.cdr-summary.document-count_other': '{{count}} documenten',
124
+ /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */
125
+ 'confirm-delete-dialog.cdr-summary.subtitle_one': 'Dataset: {{datasets}}',
126
+ /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */
127
+ 'confirm-delete-dialog.cdr-summary.subtitle_other': 'Datasets: {{datasets}}',
128
+ /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */
129
+ 'confirm-delete-dialog.cdr-summary.subtitle_unavailable_one': 'Niet beschikbare dataset',
130
+ /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */
131
+ 'confirm-delete-dialog.cdr-summary.subtitle_unavailable_other': 'Niet beschikbare datasets',
132
+ /** The text that appears in the title `<summary>` that includes the list of CDRs (singular) */
133
+ 'confirm-delete-dialog.cdr-summary.title_one': '{{documentCount}} in een andere dataset',
134
+ /** The text that appears in the title `<summary>` that includes the list of CDRs (plural) */
135
+ 'confirm-delete-dialog.cdr-summary.title_other': '{{documentCount}} in {{count}} datasets',
136
+ /** Appears when hovering over the copy button to copy */
137
+ 'confirm-delete-dialog.cdr-table.copy-id-button.tooltip': 'Kopieer ID naar klembord',
138
+ /** The header for the dataset column in the list of cross-dataset references found */
139
+ 'confirm-delete-dialog.cdr-table.dataset.label': 'Dataset',
140
+ /** The header for the document ID column in the list of cross-dataset references found */
141
+ 'confirm-delete-dialog.cdr-table.document-id.label': 'Document-ID',
142
+ /** The toast title when the copy button has been clicked */
143
+ 'confirm-delete-dialog.cdr-table.id-copied-toast.title': 'Document-ID gekopieerd naar klembord!',
144
+ /** The header for the project ID column in the list of cross-dataset references found */
145
+ 'confirm-delete-dialog.cdr-table.project-id.label': 'Project-ID',
146
+ /** The text in the "Delete anyway" button in the confirm delete dialog that confirms the action */
147
+ 'confirm-delete-dialog.confirm-anyway-button.text_delete': 'Toch verwijderen',
148
+ /** The text in the "Unpublish anyway" button in the confirm delete dialog that confirms the action */
149
+ 'confirm-delete-dialog.confirm-anyway-button.text_unpublish': 'Toch ontpubliceren',
150
+ /** The text in the "Delete now" button in the confirm delete dialog that confirms the action */
151
+ 'confirm-delete-dialog.confirm-button.text_delete': 'Nu verwijderen',
152
+ /** The text in the "Unpublish now" button in the confirm delete dialog that confirms the action */
153
+ 'confirm-delete-dialog.confirm-button.text_unpublish': 'Nu ontpubliceren',
154
+ /** If no referring documents are found, this text appears above the cancel and confirmation buttons */
155
+ 'confirm-delete-dialog.confirmation.text_delete':
156
+ 'Weet u zeker dat u “<DocumentTitle/>” wilt verwijderen?',
157
+ /** If no referring documents are found, this text appears above the cancel and confirmation buttons */
158
+ 'confirm-delete-dialog.confirmation.text_unpublish':
159
+ 'Weet u zeker dat u “<DocumentTitle/>” wilt ontpubliceren?',
160
+ /** The text body of the error dialog. */
161
+ 'confirm-delete-dialog.error.message.text':
162
+ 'Er is een fout opgetreden bij het laden van verwijzende documenten.',
163
+ /** The text in the retry button of the confirm delete dialog if an error occurred. */
164
+ 'confirm-delete-dialog.error.retry-button.text': 'Opnieuw proberen',
165
+ /** The header of the confirm delete dialog if an error occurred while the confirm delete dialog was open. */
166
+ 'confirm-delete-dialog.error.title.text': 'Fout',
167
+ /** The header of the confirm delete dialog */
168
+ 'confirm-delete-dialog.header.text_delete': 'Document verwijderen?',
169
+ /** The header of the confirm delete dialog */
170
+ 'confirm-delete-dialog.header.text_unpublish': 'Document ontpubliceren?',
171
+ /** The text that appears while the referring documents are queried */
172
+ 'confirm-delete-dialog.loading.text': 'Op zoek naar verwijzende documenten…',
173
+ /** Shown if there are references to other documents but the user does not have the permission to see the relevant document IDs */
174
+ 'confirm-delete-dialog.other-reference-count.title_one': '1 andere referentie niet getoond',
175
+ /** Shown if there are references to other documents but the user does not have the permission to see the relevant document IDs */
176
+ 'confirm-delete-dialog.other-reference-count.title_other':
177
+ '{{count}} andere referenties niet getoond',
178
+ /** Text in the tooltip of this component if hovering over the info icon */
179
+ 'confirm-delete-dialog.other-reference-count.tooltip':
180
+ 'We kunnen geen metadata voor deze referenties weergeven vanwege een ontbrekend toegangstoken voor de gerelateerde datasets.',
181
+ /** Appears when unable to render a document preview in the referring document list */
182
+ 'confirm-delete-dialog.preview-item.preview-unavailable.subtitle': 'ID: {{documentId}}',
183
+ /** Appears when unable to render a document preview in the referring document list */
184
+ 'confirm-delete-dialog.preview-item.preview-unavailable.title': 'Voorbeeld niet beschikbaar',
185
+ /** Warns the user of affects to other documents if the action is confirmed (delete) */
186
+ 'confirm-delete-dialog.referential-integrity-disclaimer.text_delete':
187
+ 'Als u dit document verwijdert, kunnen documenten die ernaar verwijzen er niet langer toegang toe hebben.',
188
+ /** Warns the user of affects to other documents if the action is confirmed (unpublish) */
189
+ 'confirm-delete-dialog.referential-integrity-disclaimer.text_unpublish':
190
+ 'Als u dit document niet publiceert, kunnen documenten die ernaar verwijzen er niet langer toegang toe hebben.',
191
+ /** Tells the user the count of how many other referring documents there are before listing them. (singular) */
192
+ 'confirm-delete-dialog.referring-document-count.text_one':
193
+ '1 document verwijst naar “<DocumentTitle/>”',
194
+ /** Tells the user the count of how many other referring documents there are before listing them. (plural) */
195
+ 'confirm-delete-dialog.referring-document-count.text_other':
196
+ '{{count}} documenten verwijzen naar “<DocumentTitle/>”',
197
+ /** Describes the list of documents that refer to the one trying to be deleted (delete) */
198
+ 'confirm-delete-dialog.referring-documents-descriptor.text_delete':
199
+ 'Het is mogelijk dat u “<DocumentTitle/>” niet kunt verwijderen omdat de volgende documenten ernaar verwijzen:',
200
+ /** Describes the list of documents that refer to the one trying to be deleted (unpublish) */
201
+ 'confirm-delete-dialog.referring-documents-descriptor.text_unpublish':
202
+ 'Het is mogelijk dat u “<DocumentTitle/>” niet kunt ontpubliceren omdat de volgende documenten ernaar verwijzen:',
203
+
204
+ /** The text for the cancel button in the confirm dialog used in document action shortcuts if none is provided */
205
+ 'confirm-dialog.cancel-button.fallback-text': 'Annuleren',
206
+ /** The text for the confirm button in the confirm dialog used in document action shortcuts if none is provided */
207
+ 'confirm-dialog.confirm-button.fallback-text': 'Bevestigen',
208
+
209
+ /** The text shown if there was an error while getting the document's title via a preview value */
210
+ 'doc-title.error.text': 'Fout: {{errorMessage}}',
211
+ /** The text shown if the preview value for a document is non-existent or empty */
212
+ 'doc-title.fallback.text': 'Zonder titel',
213
+ /** The text shown if a document's title via a preview value cannot be determined due to an unknown schema type */
214
+ 'doc-title.unknown-schema-type.text': 'Onbekend schema type: {{schemaType}}',
215
+
216
+ /** The title shown in the dialog header, when inspecting a valid document */
217
+ 'document-inspector.dialog.title': 'Inspecteren <DocumentTitle/>',
218
+ /** The title shown in the dialog header, when the document being inspected is not created yet/has no value */
219
+ 'document-inspector.dialog.title-no-value': 'Geen waarde',
220
+ /** Title shown for menu item that opens the "Inspect" dialog */
221
+ 'document-inspector.menu-item.title': 'Inspecteren',
222
+ /** the placeholder text for the search input on the inspect dialog */
223
+ 'document-inspector.search.placeholder': 'Zoeken',
224
+ /** The "parsed" view mode, meaning the JSON is searchable, collapsible etc */
225
+ 'document-inspector.view-mode.parsed': 'Geanalyseerd',
226
+ /** The "raw" view mode, meaning the JSON is presented syntax-highlighted, but with no other features - optimal for copying */
227
+ 'document-inspector.view-mode.raw-json': 'Ruwe JSON',
228
+
229
+ /** The text for when a form is hidden */
230
+ 'document-view.form-view.form-hidden': 'Dit formulier is verborgen',
231
+ /** The text for when the form view is loading a document */
232
+ 'document-view.form-view.loading': 'Document laden…',
233
+ /** The description of the sync lock toast on the form view */
234
+ 'document-view.form-view.sync-lock-toast.description':
235
+ 'Wacht alstublieft terwijl het document wordt gesynchroniseerd. Dit gebeurt meestal direct nadat het document is gepubliceerd en zou niet meer dan een paar seconden moeten duren',
236
+ /** The title of the sync lock toast on the form view */
237
+ 'document-view.form-view.sync-lock-toast.title': 'Document synchroniseren…',
238
+
239
+ /** The loading messaging for when the tooltip is still loading permission info */
240
+ 'insufficient-permissions-message-tooltip.loading-text': 'Laden…',
241
+
242
+ /** --- Menu items --- */
243
+ /** The menu item title to use the compact view */
244
+ 'menu-items.layout.compact-view': 'Compacte weergave',
245
+ /** The menu item title to use the detailed view */
246
+ 'menu-items.layout.detailed-view': 'Gedetailleerde weergave',
247
+ /** The menu item title to Sort by Created */
248
+ 'menu-items.sort-by.created': 'Sorteren op Aangemaakt',
249
+ /** The menu item title to Sort by Last Edited */
250
+ 'menu-items.sort-by.last-edited': 'Sorteren op Laatst bewerkt',
251
+
252
+ /** The link text of the no document type screen that appears directly below the subtitle */
253
+ 'no-document-types-screen.link-text': 'Leer hoe u een documenttype kunt toevoegen →',
254
+ /** The subtitle of the no document type screen that appears directly below the title */
255
+ 'no-document-types-screen.subtitle':
256
+ 'Definieer alstublieft ten minste één documenttype in uw schema.',
257
+ /** The title of the no document type screen */
258
+ 'no-document-types-screen.title': 'Geen documenttypes',
259
+
260
+ /** tooltip text (via `title` attribute) for the menu button */
261
+ 'pane-header.context-menu-button.tooltip': 'Toon menu',
262
+ /** Appears in a document list pane header if there are more than one option for create. This is the label for that menu */
263
+ 'pane-header.create-menu.label': 'Creëren',
264
+ /** The `aria-label` for the disabled button in the pane header if create permissions are granted */
265
+ 'pane-header.disabled-created-button.aria-label': 'Onvoldoende rechten',
266
+
267
+ /** The text shown in the tooltip of pane item previews of documents if there are unpublished edits */
268
+ 'pane-item.draft-status.has-draft.tooltip': 'Bewerkt <RelativeTime/>',
269
+ /** The text shown in the tooltip of pane item previews of documents if there are no unpublished edits */
270
+ 'pane-item.draft-status.no-draft.tooltip': 'Geen ongepubliceerde wijzigingen',
271
+ /** The subtitle tor pane item previews if there isn't a matching schema type found */
272
+ 'pane-item.missing-schema-type.subtitle': 'Document: <Code>{{documentId}}</Code>',
273
+ /** The title tor pane item previews if there isn't a matching schema type found */
274
+ 'pane-item.missing-schema-type.title':
275
+ 'Geen schema gevonden voor type <Code>{{documentType}}</Code>',
276
+ /** The text shown in the tooltip of pane item previews of documents if there are unpublished edits */
277
+ 'pane-item.published-status.has-published.tooltip': 'Gepubliceerd <RelativeTime/>',
278
+ /** The text shown in the tooltip of pane item previews of documents if there are no unpublished edits */
279
+ 'pane-item.published-status.no-published.tooltip': 'Geen ongepubliceerde wijzigingen',
280
+
281
+ /** The text used in the document header title if there is an error */
282
+ 'panes.document-header-title.error.text': 'Fout: {{error}}',
283
+ /** The text used in the document header title if creating a new item */
284
+ 'panes.document-header-title.new.text': 'Nieuw {{schemaType}}',
285
+ /** The text used in the document header title if no other title can be determined */
286
+ 'panes.document-header-title.untitled.text': 'Naamloos',
287
+ /** The text for the retry button on the document list pane */
288
+ 'panes.document-list-pane.error.retry-button.text': 'Opnieuw proberen',
289
+ /** The error text on the document list pane */
290
+ 'panes.document-list-pane.error.text': 'Fout: <Code>{{error}}</Code>',
291
+ /** The error title on the document list pane */
292
+ 'panes.document-list-pane.error.title': 'Kon lijstitems niet ophalen',
293
+ /** The text of the document list pane if more than a maximum number of documents are returned */
294
+ 'panes.document-list-pane.max-items.text': 'Er worden maximaal {{limit}} documenten weergegeven',
295
+ /** The text of the document list pane if no documents are found for a specified type */
296
+ 'panes.document-list-pane.no-documents-of-type.text': 'Geen documenten van dit type',
297
+ /** The text of the document list pane if no documents are found */
298
+ 'panes.document-list-pane.no-documents.text': 'Geen resultaten gevonden',
299
+ /** The text of the document list pane if no documents are found matching specified criteria */
300
+ 'panes.document-list-pane.no-matching-documents.text': 'Geen overeenkomende documenten',
301
+ /** The aria-label for the search input on the document list pane */
302
+ 'panes.document-list-pane.search-input.aria-label': 'Lijst doorzoeken',
303
+ /** The search input for the search input on the document list pane */
304
+ 'panes.document-list-pane.search-input.placeholder': 'Lijst doorzoeken',
305
+ /** The summary title when displaying an error for a document operation result */
306
+ 'panes.document-operation-results.error.summary.title': 'Details',
307
+ /** The text when a generic operation failed (fallback, generally not shown) */
308
+ 'panes.document-operation-results.operation-error':
309
+ 'Er is een fout opgetreden tijdens {{context}}',
310
+ /** The text when a delete operation failed */
311
+ 'panes.document-operation-results.operation-error_delete':
312
+ 'Er is een fout opgetreden bij het proberen te verwijderen van dit document. Dit betekent meestal dat er andere documenten zijn die ernaar verwijzen.',
313
+ /** The text when an unpublish operation failed */
314
+ 'panes.document-operation-results.operation-error_unpublish':
315
+ 'Er is een fout opgetreden bij het proberen te annuleren van de publicatie van dit document. Dit betekent meestal dat er andere documenten zijn die ernaar verwijzen.',
316
+ /** The text when a generic operation succeded (fallback, generally not shown) */
317
+ 'panes.document-operation-results.operation-success':
318
+ 'Succesvol {{context}} uitgevoerd op document',
319
+ /** The text when a delete operation succeded */
320
+ 'panes.document-operation-results.operation-success_delete':
321
+ 'Het document is succesvol verwijderd',
322
+ /** The text when a discard changes operation succeeded */
323
+ 'panes.document-operation-results.operation-success_discardChanges':
324
+ 'Alle wijzigingen sinds de laatste publicatie zijn nu verworpen. De verworpen conceptversie kan nog steeds worden hersteld uit de geschiedenis',
325
+ /** The text when a publish operation succeeded */
326
+ 'panes.document-operation-results.operation-success_publish': 'Het document is gepubliceerd',
327
+ /** The text when an unpublish operation succeeded */
328
+ 'panes.document-operation-results.operation-success_unpublish':
329
+ 'De publicatie van het document is ongedaan gemaakt. Er is een concept gemaakt van de laatste gepubliceerde versie.',
330
+ /** The title of the reconnecting toast */
331
+ 'panes.document-pane-provider.reconnecting.title': 'Verbinding verloren. Opnieuw verbinden…',
332
+ /** The loading message for the document not found pane */
333
+ 'panes.document-pane.document-not-found.loading': 'Document laden…',
334
+ /** The text of the document not found pane if the schema is known */
335
+ 'panes.document-pane.document-not-found.text':
336
+ 'Het documenttype is niet gedefinieerd, en een document met de <Code>{{id}}</Code> identificatie kon niet worden gevonden.',
337
+ /** The title of the document not found pane if the schema is known */
338
+ 'panes.document-pane.document-not-found.title': 'Het document is niet gevonden',
339
+ /** The text of the document not found pane if the schema is not found */
340
+ 'panes.document-pane.document-unknown-type.text':
341
+ 'Dit document heeft het schema type <Code>{{documentType}}</Code>, dat niet is gedefinieerd als een type in het lokale content studio schema.',
342
+ /** The title of the document not found pane if the schema is not found or unknown */
343
+ 'panes.document-pane.document-unknown-type.title':
344
+ 'Onbekend documenttype: <Code>{{documentType}}</Code>',
345
+ /** The title of the document not found pane if the schema is unknown */
346
+ 'panes.document-pane.document-unknown-type.without-schema.text':
347
+ 'Dit document bestaat niet, en er is geen schema type voor gespecificeerd.',
348
+ /** The text to display when type is missing */
349
+ 'panes.unknown-pane-type.missing-type.text':
350
+ 'Structuur item mist de vereiste <Code>type</Code> eigenschap.',
351
+ /** The title of the unknown pane */
352
+ 'panes.unknown-pane-type.title': 'Onbekend paneeltype',
353
+ /** The text to display when type is unknown */
354
+ 'panes.unknown-pane-type.unknown-type.text':
355
+ 'Structuur item van type <Code>{{type}}</Code> is geen bekende entiteit.',
356
+
357
+ /** The text for the "Open preview" action for a document */
358
+ 'production-preview.menu-item.title': 'Voorbeeld openen',
359
+
360
+ /** Accessibility label indicating when the document was last published, in relative time, eg "3 weeks ago" */
361
+ 'status-bar.publish-status-button.last-published-time.aria-label':
362
+ 'Laatst gepubliceerd {{relativeTime}}',
363
+ /** Text for tooltip showing explanation of timestamp/relative time, eg "Last published <RelativeTime/>" */
364
+ 'status-bar.publish-status-button.last-published-time.tooltip':
365
+ 'Laatst gepubliceerd <RelativeTime/>',
366
+ /** Accessibility label indicating when the document was last updated, in relative time, eg "2 hours ago" */
367
+ 'status-bar.publish-status-button.last-updated-time.aria-label':
368
+ 'Laatst bijgewerkt {{relativeTime}}',
369
+ /** Text for tooltip showing explanation of timestamp/relative time, eg "Last updated <RelativeTime/>" */
370
+ 'status-bar.publish-status-button.last-updated-time.tooltip': 'Laatst bijgewerkt <RelativeTime/>',
371
+ /** Aria label for the button */
372
+ 'status-bar.review-changes-button.aria-label': 'Wijzigingen beoordelen',
373
+ /** Label for button when status is saved */
374
+ 'status-bar.review-changes-button.status.saved.text': 'Opgeslagen!',
375
+ /** Label for button when status is syncing */
376
+ 'status-bar.review-changes-button.status.syncing.text': 'Opslaan...',
377
+ /** Text for the secondary text for tooltip for the button */
378
+ 'status-bar.review-changes-button.tooltip.changes-saved': 'Wijzigingen opgeslagen',
379
+ /** Primary text for tooltip for the button */
380
+ 'status-bar.review-changes-button.tooltip.text': 'Wijzigingen bekijken',
381
+
382
+ /** The text that appears in side the documentation link */
383
+ 'structure-error.docs-link.text': 'Bekijk documentatie',
384
+ /** Labels the error message or error stack of the structure error screen */
385
+ 'structure-error.error.label': 'Fout',
386
+ /** The header that appears at the top of the error screen */
387
+ 'structure-error.header.text': 'Er is een fout opgetreden bij het lezen van de structuur',
388
+ /** The text in the reload button to retry rendering the structure */
389
+ 'structure-error.reload-button.text': 'Opnieuw laden',
390
+ /** Labels the structure path of the structure error screen */
391
+ 'structure-error.structure-path.label': 'Structuurpad',
392
+ })