@sanity/locale-ca-es 1.0.8 → 1.0.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity/locale-ca-es",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "private": false,
5
5
  "description": "Catalan / Català locale/translation for Sanity Studio",
6
6
  "keywords": [
package/src/comments.ts CHANGED
@@ -79,6 +79,9 @@ export default removeUndefinedLocaleResources({
79
79
  /** The text shown in the inline comment button */
80
80
  'inline-add-comment-button.title': 'Afegeix un comentari',
81
81
 
82
+ /** The title of the error card shown in the comments inspector */
83
+ 'inspector-error.title': 'Alguna cosa ha anat malament en carregar els comentaris',
84
+
82
85
  /** Aria label for the breadcrumb button showing the field path. `{{field}}` is the last (most specific) field. */
83
86
  'list-item.breadcrumb-button-go-to-field-aria-label': 'Vés al camp {{field}}',
84
87
  /** The button tooltip content for the add reaction button */
package/src/structure.ts CHANGED
@@ -18,6 +18,11 @@ export default removeUndefinedLocaleResources({
18
18
  /** Message prompting the user to confirm discarding changes */
19
19
  'action.discard-changes.confirm-dialog.confirm-discard-changes':
20
20
  "Estàs segur que vols descartar tots els canvis des de l'última publicació?",
21
+ /** Message prompting the user to confirm discarding changes */
22
+ 'action.discard-changes.confirm-dialog.confirm-discard-changes-draft':
23
+ "Esteu segurs que voleu descartar tots els canvis i eliminar aquest document d'esborrany?",
24
+ /**Header for the confirm discard dialog */
25
+ 'action.discard-changes.confirm-dialog.header.text': 'Descartar els canvis?',
21
26
  /** Tooltip when action is disabled because the document has no unpublished changes */
22
27
  'action.discard-changes.disabled.no-change': 'Aquest document no té canvis sense publicar',
23
28
  /** Tooltip when action is disabled because the document is not published */
@@ -171,6 +176,11 @@ export default removeUndefinedLocaleResources({
171
176
  /** The text for the banner that appears when there are multiple versions but no drafts or published, more than one extra releases */
172
177
  'banners.release.navigate-to-edit-description-multiple_other':
173
178
  'Aquest document forma part de la publicació <VersionBadge/> i {{count}} publicacions més',
179
+ /** The text for the banner that appears when a document is not part of any release
180
+ * @deprecated – no longer in use
181
+ * */
182
+ 'banners.release.navigate-to-edit-description-none':
183
+ 'Aquest document no forma part de cap llançament',
174
184
  /** The text for the banner that appears when a document only has one version but is in a draft or published pinned release */
175
185
  'banners.release.navigate-to-edit-description-single':
176
186
  'Aquest document forma part de la publicació <VersionBadge/>',
@@ -223,6 +233,13 @@ export default removeUndefinedLocaleResources({
223
233
 
224
234
  /** The text for the canvas linked banner action button */
225
235
  'canvas.banner.edit-in-canvas-action': 'Edita a Canvas',
236
+ /** The text for the canvas linked banner when the document in editable mode*/
237
+ 'canvas.banner.editable.linked-text': 'Aquest document es pot editar a Canvas.',
238
+ /** The description for the canvas linked banner popover in editable mode*/
239
+ 'canvas.banner.editable.popover-description':
240
+ 'Canvas et permet escriure lliurement, després actualitzar el contingut a Studio sense haver de copiar manualment camp per camp.',
241
+ /** The heading for the canvas linked banner popover in editable mode*/
242
+ 'canvas.banner.editable.popover-heading': 'Escriptura de forma lliure',
226
243
  /** The text for the canvas linked banner when the document is a draft */
227
244
  'canvas.banner.linked-text.draft': 'Aquest document esborrany està vinculat a Canvas',
228
245
  /** The text for the canvas linked banner when the document is a live document */
package/src/studio.ts CHANGED
@@ -1383,11 +1383,23 @@ export default removeUndefinedLocaleResources({
1383
1383
  'release.dialog.create.confirm': 'Crear versió',
1384
1384
  /** Title for creating releases dialog */
1385
1385
  'release.dialog.create.title': 'Nova versió',
1386
- /** Body text for the dialog confirming deletion of a scheduled draft */
1387
- 'release.dialog.delete-schedule-draft.body':
1388
- 'Estàs segur que vols eliminar aquest esborrany programat? Aquesta acció no es pot desfer.',
1386
+ /** Body text when deleting scheduled draft and draft is already up to date */
1387
+ 'release.dialog.delete-schedule-draft.body-already-current':
1388
+ 'Voleu eliminar aquest esborrany programat? El vostre esborrany ja està actualitzat.',
1389
+ /** Body text when deleting scheduled draft and changes will be saved to draft */
1390
+ 'release.dialog.delete-schedule-draft.body-will-save-to-draft':
1391
+ "Voleu eliminar aquest esborrany programat? Els vostres canvis es desaran a l'esborrany.",
1392
+ /** Body text when deleting scheduled draft with checkbox shown for user choice */
1393
+ 'release.dialog.delete-schedule-draft.body-with-choice':
1394
+ 'Voleu eliminar aquest esborrany programat?',
1389
1395
  /** Confirm button text for deleting a scheduled draft */
1390
1396
  'release.dialog.delete-schedule-draft.confirm': 'Sí, elimina el calendari',
1397
+ /** Checkbox label for copying scheduled draft to draft before deletion */
1398
+ 'release.dialog.delete-schedule-draft.copy-checkbox':
1399
+ "Mantingueu els meus canvis programats copiant-los a l'esborrany (recomanat)",
1400
+ /** Explanation text shown when scheduled draft has different changes than current draft */
1401
+ 'release.dialog.delete-schedule-draft.different-changes-explanation':
1402
+ 'El vostre esborrany programat té canvis diferents dels del vostre esborrany actual.',
1391
1403
  /** Header for the dialog confirming deletion of a scheduled draft */
1392
1404
  'release.dialog.delete-schedule-draft.header': "Elimina l'esborrany programat",
1393
1405
  /** Body text for change schedule dialog */
@@ -1431,9 +1443,13 @@ export default removeUndefinedLocaleResources({
1431
1443
  'release.schedule-dialog.publish-date-in-past-warning': 'Programa per a un temps i data futurs.',
1432
1444
  /** Label for date picker when scheduling a release */
1433
1445
  'release.schedule-dialog.select-publish-date-label': 'Publica el',
1434
- /** The toast description that will be shown when the user has a release perspective which is now archived */
1446
+ /** The toast description that will be shown when the user has a release perspective which is now archived
1447
+ * @deprecated – no longer needed
1448
+ * */
1435
1449
  'release.toast.archived-release.description': 'Aquesta versió ha estat desancorada',
1436
- /** The toast title that will be shown when the user has a release perspective which is now archived */
1450
+ /** The toast title that will be shown when the user has a release perspective which is now archived
1451
+ * @deprecated – no longer needed
1452
+ * */
1437
1453
  'release.toast.archived-release.title': "La versió '{{title}}' ha estat arxivada",
1438
1454
  /** The toast title that will be shown the creating a release fails */
1439
1455
  'release.toast.create-release-error.title': "No s'ha pogut crear la release",
@@ -1443,7 +1459,9 @@ export default removeUndefinedLocaleResources({
1443
1459
  /** Success toast for deleting a scheduled draft */
1444
1460
  'release.toast.delete-schedule-draft.success':
1445
1461
  "El document d'esborrany programat <strong>{{title}}</strong> ha estat eliminat.",
1446
- /** The toast title that will be shown when the user has a release perspective which is now deleted */
1462
+ /** The toast title that will be shown when the user has a release perspective which is now deleted
1463
+ * @deprecated – no longer needed
1464
+ * */
1447
1465
  'release.toast.not-found-release.title': "No s'ha trobat la release '{{title}}'",
1448
1466
  /** Error toast for running a scheduled publish immediately */
1449
1467
  'release.toast.publish-scheduled-draft.error':
@@ -1451,9 +1469,13 @@ export default removeUndefinedLocaleResources({
1451
1469
  /** Success toast for running a scheduled publish immediately */
1452
1470
  'release.toast.publish-scheduled-draft.success':
1453
1471
  "El document d'esborrany programat <strong>{{title}}</strong> ha estat publicat.",
1454
- /** The toast description that will be shown when the user has a release perspective which is now published */
1472
+ /** The toast description that will be shown when the user has a release perspective which is now published
1473
+ * @deprecated – no longer needed
1474
+ **/
1455
1475
  'release.toast.published-release.description': 'Aquesta release ha estat desancorada',
1456
- /** The toast title that will be shown when the user has a release perspective which is now deleted */
1476
+ /** The toast title that will be shown when the user has a release perspective which is now deleted
1477
+ * @deprecated – no longer needed
1478
+ **/
1457
1479
  'release.toast.published-release.title': "La release '{{title}}' ha estat publicada",
1458
1480
  /** Error toast for rescheduling a draft */
1459
1481
  'release.toast.reschedule-scheduled-draft.error':
@@ -1461,7 +1483,9 @@ export default removeUndefinedLocaleResources({
1461
1483
  /** Success toast for rescheduling a draft */
1462
1484
  'release.toast.reschedule-scheduled-draft.success':
1463
1485
  "El document d'esborrany programat <strong>{{title}}</strong> ha estat reprogramat.",
1464
- /** The toast title that will be shown when the user has a scheduled draft perspective which is now published */
1486
+ /** The toast title that will be shown when the user has a scheduled draft perspective which is now published
1487
+ * @deprecated – no longer needed
1488
+ * */
1465
1489
  'release.toast.scheduled-draft-published.title': "L'esborrany programat ha estat publicat",
1466
1490
  /** Label for when a version of a document has already been added to the release */
1467
1491
  'release.tooltip.already-added': "Ja s'ha afegit una versió d'aquest document",
@@ -1477,6 +1501,15 @@ export default removeUndefinedLocaleResources({
1477
1501
  /** Tooltip for the dropdown to show all versions of document */
1478
1502
  'release.version-list.tooltip': 'Veure totes les versions del document',
1479
1503
 
1504
+ /** Button text for contacting support in the releases misconfiguration dialog */
1505
+ 'releases.upsell.misconfiguration.contact-support': 'Contacteu amb el Suport',
1506
+ /** Header for the releases misconfiguration dialog */
1507
+ 'releases.upsell.misconfiguration.header':
1508
+ 'Problema de configuració de les publicacions de contingut',
1509
+ /** Message shown in the releases misconfiguration dialog */
1510
+ 'releases.upsell.misconfiguration.message':
1511
+ 'Les publicacions de contingut estan habilitades per al vostre projecte, però sembla que hi ha un problema de configuració amb els límits de les vostres publicacions. Si us plau, contacteu amb el suport per configurar correctament les vostres publicacions de contingut.',
1512
+
1480
1513
  /** Confirm button text for the schedule publish dialog */
1481
1514
  'schedule-publish-dialog.confirm': 'Programa',
1482
1515
  /** Description for the schedule publish dialog */