@sanity/locale-ca-es 1.0.10 → 1.0.12
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/media-library.cjs +5 -10
- package/dist/_chunks-cjs/media-library.cjs.map +1 -1
- package/dist/_chunks-cjs/structure.cjs +3 -6
- package/dist/_chunks-cjs/structure.cjs.map +1 -1
- package/dist/_chunks-cjs/studio.cjs +38 -22
- package/dist/_chunks-cjs/studio.cjs.map +1 -1
- package/dist/_chunks-es/media-library.js +5 -10
- package/dist/_chunks-es/media-library.js.map +1 -1
- package/dist/_chunks-es/structure.js +3 -6
- package/dist/_chunks-es/structure.js.map +1 -1
- package/dist/_chunks-es/studio.js +38 -22
- package/dist/_chunks-es/studio.js.map +1 -1
- package/package.json +2 -2
- package/src/media-library.ts +6 -5
- package/src/structure.ts +4 -3
- package/src/studio.ts +43 -23
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.12",
|
|
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 || ^4.0.0-0 || ^5.0.0-0"
|
|
49
|
+
"sanity": "^3.22.0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0"
|
|
50
50
|
},
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
package/src/media-library.ts
CHANGED
|
@@ -2,14 +2,15 @@ import {removeUndefinedLocaleResources} from 'sanity'
|
|
|
2
2
|
|
|
3
3
|
export default removeUndefinedLocaleResources({
|
|
4
4
|
/** Warning description for invalid video value */
|
|
5
|
-
'invalid-video-warning.description':
|
|
5
|
+
'invalid-video-warning.description':
|
|
6
|
+
"El valor d'aquest camp no és un vídeo vàlid. Restablir aquest camp us permetrà triar un nou vídeo.",
|
|
6
7
|
/** Reset button text for invalid video warning */
|
|
7
|
-
'invalid-video-warning.reset-button.text':
|
|
8
|
+
'invalid-video-warning.reset-button.text': 'Restableix el valor',
|
|
8
9
|
/** Warning title for invalid video value */
|
|
9
|
-
'invalid-video-warning.title':
|
|
10
|
+
'invalid-video-warning.title': 'Valor de vídeo no vàlid',
|
|
10
11
|
|
|
11
12
|
/** Video error fallback description */
|
|
12
|
-
'video-error.description':
|
|
13
|
+
'video-error.description': "No s'ha pogut carregar el vídeo",
|
|
13
14
|
/** Retry button text for video loading errors */
|
|
14
|
-
'video-error.retry-button.text':
|
|
15
|
+
'video-error.retry-button.text': 'Torna-ho a intentar',
|
|
15
16
|
})
|
package/src/structure.ts
CHANGED
|
@@ -2,11 +2,11 @@ import {removeUndefinedLocaleResources} from 'sanity'
|
|
|
2
2
|
|
|
3
3
|
export default removeUndefinedLocaleResources({
|
|
4
4
|
/** Label for the "Copy document ID" menu item */
|
|
5
|
-
'action.copy-document-id.label':
|
|
5
|
+
'action.copy-document-id.label': "Copia l'ID del document",
|
|
6
6
|
/** Tooltip for the copy actions dropdown button in the document panel header */
|
|
7
7
|
'action.copy-document-url.label': "Copia l'URL del document",
|
|
8
8
|
/** Label for the "Copy document URL" menu item */
|
|
9
|
-
'action.copy-link-to-document.label':
|
|
9
|
+
'action.copy-link-to-document.label': "Copia l'URL del document",
|
|
10
10
|
/** Tooltip when action button is disabled because the operation is not ready */
|
|
11
11
|
'action.delete.disabled.not-ready': 'Operació no preparada',
|
|
12
12
|
/** Tooltip when action button is disabled because the document does not exist */
|
|
@@ -585,7 +585,8 @@ export default removeUndefinedLocaleResources({
|
|
|
585
585
|
'panes.document-operation-results.operation-success':
|
|
586
586
|
"S'ha realitzat amb èxit {{op}} en el document",
|
|
587
587
|
/** The text when copy document ID operation succeeded */
|
|
588
|
-
'panes.document-operation-results.operation-success_copy-id':
|
|
588
|
+
'panes.document-operation-results.operation-success_copy-id':
|
|
589
|
+
'ID del document copiat al porta-retalls',
|
|
589
590
|
/** The text when copy URL operation succeeded */
|
|
590
591
|
'panes.document-operation-results.operation-success_copy-url':
|
|
591
592
|
"L'URL del document s'ha copiat al porta-retalls",
|
package/src/studio.ts
CHANGED
|
@@ -78,6 +78,8 @@ export default removeUndefinedLocaleResources({
|
|
|
78
78
|
'asset-source.asset-usage-dialog.header_image': 'Documents que utilitzen la imatge',
|
|
79
79
|
/** Text shown in usage dialog when loading documents using the selected asset */
|
|
80
80
|
'asset-source.asset-usage-dialog.loading': 'Carregant…',
|
|
81
|
+
/** Browse button text */
|
|
82
|
+
'asset-source.browse-button.text': 'Selecciona',
|
|
81
83
|
/** Text for cancel action in delete-asset dialog */
|
|
82
84
|
'asset-source.delete-dialog.action.cancel': 'Cancel·lar',
|
|
83
85
|
/** Text for "confirm delete" action in delete-asset dialog */
|
|
@@ -122,12 +124,6 @@ export default removeUndefinedLocaleResources({
|
|
|
122
124
|
/** Select asset dialog select-button */
|
|
123
125
|
'asset-source.dialog.button.select': 'Selecciona',
|
|
124
126
|
/** Keys shared between both image asset source and file asset source */
|
|
125
|
-
/** Select asset dialog title for files */
|
|
126
|
-
'asset-source.dialog.default-title_file': "Selecciona l'arxiu",
|
|
127
|
-
/** Select asset dialog title for images */
|
|
128
|
-
'asset-source.dialog.default-title_image': 'Selecciona la imatge',
|
|
129
|
-
/** Select asset dialog title for videos */
|
|
130
|
-
'asset-source.dialog.default-title_video': 'Selecciona vídeo',
|
|
131
127
|
/** Insert asset error */
|
|
132
128
|
'asset-source.dialog.insert-asset-error':
|
|
133
129
|
"Error en inserir l'actiu. Consulta la consola per a més informació.",
|
|
@@ -216,13 +212,8 @@ export default removeUndefinedLocaleResources({
|
|
|
216
212
|
'Selecciona un nou actiu',
|
|
217
213
|
/** Title for the open in source dialog */
|
|
218
214
|
'asset-sources.media-library.open-in-source-dialog.title': "Edita l'actiu",
|
|
219
|
-
/**
|
|
220
|
-
'asset-sources.media-library.
|
|
221
|
-
'Seleccionant fitxer per a {{targetTitle}}',
|
|
222
|
-
'asset-sources.media-library.select-dialog.title_image':
|
|
223
|
-
'Seleccionant imatge per a {{targetTitle}}',
|
|
224
|
-
'asset-sources.media-library.select-dialog.title_video':
|
|
225
|
-
'Seleccionant vídeo per a {{targetTitle}}',
|
|
215
|
+
/** Title for the upload dialog (component mode) */
|
|
216
|
+
'asset-sources.media-library.upload-dialog.title': 'Puja a la Media Library',
|
|
226
217
|
/** Warning message shown when uploading already existing files to the Media Library Asset Source */
|
|
227
218
|
'asset-sources.media-library.warning.file-already-exist.description':
|
|
228
219
|
'Utilitzant el fitxer existent trobat a la biblioteca.',
|
|
@@ -472,6 +463,26 @@ export default removeUndefinedLocaleResources({
|
|
|
472
463
|
/** Title for the default ordering/SortOrder if no orderings are provided and the title field is found */
|
|
473
464
|
'default-orderings.title': 'Ordena per Títol',
|
|
474
465
|
|
|
466
|
+
/** Label for action that closes divergence inspector */
|
|
467
|
+
'divergence.action.close.label': 'Tanca',
|
|
468
|
+
/** Label for action that marks divergence as resolved */
|
|
469
|
+
'divergence.action.markResolved.label': 'Ignora',
|
|
470
|
+
/** Label for action that moves inspector to the next divergence in the document */
|
|
471
|
+
'divergence.action.next.label': 'Següent',
|
|
472
|
+
/** Label for action that moves inspector to the previous divergence in the document */
|
|
473
|
+
'divergence.action.previous.label': 'Anterior',
|
|
474
|
+
/** Label for action that replaces the node's value in the current version with its latest value in the upstream version */
|
|
475
|
+
'divergence.action.takeFromUpstream.label': 'Copia de la base',
|
|
476
|
+
/** Verb to describe the node's value changed */
|
|
477
|
+
'divergence.effect.changed': 'canviat',
|
|
478
|
+
/** Summary of the change that occurred */
|
|
479
|
+
'divergence.effect.summary': '{{title}} {{effect}} a la versió {{versionName}}',
|
|
480
|
+
/** Label for divergence in a single node */
|
|
481
|
+
'divergence.unresolved-divergence_one': 'Canvi no resolt a la versió {{versionName}}',
|
|
482
|
+
/** Label for divergences in multiple nodes */
|
|
483
|
+
'divergence.unresolved-divergence_other':
|
|
484
|
+
'{{count}} canvis no resolts a la versió {{versionName}}',
|
|
485
|
+
|
|
475
486
|
/** Label to show in the document footer indicating the creation date of the document */
|
|
476
487
|
'document-status.created': 'Creat {{date}}',
|
|
477
488
|
/** Label to show in the document status indicating the date of the status */
|
|
@@ -489,6 +500,11 @@ export default removeUndefinedLocaleResources({
|
|
|
489
500
|
/** Label to show in the document footer indicating that the revision was not found */
|
|
490
501
|
'document-status.revision-not-found': 'Revisió no trobada',
|
|
491
502
|
|
|
503
|
+
/** Toast description shown when saving changes is taking longer than expected */
|
|
504
|
+
'document-store.slow-commit.description': "Els vostres canvis s'estan desant.",
|
|
505
|
+
/** Toast title shown when saving changes is taking longer than expected */
|
|
506
|
+
'document-store.slow-commit.title': 'El desament està trigant més del previst',
|
|
507
|
+
|
|
492
508
|
/** Label to indicate that a document type was not found */
|
|
493
509
|
'document.type.not-found': 'No s\'ha trobat el tipus de document "{{type}}"',
|
|
494
510
|
|
|
@@ -646,7 +662,7 @@ export default removeUndefinedLocaleResources({
|
|
|
646
662
|
/** Label for editing the item of a specific type, eg "Edit Person" */
|
|
647
663
|
'inputs.array.action.edit': 'Edita {{itemTypeTitle}}',
|
|
648
664
|
/** Tooltip text explaining why adding items is disabled when array max is reached */
|
|
649
|
-
'inputs.array.action.max-reached':
|
|
665
|
+
'inputs.array.action.max-reached': "S'ha assolit el nombre màxim d'elements",
|
|
650
666
|
/** Label for removing an array item action */
|
|
651
667
|
'inputs.array.action.remove': 'Elimina',
|
|
652
668
|
/** Label for removing action when an array item has an error */
|
|
@@ -701,10 +717,6 @@ export default removeUndefinedLocaleResources({
|
|
|
701
717
|
'inputs.datetime.placeholder': 'p. ex. {{example}}',
|
|
702
718
|
/** Acessibility label for button to open file options menu */
|
|
703
719
|
'inputs.file.actions-menu.file-options.aria-label': "Obre el menú d'opcions de fitxer",
|
|
704
|
-
/** Browse */
|
|
705
|
-
'inputs.file.browse-button.text': 'Selecciona',
|
|
706
|
-
/** Select file */
|
|
707
|
-
'inputs.file.dialog.title': 'Seleccioneu fitxer',
|
|
708
720
|
/** Unknown member kind: `{{kind}}` */
|
|
709
721
|
'inputs.file.error.unknown-member-kind': 'Tipus de membre desconegut: {{kind}}',
|
|
710
722
|
/** The value of this field is not a valid file. Resetting this field will let you choose a new file. */
|
|
@@ -714,8 +726,6 @@ export default removeUndefinedLocaleResources({
|
|
|
714
726
|
'inputs.file.invalid-file-warning.reset-button.text': 'Restableix valor',
|
|
715
727
|
/** Invalid file value */
|
|
716
728
|
'inputs.file.invalid-file-warning.title': 'Valor de fitxer no vàlid',
|
|
717
|
-
/** Select */
|
|
718
|
-
'inputs.file.multi-browse-button.text': 'Seleccioneu',
|
|
719
729
|
/** The upload could not be completed at this time. */
|
|
720
730
|
'inputs.file.upload-failed.description': "La càrrega no s'ha pogut completar en aquest moment.",
|
|
721
731
|
/** Upload failed */
|
|
@@ -785,14 +795,14 @@ export default removeUndefinedLocaleResources({
|
|
|
785
795
|
"Una pujada no ha progressat durant almenys {{staleThresholdMinutes}} minuts i probablement s'ha interromput. Pots netejar la pujada incompleta i intentar pujar de nou sense problemes.",
|
|
786
796
|
/** Incomplete upload */
|
|
787
797
|
'inputs.files.common.stale-upload-warning.title': 'Pujada incompleta',
|
|
798
|
+
/** Select file */
|
|
799
|
+
'inputs.files.select-dialog.title': 'Selecciona un fitxer per a «{{targetTitle}}»',
|
|
788
800
|
/** Tooltip text for action to crop image */
|
|
789
801
|
'inputs.image.actions-menu.crop-image-tooltip': 'Retalla la imatge',
|
|
790
802
|
/** Accessibility label for button to open image edit dialog */
|
|
791
803
|
'inputs.image.actions-menu.edit-details.aria-label': "Obre el diàleg d'edició de la imatge",
|
|
792
804
|
/** Accessibility label for button to open image options menu */
|
|
793
805
|
'inputs.image.actions-menu.options.aria-label': "Obre el menú d'opcions de la imatge",
|
|
794
|
-
/** Select */
|
|
795
|
-
'inputs.image.browse-menu.text': 'Selecciona',
|
|
796
806
|
/** Cannot upload this file here */
|
|
797
807
|
'inputs.image.drag-overlay.cannot-upload-here': 'No es pot pujar aquest arxiu aquí',
|
|
798
808
|
/** Drop image to upload */
|
|
@@ -815,6 +825,8 @@ export default removeUndefinedLocaleResources({
|
|
|
815
825
|
'inputs.image.invalid-image-warning.title': 'Valor de la imatge invàlid',
|
|
816
826
|
/** Preview of uploaded image */
|
|
817
827
|
'inputs.image.preview-uploaded-image': 'Previsualització de la imatge pujada',
|
|
828
|
+
/** Select image */
|
|
829
|
+
'inputs.image.select-dialog.title': 'Selecciona una imatge per a «{{targetTitle}}»',
|
|
818
830
|
/** The upload could not be completed at this time. */
|
|
819
831
|
'inputs.image.upload-error.description': "La pujada no s'ha pogut completar en aquest moment.",
|
|
820
832
|
/** Upload failed */
|
|
@@ -871,7 +883,8 @@ export default removeUndefinedLocaleResources({
|
|
|
871
883
|
'inputs.object.unknown-fields.read-only.description':
|
|
872
884
|
"Aquest camp és <strong>només de lectura</strong> segons l'esquema del document i no es pot desactivar. Si vols poder desactivar això a l'Estudi, assegura't de treure el camp <code>readOnly</code> del tipus que l'envolta a l'esquema.",
|
|
873
885
|
/** Fallback description shown when the unknown reference preview cannot be loaded */
|
|
874
|
-
'inputs.object.unknown-fields.reference.preview.unavailable':
|
|
886
|
+
'inputs.object.unknown-fields.reference.preview.unavailable':
|
|
887
|
+
"No s'ha pogut carregar la previsualització de la referència «{{documentId}}».",
|
|
875
888
|
/** Remove field */
|
|
876
889
|
'inputs.object.unknown-fields.remove-field-button.text': 'Elimina camp',
|
|
877
890
|
/** Encountered `{{count}}` fields that are not defined in the schema. */
|
|
@@ -1225,6 +1238,8 @@ export default removeUndefinedLocaleResources({
|
|
|
1225
1238
|
'inputs.untyped-value.title': 'Valor de la propietat sense <code>_type</code>',
|
|
1226
1239
|
/** Unset value */
|
|
1227
1240
|
'inputs.untyped-value.unset-item-button.text': 'Desestablir valor',
|
|
1241
|
+
/** Select video */
|
|
1242
|
+
'inputs.video.select-dialog.title': 'Selecciona un vídeo per a «{{targetTitle}}»',
|
|
1228
1243
|
|
|
1229
1244
|
/** The fallback explanation if no context is provided */
|
|
1230
1245
|
'insufficient-permissions-message.not-authorized-explanation':
|
|
@@ -2212,6 +2227,11 @@ export default removeUndefinedLocaleResources({
|
|
|
2212
2227
|
/** Label for open menu button for user menu */
|
|
2213
2228
|
'user-menu.open-menu': 'Obre el menú',
|
|
2214
2229
|
|
|
2230
|
+
/** Label for other users' agent bundle versions */
|
|
2231
|
+
'version.agent-bundle.agent-changes': "Canvis de l'agent",
|
|
2232
|
+
/** Label for the current user's agent bundle versions */
|
|
2233
|
+
'version.agent-bundle.proposed-changes': 'Canvis proposats',
|
|
2234
|
+
|
|
2215
2235
|
/**
|
|
2216
2236
|
* Label for action to add a workspace (currently a developer-oriented action, as this will
|
|
2217
2237
|
* lead to the documentation on workspace configuration)
|