@sanity/locale-is-is 1.1.4 → 1.2.1
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/README.md +0 -5
- package/dist/{_chunks → _chunks-cjs}/comments.cjs +7 -7
- package/dist/_chunks-cjs/comments.cjs.map +1 -0
- package/dist/{_chunks → _chunks-cjs}/structure.cjs +26 -24
- package/dist/_chunks-cjs/structure.cjs.map +1 -0
- package/dist/{_chunks → _chunks-cjs}/studio.cjs +105 -42
- package/dist/_chunks-cjs/studio.cjs.map +1 -0
- package/dist/{_chunks → _chunks-cjs}/tasks.cjs +44 -7
- package/dist/_chunks-cjs/tasks.cjs.map +1 -0
- package/dist/{_chunks → _chunks-cjs}/validation.cjs +3 -3
- package/dist/_chunks-cjs/validation.cjs.map +1 -0
- package/dist/{_chunks → _chunks-cjs}/vision.cjs +5 -1
- package/dist/_chunks-cjs/vision.cjs.map +1 -0
- package/dist/{_chunks → _chunks-es}/comments.js +7 -7
- package/dist/_chunks-es/comments.js.map +1 -0
- package/dist/{_chunks → _chunks-es}/structure.js +26 -24
- package/dist/_chunks-es/structure.js.map +1 -0
- package/dist/{_chunks → _chunks-es}/studio.js +105 -42
- package/dist/_chunks-es/studio.js.map +1 -0
- package/dist/{_chunks → _chunks-es}/tasks.js +44 -7
- package/dist/_chunks-es/tasks.js.map +1 -0
- package/dist/{_chunks → _chunks-es}/validation.js +3 -3
- package/dist/_chunks-es/validation.js.map +1 -0
- package/dist/{_chunks → _chunks-es}/vision.js +5 -1
- package/dist/_chunks-es/vision.js.map +1 -0
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +7 -4
- package/src/comments.ts +8 -7
- package/src/structure.ts +27 -24
- package/src/studio.ts +112 -42
- package/src/tasks.ts +44 -7
- package/src/validation.ts +3 -3
- package/src/vision.ts +5 -1
- package/dist/_chunks/comments.cjs.map +0 -1
- package/dist/_chunks/comments.js.map +0 -1
- package/dist/_chunks/structure.cjs.map +0 -1
- package/dist/_chunks/structure.js.map +0 -1
- package/dist/_chunks/studio.cjs.map +0 -1
- package/dist/_chunks/studio.js.map +0 -1
- package/dist/_chunks/tasks.cjs.map +0 -1
- package/dist/_chunks/tasks.js.map +0 -1
- package/dist/_chunks/validation.cjs.map +0 -1
- package/dist/_chunks/validation.js.map +0 -1
- package/dist/_chunks/vision.cjs.map +0 -1
- package/dist/_chunks/vision.js.map +0 -1
package/src/studio.ts
CHANGED
|
@@ -37,16 +37,16 @@ export default removeUndefinedLocaleResources({
|
|
|
37
37
|
'asset-source.delete-dialog.usage-list.image-preview-alt': 'Forskoðun myndar',
|
|
38
38
|
/** Warning message showing when *named* file can't be deleted because it is in use */
|
|
39
39
|
'asset-source.delete-dialog.usage-list.warning-file-is-in-use_named':
|
|
40
|
-
'{{filename}} er ekki hægt að eyða því að hún er í notkun. Til að eyða þessari skrá verður þú fyrst að fjarlægja
|
|
40
|
+
'{{filename}} er ekki hægt að eyða því að hún er í notkun. Til að eyða þessari skrá verður þú fyrst að fjarlægja alla notkun hennar.',
|
|
41
41
|
/** Warning message showing when *unnamed* file can't be deleted because it is in use */
|
|
42
42
|
'asset-source.delete-dialog.usage-list.warning-file-is-in-use_unnamed':
|
|
43
|
-
'Þessari skrá er ekki hægt að eyða því að hún er í notkun. Til að eyða henni verður þú fyrst að fjarlægja
|
|
43
|
+
'Þessari skrá er ekki hægt að eyða því að hún er í notkun. Til að eyða henni verður þú fyrst að fjarlægja alla notkun hennar.',
|
|
44
44
|
/** Warning message showing when *named* image can't be deleted because it is in use */
|
|
45
45
|
'asset-source.delete-dialog.usage-list.warning-image-is-in-use_named':
|
|
46
|
-
'{{filename}} er ekki hægt að eyða því að hún er í notkun. Til að eyða þessari mynd verður þú fyrst að fjarlægja
|
|
46
|
+
'{{filename}} er ekki hægt að eyða því að hún er í notkun. Til að eyða þessari mynd verður þú fyrst að fjarlægja alla notkun hennar.',
|
|
47
47
|
/** Warning message showing when *unnamed* image can't be deleted because it is in use */
|
|
48
48
|
'asset-source.delete-dialog.usage-list.warning-image-is-in-use_unnamed':
|
|
49
|
-
'Þessari mynd er ekki hægt að eyða því að hún er í notkun. Til að eyða henni verður þú fyrst að fjarlægja
|
|
49
|
+
'Þessari mynd er ekki hægt að eyða því að hún er í notkun. Til að eyða henni verður þú fyrst að fjarlægja alla notkun hennar.',
|
|
50
50
|
/** Text shown when the list of assets only include a specific set of types */
|
|
51
51
|
'asset-source.dialog.accept-message':
|
|
52
52
|
'Aðeins sýndar eignir af samþykktum gerðum: <strong>{{acceptTypes}}</strong>',
|
|
@@ -228,7 +228,7 @@ export default removeUndefinedLocaleResources({
|
|
|
228
228
|
/** Image diff: Text shown if the image failed to be loaded when previewing it */
|
|
229
229
|
'changes.image.error-loading-image': 'Villa við að hlaða mynd',
|
|
230
230
|
/** Image diff: Text shown in tooltip when hovering hotspot that has changed in diff view */
|
|
231
|
-
'changes.image.hotspot-changed': '
|
|
231
|
+
'changes.image.hotspot-changed': 'Brennidepli breytt',
|
|
232
232
|
/** Image diff: Fallback title for the meta info section when there is no original filename to use */
|
|
233
233
|
'changes.image.meta-info-fallback-title': 'Titilllaus',
|
|
234
234
|
/** Image diff: Text shown if no asset has been set for the field (but has metadata changes) */
|
|
@@ -305,6 +305,8 @@ export default removeUndefinedLocaleResources({
|
|
|
305
305
|
'common.loading': 'Hleður',
|
|
306
306
|
|
|
307
307
|
/** --- Configuration issues --- */
|
|
308
|
+
/** Default label text on configuration issues button */
|
|
309
|
+
'configuration-issues.button.label': 'Stillingarvandamál',
|
|
308
310
|
/** Tooltip displayed on configuration issues button */
|
|
309
311
|
'configuration-issues.button.tooltip': 'Fundin stillingarvandamál',
|
|
310
312
|
|
|
@@ -338,27 +340,27 @@ export default removeUndefinedLocaleResources({
|
|
|
338
340
|
'Gildi <code>_key</code> eiginleikans verður að vera einstakt strengur.',
|
|
339
341
|
/** This usually happens when items are created using an API client, and the <code>_key</code> property of each elements has been generated non-uniquely. */
|
|
340
342
|
'form.error.duplicate-keys-alert.details.description':
|
|
341
|
-
'Þetta gerist venjulega þegar atriði eru búin til með API
|
|
343
|
+
'Þetta gerist venjulega þegar atriði eru búin til með API viðskiptavinar, og <code>_key</code> eiginleiki hvers elements hefur verið búið til ekki einstakt.',
|
|
342
344
|
/** Developer info */
|
|
343
345
|
'form.error.duplicate-keys-alert.details.title': 'Upplýsingar fyrir þróunaraðila',
|
|
344
346
|
/** Generate unique keys */
|
|
345
347
|
'form.error.duplicate-keys-alert.generate-button.text': 'Búa til einstaka lykla',
|
|
346
348
|
/** Several items in this list share the same identifier (key). Every item must have an unique identifier. */
|
|
347
349
|
'form.error.duplicate-keys-alert.summary':
|
|
348
|
-
'Mörg atriði í þessum lista deila sama auðkenni (
|
|
350
|
+
'Mörg atriði í þessum lista deila sama auðkenni (lykli). Hvert atriði verður að hafa einstakt auðkenni.',
|
|
349
351
|
/** Non-unique keys */
|
|
350
|
-
'form.error.duplicate-keys-alert.title': 'Ekki
|
|
352
|
+
'form.error.duplicate-keys-alert.title': 'Ekki einstakir lyklar',
|
|
351
353
|
/** Error text shown when a field with a given name cannot be found in the schema or is conditionally hidden but explicitly told to render */
|
|
352
354
|
'form.error.field-not-found':
|
|
353
355
|
'Reitur "{{fieldName}}" fannst ekki meðal meðlima – staðfestu að hann sé skilgreindur í skemanu og að hann hafi ekki verið skilyrðisbundið falinn.',
|
|
354
356
|
/** Add missing keys */
|
|
355
|
-
'form.error.missing-keys-alert.add-button.text': 'Bæta við
|
|
357
|
+
'form.error.missing-keys-alert.add-button.text': 'Bæta við lyklum sem vantar',
|
|
356
358
|
/** The value of the <code>_key</code> property must be a unique string. */
|
|
357
359
|
'form.error.missing-keys-alert.details.additional-description':
|
|
358
|
-
'Gildi <code>_key</code> eiginleikans verður að vera
|
|
360
|
+
'Gildi <code>_key</code> eiginleikans verður að vera einstakur strengur.',
|
|
359
361
|
/** This usually happens when items are created using an API client, and the <code>_key</code> property has not been included. */
|
|
360
362
|
'form.error.missing-keys-alert.details.description':
|
|
361
|
-
'Þetta gerist venjulega þegar atriði eru búin til með API
|
|
363
|
+
'Þetta gerist venjulega þegar atriði eru búin til með API viðskiptavinar, og <code>_key</code> eigninleikinn hefur ekki verið innifalin.',
|
|
362
364
|
/** Developer info */
|
|
363
365
|
'form.error.missing-keys-alert.details.title': 'Upplýsingar fyrir þróunaraðila',
|
|
364
366
|
/** Some items in the list are missing their keys. This must be fixed in order to edit the list. */
|
|
@@ -368,7 +370,7 @@ export default removeUndefinedLocaleResources({
|
|
|
368
370
|
'form.error.missing-keys-alert.title': 'Vantar lykla',
|
|
369
371
|
/** This usually happens when items are created using an API client, or when a custom input component has added invalid data to the list. */
|
|
370
372
|
'form.error.mixed-array-alert.details.description':
|
|
371
|
-
'Þetta gerist venjulega þegar atriði eru búin til með API
|
|
373
|
+
'Þetta gerist venjulega þegar atriði eru búin til með API viðskiptavinar, eða þegar sérsniðinn inntaksþáttur hefur bætt ógildum gögnum við listann.',
|
|
372
374
|
/** Developer info */
|
|
373
375
|
'form.error.mixed-array-alert.details.title': 'Upplýsingar fyrir þróunaraðila',
|
|
374
376
|
/** Remove non-object values */
|
|
@@ -380,16 +382,22 @@ export default removeUndefinedLocaleResources({
|
|
|
380
382
|
'form.error.mixed-array-alert.title': 'Ógild gildi í lista',
|
|
381
383
|
/** Error text shown when form is unable to find an array item at a given indexed path */
|
|
382
384
|
'form.error.no-array-item-at-index':
|
|
383
|
-
'Engin atriði í fylki fundust á
|
|
385
|
+
'Engin atriði í fylki fundust á sæti <code>{{index}}</code> á slóð <code>{{path}}</code>',
|
|
384
386
|
/** Error text shown when form is unable to find an array item at a given keyed path */
|
|
385
387
|
'form.error.no-array-item-at-key':
|
|
386
388
|
'Engin atriði í fylki með `_key` <code>"{{key}}"</code> fundust á slóð <code>{{path}}</code>',
|
|
389
|
+
/** The title above the error call stack output related to the crash */
|
|
390
|
+
'form.error.unhandled-runtime-error.call-stack.title': 'Kalla Stafla:',
|
|
391
|
+
/** The title above the error component stack provided by React's underlying ErrorBoundary component */
|
|
392
|
+
'form.error.unhandled-runtime-error.component-stack.title': 'Íhlutastafla:',
|
|
393
|
+
/** The error message for the unhandled error that crashed the Input component during render */
|
|
394
|
+
'form.error.unhandled-runtime-error.error-message': 'Villa: {{message}}',
|
|
395
|
+
/** The title for the error card rendered inside a field in place of a crashing input */
|
|
396
|
+
'form.error.unhandled-runtime-error.title': 'Ómeðhöndluð Keyrsluvilla',
|
|
387
397
|
/** Form field deprecated label */
|
|
388
398
|
'form.field.deprecated-label': 'úrelt',
|
|
389
399
|
/** Fallback title shown above field if it has no defined title */
|
|
390
400
|
'form.field.untitled-field-label': 'Án titils',
|
|
391
|
-
/** Fallback title shown above fieldset if it has no defined title */
|
|
392
|
-
'form.field.untitled-fieldset-label': 'Án titils',
|
|
393
401
|
/** Accessibility label for the icon that indicates the field has a validation error */
|
|
394
402
|
'form.validation.has-error-aria-label': 'Inniheldur villu',
|
|
395
403
|
/** Accessibility label for the icon that indicates the field has validation information */
|
|
@@ -439,7 +447,7 @@ export default removeUndefinedLocaleResources({
|
|
|
439
447
|
'input.files.common.upload-progress': 'Hleður upp <FileName/>',
|
|
440
448
|
/** The referenced document cannot be opened, because the URL failed to be resolved */
|
|
441
449
|
'input.reference.document-cannot-be-opened.failed-to-resolve-url':
|
|
442
|
-
'Ekki er hægt að opna þetta skjal (ekki er hægt að leysa úr
|
|
450
|
+
'Ekki er hægt að opna þetta skjal (ekki er hægt að leysa úr hlekk til Studio)',
|
|
443
451
|
|
|
444
452
|
/** Label for adding item after a specific array item */
|
|
445
453
|
'inputs.array.action.add-after': 'Bæta við atriði á eftir',
|
|
@@ -478,22 +486,34 @@ export default removeUndefinedLocaleResources({
|
|
|
478
486
|
'Eftirfarandi atriði er ekki hægt að hlaða upp þar sem engin þekkt umbreyting er frá efni til atriða í fylki:',
|
|
479
487
|
/** Error description for the array item tooltip that explains that the current type item is not valid for the list */
|
|
480
488
|
'inputs.array.error.current-schema-not-declare-description':
|
|
481
|
-
'Núverandi skema lýsir ekki
|
|
489
|
+
'Núverandi skema lýsir ekki atriðum af gerð <code>{{typeName}}</code> sem eru gild fyrir þennan lista. Þetta gæti þýtt að gerðin hefur verið fjarlægð sem gilt atriði, eða að einhver annar hefur bætt henni við sitt eigið staðbundið skema sem er ekki enn útgefið.',
|
|
482
490
|
/** Error description to show how the item is being represented in the json format */
|
|
483
491
|
'inputs.array.error.json-representation-description': 'JSON framsetning á þessu atriði:',
|
|
484
492
|
/** Error description for the array item tooltip that explains what the error means with more context */
|
|
485
493
|
'inputs.array.error.type-is-incompatible-prompt':
|
|
486
|
-
'Atriði af gerð <code>{{typeName}}</code>
|
|
494
|
+
'Atriði af gerð <code>{{typeName}}</code> eru ekki gild fyrir þennan lista',
|
|
487
495
|
/** Error title for when an item type within an array input is incompatible, used in the tooltip */
|
|
488
496
|
'inputs.array.error.type-is-incompatible-title': 'Af hverju er þetta að gerast?',
|
|
489
497
|
/** Error label for unexpected errors in the Array Input */
|
|
490
498
|
'inputs.array.error.unexpected-error': 'Óvænt villa: {{error}}',
|
|
499
|
+
/** Label for the array insert menu all items filter */
|
|
500
|
+
'inputs.array.insert-menu.filter.all-items': 'Allt',
|
|
501
|
+
/** Label for when the array insert menu search shows no items */
|
|
502
|
+
'inputs.array.insert-menu.search.no-results': 'Engar niðurstöður fundust',
|
|
503
|
+
/** Placeholder for the array insert menu search field */
|
|
504
|
+
'inputs.array.insert-menu.search.placeholder': 'Leita',
|
|
505
|
+
/** Tooltip for the array insert menu grid view toggle */
|
|
506
|
+
'inputs.array.insert-menu.toggle-grid-view.tooltip': 'Skipta yfir í töflusýn',
|
|
507
|
+
/** Tooltip for the array insert menu list view toggle */
|
|
508
|
+
'inputs.array.insert-menu.toggle-list-view.tooltip': 'Skipta yfir í listasýn',
|
|
491
509
|
/** Label for when the array input doesn't have any items */
|
|
492
510
|
'inputs.array.no-items-label': 'Engin atriði',
|
|
493
511
|
/** Label for read only array fields */
|
|
494
512
|
'inputs.array.read-only-label': 'Þetta svæði er aðeins til lesturs',
|
|
495
513
|
/** Label for when the array input is resolving the initial value for the item */
|
|
496
514
|
'inputs.array.resolving-initial-value': 'Leysir úr upphaflegu gildi…',
|
|
515
|
+
/** Tooltip content when boolean input is disabled */
|
|
516
|
+
'inputs.boolean.disabled': 'Óvirkt',
|
|
497
517
|
/** Placeholder value for datetime input */
|
|
498
518
|
'inputs.datetime.placeholder': 't.d. {{example}}',
|
|
499
519
|
/** Acessibility label for button to open file options menu */
|
|
@@ -569,7 +589,7 @@ export default removeUndefinedLocaleResources({
|
|
|
569
589
|
'inputs.files.common.stale-upload-warning.clear': 'Hreinsa upphleðslu',
|
|
570
590
|
/** An upload has made no progress for at least `{{staleThresholdMinutes}}` minutes and likely got interrupted. You can safely clear the incomplete upload and try uploading again. */
|
|
571
591
|
'inputs.files.common.stale-upload-warning.description':
|
|
572
|
-
'Upphleðsla hefur ekki miðað neinum framförum í að minnsta kosti {{staleThresholdMinutes}} mínútur og líklega var truflun. Þú getur
|
|
592
|
+
'Upphleðsla hefur ekki miðað neinum framförum í að minnsta kosti {{staleThresholdMinutes}} mínútur og líklega var truflun. Þú getur hreinsað ókláraða upphleðslu og reynt aftur að hlaða upp.',
|
|
573
593
|
/** Incomplete upload */
|
|
574
594
|
'inputs.files.common.stale-upload-warning.title': 'Ókláruð upphleðsla',
|
|
575
595
|
/** Tooltip text for action to crop image */
|
|
@@ -616,7 +636,7 @@ export default removeUndefinedLocaleResources({
|
|
|
616
636
|
'inputs.invalid-value.current-type': 'Núverandi gildi (<code>{{actualType}}</code>)',
|
|
617
637
|
/** The property value is stored as a value type that does not match the expected type. */
|
|
618
638
|
'inputs.invalid-value.description':
|
|
619
|
-
'Eignagildið er geymt sem gildistegund sem passar ekki við
|
|
639
|
+
'Eignagildið er geymt sem gildistegund sem passar ekki við tegund sem var búist við.',
|
|
620
640
|
/** The value of this property must be of type <code>`{{validType}}`</code> according to the schema. */
|
|
621
641
|
'inputs.invalid-value.details.description':
|
|
622
642
|
'Gildi þessarar eignar verður að vera af tegund <code>{{validType}}</code> samkvæmt skemanu.',
|
|
@@ -625,7 +645,7 @@ export default removeUndefinedLocaleResources({
|
|
|
625
645
|
'Aðeins eftirfarandi tegundir eru gildar hér samkvæmt skema:',
|
|
626
646
|
/** Mismatching value types typically occur when the schema has recently been changed. */
|
|
627
647
|
'inputs.invalid-value.details.possible-reason':
|
|
628
|
-
'
|
|
648
|
+
'Misræmdar gildistegundir koma yfirleitt fyrir þegar skema hefur nýlega verið breytt.',
|
|
629
649
|
/** Developer info */
|
|
630
650
|
'inputs.invalid-value.details.title': 'Upplýsingar fyrir þróunaraðila',
|
|
631
651
|
/** -- Invalid Value Input -- */
|
|
@@ -647,9 +667,9 @@ export default removeUndefinedLocaleResources({
|
|
|
647
667
|
'Rekur sig á {{count}} reiti sem eru ekki skilgreindir í skemanu.',
|
|
648
668
|
/** Detailed description of unknown field warning */
|
|
649
669
|
'inputs.object.unknown-fields.warning.details.description_one':
|
|
650
|
-
'Þessi reitur er ekki skilgreindur í skemanu, sem gæti þýtt að
|
|
670
|
+
'Þessi reitur er ekki skilgreindur í skemanu, sem gæti þýtt að reitaskilgreiningin hefur verið fjarlægð eða að einhver annar hefur bætt henni við sitt eigið staðbundið verkefni og hefur ekki enn útflutt breytingar sínar.',
|
|
651
671
|
'inputs.object.unknown-fields.warning.details.description_other':
|
|
652
|
-
'Þessir reitir eru ekki skilgreindir í skema skjalsins, sem gæti þýtt að
|
|
672
|
+
'Þessir reitir eru ekki skilgreindir í skema skjalsins, sem gæti þýtt að reitaskilgreiningin hefur verið fjarlægð eða að einhver annar hefur bætt þeim við sitt eigið staðbundið verkefni og hefur ekki enn útflutt breytingar sínar.',
|
|
653
673
|
/** Developer info */
|
|
654
674
|
'inputs.object.unknown-fields.warning.details.title': 'Upplýsingar fyrir þróunaraðila',
|
|
655
675
|
/** Unknown field found */
|
|
@@ -685,7 +705,7 @@ export default removeUndefinedLocaleResources({
|
|
|
685
705
|
/** Title of the default "link" annotation */
|
|
686
706
|
'inputs.portable-text.annotation.link': 'Hlekkur',
|
|
687
707
|
/**Aria label for the block object */
|
|
688
|
-
'inputs.portable-text.block.aria-label': 'Blokka
|
|
708
|
+
'inputs.portable-text.block.aria-label': 'Blokka hlutu',
|
|
689
709
|
/** Label for action to edit a block item, in the case where it is editable */
|
|
690
710
|
'inputs.portable-text.block.edit': 'Breyta',
|
|
691
711
|
/** Accessibility label for the button that opens the actions menu on blocks */
|
|
@@ -732,7 +752,7 @@ export default removeUndefinedLocaleResources({
|
|
|
732
752
|
'inputs.portable-text.invalid-value.disallowed-type.description':
|
|
733
753
|
'Blokk með lykil <code>{{key}}</code> er af gerð <code>{{typeName}}</code>, sem er ekki leyft samkvæmt skemanum.',
|
|
734
754
|
/** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` contains no children */
|
|
735
|
-
'inputs.portable-text.invalid-value.empty-children.action': 'Settu inn
|
|
755
|
+
'inputs.portable-text.invalid-value.empty-children.action': 'Settu inn tóma textaspönn',
|
|
736
756
|
/** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` contains no children */
|
|
737
757
|
'inputs.portable-text.invalid-value.empty-children.description':
|
|
738
758
|
'Textablokk með lykil <code>{{key}}</code> hefur enga textaspönn.',
|
|
@@ -748,7 +768,7 @@ export default removeUndefinedLocaleResources({
|
|
|
748
768
|
'inputs.portable-text.invalid-value.invalid-span-text.action': 'Settu tómt textagildi',
|
|
749
769
|
/** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` has a span with key `{{childKey}}` that has a missing or invalid `text` property */
|
|
750
770
|
'inputs.portable-text.invalid-value.invalid-span-text.description':
|
|
751
|
-
'Spönn með lykil {{childKey}} í blokk með lykil <code>{{key}}</code> hefur
|
|
771
|
+
'Spönn með lykil {{childKey}} í blokk með lykil <code>{{key}}</code> hefur tóma eða ógilda <code>text</code> eign.',
|
|
752
772
|
/** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` is missing a `_type` property, but seems to be a block of type `{{expectedTypeName}}` */
|
|
753
773
|
'inputs.portable-text.invalid-value.missing-block-type.action':
|
|
754
774
|
'Nota gerð <code>{{expectedTypeName}}</code>',
|
|
@@ -759,7 +779,7 @@ export default removeUndefinedLocaleResources({
|
|
|
759
779
|
'inputs.portable-text.invalid-value.missing-child-key.action': 'Úthluta handahófskenndum lykli',
|
|
760
780
|
/** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` has a child at `{{index}}` which is missing `_key` property */
|
|
761
781
|
'inputs.portable-text.invalid-value.missing-child-key.description':
|
|
762
|
-
'Barn á
|
|
782
|
+
'Barn á sæti <code>{{index}}</code> í blokk með lykil <code>{{key}}</code> vantar <code>_key</code> eign.',
|
|
763
783
|
/** Action presented when the Portable Text field value is invalid, when block with key `{{key}}` has a child with key `{{childKey}}` which is missing a `_type` property */
|
|
764
784
|
'inputs.portable-text.invalid-value.missing-child-type.action': 'Fjarlægðu hlutinn',
|
|
765
785
|
/** Text explaining that the Portable Text field value is invalid, when block with key `{{key}}` has a child with key `{{childKey}}` which is missing a `_type` property */
|
|
@@ -769,17 +789,17 @@ export default removeUndefinedLocaleResources({
|
|
|
769
789
|
'inputs.portable-text.invalid-value.missing-key.action': 'Úthluta handahófskenndum lykli',
|
|
770
790
|
/** Text explaining that the Portable Text field value is invalid, when child at `{{index}}` is missing the required `_key` property */
|
|
771
791
|
'inputs.portable-text.invalid-value.missing-key.description':
|
|
772
|
-
'Blokk á
|
|
792
|
+
'Blokk á sæti <code>{{index}}</code> vantar nauðsynlega <code>_key</code> eign.',
|
|
773
793
|
/** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` has a missing or invalid `children` property */
|
|
774
794
|
'inputs.portable-text.invalid-value.missing-or-invalid-children.action': 'Fjarlægðu blokkina',
|
|
775
795
|
/** Text explaining that the Portable Text field value is invalid, when child with key `{{key}}` has a missing or invalid `children` property */
|
|
776
796
|
'inputs.portable-text.invalid-value.missing-or-invalid-children.description':
|
|
777
|
-
'Textablokk með lykil <code>{{key}}</code> hefur ógilda eða
|
|
797
|
+
'Textablokk með lykil <code>{{key}}</code> hefur ógilda eða tóma `children` eign.',
|
|
778
798
|
/** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` has a missing or invalid `markDefs` property */
|
|
779
799
|
'inputs.portable-text.invalid-value.missing-or-invalid-markdefs.action': 'Bæta við eign',
|
|
780
800
|
/** Text explaining that the Portable Text field value is invalid, when child with key `{{key}}` has a missing or invalid `markDefs` property */
|
|
781
801
|
'inputs.portable-text.invalid-value.missing-or-invalid-markdefs.description':
|
|
782
|
-
'Textablokk með lykil <code>{{key}}</code> hefur ógilda eða
|
|
802
|
+
'Textablokk með lykil <code>{{key}}</code> hefur ógilda eða tóma `markDefs` eign.',
|
|
783
803
|
/** Action presented when the Portable Text field value is invalid, when child with key `{{key}}` is missing a `_type` property */
|
|
784
804
|
'inputs.portable-text.invalid-value.missing-type.action': 'Fjarlægðu blokkina',
|
|
785
805
|
/** Text explaining that the Portable Text field value is invalid, when child with key `{{key}}` is missing a `_type` property */
|
|
@@ -870,7 +890,7 @@ export default removeUndefinedLocaleResources({
|
|
|
870
890
|
'Leit skilaði gerð sem er ekki gild fyrir þessa tilvísun: "{{returnedType}}"',
|
|
871
891
|
/** Error description for when the document referenced is not one of the types declared as allowed target types in schema */
|
|
872
892
|
'inputs.reference.error.invalid-type-description':
|
|
873
|
-
'Tilvísað skjal (<code>{{documentId}}</code>) er af gerð <code>{{actualType}}</code>. Samkvæmt skemanu geta
|
|
893
|
+
'Tilvísað skjal (<code>{{documentId}}</code>) er af gerð <code>{{actualType}}</code>. Samkvæmt skemanu geta tilvísuð skjöl aðeins verið af gerð <AllowedTypes />.',
|
|
874
894
|
/** Error title for when the document referenced is not one of the types declared as allowed target types in schema */
|
|
875
895
|
'inputs.reference.error.invalid-type-title': 'Skjal af ógildri gerð',
|
|
876
896
|
/** Error description for when the user does not have permissions to read the referenced document */
|
|
@@ -904,7 +924,7 @@ export default removeUndefinedLocaleResources({
|
|
|
904
924
|
/** Label for button that triggers a retry attempt for reference metadata */
|
|
905
925
|
'inputs.reference.metadata-error.retry-button-label': 'Reyna aftur',
|
|
906
926
|
/** Title for alert shown when reference metadata fails to be loaded */
|
|
907
|
-
'inputs.reference.metadata-error.title': 'Ekki hægt að hlaða inn
|
|
927
|
+
'inputs.reference.metadata-error.title': 'Ekki hægt að hlaða inn tilvísunarmetagögnum',
|
|
908
928
|
/** Message shown when no documents were found that matched the given search string */
|
|
909
929
|
'inputs.reference.no-results-for-query':
|
|
910
930
|
'Engar niðurstöður fyrir <strong>“{{searchTerm}}”</strong>',
|
|
@@ -936,13 +956,13 @@ export default removeUndefinedLocaleResources({
|
|
|
936
956
|
'inputs.reference.search-placeholder': 'Sláðu inn til að leita',
|
|
937
957
|
/** Explanation of the consequences of leaving the reference as strong instead of weak */
|
|
938
958
|
'inputs.reference.strength-mismatch.is-strong-consquences':
|
|
939
|
-
'Það verður ekki hægt að eyða tilvísunarskjalinn án þess að fjarlægja þessa tilvísun fyrst eða breyta henni í veika.',
|
|
959
|
+
'Það verður ekki hægt að eyða tilvísunarskjalinn án þess að fjarlægja þessa tilvísun fyrst eða breyta henni í veika tilvísun.',
|
|
940
960
|
/** Description for alert shown when a reference is supposed to be weak, but the actual value is strong */
|
|
941
961
|
'inputs.reference.strength-mismatch.is-strong-description':
|
|
942
962
|
'Þessi tilvísun er <em>sterk</em>, en samkvæmt núverandi skema ætti hún að vera <em>veik</em>.',
|
|
943
963
|
/** Explanation of the consequences of leaving the reference as weak instead of strong */
|
|
944
964
|
'inputs.reference.strength-mismatch.is-weak-consquences':
|
|
945
|
-
'Þetta gerir það mögulegt að eyða
|
|
965
|
+
'Þetta gerir það mögulegt að eyða tilvísunarskjalinu án þess að eyða þessari tilvísun fyrst, sem skilur eftir svið sem vísar í ótilvíst skjal.',
|
|
946
966
|
/** Description for alert shown when a reference is supposed to be strong, but the actual value is weak */
|
|
947
967
|
'inputs.reference.strength-mismatch.is-weak-description':
|
|
948
968
|
'Þessi tilvísun er <em>veik</em>, en samkvæmt núverandi skema ætti hún að vera <em>sterk</em>.',
|
|
@@ -1000,12 +1020,21 @@ export default removeUndefinedLocaleResources({
|
|
|
1000
1020
|
/** The explanation when unable to delete a particular document */
|
|
1001
1021
|
'insufficient-permissions-message.not-authorized-explanation_delete-document':
|
|
1002
1022
|
'Þú hefur ekki heimild til að eyða þessu skjali.',
|
|
1023
|
+
/** The explanation when unable to delete a schedule on scheduled publishing */
|
|
1024
|
+
'insufficient-permissions-message.not-authorized-explanation_delete-schedules':
|
|
1025
|
+
'Þú hefur ekki heimild til að eyða áætlunum.',
|
|
1003
1026
|
/** The explanation when unable to discard changes in a particular document */
|
|
1004
1027
|
'insufficient-permissions-message.not-authorized-explanation_discard-changes':
|
|
1005
1028
|
'Þú hefur ekki heimild til að henda breytingum í þessu skjali.',
|
|
1006
1029
|
/** The explanation when unable to duplicate a particular document */
|
|
1007
1030
|
'insufficient-permissions-message.not-authorized-explanation_duplicate-document':
|
|
1008
1031
|
'Þú hefur ekki heimild til að tvöfalda þetta skjal.',
|
|
1032
|
+
/** The explanation when unable to edit a schedule on scheduled publishing */
|
|
1033
|
+
'insufficient-permissions-message.not-authorized-explanation_edit-schedules':
|
|
1034
|
+
'Þú hefur ekki heimild til að breyta áætlunum.',
|
|
1035
|
+
/** The explanation when unable to execute a schedule on scheduled publishing */
|
|
1036
|
+
'insufficient-permissions-message.not-authorized-explanation_execute-schedules':
|
|
1037
|
+
'Þú hefur ekki heimild til að framkvæma áætlanir.',
|
|
1009
1038
|
/** The explanation when unable to publish a particular document */
|
|
1010
1039
|
'insufficient-permissions-message.not-authorized-explanation_publish-document':
|
|
1011
1040
|
'Þú hefur ekki heimild til að birta þetta skjal.',
|
|
@@ -1047,6 +1076,14 @@ export default removeUndefinedLocaleResources({
|
|
|
1047
1076
|
/** Title for "Create new document" dialog */
|
|
1048
1077
|
'new-document.title': 'Búa til nýtt skjal',
|
|
1049
1078
|
|
|
1079
|
+
/** More detailed alert text letting user know they have an out-of-date version and should reload */
|
|
1080
|
+
'package-version.new-package-available.description':
|
|
1081
|
+
'Endurhlaðið síðuna til að nota nýju útgáfuna.',
|
|
1082
|
+
/** Label for button that will make the browser reload when users' studio version is out-of-date */
|
|
1083
|
+
'package-version.new-package-available.reload-button': 'Endurhlaða',
|
|
1084
|
+
/** Title of the alert for studio users when packages in their studio are out-of-date */
|
|
1085
|
+
'package-version.new-package-available.title': 'Sanity Studio var uppfært',
|
|
1086
|
+
|
|
1050
1087
|
/** Label for action to manage members of the current studio project */
|
|
1051
1088
|
'presence.action.manage-members': 'Stjórna meðlimum',
|
|
1052
1089
|
/** Accessibility label for presence menu button */
|
|
@@ -1134,7 +1171,7 @@ export default removeUndefinedLocaleResources({
|
|
|
1134
1171
|
'search.error.display-filter-title': 'Villa kom upp við að sýna þennan síu.',
|
|
1135
1172
|
/** Description for error when no valid asset source is found, describes that you should check the the current studio config */
|
|
1136
1173
|
'search.error.no-valid-asset-source-check-config-description':
|
|
1137
|
-
'Vinsamlegast vertu viss um að það sé virkt í stillingarskrá stúdíóinu þínu.',
|
|
1174
|
+
'Vinsamlegast vertu viss um að það sé virkt í stillingarskrá í stúdíóinu þínu.',
|
|
1138
1175
|
/** Description for error when no valid asset source is found, describes that only the default asset is supported */
|
|
1139
1176
|
'search.error.no-valid-asset-source-only-default-description':
|
|
1140
1177
|
'Aðeins er stutt við sjálfgefna eignauppsprettu í augnablikinu.',
|
|
@@ -1150,7 +1187,7 @@ export default removeUndefinedLocaleResources({
|
|
|
1150
1187
|
* If one or more document type has been chosen as filter, this label is replaced with a group of
|
|
1151
1188
|
* fields per selected document type
|
|
1152
1189
|
*/
|
|
1153
|
-
'search.filter-all-fields-header': '
|
|
1190
|
+
'search.filter-all-fields-header': 'Öll svið',
|
|
1154
1191
|
/** Label for the action of changing from one file to a different file in asset search filter */
|
|
1155
1192
|
'search.filter-asset-change_file': 'Breyta skrá',
|
|
1156
1193
|
/** Label for the action of changing from one image to a different image in asset search filter */
|
|
@@ -1506,24 +1543,38 @@ export default removeUndefinedLocaleResources({
|
|
|
1506
1543
|
/** Accessibility label for the search results section, shown when the user has typed valid terms */
|
|
1507
1544
|
'search.search-results-aria-label': 'Leitarniðurstöður',
|
|
1508
1545
|
|
|
1546
|
+
/** Label for the edit columns button to change field visibility in sheet list */
|
|
1547
|
+
'sheet-list.edit-columns': 'Breyta dálkum',
|
|
1548
|
+
/** Label for the header menu option to hide a field from the sheet list */
|
|
1549
|
+
'sheet-list.hide-field': 'Fjarlægja úr töflu',
|
|
1550
|
+
/** Label for reset column visibilities button */
|
|
1551
|
+
'sheet-list.reset-columns': 'Endurstilla dálka',
|
|
1552
|
+
/** Title for the edit columns menu */
|
|
1553
|
+
'sheet-list.select-fields': 'Veldu allt að 5 sviðstegundir',
|
|
1554
|
+
|
|
1509
1555
|
/** Accessibility label for the navbar status button */
|
|
1510
1556
|
'status-button.aria-label': 'Stillingarstaða',
|
|
1511
1557
|
|
|
1512
1558
|
/** Description for error when the timeline for the given document can't be loaded */
|
|
1513
1559
|
'timeline.error.load-document-changes-description':
|
|
1514
|
-
'Sögufærslur skjalsins hafa ekki
|
|
1560
|
+
'Sögufærslur skjalsins hafa ekki orðið fyrir áhrifum.',
|
|
1515
1561
|
/** Title for error when the timeline for the given document can't be loaded */
|
|
1516
1562
|
'timeline.error.load-document-changes-title': 'Villa kom upp við að sækja breytingar á skjali.',
|
|
1517
1563
|
/** Error description for when the document doesn't have history */
|
|
1518
1564
|
'timeline.error.no-document-history-description':
|
|
1519
|
-
'Þegar
|
|
1565
|
+
'Þegar efni skjalsins er breytt munu útgáfur skjalsins birtast í þessum valmynd.',
|
|
1520
1566
|
/** Error title for when the document doesn't have history */
|
|
1521
1567
|
'timeline.error.no-document-history-title': 'Engin skjalasaga',
|
|
1522
1568
|
/** Error prompt when revision cannot be loaded */
|
|
1523
1569
|
'timeline.error.unable-to-load-revision': 'Ekki hægt að hlaða endurskoðun',
|
|
1524
1570
|
/** Label for when the timeline item is the latest in the history */
|
|
1525
1571
|
'timeline.latest': 'Nýjasta',
|
|
1526
|
-
/** Label for latest
|
|
1572
|
+
/** Label for latest revision for timeline menu dropdown */
|
|
1573
|
+
'timeline.latest-revision': 'Nýjasta endurskoðun',
|
|
1574
|
+
/**
|
|
1575
|
+
* Label for latest revision for timeline menu dropdown
|
|
1576
|
+
* @deprecated as of `v3.47.0` `timeline.latest-revision` should be used instead. Note: _usage_ of this key is deprecated, but Studios on `< v3.47.0` still require this key to be _defined_
|
|
1577
|
+
* */
|
|
1527
1578
|
'timeline.latest-version': 'Nýjasta útgáfa',
|
|
1528
1579
|
/** The aria-label for the list of revisions in the timeline */
|
|
1529
1580
|
'timeline.list.aria-label': 'Endurskoðanir skjals',
|
|
@@ -1542,9 +1593,9 @@ export default removeUndefinedLocaleResources({
|
|
|
1542
1593
|
/** Label shown in review changes timeline when a document has been deleted, with a timestamp */
|
|
1543
1594
|
'timeline.operation.deleted_timestamp': 'Eytt: {{timestamp, datetime}}',
|
|
1544
1595
|
/** Label shown in review changes timeline when a draft has been discarded */
|
|
1545
|
-
'timeline.operation.draft-discarded': '
|
|
1596
|
+
'timeline.operation.draft-discarded': 'Drögum hent',
|
|
1546
1597
|
/** Label shown in review changes timeline when a draft has been discarded, with a timestamp */
|
|
1547
|
-
'timeline.operation.draft-discarded_timestamp': '
|
|
1598
|
+
'timeline.operation.draft-discarded_timestamp': 'Drögum hent: {{timestamp, datetime}}',
|
|
1548
1599
|
/** Label shown in review changes timeline when a draft has been edited */
|
|
1549
1600
|
'timeline.operation.edited-draft': 'Breytt',
|
|
1550
1601
|
/** Label shown in review changes timeline when a draft has been edited, with a timestamp */
|
|
@@ -1572,6 +1623,25 @@ export default removeUndefinedLocaleResources({
|
|
|
1572
1623
|
/**Aria label for the action buttons in the PTE toolbar */
|
|
1573
1624
|
'toolbar.portable-text.action-button-aria-label': '{{action}}',
|
|
1574
1625
|
|
|
1626
|
+
/** Accesibility label for the breadcrumb menu */
|
|
1627
|
+
'tree-editing-dialog.breadcrumbs.menu': 'Valmynd brauðmola',
|
|
1628
|
+
/** Title placeholder for search input in array of objects */
|
|
1629
|
+
'tree-editing-dialog.search-placeholder': 'Leita',
|
|
1630
|
+
/** Menu aria label for the search menu */
|
|
1631
|
+
'tree-editing-dialog.search.menu-label': 'Leitarmatseðill',
|
|
1632
|
+
/** Title label for when no search results are found on the tree of objects */
|
|
1633
|
+
'tree-editing-dialog.search.no-results-title': 'Engar niðurstöður fundust',
|
|
1634
|
+
/** Label to close the sidebar */
|
|
1635
|
+
'tree-editing-dialog.sidebar.action.close': 'Loka hliðarstiku',
|
|
1636
|
+
/** Collapse label the menu item in the sidebar */
|
|
1637
|
+
'tree-editing-dialog.sidebar.action.collapse': 'Fella saman',
|
|
1638
|
+
/** Label to close the dialog */
|
|
1639
|
+
'tree-editing-dialog.sidebar.action.done': 'Lokið',
|
|
1640
|
+
/** Exapnd label the menu item in the sidebar */
|
|
1641
|
+
'tree-editing-dialog.sidebar.action.expand': 'Útvíkka',
|
|
1642
|
+
/** Label to open the sidebar */
|
|
1643
|
+
'tree-editing-dialog.sidebar.action.open': 'Opna hliðarstiku',
|
|
1644
|
+
|
|
1575
1645
|
/** Label for button showing the free trial days left */
|
|
1576
1646
|
'user-menu.action.free-trial_one': '{{count}} dagur eftir af prufutíma',
|
|
1577
1647
|
'user-menu.action.free-trial_other': '{{count}} dagar eftir af prufutíma',
|
|
@@ -1587,7 +1657,7 @@ export default removeUndefinedLocaleResources({
|
|
|
1587
1657
|
'user-menu.action.manage-project-aria-label': 'Stjórna verkefni',
|
|
1588
1658
|
/** Tooltip helper text when portable text annotation is disabled for empty block*/
|
|
1589
1659
|
'user-menu.action.portable-text.annotation-disabled_empty-block':
|
|
1590
|
-
'Get ekki beitt {{name}} á
|
|
1660
|
+
'Get ekki beitt {{name}} á tóma blokk',
|
|
1591
1661
|
/** Tooltip helper text when portable text annotation is disabled for multiple blocks */
|
|
1592
1662
|
'user-menu.action.portable-text.annotation-disabled_multiple-blocks':
|
|
1593
1663
|
'Get ekki beitt {{name}} á marga blokka',
|
package/src/tasks.ts
CHANGED
|
@@ -14,6 +14,8 @@ export default removeUndefinedLocaleResources({
|
|
|
14
14
|
'buttons.draft.text': 'Drög',
|
|
15
15
|
/** The label for the button to create a new task */
|
|
16
16
|
'buttons.new.text': 'Nýtt verkefni',
|
|
17
|
+
/** The text for tooltip in the create a new task button when mode is upsell */
|
|
18
|
+
'buttons.new.upsell-tooltip': 'Uppfærðu til að búa til verkefni',
|
|
17
19
|
/** The label for the button that will navigate to the next task */
|
|
18
20
|
'buttons.next.tooltip': 'Fara á næsta verkefni',
|
|
19
21
|
/** The label for the button that will previous to the next task */
|
|
@@ -21,8 +23,6 @@ export default removeUndefinedLocaleResources({
|
|
|
21
23
|
|
|
22
24
|
/** Text for the remove task dialog asking for confirmation of deletion */
|
|
23
25
|
'dialog.remove-task.body': 'Ertu viss um að þú viljir eyða þessu verkefni?',
|
|
24
|
-
/** Text for the remove task dialog clarifying that deletion is permanent */
|
|
25
|
-
'dialog.remove-task.body2': 'Einu sinni eytt, þá er ekki hægt að endurheimta það.',
|
|
26
26
|
/** The label for the cancel button on the remove task dialog */
|
|
27
27
|
'dialog.remove-task.buttons.cancel.text': 'Hætta við',
|
|
28
28
|
/** The label for the confirmation button on the remove task dialog */
|
|
@@ -39,45 +39,76 @@ export default removeUndefinedLocaleResources({
|
|
|
39
39
|
/** The label used in the button in the footer action in a document with multiple tasks */
|
|
40
40
|
'document.footer.open-tasks.text_other': '{{count}} opin verkefni',
|
|
41
41
|
|
|
42
|
+
/** The heading in the tasks sidebar, in the assigned tab, when the user hasn't been assigned to any task*/
|
|
42
43
|
'empty-state.list.assigned.heading': 'Þér hefur ekki verið úthlutað neinum verkefnum',
|
|
44
|
+
/** The text in the tasks sidebar, in the assigned tab, when the user hasn't been assigned to any task*/
|
|
43
45
|
'empty-state.list.assigned.text': 'Þegar þér hefur verið úthlutað verkefnum munu þau birtast hér',
|
|
46
|
+
/** The text in the tasks sidebar button any of the empty states is rendered*/
|
|
44
47
|
'empty-state.list.create-new': 'Búa til nýtt verkefni',
|
|
48
|
+
/** The heading in the tasks sidebar, in the document tab, when the document doesn't have any task*/
|
|
45
49
|
'empty-state.list.document.heading': 'Þetta skjal hefur engin verkefni ennþá',
|
|
50
|
+
/** The text in the tasks sidebar, in the document tab, when the document doesn't have any task*/
|
|
46
51
|
'empty-state.list.document.text': 'Þegar skjal hefur tengd verkefni, munu þau birtast hér.',
|
|
52
|
+
/** The heading in the tasks sidebar, when viewing the document tab, but there is not an active document*/
|
|
53
|
+
'empty-state.list.no-active-document.heading': 'Opnaðu skjal til að sjá verkefni þess',
|
|
54
|
+
/** The text in the tasks sidebar, when viewing the document tab, but there is not an active document*/
|
|
55
|
+
'empty-state.list.no-active-document.text': 'Verkefni á virka skjalinu þínu munu birtast hér.',
|
|
56
|
+
/** The heading in the tasks sidebar, in the subscriber tab, when the user is not subscribed to any task*/
|
|
47
57
|
'empty-state.list.subscribed.heading': 'Þú hefur ekki skráð þig á nein verkefni',
|
|
58
|
+
/** The text in the tasks sidebar, in the subscriber tab, when the user is not subscribed to any task*/
|
|
48
59
|
'empty-state.list.subscribed.text':
|
|
49
60
|
'Þegar þú býrð til, breytir eða skrifar athugasemd við verkefni munt þú vera sjálfkrafa skráð(ur)',
|
|
50
|
-
|
|
61
|
+
/** The heading in the tasks sidebar, in the assigned tab, under the closed details, when it's empty.*/
|
|
62
|
+
'empty-state.status.list.closed.assigned.heading': 'Engin kláruð verkefni',
|
|
63
|
+
/** The text in the tasks sidebar, in the assigned tab, under the closed details, when it's empty.*/
|
|
51
64
|
'empty-state.status.list.closed.assigned.text':
|
|
52
|
-
'Verkefni sem þú hefur merkt sem
|
|
53
|
-
|
|
54
|
-
'empty-state.status.list.closed.
|
|
65
|
+
'Verkefni sem þú hefur merkt sem klárað munu birtast hér',
|
|
66
|
+
/** The heading in the tasks sidebar, in the document tab, under the closed details, when it's empty.*/
|
|
67
|
+
'empty-state.status.list.closed.document.heading': 'Engin kláruð verkefni',
|
|
68
|
+
/** The heading in the tasks sidebar, in the subscribed tab, under the closed details, when it's empty.*/
|
|
69
|
+
'empty-state.status.list.closed.subscribed.heading': 'Engin kláruð verkefni',
|
|
70
|
+
/** The text in the tasks sidebar, in the subscribed tab, under the closed details, when it's empty.*/
|
|
55
71
|
'empty-state.status.list.closed.subscribed.text':
|
|
56
|
-
'Verkefni sem þú ert áskrifandi að og eru merkt sem
|
|
72
|
+
'Verkefni sem þú ert áskrifandi að og eru merkt sem kláruð munu birtast hér',
|
|
73
|
+
/** The heading in the tasks sidebar, in the assigned tab, under the open details, when it's empty.*/
|
|
57
74
|
'empty-state.status.list.open.assigned.heading': 'Þú ert alveg búinn',
|
|
75
|
+
/** The text in the tasks sidebar, in the assigned tab, under the open details, when it's empty.*/
|
|
58
76
|
'empty-state.status.list.open.assigned.text':
|
|
59
77
|
'Ný verkefni sem eru úthlutað til þín munu birtast hér',
|
|
78
|
+
/** The heading in the tasks sidebar, in the document tab, under the open details, when it's empty.*/
|
|
60
79
|
'empty-state.status.list.open.document.heading': 'Engin verkefni á þessu skjali',
|
|
80
|
+
/** The heading in the tasks sidebar, in the subscribed tab, under the open details, when it's empty.*/
|
|
61
81
|
'empty-state.status.list.open.subscribed.heading': 'Engin áskriftarverkefni',
|
|
82
|
+
/** The text in the tasks sidebar, in the subscribed tab, under the open details, when it's empty.*/
|
|
62
83
|
'empty-state.status.list.open.subscribed.text':
|
|
63
84
|
'Verkefni sem þú ert áskrifandi að munu birtast hér',
|
|
64
85
|
|
|
65
86
|
/** Text used in the assignee input when there is no user assigned */
|
|
66
87
|
'form.input.assignee.no-user-assigned.text': 'Ekki úthlutað',
|
|
88
|
+
/** Text used in the assignee input tooltip when there is no user assigned */
|
|
89
|
+
'form.input.assignee.no-user-assigned.tooltip': 'Settu úthlutunaraðila',
|
|
67
90
|
/** Text used in the assignee input when searching and no users are found */
|
|
68
91
|
'form.input.assignee.search.no-users.text': 'Engir notendur fundust',
|
|
69
92
|
/** Placeholder text used in the search box in the assignee input */
|
|
70
93
|
'form.input.assignee.search.placeholder': 'Veldu notendanafn',
|
|
71
94
|
/** Text used in the assignee input when user is not authorized */
|
|
72
95
|
'form.input.assignee.unauthorized.text': 'Óheimilt',
|
|
96
|
+
/** Text used in the assignee input tooltip when there is no user assigned */
|
|
97
|
+
'form.input.assignee.user-assigned.tooltip': 'Breyttu úthlutunaraðila',
|
|
73
98
|
/** Text used in the assignee input when user is not found */
|
|
74
99
|
'form.input.assignee.user-not-found.text': 'Notandi fannst ekki',
|
|
75
100
|
/** The label used in the create more toggle */
|
|
76
101
|
'form.input.create-more.text': 'Búa til fleiri',
|
|
102
|
+
/** The label used in the date input button tooltip when it's empty */
|
|
103
|
+
'form.input.date.buttons.empty.tooltip': 'Settu skiladag',
|
|
77
104
|
/** The label used in the date input to remove the current value */
|
|
78
105
|
'form.input.date.buttons.remove.text': 'Fjarlægja',
|
|
106
|
+
/** The label used in the date input button tooltip when it has value */
|
|
107
|
+
'form.input.date.buttons.tooltip': 'Breyttu skiladegi',
|
|
79
108
|
/** Placeholder text used in the description input */
|
|
80
109
|
'form.input.description.placeholder': 'Bættu við lýsingu',
|
|
110
|
+
/** Text used in the tooltip in the status change button */
|
|
111
|
+
'form.input.status.button.tooltip': 'Breyttu stöðu',
|
|
81
112
|
/** The label used in the target input to remove the current value */
|
|
82
113
|
'form.input.target.buttons.remove.text': 'Fjarlægja markmiðsefni',
|
|
83
114
|
/** The text used in the target input when encountering a schema error */
|
|
@@ -93,6 +124,8 @@ export default removeUndefinedLocaleResources({
|
|
|
93
124
|
|
|
94
125
|
/** The text displayed when no tasks are found */
|
|
95
126
|
'list.empty.text': 'Engin verkefni',
|
|
127
|
+
/** The text displayed at the bottom of the tasks list inviting users provide feedback */
|
|
128
|
+
'list.feedback.text': 'Hjálpaðu okkur að bæta, <Link>deildu endurgjöf um Verkefni</Link>',
|
|
96
129
|
|
|
97
130
|
/** The label for the copy link menu item */
|
|
98
131
|
'menuitem.copylink.text': 'Afrita tengil á verkefni',
|
|
@@ -100,6 +133,8 @@ export default removeUndefinedLocaleResources({
|
|
|
100
133
|
'menuitem.delete.text': 'Eyða verkefni',
|
|
101
134
|
/** The label for the duplicate task menu item */
|
|
102
135
|
'menuitem.duplicate.text': 'Tvöfalda verkefni',
|
|
136
|
+
/** The text for the duplicate task menu item tooltip when mode is upsell */
|
|
137
|
+
'menuitem.duplicate.upsell-tooltip': 'Uppfærðu til að tvöfalda verkefni',
|
|
103
138
|
|
|
104
139
|
/** Fragment used to construct the first entry in the activity log */
|
|
105
140
|
'panel.activity.created-fragment': 'búið til þetta verkefni',
|
|
@@ -111,6 +146,8 @@ export default removeUndefinedLocaleResources({
|
|
|
111
146
|
'panel.close.tooltip': 'Loka hliðarstiku',
|
|
112
147
|
/** The placeholder text for the comment text box */
|
|
113
148
|
'panel.comment.placeholder': 'Bættu við athugasemd...',
|
|
149
|
+
/** The placeholder text for the comment text box when mode is upsell */
|
|
150
|
+
'panel.comment.placeholder.upsell': 'Uppfærðu til að tjá þig um verkefni',
|
|
114
151
|
/** The title used in the task panel when showing the create task form */
|
|
115
152
|
'panel.create.title': 'Búa til',
|
|
116
153
|
/** The title used in the drafts pulldown */
|
package/src/validation.ts
CHANGED
|
@@ -17,14 +17,14 @@ export default removeUndefinedLocaleResources({
|
|
|
17
17
|
'array.minimum-length_blocks': 'Verður að hafa að minnsta kosti {{minLength}} blokkir',
|
|
18
18
|
|
|
19
19
|
/** Date is not valid or not in the correct format (ISO-8601) */
|
|
20
|
-
'date.invalid-format': 'Verður að vera
|
|
20
|
+
'date.invalid-format': 'Verður að vera gild ISO-8601 sniðin dagsetning',
|
|
21
21
|
/** Date is later than the given maximum date "$maxDate" */
|
|
22
22
|
'date.maximum': 'Verður að vera á eða fyrir {{maxDate}}',
|
|
23
23
|
/** Date is earlier than the given minimum date "$minDate" */
|
|
24
24
|
'date.minimum': 'Verður að vera á eða eftir {{minDate}}',
|
|
25
25
|
|
|
26
26
|
/** A value of incorrect type is found, eg found `number` instead of `string` */
|
|
27
|
-
'generic.incorrect-type': '
|
|
27
|
+
'generic.incorrect-type': 'Væntanleg týpa "{{expectedType}}", fékk "{{actualType}}"',
|
|
28
28
|
/** Value is not one of the values specifically allowed */
|
|
29
29
|
'generic.not-allowed': 'Gildi passaði ekki við nein leyfð gildi',
|
|
30
30
|
/** Value "$givenValue" is not one of the values specifically allowed */
|
|
@@ -91,7 +91,7 @@ export default removeUndefinedLocaleResources({
|
|
|
91
91
|
/** String contains a URL with a username or password specified before the host */
|
|
92
92
|
'string.url.includes-credentials': 'Notandanafn/lykilorð ekki leyft',
|
|
93
93
|
/** String is not a valid URL */
|
|
94
|
-
'string.url.invalid': 'Ekki
|
|
94
|
+
'string.url.invalid': 'Ekki gild vefslóð',
|
|
95
95
|
/** String is not an absolute URL (eg it is missing a protocol/host) */
|
|
96
96
|
'string.url.not-absolute': 'Afstæðar vefslóðir eru ekki leyfðar',
|
|
97
97
|
/** String is not a relative URL (eg it contains a protocol/host) */
|
package/src/vision.ts
CHANGED
|
@@ -38,6 +38,10 @@ export default removeUndefinedLocaleResources({
|
|
|
38
38
|
'result.execution-time-label': 'Framkvæmdartími',
|
|
39
39
|
/** Label for "Result" explorer/view */
|
|
40
40
|
'result.label': 'Niðurstaða',
|
|
41
|
+
/** Tooltip text shown when the query result is not encodable as CSV */
|
|
42
|
+
'result.save-result-as-csv.not-csv-encodable': 'Niðurstöðuna er ekki hægt að umrita sem CSV',
|
|
43
|
+
/** Label for "Save result as" result action */
|
|
44
|
+
'result.save-result-as-format': 'Vista niðurstöðu sem <SaveResultButtons/>',
|
|
41
45
|
/**
|
|
42
46
|
* "Not applicable" message for when there is no Execution time or End to End time information
|
|
43
47
|
* available for the query (eg when the query has not been executed, or errored)
|
|
@@ -49,7 +53,7 @@ export default removeUndefinedLocaleResources({
|
|
|
49
53
|
/** Label for the "Custom API version" input in settings, shown when "other" is chosen as API version */
|
|
50
54
|
'settings.custom-api-version-label': 'Sérsniðin API útgáfa',
|
|
51
55
|
/** Label for the "Dataset" dropdown in vision settings */
|
|
52
|
-
'settings.dataset-label': '
|
|
56
|
+
'settings.dataset-label': 'Gagnasafn',
|
|
53
57
|
/** Error label for when the API version in 'Custom API version' input is invalid */
|
|
54
58
|
'settings.error.invalid-api-version': 'Ógild API útgáfa',
|
|
55
59
|
/** Label for the "other" versions within the "API version" dropdown */
|