@sanity/locale-ca-es 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_chunks-cjs/structure.cjs +36 -1
- package/dist/_chunks-cjs/structure.cjs.map +1 -1
- package/dist/_chunks-cjs/studio.cjs +54 -2
- package/dist/_chunks-cjs/studio.cjs.map +1 -1
- package/dist/_chunks-cjs/vision.cjs +51 -0
- package/dist/_chunks-cjs/vision.cjs.map +1 -1
- package/dist/_chunks-es/structure.js +36 -1
- package/dist/_chunks-es/structure.js.map +1 -1
- package/dist/_chunks-es/studio.js +54 -2
- package/dist/_chunks-es/studio.js.map +1 -1
- package/dist/_chunks-es/vision.js +51 -0
- package/dist/_chunks-es/vision.js.map +1 -1
- package/package.json +1 -1
- package/src/structure.ts +23 -0
- package/src/studio.ts +37 -2
- package/src/vision.ts +35 -0
|
@@ -2,19 +2,61 @@ import { removeUndefinedLocaleResources } from "sanity";
|
|
|
2
2
|
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
|
+
/** Label for deleting a query */
|
|
6
|
+
"action.delete": void 0,
|
|
7
|
+
// 'Delete'
|
|
8
|
+
/** Label for editing a query's title */
|
|
9
|
+
"action.edit-title": void 0,
|
|
10
|
+
// 'Edit title'
|
|
5
11
|
/** Label for stopping an ongoing listen operation */
|
|
6
12
|
"action.listen-cancel": "Atura",
|
|
7
13
|
/** Label for setting up a listener */
|
|
8
14
|
"action.listen-execute": "Escolta",
|
|
15
|
+
/** Label for query loading table */
|
|
16
|
+
"action.load-queries": void 0,
|
|
17
|
+
// 'Load queries'
|
|
18
|
+
/** Label for loading a query */
|
|
19
|
+
"action.load-query": void 0,
|
|
20
|
+
// 'Load query'
|
|
9
21
|
/** Label for cancelling an ongoing query */
|
|
10
22
|
"action.query-cancel": "Cancel\xB7la",
|
|
11
23
|
/** Label for executing the query, eg doing a fetch */
|
|
12
24
|
"action.query-execute": "Obt\xE9",
|
|
25
|
+
/** Label for saving a query */
|
|
26
|
+
"action.save-query": void 0,
|
|
27
|
+
// 'Save query'
|
|
28
|
+
/** Label for updating a query */
|
|
29
|
+
"action.update": void 0,
|
|
30
|
+
// 'Update'
|
|
31
|
+
/** Label for actions user can take */
|
|
32
|
+
"label.actions": void 0,
|
|
33
|
+
// 'Actions'
|
|
34
|
+
/** Label for saved queries that have been edited */
|
|
35
|
+
"label.edited": void 0,
|
|
36
|
+
// 'Edited'
|
|
13
37
|
/**
|
|
14
38
|
* Some features has a "New" label indicating that the feature was recently introduced.
|
|
15
39
|
* This defines what the text of that label is. Keep it short and sweet.
|
|
16
40
|
*/
|
|
17
41
|
"label.new": "Nou",
|
|
42
|
+
/** Label for query type "personal" */
|
|
43
|
+
"label.personal": void 0,
|
|
44
|
+
// 'Personal'
|
|
45
|
+
/** Label for savedAt date */
|
|
46
|
+
"label.saved-at": void 0,
|
|
47
|
+
// 'Saved at'
|
|
48
|
+
/** Saved queries */
|
|
49
|
+
"label.saved-queries": void 0,
|
|
50
|
+
// 'Saved queries'
|
|
51
|
+
/** Search queries */
|
|
52
|
+
"label.search-queries": void 0,
|
|
53
|
+
// 'Search queries'
|
|
54
|
+
/** Share query */
|
|
55
|
+
"label.share": void 0,
|
|
56
|
+
// 'Share'
|
|
57
|
+
/** Label for saved query type "team" */
|
|
58
|
+
"label.team": void 0,
|
|
59
|
+
// 'Team'
|
|
18
60
|
/** Error message for when the "Params" input are not a valid json */
|
|
19
61
|
"params.error.params-invalid-json": "Els par\xE0metres no s\xF3n JSON v\xE0lid",
|
|
20
62
|
/** Label for "Params" (parameters) editor/input */
|
|
@@ -42,6 +84,15 @@ var vision = removeUndefinedLocaleResources({
|
|
|
42
84
|
* available for the query (eg when the query has not been executed, or errored)
|
|
43
85
|
*/
|
|
44
86
|
"result.timing-not-applicable": "n/d",
|
|
87
|
+
/** Query already saved error label */
|
|
88
|
+
"save-query.already-saved": void 0,
|
|
89
|
+
// 'Query already saved'
|
|
90
|
+
/** Save error label */
|
|
91
|
+
"save-query.error": void 0,
|
|
92
|
+
// 'Error saving query'
|
|
93
|
+
/** Save success label */
|
|
94
|
+
"save-query.success": void 0,
|
|
95
|
+
// 'Query saved'
|
|
45
96
|
/** Label for the "API version" dropdown in settings */
|
|
46
97
|
"settings.api-version-label": "Versi\xF3 de l'API",
|
|
47
98
|
/** 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 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 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\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\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 /** 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,wBAAwB;AAAA;AAAA,EAExB,yBAAyB;AAAA;AAAA,EAEzB,uBAAuB;AAAA;AAAA,EAEvB,wBAAwB;AAAA;AAAA;AAAA;AAAA;AAAA,
|
|
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': undefined, // 'Delete'\n /** Label for editing a query's title */\n 'action.edit-title': undefined, // 'Edit title'\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': undefined, // 'Load queries'\n /** Label for loading a query */\n 'action.load-query': undefined, // 'Load query'\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': undefined, // 'Save query'\n /** Label for updating a query */\n 'action.update': undefined, // 'Update'\n\n /** Label for actions user can take */\n 'label.actions': undefined, // 'Actions'\n /** Label for saved queries that have been edited */\n 'label.edited': undefined, // 'Edited'\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': undefined, // 'Personal'\n /** Label for savedAt date */\n 'label.saved-at': undefined, // 'Saved at'\n /** Saved queries */\n 'label.saved-queries': undefined, // 'Saved queries'\n /** Search queries */\n 'label.search-queries': undefined, // 'Search queries'\n /** Share query */\n 'label.share': undefined, // 'Share'\n /** Label for saved query type \"team\" */\n 'label.team': undefined, // 'Team'\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': undefined, // 'Query already saved'\n /** Save error label */\n 'save-query.error': undefined, // 'Error saving query'\n /** Save success label */\n 'save-query.success': undefined, // 'Query saved'\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;AAAA,EAEjB,qBAAqB;AAAA;AAAA;AAAA,EAErB,wBAAwB;AAAA;AAAA,EAExB,yBAAyB;AAAA;AAAA,EAEzB,uBAAuB;AAAA;AAAA;AAAA,EAEvB,qBAAqB;AAAA;AAAA;AAAA,EAErB,uBAAuB;AAAA;AAAA,EAEvB,wBAAwB;AAAA;AAAA,EAExB,qBAAqB;AAAA;AAAA;AAAA,EAErB,iBAAiB;AAAA;AAAA;AAAA,EAGjB,iBAAiB;AAAA;AAAA;AAAA,EAEjB,gBAAgB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKhB,aAAa;AAAA;AAAA,EAEb,kBAAkB;AAAA;AAAA;AAAA,EAElB,kBAAkB;AAAA;AAAA;AAAA,EAElB,uBAAuB;AAAA;AAAA;AAAA,EAEvB,wBAAwB;AAAA;AAAA;AAAA,EAExB,eAAe;AAAA;AAAA;AAAA,EAEf,cAAc;AAAA;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;AAAA,EAE5B,oBAAoB;AAAA;AAAA;AAAA,EAEpB,sBAAsB;AAAA;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
package/src/structure.ts
CHANGED
|
@@ -159,6 +159,8 @@ export default removeUndefinedLocaleResources({
|
|
|
159
159
|
"Espera mentre el document s'afegeix a la publicació. No hauria de trigar més de uns segons.",
|
|
160
160
|
/** 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
161
|
'banners.release.waiting.title': 'Afegint document a la publicació…',
|
|
162
|
+
/** The text for the revision not found banner */
|
|
163
|
+
'banners.revision-not-found.description': undefined, // 'We couldn\'t find the document revision selected, please select another entry from the history list.'
|
|
162
164
|
/** The text content for the unpublished document banner when is part of a release */
|
|
163
165
|
'banners.unpublished-release-banner.text':
|
|
164
166
|
'Aquest document serà despublicat com a part de la publicació <VersionBadge>{{title}}</VersionBadge>',
|
|
@@ -197,6 +199,10 @@ export default removeUndefinedLocaleResources({
|
|
|
197
199
|
/** The heading for the canvas linked banner popover */
|
|
198
200
|
'canvas.banner.popover-heading': 'Creació prioritzant la idea',
|
|
199
201
|
|
|
202
|
+
/** The description for the changes banner */
|
|
203
|
+
'changes.banner.description': undefined, // 'Showing the history for the <strong>{{perspective}}</strong> version of this document.'
|
|
204
|
+
/** The tooltip for the changes banner */
|
|
205
|
+
'changes.banner.tooltip': undefined, // 'This view shows the changes that occurred in a specific version of this document. Select a different version to see its changes'
|
|
200
206
|
/** The label used in the changes inspector for the from selector */
|
|
201
207
|
'changes.from.label': 'Des de',
|
|
202
208
|
/* The label for the history tab in the changes inspector*/
|
|
@@ -363,6 +369,10 @@ export default removeUndefinedLocaleResources({
|
|
|
363
369
|
/** The description for the document unfavorite action */
|
|
364
370
|
'document.favorites.remove-from-favorites': 'Treure de preferits',
|
|
365
371
|
|
|
372
|
+
/** 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': undefined, // '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.'
|
|
374
|
+
/** 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': undefined, // 'Comparing with published'
|
|
366
376
|
/**The title for the menu items that will be shown when expanding a publish release event to inspect the document */
|
|
367
377
|
'events.inspect.release': 'Inspeccionar <VersionBadge>{{releaseTitle}}</VersionBadge> document',
|
|
368
378
|
/**The title for the menu items that will be shown when expanding a publish draft event to inspect the draft document*/
|
|
@@ -429,10 +439,19 @@ export default removeUndefinedLocaleResources({
|
|
|
429
439
|
'panes.document-header-title.new.text': 'Nou {{schemaType}}',
|
|
430
440
|
/** The text used in the document header title if no other title can be determined */
|
|
431
441
|
'panes.document-header-title.untitled.text': 'Sense títol',
|
|
442
|
+
/** The help text saying that we'll retry fetching the document list */
|
|
443
|
+
'panes.document-list-pane.error.retrying': undefined, // 'Retrying…'
|
|
432
444
|
/** The error text on the document list pane */
|
|
433
445
|
'panes.document-list-pane.error.text': 'Error: <Code>{{error}}</Code>',
|
|
446
|
+
/** The error text on the document list pane */
|
|
447
|
+
'panes.document-list-pane.error.text.dev': undefined, // 'Error: <Code>{{error}}</Code>'
|
|
448
|
+
/** The error text on the document list pane if the browser appears to be offlline */
|
|
449
|
+
'panes.document-list-pane.error.text.offline': undefined, // 'The Internet connection appears to be offline.'
|
|
434
450
|
/** The error title on the document list pane */
|
|
435
451
|
'panes.document-list-pane.error.title': "No s'han pogut obtenir els elements de la llista",
|
|
452
|
+
/** The help text saying that we'll retry fetching the document list */
|
|
453
|
+
'panes.document-list-pane.error.will-retry-automatically_one': undefined, // 'Retrying…'
|
|
454
|
+
'panes.document-list-pane.error.will-retry-automatically_other': undefined, // 'Retrying… (#{{count}}).'
|
|
436
455
|
/** The text of the document list pane if more than a maximum number of documents are returned */
|
|
437
456
|
'panes.document-list-pane.max-items.text': 'Mostrant un màxim de {{limit}} documents',
|
|
438
457
|
/** The text of the document list pane if no documents are found for a specified type */
|
|
@@ -441,6 +460,8 @@ export default removeUndefinedLocaleResources({
|
|
|
441
460
|
'panes.document-list-pane.no-documents.text': "No s'han trobat resultats",
|
|
442
461
|
/** The text of the document list pane if no documents are found matching specified criteria */
|
|
443
462
|
'panes.document-list-pane.no-matching-documents.text': 'No hi ha documents coincidents',
|
|
463
|
+
/** The search input for the search input on the document list pane */
|
|
464
|
+
'panes.document-list-pane.reconnecting': undefined, // 'Trying to connect…'
|
|
444
465
|
/** The aria-label for the search input on the document list pane */
|
|
445
466
|
'panes.document-list-pane.search-input.aria-label': 'Cerca a la llista',
|
|
446
467
|
/** The search input for the search input on the document list pane */
|
|
@@ -579,4 +600,6 @@ export default removeUndefinedLocaleResources({
|
|
|
579
600
|
'timeline-item.menu.action-collapse': 'Col·lapsar',
|
|
580
601
|
/** The text for the expand action in the timeline item menu */
|
|
581
602
|
'timeline-item.menu.action-expand': 'Expandir',
|
|
603
|
+
/** The text for the published event menu tooltip when the release is not found */
|
|
604
|
+
'timeline-item.not-found-release.tooltip': undefined, // 'Release with id "{{releaseId}}" not found'
|
|
582
605
|
})
|
package/src/studio.ts
CHANGED
|
@@ -162,9 +162,13 @@ export default removeUndefinedLocaleResources({
|
|
|
162
162
|
/** Menu Items for Dataset Asset Source (will be replaced with workspace name by default) */
|
|
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
|
+
/** Error messages for the Media Library Asset Source */
|
|
166
|
+
'asset-sources.media-library.error.library-could-not-be-resolved': undefined, // 'Something went wrong trying to resolve the Media Library for this project.'
|
|
165
167
|
/** Menu Items for Media Library Asset Source */
|
|
166
168
|
'asset-sources.media-library.file.title': 'Biblioteca de mitjans',
|
|
167
169
|
'asset-sources.media-library.image.title': 'Biblioteca de mitjans',
|
|
170
|
+
/** Info messages for the Media Library Asset Source */
|
|
171
|
+
'asset-sources.media-library.info.provisioning': undefined, // 'Please wait while we prepare your Media Library'
|
|
168
172
|
|
|
169
173
|
/** Label when a release has been deleted by a different user */
|
|
170
174
|
'banners.deleted-bundle-banner.text':
|
|
@@ -312,6 +316,8 @@ export default removeUndefinedLocaleResources({
|
|
|
312
316
|
'changes.loading-author': 'Carregant…',
|
|
313
317
|
/** Loading changes in Review Changes Pane */
|
|
314
318
|
'changes.loading-changes': 'Carregant canvis…',
|
|
319
|
+
/** Error message shown when the document revision could not be found */
|
|
320
|
+
'changes.missing-since-document-error': undefined, // 'We couldn\'t find the document revision with id: <code>{{revisionId}}</code> you\'re trying to compare. <Break/> This is probably due to history retention policy of your plan. <Break/> Please select a different <strong>From</strong> entry.'
|
|
315
321
|
/** No Changes description in the Review Changes pane */
|
|
316
322
|
'changes.no-changes-description':
|
|
317
323
|
'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.',
|
|
@@ -360,6 +366,10 @@ export default removeUndefinedLocaleResources({
|
|
|
360
366
|
'changes.portable-text.unknown-inline-object-schema-type': "Tipus d'esquema desconegut",
|
|
361
367
|
/** 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 */
|
|
362
368
|
'changes.removed-label': 'Eliminat',
|
|
369
|
+
/** Same Revision Selected description in the Review Changes pane */
|
|
370
|
+
'changes.same-revision-selected-description': undefined, // 'You have selected the same <strong>from</strong> and <strong>to</strong> revision, please select different revisions to compare the changes between them.'
|
|
371
|
+
/** Same Revision Selected title in the Review Changes pane */
|
|
372
|
+
'changes.same-revision-selected-title': undefined, // 'Same revision selected'
|
|
363
373
|
/** Title for the Review Changes pane */
|
|
364
374
|
'changes.title': 'Història',
|
|
365
375
|
/**The title that will be shown in the badge inside the events when the item is a draft */
|
|
@@ -374,6 +384,8 @@ export default removeUndefinedLocaleResources({
|
|
|
374
384
|
'common.dialog.confirm-button.text': 'Confirma',
|
|
375
385
|
/** Default text in shared loader text / spinner lockup */
|
|
376
386
|
'common.loading': 'Carregant',
|
|
387
|
+
/** The title of the reconnecting toast */
|
|
388
|
+
'common.reconnecting.toast.title': undefined, // 'Trying to connect…'
|
|
377
389
|
|
|
378
390
|
/** --- Configuration issues --- */
|
|
379
391
|
/** Default label text on configuration issues button */
|
|
@@ -411,6 +423,8 @@ export default removeUndefinedLocaleResources({
|
|
|
411
423
|
'document-status.published': 'Publicat {{date}}',
|
|
412
424
|
/** Label to show in the document footer indicating the revision from date of the document */
|
|
413
425
|
'document-status.revision-from': 'Revisió de <em>{{date}}</em>',
|
|
426
|
+
/** Label to show in the document footer indicating that the revision was not found */
|
|
427
|
+
'document-status.revision-not-found': undefined, // 'Revision not found'
|
|
414
428
|
|
|
415
429
|
/** Label to indicate that a document type was not found */
|
|
416
430
|
'document.type.not-found': 'No s\'ha trobat el tipus de document "{{type}}"',
|
|
@@ -478,8 +492,6 @@ export default removeUndefinedLocaleResources({
|
|
|
478
492
|
'form.field.deprecated-label': 'obsolet',
|
|
479
493
|
/** Fallback title shown above field if it has no defined title */
|
|
480
494
|
'form.field.untitled-field-label': 'Camp sense títol',
|
|
481
|
-
/** The title of the reconnecting toast */
|
|
482
|
-
'form.reconnecting.toast.title': 'Connexió perduda. Reconnectant…',
|
|
483
495
|
/** Accessibility label for the icon that indicates the field has a validation error */
|
|
484
496
|
'form.validation.has-error-aria-label': 'Té error',
|
|
485
497
|
/** Accessibility label for the icon that indicates the field has validation information */
|
|
@@ -1159,6 +1171,15 @@ export default removeUndefinedLocaleResources({
|
|
|
1159
1171
|
/** Unexpected error: `{{error}}` */
|
|
1160
1172
|
'member-field-error.unexpected-error': 'Error inesperat: {{error}}',
|
|
1161
1173
|
|
|
1174
|
+
/** Text shown in warning when browser is using HTTP1 to communicate with the Sanity API */
|
|
1175
|
+
'network-check.slow-protocol-warning.description': undefined, // 'Your browser is using an outdated HTTP protocol to communicate with Sanity. This may result in substantially degraded performance.'
|
|
1176
|
+
/** 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': undefined, // 'Learn more'
|
|
1178
|
+
/** 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': undefined, // 'Don\'t show again for this session'
|
|
1180
|
+
/** Title text for the warning dialog when browser is using HTTP1 to communicate with the Sanity API */
|
|
1181
|
+
'network-check.slow-protocol-warning.title': undefined, // 'You\'ve got your breaks on'
|
|
1182
|
+
|
|
1162
1183
|
/** Button label for "Create new document" button */
|
|
1163
1184
|
'new-document.button': 'Crear',
|
|
1164
1185
|
/**
|
|
@@ -1822,6 +1843,10 @@ export default removeUndefinedLocaleResources({
|
|
|
1822
1843
|
'timeline.operation.deleted': 'Eliminat',
|
|
1823
1844
|
/** Label shown in review changes timeline when a document has been deleted, with a timestamp */
|
|
1824
1845
|
'timeline.operation.deleted_timestamp': 'Esborrat: {{timestamp, datetime}}',
|
|
1846
|
+
/** Label shown in review changes timeline when a draft document has been created*/
|
|
1847
|
+
'timeline.operation.draft-created': undefined, // 'Draft created'
|
|
1848
|
+
/** Label shown in review changes timeline when a draft document has been created, with a timestamp */
|
|
1849
|
+
'timeline.operation.draft-created_timestamp': undefined, // 'Draft created: {{timestamp, datetime}}'
|
|
1825
1850
|
/** Label shown in review changes timeline when a draft has been discarded */
|
|
1826
1851
|
'timeline.operation.draft-discarded': 'Esborrany descartat',
|
|
1827
1852
|
/** Label shown in review changes timeline when a draft has been discarded, with a timestamp */
|
|
@@ -1834,6 +1859,8 @@ export default removeUndefinedLocaleResources({
|
|
|
1834
1859
|
'timeline.operation.edited-live': 'Editat en viu',
|
|
1835
1860
|
/** Label shown in review changes timeline when a document has been edited live, with a timestamp */
|
|
1836
1861
|
'timeline.operation.edited-live_timestamp': 'Editat en viu: {{timestamp, datetime}}',
|
|
1862
|
+
/** Label shown in review changes timeline when a document has been created */
|
|
1863
|
+
'timeline.operation.history-cleared': undefined, // 'Deleted by retention policy'
|
|
1837
1864
|
/** Label shown in review changes timeline when a document was published */
|
|
1838
1865
|
'timeline.operation.published': 'Publicat',
|
|
1839
1866
|
/** Label shown in review changes timeline when a document was published, with a timestamp */
|
|
@@ -1842,6 +1869,14 @@ export default removeUndefinedLocaleResources({
|
|
|
1842
1869
|
'timeline.operation.unpublished': 'Despublicat',
|
|
1843
1870
|
/** Label shown in review changes timeline when a document was unpublished, with a timestamp */
|
|
1844
1871
|
'timeline.operation.unpublished_timestamp': 'Despublicat: {{timestamp, datetime}}',
|
|
1872
|
+
/** Label shown in review changes timeline when a document version has been created */
|
|
1873
|
+
'timeline.operation.version-created': undefined, // 'Version created'
|
|
1874
|
+
/** Label shown in review changes timeline when a document version has been created, with a timestamp */
|
|
1875
|
+
'timeline.operation.version-created_timestamp': undefined, // 'Version created: {{timestamp, datetime}}'
|
|
1876
|
+
/** Label shown in review changes timeline when a document version has been discarded */
|
|
1877
|
+
'timeline.operation.version-discarded': undefined, // 'Version discarded'
|
|
1878
|
+
/** Label shown in review changes timeline when a document version has been discarded, with a timestamp */
|
|
1879
|
+
'timeline.operation.version-discarded_timestamp': undefined, // 'Version discarded: {{timestamp, datetime}}'
|
|
1845
1880
|
/**
|
|
1846
1881
|
* Label for determining since which version the changes for timeline menu dropdown are showing.
|
|
1847
1882
|
* Receives the time label as a parameter (`timestamp`).
|
package/src/vision.ts
CHANGED
|
@@ -3,20 +3,48 @@ import {removeUndefinedLocaleResources} from 'sanity'
|
|
|
3
3
|
export default removeUndefinedLocaleResources({
|
|
4
4
|
/** Label for action "Copy to clipboard", tied to the "Query URL" field. Also used for accessibility purposes on button */
|
|
5
5
|
'action.copy-url-to-clipboard': 'Copia al porta-retalls',
|
|
6
|
+
/** Label for deleting a query */
|
|
7
|
+
'action.delete': undefined, // 'Delete'
|
|
8
|
+
/** Label for editing a query's title */
|
|
9
|
+
'action.edit-title': undefined, // 'Edit title'
|
|
6
10
|
/** Label for stopping an ongoing listen operation */
|
|
7
11
|
'action.listen-cancel': 'Atura',
|
|
8
12
|
/** Label for setting up a listener */
|
|
9
13
|
'action.listen-execute': 'Escolta',
|
|
14
|
+
/** Label for query loading table */
|
|
15
|
+
'action.load-queries': undefined, // 'Load queries'
|
|
16
|
+
/** Label for loading a query */
|
|
17
|
+
'action.load-query': undefined, // 'Load query'
|
|
10
18
|
/** Label for cancelling an ongoing query */
|
|
11
19
|
'action.query-cancel': 'Cancel·la',
|
|
12
20
|
/** Label for executing the query, eg doing a fetch */
|
|
13
21
|
'action.query-execute': 'Obté',
|
|
22
|
+
/** Label for saving a query */
|
|
23
|
+
'action.save-query': undefined, // 'Save query'
|
|
24
|
+
/** Label for updating a query */
|
|
25
|
+
'action.update': undefined, // 'Update'
|
|
14
26
|
|
|
27
|
+
/** Label for actions user can take */
|
|
28
|
+
'label.actions': undefined, // 'Actions'
|
|
29
|
+
/** Label for saved queries that have been edited */
|
|
30
|
+
'label.edited': undefined, // 'Edited'
|
|
15
31
|
/**
|
|
16
32
|
* Some features has a "New" label indicating that the feature was recently introduced.
|
|
17
33
|
* This defines what the text of that label is. Keep it short and sweet.
|
|
18
34
|
*/
|
|
19
35
|
'label.new': 'Nou',
|
|
36
|
+
/** Label for query type "personal" */
|
|
37
|
+
'label.personal': undefined, // 'Personal'
|
|
38
|
+
/** Label for savedAt date */
|
|
39
|
+
'label.saved-at': undefined, // 'Saved at'
|
|
40
|
+
/** Saved queries */
|
|
41
|
+
'label.saved-queries': undefined, // 'Saved queries'
|
|
42
|
+
/** Search queries */
|
|
43
|
+
'label.search-queries': undefined, // 'Search queries'
|
|
44
|
+
/** Share query */
|
|
45
|
+
'label.share': undefined, // 'Share'
|
|
46
|
+
/** Label for saved query type "team" */
|
|
47
|
+
'label.team': undefined, // 'Team'
|
|
20
48
|
|
|
21
49
|
/** Error message for when the "Params" input are not a valid json */
|
|
22
50
|
'params.error.params-invalid-json': 'Els paràmetres no són JSON vàlid',
|
|
@@ -48,6 +76,13 @@ export default removeUndefinedLocaleResources({
|
|
|
48
76
|
*/
|
|
49
77
|
'result.timing-not-applicable': 'n/d',
|
|
50
78
|
|
|
79
|
+
/** Query already saved error label */
|
|
80
|
+
'save-query.already-saved': undefined, // 'Query already saved'
|
|
81
|
+
/** Save error label */
|
|
82
|
+
'save-query.error': undefined, // 'Error saving query'
|
|
83
|
+
/** Save success label */
|
|
84
|
+
'save-query.success': undefined, // 'Query saved'
|
|
85
|
+
|
|
51
86
|
/** Label for the "API version" dropdown in settings */
|
|
52
87
|
'settings.api-version-label': "Versió de l'API",
|
|
53
88
|
/** Label for the "Custom API version" input in settings, shown when "other" is chosen as API version */
|