@sanity/locale-ca-es 1.0.0
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/LICENSE +21 -0
- package/README.md +61 -0
- package/dist/_chunks-cjs/canvas.cjs +58 -0
- package/dist/_chunks-cjs/canvas.cjs.map +1 -0
- package/dist/_chunks-cjs/comments.cjs +175 -0
- package/dist/_chunks-cjs/comments.cjs.map +1 -0
- package/dist/_chunks-cjs/copy-paste.cjs +53 -0
- package/dist/_chunks-cjs/copy-paste.cjs.map +1 -0
- package/dist/_chunks-cjs/create.cjs +50 -0
- package/dist/_chunks-cjs/create.cjs.map +1 -0
- package/dist/_chunks-cjs/structure.cjs +490 -0
- package/dist/_chunks-cjs/structure.cjs.map +1 -0
- package/dist/_chunks-cjs/studio.cjs +1705 -0
- package/dist/_chunks-cjs/studio.cjs.map +1 -0
- package/dist/_chunks-cjs/tasks.cjs +155 -0
- package/dist/_chunks-cjs/tasks.cjs.map +1 -0
- package/dist/_chunks-cjs/validation.cjs +93 -0
- package/dist/_chunks-cjs/validation.cjs.map +1 -0
- package/dist/_chunks-cjs/vision.cjs +76 -0
- package/dist/_chunks-cjs/vision.cjs.map +1 -0
- package/dist/_chunks-es/canvas.js +60 -0
- package/dist/_chunks-es/canvas.js.map +1 -0
- package/dist/_chunks-es/comments.js +177 -0
- package/dist/_chunks-es/comments.js.map +1 -0
- package/dist/_chunks-es/copy-paste.js +55 -0
- package/dist/_chunks-es/copy-paste.js.map +1 -0
- package/dist/_chunks-es/create.js +52 -0
- package/dist/_chunks-es/create.js.map +1 -0
- package/dist/_chunks-es/structure.js +492 -0
- package/dist/_chunks-es/structure.js.map +1 -0
- package/dist/_chunks-es/studio.js +1707 -0
- package/dist/_chunks-es/studio.js.map +1 -0
- package/dist/_chunks-es/tasks.js +157 -0
- package/dist/_chunks-es/tasks.js.map +1 -0
- package/dist/_chunks-es/validation.js +95 -0
- package/dist/_chunks-es/validation.js.map +1 -0
- package/dist/_chunks-es/vision.js +78 -0
- package/dist/_chunks-es/vision.js.map +1 -0
- package/dist/index.cjs +75 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +57 -0
- package/dist/index.js.map +1 -0
- package/package.json +60 -0
- package/src/canvas.ts +67 -0
- package/src/comments.ts +197 -0
- package/src/copy-paste.ts +66 -0
- package/src/create.ts +40 -0
- package/src/index.ts +72 -0
- package/src/structure.ts +582 -0
- package/src/studio.ts +1941 -0
- package/src/tasks.ts +172 -0
- package/src/validation.ts +99 -0
- package/src/vision.ts +83 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Sanity.io
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# @sanity/locale-ca-es
|
|
2
|
+
|
|
3
|
+
Catalan / Català language support for [Sanity Studio](https://www.sanity.io/).
|
|
4
|
+
|
|
5
|
+
## Description
|
|
6
|
+
|
|
7
|
+
This is a community maintained language plugin. Initial translations were done by AI and may have errors. Contributions are [more than welcome](#contributing)!
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
npm install @sanity/locale-ca-es
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```ts
|
|
18
|
+
// sanity.config.ts / sanity.config.js:
|
|
19
|
+
import {defineConfig} from 'sanity'
|
|
20
|
+
import {caESLocale} from '@sanity/locale-ca-es'
|
|
21
|
+
|
|
22
|
+
export default defineConfig({
|
|
23
|
+
// ...
|
|
24
|
+
plugins: [
|
|
25
|
+
// ... other plugins here ...
|
|
26
|
+
caESLocale(),
|
|
27
|
+
],
|
|
28
|
+
})
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
The language should now show up in the Studio's user menu.
|
|
32
|
+
|
|
33
|
+
If you want to customize the title of the locale, pass it as an option to the plugin:
|
|
34
|
+
|
|
35
|
+
```ts
|
|
36
|
+
// sanity.config.ts / sanity.config.js:
|
|
37
|
+
import {defineConfig} from 'sanity'
|
|
38
|
+
import {caESLocale} from '@sanity/locale-ca-es'
|
|
39
|
+
|
|
40
|
+
export default defineConfig({
|
|
41
|
+
// ...
|
|
42
|
+
plugins: [
|
|
43
|
+
// ... other plugins here ...
|
|
44
|
+
caESLocale({
|
|
45
|
+
title: 'Catalan',
|
|
46
|
+
}),
|
|
47
|
+
],
|
|
48
|
+
})
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Contributors
|
|
52
|
+
|
|
53
|
+
- [@jorvixsky](https://github.com/jorvixsky)
|
|
54
|
+
|
|
55
|
+
## Contributing
|
|
56
|
+
|
|
57
|
+
Feel free to contribute improvements/changes! The strings are located in the `src` folder, where the file name represents the "namespace". Send a pull request, and feel free to add yourself to the `contributors` array in `locales/registry.ts`. If you want to help review new translations, add yourself to the `maintainers` array instead. After doing your changes, run `pnpm run reconcile` and add the changes to version control.
|
|
58
|
+
|
|
59
|
+
## License
|
|
60
|
+
|
|
61
|
+
MIT-licensed. See LICENSE.
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var sanity = require("sanity"), canvas = sanity.removeUndefinedLocaleResources({
|
|
3
|
+
/** The text for the "Edit in Canvas" action. */
|
|
4
|
+
"action.edit-document": "Edita a Canvas",
|
|
5
|
+
/** The text for the "Link to Canvas" action. */
|
|
6
|
+
"action.link-document": "Enlla\xE7a a Canvas",
|
|
7
|
+
/** The text for the "Link to Canvas" action when the document is not yet resolved. */
|
|
8
|
+
"action.link-document-disabled.initial-value-not-resolved": "Espereu fins que els valors inicials del document estiguin resolts",
|
|
9
|
+
/** The text for the "Link to Canvas" action when the user doesn't have permissions to link the document to Canvas. */
|
|
10
|
+
"action.link-document-disabled.missing-permissions": "No teniu permisos per enlla\xE7ar aquest document a Canvas",
|
|
11
|
+
/** The text for the "Link to Canvas" action when the document is not in the dashboard. */
|
|
12
|
+
"action.link-document-disabled.not-in-dashboard": "Obriu aquest document al Tauler de control per enlla\xE7ar-lo a Canvas",
|
|
13
|
+
/** The text for the "Link to Canvas" action when the document is a version document. */
|
|
14
|
+
"action.link-document-disabled.version-document": "Els documents de versi\xF3 encara no s\xF3n compatibles amb Canvas",
|
|
15
|
+
/** The text for the "Unlink from Canvas" action. */
|
|
16
|
+
"action.unlink-document": "Desenlla\xE7a de Canvas",
|
|
17
|
+
/** The text for the action button in the banner when the document is linked to Canvas. */
|
|
18
|
+
"banner.edit-document-in-canvas": "Edita a Canvas",
|
|
19
|
+
/** The text for the banner when the document is linked to Canvas. */
|
|
20
|
+
"banner.linked-to-canvas": "Aquest document est\xE0 enlla\xE7at a Canvas",
|
|
21
|
+
/** The text for the "Confirm document changes" dialog cancel button. */
|
|
22
|
+
"dialog.confirm-document-changes.cancel": "Cancel\xB7la",
|
|
23
|
+
/** The text for the "Confirm document changes" dialog confirm button. */
|
|
24
|
+
"dialog.confirm-document-changes.confirm": "Accepta i continua",
|
|
25
|
+
/** The description for the "Confirm document changes" dialog. */
|
|
26
|
+
"dialog.confirm-document-changes.description": `Aquest document necessita ser actualitzat per ser compatible amb Canvas.
|
|
27
|
+
El contingut existent pot ser editat o eliminat com a part d'aquest proc\xE9s.`,
|
|
28
|
+
/** The description for the "Confirm document changes" dialog footer. */
|
|
29
|
+
"dialog.confirm-document-changes.footer-description": "Podeu desenlla\xE7ar de Canvas en qualsevol moment",
|
|
30
|
+
/** The title for the "Confirm document changes" dialog. */
|
|
31
|
+
"dialog.confirm-document-changes.title": "Confirma els canvis del document",
|
|
32
|
+
/** The text for the Link to Canvas dialog when there is a error. */
|
|
33
|
+
"dialog.link-to-canvas.error": "No s'ha pogut enlla\xE7ar a Canvas",
|
|
34
|
+
/** The text for the "Link to Canvas" dialog when the document is being redirected. */
|
|
35
|
+
"dialog.link-to-canvas.redirecting": "Us estem redirigint a Canvas per completar l'enlla\xE7...",
|
|
36
|
+
/** The title for the "Link to Canvas" dialog. */
|
|
37
|
+
"dialog.link-to-canvas.title": "Enlla\xE7a a Canvas",
|
|
38
|
+
/** The text for the "Link to Canvas" dialog when the document is being validated. */
|
|
39
|
+
"dialog.link-to-canvas.validating": "Validant",
|
|
40
|
+
/** The text for the "Unlink from Canvas" dialog cancel button. */
|
|
41
|
+
"dialog.unlink-from-canvas.cancel": "Cancel\xB7la",
|
|
42
|
+
/** The text for the "Unlink from Canvas" dialog description. */
|
|
43
|
+
"dialog.unlink-from-canvas.description": "Un cop desenlla\xE7at, ser\xE0 editable aqu\xED i les futures edicions a Canvas ja no es mapejaran autom\xE0ticament a aquest document.",
|
|
44
|
+
/** The text for the "Unlink from Canvas" dialog error message. */
|
|
45
|
+
"dialog.unlink-from-canvas.error": "No s'ha pogut desenlla\xE7ar de Canvas",
|
|
46
|
+
/** The text for the "Unlink from Canvas" dialog success message. */
|
|
47
|
+
"dialog.unlink-from-canvas.success": "Desenlla\xE7at de Canvas",
|
|
48
|
+
/** The title for the "Unlink from Canvas" dialog. */
|
|
49
|
+
"dialog.unlink-from-canvas.title": "Desenlla\xE7a de Canvas",
|
|
50
|
+
/** The text for the "Unlink from Canvas" dialog unlink button. */
|
|
51
|
+
"dialog.unlink-from-canvas.unlink-action": "Desenlla\xE7a ara",
|
|
52
|
+
/** The text for the "Unlink from Canvas" dialog when the document is being unlinked. */
|
|
53
|
+
"dialog.unlink-from-canvas.unlinking": "Esteu desenlla\xE7ant <strong>\u201C{{documentTitle}}\u201D</strong> de Canvas.",
|
|
54
|
+
/** The text for the "Navigate to Canvas" dialog error message. */
|
|
55
|
+
"navigate-to-canvas-doc.error.missing-permissions": "Falten permisos per navegar al Canvas"
|
|
56
|
+
});
|
|
57
|
+
exports.default = canvas;
|
|
58
|
+
//# sourceMappingURL=canvas.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"canvas.cjs","sources":["../../src/canvas.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** The text for the \"Edit in Canvas\" action. */\n 'action.edit-document': 'Edita a Canvas',\n /** The text for the \"Link to Canvas\" action. */\n 'action.link-document': 'Enllaça a Canvas',\n /** The text for the \"Link to Canvas\" action when the document is not yet resolved. */\n 'action.link-document-disabled.initial-value-not-resolved':\n 'Espereu fins que els valors inicials del document estiguin resolts',\n /** The text for the \"Link to Canvas\" action when the user doesn't have permissions to link the document to Canvas. */\n 'action.link-document-disabled.missing-permissions':\n 'No teniu permisos per enllaçar aquest document a Canvas',\n /** The text for the \"Link to Canvas\" action when the document is not in the dashboard. */\n 'action.link-document-disabled.not-in-dashboard':\n 'Obriu aquest document al Tauler de control per enllaçar-lo a Canvas',\n /** The text for the \"Link to Canvas\" action when the document is a version document. */\n 'action.link-document-disabled.version-document':\n 'Els documents de versió encara no són compatibles amb Canvas',\n /** The text for the \"Unlink from Canvas\" action. */\n 'action.unlink-document': 'Desenllaça de Canvas',\n\n /** The text for the action button in the banner when the document is linked to Canvas. */\n 'banner.edit-document-in-canvas': 'Edita a Canvas',\n /** The text for the banner when the document is linked to Canvas. */\n 'banner.linked-to-canvas': 'Aquest document està enllaçat a Canvas',\n\n /** The text for the \"Confirm document changes\" dialog cancel button. */\n 'dialog.confirm-document-changes.cancel': 'Cancel·la',\n /** The text for the \"Confirm document changes\" dialog confirm button. */\n 'dialog.confirm-document-changes.confirm': 'Accepta i continua',\n /** The description for the \"Confirm document changes\" dialog. */\n 'dialog.confirm-document-changes.description':\n \"Aquest document necessita ser actualitzat per ser compatible amb Canvas.\\n El contingut existent pot ser editat o eliminat com a part d'aquest procés.\",\n /** The description for the \"Confirm document changes\" dialog footer. */\n 'dialog.confirm-document-changes.footer-description':\n 'Podeu desenllaçar de Canvas en qualsevol moment',\n /** The title for the \"Confirm document changes\" dialog. */\n 'dialog.confirm-document-changes.title': 'Confirma els canvis del document',\n /** The text for the Link to Canvas dialog when there is a error. */\n 'dialog.link-to-canvas.error': \"No s'ha pogut enllaçar a Canvas\",\n /** The text for the \"Link to Canvas\" dialog when the document is being redirected. */\n 'dialog.link-to-canvas.redirecting': \"Us estem redirigint a Canvas per completar l'enllaç...\",\n /** The title for the \"Link to Canvas\" dialog. */\n 'dialog.link-to-canvas.title': 'Enllaça a Canvas',\n /** The text for the \"Link to Canvas\" dialog when the document is being validated. */\n 'dialog.link-to-canvas.validating': 'Validant',\n /** The text for the \"Unlink from Canvas\" dialog cancel button. */\n 'dialog.unlink-from-canvas.cancel': 'Cancel·la',\n /** The text for the \"Unlink from Canvas\" dialog description. */\n 'dialog.unlink-from-canvas.description':\n 'Un cop desenllaçat, serà editable aquí i les futures edicions a Canvas ja no es mapejaran automàticament a aquest document.',\n /** The text for the \"Unlink from Canvas\" dialog error message. */\n 'dialog.unlink-from-canvas.error': \"No s'ha pogut desenllaçar de Canvas\",\n /** The text for the \"Unlink from Canvas\" dialog success message. */\n 'dialog.unlink-from-canvas.success': 'Desenllaçat de Canvas',\n /** The title for the \"Unlink from Canvas\" dialog. */\n 'dialog.unlink-from-canvas.title': 'Desenllaça de Canvas',\n /** The text for the \"Unlink from Canvas\" dialog unlink button. */\n 'dialog.unlink-from-canvas.unlink-action': 'Desenllaça ara',\n /** The text for the \"Unlink from Canvas\" dialog when the document is being unlinked. */\n 'dialog.unlink-from-canvas.unlinking':\n 'Esteu desenllaçant <strong>“{{documentTitle}}”</strong> de Canvas.',\n\n /** The text for the \"Navigate to Canvas\" dialog error message. */\n 'navigate-to-canvas-doc.error.missing-permissions': 'Falten permisos per navegar al Canvas',\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":";gCAEA,SAAeA,sCAA+B;AAAA;AAAA,EAE5C,wBAAwB;AAAA;AAAA,EAExB,wBAAwB;AAAA;AAAA,EAExB,4DACE;AAAA;AAAA,EAEF,qDACE;AAAA;AAAA,EAEF,kDACE;AAAA;AAAA,EAEF,kDACE;AAAA;AAAA,EAEF,0BAA0B;AAAA;AAAA,EAG1B,kCAAkC;AAAA;AAAA,EAElC,2BAA2B;AAAA;AAAA,EAG3B,0CAA0C;AAAA;AAAA,EAE1C,2CAA2C;AAAA;AAAA,EAE3C,+CACE;AAAA;AAAA;AAAA,EAEF,sDACE;AAAA;AAAA,EAEF,yCAAyC;AAAA;AAAA,EAEzC,+BAA+B;AAAA;AAAA,EAE/B,qCAAqC;AAAA;AAAA,EAErC,+BAA+B;AAAA;AAAA,EAE/B,oCAAoC;AAAA;AAAA,EAEpC,oCAAoC;AAAA;AAAA,EAEpC,yCACE;AAAA;AAAA,EAEF,mCAAmC;AAAA;AAAA,EAEnC,qCAAqC;AAAA;AAAA,EAErC,mCAAmC;AAAA;AAAA,EAEnC,2CAA2C;AAAA;AAAA,EAE3C,uCACE;AAAA;AAAA,EAGF,oDAAoD;AACtD,CAAC;;"}
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var sanity = require("sanity"), comments = sanity.removeUndefinedLocaleResources({
|
|
3
|
+
/** The close comments button text */
|
|
4
|
+
"close-pane-button-text": "Tanca els comentaris",
|
|
5
|
+
/** The aria label for the close comments button */
|
|
6
|
+
"close-pane-button-text-aria-label": "Tanca els comentaris",
|
|
7
|
+
/** When composing a comment, the placeholder text shown when adding a comment to a field with no current comments */
|
|
8
|
+
"compose.add-comment-input-placeholder": "Afegeix un comentari a <strong>{{field}}</strong>",
|
|
9
|
+
/** When composing a comment, the placeholder text shown when adding a comment to a field with no current comments and the mode is upsell */
|
|
10
|
+
"compose.add-comment-input-placeholder-upsell": "Actualitza per afegir un comentari",
|
|
11
|
+
/** When composing a comment, the placeholder text shown when the input is empty */
|
|
12
|
+
"compose.create-comment-placeholder": "Crea un nou comentari",
|
|
13
|
+
/** When composing a comment, the aria label for the button to mention a user */
|
|
14
|
+
"compose.mention-user-aria-label": "Menciona un usuari",
|
|
15
|
+
/** When composing a comment, the tooltip text for the button to mention a user */
|
|
16
|
+
"compose.mention-user-tooltip": "Menciona un usuari",
|
|
17
|
+
/** When composing a reply, the placeholder text shown when the input is empty */
|
|
18
|
+
"compose.reply-placeholder": "Respon",
|
|
19
|
+
/** When composing a reply, the placeholder text shown when the input is empty and the mode is upsell */
|
|
20
|
+
"compose.reply-placeholder-upsell": "Actualitza per respondre",
|
|
21
|
+
/** When composing a comment, the aria label for the button to send a comment */
|
|
22
|
+
"compose.send-comment-aria-label": "Envia el comentari",
|
|
23
|
+
/** When composing a comment, the tooltip text for the button to send a comment */
|
|
24
|
+
"compose.send-comment-tooltip": "Envia el comentari",
|
|
25
|
+
/** The inspector text when error copying link */
|
|
26
|
+
"copy-link-error-message": "No s'ha pogut copiar l'enlla\xE7 al porta-retalls",
|
|
27
|
+
/** The delete dialog body for a comment */
|
|
28
|
+
"delete-comment.body": "Un cop eliminat, un comentari no es pot recuperar.",
|
|
29
|
+
/** The delete dialog confirm button text for a comment */
|
|
30
|
+
"delete-comment.confirm": "Elimina el comentari",
|
|
31
|
+
/** The delete dialog title for a comment */
|
|
32
|
+
"delete-comment.title": "Vols eliminar aquest comentari?",
|
|
33
|
+
/** The delete dialog error */
|
|
34
|
+
"delete-dialog.error": "S'ha produ\xEFt un error en eliminar el comentari. Si us plau, intenta-ho de nou.",
|
|
35
|
+
/** The delete dialog body for a thread */
|
|
36
|
+
"delete-thread.body": "Aquest comentari i les seves respostes seran eliminats, i un cop eliminats no es poden recuperar.",
|
|
37
|
+
/** The delete dialog conform button text for a thread */
|
|
38
|
+
"delete-thread.confirm": "Elimina el fil",
|
|
39
|
+
/** The delete dialog title for a thread */
|
|
40
|
+
"delete-thread.title": "Vols eliminar aquest fil de comentaris?",
|
|
41
|
+
/** The button text for confirming discard */
|
|
42
|
+
"discard.button-confirm": "Descarta",
|
|
43
|
+
/** The header for discard comment dialog */
|
|
44
|
+
"discard.header": "Vols descartar el comentari?",
|
|
45
|
+
/** The text for discard comment dialog */
|
|
46
|
+
"discard.text": "Vols descartar el comentari?",
|
|
47
|
+
/** Sharing feedback on the comments feature: The link title */
|
|
48
|
+
"feature-feedback.link": "Comparteix la teva opini\xF3",
|
|
49
|
+
/** Sharing feedback on the comments feature: The form title */
|
|
50
|
+
"feature-feedback.title": "Ajuda a millorar ",
|
|
51
|
+
/** The name of the comments feature, for use in header. Capitalized, eg "Comments". */
|
|
52
|
+
"feature-name": "Comentaris",
|
|
53
|
+
/** Aria label for button above fields to add a comment, when the field currently do not have any comments */
|
|
54
|
+
"field-button.aria-label-add": "Afegeix un comentari",
|
|
55
|
+
/** Aria label for button above fields that opens the comments for this field, when there are existing comments */
|
|
56
|
+
"field-button.aria-label-open": "Obre els comentaris",
|
|
57
|
+
/** Text shown in popover when hovering the button above fields that opens the comments panel, when there is a single comment present */
|
|
58
|
+
"field-button.content_one": "Veure comentari",
|
|
59
|
+
/** Text shown in popover when hovering the button above fields that opens the comments panel, when there are more than one comment present */
|
|
60
|
+
"field-button.content_other": "Veure comentaris",
|
|
61
|
+
/** Text shown in popover when hovering the button above fields to add a comment, when the field currently do not have any comments */
|
|
62
|
+
"field-button.title": "Afegeix un comentari",
|
|
63
|
+
/* The text shown in the inline comment button when the button is disabled due to overlap */
|
|
64
|
+
"inline-add-comment-button.disabled-overlap-title": "Els comentaris no poden solapar-se",
|
|
65
|
+
/** The text shown in the inline comment button */
|
|
66
|
+
"inline-add-comment-button.title": "Afegeix un comentari",
|
|
67
|
+
/** Aria label for the breadcrumb button showing the field path. `{{field}}` is the last (most specific) field. */
|
|
68
|
+
"list-item.breadcrumb-button-go-to-field-aria-label": "V\xE9s al camp {{field}}",
|
|
69
|
+
/** The button tooltip content for the add reaction button */
|
|
70
|
+
"list-item.context-menu-add-reaction": "Afegeix una reacci\xF3",
|
|
71
|
+
/** The button tooltip aria label for adding a reaction */
|
|
72
|
+
"list-item.context-menu-add-reaction-aria-label": "Afegeix una reacci\xF3",
|
|
73
|
+
/** The button tooltip content for the add reaction button and mode is upsell */
|
|
74
|
+
"list-item.context-menu-add-reaction-upsell": "Actualitza per afegir una reacci\xF3",
|
|
75
|
+
/** The action menu item for copying a comment link */
|
|
76
|
+
"list-item.copy-link": "Copia l'enlla\xE7 al comentari",
|
|
77
|
+
/** The action menu item for deleting a comment */
|
|
78
|
+
"list-item.delete-comment": "Esborra el comentari",
|
|
79
|
+
/** The action menu item for editing a comment */
|
|
80
|
+
"list-item.edit-comment": "Edita el comentari",
|
|
81
|
+
/** The action menu item for editing a comment and the mode is upsell */
|
|
82
|
+
"list-item.edit-comment-upsell": "Actualitza per editar el comentari",
|
|
83
|
+
/** Aria label for the button that takes you to the field, which wraps a thread/comment */
|
|
84
|
+
"list-item.go-to-field-button.aria-label": "V\xE9s al camp",
|
|
85
|
+
/**
|
|
86
|
+
* The text shown below the author and timestamp of a comment including a link back to the context in which the comment was made.
|
|
87
|
+
* Consists of a document title wrapped in a link, and a word or phrase to indicate that the link refers to a location:
|
|
88
|
+
* eg "on Home", "on Coffee Machine | Products", "on Pricing – Sanity"
|
|
89
|
+
*/
|
|
90
|
+
"list-item.layout-context": "a <IntentLink>{{title}}</IntentLink>",
|
|
91
|
+
/** The marker to indicate that a comment has been edited in brackets */
|
|
92
|
+
"list-item.layout-edited": "editat",
|
|
93
|
+
/** The error text when sending a comment has failed */
|
|
94
|
+
"list-item.layout-failed-sent": "No s'ha pogut enviar.",
|
|
95
|
+
/** The loading message when posting a comment is in progress */
|
|
96
|
+
"list-item.layout-posting": "Publicant...",
|
|
97
|
+
/** The text for retrying posting a comment */
|
|
98
|
+
"list-item.layout-retry": "Torna-ho a provar",
|
|
99
|
+
/** The text shown when the value a comment references has been deleted */
|
|
100
|
+
"list-item.missing-referenced-value-tooltip-content": "El text comentat ha estat esborrat",
|
|
101
|
+
/** The aria label for the comments menu button to open the actions menu */
|
|
102
|
+
"list-item.open-menu-aria-label": "Obre el men\xFA d'accions del comentari",
|
|
103
|
+
/** The button text to re-open a resolved comment */
|
|
104
|
+
"list-item.re-open-resolved": "Reobre",
|
|
105
|
+
/** The button aria label to re-open a comment that is resolved */
|
|
106
|
+
"list-item.re-open-resolved-aria-label": "Reobre",
|
|
107
|
+
/** The button aria label to mark a comment as resolved */
|
|
108
|
+
"list-item.resolved-tooltip-aria-label": "Marca el comentari com a resolt",
|
|
109
|
+
/** The button text to mark a comment as resolved */
|
|
110
|
+
"list-item.resolved-tooltip-content": "Marca com a resolt",
|
|
111
|
+
/** The empty state text for open comments */
|
|
112
|
+
"list-status.empty-state-open-text": "Els comentaris oberts en aquest document es mostraran aqu\xED.",
|
|
113
|
+
/** The empty state title for open comments */
|
|
114
|
+
"list-status.empty-state-open-title": "Encara no hi ha comentaris oberts",
|
|
115
|
+
/** The empty state text for resolved comments */
|
|
116
|
+
"list-status.empty-state-resolved-text": "Els comentaris resolts en aquest document es mostraran aqu\xED.",
|
|
117
|
+
/** The empty state title for resolved comments */
|
|
118
|
+
"list-status.empty-state-resolved-title": "Encara no hi ha comentaris resolts",
|
|
119
|
+
/** The list status message for error */
|
|
120
|
+
"list-status.error": "Alguna cosa ha anat malament",
|
|
121
|
+
/** The list status message for loading status */
|
|
122
|
+
"list-status.loading": "Carregant comentaris",
|
|
123
|
+
/** Text shown when no users can be found to mention */
|
|
124
|
+
"mentions.no-users-found": "No s'han trobat usuaris",
|
|
125
|
+
/** Label/badge shown for users that are not authorized to see the document, and thus cannot be mentioned */
|
|
126
|
+
"mentions.unauthorized-user": "No autoritzat",
|
|
127
|
+
/** Aria label for the command list for users to mention */
|
|
128
|
+
"mentions.user-list-aria-label": "Llista d'usuaris per mencionar",
|
|
129
|
+
/** The comments onboarding popover text */
|
|
130
|
+
"onboarding.body": "Pots afegir comentaris a qualsevol camp d'un document. Apareixeran aqu\xED, agrupats per camp.",
|
|
131
|
+
/** The comments onboarding dismiss text */
|
|
132
|
+
"onboarding.dismiss": "Ent\xE8s",
|
|
133
|
+
/** The comments onboarding popover header text */
|
|
134
|
+
"onboarding.header": "Els camps del document ara tenen comentaris",
|
|
135
|
+
/** Tooltip for the button to add a reaction to a comment */
|
|
136
|
+
"reactions.add-reaction-tooltip": "Afegeix reacci\xF3",
|
|
137
|
+
/** Aria label for the individual reactions you can choose from when reacting to a comment */
|
|
138
|
+
"reactions.react-with-aria-label": "Reacciona amb {{reactionName}}",
|
|
139
|
+
/** When a users' name cannot be resolved, fall back to this name */
|
|
140
|
+
"reactions.user-list.unknown-user-fallback-name": "Usuari desconegut",
|
|
141
|
+
/**
|
|
142
|
+
* When showing list of users who have reacted, replaces your own name with "you", eg
|
|
143
|
+
* "Donna, you, James, and Tyler reacted with 👍". A different key (`_leading` suffix)
|
|
144
|
+
* is used when you are the first to react, eg "You, Donna and Tyler reacted with 👍".
|
|
145
|
+
* Use `{{name}}` if you want to instead use the current users' actual name.
|
|
146
|
+
*/
|
|
147
|
+
"reactions.user-list.you": "tu",
|
|
148
|
+
/**
|
|
149
|
+
* When showing list of users who have reacted, replaces your own name with "You", eg
|
|
150
|
+
* "You, Donna, James, and Tyler reacted with 👍". A different key (`_leading` suffix)
|
|
151
|
+
* is used when you are not the first to react, eg "Donna, you, James and Tyler reacted with 👍".
|
|
152
|
+
* Use `{{name}}` if you want to instead use the current users' actual name.
|
|
153
|
+
*/
|
|
154
|
+
"reactions.user-list.you_leading": "Tu",
|
|
155
|
+
/**
|
|
156
|
+
* The text shown for the tooltip that appears when hovering over the reaction count, eg
|
|
157
|
+
* "Donna, James, and Tyler Reacted with 👍". Three components are available for use:
|
|
158
|
+
* - `<UserList/>` - the list of names of users who have reacted, using the locales list format
|
|
159
|
+
* - `<Text>` - should be wrapped around the text describing the action ("reacted with")
|
|
160
|
+
* - `<ReactionName/>` - the name of the reaction emoji, eg ":heavy_plus_sign:"
|
|
161
|
+
*/
|
|
162
|
+
"reactions.users-reacted-with-reaction": "<UserList/> <Text>han reaccionat amb</Text> <ReactionName/>",
|
|
163
|
+
/** Status filter: The short title describing filtering on open (non-resolved) comments */
|
|
164
|
+
"status-filter.status-open": "Oberts",
|
|
165
|
+
/** Status filter: The full text for describing filtering on open (non-resolved) comments */
|
|
166
|
+
"status-filter.status-open-full": "Comentaris oberts",
|
|
167
|
+
/** Status filter: The short title describing filtering on resolved comments */
|
|
168
|
+
"status-filter.status-resolved": "Resolts",
|
|
169
|
+
/** Status filter: The full text for describing filtering on resolved comments */
|
|
170
|
+
"status-filter.status-resolved-full": "Comentaris resolts",
|
|
171
|
+
/** Status filter: The full text for describing filtering on resolved comments and is upsell mode */
|
|
172
|
+
"status-filter.status-resolved-full-upsell": "Actualitza per veure els comentaris resolts"
|
|
173
|
+
});
|
|
174
|
+
exports.default = comments;
|
|
175
|
+
//# sourceMappingURL=comments.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"comments.cjs","sources":["../../src/comments.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** The close comments button text */\n 'close-pane-button-text': 'Tanca els comentaris',\n\n /** The aria label for the close comments button */\n 'close-pane-button-text-aria-label': 'Tanca els comentaris',\n\n /** When composing a comment, the placeholder text shown when adding a comment to a field with no current comments */\n 'compose.add-comment-input-placeholder': 'Afegeix un comentari a <strong>{{field}}</strong>',\n /** When composing a comment, the placeholder text shown when adding a comment to a field with no current comments and the mode is upsell */\n 'compose.add-comment-input-placeholder-upsell': 'Actualitza per afegir un comentari',\n /** When composing a comment, the placeholder text shown when the input is empty */\n 'compose.create-comment-placeholder': 'Crea un nou comentari',\n /** When composing a comment, the aria label for the button to mention a user */\n 'compose.mention-user-aria-label': 'Menciona un usuari',\n /** When composing a comment, the tooltip text for the button to mention a user */\n 'compose.mention-user-tooltip': 'Menciona un usuari',\n /** When composing a reply, the placeholder text shown when the input is empty */\n 'compose.reply-placeholder': 'Respon',\n /** When composing a reply, the placeholder text shown when the input is empty and the mode is upsell */\n 'compose.reply-placeholder-upsell': 'Actualitza per respondre',\n /** When composing a comment, the aria label for the button to send a comment */\n 'compose.send-comment-aria-label': 'Envia el comentari',\n /** When composing a comment, the tooltip text for the button to send a comment */\n 'compose.send-comment-tooltip': 'Envia el comentari',\n\n /** The inspector text when error copying link */\n 'copy-link-error-message': \"No s'ha pogut copiar l'enllaç al porta-retalls\",\n\n /** The delete dialog body for a comment */\n 'delete-comment.body': 'Un cop eliminat, un comentari no es pot recuperar.',\n /** The delete dialog confirm button text for a comment */\n 'delete-comment.confirm': 'Elimina el comentari',\n /** The delete dialog title for a comment */\n 'delete-comment.title': 'Vols eliminar aquest comentari?',\n\n /** The delete dialog error */\n 'delete-dialog.error':\n \"S'ha produït un error en eliminar el comentari. Si us plau, intenta-ho de nou.\",\n\n /** The delete dialog body for a thread */\n 'delete-thread.body':\n 'Aquest comentari i les seves respostes seran eliminats, i un cop eliminats no es poden recuperar.',\n /** The delete dialog conform button text for a thread */\n 'delete-thread.confirm': 'Elimina el fil',\n /** The delete dialog title for a thread */\n 'delete-thread.title': 'Vols eliminar aquest fil de comentaris?',\n\n /** The button text for confirming discard */\n 'discard.button-confirm': 'Descarta',\n /** The header for discard comment dialog */\n 'discard.header': 'Vols descartar el comentari?',\n /** The text for discard comment dialog */\n 'discard.text': 'Vols descartar el comentari?',\n\n /** Sharing feedback on the comments feature: The link title */\n 'feature-feedback.link': 'Comparteix la teva opinió',\n /** Sharing feedback on the comments feature: The form title */\n 'feature-feedback.title': 'Ajuda a millorar ',\n\n /** The name of the comments feature, for use in header. Capitalized, eg \"Comments\". */\n 'feature-name': 'Comentaris',\n\n /** Aria label for button above fields to add a comment, when the field currently do not have any comments */\n 'field-button.aria-label-add': 'Afegeix un comentari',\n /** Aria label for button above fields that opens the comments for this field, when there are existing comments */\n 'field-button.aria-label-open': 'Obre els comentaris',\n /** Text shown in popover when hovering the button above fields that opens the comments panel, when there is a single comment present */\n 'field-button.content_one': 'Veure comentari',\n /** Text shown in popover when hovering the button above fields that opens the comments panel, when there are more than one comment present */\n 'field-button.content_other': 'Veure comentaris',\n /** Text shown in popover when hovering the button above fields to add a comment, when the field currently do not have any comments */\n 'field-button.title': 'Afegeix un comentari',\n\n /* The text shown in the inline comment button when the button is disabled due to overlap */\n 'inline-add-comment-button.disabled-overlap-title': 'Els comentaris no poden solapar-se',\n /** The text shown in the inline comment button */\n 'inline-add-comment-button.title': 'Afegeix un comentari',\n\n /** Aria label for the breadcrumb button showing the field path. `{{field}}` is the last (most specific) field. */\n 'list-item.breadcrumb-button-go-to-field-aria-label': 'Vés al camp {{field}}',\n /** The button tooltip content for the add reaction button */\n 'list-item.context-menu-add-reaction': 'Afegeix una reacció',\n /** The button tooltip aria label for adding a reaction */\n 'list-item.context-menu-add-reaction-aria-label': 'Afegeix una reacció',\n /** The button tooltip content for the add reaction button and mode is upsell */\n 'list-item.context-menu-add-reaction-upsell': 'Actualitza per afegir una reacció',\n /** The action menu item for copying a comment link */\n 'list-item.copy-link': \"Copia l'enllaç al comentari\",\n /** The action menu item for deleting a comment */\n 'list-item.delete-comment': 'Esborra el comentari',\n /** The action menu item for editing a comment */\n 'list-item.edit-comment': 'Edita el comentari',\n /** The action menu item for editing a comment and the mode is upsell */\n 'list-item.edit-comment-upsell': 'Actualitza per editar el comentari',\n /** Aria label for the button that takes you to the field, which wraps a thread/comment */\n 'list-item.go-to-field-button.aria-label': 'Vés al camp',\n /**\n * The text shown below the author and timestamp of a comment including a link back to the context in which the comment was made.\n * Consists of a document title wrapped in a link, and a word or phrase to indicate that the link refers to a location:\n * eg \"on Home\", \"on Coffee Machine | Products\", \"on Pricing – Sanity\"\n */\n 'list-item.layout-context': 'a <IntentLink>{{title}}</IntentLink>',\n /** The marker to indicate that a comment has been edited in brackets */\n 'list-item.layout-edited': 'editat',\n /** The error text when sending a comment has failed */\n 'list-item.layout-failed-sent': \"No s'ha pogut enviar.\",\n /** The loading message when posting a comment is in progress */\n 'list-item.layout-posting': 'Publicant...',\n /** The text for retrying posting a comment */\n 'list-item.layout-retry': 'Torna-ho a provar',\n /** The text shown when the value a comment references has been deleted */\n 'list-item.missing-referenced-value-tooltip-content': 'El text comentat ha estat esborrat',\n /** The aria label for the comments menu button to open the actions menu */\n 'list-item.open-menu-aria-label': \"Obre el menú d'accions del comentari\",\n /** The button text to re-open a resolved comment */\n 'list-item.re-open-resolved': 'Reobre',\n /** The button aria label to re-open a comment that is resolved */\n 'list-item.re-open-resolved-aria-label': 'Reobre',\n /** The button aria label to mark a comment as resolved */\n 'list-item.resolved-tooltip-aria-label': 'Marca el comentari com a resolt',\n /** The button text to mark a comment as resolved */\n 'list-item.resolved-tooltip-content': 'Marca com a resolt',\n\n /** The empty state text for open comments */\n 'list-status.empty-state-open-text':\n 'Els comentaris oberts en aquest document es mostraran aquí.',\n /** The empty state title for open comments */\n 'list-status.empty-state-open-title': 'Encara no hi ha comentaris oberts',\n /** The empty state text for resolved comments */\n 'list-status.empty-state-resolved-text':\n 'Els comentaris resolts en aquest document es mostraran aquí.',\n /** The empty state title for resolved comments */\n 'list-status.empty-state-resolved-title': 'Encara no hi ha comentaris resolts',\n /** The list status message for error */\n 'list-status.error': 'Alguna cosa ha anat malament',\n /** The list status message for loading status */\n 'list-status.loading': 'Carregant comentaris',\n\n /** Text shown when no users can be found to mention */\n 'mentions.no-users-found': \"No s'han trobat usuaris\",\n /** Label/badge shown for users that are not authorized to see the document, and thus cannot be mentioned */\n 'mentions.unauthorized-user': 'No autoritzat',\n /** Aria label for the command list for users to mention */\n 'mentions.user-list-aria-label': \"Llista d'usuaris per mencionar\",\n\n /** The comments onboarding popover text */\n 'onboarding.body':\n \"Pots afegir comentaris a qualsevol camp d'un document. Apareixeran aquí, agrupats per camp.\",\n /** The comments onboarding dismiss text */\n 'onboarding.dismiss': 'Entès',\n /** The comments onboarding popover header text */\n 'onboarding.header': 'Els camps del document ara tenen comentaris',\n\n /** Tooltip for the button to add a reaction to a comment */\n 'reactions.add-reaction-tooltip': 'Afegeix reacció',\n /** Aria label for the individual reactions you can choose from when reacting to a comment */\n 'reactions.react-with-aria-label': 'Reacciona amb {{reactionName}}',\n /** When a users' name cannot be resolved, fall back to this name */\n 'reactions.user-list.unknown-user-fallback-name': 'Usuari desconegut',\n /**\n * When showing list of users who have reacted, replaces your own name with \"you\", eg\n * \"Donna, you, James, and Tyler reacted with 👍\". A different key (`_leading` suffix)\n * is used when you are the first to react, eg \"You, Donna and Tyler reacted with 👍\".\n * Use `{{name}}` if you want to instead use the current users' actual name.\n */\n 'reactions.user-list.you': 'tu',\n /**\n * When showing list of users who have reacted, replaces your own name with \"You\", eg\n * \"You, Donna, James, and Tyler reacted with 👍\". A different key (`_leading` suffix)\n * is used when you are not the first to react, eg \"Donna, you, James and Tyler reacted with 👍\".\n * Use `{{name}}` if you want to instead use the current users' actual name.\n */\n 'reactions.user-list.you_leading': 'Tu',\n /**\n * The text shown for the tooltip that appears when hovering over the reaction count, eg\n * \"Donna, James, and Tyler Reacted with 👍\". Three components are available for use:\n * - `<UserList/>` - the list of names of users who have reacted, using the locales list format\n * - `<Text>` - should be wrapped around the text describing the action (\"reacted with\")\n * - `<ReactionName/>` - the name of the reaction emoji, eg \":heavy_plus_sign:\"\n */\n 'reactions.users-reacted-with-reaction':\n '<UserList/> <Text>han reaccionat amb</Text> <ReactionName/>',\n\n /** Status filter: The short title describing filtering on open (non-resolved) comments */\n 'status-filter.status-open': 'Oberts',\n /** Status filter: The full text for describing filtering on open (non-resolved) comments */\n 'status-filter.status-open-full': 'Comentaris oberts',\n /** Status filter: The short title describing filtering on resolved comments */\n 'status-filter.status-resolved': 'Resolts',\n /** Status filter: The full text for describing filtering on resolved comments */\n 'status-filter.status-resolved-full': 'Comentaris resolts',\n /** Status filter: The full text for describing filtering on resolved comments and is upsell mode */\n 'status-filter.status-resolved-full-upsell': 'Actualitza per veure els comentaris resolts',\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":";gCAEA,WAAeA,sCAA+B;AAAA;AAAA,EAE5C,0BAA0B;AAAA;AAAA,EAG1B,qCAAqC;AAAA;AAAA,EAGrC,yCAAyC;AAAA;AAAA,EAEzC,gDAAgD;AAAA;AAAA,EAEhD,sCAAsC;AAAA;AAAA,EAEtC,mCAAmC;AAAA;AAAA,EAEnC,gCAAgC;AAAA;AAAA,EAEhC,6BAA6B;AAAA;AAAA,EAE7B,oCAAoC;AAAA;AAAA,EAEpC,mCAAmC;AAAA;AAAA,EAEnC,gCAAgC;AAAA;AAAA,EAGhC,2BAA2B;AAAA;AAAA,EAG3B,uBAAuB;AAAA;AAAA,EAEvB,0BAA0B;AAAA;AAAA,EAE1B,wBAAwB;AAAA;AAAA,EAGxB,uBACE;AAAA;AAAA,EAGF,sBACE;AAAA;AAAA,EAEF,yBAAyB;AAAA;AAAA,EAEzB,uBAAuB;AAAA;AAAA,EAGvB,0BAA0B;AAAA;AAAA,EAE1B,kBAAkB;AAAA;AAAA,EAElB,gBAAgB;AAAA;AAAA,EAGhB,yBAAyB;AAAA;AAAA,EAEzB,0BAA0B;AAAA;AAAA,EAG1B,gBAAgB;AAAA;AAAA,EAGhB,+BAA+B;AAAA;AAAA,EAE/B,gCAAgC;AAAA;AAAA,EAEhC,4BAA4B;AAAA;AAAA,EAE5B,8BAA8B;AAAA;AAAA,EAE9B,sBAAsB;AAAA;AAAA,EAGtB,oDAAoD;AAAA;AAAA,EAEpD,mCAAmC;AAAA;AAAA,EAGnC,sDAAsD;AAAA;AAAA,EAEtD,uCAAuC;AAAA;AAAA,EAEvC,kDAAkD;AAAA;AAAA,EAElD,8CAA8C;AAAA;AAAA,EAE9C,uBAAuB;AAAA;AAAA,EAEvB,4BAA4B;AAAA;AAAA,EAE5B,0BAA0B;AAAA;AAAA,EAE1B,iCAAiC;AAAA;AAAA,EAEjC,2CAA2C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAM3C,4BAA4B;AAAA;AAAA,EAE5B,2BAA2B;AAAA;AAAA,EAE3B,gCAAgC;AAAA;AAAA,EAEhC,4BAA4B;AAAA;AAAA,EAE5B,0BAA0B;AAAA;AAAA,EAE1B,sDAAsD;AAAA;AAAA,EAEtD,kCAAkC;AAAA;AAAA,EAElC,8BAA8B;AAAA;AAAA,EAE9B,yCAAyC;AAAA;AAAA,EAEzC,yCAAyC;AAAA;AAAA,EAEzC,sCAAsC;AAAA;AAAA,EAGtC,qCACE;AAAA;AAAA,EAEF,sCAAsC;AAAA;AAAA,EAEtC,yCACE;AAAA;AAAA,EAEF,0CAA0C;AAAA;AAAA,EAE1C,qBAAqB;AAAA;AAAA,EAErB,uBAAuB;AAAA;AAAA,EAGvB,2BAA2B;AAAA;AAAA,EAE3B,8BAA8B;AAAA;AAAA,EAE9B,iCAAiC;AAAA;AAAA,EAGjC,mBACE;AAAA;AAAA,EAEF,sBAAsB;AAAA;AAAA,EAEtB,qBAAqB;AAAA;AAAA,EAGrB,kCAAkC;AAAA;AAAA,EAElC,mCAAmC;AAAA;AAAA,EAEnC,kDAAkD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOlD,2BAA2B;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAO3B,mCAAmC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQnC,yCACE;AAAA;AAAA,EAGF,6BAA6B;AAAA;AAAA,EAE7B,kCAAkC;AAAA;AAAA,EAElC,iCAAiC;AAAA;AAAA,EAEjC,sCAAsC;AAAA;AAAA,EAEtC,6CAA6C;AAC/C,CAAC;;"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var sanity = require("sanity"), copyPaste = sanity.removeUndefinedLocaleResources({
|
|
3
|
+
/** Text on the field action button to copy a document */
|
|
4
|
+
"copy-paste.field-action-copy-button.document.title": "Copia el document",
|
|
5
|
+
/** Text on the field action button to copy a field */
|
|
6
|
+
"copy-paste.field-action-copy-button.field.title": "Copia el camp",
|
|
7
|
+
/** Text on the field action button to paste a document */
|
|
8
|
+
"copy-paste.field-action-paste-button.document.title": "Enganxa el document",
|
|
9
|
+
/** Text on the field action button to paste a field */
|
|
10
|
+
"copy-paste.field-action-paste-button.field.title": "Enganxa el camp",
|
|
11
|
+
/** The error message that is shown when the clipboard is not supported */
|
|
12
|
+
"copy-paste.on-copy.validation.clipboard-not-supported.title": "El teu navegador no admet aquesta acci\xF3",
|
|
13
|
+
/** The error message that is shown when there is no value to copy */
|
|
14
|
+
"copy-paste.on-copy.validation.no-value.title": "Valor buit, res per copiar",
|
|
15
|
+
/** --- On copy --- */
|
|
16
|
+
/** The error message that is shown when schema types are incompatible */
|
|
17
|
+
"copy-paste.on-copy.validation.schema-type-incompatible.title": "No s'ha pogut resoldre el tipus d'esquema per la ruta: {{path}}",
|
|
18
|
+
/** The validation message that is shown when array types are incompatible */
|
|
19
|
+
"copy-paste.on-paste.validation.array-type-incompatible.description": `El valor del tipus "{{type}}" no est\xE0 perm\xE8s en aquest camp d'array`,
|
|
20
|
+
/** The validation message that is shown when array values are incompatible */
|
|
21
|
+
"copy-paste.on-paste.validation.array-value-incompatible.description": `El valor del tipus "{{type}}" no est\xE0 perm\xE8s en aquest camp d'array`,
|
|
22
|
+
/** The validation message that is shown when the clipboard is empty */
|
|
23
|
+
"copy-paste.on-paste.validation.clipboard-empty.title": "Res per enganxar",
|
|
24
|
+
/** The validation message that is shown when the clipboard item is invalid */
|
|
25
|
+
"copy-paste.on-paste.validation.clipboard-invalid.title": "Element del porta-retalls inv\xE0lid",
|
|
26
|
+
/** The validation message that is shown when image files are incompatible */
|
|
27
|
+
"copy-paste.on-paste.validation.image-file-incompatible.description": 'Un "{{sourceSchemaType}}" no est\xE0 perm\xE8s en un "{{targetSchemaType}}"',
|
|
28
|
+
/** The error message that is shown when the MIME type is not accepted */
|
|
29
|
+
"copy-paste.on-paste.validation.mime-type-incompatible.description": 'El tipus MIME "{{mimeType}}" no est\xE0 acceptat per aquest camp',
|
|
30
|
+
/** The error message that is shown when the MIME type validation fails */
|
|
31
|
+
"copy-paste.on-paste.validation.mime-type-validation-failed.description": "La validaci\xF3 del tipus MIME ha fallat",
|
|
32
|
+
/** The warning message that is shown when not all values can be pasted */
|
|
33
|
+
"copy-paste.on-paste.validation.partial-warning.title": "No s'han pogut enganxar tots els valors",
|
|
34
|
+
/** The validation message that is shown when primitive types are incompatible */
|
|
35
|
+
"copy-paste.on-paste.validation.primitive-type-incompatible.description": 'El valor del tipus "{{type}}" no est\xE0 perm\xE8s en aquest camp',
|
|
36
|
+
/** --- On paste --- */
|
|
37
|
+
/** The validation message that is shown when pasting a value into a read-only target */
|
|
38
|
+
"copy-paste.on-paste.validation.read-only-target.description": "El dest\xED \xE9s de nom\xE9s lectura",
|
|
39
|
+
/** The validation message that is shown when reference is incompatible with filter */
|
|
40
|
+
"copy-paste.on-paste.validation.reference-filter-incompatible.description": "La refer\xE8ncia no est\xE0 permesa en el camp de refer\xE8ncia segons el filtre",
|
|
41
|
+
/** The validation message that is shown when reference types are incompatible */
|
|
42
|
+
"copy-paste.on-paste.validation.reference-type-incompatible.description": 'Les refer\xE8ncies del tipus "{{sourceReferenceType}}" no estan permeses en el camp de refer\xE8ncia que accepta tipus "{{targetReferenceTypes}}"',
|
|
43
|
+
/** The validation message that is shown when reference does not exist */
|
|
44
|
+
"copy-paste.on-paste.validation.reference-validation-failed.description": 'El document referenciat "{{ref}}" no existeix',
|
|
45
|
+
/** The validation message that is shown when the source and target schema types are incompatible */
|
|
46
|
+
"copy-paste.on-paste.validation.schema-type-incompatible.description": "Els tipus d'esquema d'origen i dest\xED no s\xF3n compatibles",
|
|
47
|
+
/** The validation message that is shown when schema types are incompatible */
|
|
48
|
+
"copy-paste.on-paste.validation.schema-type-incompatible.title": "No s'ha pogut resoldre el tipus d'esquema per la ruta: {{path}}",
|
|
49
|
+
/** The validation message that is shown when string values are incompatible */
|
|
50
|
+
"copy-paste.on-paste.validation.string-value-incompatible.description": 'El valor "{{value}}" no est\xE0 perm\xE8s en "{{allowedStrings}}"'
|
|
51
|
+
});
|
|
52
|
+
exports.default = copyPaste;
|
|
53
|
+
//# sourceMappingURL=copy-paste.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"copy-paste.cjs","sources":["../../src/copy-paste.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Text on the field action button to copy a document */\n 'copy-paste.field-action-copy-button.document.title': 'Copia el document',\n /** Text on the field action button to copy a field */\n 'copy-paste.field-action-copy-button.field.title': 'Copia el camp',\n /** Text on the field action button to paste a document */\n 'copy-paste.field-action-paste-button.document.title': 'Enganxa el document',\n /** Text on the field action button to paste a field */\n 'copy-paste.field-action-paste-button.field.title': 'Enganxa el camp',\n /** The error message that is shown when the clipboard is not supported */\n 'copy-paste.on-copy.validation.clipboard-not-supported.title':\n 'El teu navegador no admet aquesta acció',\n /** The error message that is shown when there is no value to copy */\n 'copy-paste.on-copy.validation.no-value.title': 'Valor buit, res per copiar',\n /** --- On copy --- */\n /** The error message that is shown when schema types are incompatible */\n 'copy-paste.on-copy.validation.schema-type-incompatible.title':\n \"No s'ha pogut resoldre el tipus d'esquema per la ruta: {{path}}\",\n /** The validation message that is shown when array types are incompatible */\n 'copy-paste.on-paste.validation.array-type-incompatible.description':\n 'El valor del tipus \"{{type}}\" no està permès en aquest camp d\\'array',\n /** The validation message that is shown when array values are incompatible */\n 'copy-paste.on-paste.validation.array-value-incompatible.description':\n 'El valor del tipus \"{{type}}\" no està permès en aquest camp d\\'array',\n /** The validation message that is shown when the clipboard is empty */\n 'copy-paste.on-paste.validation.clipboard-empty.title': 'Res per enganxar',\n /** The validation message that is shown when the clipboard item is invalid */\n 'copy-paste.on-paste.validation.clipboard-invalid.title': 'Element del porta-retalls invàlid',\n /** The validation message that is shown when image files are incompatible */\n 'copy-paste.on-paste.validation.image-file-incompatible.description':\n 'Un \"{{sourceSchemaType}}\" no està permès en un \"{{targetSchemaType}}\"',\n /** The error message that is shown when the MIME type is not accepted */\n 'copy-paste.on-paste.validation.mime-type-incompatible.description':\n 'El tipus MIME \"{{mimeType}}\" no està acceptat per aquest camp',\n /** The error message that is shown when the MIME type validation fails */\n 'copy-paste.on-paste.validation.mime-type-validation-failed.description':\n 'La validació del tipus MIME ha fallat',\n /** The warning message that is shown when not all values can be pasted */\n 'copy-paste.on-paste.validation.partial-warning.title': \"No s'han pogut enganxar tots els valors\",\n /** The validation message that is shown when primitive types are incompatible */\n 'copy-paste.on-paste.validation.primitive-type-incompatible.description':\n 'El valor del tipus \"{{type}}\" no està permès en aquest camp',\n /** --- On paste --- */\n /** The validation message that is shown when pasting a value into a read-only target */\n 'copy-paste.on-paste.validation.read-only-target.description': 'El destí és de només lectura',\n /** The validation message that is shown when reference is incompatible with filter */\n 'copy-paste.on-paste.validation.reference-filter-incompatible.description':\n 'La referència no està permesa en el camp de referència segons el filtre',\n /** The validation message that is shown when reference types are incompatible */\n 'copy-paste.on-paste.validation.reference-type-incompatible.description':\n 'Les referències del tipus \"{{sourceReferenceType}}\" no estan permeses en el camp de referència que accepta tipus \"{{targetReferenceTypes}}\"',\n /** The validation message that is shown when reference does not exist */\n 'copy-paste.on-paste.validation.reference-validation-failed.description':\n 'El document referenciat \"{{ref}}\" no existeix',\n /** The validation message that is shown when the source and target schema types are incompatible */\n 'copy-paste.on-paste.validation.schema-type-incompatible.description':\n \"Els tipus d'esquema d'origen i destí no són compatibles\",\n /** The validation message that is shown when schema types are incompatible */\n 'copy-paste.on-paste.validation.schema-type-incompatible.title':\n \"No s'ha pogut resoldre el tipus d'esquema per la ruta: {{path}}\",\n /** The validation message that is shown when string values are incompatible */\n 'copy-paste.on-paste.validation.string-value-incompatible.description':\n 'El valor \"{{value}}\" no està permès en \"{{allowedStrings}}\"',\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":";gCAEA,YAAeA,sCAA+B;AAAA;AAAA,EAE5C,sDAAsD;AAAA;AAAA,EAEtD,mDAAmD;AAAA;AAAA,EAEnD,uDAAuD;AAAA;AAAA,EAEvD,oDAAoD;AAAA;AAAA,EAEpD,+DACE;AAAA;AAAA,EAEF,gDAAgD;AAAA;AAAA;AAAA,EAGhD,gEACE;AAAA;AAAA,EAEF,sEACE;AAAA;AAAA,EAEF,uEACE;AAAA;AAAA,EAEF,wDAAwD;AAAA;AAAA,EAExD,0DAA0D;AAAA;AAAA,EAE1D,sEACE;AAAA;AAAA,EAEF,qEACE;AAAA;AAAA,EAEF,0EACE;AAAA;AAAA,EAEF,wDAAwD;AAAA;AAAA,EAExD,0EACE;AAAA;AAAA;AAAA,EAGF,+DAA+D;AAAA;AAAA,EAE/D,4EACE;AAAA;AAAA,EAEF,0EACE;AAAA;AAAA,EAEF,0EACE;AAAA;AAAA,EAEF,uEACE;AAAA;AAAA,EAEF,iEACE;AAAA;AAAA,EAEF,wEACE;AACJ,CAAC;;"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var sanity = require("sanity"), create = sanity.removeUndefinedLocaleResources({
|
|
3
|
+
/** Text in badge above header in Create Link info popover */
|
|
4
|
+
"create-link-info-popover.eyebrow-badge": void 0,
|
|
5
|
+
// 'Early access'
|
|
6
|
+
/** Text above header in Create Link info popover */
|
|
7
|
+
"create-link-info-popover.eyebrow-title": void 0,
|
|
8
|
+
// 'Sanity Create'
|
|
9
|
+
/** Header in Create Link info popover */
|
|
10
|
+
"create-link-info-popover.header": void 0,
|
|
11
|
+
// 'Idea-first authoring'
|
|
12
|
+
/** Informational text in Create Link info popover */
|
|
13
|
+
"create-link-info-popover.text": void 0,
|
|
14
|
+
// 'Write naturally in an AI-powered editor. Your content automatically maps to Studio fields as you type.'
|
|
15
|
+
/** Tooltip for Create Link button */
|
|
16
|
+
"create-link-info.tooltip": void 0,
|
|
17
|
+
// 'Learn more'
|
|
18
|
+
/** Edit in Create button text */
|
|
19
|
+
"edit-in-create-button.text": void 0,
|
|
20
|
+
// 'Edit with Sanity Create'
|
|
21
|
+
/** CTA in "Start writing in Create" dialog: Learn more */
|
|
22
|
+
"start-in-create-dialog.cta.learn-more": void 0,
|
|
23
|
+
// 'Learn more.'
|
|
24
|
+
/** Text for the document pane banner informing users that the document is linked to Sanity Create */
|
|
25
|
+
"studio-create-link-banner.text": void 0,
|
|
26
|
+
// 'This document is linked to Sanity Create'
|
|
27
|
+
/** Unlink document from Sanity Create button text */
|
|
28
|
+
"unlink-from-create-button.text": void 0,
|
|
29
|
+
// 'Unlink'
|
|
30
|
+
/** Unlink from Create dialog: Cancel button text */
|
|
31
|
+
"unlink-from-create-dialog.cancel.text": void 0,
|
|
32
|
+
// 'Cancel'
|
|
33
|
+
/** Unlink from Create dialog: Document title used if no other title can be determined */
|
|
34
|
+
"unlink-from-create-dialog.document.untitled.text": void 0,
|
|
35
|
+
// 'Untitled'
|
|
36
|
+
/** Unlink from Create dialog – first informational paragraph */
|
|
37
|
+
"unlink-from-create-dialog.first-paragraph": void 0,
|
|
38
|
+
// 'You’re unlinking “<strong>{{title}}</strong>” from Sanity Create so it can be edited here.'
|
|
39
|
+
/** Unlink from Create dialog header */
|
|
40
|
+
"unlink-from-create-dialog.header": void 0,
|
|
41
|
+
// 'Switch editing to Studio?'
|
|
42
|
+
/** Unlink from Create dialog – second informational paragraph */
|
|
43
|
+
"unlink-from-create-dialog.second-paragraph": void 0,
|
|
44
|
+
// 'You’ll keep your content in both places. Any new changes in Sanity Create will stop syncing to this Studio.'
|
|
45
|
+
/** Unlink from Create dialog: Unlink button text */
|
|
46
|
+
"unlink-from-create-dialog.unlink.text": void 0
|
|
47
|
+
// 'Unlink now'
|
|
48
|
+
});
|
|
49
|
+
exports.default = create;
|
|
50
|
+
//# sourceMappingURL=create.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create.cjs","sources":["../../src/create.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Text in badge above header in Create Link info popover */\n 'create-link-info-popover.eyebrow-badge': undefined, // 'Early access'\n /** Text above header in Create Link info popover */\n 'create-link-info-popover.eyebrow-title': undefined, // 'Sanity Create'\n /** Header in Create Link info popover */\n 'create-link-info-popover.header': undefined, // 'Idea-first authoring'\n /** Informational text in Create Link info popover */\n 'create-link-info-popover.text': undefined, // 'Write naturally in an AI-powered editor. Your content automatically maps to Studio fields as you type.'\n\n /** Tooltip for Create Link button */\n 'create-link-info.tooltip': undefined, // 'Learn more'\n\n /** Edit in Create button text */\n 'edit-in-create-button.text': undefined, // 'Edit with Sanity Create'\n\n /** CTA in \"Start writing in Create\" dialog: Learn more */\n 'start-in-create-dialog.cta.learn-more': undefined, // 'Learn more.'\n\n /** Text for the document pane banner informing users that the document is linked to Sanity Create */\n 'studio-create-link-banner.text': undefined, // 'This document is linked to Sanity Create'\n\n /** Unlink document from Sanity Create button text */\n 'unlink-from-create-button.text': undefined, // 'Unlink'\n\n /** Unlink from Create dialog: Cancel button text */\n 'unlink-from-create-dialog.cancel.text': undefined, // 'Cancel'\n /** Unlink from Create dialog: Document title used if no other title can be determined */\n 'unlink-from-create-dialog.document.untitled.text': undefined, // 'Untitled'\n /** Unlink from Create dialog – first informational paragraph */\n 'unlink-from-create-dialog.first-paragraph': undefined, // 'You’re unlinking “<strong>{{title}}</strong>” from Sanity Create so it can be edited here.'\n /** Unlink from Create dialog header */\n 'unlink-from-create-dialog.header': undefined, // 'Switch editing to Studio?'\n /** Unlink from Create dialog – second informational paragraph */\n 'unlink-from-create-dialog.second-paragraph': undefined, // 'You’ll keep your content in both places. Any new changes in Sanity Create will stop syncing to this Studio.'\n /** Unlink from Create dialog: Unlink button text */\n 'unlink-from-create-dialog.unlink.text': undefined, // 'Unlink now'\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":";gCAEA,SAAeA,sCAA+B;AAAA;AAAA,EAE5C,0CAA0C;AAAA;AAAA;AAAA,EAE1C,0CAA0C;AAAA;AAAA;AAAA,EAE1C,mCAAmC;AAAA;AAAA;AAAA,EAEnC,iCAAiC;AAAA;AAAA;AAAA,EAGjC,4BAA4B;AAAA;AAAA;AAAA,EAG5B,8BAA8B;AAAA;AAAA;AAAA,EAG9B,yCAAyC;AAAA;AAAA;AAAA,EAGzC,kCAAkC;AAAA;AAAA;AAAA,EAGlC,kCAAkC;AAAA;AAAA;AAAA,EAGlC,yCAAyC;AAAA;AAAA;AAAA,EAEzC,oDAAoD;AAAA;AAAA;AAAA,EAEpD,6CAA6C;AAAA;AAAA;AAAA,EAE7C,oCAAoC;AAAA;AAAA;AAAA,EAEpC,8CAA8C;AAAA;AAAA;AAAA,EAE9C,yCAAyC;AAAA;AAC3C,CAAC;;"}
|