@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 validation = removeUndefinedLocaleResources({
|
|
|
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 validation = removeUndefinedLocaleResources({
|
|
|
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.js","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":[],"mappings":";AAEA,IAAA,aAAe,+BAA+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.js","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":[],"mappings":";AAEA,IAAA,aAAe,+BAA+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 vision = 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 vision = 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.js","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.js","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":[],"mappings":";AAEA,IAAA,SAAe,+BAA+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;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/locale-ca-es",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Catalan / Català locale/translation for Sanity Studio",
|
|
6
6
|
"keywords": [
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
],
|
|
47
47
|
"browserslist": "extends @sanity/browserslist-config",
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"sanity": "^3.22.0"
|
|
49
|
+
"sanity": "^3.22.0 || ^4.0.0-0"
|
|
50
50
|
},
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
package/src/copy-paste.ts
CHANGED
|
@@ -10,6 +10,8 @@ export default removeUndefinedLocaleResources({
|
|
|
10
10
|
/** Text on the field action button to paste a field */
|
|
11
11
|
'copy-paste.field-action-paste-button.field.title': 'Enganxa el camp',
|
|
12
12
|
/** The error message that is shown when the clipboard is not supported */
|
|
13
|
+
'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.'
|
|
14
|
+
/** The error message that is shown when the clipboard is not supported */
|
|
13
15
|
'copy-paste.on-copy.validation.clipboard-not-supported.title':
|
|
14
16
|
'El teu navegador no admet aquesta acció',
|
|
15
17
|
/** The error message that is shown when there is no value to copy */
|
package/src/structure.ts
CHANGED
|
@@ -85,6 +85,14 @@ export default removeUndefinedLocaleResources({
|
|
|
85
85
|
/** Description for the archived release banner, rendered when viewing the history of a version document from the publihed view */
|
|
86
86
|
'banners.archived-release.description':
|
|
87
87
|
'Aquesta versió del document pertany a la versió arxivada <VersionBadge>{{title}}</VersionBadge>',
|
|
88
|
+
/** The explanation displayed when a user attempts to create a new draft document, but the draft model is not switched on */
|
|
89
|
+
'banners.choose-new-document-destination.cannot-create-draft-document': undefined, // 'Cannot create a draft document.'
|
|
90
|
+
/** The explanation displayed when a user attempts to create a new published document, but the schema type doesn't support live-editing */
|
|
91
|
+
'banners.choose-new-document-destination.cannot-create-published-document': undefined, // 'Cannot create a published document.'
|
|
92
|
+
/** The prompt displayed when a user must select a different perspective in order to create a document */
|
|
93
|
+
'banners.choose-new-document-destination.choose-destination': undefined, // 'Choose a destination for this document:'
|
|
94
|
+
/** The explanation displayed when a user attempts to create a new document in a release, but the selected release is inactive */
|
|
95
|
+
'banners.choose-new-document-destination.release-inactive': undefined, // 'The <VersionBadge>{{title}}</VersionBadge> release is not active.'
|
|
88
96
|
/** The text for the restore button on the deleted document banner */
|
|
89
97
|
'banners.deleted-document-banner.restore-button.text': 'Restaurar la revisió més recent',
|
|
90
98
|
/** The text content for the deleted document banner */
|
|
@@ -98,6 +106,14 @@ export default removeUndefinedLocaleResources({
|
|
|
98
106
|
/** The text content for the live edit document when it's a draft */
|
|
99
107
|
'banners.live-edit-draft-banner.text':
|
|
100
108
|
"El tipus <strong>{{schemaType}}</strong> té <code>liveEdit</code> activat, però existeix una versió esborrany d'aquest document. Publica o descarta l'esborrany per continuar editant-lo en viu.",
|
|
109
|
+
/** The label for the "compare draft" action */
|
|
110
|
+
'banners.obsolete-draft.actions.compare-draft.text': undefined, // 'Compare draft'
|
|
111
|
+
/** The label for the "discard draft" action */
|
|
112
|
+
'banners.obsolete-draft.actions.discard-draft.text': undefined, // 'Discard draft'
|
|
113
|
+
/** The label for the "publish draft" action */
|
|
114
|
+
'banners.obsolete-draft.actions.publish-draft.text': undefined, // 'Publish draft'
|
|
115
|
+
/** The warning displayed when editing a document that has an obsolete draft because the draft model is not switched on */
|
|
116
|
+
'banners.obsolete-draft.draft-model-inactive.text': undefined, // 'The workspace does not have drafts enabled, but a draft version of this document exists.'
|
|
101
117
|
/** The text for the permission check banner if the user only has one role, and it does not allow publishing this document */
|
|
102
118
|
'banners.permission-check-banner.missing-permission_create_one':
|
|
103
119
|
'El teu rol <Roles/> no té permís per publicar aquest document.',
|
|
@@ -160,10 +176,13 @@ export default removeUndefinedLocaleResources({
|
|
|
160
176
|
/** Title of toast that will appear in case of latency between the user adding a document to a release and the UI reflecting it */
|
|
161
177
|
'banners.release.waiting.title': 'Afegint document a la publicació…',
|
|
162
178
|
/** The text for the revision not found banner */
|
|
163
|
-
'banners.revision-not-found.description':
|
|
179
|
+
'banners.revision-not-found.description':
|
|
180
|
+
"No hem pogut trobar la revisió del document seleccionada, si us plau seleccioneu una altra entrada de la llista d'historial.",
|
|
164
181
|
/** The text content for the unpublished document banner when is part of a release */
|
|
165
182
|
'banners.unpublished-release-banner.text':
|
|
166
183
|
'Aquest document serà despublicat com a part de la publicació <VersionBadge>{{title}}</VersionBadge>',
|
|
184
|
+
/** The text content for the unpublished document banner letting the user know that the current published version is being shown */
|
|
185
|
+
'banners.unpublished-release-banner.text-with-published': undefined, // 'Showing the current <strong>published</strong> version:'
|
|
167
186
|
|
|
168
187
|
/** Browser/tab title when creating a new document of a given type */
|
|
169
188
|
'browser-document-title.new-document': 'Nou {{schemaType}}',
|
|
@@ -200,9 +219,11 @@ export default removeUndefinedLocaleResources({
|
|
|
200
219
|
'canvas.banner.popover-heading': 'Creació prioritzant la idea',
|
|
201
220
|
|
|
202
221
|
/** The description for the changes banner */
|
|
203
|
-
'changes.banner.description':
|
|
222
|
+
'changes.banner.description':
|
|
223
|
+
"Mostrant l'historial per a la versió <strong>{{perspective}}</strong> d'aquest document.",
|
|
204
224
|
/** The tooltip for the changes banner */
|
|
205
|
-
'changes.banner.tooltip':
|
|
225
|
+
'changes.banner.tooltip':
|
|
226
|
+
"Aquesta vista mostra els canvis que han ocorregut en una versió específica d'aquest document. Seleccioneu una versió diferent per veure els seus canvis",
|
|
206
227
|
/** The label used in the changes inspector for the from selector */
|
|
207
228
|
'changes.from.label': 'Des de',
|
|
208
229
|
/* The label for the history tab in the changes inspector*/
|
|
@@ -370,9 +391,10 @@ export default removeUndefinedLocaleResources({
|
|
|
370
391
|
'document.favorites.remove-from-favorites': 'Treure de preferits',
|
|
371
392
|
|
|
372
393
|
/** The description for the events inspector when we can't load the document so we default to compare with published */
|
|
373
|
-
'events.compare-with-published.description':
|
|
394
|
+
'events.compare-with-published.description':
|
|
395
|
+
"No podem carregar els canvis d'aquest document, probablement a causa de la política de retenció d'historial del vostre pla, això us mostra com la versió <strong>{{version}}</strong> es compara amb la versió <strong>publicada</strong>.",
|
|
374
396
|
/** The title for the events inspector when we can't load the document so we default to compare with published */
|
|
375
|
-
'events.compare-with-published.title':
|
|
397
|
+
'events.compare-with-published.title': 'Comparant amb la publicada',
|
|
376
398
|
/**The title for the menu items that will be shown when expanding a publish release event to inspect the document */
|
|
377
399
|
'events.inspect.release': 'Inspeccionar <VersionBadge>{{releaseTitle}}</VersionBadge> document',
|
|
378
400
|
/**The title for the menu items that will be shown when expanding a publish draft event to inspect the draft document*/
|
|
@@ -440,18 +462,20 @@ export default removeUndefinedLocaleResources({
|
|
|
440
462
|
/** The text used in the document header title if no other title can be determined */
|
|
441
463
|
'panes.document-header-title.untitled.text': 'Sense títol',
|
|
442
464
|
/** The help text saying that we'll retry fetching the document list */
|
|
443
|
-
'panes.document-list-pane.error.retrying':
|
|
465
|
+
'panes.document-list-pane.error.retrying': 'Tornant a intentar…',
|
|
444
466
|
/** The error text on the document list pane */
|
|
445
467
|
'panes.document-list-pane.error.text': 'Error: <Code>{{error}}</Code>',
|
|
446
468
|
/** The error text on the document list pane */
|
|
447
|
-
'panes.document-list-pane.error.text.dev':
|
|
469
|
+
'panes.document-list-pane.error.text.dev': 'Error: <Code>{{error}}</Code>',
|
|
448
470
|
/** The error text on the document list pane if the browser appears to be offlline */
|
|
449
|
-
'panes.document-list-pane.error.text.offline':
|
|
471
|
+
'panes.document-list-pane.error.text.offline':
|
|
472
|
+
'La connexió a Internet sembla estar fora de línia.',
|
|
450
473
|
/** The error title on the document list pane */
|
|
451
474
|
'panes.document-list-pane.error.title': "No s'han pogut obtenir els elements de la llista",
|
|
452
475
|
/** The help text saying that we'll retry fetching the document list */
|
|
453
|
-
'panes.document-list-pane.error.will-retry-automatically_one':
|
|
454
|
-
'panes.document-list-pane.error.will-retry-automatically_other':
|
|
476
|
+
'panes.document-list-pane.error.will-retry-automatically_one': 'Tornant a intentar…',
|
|
477
|
+
'panes.document-list-pane.error.will-retry-automatically_other':
|
|
478
|
+
'Tornant a intentar… (#{{count}}).',
|
|
455
479
|
/** The text of the document list pane if more than a maximum number of documents are returned */
|
|
456
480
|
'panes.document-list-pane.max-items.text': 'Mostrant un màxim de {{limit}} documents',
|
|
457
481
|
/** The text of the document list pane if no documents are found for a specified type */
|
|
@@ -461,7 +485,7 @@ export default removeUndefinedLocaleResources({
|
|
|
461
485
|
/** The text of the document list pane if no documents are found matching specified criteria */
|
|
462
486
|
'panes.document-list-pane.no-matching-documents.text': 'No hi ha documents coincidents',
|
|
463
487
|
/** The search input for the search input on the document list pane */
|
|
464
|
-
'panes.document-list-pane.reconnecting':
|
|
488
|
+
'panes.document-list-pane.reconnecting': 'Intentant connectar…',
|
|
465
489
|
/** The aria-label for the search input on the document list pane */
|
|
466
490
|
'panes.document-list-pane.search-input.aria-label': 'Cerca a la llista',
|
|
467
491
|
/** The search input for the search input on the document list pane */
|
|
@@ -601,5 +625,5 @@ export default removeUndefinedLocaleResources({
|
|
|
601
625
|
/** The text for the expand action in the timeline item menu */
|
|
602
626
|
'timeline-item.menu.action-expand': 'Expandir',
|
|
603
627
|
/** The text for the published event menu tooltip when the release is not found */
|
|
604
|
-
'timeline-item.not-found-release.tooltip':
|
|
628
|
+
'timeline-item.not-found-release.tooltip': 'No s\'ha trobat la publicació amb id "{{releaseId}}"',
|
|
605
629
|
})
|
package/src/studio.ts
CHANGED
|
@@ -163,12 +163,14 @@ export default removeUndefinedLocaleResources({
|
|
|
163
163
|
'asset-sources.dataset.file.title': "Fitxers de l'espai de treball",
|
|
164
164
|
'asset-sources.dataset.image.title': "Imatges de l'espai de treball",
|
|
165
165
|
/** Error messages for the Media Library Asset Source */
|
|
166
|
-
'asset-sources.media-library.error.library-could-not-be-resolved':
|
|
166
|
+
'asset-sources.media-library.error.library-could-not-be-resolved':
|
|
167
|
+
'Alguna cosa ha anat malament intentant resoldre la Biblioteca de Mitjans per a aquest projecte.',
|
|
167
168
|
/** Menu Items for Media Library Asset Source */
|
|
168
169
|
'asset-sources.media-library.file.title': 'Biblioteca de mitjans',
|
|
169
170
|
'asset-sources.media-library.image.title': 'Biblioteca de mitjans',
|
|
170
171
|
/** Info messages for the Media Library Asset Source */
|
|
171
|
-
'asset-sources.media-library.info.provisioning':
|
|
172
|
+
'asset-sources.media-library.info.provisioning':
|
|
173
|
+
'Espereu mentre preparem la vostra Biblioteca de Mitjans',
|
|
172
174
|
|
|
173
175
|
/** Label when a release has been deleted by a different user */
|
|
174
176
|
'banners.deleted-bundle-banner.text':
|
|
@@ -317,7 +319,8 @@ export default removeUndefinedLocaleResources({
|
|
|
317
319
|
/** Loading changes in Review Changes Pane */
|
|
318
320
|
'changes.loading-changes': 'Carregant canvis…',
|
|
319
321
|
/** Error message shown when the document revision could not be found */
|
|
320
|
-
'changes.missing-since-document-error':
|
|
322
|
+
'changes.missing-since-document-error':
|
|
323
|
+
"No hem pogut trobar la revisió del document amb id: <code>{{revisionId}}</code> que esteu intentant comparar. <Break/> Això probablement es deu a la política de retenció d'historial del vostre pla. <Break/> Si us plau, seleccioneu una entrada <strong>Des de</strong> diferent.",
|
|
321
324
|
/** No Changes description in the Review Changes pane */
|
|
322
325
|
'changes.no-changes-description':
|
|
323
326
|
'Edita el document o selecciona una versió anterior en la línia de temps per veure una llista de canvis aparèixer en aquest panell.',
|
|
@@ -367,9 +370,10 @@ export default removeUndefinedLocaleResources({
|
|
|
367
370
|
/** Label for when the action of the change was a removal, eg a field was cleared, an array item was removed, an asset was deselected or similar */
|
|
368
371
|
'changes.removed-label': 'Eliminat',
|
|
369
372
|
/** Same Revision Selected description in the Review Changes pane */
|
|
370
|
-
'changes.same-revision-selected-description':
|
|
373
|
+
'changes.same-revision-selected-description':
|
|
374
|
+
'Heu seleccionat la mateixa revisió <strong>des de</strong> i <strong>fins a</strong>, si us plau seleccioneu revisions diferents per comparar els canvis entre elles.',
|
|
371
375
|
/** Same Revision Selected title in the Review Changes pane */
|
|
372
|
-
'changes.same-revision-selected-title':
|
|
376
|
+
'changes.same-revision-selected-title': 'Seleccionada la mateixa revisió',
|
|
373
377
|
/** Title for the Review Changes pane */
|
|
374
378
|
'changes.title': 'Història',
|
|
375
379
|
/**The title that will be shown in the badge inside the events when the item is a draft */
|
|
@@ -385,7 +389,7 @@ export default removeUndefinedLocaleResources({
|
|
|
385
389
|
/** Default text in shared loader text / spinner lockup */
|
|
386
390
|
'common.loading': 'Carregant',
|
|
387
391
|
/** The title of the reconnecting toast */
|
|
388
|
-
'common.reconnecting.toast.title':
|
|
392
|
+
'common.reconnecting.toast.title': 'Intentant connectar…',
|
|
389
393
|
|
|
390
394
|
/** --- Configuration issues --- */
|
|
391
395
|
/** Default label text on configuration issues button */
|
|
@@ -424,7 +428,7 @@ export default removeUndefinedLocaleResources({
|
|
|
424
428
|
/** Label to show in the document footer indicating the revision from date of the document */
|
|
425
429
|
'document-status.revision-from': 'Revisió de <em>{{date}}</em>',
|
|
426
430
|
/** Label to show in the document footer indicating that the revision was not found */
|
|
427
|
-
'document-status.revision-not-found':
|
|
431
|
+
'document-status.revision-not-found': 'Revisió no trobada',
|
|
428
432
|
|
|
429
433
|
/** Label to indicate that a document type was not found */
|
|
430
434
|
'document.type.not-found': 'No s\'ha trobat el tipus de document "{{type}}"',
|
|
@@ -1172,13 +1176,14 @@ export default removeUndefinedLocaleResources({
|
|
|
1172
1176
|
'member-field-error.unexpected-error': 'Error inesperat: {{error}}',
|
|
1173
1177
|
|
|
1174
1178
|
/** Text shown in warning when browser is using HTTP1 to communicate with the Sanity API */
|
|
1175
|
-
'network-check.slow-protocol-warning.description':
|
|
1179
|
+
'network-check.slow-protocol-warning.description':
|
|
1180
|
+
'El vostre navegador està utilitzant un protocol HTTP antiquat per comunicar-se amb Sanity. Això pot resultar en un rendiment substancialment degradat.',
|
|
1176
1181
|
/** Text for link that takes the user to the Sanity documentation to learn more about the HTTP1 issue */
|
|
1177
|
-
'network-check.slow-protocol-warning.learn-more-button.text':
|
|
1182
|
+
'network-check.slow-protocol-warning.learn-more-button.text': 'Apreneu més',
|
|
1178
1183
|
/** Text for link that takes the user to the Sanity documentation to learn more about the HTTP1 issue */
|
|
1179
|
-
'network-check.slow-protocol-warning.snooze-button.text':
|
|
1184
|
+
'network-check.slow-protocol-warning.snooze-button.text': 'No mostrar de nou en aquesta sessió',
|
|
1180
1185
|
/** Title text for the warning dialog when browser is using HTTP1 to communicate with the Sanity API */
|
|
1181
|
-
'network-check.slow-protocol-warning.title':
|
|
1186
|
+
'network-check.slow-protocol-warning.title': 'Teniu els frens posats',
|
|
1182
1187
|
|
|
1183
1188
|
/** Button label for "Create new document" button */
|
|
1184
1189
|
'new-document.button': 'Crear',
|
|
@@ -1187,10 +1192,6 @@ export default removeUndefinedLocaleResources({
|
|
|
1187
1192
|
* when there are templates/types available for creation
|
|
1188
1193
|
*/
|
|
1189
1194
|
'new-document.create-new-document-label': 'Document nou…',
|
|
1190
|
-
/** Tooltip message for add document button when the selected perspective is published */
|
|
1191
|
-
'new-document.disabled-published.tooltip': 'No podeu crear documents publicats nous',
|
|
1192
|
-
/** Tooltip message for add document button when the selected perspective is for inactive release */
|
|
1193
|
-
'new-document.disabled-release.tooltip': 'No podeu afegir documents a aquesta versió',
|
|
1194
1195
|
/** Placeholder for the "filter" input within the new document menu */
|
|
1195
1196
|
'new-document.filter-placeholder': 'Cerca tipus de documents',
|
|
1196
1197
|
/** Loading indicator text within the new document menu */
|
|
@@ -1255,8 +1256,17 @@ export default removeUndefinedLocaleResources({
|
|
|
1255
1256
|
'release.action.discard-version.failure': "No s'ha pogut descartar la versió",
|
|
1256
1257
|
/** Action message for when a new release is created off an existing version, draft or published document */
|
|
1257
1258
|
'release.action.new-release': 'Nova Versió',
|
|
1259
|
+
'release.action.new-release.limit-reached_other': undefined, // 'This workspace is limited to {{count}} releases'
|
|
1258
1260
|
/** Tooltip message for not having permissions for creating new releases */
|
|
1259
1261
|
'release.action.permission.error': 'No tens permís per realitzar aquesta acció',
|
|
1262
|
+
/** Error message description for when a version is reverted from being unpublished */
|
|
1263
|
+
'release.action.revert-unpublish-version.failure.description': undefined, // 'Please try again or check your connection. The document is still going to be unpublished upon release.'
|
|
1264
|
+
/** Error message title for when a version is reverted from being unpublished */
|
|
1265
|
+
'release.action.revert-unpublish-version.failure.title': undefined, // 'Failed to revert from setting to unpublish on release.'
|
|
1266
|
+
/** Action message description for when a version is reverted from being unpublished */
|
|
1267
|
+
'release.action.revert-unpublish-version.success.description': undefined, // 'You can now edit this version.'
|
|
1268
|
+
/** Action message title for when a version is reverted from being unpublished */
|
|
1269
|
+
'release.action.revert-unpublish-version.success.title': undefined, // 'Successfully reverted from setting to unpublish on release.'
|
|
1260
1270
|
/** Error message for when a version is set to be unpublished */
|
|
1261
1271
|
'release.action.unpublish-version.failure':
|
|
1262
1272
|
"No s'ha pogut establir la versió per ser despublicada en la versió",
|
|
@@ -1795,6 +1805,27 @@ export default removeUndefinedLocaleResources({
|
|
|
1795
1805
|
/** Accessibility label for the navbar status button */
|
|
1796
1806
|
'status-button.aria-label': 'Estat de la configuració',
|
|
1797
1807
|
|
|
1808
|
+
/* Time zone handling */
|
|
1809
|
+
'time-zone.action.search-for-timezone-placeholder': undefined, // 'Search for a city or time zone'
|
|
1810
|
+
/* Label for the local time zone button */
|
|
1811
|
+
'time-zone.action.select-local-time-zone': undefined, // 'Select local time zone'
|
|
1812
|
+
/* Dialog info for the time zone dialog */
|
|
1813
|
+
'time-zone.dialog-info.content-releases': undefined, // 'The selected time zone will change how dates are represented in content releases.'
|
|
1814
|
+
/* Dialog info for the time zone dialog */
|
|
1815
|
+
'time-zone.dialog-info.input': undefined, // 'The selected time zone will change how dates are represented only for this input in this document.'
|
|
1816
|
+
/* Dialog info for the time zone dialog */
|
|
1817
|
+
'time-zone.dialog-info.scheduled-publishing': undefined, // 'The selected time zone will change how dates are represented in schedules.'
|
|
1818
|
+
/* Label for the local time zone button */
|
|
1819
|
+
'time-zone.local-time': undefined, // 'local time'
|
|
1820
|
+
/* Label for the time zone button */
|
|
1821
|
+
'time-zone.time-zone': undefined, // 'Time zone'
|
|
1822
|
+
/* Tooltip content for the time zone dialog */
|
|
1823
|
+
'time-zone.time-zone-tooltip-content-releases': undefined, // 'Displaying releases in {{alternativeName}} GMT{{offset}}'
|
|
1824
|
+
/* Tooltip content for the time zone dialog */
|
|
1825
|
+
'time-zone.time-zone-tooltip-input': undefined, // 'Displaying <em>{{title}}</em> in {{alternativeName}} GMT{{offset}}'
|
|
1826
|
+
/* Tooltip content for the time zone dialog */
|
|
1827
|
+
'time-zone.time-zone-tooltip-scheduled-publishing': undefined, // 'Displaying schedules in {{alternativeName}} GMT{{offset}}'
|
|
1828
|
+
|
|
1798
1829
|
/** Title for the changes tooltip in the history inspector*/
|
|
1799
1830
|
'timeline.changes.title': 'Canvis per',
|
|
1800
1831
|
/** Description for error when the timeline for the given document can't be loaded */
|
|
@@ -1844,9 +1875,9 @@ export default removeUndefinedLocaleResources({
|
|
|
1844
1875
|
/** Label shown in review changes timeline when a document has been deleted, with a timestamp */
|
|
1845
1876
|
'timeline.operation.deleted_timestamp': 'Esborrat: {{timestamp, datetime}}',
|
|
1846
1877
|
/** Label shown in review changes timeline when a draft document has been created*/
|
|
1847
|
-
'timeline.operation.draft-created':
|
|
1878
|
+
'timeline.operation.draft-created': 'Esborrany creat',
|
|
1848
1879
|
/** Label shown in review changes timeline when a draft document has been created, with a timestamp */
|
|
1849
|
-
'timeline.operation.draft-created_timestamp':
|
|
1880
|
+
'timeline.operation.draft-created_timestamp': 'Esborrany creat: {{timestamp, datetime}}',
|
|
1850
1881
|
/** Label shown in review changes timeline when a draft has been discarded */
|
|
1851
1882
|
'timeline.operation.draft-discarded': 'Esborrany descartat',
|
|
1852
1883
|
/** Label shown in review changes timeline when a draft has been discarded, with a timestamp */
|
|
@@ -1859,8 +1890,8 @@ export default removeUndefinedLocaleResources({
|
|
|
1859
1890
|
'timeline.operation.edited-live': 'Editat en viu',
|
|
1860
1891
|
/** Label shown in review changes timeline when a document has been edited live, with a timestamp */
|
|
1861
1892
|
'timeline.operation.edited-live_timestamp': 'Editat en viu: {{timestamp, datetime}}',
|
|
1862
|
-
/** Label shown in review changes timeline when
|
|
1863
|
-
'timeline.operation.history-cleared':
|
|
1893
|
+
/** Label shown in review changes timeline event when transactions have been deleted by retention policy */
|
|
1894
|
+
'timeline.operation.history-cleared': 'Esborrat per la política de retenció',
|
|
1864
1895
|
/** Label shown in review changes timeline when a document was published */
|
|
1865
1896
|
'timeline.operation.published': 'Publicat',
|
|
1866
1897
|
/** Label shown in review changes timeline when a document was published, with a timestamp */
|
|
@@ -1870,13 +1901,13 @@ export default removeUndefinedLocaleResources({
|
|
|
1870
1901
|
/** Label shown in review changes timeline when a document was unpublished, with a timestamp */
|
|
1871
1902
|
'timeline.operation.unpublished_timestamp': 'Despublicat: {{timestamp, datetime}}',
|
|
1872
1903
|
/** Label shown in review changes timeline when a document version has been created */
|
|
1873
|
-
'timeline.operation.version-created':
|
|
1904
|
+
'timeline.operation.version-created': 'Versió creada',
|
|
1874
1905
|
/** Label shown in review changes timeline when a document version has been created, with a timestamp */
|
|
1875
|
-
'timeline.operation.version-created_timestamp':
|
|
1906
|
+
'timeline.operation.version-created_timestamp': 'Versió creada: {{timestamp, datetime}}',
|
|
1876
1907
|
/** Label shown in review changes timeline when a document version has been discarded */
|
|
1877
|
-
'timeline.operation.version-discarded':
|
|
1908
|
+
'timeline.operation.version-discarded': 'Versió descartada',
|
|
1878
1909
|
/** Label shown in review changes timeline when a document version has been discarded, with a timestamp */
|
|
1879
|
-
'timeline.operation.version-discarded_timestamp':
|
|
1910
|
+
'timeline.operation.version-discarded_timestamp': 'Versió descartada: {{timestamp, datetime}}',
|
|
1880
1911
|
/**
|
|
1881
1912
|
* Label for determining since which version the changes for timeline menu dropdown are showing.
|
|
1882
1913
|
* Receives the time label as a parameter (`timestamp`).
|
package/src/validation.ts
CHANGED
|
@@ -51,6 +51,10 @@ export default removeUndefinedLocaleResources({
|
|
|
51
51
|
'object.asset-required_file': 'Es requereix un fitxer',
|
|
52
52
|
/** Object is missing a reference to an image asset document in its `asset` field */
|
|
53
53
|
'object.asset-required_image': 'Es requereix una imatge',
|
|
54
|
+
/** Media can't be found in the Media Library */
|
|
55
|
+
'object.media-not-found': undefined, // 'The asset could not found in the Media Library'
|
|
56
|
+
/** Media object is missing a reference to a document in its `_ref` field */
|
|
57
|
+
'object.not-media-library-asset': undefined, // 'Must be a reference to a Media Library asset'
|
|
54
58
|
/** Object is not a reference to a document (eg `{_ref: 'documentId'}`) */
|
|
55
59
|
'object.not-reference': 'Ha de ser una referència a un document',
|
|
56
60
|
/** Object references a document which is not published */
|
|
@@ -62,6 +66,8 @@ export default removeUndefinedLocaleResources({
|
|
|
62
66
|
'panel.no-errors-message': 'No hi ha errors de validació',
|
|
63
67
|
/** Title for the actual "Validation" panel/feature */
|
|
64
68
|
'panel.title': 'Validació',
|
|
69
|
+
/** Message shown when the validation panel is opened but the document is going to unpublish */
|
|
70
|
+
'panel.unpublish-message': undefined, // 'Document is going to unpublish, no validation errors are shown'
|
|
65
71
|
|
|
66
72
|
/** Slug is an object, but is missing a `current` string property */
|
|
67
73
|
'slug.missing-current': 'El slug ha de tenir un valor',
|