@sanity/locale-is-is 1.2.19 → 1.2.21
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/structure.cjs +7 -1
- package/dist/_chunks-cjs/structure.cjs.map +1 -1
- package/dist/_chunks-cjs/studio.cjs +97 -29
- package/dist/_chunks-cjs/studio.cjs.map +1 -1
- package/dist/_chunks-cjs/vision.cjs +2 -0
- package/dist/_chunks-cjs/vision.cjs.map +1 -1
- package/dist/_chunks-es/structure.js +7 -1
- package/dist/_chunks-es/structure.js.map +1 -1
- package/dist/_chunks-es/studio.js +97 -29
- package/dist/_chunks-es/studio.js.map +1 -1
- package/dist/_chunks-es/vision.js +2 -0
- package/dist/_chunks-es/vision.js.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/src/structure.ts +8 -0
- package/src/studio.ts +112 -16
- package/src/vision.ts +2 -0
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import { removeUndefinedLocaleResources } from "sanity";
|
|
2
2
|
var studio = removeUndefinedLocaleResources({
|
|
3
|
+
/** "Configuration issue" header */
|
|
4
|
+
"about-dialog.configuration-issue.header": "Uppsetningavandam\xE1l greint",
|
|
5
|
+
/** Message shown if sanity.cli.ts is missing deployment.appId */
|
|
6
|
+
"about-dialog.configuration-issue.missing-appid": "Sj\xE1lfvirkar uppf\xE6rslur eru virkja\xF0ar, en engin <code>deployment.appId</code> stillt \xED <code>sanity.cli.ts</code>. \xDEetta Studio er a\xF0 uppf\xE6ra gegn <strong>latest</strong>-r\xE1sinni.",
|
|
7
|
+
/** "View documentation" link for auto-updating studios */
|
|
8
|
+
"about-dialog.configuration-issue.missing-appid.view-documentation": "Sko\xF0a skj\xF6lun",
|
|
3
9
|
/** "Disabled" status for auto-updates in About-dialog */
|
|
4
10
|
"about-dialog.version-info.auto-updates.disabled": "\xD3virkt",
|
|
5
11
|
/** "Enabled" status for auto-updates in About-dialog */
|
|
@@ -9,8 +15,7 @@ var studio = removeUndefinedLocaleResources({
|
|
|
9
15
|
/** "How to enable" next to Disabled state for Auto updates in version info dialog */
|
|
10
16
|
"about-dialog.version-info.auto-updates.how-to-enable": "Hvernig \xE1 a\xF0 virkja",
|
|
11
17
|
/** "Manage version" link text */
|
|
12
|
-
"about-dialog.version-info.auto-updates.manage-version":
|
|
13
|
-
// 'Manage version'
|
|
18
|
+
"about-dialog.version-info.auto-updates.manage-version": "Stj\xF3rna \xFAtg\xE1fu",
|
|
14
19
|
/** Text displayed on the "Copy to clipboard"-button after clicked */
|
|
15
20
|
"about-dialog.version-info.copy-to-clipboard-button.copied-text": "Afrita\xF0 \xE1 klippibor\xF0. Gle\xF0ilegt l\xEDming!",
|
|
16
21
|
/** "Copy to Clipboard" button text for copying version details from About-dialog */
|
|
@@ -22,40 +27,32 @@ var studio = removeUndefinedLocaleResources({
|
|
|
22
27
|
/** "Latest version" header in version info dialog */
|
|
23
28
|
"about-dialog.version-info.latest-version.header": "N\xFDjasta \xFAtg\xE1fa",
|
|
24
29
|
/** Info text when auto updates is enabled and a new version is available */
|
|
25
|
-
"about-dialog.version-info.new-auto-update-version-available":
|
|
26
|
-
// 'New version available'
|
|
30
|
+
"about-dialog.version-info.new-auto-update-version-available": "N\xFD \xFAtg\xE1fa \xED bo\xF0i",
|
|
27
31
|
/** "New version" header in version info dialog - Note that this is not necessary a *higher* version compared to current:
|
|
28
32
|
* It's a new version configured for auto updates which in some cases could even be a version below current */
|
|
29
|
-
"about-dialog.version-info.new-version.text":
|
|
30
|
-
// 'New version'
|
|
33
|
+
"about-dialog.version-info.new-version.text": "N\xFD \xFAtg\xE1fa",
|
|
31
34
|
/** "Reload"-button when auto updates is enabled and a new version is available */
|
|
32
|
-
"about-dialog.version-info.reload":
|
|
33
|
-
// 'Reload'
|
|
35
|
+
"about-dialog.version-info.reload": "Endurhla\xF0a",
|
|
34
36
|
/** "Reload to update"-tooltip when auto updates is enabled and a new version is available */
|
|
35
|
-
"about-dialog.version-info.reload-to-update":
|
|
36
|
-
|
|
37
|
+
"about-dialog.version-info.reload-to-update": "Endurhla\xF0a Studio til a\xF0 uppf\xE6ra",
|
|
38
|
+
/** "Development" tooltip in About-dialog */
|
|
39
|
+
"about-dialog.version-info.tooltip.development": "\xDEr\xF3un",
|
|
37
40
|
/** "New version available" tooltip in About-dialog */
|
|
38
|
-
"about-dialog.version-info.tooltip.new-version-available":
|
|
39
|
-
// 'New version available'
|
|
41
|
+
"about-dialog.version-info.tooltip.new-version-available": "N\xFD \xFAtg\xE1fa \xED bo\xF0i",
|
|
40
42
|
/** "Prerelease" tooltip in About-dialog */
|
|
41
|
-
"about-dialog.version-info.tooltip.prerelease":
|
|
42
|
-
// 'Prerelease'
|
|
43
|
+
"about-dialog.version-info.tooltip.prerelease": "Forsko\xF0un",
|
|
43
44
|
/** "Up to date" tooltip in About-dialog */
|
|
44
|
-
"about-dialog.version-info.tooltip.up-to-date":
|
|
45
|
-
// 'Up to date'
|
|
45
|
+
"about-dialog.version-info.tooltip.up-to-date": "Uppf\xE6rt",
|
|
46
46
|
/** @deprecated "Up to date" status in About-dialog */
|
|
47
47
|
"about-dialog.version-info.up-to-date": "Uppf\xE6rt",
|
|
48
48
|
/** "Upgrade"-button text */
|
|
49
|
-
"about-dialog.version-info.update-button.text":
|
|
50
|
-
// 'Update'
|
|
49
|
+
"about-dialog.version-info.update-button.text": "Uppf\xE6ra",
|
|
51
50
|
/** "Upgrade"-button tooltip text */
|
|
52
|
-
"about-dialog.version-info.update-button.tooltip":
|
|
53
|
-
// 'Learn how to update Sanity Studio'
|
|
51
|
+
"about-dialog.version-info.update-button.tooltip": "L\xE6r\xF0u hvernig \xE1 a\xF0 uppf\xE6ra Sanity Studio",
|
|
54
52
|
/** "User agent" header in About-dialog */
|
|
55
53
|
"about-dialog.version-info.user-agent.header": "Notandaa\xF0ili",
|
|
56
54
|
/** "View on GitHub" link from version info dialog */
|
|
57
|
-
"about-dialog.version-info.view-on-github":
|
|
58
|
-
// 'View on GitHub'
|
|
55
|
+
"about-dialog.version-info.view-on-github": "Sko\xF0a \xE1 GitHub",
|
|
59
56
|
/** The text used in the tooltip shown in the dialog close button */
|
|
60
57
|
"announcement.dialog.close": "Loka",
|
|
61
58
|
/** Aria label to be used in the dialog close button */
|
|
@@ -115,13 +112,19 @@ var studio = removeUndefinedLocaleResources({
|
|
|
115
112
|
"asset-source.dialog.default-title_file": "Veldu skr\xE1",
|
|
116
113
|
/** Select asset dialog title for images */
|
|
117
114
|
"asset-source.dialog.default-title_image": "Veldu mynd",
|
|
115
|
+
/** Select asset dialog title for videos */
|
|
116
|
+
"asset-source.dialog.default-title_video": "Veldu myndband",
|
|
118
117
|
/** Insert asset error */
|
|
119
118
|
"asset-source.dialog.insert-asset-error": "Villa vi\xF0 a\xF0 setja inn eign. Sj\xE1\xF0u r\xE1skj\xE1inn fyrir frekari uppl\xFDsingar.",
|
|
120
119
|
/** Select asset dialog load more items */
|
|
121
120
|
"asset-source.dialog.load-more": "Hla\xF0a meira",
|
|
122
|
-
/** Text shown when selecting a file but there's no files to select from
|
|
121
|
+
/** Text shown when selecting a file but there's no files to select from
|
|
122
|
+
* @deprecated no longer in use
|
|
123
|
+
*/
|
|
123
124
|
"asset-source.dialog.no-assets_file": "Engar skr\xE1r",
|
|
124
|
-
/** Text shown when selecting an image but there's no images to select from
|
|
125
|
+
/** Text shown when selecting an image but there's no images to select from
|
|
126
|
+
* @deprecated no longer in use
|
|
127
|
+
*/
|
|
125
128
|
"asset-source.dialog.no-assets_image": "Engar myndir",
|
|
126
129
|
"asset-source.file.asset-list.action.delete.disabled-cannot-delete-current-file": "Ekki er h\xE6gt a\xF0 ey\xF0a valinni skr\xE1 n\xFAna",
|
|
127
130
|
"asset-source.file.asset-list.action.delete.text": "Ey\xF0a",
|
|
@@ -173,8 +176,12 @@ var studio = removeUndefinedLocaleResources({
|
|
|
173
176
|
"asset-sources.media-library.file.title": "Fj\xF6lmi\xF0lab\xF3kasafn",
|
|
174
177
|
"asset-sources.media-library.image.title": "Fj\xF6lmi\xF0lab\xF3kasafn",
|
|
175
178
|
/** Info messages for the Media Library Asset Source */
|
|
176
|
-
"asset-sources.media-library.select-dialog.
|
|
177
|
-
|
|
179
|
+
"asset-sources.media-library.select-dialog.title_file": "Velja skr\xE1 fyrir {{targetTitle}}",
|
|
180
|
+
"asset-sources.media-library.select-dialog.title_image": "Velja mynd fyrir {{targetTitle}}",
|
|
181
|
+
"asset-sources.media-library.select-dialog.title_video": "Velja myndband fyrir {{targetTitle}}",
|
|
182
|
+
/** Warning message shown when uploading already existing files to the Media Library Asset Source */
|
|
183
|
+
"asset-sources.media-library.warning.file-already-exist.description": "Nota\xF0u til sta\xF0ar verandi skr\xE1 sem fannst \xED safninu.",
|
|
184
|
+
"asset-sources.media-library.warning.file-already-exist.title": "Skr\xE1: '{{filename}}' er \xFEegar til",
|
|
178
185
|
/** Label when a release has been deleted by a different user */
|
|
179
186
|
"banners.deleted-bundle-banner.text": "\xDAtg\xE1fan '<strong>{{title}}</strong>' hefur veri\xF0 eytt.",
|
|
180
187
|
/** Action message for navigating to next month */
|
|
@@ -420,6 +427,8 @@ var studio = removeUndefinedLocaleResources({
|
|
|
420
427
|
"document-status.revision-not-found": "\xDAtg\xE1fa fannst ekki",
|
|
421
428
|
/** Label to indicate that a document type was not found */
|
|
422
429
|
"document.type.not-found": 'Skjalt\xFDpa "{{type}}" fannst ekki',
|
|
430
|
+
/** Error message shown when an action cannot be performed */
|
|
431
|
+
"errors.unable-to-perform-action": "Ekki h\xE6gt a\xF0 framkv\xE6ma \xFEessa a\xF0ger\xF0",
|
|
423
432
|
/** The value of the <code>_key</code> property must be a unique string. */
|
|
424
433
|
"form.error.duplicate-keys-alert.details.additional-description": "Gildi <code>_key</code> eiginleikans ver\xF0ur a\xF0 vera einstakt strengur.",
|
|
425
434
|
/** 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. */
|
|
@@ -507,8 +516,7 @@ var studio = removeUndefinedLocaleResources({
|
|
|
507
516
|
/** Information for what the latest sanity version is */
|
|
508
517
|
"help-resources.latest-sanity-version": "N\xFDjasta \xFAtg\xE1fan er {{latestVersion}}",
|
|
509
518
|
/** Menu item for reloading Studio to update */
|
|
510
|
-
"help-resources.studio-auto-update-now":
|
|
511
|
-
// 'Reload to update to v{{newVersion}}'
|
|
519
|
+
"help-resources.studio-auto-update-now": "Endurhla\xF0a til a\xF0 uppf\xE6ra \xED v{{newVersion}}",
|
|
512
520
|
/** Information for what studio version the current studio is running */
|
|
513
521
|
"help-resources.studio-version": "\xDAtg\xE1fa af Sanity Studio {{studioVersion}}",
|
|
514
522
|
/** Title for help and resources menus */
|
|
@@ -1121,21 +1129,31 @@ var studio = removeUndefinedLocaleResources({
|
|
|
1121
1129
|
"release.action.add-to-new-release": "B\xE6ta vi\xF0 \xFAtg\xE1fu",
|
|
1122
1130
|
/** Action message to add document to release */
|
|
1123
1131
|
"release.action.add-to-release": "B\xE6ta vi\xF0 {{title}}",
|
|
1132
|
+
/** Tooltip message for document that is already added to release */
|
|
1133
|
+
"release.action.already-exists-in-release": "Skjal er n\xFA \xFEegar til \xED \xFAtg\xE1fu",
|
|
1124
1134
|
/** Action message for when document is already in release */
|
|
1125
1135
|
"release.action.already-in-release": "N\xFA \xFEegar \xED \xFAtg\xE1fu {{title}}",
|
|
1126
1136
|
/** Action message for when you click to view all versions you can copy the current document to */
|
|
1127
1137
|
"release.action.copy-to": "Afrita \xFAtg\xE1fu til",
|
|
1128
1138
|
/** Action message for creating new releases */
|
|
1129
1139
|
"release.action.create-new": "N\xFD \xFAtg\xE1fa",
|
|
1140
|
+
/** Description for toast when version creation failed */
|
|
1141
|
+
"release.action.create-version.failure": "Mist\xF3kst a\xF0 b\xFAa til \xFAtg\xE1fu",
|
|
1142
|
+
/** Action message for deleting a scheduled publish */
|
|
1143
|
+
"release.action.delete-schedule": "Ey\xF0a t\xEDmasetningu",
|
|
1130
1144
|
/** Action message for when document is already in release */
|
|
1131
1145
|
"release.action.discard-version": "Hafna \xFAtg\xE1fu",
|
|
1132
1146
|
/** Description for toast when version discarding failed */
|
|
1133
1147
|
"release.action.discard-version.failure": "Mist\xF3kst a\xF0 hafna \xFAtg\xE1fu",
|
|
1148
|
+
/** Action message for editing the schedule of a scheduled publish */
|
|
1149
|
+
"release.action.edit-schedule": "Breyta t\xEDmasetningu",
|
|
1134
1150
|
/** Action message for when a new release is created off an existing version, draft or published document */
|
|
1135
1151
|
"release.action.new-release": "N\xFD \xFAtg\xE1fa",
|
|
1136
1152
|
"release.action.new-release.limit-reached_other": "\xDEetta vinnusv\xE6\xF0i er takmarka\xF0 vi\xF0 {{count}} \xFAtg\xE1fur",
|
|
1137
1153
|
/** Tooltip message for not having permissions for creating new releases */
|
|
1138
1154
|
"release.action.permission.error": "\xDE\xFA hefur ekki leyfi til a\xF0 framkv\xE6ma \xFEessa a\xF0ger\xF0",
|
|
1155
|
+
/** Action message for running a scheduled draft immediately */
|
|
1156
|
+
"release.action.publish-now": "Birta n\xFAna",
|
|
1139
1157
|
/** Error message description for when a version is reverted from being unpublished */
|
|
1140
1158
|
"release.action.revert-unpublish-version.failure.description": "Vinsamlegast reyndu aftur e\xF0a athuga\xF0u tenginguna \xFE\xEDna. Skjali\xF0 ver\xF0ur enn \xF3birt vi\xF0 \xFAtg\xE1fu.",
|
|
1141
1159
|
/** Error message title for when a version is reverted from being unpublished */
|
|
@@ -1150,6 +1168,8 @@ var studio = removeUndefinedLocaleResources({
|
|
|
1150
1168
|
"release.action.unpublish-version.success": "T\xF3kst me\xF0 g\xF3\xF0um \xE1rangri a\xF0 setja <strong>{{title}}</strong> til a\xF0 vera \xF3birt \xED \xFAtg\xE1fu",
|
|
1151
1169
|
/** Action message for when the view release is pressed */
|
|
1152
1170
|
"release.action.view-release": "Sko\xF0a \xFAtg\xE1fu",
|
|
1171
|
+
/** Action message for when the view scheduled drafts is pressed */
|
|
1172
|
+
"release.action.view-scheduled-drafts": "Sko\xF0a t\xEDmasettar dr\xF6g",
|
|
1153
1173
|
/** Label for banner when release is scheduled */
|
|
1154
1174
|
"release.banner.scheduled-for-publishing-on": "\xC1\xE6tla\xF0 til birtingar \xE1 {{date}}",
|
|
1155
1175
|
/** Label for Draft chip in document header */
|
|
@@ -1186,6 +1206,24 @@ var studio = removeUndefinedLocaleResources({
|
|
|
1186
1206
|
"release.dialog.create.confirm": "B\xFAa til \xFAtg\xE1fu",
|
|
1187
1207
|
/** Title for creating releases dialog */
|
|
1188
1208
|
"release.dialog.create.title": "N\xFD \xFAtg\xE1fa",
|
|
1209
|
+
/** Body text for the dialog confirming deletion of a scheduled draft */
|
|
1210
|
+
"release.dialog.delete-schedule-draft.body": "Ertu viss um a\xF0 \xFE\xFA viljir ey\xF0a \xFEessum t\xEDmasetta dr\xF6gum? \xDEessi a\xF0ger\xF0 er \xF3afturkr\xE6f.",
|
|
1211
|
+
/** Confirm button text for deleting a scheduled draft */
|
|
1212
|
+
"release.dialog.delete-schedule-draft.confirm": "J\xE1, ey\xF0a t\xEDmasetningu",
|
|
1213
|
+
/** Header for the dialog confirming deletion of a scheduled draft */
|
|
1214
|
+
"release.dialog.delete-schedule-draft.header": "Ey\xF0a t\xEDmasettum dr\xF6gum",
|
|
1215
|
+
/** Body text for change schedule dialog */
|
|
1216
|
+
"release.dialog.edit-schedule.body": "Veldu n\xFDja dagsetningu og t\xEDma fyrir t\xEDmasetta birtingu.",
|
|
1217
|
+
/** Confirm button text for change schedule dialog */
|
|
1218
|
+
"release.dialog.edit-schedule.confirm": "Uppf\xE6ra t\xEDmasetningu",
|
|
1219
|
+
/** Header for change schedule dialog */
|
|
1220
|
+
"release.dialog.edit-schedule.header": "Breyta t\xEDmasetningu",
|
|
1221
|
+
/** Body text for the dialog confirming running a scheduled draft immediately */
|
|
1222
|
+
"release.dialog.publish-scheduled-draft.body": "Ertu viss um a\xF0 \xFE\xFA viljir birta \xFEessi t\xEDmasettu dr\xF6g strax?",
|
|
1223
|
+
/** Confirm button text for running a scheduled draft immediately */
|
|
1224
|
+
"release.dialog.publish-scheduled-draft.confirm": "J\xE1, keyra n\xFAna",
|
|
1225
|
+
/** Header for the dialog confirming running a scheduled draft immediately */
|
|
1226
|
+
"release.dialog.publish-scheduled-draft.header": "Birta dr\xF6g n\xFAna",
|
|
1189
1227
|
/** Label for description in tooltip to explain release types */
|
|
1190
1228
|
"release.dialog.tooltip.description": "\xC1\xE6tla\xF0ur \xFAtg\xE1fut\xEDmi er nota\xF0ur til a\xF0 b\xFAa til betri forsko\xF0anir og v\xEDsbendingar um hvort skj\xF6l rekist \xE1.",
|
|
1191
1229
|
/** Label for noting that a release time is not final */
|
|
@@ -1196,6 +1234,10 @@ var studio = removeUndefinedLocaleResources({
|
|
|
1196
1234
|
"release.form.placeholder-describe-release": "L\xFDstu \xFAtg\xE1funni\u2026",
|
|
1197
1235
|
/** Tooltip for button to hide release visibility */
|
|
1198
1236
|
"release.layer.hide": "Fela \xFAtg\xE1fu",
|
|
1237
|
+
/** Label for the release menu */
|
|
1238
|
+
"release.menu.label": "Valmynd \xFAtg\xE1fu",
|
|
1239
|
+
/** Tooltip for the release menu */
|
|
1240
|
+
"release.menu.tooltip": "A\xF0ger\xF0ir",
|
|
1199
1241
|
/** Label for draft perspective in navbar */
|
|
1200
1242
|
"release.navbar.drafts": "Dr\xF6g",
|
|
1201
1243
|
/** Label for published releases in navbar */
|
|
@@ -1204,18 +1246,34 @@ var studio = removeUndefinedLocaleResources({
|
|
|
1204
1246
|
"release.navbar.tooltip": "\xDAtg\xE1fur",
|
|
1205
1247
|
/** The placeholder text when the release doesn't have a title */
|
|
1206
1248
|
"release.placeholder-untitled-release": "\xD3nefnd \xFAtg\xE1fa",
|
|
1249
|
+
/** Description for warning that the published schedule time is in the past */
|
|
1250
|
+
"release.schedule-dialog.publish-date-in-past-warning": "T\xEDmasettu fyrir framt\xED\xF0ar dagsetningu og t\xEDma.",
|
|
1251
|
+
/** Label for date picker when scheduling a release */
|
|
1252
|
+
"release.schedule-dialog.select-publish-date-label": "Birta \xE1",
|
|
1207
1253
|
/** The toast description that will be shown when the user has a release perspective which is now archived */
|
|
1208
1254
|
"release.toast.archived-release.description": "\xDEessi \xFAtg\xE1fa hefur veri\xF0 afn\xE6ld",
|
|
1209
1255
|
/** The toast title that will be shown when the user has a release perspective which is now archived */
|
|
1210
1256
|
"release.toast.archived-release.title": "\xDAtg\xE1funni '{{title}}' hefur veri\xF0 safna\xF0",
|
|
1211
1257
|
/** The toast title that will be shown the creating a release fails */
|
|
1212
1258
|
"release.toast.create-release-error.title": "Mist\xF3kst a\xF0 b\xFAa til \xFAtg\xE1fu",
|
|
1213
|
-
/**
|
|
1259
|
+
/** Error toast for deleting a scheduled draft */
|
|
1260
|
+
"release.toast.delete-schedule-draft.error": "Mist\xF3kst a\xF0 ey\xF0a t\xEDmasettu dr\xF6gunum <strong>{{title}}</strong>: {{error}}",
|
|
1261
|
+
/** Success toast for deleting a scheduled draft */
|
|
1262
|
+
"release.toast.delete-schedule-draft.success": "T\xEDmasettu dr\xF6gunum <strong>{{title}}</strong> hefur veri\xF0 eytt.",
|
|
1263
|
+
/** The toast title that will be shown when the user has a release perspective which is now deleted */
|
|
1214
1264
|
"release.toast.not-found-release.title": "Ekki t\xF3kst a\xF0 finna '{{title}}' \xFAtg\xE1funa",
|
|
1265
|
+
/** Error toast for running a scheduled publish immediately */
|
|
1266
|
+
"release.toast.publish-scheduled-draft.error": "Mist\xF3kst a\xF0 birta t\xEDmasettu dr\xF6gin <strong>{{title}}</strong>: {{error}}",
|
|
1267
|
+
/** Success toast for running a scheduled publish immediately */
|
|
1268
|
+
"release.toast.publish-scheduled-draft.success": "T\xEDmasettu dr\xF6gin <strong>{{title}}</strong> hafa veri\xF0 birt.",
|
|
1215
1269
|
/** The toast description that will be shown when the user has a release perspective which is now published */
|
|
1216
1270
|
"release.toast.published-release.description": "\xDEessi \xFAtg\xE1fa hefur veri\xF0 afn\xE6ld",
|
|
1217
1271
|
/** The toast title that will be shown when the user has a release perspective which is now deleted */
|
|
1218
1272
|
"release.toast.published-release.title": "\xDAtg\xE1fan '{{title}}' var birt",
|
|
1273
|
+
/** Error toast for rescheduling a draft */
|
|
1274
|
+
"release.toast.reschedule-scheduled-draft.error": "Mist\xF3kst a\xF0 endurt\xEDmasetja t\xEDmasettu dr\xF6gin <strong>{{title}}</strong>: {{error}}",
|
|
1275
|
+
/** Success toast for rescheduling a draft */
|
|
1276
|
+
"release.toast.reschedule-scheduled-draft.success": "T\xEDmasettu dr\xF6gin <strong>{{title}}</strong> hafa veri\xF0 endurt\xEDmasett.",
|
|
1219
1277
|
/** Label for when a version of a document has already been added to the release */
|
|
1220
1278
|
"release.tooltip.already-added": "\xDAtg\xE1fa af \xFEessu skjali hefur \xFEegar veri\xF0 b\xE6tt vi\xF0",
|
|
1221
1279
|
/** Label for when a release is scheduled / scheduling and a user can't add a document version to it */
|
|
@@ -1228,6 +1286,14 @@ var studio = removeUndefinedLocaleResources({
|
|
|
1228
1286
|
"release.type.undecided": "\xD3\xE1kve\xF0i\xF0",
|
|
1229
1287
|
/** Tooltip for the dropdown to show all versions of document */
|
|
1230
1288
|
"release.version-list.tooltip": "Sj\xE1 allar \xFAtg\xE1fur skjalsins",
|
|
1289
|
+
/** Confirm button text for the schedule publish dialog */
|
|
1290
|
+
"schedule-publish-dialog.confirm": "T\xEDmasetja",
|
|
1291
|
+
/** Description for the schedule publish dialog */
|
|
1292
|
+
"schedule-publish-dialog.description": "Veldu hven\xE6r \xFEetta skjal \xE6tti a\xF0 vera birt.",
|
|
1293
|
+
/** Header for the schedule publish dialog */
|
|
1294
|
+
"schedule-publish-dialog.header": "\xC1\xE6tla\xF0u dr\xF6g til birtingar",
|
|
1295
|
+
/** Title for a scheduled draft release */
|
|
1296
|
+
"scheduled-drafts.release.title": "\xC1\xE6tlu\xF0 birting",
|
|
1231
1297
|
/** Accessibility label to open search action when the search would go fullscreen (eg on narrower screens) */
|
|
1232
1298
|
"search.action-open-aria-label": "Opna leit",
|
|
1233
1299
|
/** Action label for adding a search filter */
|
|
@@ -1787,6 +1853,8 @@ var studio = removeUndefinedLocaleResources({
|
|
|
1787
1853
|
* workspace to authenticate in.
|
|
1788
1854
|
*/
|
|
1789
1855
|
"workspaces.action.choose-another-workspace": "Veldu anna\xF0 vinnusv\xE6\xF0i",
|
|
1856
|
+
/** Label for title to switch workspace before workspaces are listed */
|
|
1857
|
+
"workspaces.action.switch-workspace": "Skiptu um vinnur\xFDmi",
|
|
1790
1858
|
/** Label for heading that indicates that you can choose your workspace */
|
|
1791
1859
|
"workspaces.choose-your-workspace-label": "Veldu \xFEitt vinnusv\xE6\xF0i",
|
|
1792
1860
|
/** Label for the workspace menu */
|