@sanity/locale-nl-nl 1.1.13 → 1.1.15

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity/locale-nl-nl",
3
- "version": "1.1.13",
3
+ "version": "1.1.15",
4
4
  "private": false,
5
5
  "description": "Dutch / Nederlands locale/translation for Sanity Studio",
6
6
  "keywords": [
package/src/structure.ts CHANGED
@@ -84,18 +84,29 @@ export default removeUndefinedLocaleResources({
84
84
  'banners.deleted-document-banner.text': 'Dit document is verwijderd.',
85
85
  /** The text content for the deprecated document type banner */
86
86
  'banners.deprecated-document-type-banner.text': 'Dit documenttype is verouderd.',
87
- /** The text for the permission check banner if the user only has one role, and it does not allow updating this document */
87
+ /** The text for publish action for discarding the version */
88
+ 'banners.live-edit-draft-banner.discard.tooltip': 'Concept verwijderen',
89
+ /** The text for publish action for the draft banner */
90
+ 'banners.live-edit-draft-banner.publish.tooltip': 'Publiceer om door te gaan met bewerken',
91
+ /** The text content for the live edit document when it's a draft */
92
+ 'banners.live-edit-draft-banner.text':
93
+ 'Het type <strong>{{schemaType}}</strong> heeft <code>liveEdit</code> ingeschakeld, maar er bestaat een conceptversie van dit document. Publiceer of verwijder het concept om door te gaan met het live bewerken ervan.',
94
+ /** The text for the permission check banner if the user only has one role, and it does not allow publishing this document */
88
95
  'banners.permission-check-banner.missing-permission_create_one':
89
96
  'Uw rol <Roles/> heeft geen toestemming om dit document te creëren.',
90
- /** The text for the permission check banner if the user only has multiple roles, but they do not allow updating this document */
97
+ /** The text for the permission check banner if the user only has multiple roles, but they do not allow publishing this document */
91
98
  'banners.permission-check-banner.missing-permission_create_other':
92
99
  'Uw rollen <Roles/> hebben geen toestemming om dit document te creëren.',
93
- /** The text for the permission check banner if the user only has one role, and it does not allow updating this document */
100
+ /** The text for the permission check banner if the user only has one role, and it does not allow editing this document */
94
101
  'banners.permission-check-banner.missing-permission_update_one':
95
102
  'Uw rol <Roles/> heeft geen toestemming om dit document bij te werken.',
96
- /** The text for the permission check banner if the user only has multiple roles, but they do not allow updating this document */
103
+ /** The text for the permission check banner if the user only has multiple roles, but they do not allow editing this document */
97
104
  'banners.permission-check-banner.missing-permission_update_other':
98
105
  'Uw rollen <Roles/> hebben geen toestemming om dit document bij te werken.',
106
+ /** The pending text for the request permission button that appears for viewer roles */
107
+ 'banners.permission-check-banner.request-permission-button.sent': 'Aanvraag verzonden',
108
+ /** The text for the request permission button that appears for viewer roles */
109
+ 'banners.permission-check-banner.request-permission-button.text': 'Vraag om te bewerken',
99
110
  /** The text for the reload button */
100
111
  'banners.reference-changed-banner.reason-changed.reload-button.text': 'Referentie herladen',
101
112
  /** The text for the reference change banner if the reason is that the reference has been changed */
@@ -312,8 +323,6 @@ export default removeUndefinedLocaleResources({
312
323
  'panes.document-header-title.new.text': 'Nieuw {{schemaType}}',
313
324
  /** The text used in the document header title if no other title can be determined */
314
325
  'panes.document-header-title.untitled.text': 'Naamloos',
315
- /** The text for the retry button on the document list pane */
316
- 'panes.document-list-pane.error.retry-button.text': 'Opnieuw proberen',
317
326
  /** The error text on the document list pane */
318
327
  'panes.document-list-pane.error.text': 'Fout: <Code>{{error}}</Code>',
319
328
  /** The error title on the document list pane */
@@ -400,6 +409,25 @@ export default removeUndefinedLocaleResources({
400
409
  /** The text for the "Open preview" action for a document */
401
410
  'production-preview.menu-item.title': 'Voorbeeld openen',
402
411
 
412
+ /** The text for the confirm button in the request permission dialog used in the permissions banner */
413
+ 'request-permission-dialog.confirm-button.text': 'Aanvraag versturen',
414
+ /** The description text for the request permission dialog used in the permissions banner */
415
+ 'request-permission-dialog.description.text':
416
+ 'Uw verzoek zal worden verzonden naar de projectbeheerder(s). Als u wilt, kunt u ook een notitie toevoegen',
417
+ /** The header/title for the request permission dialog used in the permissions banner */
418
+ 'request-permission-dialog.header.text': 'Vraag om bewerktoegang',
419
+ /** The text describing the note input for the request permission dialog used in the permissions banner */
420
+ 'request-permission-dialog.note-input.description.text':
421
+ 'Als u wilt, kunt u een notitie toevoegen',
422
+ /** The placeholder for the note input in the request permission dialog used in the permissions banner */
423
+ 'request-permission-dialog.note-input.placeholder.text': 'Voeg notitie toe...',
424
+ /** The error/warning text in the request permission dialog when the user's request has been declined */
425
+ 'request-permission-dialog.warning.denied.text':
426
+ 'Uw verzoek om toegang tot dit project is afgewezen.',
427
+ /** The error/warning text in the request permission dialog when the user's request has been denied due to too many outstanding requests */
428
+ 'request-permission-dialog.warning.limit-reached.text':
429
+ 'U heeft de limiet bereikt voor rolverzoeken voor alle projecten. Wacht even voordat u meer verzoeken indient of neem contact op met een beheerder voor hulp.',
430
+
403
431
  /** Label for button when status is saved */
404
432
  'status-bar.document-status-pulse.status.saved.text': 'Opgeslagen',
405
433
  /** Label for button when status is syncing */
package/src/studio.ts CHANGED
@@ -1,6 +1,17 @@
1
1
  import {removeUndefinedLocaleResources} from 'sanity'
2
2
 
3
3
  export default removeUndefinedLocaleResources({
4
+ /** The text used in the tooltip shown in the dialog close button */
5
+ 'announcement.dialog.close': 'Sluiten',
6
+ /** Aria label to be used in the dialog close button */
7
+ 'announcement.dialog.close-label': 'Dialoog sluiten',
8
+ /**Text to be used in the tooltip in the button in the studio announcement card */
9
+ 'announcement.floating-button.dismiss': 'Sluiten',
10
+ /**Aria label to be used in the floating button in the studio announcement card, to dismiss the card */
11
+ 'announcement.floating-button.dismiss-label': 'Aankondigingen negeren',
12
+ /**Aria label to be used in the floating button in the studio announcement card */
13
+ 'announcement.floating-button.open-label': 'Aankondigingen openen',
14
+
4
15
  /** Menu item for deleting the asset */
5
16
  'asset-source.asset-list.menu.delete': 'Verwijderen',
6
17
  /** Menu item for showing where a particular asset is used */