@sanity/locale-is-is 1.2.3 → 1.2.5
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/dist/_chunks-cjs/copy-paste.cjs +4 -0
- package/dist/_chunks-cjs/copy-paste.cjs.map +1 -1
- package/dist/_chunks-cjs/structure.cjs +4 -0
- package/dist/_chunks-cjs/structure.cjs.map +1 -1
- package/dist/_chunks-cjs/studio.cjs +7 -5
- package/dist/_chunks-cjs/studio.cjs.map +1 -1
- package/dist/_chunks-es/copy-paste.js +4 -0
- package/dist/_chunks-es/copy-paste.js.map +1 -1
- package/dist/_chunks-es/structure.js +4 -0
- package/dist/_chunks-es/structure.js.map +1 -1
- package/dist/_chunks-es/studio.js +7 -5
- package/dist/_chunks-es/studio.js.map +1 -1
- package/package.json +1 -1
- package/src/copy-paste.ts +5 -0
- package/src/structure.ts +5 -0
- package/src/studio.ts +7 -3
package/package.json
CHANGED
package/src/copy-paste.ts
CHANGED
|
@@ -16,6 +16,8 @@ export default removeUndefinedLocaleResources({
|
|
|
16
16
|
'copy-paste.on-copy.validation.copy-document-success.title': 'Skjal "{{fieldNames}}" afritað',
|
|
17
17
|
/** The success message that is shown when a field is copied */
|
|
18
18
|
'copy-paste.on-copy.validation.copy-field_one-success.title': 'Reitur "{{fieldName}}" afritaður',
|
|
19
|
+
/** The success message that is shown when a array item is copied */
|
|
20
|
+
'copy-paste.on-copy.validation.copy-item_one-success.title': 'Atriði "{{typeName}}" afritað',
|
|
19
21
|
/** The error message that is shown when there is no value to copy */
|
|
20
22
|
'copy-paste.on-copy.validation.no-value.title': 'Tómt gildi, ekkert til að afrita',
|
|
21
23
|
/** --- On copy --- */
|
|
@@ -60,6 +62,9 @@ export default removeUndefinedLocaleResources({
|
|
|
60
62
|
/** The validation message that is shown when reference types are incompatible */
|
|
61
63
|
'copy-paste.on-paste.validation.reference-type-incompatible.description':
|
|
62
64
|
'Tilvísanir af taginu "{{sourceReferenceType}}" eru ekki leyfðar í tilvísunarreit sem samþykkir tög "{{targetReferenceTypes}}"',
|
|
65
|
+
/** The validation message that is shown when reference does not exist */
|
|
66
|
+
'copy-paste.on-paste.validation.reference-validation-failed.description':
|
|
67
|
+
'Tilvísunar skjalið "{{ref}}" er ekki til',
|
|
63
68
|
/** The validation message that is shown when the source and target schema types are incompatible */
|
|
64
69
|
'copy-paste.on-paste.validation.schema-type-incompatible.description':
|
|
65
70
|
'Uppruna- og markskematýpur eru ekki samrýmanlegar',
|
package/src/structure.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import {removeUndefinedLocaleResources} from 'sanity'
|
|
2
2
|
|
|
3
3
|
export default removeUndefinedLocaleResources({
|
|
4
|
+
/** Label for the "Copy Document URL" document action */
|
|
5
|
+
'action.copy-document-url.label': 'Afrita skjalavefslóð',
|
|
4
6
|
/** Tooltip when action button is disabled because the operation is not ready */
|
|
5
7
|
'action.delete.disabled.not-ready': 'Aðgerð ekki tilbúin',
|
|
6
8
|
/** Tooltip when action button is disabled because the document does not exist */
|
|
@@ -336,6 +338,9 @@ export default removeUndefinedLocaleResources({
|
|
|
336
338
|
'Villa kom upp við tilraun til að afturkalla birtingu þessa skjals. Þetta þýðir yfirleitt að önnur skjöl vísa til þess.',
|
|
337
339
|
/** The text when a generic operation succeeded (fallback, generally not shown) */
|
|
338
340
|
'panes.document-operation-results.operation-success': 'Aðgerð {{context}} á skjali tókst',
|
|
341
|
+
/** The text when copy URL operation succeeded */
|
|
342
|
+
'panes.document-operation-results.operation-success_copy-url':
|
|
343
|
+
'Skjalavefslóð afrituð á klippiborð',
|
|
339
344
|
/** The text when a delete operation succeeded */
|
|
340
345
|
'panes.document-operation-results.operation-success_delete': 'Skjalinu var eytt',
|
|
341
346
|
/** The text when a discard changes operation succeeded */
|
package/src/studio.ts
CHANGED
|
@@ -134,9 +134,9 @@ export default removeUndefinedLocaleResources({
|
|
|
134
134
|
/** 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 */
|
|
135
135
|
'calendar.action.set-to-time-preset': '{{time}} á {{date, datetime}}',
|
|
136
136
|
/** Aria label for button to open date picker */
|
|
137
|
-
'calendar.button.aria-label':
|
|
137
|
+
'calendar.button.aria-label': 'Opna dagatal',
|
|
138
138
|
/** Tooltip content for button to open datetime input */
|
|
139
|
-
'calendar.button.tooltip-text':
|
|
139
|
+
'calendar.button.tooltip-text': 'Veldu dagsetningu',
|
|
140
140
|
/** Error message displayed in calendar when entered date is not the correct format */
|
|
141
141
|
'calendar.error.must-be-in-format':
|
|
142
142
|
'Verður að vera á sniðinu <Emphasis>{{exampleDate}}</Emphasis>',
|
|
@@ -464,6 +464,8 @@ export default removeUndefinedLocaleResources({
|
|
|
464
464
|
* eg. will prompt the user to select a type once triggered
|
|
465
465
|
*/
|
|
466
466
|
'inputs.array.action.add-item-select-type': 'Bæta við atriði...',
|
|
467
|
+
/** Label for copying an array item */
|
|
468
|
+
'inputs.array.action.copy': 'Afrita',
|
|
467
469
|
/** Array drag handle button tooltip */
|
|
468
470
|
'inputs.array.action.drag.tooltip': 'Dragðu til að raða',
|
|
469
471
|
/** Label for duplicating an array item */
|
|
@@ -859,6 +861,8 @@ export default removeUndefinedLocaleResources({
|
|
|
859
861
|
'inputs.portable-text.style.quote': 'Tilvitnun',
|
|
860
862
|
/** Label for action to clear the current value of the reference field */
|
|
861
863
|
'inputs.reference.action.clear': 'Hreinsa',
|
|
864
|
+
/** Label for action to copy the current item (used within arrays) */
|
|
865
|
+
'inputs.reference.action.copy': 'Afrita',
|
|
862
866
|
/** Label for action to create a new document from the reference input */
|
|
863
867
|
'inputs.reference.action.create-new-document': 'Búa til nýtt',
|
|
864
868
|
/** Label for action to create a new document from the reference input, when there are multiple templates or document types to choose from */
|
|
@@ -1087,7 +1091,7 @@ export default removeUndefinedLocaleResources({
|
|
|
1087
1091
|
/** Title of the alert for studio users when packages in their studio are out-of-date */
|
|
1088
1092
|
'package-version.new-package-available.title': 'Sanity Studio var uppfært',
|
|
1089
1093
|
|
|
1090
|
-
/** Label for action to
|
|
1094
|
+
/** Label for action to invite members to the current studio project */
|
|
1091
1095
|
'presence.action.manage-members': 'Stjórna meðlimum',
|
|
1092
1096
|
/** Accessibility label for presence menu button */
|
|
1093
1097
|
'presence.aria-label': 'Hver er hér',
|