@sanity/locale-is-is 1.2.11 → 1.2.13

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.
Files changed (41) hide show
  1. package/dist/_chunks-cjs/canvas.cjs +83 -0
  2. package/dist/_chunks-cjs/canvas.cjs.map +1 -0
  3. package/dist/_chunks-cjs/comments.cjs +0 -2
  4. package/dist/_chunks-cjs/comments.cjs.map +1 -1
  5. package/dist/_chunks-cjs/copy-paste.cjs +0 -10
  6. package/dist/_chunks-cjs/copy-paste.cjs.map +1 -1
  7. package/dist/_chunks-cjs/create.cjs +0 -20
  8. package/dist/_chunks-cjs/create.cjs.map +1 -1
  9. package/dist/_chunks-cjs/structure.cjs +91 -4
  10. package/dist/_chunks-cjs/structure.cjs.map +1 -1
  11. package/dist/_chunks-cjs/studio.cjs +211 -4
  12. package/dist/_chunks-cjs/studio.cjs.map +1 -1
  13. package/dist/_chunks-cjs/vision.cjs +8 -0
  14. package/dist/_chunks-cjs/vision.cjs.map +1 -1
  15. package/dist/_chunks-es/canvas.js +85 -0
  16. package/dist/_chunks-es/canvas.js.map +1 -0
  17. package/dist/_chunks-es/comments.js +0 -2
  18. package/dist/_chunks-es/comments.js.map +1 -1
  19. package/dist/_chunks-es/copy-paste.js +0 -10
  20. package/dist/_chunks-es/copy-paste.js.map +1 -1
  21. package/dist/_chunks-es/create.js +0 -20
  22. package/dist/_chunks-es/create.js.map +1 -1
  23. package/dist/_chunks-es/structure.js +91 -4
  24. package/dist/_chunks-es/structure.js.map +1 -1
  25. package/dist/_chunks-es/studio.js +211 -4
  26. package/dist/_chunks-es/studio.js.map +1 -1
  27. package/dist/_chunks-es/vision.js +8 -0
  28. package/dist/_chunks-es/vision.js.map +1 -1
  29. package/dist/index.cjs +6 -0
  30. package/dist/index.cjs.map +1 -1
  31. package/dist/index.js +4 -0
  32. package/dist/index.js.map +1 -1
  33. package/package.json +1 -1
  34. package/src/canvas.ts +59 -0
  35. package/src/comments.ts +0 -3
  36. package/src/copy-paste.ts +0 -11
  37. package/src/create.ts +0 -27
  38. package/src/index.ts +5 -0
  39. package/src/structure.ts +94 -4
  40. package/src/studio.ts +191 -4
  41. package/src/vision.ts +10 -0
package/src/studio.ts CHANGED
@@ -1,6 +1,31 @@
1
1
  import {removeUndefinedLocaleResources} from 'sanity'
2
2
 
3
3
  export default removeUndefinedLocaleResources({
4
+ /** "Disabled" status for auto-updates in About-dialog */
5
+ 'about-dialog.version-info.auto-updates.disabled': undefined, // 'Disabled'
6
+ /** "Enabled" status for auto-updates in About-dialog */
7
+ 'about-dialog.version-info.auto-updates.enabled': undefined, // 'Enabled'
8
+ /** "Auto Updates" status header in About-dialog */
9
+ 'about-dialog.version-info.auto-updates.header': undefined, // 'Auto Updates'
10
+ /** "How to enable" next to Disabled state for Auto updates in about dialog */
11
+ 'about-dialog.version-info.auto-updates.how-to-enable': undefined, // 'How to enable'
12
+ /** Text displayed on the "Copy to clipboard"-button after clicked */
13
+ 'about-dialog.version-info.copy-to-clipboard-button.copied-text': undefined, // 'Copied to Clipboard. Happy pasting!'
14
+ /** "Copy to Clipboard" button text for copying version details from About-dialog */
15
+ 'about-dialog.version-info.copy-to-clipboard-button.text': undefined, // 'Copy to Clipboard'
16
+ /** "Current version" header in about dialog */
17
+ 'about-dialog.version-info.current-version.header': undefined, // 'Current version'
18
+ /** "How to upgrade" link text */
19
+ 'about-dialog.version-info.how-to-upgrade': undefined, // 'How to upgrade'
20
+ /** "Latest version" header in about dialog */
21
+ 'about-dialog.version-info.latest-version.header': undefined, // 'Latest version'
22
+ /** "Latest version" header in about dialog */
23
+ 'about-dialog.version-info.latest-version.text': undefined, // 'Latest version is {{latestVersion}}'
24
+ /** "Up to date" status in About-dialog */
25
+ 'about-dialog.version-info.up-to-date': undefined, // 'Up to date'
26
+ /** "User agent" header in About-dialog */
27
+ 'about-dialog.version-info.user-agent.header': undefined, // 'User agent'
28
+
4
29
  /** The text used in the tooltip shown in the dialog close button */
5
30
  'announcement.dialog.close': 'Loka',
6
31
  /** Aria label to be used in the dialog close button */
@@ -61,11 +86,17 @@ export default removeUndefinedLocaleResources({
61
86
  /** Text shown when the list of assets only include a specific set of types */
62
87
  'asset-source.dialog.accept-message':
63
88
  'Aðeins sýndar eignir af samþykktum gerðum: <strong>{{acceptTypes}}</strong>',
89
+ /** Select asset dialog cancel-button */
90
+ 'asset-source.dialog.button.cancel': undefined, // 'Cancel'
91
+ /** Select asset dialog select-button */
92
+ 'asset-source.dialog.button.select': undefined, // 'Select'
64
93
  /** Keys shared between both image asset source and file asset source */
65
94
  /** Select asset dialog title for files */
66
95
  'asset-source.dialog.default-title_file': 'Veldu skrá',
67
96
  /** Select asset dialog title for images */
68
97
  'asset-source.dialog.default-title_image': 'Veldu mynd',
98
+ /** Insert asset error */
99
+ 'asset-source.dialog.insert-asset-error': undefined, // 'Error inserting asset. See the console for more information.'
69
100
  /** Select asset dialog load more items */
70
101
  'asset-source.dialog.load-more': 'Hlaða meira',
71
102
  /** Text shown when selecting a file but there's no files to select from */
@@ -92,6 +123,7 @@ export default removeUndefinedLocaleResources({
92
123
  'asset-source.image.asset-list.delete-successful': 'Mynd var eytt',
93
124
  /** Text displayed on button or menu invoking the image asset source */
94
125
  'asset-source.image.title': 'Upphlaðnar myndir',
126
+ /** Built in asset source usage texts */
95
127
  'asset-source.usage-list.documents-using-file_named_one':
96
128
  'Eitt skjal er að nota skrána <code>{{filename}}</code>',
97
129
  'asset-source.usage-list.documents-using-file_named_other':
@@ -118,6 +150,19 @@ export default removeUndefinedLocaleResources({
118
150
  'asset-source.usage-list.documents-using-image_unnamed_zero':
119
151
  'Engin skjöl eru að nota þessa mynd',
120
152
 
153
+ /** Common (all) Asset Source texts. Note that all translation keys starting with 'asset-source.' is for the built in asset source. */
154
+ 'asset-sources.common.uploader.upload-failed.description': undefined, // 'See the console for more information.'
155
+ 'asset-sources.common.uploader.upload-failed.title': undefined, // 'Upload failed'
156
+ /** Menu Items for Dataset Asset Source (will be replaced with workspace name by default) */
157
+ 'asset-sources.dataset.file.title': undefined, // 'Workspace files'
158
+ 'asset-sources.dataset.image.title': undefined, // 'Workspace images'
159
+ /** Menu Items for Media Library Asset Source */
160
+ 'asset-sources.media-library.file.title': undefined, // 'Media Library'
161
+ 'asset-sources.media-library.image.title': undefined, // 'Media Library'
162
+
163
+ /** Label when a release has been deleted by a different user */
164
+ 'banners.deleted-bundle-banner.text': "Útgáfan '<strong>{{title}}</strong>' hefur verið eytt.",
165
+
121
166
  /** Action message for navigating to next month */
122
167
  'calendar.action.go-to-next-month': 'Fara í næsta mánuð',
123
168
  /** Action message for navigating to next year */
@@ -136,10 +181,8 @@ export default removeUndefinedLocaleResources({
136
181
  'calendar.action.go-to-yesterday': 'Í gær',
137
182
  /** Label for switch that controls whether or not to include time in given timestamp */
138
183
  'calendar.action.include-time-label': 'Innifalið tíma',
139
- /** Action message for selecting the hour */
140
- 'calendar.action.select-hour': 'Veldu klukkustund',
141
- /** Action message for selecting the minute */
142
- 'calendar.action.select-minute': 'Veldu mínútu',
184
+ /** Action message for selecting the time */
185
+ 'calendar.action.select-time': undefined, // 'Select time'
143
186
  /** Action message for setting to the current time */
144
187
  'calendar.action.set-to-current-time': 'Stilltu á núverandi tíma',
145
188
  /** Label for selecting an hour preset. Receives a `time` param as a string on hh:mm format and a `date` param as a Date instance denoting the preset date */
@@ -231,6 +274,10 @@ export default removeUndefinedLocaleResources({
231
274
  'changes.error-boundary.developer-info': 'Athugaðu þróunarvalmyndina fyrir frekari upplýsingar',
232
275
  /** Text shown when a diff component crashes during rendering, triggering the error boundary */
233
276
  'changes.error-boundary.title': 'Það kom upp villa við að sýna breytingarnar á þessu sviði',
277
+ /* Error description when changes could not be loaded */
278
+ 'changes.error-description': 'Við getum ekki hlaðið inn breytingunum fyrir þetta skjal.',
279
+ /** Error title when changes could not be loaded */
280
+ 'changes.error-title': 'Eitthvað fór úrskeiðis',
234
281
  /** Error message shown when the value of a field is not the expected one */
235
282
  'changes.error.incorrect-type-message':
236
283
  'Gildisvilla: Gildið er af gerðinni "<code>{{actualType}}</code>", búist var við "<code>{{expectedType}}</code>"',
@@ -265,6 +312,8 @@ export default removeUndefinedLocaleResources({
265
312
  'Breyttu skjalinu eða veldu eldri útgáfu í tímalínunni til að sjá lista yfir breytingar birtast á þessum glugga.',
266
313
  /** No Changes title in the Review Changes pane */
267
314
  'changes.no-changes-title': 'Engar breytingar eru til staðar',
315
+ /* Label for the tooltip that shows when an action is not selectable*/
316
+ 'changes.not-selectable': 'Ekki er hægt að velja þennan atburð',
268
317
  /** Portable Text diff: An annotation was added */
269
318
  'changes.portable-text.annotation_added': 'Bætti við skýringu',
270
319
  /** Portable Text diff: An annotation was changed */
@@ -308,6 +357,8 @@ export default removeUndefinedLocaleResources({
308
357
  'changes.removed-label': 'Fjarlægt',
309
358
  /** Title for the Review Changes pane */
310
359
  'changes.title': 'Endurskoða breytingar',
360
+ /**The title that will be shown in the badge inside the events when the item is a draft */
361
+ 'changes.versions.draft': 'Drög',
311
362
 
312
363
  /** --- Common components --- */
313
364
  /** Tooltip text for context menu buttons */
@@ -343,6 +394,10 @@ export default removeUndefinedLocaleResources({
343
394
  /** Title for the default ordering/SortOrder if no orderings are provided and the title field is found */
344
395
  'default-orderings.title': 'Raða eftir Titli',
345
396
 
397
+ /** Label to show in the document footer indicating the creation date of the document */
398
+ 'document-status.created': 'Búið til {{date}}',
399
+ /** Label to show in the document status indicating the date of the status */
400
+ 'document-status.date': '{{date}}',
346
401
  /** Label to show in the document footer indicating the last edited date of the document */
347
402
  'document-status.edited': 'Breytt {{date}}',
348
403
  /** Label to show in the document footer indicating the document is not published*/
@@ -352,6 +407,9 @@ export default removeUndefinedLocaleResources({
352
407
  /** Label to show in the document footer indicating the revision from date of the document */
353
408
  'document-status.revision-from': 'Endurskoðun frá <em>{{date}}</em>',
354
409
 
410
+ /** Label to indicate that a document type was not found */
411
+ 'document.type.not-found': undefined, // 'Document type "{{type}}" not found'
412
+
355
413
  /** The value of the <code>_key</code> property must be a unique string. */
356
414
  'form.error.duplicate-keys-alert.details.additional-description':
357
415
  'Gildi <code>_key</code> eiginleikans verður að vera einstakt strengur.',
@@ -415,6 +473,8 @@ export default removeUndefinedLocaleResources({
415
473
  'form.field.deprecated-label': 'úrelt',
416
474
  /** Fallback title shown above field if it has no defined title */
417
475
  'form.field.untitled-field-label': 'Án titils',
476
+ /** The title of the reconnecting toast */
477
+ 'form.reconnecting.toast.title': 'Tenging rofin. Endurtengi…',
418
478
  /** Accessibility label for the icon that indicates the field has a validation error */
419
479
  'form.validation.has-error-aria-label': 'Inniheldur villu',
420
480
  /** Accessibility label for the icon that indicates the field has validation information */
@@ -458,6 +518,8 @@ export default removeUndefinedLocaleResources({
458
518
 
459
519
  /** Text for button to cancel an ongoing upload */
460
520
  'input.files.common.cancel-upload': 'Hætta við',
521
+ /** Text for menuitem upload button default asset source */
522
+ 'input.files.common.upload-placeholder.file-input-button.default-source.badge': undefined, // 'Default'
461
523
  /** Text for file input button in upload placeholder */
462
524
  'input.files.common.upload-placeholder.file-input-button.text': 'Hlaða upp',
463
525
  /** Uploading <FileName/> */
@@ -533,6 +595,8 @@ export default removeUndefinedLocaleResources({
533
595
  'inputs.array.resolving-initial-value': 'Leysir úr upphaflegu gildi…',
534
596
  /** Tooltip content when boolean input is disabled */
535
597
  'inputs.boolean.disabled': 'Óvirkt',
598
+ /** Warning label when selected datetime is in the past */
599
+ 'inputs.dateTime.past-date-warning': 'Veldu dagsetningu í framtíðinni.',
536
600
  /** Placeholder value for datetime input */
537
601
  'inputs.datetime.placeholder': 't.d. {{example}}',
538
602
  /** Acessibility label for button to open file options menu */
@@ -602,6 +666,8 @@ export default removeUndefinedLocaleResources({
602
666
  'inputs.files.common.placeholder.drop-to-upload_image': 'Slepptu til að hlaða upp mynd',
603
667
  /** Read only */
604
668
  'inputs.files.common.placeholder.read-only': 'Aðeins til lesturs',
669
+ /** Select asset source destination for files to upload */
670
+ 'inputs.files.common.placeholder.select-asset-source-upload-destination': undefined, // 'Upload files to:'
605
671
  /** Can't upload files here */
606
672
  'inputs.files.common.placeholder.upload-not-supported': 'Get ekki hlaðið upp skrám hér',
607
673
  /** Clear upload */
@@ -938,6 +1004,8 @@ export default removeUndefinedLocaleResources({
938
1004
  'inputs.reference.error.nonexistent-document.clear-button-label': 'Hreinsa',
939
1005
  /** Error title for when the search for a reference failed. Note that the message sent by the backend may not be localized. */
940
1006
  'inputs.reference.error.search-failed-title': 'Leit að tilvísun mistókst',
1007
+ /** Label for when the GDR points to an invalid type */
1008
+ 'inputs.reference.global.invalid-type': undefined, // 'The referenced document is of invalid type ({{typeName}})'
941
1009
  /** Alternative text for the image shown in cross-dataset reference input */
942
1010
  'inputs.reference.image-preview-alt-text': 'Myndforskoðun af tilvísaðu skjali',
943
1011
  /** Description for alert shown when a reference in a live-edit document is marked as being weak, the referenced document exists, AND the reference is supposed to be have been strengthened on publish */
@@ -1087,6 +1155,10 @@ export default removeUndefinedLocaleResources({
1087
1155
  * when there are templates/types available for creation
1088
1156
  */
1089
1157
  'new-document.create-new-document-label': 'Nýtt skjal…',
1158
+ /** Tooltip message for add document button when the selected perspective is published */
1159
+ 'new-document.disabled-published.tooltip': 'Þú getur ekki búið til ný skjöl sem eru birt',
1160
+ /** Tooltip message for add document button when the selected perspective is for inactive release */
1161
+ 'new-document.disabled-release.tooltip': 'Þú getur ekki bætt skjölum við þessa útgáfu',
1090
1162
  /** Placeholder for the "filter" input within the new document menu */
1091
1163
  'new-document.filter-placeholder': 'Sía',
1092
1164
  /** Loading indicator text within the new document menu */
@@ -1135,6 +1207,113 @@ export default removeUndefinedLocaleResources({
1135
1207
  /* Relative time, just now */
1136
1208
  'relative-time.just-now': 'rétt í þessu',
1137
1209
 
1210
+ /** Action message to add document to new release */
1211
+ 'release.action.add-to-new-release': 'Bæta við útgáfu',
1212
+ /** Action message to add document to release */
1213
+ 'release.action.add-to-release': 'Bæta við {{title}}',
1214
+ /** Action message for when document is already in release */
1215
+ 'release.action.already-in-release': 'Nú þegar í útgáfu {{title}}',
1216
+ /** Action message for when you click to view all versions you can copy the current document to */
1217
+ 'release.action.copy-to': 'Afrita útgáfu til',
1218
+ /** Action message for creating new releases */
1219
+ 'release.action.create-new': 'Ný útgáfa',
1220
+ /** Action message for when document is already in release */
1221
+ 'release.action.discard-version': 'Hafna útgáfu',
1222
+ /** Description for toast when version discarding failed */
1223
+ 'release.action.discard-version.failure': 'Mistókst að hafna útgáfu',
1224
+ /** Action message for when a new release is created off an existing version, draft or published document */
1225
+ 'release.action.new-release': 'Ný útgáfa',
1226
+ /** Tooltip message for not having permissions for creating new releases */
1227
+ 'release.action.permission.error': 'Þú hefur ekki leyfi til að framkvæma þessa aðgerð',
1228
+ /** Error message for when a version is set to be unpublished */
1229
+ 'release.action.unpublish-version.failure': 'Mistókst að setja útgáfu til að vera óbirt í útgáfu',
1230
+ /** Action message for when a version is set to be unpublished successfully */
1231
+ 'release.action.unpublish-version.success':
1232
+ 'Tókst með góðum árangri að setja <strong>{{title}}</strong> til að vera óbirt í útgáfu',
1233
+ /** Action message for when the view release is pressed */
1234
+ 'release.action.view-release': 'Skoða útgáfu',
1235
+ /** Label for banner when release is scheduled */
1236
+ 'release.banner.scheduled-for-publishing-on': 'Áætlað til birtingar á {{date}}',
1237
+ /** Label for Draft chip in document header */
1238
+ 'release.chip.draft': 'Drög',
1239
+ /** Label for Draft chip in global header */
1240
+ 'release.chip.global.drafts': 'Drög',
1241
+ /** Label for Published chip in document header */
1242
+ 'release.chip.published': 'Birt',
1243
+ /** Label for tooltip in chip when document is in an archived release */
1244
+ 'release.chip.tooltip.archived': undefined, // 'This release is archived and cannot be edited.'
1245
+ /** Label for tooltip in chip with the created date */
1246
+ 'release.chip.tooltip.created-date': 'Búið til {{date}}',
1247
+ /** Label for tooltip in draft chip when it's a live edit document */
1248
+ 'release.chip.tooltip.draft-disabled.live-edit':
1249
+ 'Þetta skjal er í beinni ritstillingu, drög eru óvirk',
1250
+ /** Label for tooltip in chip with the lasted edited date */
1251
+ 'release.chip.tooltip.edited-date': 'Breytt {{date}}',
1252
+ /** Label for tooltip in chip when document is intended for a future release that hasn't been scheduled */
1253
+ 'release.chip.tooltip.intended-for-date': 'Ætlað fyrir {{date}}',
1254
+ /** Label for tooltip in chip when there is no recent draft edits */
1255
+ 'release.chip.tooltip.no-edits': 'Engar breytingar',
1256
+ /** Label for tooltip in chip when document isn't published */
1257
+ 'release.chip.tooltip.not-published': 'Óbirt',
1258
+ /** Label for tooltip in chip with the published date */
1259
+ 'release.chip.tooltip.published-date': 'Birt {{date}}',
1260
+ /** Label for tooltip in chip when document is in a release that has been scheduled */
1261
+ 'release.chip.tooltip.scheduled-for-date': 'Áætlað fyrir {{date}}',
1262
+ /** Label for tooltip in scheduled chip without a known date */
1263
+ 'release.chip.tooltip.unknown-date': 'Óþekkt dagsetning',
1264
+ /** Label for tooltip on deleted release */
1265
+ 'release.deleted-tooltip': 'Þessari útgáfu hefur verið eytt',
1266
+ /** Title for copying version to a new release dialog */
1267
+ 'release.dialog.copy-to-release.title': 'Afrita útgáfu í nýja útgáfu',
1268
+ /** Title for action create a release */
1269
+ 'release.dialog.create.confirm': undefined, // 'Create release'
1270
+ /** Title for creating releases dialog */
1271
+ 'release.dialog.create.title': 'Ný útgáfa',
1272
+ /** Label for description in tooltip to explain release types */
1273
+ 'release.dialog.tooltip.description':
1274
+ 'Áætlaður útgáfutími er notaður til að búa til betri forskoðanir og vísbendingar um hvort skjöl rekist á.',
1275
+ /** Label for noting that a release time is not final */
1276
+ 'release.dialog.tooltip.note': 'Þú getur alltaf breytt því síðar.',
1277
+ /** Title for tooltip to explain release time */
1278
+ 'release.dialog.tooltip.title': 'Áætlaður útgáfutími',
1279
+ /** The placeholder text when the release doesn't have a description */
1280
+ 'release.form.placeholder-describe-release': 'Lýstu útgáfunni…',
1281
+ /** Tooltip for button to hide release visibility */
1282
+ 'release.layer.hide': 'Fela útgáfu',
1283
+ /** Label for draft perspective in navbar */
1284
+ 'release.navbar.drafts': 'Drög',
1285
+ /** Label for published releases in navbar */
1286
+ 'release.navbar.published': 'Birt',
1287
+ /** Tooltip for releases navigation in navbar */
1288
+ 'release.navbar.tooltip': 'Útgáfur',
1289
+ /** The placeholder text when the release doesn't have a title */
1290
+ 'release.placeholder-untitled-release': 'Ónefnd útgáfa',
1291
+ /** The toast description that will be shown when the user has a release perspective which is now archived */
1292
+ 'release.toast.archived-release.description': undefined, // 'This release has been unpinned'
1293
+ /** The toast title that will be shown when the user has a release perspective which is now archived */
1294
+ 'release.toast.archived-release.title': "Útgáfunni '{{title}}' hefur verið safnað",
1295
+ /** The toast title that will be shown the creating a release fails */
1296
+ 'release.toast.create-release-error.title': 'Mistókst að búa til útgáfu',
1297
+ /**The toast title that will be shown when the user has a release perspective which is now deleted */
1298
+ 'release.toast.not-found-release.title': "Ekki tókst að finna '{{title}}' útgáfuna",
1299
+ /** The toast description that will be shown when the user has a release perspective which is now published */
1300
+ 'release.toast.published-release.description': undefined, // 'This release has been unpinned'
1301
+ /** The toast title that will be shown when the user has a release perspective which is now deleted */
1302
+ 'release.toast.published-release.title': undefined, // 'The \'{{title}}\' release was published'
1303
+ /** Label for when a version of a document has already been added to the release */
1304
+ 'release.tooltip.already-added': 'Útgáfa af þessu skjali hefur þegar verið bætt við',
1305
+ /** Label for when a release is scheduled / scheduling and a user can't add a document version to it */
1306
+ 'release.tooltip.locked':
1307
+ 'Þessi útgáfa hefur verið áætluð. Aflýstu henni til að bæta við fleiri skjölum.',
1308
+ /** Label for the release type 'as soon as possible' */
1309
+ 'release.type.asap': 'Eins fljótt og auðið er',
1310
+ /** Label for the release type 'at time', meaning it's a release with a scheduled date */
1311
+ 'release.type.scheduled': 'Á ákveðnum tíma',
1312
+ /** Label for the release type 'undecided' */
1313
+ 'release.type.undecided': 'Óákveðið',
1314
+ /** Tooltip for the dropdown to show all versions of document */
1315
+ 'release.version-list.tooltip': 'Sjá allar útgáfur skjalsins',
1316
+
1138
1317
  /** Accessibility label to open search action when the search would go fullscreen (eg on narrower screens) */
1139
1318
  'search.action-open-aria-label': 'Opna leit',
1140
1319
  /** Action label for adding a search filter */
@@ -1590,6 +1769,12 @@ export default removeUndefinedLocaleResources({
1590
1769
  'Sögufærslur skjalsins hafa ekki orðið fyrir áhrifum.',
1591
1770
  /** Title for error when the timeline for the given document can't be loaded */
1592
1771
  'timeline.error.load-document-changes-title': 'Villa kom upp við að sækja breytingar á skjali.',
1772
+ /** Description for error when the timeline for the given document can't be loaded */
1773
+ 'timeline.error.load-document-changes-version-description':
1774
+ 'Virkjaðu atburða API í gegnum Studio stillingarnar til að sjá sögu skjals.',
1775
+ /** Title for error when the timeline for the given version document can't be loaded */
1776
+ 'timeline.error.load-document-changes-version-title':
1777
+ 'Sagan um útgáfur skjala er aðeins aðgengileg í gegnum Events API.',
1593
1778
  /** Error description for when the document doesn't have history */
1594
1779
  'timeline.error.no-document-history-description':
1595
1780
  'Þegar efni skjalsins er breytt munu útgáfur skjalsins birtast í þessum valmynd.',
@@ -1610,6 +1795,8 @@ export default removeUndefinedLocaleResources({
1610
1795
  'timeline.list.aria-label': 'Endurskoðanir skjals',
1611
1796
  /** Label for loading history */
1612
1797
  'timeline.loading-history': 'Hleð sögu…',
1798
+ /* Label for when no previous since events are available*/
1799
+ 'timeline.no-previous-events': 'Engir fyrri atburðir',
1613
1800
  /** Label shown in review changes timeline when a document has been created */
1614
1801
  'timeline.operation.created': 'Búið til',
1615
1802
  /** Label shown in review changes timeline when a document has been created, with a timestamp */
package/src/vision.ts CHANGED
@@ -63,11 +63,21 @@ export default removeUndefinedLocaleResources({
63
63
  * @see {@link https://www.sanity.io/docs/perspectives}
64
64
  */
65
65
  'settings.perspective-label': 'Perspective',
66
+ /** Notification about previewDrafts to drafts rename */
67
+ 'settings.perspective.preview-drafts-renamed-to-drafts.description':
68
+ 'Perspective "<code>previewDrafts</code>" hefur verið endurnefnt í "<code>drafts</code>" og er nú úrelt. Þessi breyting er virk fyrir allar útgáfur með stuðning við perspective (>= v2021-03-25).',
66
69
  /** Call to action to read the docs related to "Perspectives" */
67
70
  'settings.perspectives.action.docs-link': 'Lestu skjölin',
71
+ /** Option for selecting default perspective */
72
+ 'settings.perspectives.default': 'Engin perspective (API sjálfgefið)',
68
73
  /** Description for popover that explains what "Perspectives" are */
69
74
  'settings.perspectives.description':
70
75
  'Perspectives leyfa fyrirspurn þinni að keyra gegn mismunandi "sýnum" af efni í dataset þínu',
76
+ /** Description for upcoming default perspective change */
77
+ 'settings.perspectives.new-default.description':
78
+ 'Sjálfgefið perspective mun breytast úr "<code>raw</code>" í "<code>published</code>" í væntanlegri API útgáfu. Vinsamlegast kynntu þér nánar í skjölun.',
79
+ /** Label for the pinned release perspective */
80
+ 'settings.perspectives.pinned-release-label': 'Fest útgáfa',
71
81
  /** Title for popover that explains what "Perspectives" are */
72
82
  'settings.perspectives.title': 'Perspectives',
73
83
  })