@sanity/locale-is-is 1.2.0 → 1.2.2
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 +63 -0
- package/dist/_chunks-cjs/copy-paste.cjs.map +1 -0
- package/dist/{_chunks → _chunks-cjs}/structure.cjs +2 -0
- package/dist/{_chunks → _chunks-cjs}/structure.cjs.map +1 -1
- package/dist/{_chunks → _chunks-cjs}/studio.cjs +71 -8
- package/dist/_chunks-cjs/studio.cjs.map +1 -0
- package/dist/{_chunks → _chunks-cjs}/tasks.cjs +39 -2
- package/dist/_chunks-cjs/tasks.cjs.map +1 -0
- package/dist/{_chunks → _chunks-cjs}/vision.cjs +4 -0
- package/dist/_chunks-cjs/vision.cjs.map +1 -0
- package/dist/_chunks-es/copy-paste.js +61 -0
- package/dist/_chunks-es/copy-paste.js.map +1 -0
- package/dist/{_chunks → _chunks-es}/structure.js +2 -0
- package/dist/{_chunks → _chunks-es}/structure.js.map +1 -1
- package/dist/{_chunks → _chunks-es}/studio.js +71 -8
- package/dist/_chunks-es/studio.js.map +1 -0
- package/dist/{_chunks → _chunks-es}/tasks.js +39 -2
- package/dist/_chunks-es/tasks.js.map +1 -0
- package/dist/{_chunks → _chunks-es}/vision.js +4 -0
- package/dist/_chunks-es/vision.js.map +1 -0
- package/dist/index.cjs +10 -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 +10 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -3
- package/src/copy-paste.ts +72 -0
- package/src/index.ts +5 -0
- package/src/structure.ts +3 -0
- package/src/studio.ts +77 -8
- package/src/tasks.ts +39 -2
- package/src/vision.ts +4 -0
- 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/vision.cjs.map +0 -1
- package/dist/_chunks/vision.js.map +0 -1
- /package/dist/{_chunks → _chunks-cjs}/comments.cjs +0 -0
- /package/dist/{_chunks → _chunks-cjs}/comments.cjs.map +0 -0
- /package/dist/{_chunks → _chunks-cjs}/validation.cjs +0 -0
- /package/dist/{_chunks → _chunks-cjs}/validation.cjs.map +0 -0
- /package/dist/{_chunks → _chunks-es}/comments.js +0 -0
- /package/dist/{_chunks → _chunks-es}/comments.js.map +0 -0
- /package/dist/{_chunks → _chunks-es}/validation.js +0 -0
- /package/dist/{_chunks → _chunks-es}/validation.js.map +0 -0
package/dist/index.cjs
CHANGED
|
@@ -10,27 +10,31 @@ const locale = sanity.defineLocale({
|
|
|
10
10
|
bundles: [
|
|
11
11
|
{
|
|
12
12
|
namespace: "comments",
|
|
13
|
-
resources: () => Promise.resolve().then(function () { return require('./_chunks/comments.cjs'); })
|
|
13
|
+
resources: () => Promise.resolve().then(function () { return require('./_chunks-cjs/comments.cjs'); })
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
namespace: "copy-paste",
|
|
17
|
+
resources: () => Promise.resolve().then(function () { return require('./_chunks-cjs/copy-paste.cjs'); })
|
|
14
18
|
},
|
|
15
19
|
{
|
|
16
20
|
namespace: "structure",
|
|
17
|
-
resources: () => Promise.resolve().then(function () { return require('./_chunks/structure.cjs'); })
|
|
21
|
+
resources: () => Promise.resolve().then(function () { return require('./_chunks-cjs/structure.cjs'); })
|
|
18
22
|
},
|
|
19
23
|
{
|
|
20
24
|
namespace: "studio",
|
|
21
|
-
resources: () => Promise.resolve().then(function () { return require('./_chunks/studio.cjs'); })
|
|
25
|
+
resources: () => Promise.resolve().then(function () { return require('./_chunks-cjs/studio.cjs'); })
|
|
22
26
|
},
|
|
23
27
|
{
|
|
24
28
|
namespace: "tasks",
|
|
25
|
-
resources: () => Promise.resolve().then(function () { return require('./_chunks/tasks.cjs'); })
|
|
29
|
+
resources: () => Promise.resolve().then(function () { return require('./_chunks-cjs/tasks.cjs'); })
|
|
26
30
|
},
|
|
27
31
|
{
|
|
28
32
|
namespace: "validation",
|
|
29
|
-
resources: () => Promise.resolve().then(function () { return require('./_chunks/validation.cjs'); })
|
|
33
|
+
resources: () => Promise.resolve().then(function () { return require('./_chunks-cjs/validation.cjs'); })
|
|
30
34
|
},
|
|
31
35
|
{
|
|
32
36
|
namespace: "vision",
|
|
33
|
-
resources: () => Promise.resolve().then(function () { return require('./_chunks/vision.cjs'); })
|
|
37
|
+
resources: () => Promise.resolve().then(function () { return require('./_chunks-cjs/vision.cjs'); })
|
|
34
38
|
}
|
|
35
39
|
],
|
|
36
40
|
weekInfo: {
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":["../src/index.ts"],"sourcesContent":["import {defineLocale, definePlugin, type LocaleDefinition} from 'sanity'\n\nconst locale = defineLocale({\n id: 'is-IS',\n title: 'Íslenska',\n bundles: [\n {\n namespace: 'comments',\n resources: () => import('./comments'),\n },\n\n {\n namespace: 'structure',\n resources: () => import('./structure'),\n },\n\n {\n namespace: 'studio',\n resources: () => import('./studio'),\n },\n\n {\n namespace: 'tasks',\n resources: () => import('./tasks'),\n },\n\n {\n namespace: 'validation',\n resources: () => import('./validation'),\n },\n\n {\n namespace: 'vision',\n resources: () => import('./vision'),\n },\n ],\n weekInfo: {\n firstDay: 1,\n minimalDays: 4,\n weekend: [6, 7],\n },\n})\n\n/**\n * Íslenska / Icelandic locale/translation plugin for Sanity Studio\n *\n * @public\n */\nexport const isISLocale = definePlugin<{\n title?: string\n weekInfo?: LocaleDefinition['weekInfo']\n} | void>((config) => ({\n name: '@sanity/locale-is-is',\n i18n: {\n locales: [config ? {...locale, ...config} : locale],\n },\n}))\n"],"names":["defineLocale","definePlugin"],"mappings":";;;;;;AAEA,MAAM,SAASA,mBAAa,CAAA;AAAA,EAC1B,EAAI,EAAA,OAAA;AAAA,EACJ,KAAO,EAAA,aAAA;AAAA,EACP,OAAS,EAAA;AAAA,IACP;AAAA,MACE,SAAW,EAAA,UAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":["../src/index.ts"],"sourcesContent":["import {defineLocale, definePlugin, type LocaleDefinition} from 'sanity'\n\nconst locale = defineLocale({\n id: 'is-IS',\n title: 'Íslenska',\n bundles: [\n {\n namespace: 'comments',\n resources: () => import('./comments'),\n },\n\n {\n namespace: 'copy-paste',\n resources: () => import('./copy-paste'),\n },\n\n {\n namespace: 'structure',\n resources: () => import('./structure'),\n },\n\n {\n namespace: 'studio',\n resources: () => import('./studio'),\n },\n\n {\n namespace: 'tasks',\n resources: () => import('./tasks'),\n },\n\n {\n namespace: 'validation',\n resources: () => import('./validation'),\n },\n\n {\n namespace: 'vision',\n resources: () => import('./vision'),\n },\n ],\n weekInfo: {\n firstDay: 1,\n minimalDays: 4,\n weekend: [6, 7],\n },\n})\n\n/**\n * Íslenska / Icelandic locale/translation plugin for Sanity Studio\n *\n * @public\n */\nexport const isISLocale = definePlugin<{\n title?: string\n weekInfo?: LocaleDefinition['weekInfo']\n} | void>((config) => ({\n name: '@sanity/locale-is-is',\n i18n: {\n locales: [config ? {...locale, ...config} : locale],\n },\n}))\n"],"names":["defineLocale","definePlugin"],"mappings":";;;;;;AAEA,MAAM,SAASA,mBAAa,CAAA;AAAA,EAC1B,EAAI,EAAA,OAAA;AAAA,EACJ,KAAO,EAAA,aAAA;AAAA,EACP,OAAS,EAAA;AAAA,IACP;AAAA,MACE,SAAW,EAAA,UAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,4BAAY,KAAA;AAAA,KACtC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,YAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,8BAAc,KAAA;AAAA,KACxC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,WAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,6BAAa,KAAA;AAAA,KACvC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,QAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,0BAAU,KAAA;AAAA,KACpC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,OAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,yBAAS,KAAA;AAAA,KACnC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,YAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,8BAAc,KAAA;AAAA,KACxC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,QAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,0BAAU,KAAA;AAAA,KACpC;AAAA,GACF;AAAA,EACA,QAAU,EAAA;AAAA,IACR,QAAU,EAAA,CAAA;AAAA,IACV,WAAa,EAAA,CAAA;AAAA,IACb,OAAA,EAAS,CAAC,CAAA,EAAG,CAAC,CAAA;AAAA,GAChB;AACF,CAAC,CAAA,CAAA;AAOY,MAAA,UAAA,GAAaC,mBAGhB,CAAA,CAAC,MAAY,MAAA;AAAA,EACrB,IAAM,EAAA,sBAAA;AAAA,EACN,IAAM,EAAA;AAAA,IACJ,OAAA,EAAS,CAAC,MAAS,GAAA,EAAC,GAAG,MAAQ,EAAA,GAAG,MAAM,EAAA,GAAI,MAAM,CAAA;AAAA,GACpD;AACF,CAAE,CAAA;;;;"}
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import {LocaleDefinition} from 'sanity'
|
|
2
|
+
import {Plugin as Plugin_2} from 'sanity'
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Íslenska / Icelandic locale/translation plugin for Sanity Studio
|
|
6
|
+
*
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export declare const isISLocale: Plugin_2<void | {
|
|
10
|
+
title?: string
|
|
11
|
+
weekInfo?: LocaleDefinition['weekInfo']
|
|
12
|
+
}>
|
|
13
|
+
|
|
14
|
+
export {}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {LocaleDefinition} from 'sanity'
|
|
2
2
|
import {Plugin as Plugin_2} from 'sanity'
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -7,8 +7,8 @@ import {Plugin as Plugin_2} from 'sanity'
|
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
9
9
|
export declare const isISLocale: Plugin_2<void | {
|
|
10
|
-
title?: string
|
|
11
|
-
weekInfo?:
|
|
10
|
+
title?: string
|
|
11
|
+
weekInfo?: LocaleDefinition['weekInfo']
|
|
12
12
|
}>
|
|
13
13
|
|
|
14
14
|
export {}
|
package/dist/index.js
CHANGED
|
@@ -6,27 +6,31 @@ const locale = defineLocale({
|
|
|
6
6
|
bundles: [
|
|
7
7
|
{
|
|
8
8
|
namespace: "comments",
|
|
9
|
-
resources: () => import('./_chunks/comments.js')
|
|
9
|
+
resources: () => import('./_chunks-es/comments.js')
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
namespace: "copy-paste",
|
|
13
|
+
resources: () => import('./_chunks-es/copy-paste.js')
|
|
10
14
|
},
|
|
11
15
|
{
|
|
12
16
|
namespace: "structure",
|
|
13
|
-
resources: () => import('./_chunks/structure.js')
|
|
17
|
+
resources: () => import('./_chunks-es/structure.js')
|
|
14
18
|
},
|
|
15
19
|
{
|
|
16
20
|
namespace: "studio",
|
|
17
|
-
resources: () => import('./_chunks/studio.js')
|
|
21
|
+
resources: () => import('./_chunks-es/studio.js')
|
|
18
22
|
},
|
|
19
23
|
{
|
|
20
24
|
namespace: "tasks",
|
|
21
|
-
resources: () => import('./_chunks/tasks.js')
|
|
25
|
+
resources: () => import('./_chunks-es/tasks.js')
|
|
22
26
|
},
|
|
23
27
|
{
|
|
24
28
|
namespace: "validation",
|
|
25
|
-
resources: () => import('./_chunks/validation.js')
|
|
29
|
+
resources: () => import('./_chunks-es/validation.js')
|
|
26
30
|
},
|
|
27
31
|
{
|
|
28
32
|
namespace: "vision",
|
|
29
|
-
resources: () => import('./_chunks/vision.js')
|
|
33
|
+
resources: () => import('./_chunks-es/vision.js')
|
|
30
34
|
}
|
|
31
35
|
],
|
|
32
36
|
weekInfo: {
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import {defineLocale, definePlugin, type LocaleDefinition} from 'sanity'\n\nconst locale = defineLocale({\n id: 'is-IS',\n title: 'Íslenska',\n bundles: [\n {\n namespace: 'comments',\n resources: () => import('./comments'),\n },\n\n {\n namespace: 'structure',\n resources: () => import('./structure'),\n },\n\n {\n namespace: 'studio',\n resources: () => import('./studio'),\n },\n\n {\n namespace: 'tasks',\n resources: () => import('./tasks'),\n },\n\n {\n namespace: 'validation',\n resources: () => import('./validation'),\n },\n\n {\n namespace: 'vision',\n resources: () => import('./vision'),\n },\n ],\n weekInfo: {\n firstDay: 1,\n minimalDays: 4,\n weekend: [6, 7],\n },\n})\n\n/**\n * Íslenska / Icelandic locale/translation plugin for Sanity Studio\n *\n * @public\n */\nexport const isISLocale = definePlugin<{\n title?: string\n weekInfo?: LocaleDefinition['weekInfo']\n} | void>((config) => ({\n name: '@sanity/locale-is-is',\n i18n: {\n locales: [config ? {...locale, ...config} : locale],\n },\n}))\n"],"names":[],"mappings":";;AAEA,MAAM,SAAS,YAAa,CAAA;AAAA,EAC1B,EAAI,EAAA,OAAA;AAAA,EACJ,KAAO,EAAA,aAAA;AAAA,EACP,OAAS,EAAA;AAAA,IACP;AAAA,MACE,SAAW,EAAA,UAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import {defineLocale, definePlugin, type LocaleDefinition} from 'sanity'\n\nconst locale = defineLocale({\n id: 'is-IS',\n title: 'Íslenska',\n bundles: [\n {\n namespace: 'comments',\n resources: () => import('./comments'),\n },\n\n {\n namespace: 'copy-paste',\n resources: () => import('./copy-paste'),\n },\n\n {\n namespace: 'structure',\n resources: () => import('./structure'),\n },\n\n {\n namespace: 'studio',\n resources: () => import('./studio'),\n },\n\n {\n namespace: 'tasks',\n resources: () => import('./tasks'),\n },\n\n {\n namespace: 'validation',\n resources: () => import('./validation'),\n },\n\n {\n namespace: 'vision',\n resources: () => import('./vision'),\n },\n ],\n weekInfo: {\n firstDay: 1,\n minimalDays: 4,\n weekend: [6, 7],\n },\n})\n\n/**\n * Íslenska / Icelandic locale/translation plugin for Sanity Studio\n *\n * @public\n */\nexport const isISLocale = definePlugin<{\n title?: string\n weekInfo?: LocaleDefinition['weekInfo']\n} | void>((config) => ({\n name: '@sanity/locale-is-is',\n i18n: {\n locales: [config ? {...locale, ...config} : locale],\n },\n}))\n"],"names":[],"mappings":";;AAEA,MAAM,SAAS,YAAa,CAAA;AAAA,EAC1B,EAAI,EAAA,OAAA;AAAA,EACJ,KAAO,EAAA,aAAA;AAAA,EACP,OAAS,EAAA;AAAA,IACP;AAAA,MACE,SAAW,EAAA,UAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,0BAAY,CAAA;AAAA,KACtC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,YAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,4BAAc,CAAA;AAAA,KACxC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,WAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,2BAAa,CAAA;AAAA,KACvC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,QAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,wBAAU,CAAA;AAAA,KACpC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,OAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,uBAAS,CAAA;AAAA,KACnC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,YAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,4BAAc,CAAA;AAAA,KACxC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,QAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,wBAAU,CAAA;AAAA,KACpC;AAAA,GACF;AAAA,EACA,QAAU,EAAA;AAAA,IACR,QAAU,EAAA,CAAA;AAAA,IACV,WAAa,EAAA,CAAA;AAAA,IACb,OAAA,EAAS,CAAC,CAAA,EAAG,CAAC,CAAA;AAAA,GAChB;AACF,CAAC,CAAA,CAAA;AAOY,MAAA,UAAA,GAAa,YAGhB,CAAA,CAAC,MAAY,MAAA;AAAA,EACrB,IAAM,EAAA,sBAAA;AAAA,EACN,IAAM,EAAA;AAAA,IACJ,OAAA,EAAS,CAAC,MAAS,GAAA,EAAC,GAAG,MAAQ,EAAA,GAAG,MAAM,EAAA,GAAI,MAAM,CAAA;AAAA,GACpD;AACF,CAAE,CAAA;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/locale-is-is",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Icelandic / Íslenska locale/translation for Sanity Studio",
|
|
6
6
|
"keywords": [
|
|
@@ -30,7 +30,6 @@
|
|
|
30
30
|
"type": "module",
|
|
31
31
|
"exports": {
|
|
32
32
|
".": {
|
|
33
|
-
"types": "./dist/index.d.ts",
|
|
34
33
|
"source": "./src/index.ts",
|
|
35
34
|
"import": "./dist/index.js",
|
|
36
35
|
"require": "./dist/index.cjs",
|
|
@@ -40,7 +39,6 @@
|
|
|
40
39
|
},
|
|
41
40
|
"main": "./dist/index.cjs",
|
|
42
41
|
"module": "./dist/index.js",
|
|
43
|
-
"source": "./src/index.ts",
|
|
44
42
|
"types": "./dist/index.d.ts",
|
|
45
43
|
"files": [
|
|
46
44
|
"dist",
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import {removeUndefinedLocaleResources} from 'sanity'
|
|
2
|
+
|
|
3
|
+
export default removeUndefinedLocaleResources({
|
|
4
|
+
/** Text on the field action button to copy a document */
|
|
5
|
+
'copy-paste.field-action-copy-button.document.title': 'Afrita skjal',
|
|
6
|
+
/** Text on the field action button to copy a field */
|
|
7
|
+
'copy-paste.field-action-copy-button.field.title': 'Afrita reit',
|
|
8
|
+
/** Text on the field action button to paste a document */
|
|
9
|
+
'copy-paste.field-action-paste-button.document.title': 'Líma inn skjal',
|
|
10
|
+
/** Text on the field action button to paste a field */
|
|
11
|
+
'copy-paste.field-action-paste-button.field.title': 'Líma inn reit',
|
|
12
|
+
/** The error message that is shown when the clipboard is not supported */
|
|
13
|
+
'copy-paste.on-copy.validation.clipboard-not-supported.title':
|
|
14
|
+
'Vafrinn þinn styður ekki þessa aðgerð',
|
|
15
|
+
/** The success message that is shown when a document is copied */
|
|
16
|
+
'copy-paste.on-copy.validation.copy-document-success.title': 'Skjal "{{fieldNames}}" afritað',
|
|
17
|
+
/** The success message that is shown when a field is copied */
|
|
18
|
+
'copy-paste.on-copy.validation.copy-field_one-success.title': 'Reitur "{{fieldName}}" afritaður',
|
|
19
|
+
/** The error message that is shown when there is no value to copy */
|
|
20
|
+
'copy-paste.on-copy.validation.no-value.title': 'Tómt gildi, ekkert til að afrita',
|
|
21
|
+
/** --- On copy --- */
|
|
22
|
+
/** The error message that is shown when schema types are incompatible */
|
|
23
|
+
'copy-paste.on-copy.validation.schema-type-incompatible.title':
|
|
24
|
+
'Gat ekki leyst úr skematýpu fyrir slóð: {{path}}',
|
|
25
|
+
/** The validation message that is shown when array types are incompatible */
|
|
26
|
+
'copy-paste.on-paste.validation.array-type-incompatible.description':
|
|
27
|
+
'Gildi af gerðinni "{{type}}" er ekki leyfilegt í þessum fylkisreit',
|
|
28
|
+
/** The validation message that is shown when array values are incompatible */
|
|
29
|
+
'copy-paste.on-paste.validation.array-value-incompatible.description':
|
|
30
|
+
'Gildi af taginu "{{type}}" er ekki leyfilegt í þessum fylkisreit',
|
|
31
|
+
/** The validation message that is shown when the clipboard is empty */
|
|
32
|
+
'copy-paste.on-paste.validation.clipboard-empty.title': 'Ekkert til að líma inn',
|
|
33
|
+
/** The validation message that is shown when the clipboard item is invalid */
|
|
34
|
+
'copy-paste.on-paste.validation.clipboard-invalid.title': 'Ógilt klippiborðsatriði',
|
|
35
|
+
/** The success message that is shown when a document is pasted */
|
|
36
|
+
'copy-paste.on-paste.validation.document-paste-success.title': 'Skjal "{{fieldNames}}" uppfært',
|
|
37
|
+
/** The success message that is shown when a field is pasted */
|
|
38
|
+
'copy-paste.on-paste.validation.field_one-paste-success.title':
|
|
39
|
+
'Reitur "{{fieldName}}" uppfærður',
|
|
40
|
+
/** The validation message that is shown when image files are incompatible */
|
|
41
|
+
'copy-paste.on-paste.validation.image-file-incompatible.description':
|
|
42
|
+
'"{{sourceSchemaType}}" er ekki leyfilegt í "{{targetSchemaType}}"',
|
|
43
|
+
/** The error message that is shown when the MIME type is not accepted */
|
|
44
|
+
'copy-paste.on-paste.validation.mime-type-incompatible.description':
|
|
45
|
+
'MIME tag "{{mimeType}}" er ekki samþykkt fyrir þennan reit',
|
|
46
|
+
/** The error message that is shown when the MIME type validation fails */
|
|
47
|
+
'copy-paste.on-paste.validation.mime-type-validation-failed.description':
|
|
48
|
+
'MIME tagstaðfesting mistókst',
|
|
49
|
+
/** The warning message that is shown when not all values can be pasted */
|
|
50
|
+
'copy-paste.on-paste.validation.partial-warning.title': 'Gat ekki límt inn öll gildi',
|
|
51
|
+
/** The validation message that is shown when primitive types are incompatible */
|
|
52
|
+
'copy-paste.on-paste.validation.primitive-type-incompatible.description':
|
|
53
|
+
'Gildi af taginu "{{type}}" er ekki leyfilegt í þessum reit',
|
|
54
|
+
/** --- On paste --- */
|
|
55
|
+
/** The validation message that is shown when pasting a value into a read-only target */
|
|
56
|
+
'copy-paste.on-paste.validation.read-only-target.description': 'Markið er skrifvarið',
|
|
57
|
+
/** The validation message that is shown when reference is incompatible with filter */
|
|
58
|
+
'copy-paste.on-paste.validation.reference-filter-incompatible.description':
|
|
59
|
+
'Tilvísun er ekki leyfileg í tilvísunarreit samkvæmt síu',
|
|
60
|
+
/** The validation message that is shown when reference types are incompatible */
|
|
61
|
+
'copy-paste.on-paste.validation.reference-type-incompatible.description':
|
|
62
|
+
'Tilvísanir af taginu "{{sourceReferenceType}}" eru ekki leyfðar í tilvísunarreit sem samþykkir tög "{{targetReferenceTypes}}"',
|
|
63
|
+
/** The validation message that is shown when the source and target schema types are incompatible */
|
|
64
|
+
'copy-paste.on-paste.validation.schema-type-incompatible.description':
|
|
65
|
+
'Uppruna- og markskematýpur eru ekki samrýmanlegar',
|
|
66
|
+
/** The validation message that is shown when schema types are incompatible */
|
|
67
|
+
'copy-paste.on-paste.validation.schema-type-incompatible.title':
|
|
68
|
+
'Gat ekki leyst úr skematýpu fyrir slóð: {{path}}',
|
|
69
|
+
/** The validation message that is shown when string values are incompatible */
|
|
70
|
+
'copy-paste.on-paste.validation.string-value-incompatible.description':
|
|
71
|
+
'Gildi "{{value}}" er ekki leyfilegt í "{{allowedStrings}}"',
|
|
72
|
+
})
|
package/src/index.ts
CHANGED
package/src/structure.ts
CHANGED
|
@@ -341,6 +341,9 @@ export default removeUndefinedLocaleResources({
|
|
|
341
341
|
/** The text when a discard changes operation succeeded */
|
|
342
342
|
'panes.document-operation-results.operation-success_discardChanges':
|
|
343
343
|
'Öllum breytingum síðan síðast var birt hefur nú verið hent. Hægt er að endurheimta hentum drögum úr sögunni',
|
|
344
|
+
/** The text when a duplicate operation succeeded */
|
|
345
|
+
'panes.document-operation-results.operation-success_duplicate':
|
|
346
|
+
'Skjalið var afritað með góðum árangri',
|
|
344
347
|
/** The text when a publish operation succeeded */
|
|
345
348
|
'panes.document-operation-results.operation-success_publish': 'Skjalið var birt',
|
|
346
349
|
/** The text when a restore operation succeeded */
|
package/src/studio.ts
CHANGED
|
@@ -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
|
|
|
@@ -384,12 +386,18 @@ export default removeUndefinedLocaleResources({
|
|
|
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 */
|
|
@@ -488,12 +496,24 @@ export default removeUndefinedLocaleResources({
|
|
|
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 */
|
|
@@ -633,7 +653,9 @@ export default removeUndefinedLocaleResources({
|
|
|
633
653
|
'inputs.invalid-value.reset-button.text': 'Endurstilla gildi',
|
|
634
654
|
/** Invalid property value */
|
|
635
655
|
'inputs.invalid-value.title': 'Ógilt eignagildi',
|
|
636
|
-
/**
|
|
656
|
+
/** Title for the "All fields" field group */
|
|
657
|
+
'inputs.object.field-group-tabs.all-fields-title': 'Allir reitir',
|
|
658
|
+
/** Aria label for the "Field groups" select control on smaller screens */
|
|
637
659
|
'inputs.object.field-group-tabs.aria-label': 'Hópar reita',
|
|
638
660
|
/** Read-only field description */
|
|
639
661
|
'inputs.object.unknown-fields.read-only.description':
|
|
@@ -678,13 +700,13 @@ export default removeUndefinedLocaleResources({
|
|
|
678
700
|
'Smelltu eða ýttu á bil til að virkja',
|
|
679
701
|
/** Label for activate on focus with context of tap and not focused */
|
|
680
702
|
'inputs.portable-text.activate-on-focus-message_tap': 'Ýttu til að virkja',
|
|
681
|
-
/**Aria label for the annotation object */
|
|
703
|
+
/** Aria label for the annotation object */
|
|
682
704
|
'inputs.portable-text.annotation-aria-label': 'Athugasemdahlutur',
|
|
683
705
|
/** Title for dialog that allows editing an annotation */
|
|
684
706
|
'inputs.portable-text.annotation-editor.title': 'Breyta {{schemaType}}',
|
|
685
707
|
/** Title of the default "link" annotation */
|
|
686
708
|
'inputs.portable-text.annotation.link': 'Hlekkur',
|
|
687
|
-
/**Aria label for the block object */
|
|
709
|
+
/** Aria label for the block object */
|
|
688
710
|
'inputs.portable-text.block.aria-label': 'Blokka hlutu',
|
|
689
711
|
/** Label for action to edit a block item, in the case where it is editable */
|
|
690
712
|
'inputs.portable-text.block.edit': 'Breyta',
|
|
@@ -708,7 +730,7 @@ export default removeUndefinedLocaleResources({
|
|
|
708
730
|
'inputs.portable-text.decorator.underline': 'Undirstrika',
|
|
709
731
|
/** Placeholder text for when the editor is empty */
|
|
710
732
|
'inputs.portable-text.empty-placeholder': 'Tómt',
|
|
711
|
-
/**Aria label for the block object */
|
|
733
|
+
/** Aria label for the block object */
|
|
712
734
|
'inputs.portable-text.inline-block.aria-label': 'Innri hlutur',
|
|
713
735
|
/** Label for action to edit an inline object item */
|
|
714
736
|
'inputs.portable-text.inline-object.edit': 'Breyta hlut',
|
|
@@ -1000,12 +1022,21 @@ export default removeUndefinedLocaleResources({
|
|
|
1000
1022
|
/** The explanation when unable to delete a particular document */
|
|
1001
1023
|
'insufficient-permissions-message.not-authorized-explanation_delete-document':
|
|
1002
1024
|
'Þú hefur ekki heimild til að eyða þessu skjali.',
|
|
1025
|
+
/** The explanation when unable to delete a schedule on scheduled publishing */
|
|
1026
|
+
'insufficient-permissions-message.not-authorized-explanation_delete-schedules':
|
|
1027
|
+
'Þú hefur ekki heimild til að eyða áætlunum.',
|
|
1003
1028
|
/** The explanation when unable to discard changes in a particular document */
|
|
1004
1029
|
'insufficient-permissions-message.not-authorized-explanation_discard-changes':
|
|
1005
1030
|
'Þú hefur ekki heimild til að henda breytingum í þessu skjali.',
|
|
1006
1031
|
/** The explanation when unable to duplicate a particular document */
|
|
1007
1032
|
'insufficient-permissions-message.not-authorized-explanation_duplicate-document':
|
|
1008
1033
|
'Þú hefur ekki heimild til að tvöfalda þetta skjal.',
|
|
1034
|
+
/** The explanation when unable to edit a schedule on scheduled publishing */
|
|
1035
|
+
'insufficient-permissions-message.not-authorized-explanation_edit-schedules':
|
|
1036
|
+
'Þú hefur ekki heimild til að breyta áætlunum.',
|
|
1037
|
+
/** The explanation when unable to execute a schedule on scheduled publishing */
|
|
1038
|
+
'insufficient-permissions-message.not-authorized-explanation_execute-schedules':
|
|
1039
|
+
'Þú hefur ekki heimild til að framkvæma áætlanir.',
|
|
1009
1040
|
/** The explanation when unable to publish a particular document */
|
|
1010
1041
|
'insufficient-permissions-message.not-authorized-explanation_publish-document':
|
|
1011
1042
|
'Þú hefur ekki heimild til að birta þetta skjal.',
|
|
@@ -1047,6 +1078,11 @@ export default removeUndefinedLocaleResources({
|
|
|
1047
1078
|
/** Title for "Create new document" dialog */
|
|
1048
1079
|
'new-document.title': 'Búa til nýtt skjal',
|
|
1049
1080
|
|
|
1081
|
+
/** Label for button that will make the browser reload when users' studio version is out-of-date */
|
|
1082
|
+
'package-version.new-package-available.reload-button': 'Endurhlaða',
|
|
1083
|
+
/** Title of the alert for studio users when packages in their studio are out-of-date */
|
|
1084
|
+
'package-version.new-package-available.title': 'Sanity Studio var uppfært',
|
|
1085
|
+
|
|
1050
1086
|
/** Label for action to manage members of the current studio project */
|
|
1051
1087
|
'presence.action.manage-members': 'Stjórna meðlimum',
|
|
1052
1088
|
/** Accessibility label for presence menu button */
|
|
@@ -1506,6 +1542,15 @@ export default removeUndefinedLocaleResources({
|
|
|
1506
1542
|
/** Accessibility label for the search results section, shown when the user has typed valid terms */
|
|
1507
1543
|
'search.search-results-aria-label': 'Leitarniðurstöður',
|
|
1508
1544
|
|
|
1545
|
+
/** Label for the edit columns button to change field visibility in sheet list */
|
|
1546
|
+
'sheet-list.edit-columns': 'Breyta dálkum',
|
|
1547
|
+
/** Label for the header menu option to hide a field from the sheet list */
|
|
1548
|
+
'sheet-list.hide-field': 'Fjarlægja úr töflu',
|
|
1549
|
+
/** Label for reset column visibilities button */
|
|
1550
|
+
'sheet-list.reset-columns': 'Endurstilla dálka',
|
|
1551
|
+
/** Title for the edit columns menu */
|
|
1552
|
+
'sheet-list.select-fields': 'Veldu allt að 5 sviðstegundir',
|
|
1553
|
+
|
|
1509
1554
|
/** Accessibility label for the navbar status button */
|
|
1510
1555
|
'status-button.aria-label': 'Stillingarstaða',
|
|
1511
1556
|
|
|
@@ -1523,7 +1568,12 @@ export default removeUndefinedLocaleResources({
|
|
|
1523
1568
|
'timeline.error.unable-to-load-revision': 'Ekki hægt að hlaða endurskoðun',
|
|
1524
1569
|
/** Label for when the timeline item is the latest in the history */
|
|
1525
1570
|
'timeline.latest': 'Nýjasta',
|
|
1526
|
-
/** Label for latest
|
|
1571
|
+
/** Label for latest revision for timeline menu dropdown */
|
|
1572
|
+
'timeline.latest-revision': 'Nýjasta endurskoðun',
|
|
1573
|
+
/**
|
|
1574
|
+
* Label for latest revision for timeline menu dropdown
|
|
1575
|
+
* @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_
|
|
1576
|
+
* */
|
|
1527
1577
|
'timeline.latest-version': 'Nýjasta útgáfa',
|
|
1528
1578
|
/** The aria-label for the list of revisions in the timeline */
|
|
1529
1579
|
'timeline.list.aria-label': 'Endurskoðanir skjals',
|
|
@@ -1569,9 +1619,28 @@ export default removeUndefinedLocaleResources({
|
|
|
1569
1619
|
/** Label for missing change version for timeline menu dropdown are showing */
|
|
1570
1620
|
'timeline.since-version-missing': 'Síðan: óþekkt útgáfa',
|
|
1571
1621
|
|
|
1572
|
-
/**Aria label for the action buttons in the PTE toolbar */
|
|
1622
|
+
/** Aria label for the action buttons in the PTE toolbar */
|
|
1573
1623
|
'toolbar.portable-text.action-button-aria-label': '{{action}}',
|
|
1574
1624
|
|
|
1625
|
+
/** Accessibility label for the breadcrumb menu */
|
|
1626
|
+
'tree-editing-dialog.breadcrumbs.menu': 'Valmynd brauðmola',
|
|
1627
|
+
/** Title placeholder for search input in array of objects */
|
|
1628
|
+
'tree-editing-dialog.search-placeholder': 'Leita',
|
|
1629
|
+
/** Menu aria label for the search menu */
|
|
1630
|
+
'tree-editing-dialog.search.menu-label': 'Leitarmatseðill',
|
|
1631
|
+
/** Title label for when no search results are found on the tree of objects */
|
|
1632
|
+
'tree-editing-dialog.search.no-results-title': 'Engar niðurstöður fundust',
|
|
1633
|
+
/** Label to close the sidebar */
|
|
1634
|
+
'tree-editing-dialog.sidebar.action.close': 'Loka hliðarstiku',
|
|
1635
|
+
/** Collapse label the menu item in the sidebar */
|
|
1636
|
+
'tree-editing-dialog.sidebar.action.collapse': 'Fella saman',
|
|
1637
|
+
/** Label to close the dialog */
|
|
1638
|
+
'tree-editing-dialog.sidebar.action.done': 'Lokið',
|
|
1639
|
+
/** Exapnd label the menu item in the sidebar */
|
|
1640
|
+
'tree-editing-dialog.sidebar.action.expand': 'Útvíkka',
|
|
1641
|
+
/** Label to open the sidebar */
|
|
1642
|
+
'tree-editing-dialog.sidebar.action.open': 'Opna hliðarstiku',
|
|
1643
|
+
|
|
1575
1644
|
/** Label for button showing the free trial days left */
|
|
1576
1645
|
'user-menu.action.free-trial_one': '{{count}} dagur eftir af prufutíma',
|
|
1577
1646
|
'user-menu.action.free-trial_other': '{{count}} dagar eftir af prufutíma',
|
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': 'Ekki hægt að endurheimta eftir að því er eytt.',
|
|
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)',
|
|
61
|
+
/** The heading in the tasks sidebar, in the assigned tab, under the closed details, when it's empty.*/
|
|
50
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
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.*/
|
|
53
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.*/
|
|
54
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
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/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)
|