@sanity/locale-ca-es 1.0.1 → 1.0.3
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 +3 -0
- package/dist/_chunks-cjs/copy-paste.cjs.map +1 -1
- package/dist/_chunks-cjs/structure.cjs +39 -24
- package/dist/_chunks-cjs/structure.cjs.map +1 -1
- package/dist/_chunks-cjs/studio.cjs +63 -41
- package/dist/_chunks-cjs/studio.cjs.map +1 -1
- package/dist/_chunks-cjs/validation.cjs +9 -0
- package/dist/_chunks-cjs/validation.cjs.map +1 -1
- package/dist/_chunks-cjs/vision.cjs +17 -34
- package/dist/_chunks-cjs/vision.cjs.map +1 -1
- package/dist/_chunks-es/copy-paste.js +3 -0
- package/dist/_chunks-es/copy-paste.js.map +1 -1
- package/dist/_chunks-es/structure.js +39 -24
- package/dist/_chunks-es/structure.js.map +1 -1
- package/dist/_chunks-es/studio.js +63 -41
- package/dist/_chunks-es/studio.js.map +1 -1
- package/dist/_chunks-es/validation.js +9 -0
- package/dist/_chunks-es/validation.js.map +1 -1
- package/dist/_chunks-es/vision.js +17 -34
- package/dist/_chunks-es/vision.js.map +1 -1
- package/package.json +2 -2
- package/src/copy-paste.ts +2 -0
- package/src/structure.ts +36 -12
- package/src/studio.ts +54 -23
- package/src/validation.ts +6 -0
- package/src/vision.ts +17 -17
|
@@ -46,6 +46,12 @@ var sanity = require("sanity"), validation = sanity.removeUndefinedLocaleResourc
|
|
|
46
46
|
"object.asset-required_file": "Es requereix un fitxer",
|
|
47
47
|
/** Object is missing a reference to an image asset document in its `asset` field */
|
|
48
48
|
"object.asset-required_image": "Es requereix una imatge",
|
|
49
|
+
/** Media can't be found in the Media Library */
|
|
50
|
+
"object.media-not-found": void 0,
|
|
51
|
+
// 'The asset could not found in the Media Library'
|
|
52
|
+
/** Media object is missing a reference to a document in its `_ref` field */
|
|
53
|
+
"object.not-media-library-asset": void 0,
|
|
54
|
+
// 'Must be a reference to a Media Library asset'
|
|
49
55
|
/** Object is not a reference to a document (eg `{_ref: 'documentId'}`) */
|
|
50
56
|
"object.not-reference": "Ha de ser una refer\xE8ncia a un document",
|
|
51
57
|
/** Object references a document which is not published */
|
|
@@ -56,6 +62,9 @@ var sanity = require("sanity"), validation = sanity.removeUndefinedLocaleResourc
|
|
|
56
62
|
"panel.no-errors-message": "No hi ha errors de validaci\xF3",
|
|
57
63
|
/** Title for the actual "Validation" panel/feature */
|
|
58
64
|
"panel.title": "Validaci\xF3",
|
|
65
|
+
/** Message shown when the validation panel is opened but the document is going to unpublish */
|
|
66
|
+
"panel.unpublish-message": void 0,
|
|
67
|
+
// 'Document is going to unpublish, no validation errors are shown'
|
|
59
68
|
/** Slug is an object, but is missing a `current` string property */
|
|
60
69
|
"slug.missing-current": "El slug ha de tenir un valor",
|
|
61
70
|
/** Slug is not an object (eg `{current: 'some-slug'}`) */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validation.cjs","sources":["../../src/validation.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Array must have exactly \"$wantedLength\" items, but has more/less */\n 'array.exact-length': 'Ha de tenir exactament {{wantedLength}} elements',\n /** Portable Text array must have exactly \"$wantedLength\" blocks, but has more/less */\n 'array.exact-length_blocks': 'Ha de tenir exactament {{wantedLength}} blocs',\n /** Array item is a duplicate, but array wants only unique items */\n 'array.item-duplicate': 'No pot ser un duplicat',\n /** Array has more than the maximum of \"$maxLength\" items */\n 'array.maximum-length': 'Ha de tenir com a màxim {{maxLength}} elements',\n /** Portable Text array has more than the maximum of \"$maxLength\" items */\n 'array.maximum-length_blocks': 'Ha de tenir com a màxim {{maxLength}} blocs',\n /** Array has less than the minimum of \"$minLength\" items */\n 'array.minimum-length': 'Ha de tenir com a mínim {{minLength}} elements',\n /** Portable Text array has less than the minimum of \"$minLength\" blocks */\n 'array.minimum-length_blocks': 'Ha de tenir com a mínim {{minLength}} blocs',\n\n /** Date is not valid or not in the correct format (ISO-8601) */\n 'date.invalid-format': 'Ha de ser una cadena de text amb data formatada en ISO-8601 vàlida',\n /** Date is later than the given maximum date \"$maxDate\" */\n 'date.maximum': 'Ha de ser igual o anterior a {{maxDate}}',\n /** Date is earlier than the given minimum date \"$minDate\" */\n 'date.minimum': 'Ha de ser igual o posterior a {{minDate}}',\n\n /** A value of incorrect type is found, eg found `number` instead of `string` */\n 'generic.incorrect-type': 'Tipus esperat \"{{expectedType}}\", trobat \"{{actualType}}\"',\n /** Value is not one of the values specifically allowed */\n 'generic.not-allowed': 'El valor no coincideix amb cap dels valors permesos',\n /** Value \"$givenValue\" is not one of the values specifically allowed */\n 'generic.not-allowed_hint': 'El valor \"{{hint}}\" no coincideix amb cap dels valors permesos',\n /** A value is expected, but none is provided */\n 'generic.required': 'Requerit',\n\n /** Number is less than the given minimum threshold value \"$threshold\" */\n 'number.greater-than': 'Ha de ser més gran que {{threshold}}',\n /** Number is greater than the given maximum threshold value \"$threshold\" */\n 'number.less-than': 'Ha de ser menor que {{threshold}}',\n /** Number is higher than the given maximum value \"$maxNumber\" */\n 'number.maximum': 'Ha de ser menor o igual a {{maxNumber}}',\n /** Number has more precision (decimals) than the allowed \"$limit\" */\n 'number.maximum-precision': 'La màxima precisió és {{limit}}',\n /** Number is lower than the given minimum value \"$minNumber\" */\n 'number.minimum': 'Ha de ser més gran o igual a {{minNumber}}',\n /** Number is not an integer (\"whole number\") */\n 'number.non-integer': 'Ha de ser un nombre enter',\n\n /** Object is missing a reference to an asset document in its `asset` field */\n 'object.asset-required': 'Es requereix un actiu',\n /** Object is missing a reference to a file asset document in its `asset` field */\n 'object.asset-required_file': 'Es requereix un fitxer',\n /** Object is missing a reference to an image asset document in its `asset` field */\n 'object.asset-required_image': 'Es requereix una imatge',\n /** Object is not a reference to a document (eg `{_ref: 'documentId'}`) */\n 'object.not-reference': 'Ha de ser una referència a un document',\n /** Object references a document which is not published */\n 'object.reference-not-published': 'El document referenciat ha de ser publicat',\n\n /** Accessibility label for closing the validation panel */\n 'panel.close-button-aria-label': 'Tanca la validació',\n /** Message shown when the validation panel is opened but there are no errors/warnings */\n 'panel.no-errors-message': 'No hi ha errors de validació',\n /** Title for the actual \"Validation\" panel/feature */\n 'panel.title': 'Validació',\n\n /** Slug is an object, but is missing a `current` string property */\n 'slug.missing-current': 'El slug ha de tenir un valor',\n /** Slug is not an object (eg `{current: 'some-slug'}`) */\n 'slug.not-object': 'El slug ha de ser un objecte',\n /** Slug is already in use somewhere else, but needs to be unique */\n 'slug.not-unique': 'El slug ja està en ús',\n\n /** String is not a valid email address */\n 'string.email': 'Ha de ser una adreça de correu electrònic vàlida',\n /** String has a different character length than the exact number \"$wantedLength\" */\n 'string.exact-length': 'Ha de tenir exactament {{wantedLength}} caràcters',\n /** String contains characters that are not in lowercase */\n 'string.lowercase': 'Ha de ser tot en caràcters minúsculs',\n /** String is longer than the limit of \"$maxLength\" characters */\n 'string.maximum-length': 'Ha de tenir com a màxim {{maxLength}} caràcters',\n /** String is shorter than the limit of \"$minLength\" characters */\n 'string.minimum-length': 'Ha de tenir com a mínim {{minLength}} caràcters',\n /** String does not match the given regular expression, but should */\n 'string.regex-does-not-match': 'No coincideix amb el patró \"{{name}}\"',\n /** String matches the given regular expression, but should not */\n 'string.regex-match': 'No ha de coincidir amb el patró \"{{name}}\"',\n /** String contains characters that are not in uppercase */\n 'string.uppercase': 'Ha de ser tot en caràcters majúsculs',\n /** String contains a protocol/scheme that is not allowed, eg (`ftp`, `mailto`…) */\n 'string.url.disallowed-scheme': 'No coincideix amb els protocols/esquemes permesos',\n /** String contains a URL with a username or password specified before the host */\n 'string.url.includes-credentials': \"No es permeten nom d'usuari/contrasenya\",\n /** String is not a valid URL */\n 'string.url.invalid': 'No és una URL vàlida',\n /** String is not an absolute URL (eg it is missing a protocol/host) */\n 'string.url.not-absolute': 'No es permeten URLs relatives',\n /** String is not a relative URL (eg it contains a protocol/host) */\n 'string.url.not-relative': 'Només es permeten URLs relatives',\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":";gCAEA,aAAeA,sCAA+B;AAAA;AAAA,EAE5C,sBAAsB;AAAA;AAAA,EAEtB,6BAA6B;AAAA;AAAA,EAE7B,wBAAwB;AAAA;AAAA,EAExB,wBAAwB;AAAA;AAAA,EAExB,+BAA+B;AAAA;AAAA,EAE/B,wBAAwB;AAAA;AAAA,EAExB,+BAA+B;AAAA;AAAA,EAG/B,uBAAuB;AAAA;AAAA,EAEvB,gBAAgB;AAAA;AAAA,EAEhB,gBAAgB;AAAA;AAAA,EAGhB,0BAA0B;AAAA;AAAA,EAE1B,uBAAuB;AAAA;AAAA,EAEvB,4BAA4B;AAAA;AAAA,EAE5B,oBAAoB;AAAA;AAAA,EAGpB,uBAAuB;AAAA;AAAA,EAEvB,oBAAoB;AAAA;AAAA,EAEpB,kBAAkB;AAAA;AAAA,EAElB,4BAA4B;AAAA;AAAA,EAE5B,kBAAkB;AAAA;AAAA,EAElB,sBAAsB;AAAA;AAAA,EAGtB,yBAAyB;AAAA;AAAA,EAEzB,8BAA8B;AAAA;AAAA,EAE9B,+BAA+B;AAAA;AAAA,EAE/B,wBAAwB;AAAA;AAAA,EAExB,kCAAkC;AAAA;AAAA,EAGlC,iCAAiC;AAAA;AAAA,EAEjC,2BAA2B;AAAA;AAAA,EAE3B,eAAe;AAAA;AAAA,
|
|
1
|
+
{"version":3,"file":"validation.cjs","sources":["../../src/validation.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Array must have exactly \"$wantedLength\" items, but has more/less */\n 'array.exact-length': 'Ha de tenir exactament {{wantedLength}} elements',\n /** Portable Text array must have exactly \"$wantedLength\" blocks, but has more/less */\n 'array.exact-length_blocks': 'Ha de tenir exactament {{wantedLength}} blocs',\n /** Array item is a duplicate, but array wants only unique items */\n 'array.item-duplicate': 'No pot ser un duplicat',\n /** Array has more than the maximum of \"$maxLength\" items */\n 'array.maximum-length': 'Ha de tenir com a màxim {{maxLength}} elements',\n /** Portable Text array has more than the maximum of \"$maxLength\" items */\n 'array.maximum-length_blocks': 'Ha de tenir com a màxim {{maxLength}} blocs',\n /** Array has less than the minimum of \"$minLength\" items */\n 'array.minimum-length': 'Ha de tenir com a mínim {{minLength}} elements',\n /** Portable Text array has less than the minimum of \"$minLength\" blocks */\n 'array.minimum-length_blocks': 'Ha de tenir com a mínim {{minLength}} blocs',\n\n /** Date is not valid or not in the correct format (ISO-8601) */\n 'date.invalid-format': 'Ha de ser una cadena de text amb data formatada en ISO-8601 vàlida',\n /** Date is later than the given maximum date \"$maxDate\" */\n 'date.maximum': 'Ha de ser igual o anterior a {{maxDate}}',\n /** Date is earlier than the given minimum date \"$minDate\" */\n 'date.minimum': 'Ha de ser igual o posterior a {{minDate}}',\n\n /** A value of incorrect type is found, eg found `number` instead of `string` */\n 'generic.incorrect-type': 'Tipus esperat \"{{expectedType}}\", trobat \"{{actualType}}\"',\n /** Value is not one of the values specifically allowed */\n 'generic.not-allowed': 'El valor no coincideix amb cap dels valors permesos',\n /** Value \"$givenValue\" is not one of the values specifically allowed */\n 'generic.not-allowed_hint': 'El valor \"{{hint}}\" no coincideix amb cap dels valors permesos',\n /** A value is expected, but none is provided */\n 'generic.required': 'Requerit',\n\n /** Number is less than the given minimum threshold value \"$threshold\" */\n 'number.greater-than': 'Ha de ser més gran que {{threshold}}',\n /** Number is greater than the given maximum threshold value \"$threshold\" */\n 'number.less-than': 'Ha de ser menor que {{threshold}}',\n /** Number is higher than the given maximum value \"$maxNumber\" */\n 'number.maximum': 'Ha de ser menor o igual a {{maxNumber}}',\n /** Number has more precision (decimals) than the allowed \"$limit\" */\n 'number.maximum-precision': 'La màxima precisió és {{limit}}',\n /** Number is lower than the given minimum value \"$minNumber\" */\n 'number.minimum': 'Ha de ser més gran o igual a {{minNumber}}',\n /** Number is not an integer (\"whole number\") */\n 'number.non-integer': 'Ha de ser un nombre enter',\n\n /** Object is missing a reference to an asset document in its `asset` field */\n 'object.asset-required': 'Es requereix un actiu',\n /** Object is missing a reference to a file asset document in its `asset` field */\n 'object.asset-required_file': 'Es requereix un fitxer',\n /** Object is missing a reference to an image asset document in its `asset` field */\n 'object.asset-required_image': 'Es requereix una imatge',\n /** Media can't be found in the Media Library */\n 'object.media-not-found': undefined, // 'The asset could not found in the Media Library'\n /** Media object is missing a reference to a document in its `_ref` field */\n 'object.not-media-library-asset': undefined, // 'Must be a reference to a Media Library asset'\n /** Object is not a reference to a document (eg `{_ref: 'documentId'}`) */\n 'object.not-reference': 'Ha de ser una referència a un document',\n /** Object references a document which is not published */\n 'object.reference-not-published': 'El document referenciat ha de ser publicat',\n\n /** Accessibility label for closing the validation panel */\n 'panel.close-button-aria-label': 'Tanca la validació',\n /** Message shown when the validation panel is opened but there are no errors/warnings */\n 'panel.no-errors-message': 'No hi ha errors de validació',\n /** Title for the actual \"Validation\" panel/feature */\n 'panel.title': 'Validació',\n /** Message shown when the validation panel is opened but the document is going to unpublish */\n 'panel.unpublish-message': undefined, // 'Document is going to unpublish, no validation errors are shown'\n\n /** Slug is an object, but is missing a `current` string property */\n 'slug.missing-current': 'El slug ha de tenir un valor',\n /** Slug is not an object (eg `{current: 'some-slug'}`) */\n 'slug.not-object': 'El slug ha de ser un objecte',\n /** Slug is already in use somewhere else, but needs to be unique */\n 'slug.not-unique': 'El slug ja està en ús',\n\n /** String is not a valid email address */\n 'string.email': 'Ha de ser una adreça de correu electrònic vàlida',\n /** String has a different character length than the exact number \"$wantedLength\" */\n 'string.exact-length': 'Ha de tenir exactament {{wantedLength}} caràcters',\n /** String contains characters that are not in lowercase */\n 'string.lowercase': 'Ha de ser tot en caràcters minúsculs',\n /** String is longer than the limit of \"$maxLength\" characters */\n 'string.maximum-length': 'Ha de tenir com a màxim {{maxLength}} caràcters',\n /** String is shorter than the limit of \"$minLength\" characters */\n 'string.minimum-length': 'Ha de tenir com a mínim {{minLength}} caràcters',\n /** String does not match the given regular expression, but should */\n 'string.regex-does-not-match': 'No coincideix amb el patró \"{{name}}\"',\n /** String matches the given regular expression, but should not */\n 'string.regex-match': 'No ha de coincidir amb el patró \"{{name}}\"',\n /** String contains characters that are not in uppercase */\n 'string.uppercase': 'Ha de ser tot en caràcters majúsculs',\n /** String contains a protocol/scheme that is not allowed, eg (`ftp`, `mailto`…) */\n 'string.url.disallowed-scheme': 'No coincideix amb els protocols/esquemes permesos',\n /** String contains a URL with a username or password specified before the host */\n 'string.url.includes-credentials': \"No es permeten nom d'usuari/contrasenya\",\n /** String is not a valid URL */\n 'string.url.invalid': 'No és una URL vàlida',\n /** String is not an absolute URL (eg it is missing a protocol/host) */\n 'string.url.not-absolute': 'No es permeten URLs relatives',\n /** String is not a relative URL (eg it contains a protocol/host) */\n 'string.url.not-relative': 'Només es permeten URLs relatives',\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":";gCAEA,aAAeA,sCAA+B;AAAA;AAAA,EAE5C,sBAAsB;AAAA;AAAA,EAEtB,6BAA6B;AAAA;AAAA,EAE7B,wBAAwB;AAAA;AAAA,EAExB,wBAAwB;AAAA;AAAA,EAExB,+BAA+B;AAAA;AAAA,EAE/B,wBAAwB;AAAA;AAAA,EAExB,+BAA+B;AAAA;AAAA,EAG/B,uBAAuB;AAAA;AAAA,EAEvB,gBAAgB;AAAA;AAAA,EAEhB,gBAAgB;AAAA;AAAA,EAGhB,0BAA0B;AAAA;AAAA,EAE1B,uBAAuB;AAAA;AAAA,EAEvB,4BAA4B;AAAA;AAAA,EAE5B,oBAAoB;AAAA;AAAA,EAGpB,uBAAuB;AAAA;AAAA,EAEvB,oBAAoB;AAAA;AAAA,EAEpB,kBAAkB;AAAA;AAAA,EAElB,4BAA4B;AAAA;AAAA,EAE5B,kBAAkB;AAAA;AAAA,EAElB,sBAAsB;AAAA;AAAA,EAGtB,yBAAyB;AAAA;AAAA,EAEzB,8BAA8B;AAAA;AAAA,EAE9B,+BAA+B;AAAA;AAAA,EAE/B,0BAA0B;AAAA;AAAA;AAAA,EAE1B,kCAAkC;AAAA;AAAA;AAAA,EAElC,wBAAwB;AAAA;AAAA,EAExB,kCAAkC;AAAA;AAAA,EAGlC,iCAAiC;AAAA;AAAA,EAEjC,2BAA2B;AAAA;AAAA,EAE3B,eAAe;AAAA;AAAA,EAEf,2BAA2B;AAAA;AAAA;AAAA,EAG3B,wBAAwB;AAAA;AAAA,EAExB,mBAAmB;AAAA;AAAA,EAEnB,mBAAmB;AAAA;AAAA,EAGnB,gBAAgB;AAAA;AAAA,EAEhB,uBAAuB;AAAA;AAAA,EAEvB,oBAAoB;AAAA;AAAA,EAEpB,yBAAyB;AAAA;AAAA,EAEzB,yBAAyB;AAAA;AAAA,EAEzB,+BAA+B;AAAA;AAAA,EAE/B,sBAAsB;AAAA;AAAA,EAEtB,oBAAoB;AAAA;AAAA,EAEpB,gCAAgC;AAAA;AAAA,EAEhC,mCAAmC;AAAA;AAAA,EAEnC,sBAAsB;AAAA;AAAA,EAEtB,2BAA2B;AAAA;AAAA,EAE3B,2BAA2B;AAC7B,CAAC;;"}
|
|
@@ -3,60 +3,46 @@ var sanity = require("sanity"), vision = sanity.removeUndefinedLocaleResources({
|
|
|
3
3
|
/** Label for action "Copy to clipboard", tied to the "Query URL" field. Also used for accessibility purposes on button */
|
|
4
4
|
"action.copy-url-to-clipboard": "Copia al porta-retalls",
|
|
5
5
|
/** Label for deleting a query */
|
|
6
|
-
"action.delete":
|
|
7
|
-
// 'Delete'
|
|
6
|
+
"action.delete": "Esborra",
|
|
8
7
|
/** Label for editing a query's title */
|
|
9
|
-
"action.edit-title":
|
|
10
|
-
// 'Edit title'
|
|
8
|
+
"action.edit-title": "Edita el t\xEDtol",
|
|
11
9
|
/** Label for stopping an ongoing listen operation */
|
|
12
10
|
"action.listen-cancel": "Atura",
|
|
13
11
|
/** Label for setting up a listener */
|
|
14
12
|
"action.listen-execute": "Escolta",
|
|
15
13
|
/** Label for query loading table */
|
|
16
|
-
"action.load-queries":
|
|
17
|
-
// 'Load queries'
|
|
14
|
+
"action.load-queries": "Carrega consultes",
|
|
18
15
|
/** Label for loading a query */
|
|
19
|
-
"action.load-query":
|
|
20
|
-
// 'Load query'
|
|
16
|
+
"action.load-query": "Carrega consulta",
|
|
21
17
|
/** Label for cancelling an ongoing query */
|
|
22
18
|
"action.query-cancel": "Cancel\xB7la",
|
|
23
19
|
/** Label for executing the query, eg doing a fetch */
|
|
24
20
|
"action.query-execute": "Obt\xE9",
|
|
25
21
|
/** Label for saving a query */
|
|
26
|
-
"action.save-query":
|
|
27
|
-
// 'Save query'
|
|
22
|
+
"action.save-query": "Desa consulta",
|
|
28
23
|
/** Label for updating a query */
|
|
29
|
-
"action.update":
|
|
30
|
-
// 'Update'
|
|
24
|
+
"action.update": "Actualitza",
|
|
31
25
|
/** Label for actions user can take */
|
|
32
|
-
"label.actions":
|
|
33
|
-
// 'Actions'
|
|
26
|
+
"label.actions": "Accions",
|
|
34
27
|
/** Label for saved queries that have been edited */
|
|
35
|
-
"label.edited":
|
|
36
|
-
// 'Edited'
|
|
28
|
+
"label.edited": "Editat",
|
|
37
29
|
/**
|
|
38
30
|
* Some features has a "New" label indicating that the feature was recently introduced.
|
|
39
31
|
* This defines what the text of that label is. Keep it short and sweet.
|
|
40
32
|
*/
|
|
41
33
|
"label.new": "Nou",
|
|
42
34
|
/** Label for query type "personal" */
|
|
43
|
-
"label.personal":
|
|
44
|
-
// 'Personal'
|
|
35
|
+
"label.personal": "Personal",
|
|
45
36
|
/** Label for savedAt date */
|
|
46
|
-
"label.saved-at":
|
|
47
|
-
// 'Saved at'
|
|
37
|
+
"label.saved-at": "Desat el",
|
|
48
38
|
/** Saved queries */
|
|
49
|
-
"label.saved-queries":
|
|
50
|
-
// 'Saved queries'
|
|
39
|
+
"label.saved-queries": "Consultes desades",
|
|
51
40
|
/** Search queries */
|
|
52
|
-
"label.search-queries":
|
|
53
|
-
// 'Search queries'
|
|
41
|
+
"label.search-queries": "Cerca consultes",
|
|
54
42
|
/** Share query */
|
|
55
|
-
"label.share":
|
|
56
|
-
// 'Share'
|
|
43
|
+
"label.share": "Comparteix",
|
|
57
44
|
/** Label for saved query type "team" */
|
|
58
|
-
"label.team":
|
|
59
|
-
// 'Team'
|
|
45
|
+
"label.team": "Equip",
|
|
60
46
|
/** Error message for when the "Params" input are not a valid json */
|
|
61
47
|
"params.error.params-invalid-json": "Els par\xE0metres no s\xF3n JSON v\xE0lid",
|
|
62
48
|
/** Label for "Params" (parameters) editor/input */
|
|
@@ -85,14 +71,11 @@ var sanity = require("sanity"), vision = sanity.removeUndefinedLocaleResources({
|
|
|
85
71
|
*/
|
|
86
72
|
"result.timing-not-applicable": "n/d",
|
|
87
73
|
/** Query already saved error label */
|
|
88
|
-
"save-query.already-saved":
|
|
89
|
-
// 'Query already saved'
|
|
74
|
+
"save-query.already-saved": "Consulta ja desada",
|
|
90
75
|
/** Save error label */
|
|
91
|
-
"save-query.error":
|
|
92
|
-
// 'Error saving query'
|
|
76
|
+
"save-query.error": "Error en desar la consulta",
|
|
93
77
|
/** Save success label */
|
|
94
|
-
"save-query.success":
|
|
95
|
-
// 'Query saved'
|
|
78
|
+
"save-query.success": "Consulta desada",
|
|
96
79
|
/** Label for the "API version" dropdown in settings */
|
|
97
80
|
"settings.api-version-label": "Versi\xF3 de l'API",
|
|
98
81
|
/** Label for the "Custom API version" input in settings, shown when "other" is chosen as API version */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vision.cjs","sources":["../../src/vision.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Label for action \"Copy to clipboard\", tied to the \"Query URL\" field. Also used for accessibility purposes on button */\n 'action.copy-url-to-clipboard': 'Copia al porta-retalls',\n /** Label for deleting a query */\n 'action.delete':
|
|
1
|
+
{"version":3,"file":"vision.cjs","sources":["../../src/vision.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Label for action \"Copy to clipboard\", tied to the \"Query URL\" field. Also used for accessibility purposes on button */\n 'action.copy-url-to-clipboard': 'Copia al porta-retalls',\n /** Label for deleting a query */\n 'action.delete': 'Esborra',\n /** Label for editing a query's title */\n 'action.edit-title': 'Edita el títol',\n /** Label for stopping an ongoing listen operation */\n 'action.listen-cancel': 'Atura',\n /** Label for setting up a listener */\n 'action.listen-execute': 'Escolta',\n /** Label for query loading table */\n 'action.load-queries': 'Carrega consultes',\n /** Label for loading a query */\n 'action.load-query': 'Carrega consulta',\n /** Label for cancelling an ongoing query */\n 'action.query-cancel': 'Cancel·la',\n /** Label for executing the query, eg doing a fetch */\n 'action.query-execute': 'Obté',\n /** Label for saving a query */\n 'action.save-query': 'Desa consulta',\n /** Label for updating a query */\n 'action.update': 'Actualitza',\n\n /** Label for actions user can take */\n 'label.actions': 'Accions',\n /** Label for saved queries that have been edited */\n 'label.edited': 'Editat',\n /**\n * Some features has a \"New\" label indicating that the feature was recently introduced.\n * This defines what the text of that label is. Keep it short and sweet.\n */\n 'label.new': 'Nou',\n /** Label for query type \"personal\" */\n 'label.personal': 'Personal',\n /** Label for savedAt date */\n 'label.saved-at': 'Desat el',\n /** Saved queries */\n 'label.saved-queries': 'Consultes desades',\n /** Search queries */\n 'label.search-queries': 'Cerca consultes',\n /** Share query */\n 'label.share': 'Comparteix',\n /** Label for saved query type \"team\" */\n 'label.team': 'Equip',\n\n /** Error message for when the \"Params\" input are not a valid json */\n 'params.error.params-invalid-json': 'Els paràmetres no són JSON vàlid',\n /** Label for \"Params\" (parameters) editor/input */\n 'params.label': 'Paràmetres',\n\n /** Label for 'Column' indicator when there is an error within the query */\n 'query.error.column': 'Columna',\n /** Label for 'Line' indicator when there is an error within the query */\n 'query.error.line': 'Línia',\n /** Label for \"Query\" editor/input */\n 'query.label': 'Consulta',\n /** Label for the \"Query URL\" field, shown after executing a query, and allows for copying */\n 'query.url': 'URL de la consulta',\n\n /** Label for \"End to End time\" information of the fetched query */\n 'result.end-to-end-time-label': 'Temps complet',\n /** Label for \"Execution time\" information of the fetched query */\n 'result.execution-time-label': 'Execució',\n /** Label for \"Result\" explorer/view */\n 'result.label': 'Resultat',\n /** Tooltip text shown when the query result is not encodable as CSV */\n 'result.save-result-as-csv.not-csv-encodable': 'El resultat no es pot codificar com a CSV',\n /** Label for \"Save result as\" result action */\n 'result.save-result-as-format': 'Desa el resultat com a <SaveResultButtons/>',\n /**\n * \"Not applicable\" message for when there is no Execution time or End to End time information\n * available for the query (eg when the query has not been executed, or errored)\n */\n 'result.timing-not-applicable': 'n/d',\n\n /** Query already saved error label */\n 'save-query.already-saved': 'Consulta ja desada',\n /** Save error label */\n 'save-query.error': 'Error en desar la consulta',\n /** Save success label */\n 'save-query.success': 'Consulta desada',\n\n /** Label for the \"API version\" dropdown in settings */\n 'settings.api-version-label': \"Versió de l'API\",\n /** Label for the \"Custom API version\" input in settings, shown when \"other\" is chosen as API version */\n 'settings.custom-api-version-label': \"Versió personalitzada de l'API\",\n /** Label for the \"Dataset\" dropdown in vision settings */\n 'settings.dataset-label': 'Dataset',\n /** Error label for when the API version in 'Custom API version' input is invalid */\n 'settings.error.invalid-api-version': \"Versió de l'API no vàlida\",\n /** Label for the \"other\" versions within the \"API version\" dropdown */\n 'settings.other-api-version-label': 'Altra',\n /**\n * Label for the \"Perspective\" dropdown in vision settings\n * @see {@link https://www.sanity.io/docs/perspectives}\n */\n 'settings.perspective-label': 'Perspectiva',\n /** Notification about previewDrafts to drafts rename */\n 'settings.perspective.preview-drafts-renamed-to-drafts.description':\n 'La perspectiva \"<code>previewDrafts</code>\" ha estat renombrada a \"<code>drafts</code>\" i ara està obsoleta. Aquest canvi és efectiu per a totes les versions amb suport de perspectiva (>= v2021-03-25).',\n /** Call to action to read the docs related to \"Perspectives\" */\n 'settings.perspectives.action.docs-link': 'Llegeix la documentació',\n /** Option for selecting default perspective */\n 'settings.perspectives.default': \"Cap perspectiva (predeterminada de l'API)\",\n /** Description for popover that explains what \"Perspectives\" are */\n 'settings.perspectives.description':\n 'Les Perspectives permeten que la teva consulta s\\'executi contra diferents \"vistes\" del contingut del teu dataset',\n /** Description for upcoming default perspective change */\n 'settings.perspectives.new-default.description':\n 'La perspectiva predeterminada canviarà de \"<code>raw</code>\" a \"<code>published</code>\" en una propera versió de l\\'API. Si us plau, consulta la documentació per a més detalls.',\n /** Label for the pinned release perspective */\n 'settings.perspectives.pinned-release-label': 'Versió fixada',\n /** Title for popover that explains what \"Perspectives\" are */\n 'settings.perspectives.title': 'Perspectives',\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":";gCAEA,SAAeA,sCAA+B;AAAA;AAAA,EAE5C,gCAAgC;AAAA;AAAA,EAEhC,iBAAiB;AAAA;AAAA,EAEjB,qBAAqB;AAAA;AAAA,EAErB,wBAAwB;AAAA;AAAA,EAExB,yBAAyB;AAAA;AAAA,EAEzB,uBAAuB;AAAA;AAAA,EAEvB,qBAAqB;AAAA;AAAA,EAErB,uBAAuB;AAAA;AAAA,EAEvB,wBAAwB;AAAA;AAAA,EAExB,qBAAqB;AAAA;AAAA,EAErB,iBAAiB;AAAA;AAAA,EAGjB,iBAAiB;AAAA;AAAA,EAEjB,gBAAgB;AAAA;AAAA;AAAA;AAAA;AAAA,EAKhB,aAAa;AAAA;AAAA,EAEb,kBAAkB;AAAA;AAAA,EAElB,kBAAkB;AAAA;AAAA,EAElB,uBAAuB;AAAA;AAAA,EAEvB,wBAAwB;AAAA;AAAA,EAExB,eAAe;AAAA;AAAA,EAEf,cAAc;AAAA;AAAA,EAGd,oCAAoC;AAAA;AAAA,EAEpC,gBAAgB;AAAA;AAAA,EAGhB,sBAAsB;AAAA;AAAA,EAEtB,oBAAoB;AAAA;AAAA,EAEpB,eAAe;AAAA;AAAA,EAEf,aAAa;AAAA;AAAA,EAGb,gCAAgC;AAAA;AAAA,EAEhC,+BAA+B;AAAA;AAAA,EAE/B,gBAAgB;AAAA;AAAA,EAEhB,+CAA+C;AAAA;AAAA,EAE/C,gCAAgC;AAAA;AAAA;AAAA;AAAA;AAAA,EAKhC,gCAAgC;AAAA;AAAA,EAGhC,4BAA4B;AAAA;AAAA,EAE5B,oBAAoB;AAAA;AAAA,EAEpB,sBAAsB;AAAA;AAAA,EAGtB,8BAA8B;AAAA;AAAA,EAE9B,qCAAqC;AAAA;AAAA,EAErC,0BAA0B;AAAA;AAAA,EAE1B,sCAAsC;AAAA;AAAA,EAEtC,oCAAoC;AAAA;AAAA;AAAA;AAAA;AAAA,EAKpC,8BAA8B;AAAA;AAAA,EAE9B,qEACE;AAAA;AAAA,EAEF,0CAA0C;AAAA;AAAA,EAE1C,iCAAiC;AAAA;AAAA,EAEjC,qCACE;AAAA;AAAA,EAEF,iDACE;AAAA;AAAA,EAEF,8CAA8C;AAAA;AAAA,EAE9C,+BAA+B;AACjC,CAAC;;"}
|
|
@@ -9,6 +9,9 @@ var copyPaste = removeUndefinedLocaleResources({
|
|
|
9
9
|
/** Text on the field action button to paste a field */
|
|
10
10
|
"copy-paste.field-action-paste-button.field.title": "Enganxa el camp",
|
|
11
11
|
/** The error message that is shown when the clipboard is not supported */
|
|
12
|
+
"copy-paste.on-copy.validation.clipboard-not-supported.description": void 0,
|
|
13
|
+
// 'Clipboard access required to copy this content. Allow clipboard permissions in your browser settings, then try copying again.'
|
|
14
|
+
/** The error message that is shown when the clipboard is not supported */
|
|
12
15
|
"copy-paste.on-copy.validation.clipboard-not-supported.title": "El teu navegador no admet aquesta acci\xF3",
|
|
13
16
|
/** The error message that is shown when there is no value to copy */
|
|
14
17
|
"copy-paste.on-copy.validation.no-value.title": "Valor buit, res per copiar",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"copy-paste.js","sources":["../../src/copy-paste.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Text on the field action button to copy a document */\n 'copy-paste.field-action-copy-button.document.title': 'Copia el document',\n /** Text on the field action button to copy a field */\n 'copy-paste.field-action-copy-button.field.title': 'Copia el camp',\n /** Text on the field action button to paste a document */\n 'copy-paste.field-action-paste-button.document.title': 'Enganxa el document',\n /** Text on the field action button to paste a field */\n 'copy-paste.field-action-paste-button.field.title': 'Enganxa el camp',\n /** The error message that is shown when the clipboard is not supported */\n 'copy-paste.on-copy.validation.clipboard-not-supported.title':\n 'El teu navegador no admet aquesta acció',\n /** The error message that is shown when there is no value to copy */\n 'copy-paste.on-copy.validation.no-value.title': 'Valor buit, res per copiar',\n /** --- On copy --- */\n /** The error message that is shown when schema types are incompatible */\n 'copy-paste.on-copy.validation.schema-type-incompatible.title':\n \"No s'ha pogut resoldre el tipus d'esquema per la ruta: {{path}}\",\n /** The validation message that is shown when array types are incompatible */\n 'copy-paste.on-paste.validation.array-type-incompatible.description':\n 'El valor del tipus \"{{type}}\" no està permès en aquest camp d\\'array',\n /** The validation message that is shown when array values are incompatible */\n 'copy-paste.on-paste.validation.array-value-incompatible.description':\n 'El valor del tipus \"{{type}}\" no està permès en aquest camp d\\'array',\n /** The validation message that is shown when the clipboard is empty */\n 'copy-paste.on-paste.validation.clipboard-empty.title': 'Res per enganxar',\n /** The validation message that is shown when the clipboard item is invalid */\n 'copy-paste.on-paste.validation.clipboard-invalid.title': 'Element del porta-retalls invàlid',\n /** The validation message that is shown when image files are incompatible */\n 'copy-paste.on-paste.validation.image-file-incompatible.description':\n 'Un \"{{sourceSchemaType}}\" no està permès en un \"{{targetSchemaType}}\"',\n /** The error message that is shown when the MIME type is not accepted */\n 'copy-paste.on-paste.validation.mime-type-incompatible.description':\n 'El tipus MIME \"{{mimeType}}\" no està acceptat per aquest camp',\n /** The error message that is shown when the MIME type validation fails */\n 'copy-paste.on-paste.validation.mime-type-validation-failed.description':\n 'La validació del tipus MIME ha fallat',\n /** The warning message that is shown when not all values can be pasted */\n 'copy-paste.on-paste.validation.partial-warning.title': \"No s'han pogut enganxar tots els valors\",\n /** The validation message that is shown when primitive types are incompatible */\n 'copy-paste.on-paste.validation.primitive-type-incompatible.description':\n 'El valor del tipus \"{{type}}\" no està permès en aquest camp',\n /** --- On paste --- */\n /** The validation message that is shown when pasting a value into a read-only target */\n 'copy-paste.on-paste.validation.read-only-target.description': 'El destí és de només lectura',\n /** The validation message that is shown when reference is incompatible with filter */\n 'copy-paste.on-paste.validation.reference-filter-incompatible.description':\n 'La referència no està permesa en el camp de referència segons el filtre',\n /** The validation message that is shown when reference types are incompatible */\n 'copy-paste.on-paste.validation.reference-type-incompatible.description':\n 'Les referències del tipus \"{{sourceReferenceType}}\" no estan permeses en el camp de referència que accepta tipus \"{{targetReferenceTypes}}\"',\n /** The validation message that is shown when reference does not exist */\n 'copy-paste.on-paste.validation.reference-validation-failed.description':\n 'El document referenciat \"{{ref}}\" no existeix',\n /** The validation message that is shown when the source and target schema types are incompatible */\n 'copy-paste.on-paste.validation.schema-type-incompatible.description':\n \"Els tipus d'esquema d'origen i destí no són compatibles\",\n /** The validation message that is shown when schema types are incompatible */\n 'copy-paste.on-paste.validation.schema-type-incompatible.title':\n \"No s'ha pogut resoldre el tipus d'esquema per la ruta: {{path}}\",\n /** The validation message that is shown when string values are incompatible */\n 'copy-paste.on-paste.validation.string-value-incompatible.description':\n 'El valor \"{{value}}\" no està permès en \"{{allowedStrings}}\"',\n})\n"],"names":[],"mappings":";AAEA,IAAA,YAAe,+BAA+B;AAAA;AAAA,EAE5C,sDAAsD;AAAA;AAAA,EAEtD,mDAAmD;AAAA;AAAA,EAEnD,uDAAuD;AAAA;AAAA,EAEvD,oDAAoD;AAAA;AAAA,EAEpD,+DACE;AAAA;AAAA,EAEF,gDAAgD;AAAA;AAAA;AAAA,EAGhD,gEACE;AAAA;AAAA,EAEF,sEACE;AAAA;AAAA,EAEF,uEACE;AAAA;AAAA,EAEF,wDAAwD;AAAA;AAAA,EAExD,0DAA0D;AAAA;AAAA,EAE1D,sEACE;AAAA;AAAA,EAEF,qEACE;AAAA;AAAA,EAEF,0EACE;AAAA;AAAA,EAEF,wDAAwD;AAAA;AAAA,EAExD,0EACE;AAAA;AAAA;AAAA,EAGF,+DAA+D;AAAA;AAAA,EAE/D,4EACE;AAAA;AAAA,EAEF,0EACE;AAAA;AAAA,EAEF,0EACE;AAAA;AAAA,EAEF,uEACE;AAAA;AAAA,EAEF,iEACE;AAAA;AAAA,EAEF,wEACE;AACJ,CAAC;"}
|
|
1
|
+
{"version":3,"file":"copy-paste.js","sources":["../../src/copy-paste.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Text on the field action button to copy a document */\n 'copy-paste.field-action-copy-button.document.title': 'Copia el document',\n /** Text on the field action button to copy a field */\n 'copy-paste.field-action-copy-button.field.title': 'Copia el camp',\n /** Text on the field action button to paste a document */\n 'copy-paste.field-action-paste-button.document.title': 'Enganxa el document',\n /** Text on the field action button to paste a field */\n 'copy-paste.field-action-paste-button.field.title': 'Enganxa el camp',\n /** The error message that is shown when the clipboard is not supported */\n 'copy-paste.on-copy.validation.clipboard-not-supported.description': undefined, // 'Clipboard access required to copy this content. Allow clipboard permissions in your browser settings, then try copying again.'\n /** The error message that is shown when the clipboard is not supported */\n 'copy-paste.on-copy.validation.clipboard-not-supported.title':\n 'El teu navegador no admet aquesta acció',\n /** The error message that is shown when there is no value to copy */\n 'copy-paste.on-copy.validation.no-value.title': 'Valor buit, res per copiar',\n /** --- On copy --- */\n /** The error message that is shown when schema types are incompatible */\n 'copy-paste.on-copy.validation.schema-type-incompatible.title':\n \"No s'ha pogut resoldre el tipus d'esquema per la ruta: {{path}}\",\n /** The validation message that is shown when array types are incompatible */\n 'copy-paste.on-paste.validation.array-type-incompatible.description':\n 'El valor del tipus \"{{type}}\" no està permès en aquest camp d\\'array',\n /** The validation message that is shown when array values are incompatible */\n 'copy-paste.on-paste.validation.array-value-incompatible.description':\n 'El valor del tipus \"{{type}}\" no està permès en aquest camp d\\'array',\n /** The validation message that is shown when the clipboard is empty */\n 'copy-paste.on-paste.validation.clipboard-empty.title': 'Res per enganxar',\n /** The validation message that is shown when the clipboard item is invalid */\n 'copy-paste.on-paste.validation.clipboard-invalid.title': 'Element del porta-retalls invàlid',\n /** The validation message that is shown when image files are incompatible */\n 'copy-paste.on-paste.validation.image-file-incompatible.description':\n 'Un \"{{sourceSchemaType}}\" no està permès en un \"{{targetSchemaType}}\"',\n /** The error message that is shown when the MIME type is not accepted */\n 'copy-paste.on-paste.validation.mime-type-incompatible.description':\n 'El tipus MIME \"{{mimeType}}\" no està acceptat per aquest camp',\n /** The error message that is shown when the MIME type validation fails */\n 'copy-paste.on-paste.validation.mime-type-validation-failed.description':\n 'La validació del tipus MIME ha fallat',\n /** The warning message that is shown when not all values can be pasted */\n 'copy-paste.on-paste.validation.partial-warning.title': \"No s'han pogut enganxar tots els valors\",\n /** The validation message that is shown when primitive types are incompatible */\n 'copy-paste.on-paste.validation.primitive-type-incompatible.description':\n 'El valor del tipus \"{{type}}\" no està permès en aquest camp',\n /** --- On paste --- */\n /** The validation message that is shown when pasting a value into a read-only target */\n 'copy-paste.on-paste.validation.read-only-target.description': 'El destí és de només lectura',\n /** The validation message that is shown when reference is incompatible with filter */\n 'copy-paste.on-paste.validation.reference-filter-incompatible.description':\n 'La referència no està permesa en el camp de referència segons el filtre',\n /** The validation message that is shown when reference types are incompatible */\n 'copy-paste.on-paste.validation.reference-type-incompatible.description':\n 'Les referències del tipus \"{{sourceReferenceType}}\" no estan permeses en el camp de referència que accepta tipus \"{{targetReferenceTypes}}\"',\n /** The validation message that is shown when reference does not exist */\n 'copy-paste.on-paste.validation.reference-validation-failed.description':\n 'El document referenciat \"{{ref}}\" no existeix',\n /** The validation message that is shown when the source and target schema types are incompatible */\n 'copy-paste.on-paste.validation.schema-type-incompatible.description':\n \"Els tipus d'esquema d'origen i destí no són compatibles\",\n /** The validation message that is shown when schema types are incompatible */\n 'copy-paste.on-paste.validation.schema-type-incompatible.title':\n \"No s'ha pogut resoldre el tipus d'esquema per la ruta: {{path}}\",\n /** The validation message that is shown when string values are incompatible */\n 'copy-paste.on-paste.validation.string-value-incompatible.description':\n 'El valor \"{{value}}\" no està permès en \"{{allowedStrings}}\"',\n})\n"],"names":[],"mappings":";AAEA,IAAA,YAAe,+BAA+B;AAAA;AAAA,EAE5C,sDAAsD;AAAA;AAAA,EAEtD,mDAAmD;AAAA;AAAA,EAEnD,uDAAuD;AAAA;AAAA,EAEvD,oDAAoD;AAAA;AAAA,EAEpD,qEAAqE;AAAA;AAAA;AAAA,EAErE,+DACE;AAAA;AAAA,EAEF,gDAAgD;AAAA;AAAA;AAAA,EAGhD,gEACE;AAAA;AAAA,EAEF,sEACE;AAAA;AAAA,EAEF,uEACE;AAAA;AAAA,EAEF,wDAAwD;AAAA;AAAA,EAExD,0DAA0D;AAAA;AAAA,EAE1D,sEACE;AAAA;AAAA,EAEF,qEACE;AAAA;AAAA,EAEF,0EACE;AAAA;AAAA,EAEF,wDAAwD;AAAA;AAAA,EAExD,0EACE;AAAA;AAAA;AAAA,EAGF,+DAA+D;AAAA;AAAA,EAE/D,4EACE;AAAA;AAAA,EAEF,0EACE;AAAA;AAAA,EAEF,0EACE;AAAA;AAAA,EAEF,uEACE;AAAA;AAAA,EAEF,iEACE;AAAA;AAAA,EAEF,wEACE;AACJ,CAAC;"}
|
|
@@ -74,6 +74,18 @@ var structure = removeUndefinedLocaleResources({
|
|
|
74
74
|
"action.unpublish.live-edit.disabled": "Aquest document t\xE9 l'edici\xF3 en viu activada i no pot ser despublicat",
|
|
75
75
|
/** Description for the archived release banner, rendered when viewing the history of a version document from the publihed view */
|
|
76
76
|
"banners.archived-release.description": "Aquesta versi\xF3 del document pertany a la versi\xF3 arxivada <VersionBadge>{{title}}</VersionBadge>",
|
|
77
|
+
/** The explanation displayed when a user attempts to create a new draft document, but the draft model is not switched on */
|
|
78
|
+
"banners.choose-new-document-destination.cannot-create-draft-document": void 0,
|
|
79
|
+
// 'Cannot create a draft document.'
|
|
80
|
+
/** The explanation displayed when a user attempts to create a new published document, but the schema type doesn't support live-editing */
|
|
81
|
+
"banners.choose-new-document-destination.cannot-create-published-document": void 0,
|
|
82
|
+
// 'Cannot create a published document.'
|
|
83
|
+
/** The prompt displayed when a user must select a different perspective in order to create a document */
|
|
84
|
+
"banners.choose-new-document-destination.choose-destination": void 0,
|
|
85
|
+
// 'Choose a destination for this document:'
|
|
86
|
+
/** The explanation displayed when a user attempts to create a new document in a release, but the selected release is inactive */
|
|
87
|
+
"banners.choose-new-document-destination.release-inactive": void 0,
|
|
88
|
+
// 'The <VersionBadge>{{title}}</VersionBadge> release is not active.'
|
|
77
89
|
/** The text for the restore button on the deleted document banner */
|
|
78
90
|
"banners.deleted-document-banner.restore-button.text": "Restaurar la revisi\xF3 m\xE9s recent",
|
|
79
91
|
/** The text content for the deleted document banner */
|
|
@@ -86,6 +98,18 @@ var structure = removeUndefinedLocaleResources({
|
|
|
86
98
|
"banners.live-edit-draft-banner.publish.tooltip": "Publicar per continuar editant",
|
|
87
99
|
/** The text content for the live edit document when it's a draft */
|
|
88
100
|
"banners.live-edit-draft-banner.text": "El tipus <strong>{{schemaType}}</strong> t\xE9 <code>liveEdit</code> activat, per\xF2 existeix una versi\xF3 esborrany d'aquest document. Publica o descarta l'esborrany per continuar editant-lo en viu.",
|
|
101
|
+
/** The label for the "compare draft" action */
|
|
102
|
+
"banners.obsolete-draft.actions.compare-draft.text": void 0,
|
|
103
|
+
// 'Compare draft'
|
|
104
|
+
/** The label for the "discard draft" action */
|
|
105
|
+
"banners.obsolete-draft.actions.discard-draft.text": void 0,
|
|
106
|
+
// 'Discard draft'
|
|
107
|
+
/** The label for the "publish draft" action */
|
|
108
|
+
"banners.obsolete-draft.actions.publish-draft.text": void 0,
|
|
109
|
+
// 'Publish draft'
|
|
110
|
+
/** The warning displayed when editing a document that has an obsolete draft because the draft model is not switched on */
|
|
111
|
+
"banners.obsolete-draft.draft-model-inactive.text": void 0,
|
|
112
|
+
// 'The workspace does not have drafts enabled, but a draft version of this document exists.'
|
|
89
113
|
/** The text for the permission check banner if the user only has one role, and it does not allow publishing this document */
|
|
90
114
|
"banners.permission-check-banner.missing-permission_create_one": "El teu rol <Roles/> no t\xE9 perm\xEDs per publicar aquest document.",
|
|
91
115
|
/** The text for the permission check banner if the user only has multiple roles, but they do not allow publishing this document */
|
|
@@ -135,10 +159,12 @@ var structure = removeUndefinedLocaleResources({
|
|
|
135
159
|
/** Title of toast that will appear in case of latency between the user adding a document to a release and the UI reflecting it */
|
|
136
160
|
"banners.release.waiting.title": "Afegint document a la publicaci\xF3\u2026",
|
|
137
161
|
/** The text for the revision not found banner */
|
|
138
|
-
"banners.revision-not-found.description":
|
|
139
|
-
// 'We couldn\'t find the document revision selected, please select another entry from the history list.'
|
|
162
|
+
"banners.revision-not-found.description": "No hem pogut trobar la revisi\xF3 del document seleccionada, si us plau seleccioneu una altra entrada de la llista d'historial.",
|
|
140
163
|
/** The text content for the unpublished document banner when is part of a release */
|
|
141
164
|
"banners.unpublished-release-banner.text": "Aquest document ser\xE0 despublicat com a part de la publicaci\xF3 <VersionBadge>{{title}}</VersionBadge>",
|
|
165
|
+
/** The text content for the unpublished document banner letting the user know that the current published version is being shown */
|
|
166
|
+
"banners.unpublished-release-banner.text-with-published": void 0,
|
|
167
|
+
// 'Showing the current <strong>published</strong> version:'
|
|
142
168
|
/** Browser/tab title when creating a new document of a given type */
|
|
143
169
|
"browser-document-title.new-document": "Nou {{schemaType}}",
|
|
144
170
|
/** Browser/tab title when editing a document where the title cannot be resolved from preview configuration */
|
|
@@ -170,11 +196,9 @@ var structure = removeUndefinedLocaleResources({
|
|
|
170
196
|
/** The heading for the canvas linked banner popover */
|
|
171
197
|
"canvas.banner.popover-heading": "Creaci\xF3 prioritzant la idea",
|
|
172
198
|
/** The description for the changes banner */
|
|
173
|
-
"changes.banner.description":
|
|
174
|
-
// 'Showing the history for the <strong>{{perspective}}</strong> version of this document.'
|
|
199
|
+
"changes.banner.description": "Mostrant l'historial per a la versi\xF3 <strong>{{perspective}}</strong> d'aquest document.",
|
|
175
200
|
/** The tooltip for the changes banner */
|
|
176
|
-
"changes.banner.tooltip":
|
|
177
|
-
// 'This view shows the changes that occurred in a specific version of this document. Select a different version to see its changes'
|
|
201
|
+
"changes.banner.tooltip": "Aquesta vista mostra els canvis que han ocorregut en una versi\xF3 espec\xEDfica d'aquest document. Seleccioneu una versi\xF3 diferent per veure els seus canvis",
|
|
178
202
|
/** The label used in the changes inspector for the from selector */
|
|
179
203
|
"changes.from.label": "Des de",
|
|
180
204
|
/* The label for the history tab in the changes inspector*/
|
|
@@ -316,11 +340,9 @@ var structure = removeUndefinedLocaleResources({
|
|
|
316
340
|
/** The description for the document unfavorite action */
|
|
317
341
|
"document.favorites.remove-from-favorites": "Treure de preferits",
|
|
318
342
|
/** The description for the events inspector when we can't load the document so we default to compare with published */
|
|
319
|
-
"events.compare-with-published.description":
|
|
320
|
-
// 'We\'re unable to load the changes for this document, probably due to history retention policy of your plan, this shows you how the <strong>{{version}}</strong> version compares to the <strong>published</strong> version.'
|
|
343
|
+
"events.compare-with-published.description": "No podem carregar els canvis d'aquest document, probablement a causa de la pol\xEDtica de retenci\xF3 d'historial del vostre pla, aix\xF2 us mostra com la versi\xF3 <strong>{{version}}</strong> es compara amb la versi\xF3 <strong>publicada</strong>.",
|
|
321
344
|
/** The title for the events inspector when we can't load the document so we default to compare with published */
|
|
322
|
-
"events.compare-with-published.title":
|
|
323
|
-
// 'Comparing with published'
|
|
345
|
+
"events.compare-with-published.title": "Comparant amb la publicada",
|
|
324
346
|
/**The title for the menu items that will be shown when expanding a publish release event to inspect the document */
|
|
325
347
|
"events.inspect.release": "Inspeccionar <VersionBadge>{{releaseTitle}}</VersionBadge> document",
|
|
326
348
|
/**The title for the menu items that will be shown when expanding a publish draft event to inspect the draft document*/
|
|
@@ -379,23 +401,18 @@ var structure = removeUndefinedLocaleResources({
|
|
|
379
401
|
/** The text used in the document header title if no other title can be determined */
|
|
380
402
|
"panes.document-header-title.untitled.text": "Sense t\xEDtol",
|
|
381
403
|
/** The help text saying that we'll retry fetching the document list */
|
|
382
|
-
"panes.document-list-pane.error.retrying":
|
|
383
|
-
// 'Retrying…'
|
|
404
|
+
"panes.document-list-pane.error.retrying": "Tornant a intentar\u2026",
|
|
384
405
|
/** The error text on the document list pane */
|
|
385
406
|
"panes.document-list-pane.error.text": "Error: <Code>{{error}}</Code>",
|
|
386
407
|
/** The error text on the document list pane */
|
|
387
|
-
"panes.document-list-pane.error.text.dev":
|
|
388
|
-
// 'Error: <Code>{{error}}</Code>'
|
|
408
|
+
"panes.document-list-pane.error.text.dev": "Error: <Code>{{error}}</Code>",
|
|
389
409
|
/** The error text on the document list pane if the browser appears to be offlline */
|
|
390
|
-
"panes.document-list-pane.error.text.offline":
|
|
391
|
-
// 'The Internet connection appears to be offline.'
|
|
410
|
+
"panes.document-list-pane.error.text.offline": "La connexi\xF3 a Internet sembla estar fora de l\xEDnia.",
|
|
392
411
|
/** The error title on the document list pane */
|
|
393
412
|
"panes.document-list-pane.error.title": "No s'han pogut obtenir els elements de la llista",
|
|
394
413
|
/** The help text saying that we'll retry fetching the document list */
|
|
395
|
-
"panes.document-list-pane.error.will-retry-automatically_one":
|
|
396
|
-
|
|
397
|
-
"panes.document-list-pane.error.will-retry-automatically_other": void 0,
|
|
398
|
-
// 'Retrying… (#{{count}}).'
|
|
414
|
+
"panes.document-list-pane.error.will-retry-automatically_one": "Tornant a intentar\u2026",
|
|
415
|
+
"panes.document-list-pane.error.will-retry-automatically_other": "Tornant a intentar\u2026 (#{{count}}).",
|
|
399
416
|
/** The text of the document list pane if more than a maximum number of documents are returned */
|
|
400
417
|
"panes.document-list-pane.max-items.text": "Mostrant un m\xE0xim de {{limit}} documents",
|
|
401
418
|
/** The text of the document list pane if no documents are found for a specified type */
|
|
@@ -405,8 +422,7 @@ var structure = removeUndefinedLocaleResources({
|
|
|
405
422
|
/** The text of the document list pane if no documents are found matching specified criteria */
|
|
406
423
|
"panes.document-list-pane.no-matching-documents.text": "No hi ha documents coincidents",
|
|
407
424
|
/** The search input for the search input on the document list pane */
|
|
408
|
-
"panes.document-list-pane.reconnecting":
|
|
409
|
-
// 'Trying to connect…'
|
|
425
|
+
"panes.document-list-pane.reconnecting": "Intentant connectar\u2026",
|
|
410
426
|
/** The aria-label for the search input on the document list pane */
|
|
411
427
|
"panes.document-list-pane.search-input.aria-label": "Cerca a la llista",
|
|
412
428
|
/** The search input for the search input on the document list pane */
|
|
@@ -518,8 +534,7 @@ var structure = removeUndefinedLocaleResources({
|
|
|
518
534
|
/** The text for the expand action in the timeline item menu */
|
|
519
535
|
"timeline-item.menu.action-expand": "Expandir",
|
|
520
536
|
/** The text for the published event menu tooltip when the release is not found */
|
|
521
|
-
"timeline-item.not-found-release.tooltip":
|
|
522
|
-
// 'Release with id "{{releaseId}}" not found'
|
|
537
|
+
"timeline-item.not-found-release.tooltip": `No s'ha trobat la publicaci\xF3 amb id "{{releaseId}}"`
|
|
523
538
|
});
|
|
524
539
|
export {
|
|
525
540
|
structure as default
|