@sanity/locale-ca-es 1.0.7 → 1.0.8
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 +8 -0
- package/dist/_chunks-cjs/structure.cjs.map +1 -1
- package/dist/_chunks-cjs/studio.cjs +4 -0
- package/dist/_chunks-cjs/studio.cjs.map +1 -1
- package/dist/_chunks-es/structure.js +8 -0
- package/dist/_chunks-es/structure.js.map +1 -1
- package/dist/_chunks-es/studio.js +4 -0
- package/dist/_chunks-es/studio.js.map +1 -1
- package/package.json +2 -2
- package/src/structure.ts +8 -0
- package/src/studio.ts +4 -0
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.8",
|
|
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"
|
|
49
|
+
"sanity": "^3.22.0 || ^4.0.0-0 || ^5.0.0-0"
|
|
50
50
|
},
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
package/src/structure.ts
CHANGED
|
@@ -204,6 +204,14 @@ export default removeUndefinedLocaleResources({
|
|
|
204
204
|
'buttons.action-menu-button.aria-label': 'Obre les accions del document',
|
|
205
205
|
/** The action menu button tooltip */
|
|
206
206
|
'buttons.action-menu-button.tooltip': 'Accions del document',
|
|
207
|
+
/** The aria-label for the collapse pane button on the document panel header */
|
|
208
|
+
'buttons.focus-pane-button.aria-label.collapse': 'Col·lapsa tots els panells',
|
|
209
|
+
/** The aria-label for the focus pane button on the document panel header */
|
|
210
|
+
'buttons.focus-pane-button.aria-label.focus': 'Centra el panell',
|
|
211
|
+
/** The tooltip for the collapse pane button on the document panel header */
|
|
212
|
+
'buttons.focus-pane-button.tooltip.collapse': 'Col·lapsa tots els panells',
|
|
213
|
+
/** The tooltip for the focus pane button on the document panel header */
|
|
214
|
+
'buttons.focus-pane-button.tooltip.focus': 'Centra el panell',
|
|
207
215
|
/** The aria-label for the split pane button on the document panel header */
|
|
208
216
|
'buttons.split-pane-button.aria-label': 'Divideix el panell a la dreta',
|
|
209
217
|
/** The tool tip for the split pane button on the document panel header */
|
package/src/studio.ts
CHANGED
|
@@ -469,6 +469,8 @@ export default removeUndefinedLocaleResources({
|
|
|
469
469
|
'document-status.date': '{{date}}',
|
|
470
470
|
/** Label to show in the document footer indicating the last edited date of the document */
|
|
471
471
|
'document-status.edited': 'Editat {{date}}',
|
|
472
|
+
/** Label to show in the document footer status line when a document was last published */
|
|
473
|
+
'document-status.last-published': 'Darrera publicació',
|
|
472
474
|
/** Label to show in the document footer indicating the document is not published*/
|
|
473
475
|
'document-status.not-published': 'No publicat',
|
|
474
476
|
/** Label to show in the document footer indicating the published date of the document */
|
|
@@ -1459,6 +1461,8 @@ export default removeUndefinedLocaleResources({
|
|
|
1459
1461
|
/** Success toast for rescheduling a draft */
|
|
1460
1462
|
'release.toast.reschedule-scheduled-draft.success':
|
|
1461
1463
|
"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 */
|
|
1465
|
+
'release.toast.scheduled-draft-published.title': "L'esborrany programat ha estat publicat",
|
|
1462
1466
|
/** Label for when a version of a document has already been added to the release */
|
|
1463
1467
|
'release.tooltip.already-added': "Ja s'ha afegit una versió d'aquest document",
|
|
1464
1468
|
/** Label for when a release is scheduled / scheduling and a user can't add a document version to it */
|