@sanity/locale-cs-cz 1.1.4 → 1.1.6
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/README.md +0 -5
- package/dist/_chunks-cjs/copy-paste.cjs +89 -0
- package/dist/_chunks-cjs/copy-paste.cjs.map +1 -0
- package/dist/{_chunks → _chunks-cjs}/structure.cjs +3 -0
- package/dist/{_chunks → _chunks-cjs}/structure.cjs.map +1 -1
- package/dist/{_chunks → _chunks-cjs}/studio.cjs +102 -8
- package/dist/_chunks-cjs/studio.cjs.map +1 -0
- package/dist/{_chunks → _chunks-cjs}/tasks.cjs +50 -2
- package/dist/_chunks-cjs/tasks.cjs.map +1 -0
- package/dist/{_chunks → _chunks-cjs}/vision.cjs +6 -0
- package/dist/_chunks-cjs/vision.cjs.map +1 -0
- package/dist/_chunks-es/copy-paste.js +87 -0
- package/dist/_chunks-es/copy-paste.js.map +1 -0
- package/dist/{_chunks → _chunks-es}/structure.js +3 -0
- package/dist/{_chunks → _chunks-es}/structure.js.map +1 -1
- package/dist/{_chunks → _chunks-es}/studio.js +102 -8
- package/dist/_chunks-es/studio.js.map +1 -0
- package/dist/{_chunks → _chunks-es}/tasks.js +50 -2
- package/dist/_chunks-es/tasks.js.map +1 -0
- package/dist/{_chunks → _chunks-es}/vision.js +6 -0
- package/dist/_chunks-es/vision.js.map +1 -0
- package/dist/index.cjs +10 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +10 -6
- package/dist/index.js.map +1 -1
- package/package.json +7 -4
- package/src/copy-paste.ts +58 -0
- package/src/index.ts +5 -0
- package/src/structure.ts +2 -0
- package/src/studio.ts +74 -8
- package/src/tasks.ts +39 -2
- package/src/vision.ts +4 -0
- package/dist/_chunks/studio.cjs.map +0 -1
- package/dist/_chunks/studio.js.map +0 -1
- package/dist/_chunks/tasks.cjs.map +0 -1
- package/dist/_chunks/tasks.js.map +0 -1
- package/dist/_chunks/vision.cjs.map +0 -1
- package/dist/_chunks/vision.js.map +0 -1
- /package/dist/{_chunks → _chunks-cjs}/comments.cjs +0 -0
- /package/dist/{_chunks → _chunks-cjs}/comments.cjs.map +0 -0
- /package/dist/{_chunks → _chunks-cjs}/validation.cjs +0 -0
- /package/dist/{_chunks → _chunks-cjs}/validation.cjs.map +0 -0
- /package/dist/{_chunks → _chunks-es}/comments.js +0 -0
- /package/dist/{_chunks → _chunks-es}/comments.js.map +0 -0
- /package/dist/{_chunks → _chunks-es}/validation.js +0 -0
- /package/dist/{_chunks → _chunks-es}/validation.js.map +0 -0
package/README.md
CHANGED
|
@@ -48,11 +48,6 @@ export default defineConfig({
|
|
|
48
48
|
})
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
## Maintainers
|
|
52
|
-
|
|
53
|
-
We are looking for maintainers for this plugin!
|
|
54
|
-
If you are interested, please [send a PR](/CONTRIBUTING.md#maintaining-a-locale) adding yourself as a maintainer.
|
|
55
|
-
|
|
56
51
|
## Contributing
|
|
57
52
|
|
|
58
53
|
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.
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var sanity = require('sanity');
|
|
4
|
+
|
|
5
|
+
var copyPaste = sanity.removeUndefinedLocaleResources({
|
|
6
|
+
/** Text on the field action button to copy a document */
|
|
7
|
+
"copy-paste.field-action-copy-button.document.title": void 0,
|
|
8
|
+
// 'Copy document'
|
|
9
|
+
/** Text on the field action button to copy a field */
|
|
10
|
+
"copy-paste.field-action-copy-button.field.title": void 0,
|
|
11
|
+
// 'Copy field'
|
|
12
|
+
/** Text on the field action button to paste a document */
|
|
13
|
+
"copy-paste.field-action-paste-button.document.title": void 0,
|
|
14
|
+
// 'Paste document'
|
|
15
|
+
/** Text on the field action button to paste a field */
|
|
16
|
+
"copy-paste.field-action-paste-button.field.title": void 0,
|
|
17
|
+
// 'Paste field'
|
|
18
|
+
/** The error message that is shown when the clipboard is not supported */
|
|
19
|
+
"copy-paste.on-copy.validation.clipboard-not-supported.title": void 0,
|
|
20
|
+
// 'Your browser does not support this action'
|
|
21
|
+
/** The success message that is shown when a document is copied */
|
|
22
|
+
"copy-paste.on-copy.validation.copy-document-success.title": void 0,
|
|
23
|
+
// 'Document "{{fieldNames}}" copied'
|
|
24
|
+
/** The success message that is shown when a field is copied */
|
|
25
|
+
"copy-paste.on-copy.validation.copy-field_one-success.title": void 0,
|
|
26
|
+
// 'Field "{{fieldName}}" copied'
|
|
27
|
+
/** The error message that is shown when there is no value to copy */
|
|
28
|
+
"copy-paste.on-copy.validation.no-value.title": void 0,
|
|
29
|
+
// 'Empty value, nothing to copy'
|
|
30
|
+
/** --- On copy --- */
|
|
31
|
+
/** The error message that is shown when schema types are incompatible */
|
|
32
|
+
"copy-paste.on-copy.validation.schema-type-incompatible.title": void 0,
|
|
33
|
+
// 'Could not resolve schema type for path: {{path}}'
|
|
34
|
+
/** The validation message that is shown when array types are incompatible */
|
|
35
|
+
"copy-paste.on-paste.validation.array-type-incompatible.description": void 0,
|
|
36
|
+
// 'Value of type "{{type}}" is not allowed in this array field'
|
|
37
|
+
/** The validation message that is shown when array values are incompatible */
|
|
38
|
+
"copy-paste.on-paste.validation.array-value-incompatible.description": void 0,
|
|
39
|
+
// 'Value of type "{{type}}" is not allowed in this array field'
|
|
40
|
+
/** The validation message that is shown when the clipboard is empty */
|
|
41
|
+
"copy-paste.on-paste.validation.clipboard-empty.title": void 0,
|
|
42
|
+
// 'Nothing to paste'
|
|
43
|
+
/** The validation message that is shown when the clipboard item is invalid */
|
|
44
|
+
"copy-paste.on-paste.validation.clipboard-invalid.title": void 0,
|
|
45
|
+
// 'Invalid clipboard item'
|
|
46
|
+
/** The success message that is shown when a document is pasted */
|
|
47
|
+
"copy-paste.on-paste.validation.document-paste-success.title": void 0,
|
|
48
|
+
// 'Document "{{fieldNames}}" updated'
|
|
49
|
+
/** The success message that is shown when a field is pasted */
|
|
50
|
+
"copy-paste.on-paste.validation.field_one-paste-success.title": void 0,
|
|
51
|
+
// 'Field "{{fieldName}}" updated'
|
|
52
|
+
/** The validation message that is shown when image files are incompatible */
|
|
53
|
+
"copy-paste.on-paste.validation.image-file-incompatible.description": void 0,
|
|
54
|
+
// 'A "{{sourceSchemaType}}" is not allowed in a "{{targetSchemaType}}"'
|
|
55
|
+
/** The error message that is shown when the MIME type is not accepted */
|
|
56
|
+
"copy-paste.on-paste.validation.mime-type-incompatible.description": void 0,
|
|
57
|
+
// 'MIME type "{{mimeType}}" is not accepted for this field'
|
|
58
|
+
/** The error message that is shown when the MIME type validation fails */
|
|
59
|
+
"copy-paste.on-paste.validation.mime-type-validation-failed.description": void 0,
|
|
60
|
+
// 'MIME type validation failed'
|
|
61
|
+
/** The warning message that is shown when not all values can be pasted */
|
|
62
|
+
"copy-paste.on-paste.validation.partial-warning.title": void 0,
|
|
63
|
+
// 'Could not paste all values'
|
|
64
|
+
/** The validation message that is shown when primitive types are incompatible */
|
|
65
|
+
"copy-paste.on-paste.validation.primitive-type-incompatible.description": void 0,
|
|
66
|
+
// 'Value of type "{{type}}" is not allowed in this field'
|
|
67
|
+
/** --- On paste --- */
|
|
68
|
+
/** The validation message that is shown when pasting a value into a read-only target */
|
|
69
|
+
"copy-paste.on-paste.validation.read-only-target.description": void 0,
|
|
70
|
+
// 'The target is read-only'
|
|
71
|
+
/** The validation message that is shown when reference is incompatible with filter */
|
|
72
|
+
"copy-paste.on-paste.validation.reference-filter-incompatible.description": void 0,
|
|
73
|
+
// 'Reference is not allowed in reference field according to filter'
|
|
74
|
+
/** The validation message that is shown when reference types are incompatible */
|
|
75
|
+
"copy-paste.on-paste.validation.reference-type-incompatible.description": void 0,
|
|
76
|
+
// 'References of type "{{sourceReferenceType}}" is not allowed in reference field that accepts types "{{targetReferenceTypes}}"'
|
|
77
|
+
/** The validation message that is shown when the source and target schema types are incompatible */
|
|
78
|
+
"copy-paste.on-paste.validation.schema-type-incompatible.description": void 0,
|
|
79
|
+
// 'Source and target schema types are not compatible'
|
|
80
|
+
/** The validation message that is shown when schema types are incompatible */
|
|
81
|
+
"copy-paste.on-paste.validation.schema-type-incompatible.title": void 0,
|
|
82
|
+
// 'Could not resolve schema type for path: {{path}}'
|
|
83
|
+
/** The validation message that is shown when string values are incompatible */
|
|
84
|
+
"copy-paste.on-paste.validation.string-value-incompatible.description": void 0
|
|
85
|
+
// 'Value "{{value}}" is not allowed in "{{allowedStrings}}"'
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
exports.default = copyPaste;
|
|
89
|
+
//# 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': undefined, // 'Copy document'\n /** Text on the field action button to copy a field */\n 'copy-paste.field-action-copy-button.field.title': undefined, // 'Copy field'\n /** Text on the field action button to paste a document */\n 'copy-paste.field-action-paste-button.document.title': undefined, // 'Paste document'\n /** Text on the field action button to paste a field */\n 'copy-paste.field-action-paste-button.field.title': undefined, // 'Paste field'\n /** The error message that is shown when the clipboard is not supported */\n 'copy-paste.on-copy.validation.clipboard-not-supported.title': undefined, // 'Your browser does not support this action'\n /** The success message that is shown when a document is copied */\n 'copy-paste.on-copy.validation.copy-document-success.title': undefined, // 'Document \"{{fieldNames}}\" copied'\n /** The success message that is shown when a field is copied */\n 'copy-paste.on-copy.validation.copy-field_one-success.title': undefined, // 'Field \"{{fieldName}}\" copied'\n /** The error message that is shown when there is no value to copy */\n 'copy-paste.on-copy.validation.no-value.title': undefined, // 'Empty value, nothing to copy'\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': undefined, // 'Could not resolve schema type for path: {{path}}'\n /** The validation message that is shown when array types are incompatible */\n 'copy-paste.on-paste.validation.array-type-incompatible.description': undefined, // 'Value of type \"{{type}}\" is not allowed in this array field'\n /** The validation message that is shown when array values are incompatible */\n 'copy-paste.on-paste.validation.array-value-incompatible.description': undefined, // 'Value of type \"{{type}}\" is not allowed in this array field'\n /** The validation message that is shown when the clipboard is empty */\n 'copy-paste.on-paste.validation.clipboard-empty.title': undefined, // 'Nothing to paste'\n /** The validation message that is shown when the clipboard item is invalid */\n 'copy-paste.on-paste.validation.clipboard-invalid.title': undefined, // 'Invalid clipboard item'\n /** The success message that is shown when a document is pasted */\n 'copy-paste.on-paste.validation.document-paste-success.title': undefined, // 'Document \"{{fieldNames}}\" updated'\n /** The success message that is shown when a field is pasted */\n 'copy-paste.on-paste.validation.field_one-paste-success.title': undefined, // 'Field \"{{fieldName}}\" updated'\n /** The validation message that is shown when image files are incompatible */\n 'copy-paste.on-paste.validation.image-file-incompatible.description': undefined, // 'A \"{{sourceSchemaType}}\" is not allowed in a \"{{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': undefined, // 'MIME type \"{{mimeType}}\" is not accepted for this field'\n /** The error message that is shown when the MIME type validation fails */\n 'copy-paste.on-paste.validation.mime-type-validation-failed.description': undefined, // 'MIME type validation failed'\n /** The warning message that is shown when not all values can be pasted */\n 'copy-paste.on-paste.validation.partial-warning.title': undefined, // 'Could not paste all values'\n /** The validation message that is shown when primitive types are incompatible */\n 'copy-paste.on-paste.validation.primitive-type-incompatible.description': undefined, // 'Value of type \"{{type}}\" is not allowed in this field'\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': undefined, // 'The target is read-only'\n /** The validation message that is shown when reference is incompatible with filter */\n 'copy-paste.on-paste.validation.reference-filter-incompatible.description': undefined, // 'Reference is not allowed in reference field according to filter'\n /** The validation message that is shown when reference types are incompatible */\n 'copy-paste.on-paste.validation.reference-type-incompatible.description': undefined, // 'References of type \"{{sourceReferenceType}}\" is not allowed in reference field that accepts types \"{{targetReferenceTypes}}\"'\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': undefined, // 'Source and target schema types are not compatible'\n /** The validation message that is shown when schema types are incompatible */\n 'copy-paste.on-paste.validation.schema-type-incompatible.title': undefined, // 'Could not resolve schema type for path: {{path}}'\n /** The validation message that is shown when string values are incompatible */\n 'copy-paste.on-paste.validation.string-value-incompatible.description': undefined, // 'Value \"{{value}}\" is not allowed in \"{{allowedStrings}}\"'\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":";;;;AAEA,gBAAeA,qCAA+B,CAAA;AAAA;AAAA,EAE5C,oDAAsD,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAEtD,iDAAmD,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAEnD,qDAAuD,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAEvD,kDAAoD,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAEpD,6DAA+D,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAE/D,2DAA6D,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAE7D,4DAA8D,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAE9D,8CAAgD,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA;AAAA,EAGhD,8DAAgE,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAEhE,oEAAsE,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAEtE,qEAAuE,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAEvE,sDAAwD,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAExD,wDAA0D,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAE1D,6DAA+D,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAE/D,8DAAgE,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAEhE,oEAAsE,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAEtE,mEAAqE,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAErE,wEAA0E,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAE1E,sDAAwD,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAExD,wEAA0E,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA;AAAA,EAG1E,6DAA+D,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAE/D,0EAA4E,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAE5E,wEAA0E,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAE1E,qEAAuE,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAEvE,+DAAiE,EAAA,KAAA,CAAA;AAAA;AAAA;AAAA,EAEjE,sEAAwE,EAAA,KAAA,CAAA;AAAA;AAC1E,CAAC,CAAA;;;;"}
|
|
@@ -300,6 +300,9 @@ var structure = sanity.removeUndefinedLocaleResources({
|
|
|
300
300
|
"panes.document-operation-results.operation-success_delete": "Dokument byl \xFAsp\u011B\u0161n\u011B smaz\xE1n",
|
|
301
301
|
/** The text when a discard changes operation succeeded */
|
|
302
302
|
"panes.document-operation-results.operation-success_discardChanges": "V\u0161echny zm\u011Bny od posledn\xED publikace byly nyn\xED zru\u0161eny. Zahozen\xFD koncept lze st\xE1le obnovit z historie",
|
|
303
|
+
/** The text when a duplicate operation succeeded */
|
|
304
|
+
"panes.document-operation-results.operation-success_duplicate": void 0,
|
|
305
|
+
// 'The document was successfully duplicated'
|
|
303
306
|
/** The text when a publish operation succeeded */
|
|
304
307
|
"panes.document-operation-results.operation-success_publish": "Dokument byl publikov\xE1n",
|
|
305
308
|
/** The text when a restore operation succeeded */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"structure.cjs","sources":["../../src/structure.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Tooltip when action button is disabled because the operation is not ready */\n 'action.delete.disabled.not-ready': 'Operace není připravena',\n /** Tooltip when action button is disabled because the document does not exist */\n 'action.delete.disabled.nothing-to-delete': 'Tento dokument ještě neexistuje nebo je již smazán',\n /** Label for the \"Delete\" document action button */\n 'action.delete.label': 'Smazat',\n /** Label for the \"Delete\" document action while the document is being deleted */\n 'action.delete.running.label': 'Maže se…',\n /** Message prompting the user to confirm discarding changes */\n 'action.discard-changes.confirm-dialog.confirm-discard-changes':\n 'Jste si jisti, že chcete zahodit všechny změny od posledního zveřejnění?',\n /** Tooltip when action is disabled because the document has no unpublished changes */\n 'action.discard-changes.disabled.no-change': 'Tento dokument nemá žádné nezveřejněné změny',\n /** Tooltip when action is disabled because the document is not published */\n 'action.discard-changes.disabled.not-published': 'Tento dokument není zveřejněn',\n /** Tooltip when action button is disabled because the operation is not ready */\n 'action.discard-changes.disabled.not-ready': 'Operace není připravena',\n /** Label for the \"Discard changes\" document action */\n 'action.discard-changes.label': 'Zahodit změny',\n /** Tooltip when action is disabled because the operation is not ready */\n 'action.duplicate.disabled.not-ready': 'Operace není připravena',\n /** Tooltip when action is disabled because the document doesn't exist */\n 'action.duplicate.disabled.nothing-to-duplicate':\n 'Tento dokument ještě neexistuje, takže není co duplikovat',\n /** Label for the \"Duplicate\" document action */\n 'action.duplicate.label': 'Duplikovat',\n /** Label for the \"Duplicate\" document action while the document is being duplicated */\n 'action.duplicate.running.label': 'Duplikuje se…',\n /** Tooltip when publish button is disabled because the document is already published, and published time is unavailable.*/\n 'action.publish.already-published.no-time-ago.tooltip': 'Již zveřejněno',\n /** Tooltip when publish button is disabled because the document is already published.*/\n 'action.publish.already-published.tooltip': 'Zveřejněno před {{timeSincePublished}}',\n /** Tooltip when action is disabled because the studio is not ready.*/\n 'action.publish.disabled.not-ready': 'Operace není připravena',\n /** Label for action when there are pending changes.*/\n 'action.publish.draft.label': 'Zveřejnit',\n /** Label for the \"Publish\" document action when the document has live edit enabled.*/\n 'action.publish.live-edit.label': 'Zveřejnit',\n /** Fallback tooltip for the \"Publish\" document action when publish is invoked for a document with live edit enabled.*/\n 'action.publish.live-edit.publish-disabled':\n 'Nelze zveřejnit, protože pro tento typ dokumentu je povolena funkce Live Edit',\n /** Tooltip for the \"Publish\" document action when the document has live edit enabled.*/\n 'action.publish.live-edit.tooltip':\n 'Pro tento typ obsahu je povolena funkce Live Edit a zveřejnění probíhá automaticky, jakmile provádíte změny',\n /** Tooltip when publish button is disabled because there are no changes.*/\n 'action.publish.no-changes.tooltip': 'Žádné nezveřejněné změny',\n /** Label for the \"Publish\" document action when there are no changes.*/\n 'action.publish.published.label': 'Zveřejněno',\n /** Label for the \"Publish\" document action while publish is being executed.*/\n 'action.publish.running.label': 'Zveřejňuje se…',\n /** Tooltip when the \"Publish\" document action is disabled due to validation issues */\n 'action.publish.validation-issues.tooltip':\n 'Existují validační chyby, které je třeba opravit, než bude možné tento dokument zveřejnit',\n /** Tooltip when publish button is waiting for validation and async tasks to complete.*/\n 'action.publish.waiting': 'Čeká se na dokončení úloh před zveřejněním',\n /** Message prompting the user to confirm that they want to restore to an earlier version*/\n 'action.restore.confirm.message': 'Jste si jisti, že chcete obnovit tento dokument?',\n /** Fallback tooltip for when user is looking at the initial version */\n 'action.restore.disabled.cannot-restore-initial': 'Nemůžete obnovit počáteční verzi',\n /** Label for the \"Restore\" document action */\n 'action.restore.label': 'Obnovit',\n /** Default tooltip for the action */\n 'action.restore.tooltip': 'Obnovit na tuto verzi',\n /** Tooltip when action is disabled because the document is not already published */\n 'action.unpublish.disabled.not-published': 'Tento dokument není publikován',\n /** Tooltip when action is disabled because the operation is not ready */\n 'action.unpublish.disabled.not-ready': 'Operace není připravena',\n /** Label for the \"Unpublish\" document action */\n 'action.unpublish.label': 'Zrušit publikaci',\n /** Fallback tooltip for the Unpublish document action when publish is invoked for a document with live edit enabled.*/\n 'action.unpublish.live-edit.disabled':\n 'Tento dokument má povoleno živé úpravy a nemůže být zrušena jeho publikace',\n\n /** The text for the restore button on the deleted document banner */\n 'banners.deleted-document-banner.restore-button.text': 'Obnovit nejnovější verzi',\n /** The text content for the deleted document banner */\n 'banners.deleted-document-banner.text': 'Tento dokument byl smazán.',\n /** The text content for the deprecated document type banner */\n 'banners.deprecated-document-type-banner.text': 'Tento typ dokumentu byl zastaralý.',\n /** The text for the permission check banner if the user only has one role, and it does not allow updating this document */\n 'banners.permission-check-banner.missing-permission_create_one':\n 'Vaše role <Roles/> nemá oprávnění vytvořit tento dokument.',\n /** The text for the permission check banner if the user only has multiple roles, but they do not allow updating this document */\n 'banners.permission-check-banner.missing-permission_create_other':\n 'Vaše role <Roles/> nemají oprávnění vytvořit tento dokument.',\n /** The text for the permission check banner if the user only has one role, and it does not allow updating this document */\n 'banners.permission-check-banner.missing-permission_update_one':\n 'Vaše role <Roles/> nemá oprávnění aktualizovat tento dokument.',\n /** The text for the permission check banner if the user only has multiple roles, but they do not allow updating this document */\n 'banners.permission-check-banner.missing-permission_update_other':\n 'Vaše role <Roles/> nemají oprávnění aktualizovat tento dokument.',\n /** The text for the reload button */\n 'banners.reference-changed-banner.reason-changed.reload-button.text': 'Znovu načíst referenci',\n /** The text for the reference change banner if the reason is that the reference has been changed */\n 'banners.reference-changed-banner.reason-changed.text':\n 'Tato reference byla změněna od doby, co jste ji otevřeli.',\n /** The text for the close button */\n 'banners.reference-changed-banner.reason-removed.close-button.text': 'Zavřít referenci',\n /** The text for the reference change banner if the reason is that the reference has been deleted */\n 'banners.reference-changed-banner.reason-removed.text':\n 'Tato reference byla odstraněna od doby, co jste ji otevřeli.',\n\n /** Browser/tab title when creating a new document of a given type */\n 'browser-document-title.new-document': 'Nový {{schemaType}}',\n /** Browser/tab title when editing a document where the title cannot be resolved from preview configuration */\n 'browser-document-title.untitled-document': 'Bez názvu',\n\n /** The action menu button aria-label */\n 'buttons.action-menu-button.aria-label': 'Otevřít akce dokumentu',\n /** The action menu button tooltip */\n 'buttons.action-menu-button.tooltip': 'Akce dokumentu',\n /** The aria-label for the split pane button on the document panel header */\n 'buttons.split-pane-button.aria-label': 'Rozdělit panel vpravo',\n /** The tool tip for the split pane button on the document panel header */\n 'buttons.split-pane-button.tooltip': 'Rozdělit panel vpravo',\n /** The title for the close button on the split pane on the document panel header */\n 'buttons.split-pane-close-button.title': 'Zavřít rozdělený panel',\n /** The title for the close group button on the split pane on the document panel header */\n 'buttons.split-pane-close-group-button.title': 'Zavřít skupinu panelů',\n\n /** The text in the \"Cancel\" button in the confirm delete dialog that cancels the action and closes the dialog */\n 'confirm-delete-dialog.cancel-button.text': 'Zrušit',\n /** Used in `confirm-delete-dialog.cdr-summary.title` */\n 'confirm-delete-dialog.cdr-summary.document-count_one': '1 dokument',\n /** Used in `confirm-delete-dialog.cdr-summary.title` */\n 'confirm-delete-dialog.cdr-summary.document-count_other': '{{count}} dokumentů',\n /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */\n 'confirm-delete-dialog.cdr-summary.subtitle_one': 'Dataset: {{datasets}}',\n /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */\n 'confirm-delete-dialog.cdr-summary.subtitle_other': 'Datasety: {{datasets}}',\n /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */\n 'confirm-delete-dialog.cdr-summary.subtitle_unavailable_one': 'Nedostupný dataset',\n /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */\n 'confirm-delete-dialog.cdr-summary.subtitle_unavailable_other': 'Nedostupné datasety',\n /** The text that appears in the title `<summary>` that includes the list of CDRs (singular) */\n 'confirm-delete-dialog.cdr-summary.title_one': '{{documentCount}} v jiném datasetu',\n /** The text that appears in the title `<summary>` that includes the list of CDRs (plural) */\n 'confirm-delete-dialog.cdr-summary.title_other': '{{documentCount}} v {{count}} datasety',\n /** Appears when hovering over the copy button to copy */\n 'confirm-delete-dialog.cdr-table.copy-id-button.tooltip': 'Zkopírovat ID do schránky',\n /** The header for the dataset column in the list of cross-dataset references found */\n 'confirm-delete-dialog.cdr-table.dataset.label': 'Dataset',\n /** The header for the document ID column in the list of cross-dataset references found */\n 'confirm-delete-dialog.cdr-table.document-id.label': 'ID dokumentu',\n /** The toast title when the copy button has been clicked */\n 'confirm-delete-dialog.cdr-table.id-copied-toast.title': 'ID dokumentu zkopírováno do schránky!',\n /** The header for the project ID column in the list of cross-dataset references found */\n 'confirm-delete-dialog.cdr-table.project-id.label': 'ID projektu',\n /** The text in the \"Delete anyway\" button in the confirm delete dialog that confirms the action */\n 'confirm-delete-dialog.confirm-anyway-button.text_delete': 'Smazat přesto',\n /** The text in the \"Unpublish anyway\" button in the confirm delete dialog that confirms the action */\n 'confirm-delete-dialog.confirm-anyway-button.text_unpublish': 'Zrušit publikaci přesto',\n /** The text in the \"Delete now\" button in the confirm delete dialog that confirms the action */\n 'confirm-delete-dialog.confirm-button.text_delete': 'Smazat nyní',\n /** The text in the \"Unpublish now\" button in the confirm delete dialog that confirms the action */\n 'confirm-delete-dialog.confirm-button.text_unpublish': 'Zrušit publikaci nyní',\n /** If no referring documents are found, this text appears above the cancel and confirmation buttons */\n 'confirm-delete-dialog.confirmation.text_delete':\n 'Jste si jisti, že chcete smazat „<DocumentTitle/>“?',\n /** If no referring documents are found, this text appears above the cancel and confirmation buttons */\n 'confirm-delete-dialog.confirmation.text_unpublish':\n 'Jste si jisti, že chcete zrušit publikaci „<DocumentTitle/>“?',\n /** The text body of the error dialog. */\n 'confirm-delete-dialog.error.message.text': 'Při načítání odkazujících dokumentů došlo k chybě.',\n /** The text in the retry button of the confirm delete dialog if an error occurred. */\n 'confirm-delete-dialog.error.retry-button.text': 'Zkusit znovu',\n /** The header of the confirm delete dialog if an error occurred while the confirm delete dialog was open. */\n 'confirm-delete-dialog.error.title.text': 'Chyba',\n /** The header of the confirm delete dialog */\n 'confirm-delete-dialog.header.text_delete': 'Smazat dokument?',\n /** The header of the confirm delete dialog */\n 'confirm-delete-dialog.header.text_unpublish': 'Zrušit publikaci dokumentu?',\n /** The text that appears while the referring documents are queried */\n 'confirm-delete-dialog.loading.text': 'Hledání odkazujících dokumentů…',\n /** Shown if there are references to other documents but the user does not have the permission to see the relevant document IDs */\n 'confirm-delete-dialog.other-reference-count.title_one': '1 další odkaz není zobrazen',\n /** Shown if there are references to other documents but the user does not have the permission to see the relevant document IDs */\n 'confirm-delete-dialog.other-reference-count.title_other':\n '{{count}} dalších referencí není zobrazeno',\n /** Text in the tooltip of this component if hovering over the info icon */\n 'confirm-delete-dialog.other-reference-count.tooltip':\n 'Nemůžeme zobrazit metadata pro tyto reference kvůli chybějícímu přístupovému tokenu pro související datasety.',\n /** Appears when unable to render a document preview in the referring document list */\n 'confirm-delete-dialog.preview-item.preview-unavailable.subtitle': 'ID: {{documentId}}',\n /** Appears when unable to render a document preview in the referring document list */\n 'confirm-delete-dialog.preview-item.preview-unavailable.title': 'Náhled není k dispozici',\n /** Warns the user of affects to other documents if the action is confirmed (delete) */\n 'confirm-delete-dialog.referential-integrity-disclaimer.text_delete':\n 'Pokud smažete tento dokument, dokumenty, které na něj odkazují, již nebudou moci získat přístup.',\n /** Warns the user of affects to other documents if the action is confirmed (unpublish) */\n 'confirm-delete-dialog.referential-integrity-disclaimer.text_unpublish':\n 'Pokud zrušíte publikaci tohoto dokumentu, dokumenty, které na něj odkazují, již nebudou moci získat přístup.',\n /** Tells the user the count of how many other referring documents there are before listing them. (singular) */\n 'confirm-delete-dialog.referring-document-count.text_one':\n '1 dokument odkazuje na „<DocumentTitle/>“',\n /** Tells the user the count of how many other referring documents there are before listing them. (plural) */\n 'confirm-delete-dialog.referring-document-count.text_other':\n '{{count}} dokumentů odkazuje na „<DocumentTitle/>“',\n /** Describes the list of documents that refer to the one trying to be deleted (delete) */\n 'confirm-delete-dialog.referring-documents-descriptor.text_delete':\n 'Možná nebudete moci smazat „<DocumentTitle/>“, protože na něj odkazují následující dokumenty:',\n /** Describes the list of documents that refer to the one trying to be deleted (unpublish) */\n 'confirm-delete-dialog.referring-documents-descriptor.text_unpublish':\n 'Možná nebudete moci zrušit publikaci „<DocumentTitle/>“, protože na něj odkazují následující dokumenty:',\n\n /** The text for the cancel button in the confirm dialog used in document action shortcuts if none is provided */\n 'confirm-dialog.cancel-button.fallback-text': 'Zrušit',\n /** The text for the confirm button in the confirm dialog used in document action shortcuts if none is provided */\n 'confirm-dialog.confirm-button.fallback-text': 'Potvrdit',\n\n /** For the default structure definition, the title for the \"Content\" pane */\n 'default-definition.content-title': 'Obsah',\n\n /** The text shown if there was an error while getting the document's title via a preview value */\n 'doc-title.error.text': 'Chyba: {{errorMessage}}',\n /** The text shown if the preview value for a document is non-existent or empty */\n 'doc-title.fallback.text': 'Bez názvu',\n /** The text shown if a document's title via a preview value cannot be determined due to an unknown schema type */\n 'doc-title.unknown-schema-type.text': 'Neznámý typ schématu: {{schemaType}}',\n\n /** Tooltip text shown for the close button of the document inspector */\n 'document-inspector.close-button.tooltip': 'Zavřít',\n /** The title shown in the dialog header, when inspecting a valid document */\n 'document-inspector.dialog.title': 'Inspekce <DocumentTitle/>',\n /** The title shown in the dialog header, when the document being inspected is not created yet/has no value */\n 'document-inspector.dialog.title-no-value': 'Bez hodnoty',\n /** Title shown for menu item that opens the \"Inspect\" dialog */\n 'document-inspector.menu-item.title': 'Inspekce',\n /** the placeholder text for the search input on the inspect dialog */\n 'document-inspector.search.placeholder': 'Hledat',\n /** The \"parsed\" view mode, meaning the JSON is searchable, collapsible etc */\n 'document-inspector.view-mode.parsed': 'Zpracované',\n /** The \"raw\" view mode, meaning the JSON is presented syntax-highlighted, but with no other features - optimal for copying */\n 'document-inspector.view-mode.raw-json': 'Surový JSON',\n\n /** The text for when a form is hidden */\n 'document-view.form-view.form-hidden': 'Tento formulář je skrytý',\n /** Fallback title shown when a form title is not provided */\n 'document-view.form-view.form-title-fallback': 'Nepojmenované',\n /** The text for when the form view is loading a document */\n 'document-view.form-view.loading': 'Načítání dokumentu…',\n /** The description of the sync lock toast on the form view */\n 'document-view.form-view.sync-lock-toast.description':\n 'Vyčkejte, prosím, dokud se dokument synchronizuje. To se obvykle děje ihned po publikaci dokumentu a nemělo by to trvat déle než několik sekund',\n /** The title of the sync lock toast on the form view */\n 'document-view.form-view.sync-lock-toast.title': 'Synchronizace dokumentu…',\n\n /** The loading messaging for when the tooltip is still loading permission info */\n 'insufficient-permissions-message-tooltip.loading-text': 'Načítání…',\n\n /** --- Menu items --- */\n /** The menu item group title to use for the Action menu items */\n 'menu-item-groups.actions-group': 'Akce',\n /** The menu item group title to use for the Layout menu items */\n 'menu-item-groups.layout-group': 'Rozložení',\n /** The menu item group title to use for the Sort menu items */\n 'menu-item-groups.sorting-group': 'Řazení',\n\n /** The menu item title to use the compact view */\n 'menu-items.layout.compact-view': 'Kompaktní zobrazení',\n /** The menu item title to use the detailed view */\n 'menu-items.layout.detailed-view': 'Detailní zobrazení',\n /** The menu item title to Sort by Created */\n 'menu-items.sort-by.created': 'Seřadit podle data vytvoření',\n /** The menu item title to Sort by Last Edited */\n 'menu-items.sort-by.last-edited': 'Seřadit podle poslední úpravy',\n\n /** The link text of the no document type screen that appears directly below the subtitle */\n 'no-document-types-screen.link-text': 'Zjistěte, jak přidat typ dokumentu →',\n /** The subtitle of the no document type screen that appears directly below the title */\n 'no-document-types-screen.subtitle':\n 'Prosím, definujte alespoň jeden typ dokumentu ve vašem schématu.',\n /** The title of the no document type screen */\n 'no-document-types-screen.title': 'Žádné typy dokumentů',\n\n /** Text shown on back button visible on smaller breakpoints */\n 'pane-header.back-button.text': 'Zpět',\n /** tooltip text (via `title` attribute) for the menu button */\n 'pane-header.context-menu-button.tooltip': 'Zobrazit menu',\n /** Appears in a document list pane header if there are more than one option for create. This is the label for that menu */\n 'pane-header.create-menu.label': 'Vytvořit',\n /** Tooltip displayed on the create new button in document lists */\n 'pane-header.create-new-button.tooltip': 'Vytvořit nový dokument',\n /** The `aria-label` for the disabled button in the pane header if create permissions are granted */\n 'pane-header.disabled-created-button.aria-label': 'Nedostatečná oprávnění',\n\n /** The text shown in the tooltip of pane item previews of documents if there are unpublished edits */\n 'pane-item.draft-status.has-draft.tooltip': 'Editováno <RelativeTime/>',\n /** The text shown in the tooltip of pane item previews of documents if there are no unpublished edits */\n 'pane-item.draft-status.no-draft.tooltip': 'Žádné nezveřejněné úpravy',\n /** The subtitle tor pane item previews if there isn't a matching schema type found */\n 'pane-item.missing-schema-type.subtitle': 'Dokument: <Code>{{documentId}}</Code>',\n /** The title tor pane item previews if there isn't a matching schema type found */\n 'pane-item.missing-schema-type.title':\n 'Pro typ <Code>{{documentType}}</Code> nebylo nalezeno schéma',\n /** The text shown in the tooltip of pane item previews of documents if there are unpublished edits */\n 'pane-item.published-status.has-published.tooltip': 'Publikováno <RelativeTime/>',\n /** The text shown in the tooltip of pane item previews of documents if there are no unpublished edits */\n 'pane-item.published-status.no-published.tooltip': 'Žádné nezveřejněné úpravy',\n\n /** The text used in the document header title if there is an error */\n 'panes.document-header-title.error.text': 'Chyba: {{error}}',\n /** The text used in the document header title if creating a new item */\n 'panes.document-header-title.new.text': 'Nový {{schemaType}}',\n /** The text used in the document header title if no other title can be determined */\n 'panes.document-header-title.untitled.text': 'Bez názvu',\n /** The text for the retry button on the document list pane */\n 'panes.document-list-pane.error.retry-button.text': 'Zkusit znovu',\n /** The error text on the document list pane */\n 'panes.document-list-pane.error.text': 'Chyba: <Code>{{error}}</Code>',\n /** The error title on the document list pane */\n 'panes.document-list-pane.error.title': 'Nepodařilo se načíst položky seznamu',\n /** The text of the document list pane if more than a maximum number of documents are returned */\n 'panes.document-list-pane.max-items.text': 'Zobrazuje se maximálně {{limit}} dokumentů',\n /** The text of the document list pane if no documents are found for a specified type */\n 'panes.document-list-pane.no-documents-of-type.text': 'Žádné dokumenty tohoto typu',\n /** The text of the document list pane if no documents are found */\n 'panes.document-list-pane.no-documents.text': 'Nebyly nalezeny žádné výsledky',\n /** The text of the document list pane if no documents are found matching specified criteria */\n 'panes.document-list-pane.no-matching-documents.text':\n 'Nebyly nalezeny žádné odpovídající dokumenty',\n /** The aria-label for the search input on the document list pane */\n 'panes.document-list-pane.search-input.aria-label': 'Prohledat seznam',\n /** The search input for the search input on the document list pane */\n 'panes.document-list-pane.search-input.placeholder': 'Prohledat seznam',\n /** The summary title when displaying an error for a document operation result */\n 'panes.document-operation-results.error.summary.title': 'Podrobnosti',\n /** The text when a generic operation failed (fallback, generally not shown) */\n 'panes.document-operation-results.operation-error': 'Během {{context}} došlo k chybě',\n /** The text when a delete operation failed */\n 'panes.document-operation-results.operation-error_delete':\n 'Při pokusu o smazání tohoto dokumentu došlo k chybě. To obvykle znamená, že na něj odkazují jiné dokumenty.',\n /** The text when an unpublish operation failed */\n 'panes.document-operation-results.operation-error_unpublish':\n 'Při pokusu o zrušení publikace tohoto dokumentu došlo k chybě. To obvykle znamená, že na něj odkazují jiné dokumenty.',\n /** The text when a generic operation succeeded (fallback, generally not shown) */\n 'panes.document-operation-results.operation-success':\n 'Úspěšně provedeno {{context}} na dokumentu',\n /** The text when a delete operation succeeded */\n 'panes.document-operation-results.operation-success_delete': 'Dokument byl úspěšně smazán',\n /** The text when a discard changes operation succeeded */\n 'panes.document-operation-results.operation-success_discardChanges':\n 'Všechny změny od poslední publikace byly nyní zrušeny. Zahozený koncept lze stále obnovit z historie',\n /** The text when a publish operation succeeded */\n 'panes.document-operation-results.operation-success_publish': 'Dokument byl publikován',\n /** The text when a restore operation succeeded */\n 'panes.document-operation-results.operation-success_restore':\n '<Strong>{{title}}</Strong> byl obnoven',\n /** The text when an unpublish operation succeeded */\n 'panes.document-operation-results.operation-success_unpublish':\n 'Publikace dokumentu byla zrušena. Z poslední publikované verze byl vytvořen koncept.',\n /** The document title shown when document title is \"undefined\" in operation message */\n 'panes.document-operation-results.operation-undefined-title': 'Bez názvu',\n /** The title of the reconnecting toast */\n 'panes.document-pane-provider.reconnecting.title':\n 'Spojení bylo přerušeno. Opětovné připojování…',\n /** The loading message for the document not found pane */\n 'panes.document-pane.document-not-found.loading': 'Načítání dokumentu…',\n /** The text of the document not found pane if the schema is known */\n 'panes.document-pane.document-not-found.text':\n 'Typ dokumentu není definován a dokument s identifikátorem <Code>{{id}}</Code> nebyl nalezen.',\n /** The title of the document not found pane if the schema is known */\n 'panes.document-pane.document-not-found.title': 'Dokument nebyl nalezen',\n /** The text of the document not found pane if the schema is not found */\n 'panes.document-pane.document-unknown-type.text':\n 'Tento dokument má schéma typu <Code>{{documentType}}</Code>, které není definováno jako typ v lokálním schématu obsahu studia.',\n /** The title of the document not found pane if the schema is not found or unknown */\n 'panes.document-pane.document-unknown-type.title':\n 'Neznámý typ dokumentu: <Code>{{documentType}}</Code>',\n /** The title of the document not found pane if the schema is unknown */\n 'panes.document-pane.document-unknown-type.without-schema.text':\n 'Tento dokument neexistuje a nebyl pro něj určen žádný typ schématu.',\n /** Default message shown while resolving the structure definition for an asynchronous node */\n 'panes.resolving.default-message': 'Načítání…',\n /** Message shown while resolving the structure definition for an asynchronous node and it is taking a while (more than 5s) */\n 'panes.resolving.slow-resolve-message': 'Stále se načítá…',\n /** The text to display when type is missing */\n 'panes.unknown-pane-type.missing-type.text':\n 'Strukturní položka postrádá požadovanou vlastnost <Code>type</Code>.',\n /** The title of the unknown pane */\n 'panes.unknown-pane-type.title': 'Neznámý typ panelu',\n /** The text to display when type is unknown */\n 'panes.unknown-pane-type.unknown-type.text':\n 'Strukturní položka typu <Code>{{type}}</Code> není známou entitou.',\n\n /** The text for the \"Open preview\" action for a document */\n 'production-preview.menu-item.title': 'Otevřít náhled',\n\n /** Label for button when status is saved */\n 'status-bar.document-status-pulse.status.saved.text': 'Uloženo',\n /** Label for button when status is syncing */\n 'status-bar.document-status-pulse.status.syncing.text': 'Ukládání...',\n /** Accessibility label indicating when the document was last published, in relative time, eg \"3 weeks ago\" */\n 'status-bar.publish-status-button.last-published-time.aria-label':\n 'Naposledy publikováno {{relativeTime}}',\n /** Text for tooltip showing explanation of timestamp/relative time, eg \"Last published <RelativeTime/>\" */\n 'status-bar.publish-status-button.last-published-time.tooltip':\n 'Naposledy publikováno <RelativeTime/>',\n /** Accessibility label indicating when the document was last updated, in relative time, eg \"2 hours ago\" */\n 'status-bar.publish-status-button.last-updated-time.aria-label':\n 'Naposledy aktualizováno {{relativeTime}}',\n /** Text for tooltip showing explanation of timestamp/relative time, eg \"Last updated <RelativeTime/>\" */\n 'status-bar.publish-status-button.last-updated-time.tooltip':\n 'Naposledy aktualizováno <RelativeTime/>',\n /** Aria label for the button */\n 'status-bar.review-changes-button.aria-label': 'Zkontrolovat změny',\n /** Label for button when status is saved */\n 'status-bar.review-changes-button.status.saved.text': 'Uloženo!',\n /** Label for button when status is syncing */\n 'status-bar.review-changes-button.status.syncing.text': 'Ukládání...',\n /** Text for the secondary text for tooltip for the button */\n 'status-bar.review-changes-button.tooltip.changes-saved': 'Změny uloženy',\n /** Primary text for tooltip for the button */\n 'status-bar.review-changes-button.tooltip.text': 'Zkontrolovat změny',\n\n /** The text that appears in side the documentation link */\n 'structure-error.docs-link.text': 'Zobrazit dokumentaci',\n /** Labels the error message or error stack of the structure error screen */\n 'structure-error.error.label': 'Chyba',\n /** The header that appears at the top of the error screen */\n 'structure-error.header.text': 'Při čtení struktury došlo k chybě',\n /** The text in the reload button to retry rendering the structure */\n 'structure-error.reload-button.text': 'Znovu načíst',\n /** Labels the structure path of the structure error screen */\n 'structure-error.structure-path.label': 'Cesta struktury',\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"structure.cjs","sources":["../../src/structure.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Tooltip when action button is disabled because the operation is not ready */\n 'action.delete.disabled.not-ready': 'Operace není připravena',\n /** Tooltip when action button is disabled because the document does not exist */\n 'action.delete.disabled.nothing-to-delete': 'Tento dokument ještě neexistuje nebo je již smazán',\n /** Label for the \"Delete\" document action button */\n 'action.delete.label': 'Smazat',\n /** Label for the \"Delete\" document action while the document is being deleted */\n 'action.delete.running.label': 'Maže se…',\n /** Message prompting the user to confirm discarding changes */\n 'action.discard-changes.confirm-dialog.confirm-discard-changes':\n 'Jste si jisti, že chcete zahodit všechny změny od posledního zveřejnění?',\n /** Tooltip when action is disabled because the document has no unpublished changes */\n 'action.discard-changes.disabled.no-change': 'Tento dokument nemá žádné nezveřejněné změny',\n /** Tooltip when action is disabled because the document is not published */\n 'action.discard-changes.disabled.not-published': 'Tento dokument není zveřejněn',\n /** Tooltip when action button is disabled because the operation is not ready */\n 'action.discard-changes.disabled.not-ready': 'Operace není připravena',\n /** Label for the \"Discard changes\" document action */\n 'action.discard-changes.label': 'Zahodit změny',\n /** Tooltip when action is disabled because the operation is not ready */\n 'action.duplicate.disabled.not-ready': 'Operace není připravena',\n /** Tooltip when action is disabled because the document doesn't exist */\n 'action.duplicate.disabled.nothing-to-duplicate':\n 'Tento dokument ještě neexistuje, takže není co duplikovat',\n /** Label for the \"Duplicate\" document action */\n 'action.duplicate.label': 'Duplikovat',\n /** Label for the \"Duplicate\" document action while the document is being duplicated */\n 'action.duplicate.running.label': 'Duplikuje se…',\n /** Tooltip when publish button is disabled because the document is already published, and published time is unavailable.*/\n 'action.publish.already-published.no-time-ago.tooltip': 'Již zveřejněno',\n /** Tooltip when publish button is disabled because the document is already published.*/\n 'action.publish.already-published.tooltip': 'Zveřejněno před {{timeSincePublished}}',\n /** Tooltip when action is disabled because the studio is not ready.*/\n 'action.publish.disabled.not-ready': 'Operace není připravena',\n /** Label for action when there are pending changes.*/\n 'action.publish.draft.label': 'Zveřejnit',\n /** Label for the \"Publish\" document action when the document has live edit enabled.*/\n 'action.publish.live-edit.label': 'Zveřejnit',\n /** Fallback tooltip for the \"Publish\" document action when publish is invoked for a document with live edit enabled.*/\n 'action.publish.live-edit.publish-disabled':\n 'Nelze zveřejnit, protože pro tento typ dokumentu je povolena funkce Live Edit',\n /** Tooltip for the \"Publish\" document action when the document has live edit enabled.*/\n 'action.publish.live-edit.tooltip':\n 'Pro tento typ obsahu je povolena funkce Live Edit a zveřejnění probíhá automaticky, jakmile provádíte změny',\n /** Tooltip when publish button is disabled because there are no changes.*/\n 'action.publish.no-changes.tooltip': 'Žádné nezveřejněné změny',\n /** Label for the \"Publish\" document action when there are no changes.*/\n 'action.publish.published.label': 'Zveřejněno',\n /** Label for the \"Publish\" document action while publish is being executed.*/\n 'action.publish.running.label': 'Zveřejňuje se…',\n /** Tooltip when the \"Publish\" document action is disabled due to validation issues */\n 'action.publish.validation-issues.tooltip':\n 'Existují validační chyby, které je třeba opravit, než bude možné tento dokument zveřejnit',\n /** Tooltip when publish button is waiting for validation and async tasks to complete.*/\n 'action.publish.waiting': 'Čeká se na dokončení úloh před zveřejněním',\n /** Message prompting the user to confirm that they want to restore to an earlier version*/\n 'action.restore.confirm.message': 'Jste si jisti, že chcete obnovit tento dokument?',\n /** Fallback tooltip for when user is looking at the initial version */\n 'action.restore.disabled.cannot-restore-initial': 'Nemůžete obnovit počáteční verzi',\n /** Label for the \"Restore\" document action */\n 'action.restore.label': 'Obnovit',\n /** Default tooltip for the action */\n 'action.restore.tooltip': 'Obnovit na tuto verzi',\n /** Tooltip when action is disabled because the document is not already published */\n 'action.unpublish.disabled.not-published': 'Tento dokument není publikován',\n /** Tooltip when action is disabled because the operation is not ready */\n 'action.unpublish.disabled.not-ready': 'Operace není připravena',\n /** Label for the \"Unpublish\" document action */\n 'action.unpublish.label': 'Zrušit publikaci',\n /** Fallback tooltip for the Unpublish document action when publish is invoked for a document with live edit enabled.*/\n 'action.unpublish.live-edit.disabled':\n 'Tento dokument má povoleno živé úpravy a nemůže být zrušena jeho publikace',\n\n /** The text for the restore button on the deleted document banner */\n 'banners.deleted-document-banner.restore-button.text': 'Obnovit nejnovější verzi',\n /** The text content for the deleted document banner */\n 'banners.deleted-document-banner.text': 'Tento dokument byl smazán.',\n /** The text content for the deprecated document type banner */\n 'banners.deprecated-document-type-banner.text': 'Tento typ dokumentu byl zastaralý.',\n /** The text for the permission check banner if the user only has one role, and it does not allow updating this document */\n 'banners.permission-check-banner.missing-permission_create_one':\n 'Vaše role <Roles/> nemá oprávnění vytvořit tento dokument.',\n /** The text for the permission check banner if the user only has multiple roles, but they do not allow updating this document */\n 'banners.permission-check-banner.missing-permission_create_other':\n 'Vaše role <Roles/> nemají oprávnění vytvořit tento dokument.',\n /** The text for the permission check banner if the user only has one role, and it does not allow updating this document */\n 'banners.permission-check-banner.missing-permission_update_one':\n 'Vaše role <Roles/> nemá oprávnění aktualizovat tento dokument.',\n /** The text for the permission check banner if the user only has multiple roles, but they do not allow updating this document */\n 'banners.permission-check-banner.missing-permission_update_other':\n 'Vaše role <Roles/> nemají oprávnění aktualizovat tento dokument.',\n /** The text for the reload button */\n 'banners.reference-changed-banner.reason-changed.reload-button.text': 'Znovu načíst referenci',\n /** The text for the reference change banner if the reason is that the reference has been changed */\n 'banners.reference-changed-banner.reason-changed.text':\n 'Tato reference byla změněna od doby, co jste ji otevřeli.',\n /** The text for the close button */\n 'banners.reference-changed-banner.reason-removed.close-button.text': 'Zavřít referenci',\n /** The text for the reference change banner if the reason is that the reference has been deleted */\n 'banners.reference-changed-banner.reason-removed.text':\n 'Tato reference byla odstraněna od doby, co jste ji otevřeli.',\n\n /** Browser/tab title when creating a new document of a given type */\n 'browser-document-title.new-document': 'Nový {{schemaType}}',\n /** Browser/tab title when editing a document where the title cannot be resolved from preview configuration */\n 'browser-document-title.untitled-document': 'Bez názvu',\n\n /** The action menu button aria-label */\n 'buttons.action-menu-button.aria-label': 'Otevřít akce dokumentu',\n /** The action menu button tooltip */\n 'buttons.action-menu-button.tooltip': 'Akce dokumentu',\n /** The aria-label for the split pane button on the document panel header */\n 'buttons.split-pane-button.aria-label': 'Rozdělit panel vpravo',\n /** The tool tip for the split pane button on the document panel header */\n 'buttons.split-pane-button.tooltip': 'Rozdělit panel vpravo',\n /** The title for the close button on the split pane on the document panel header */\n 'buttons.split-pane-close-button.title': 'Zavřít rozdělený panel',\n /** The title for the close group button on the split pane on the document panel header */\n 'buttons.split-pane-close-group-button.title': 'Zavřít skupinu panelů',\n\n /** The text in the \"Cancel\" button in the confirm delete dialog that cancels the action and closes the dialog */\n 'confirm-delete-dialog.cancel-button.text': 'Zrušit',\n /** Used in `confirm-delete-dialog.cdr-summary.title` */\n 'confirm-delete-dialog.cdr-summary.document-count_one': '1 dokument',\n /** Used in `confirm-delete-dialog.cdr-summary.title` */\n 'confirm-delete-dialog.cdr-summary.document-count_other': '{{count}} dokumentů',\n /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */\n 'confirm-delete-dialog.cdr-summary.subtitle_one': 'Dataset: {{datasets}}',\n /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */\n 'confirm-delete-dialog.cdr-summary.subtitle_other': 'Datasety: {{datasets}}',\n /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */\n 'confirm-delete-dialog.cdr-summary.subtitle_unavailable_one': 'Nedostupný dataset',\n /** The text that appears in the subtitle `<summary>` that lists the datasets below the title */\n 'confirm-delete-dialog.cdr-summary.subtitle_unavailable_other': 'Nedostupné datasety',\n /** The text that appears in the title `<summary>` that includes the list of CDRs (singular) */\n 'confirm-delete-dialog.cdr-summary.title_one': '{{documentCount}} v jiném datasetu',\n /** The text that appears in the title `<summary>` that includes the list of CDRs (plural) */\n 'confirm-delete-dialog.cdr-summary.title_other': '{{documentCount}} v {{count}} datasety',\n /** Appears when hovering over the copy button to copy */\n 'confirm-delete-dialog.cdr-table.copy-id-button.tooltip': 'Zkopírovat ID do schránky',\n /** The header for the dataset column in the list of cross-dataset references found */\n 'confirm-delete-dialog.cdr-table.dataset.label': 'Dataset',\n /** The header for the document ID column in the list of cross-dataset references found */\n 'confirm-delete-dialog.cdr-table.document-id.label': 'ID dokumentu',\n /** The toast title when the copy button has been clicked */\n 'confirm-delete-dialog.cdr-table.id-copied-toast.title': 'ID dokumentu zkopírováno do schránky!',\n /** The header for the project ID column in the list of cross-dataset references found */\n 'confirm-delete-dialog.cdr-table.project-id.label': 'ID projektu',\n /** The text in the \"Delete anyway\" button in the confirm delete dialog that confirms the action */\n 'confirm-delete-dialog.confirm-anyway-button.text_delete': 'Smazat přesto',\n /** The text in the \"Unpublish anyway\" button in the confirm delete dialog that confirms the action */\n 'confirm-delete-dialog.confirm-anyway-button.text_unpublish': 'Zrušit publikaci přesto',\n /** The text in the \"Delete now\" button in the confirm delete dialog that confirms the action */\n 'confirm-delete-dialog.confirm-button.text_delete': 'Smazat nyní',\n /** The text in the \"Unpublish now\" button in the confirm delete dialog that confirms the action */\n 'confirm-delete-dialog.confirm-button.text_unpublish': 'Zrušit publikaci nyní',\n /** If no referring documents are found, this text appears above the cancel and confirmation buttons */\n 'confirm-delete-dialog.confirmation.text_delete':\n 'Jste si jisti, že chcete smazat „<DocumentTitle/>“?',\n /** If no referring documents are found, this text appears above the cancel and confirmation buttons */\n 'confirm-delete-dialog.confirmation.text_unpublish':\n 'Jste si jisti, že chcete zrušit publikaci „<DocumentTitle/>“?',\n /** The text body of the error dialog. */\n 'confirm-delete-dialog.error.message.text': 'Při načítání odkazujících dokumentů došlo k chybě.',\n /** The text in the retry button of the confirm delete dialog if an error occurred. */\n 'confirm-delete-dialog.error.retry-button.text': 'Zkusit znovu',\n /** The header of the confirm delete dialog if an error occurred while the confirm delete dialog was open. */\n 'confirm-delete-dialog.error.title.text': 'Chyba',\n /** The header of the confirm delete dialog */\n 'confirm-delete-dialog.header.text_delete': 'Smazat dokument?',\n /** The header of the confirm delete dialog */\n 'confirm-delete-dialog.header.text_unpublish': 'Zrušit publikaci dokumentu?',\n /** The text that appears while the referring documents are queried */\n 'confirm-delete-dialog.loading.text': 'Hledání odkazujících dokumentů…',\n /** Shown if there are references to other documents but the user does not have the permission to see the relevant document IDs */\n 'confirm-delete-dialog.other-reference-count.title_one': '1 další odkaz není zobrazen',\n /** Shown if there are references to other documents but the user does not have the permission to see the relevant document IDs */\n 'confirm-delete-dialog.other-reference-count.title_other':\n '{{count}} dalších referencí není zobrazeno',\n /** Text in the tooltip of this component if hovering over the info icon */\n 'confirm-delete-dialog.other-reference-count.tooltip':\n 'Nemůžeme zobrazit metadata pro tyto reference kvůli chybějícímu přístupovému tokenu pro související datasety.',\n /** Appears when unable to render a document preview in the referring document list */\n 'confirm-delete-dialog.preview-item.preview-unavailable.subtitle': 'ID: {{documentId}}',\n /** Appears when unable to render a document preview in the referring document list */\n 'confirm-delete-dialog.preview-item.preview-unavailable.title': 'Náhled není k dispozici',\n /** Warns the user of affects to other documents if the action is confirmed (delete) */\n 'confirm-delete-dialog.referential-integrity-disclaimer.text_delete':\n 'Pokud smažete tento dokument, dokumenty, které na něj odkazují, již nebudou moci získat přístup.',\n /** Warns the user of affects to other documents if the action is confirmed (unpublish) */\n 'confirm-delete-dialog.referential-integrity-disclaimer.text_unpublish':\n 'Pokud zrušíte publikaci tohoto dokumentu, dokumenty, které na něj odkazují, již nebudou moci získat přístup.',\n /** Tells the user the count of how many other referring documents there are before listing them. (singular) */\n 'confirm-delete-dialog.referring-document-count.text_one':\n '1 dokument odkazuje na „<DocumentTitle/>“',\n /** Tells the user the count of how many other referring documents there are before listing them. (plural) */\n 'confirm-delete-dialog.referring-document-count.text_other':\n '{{count}} dokumentů odkazuje na „<DocumentTitle/>“',\n /** Describes the list of documents that refer to the one trying to be deleted (delete) */\n 'confirm-delete-dialog.referring-documents-descriptor.text_delete':\n 'Možná nebudete moci smazat „<DocumentTitle/>“, protože na něj odkazují následující dokumenty:',\n /** Describes the list of documents that refer to the one trying to be deleted (unpublish) */\n 'confirm-delete-dialog.referring-documents-descriptor.text_unpublish':\n 'Možná nebudete moci zrušit publikaci „<DocumentTitle/>“, protože na něj odkazují následující dokumenty:',\n\n /** The text for the cancel button in the confirm dialog used in document action shortcuts if none is provided */\n 'confirm-dialog.cancel-button.fallback-text': 'Zrušit',\n /** The text for the confirm button in the confirm dialog used in document action shortcuts if none is provided */\n 'confirm-dialog.confirm-button.fallback-text': 'Potvrdit',\n\n /** For the default structure definition, the title for the \"Content\" pane */\n 'default-definition.content-title': 'Obsah',\n\n /** The text shown if there was an error while getting the document's title via a preview value */\n 'doc-title.error.text': 'Chyba: {{errorMessage}}',\n /** The text shown if the preview value for a document is non-existent or empty */\n 'doc-title.fallback.text': 'Bez názvu',\n /** The text shown if a document's title via a preview value cannot be determined due to an unknown schema type */\n 'doc-title.unknown-schema-type.text': 'Neznámý typ schématu: {{schemaType}}',\n\n /** Tooltip text shown for the close button of the document inspector */\n 'document-inspector.close-button.tooltip': 'Zavřít',\n /** The title shown in the dialog header, when inspecting a valid document */\n 'document-inspector.dialog.title': 'Inspekce <DocumentTitle/>',\n /** The title shown in the dialog header, when the document being inspected is not created yet/has no value */\n 'document-inspector.dialog.title-no-value': 'Bez hodnoty',\n /** Title shown for menu item that opens the \"Inspect\" dialog */\n 'document-inspector.menu-item.title': 'Inspekce',\n /** the placeholder text for the search input on the inspect dialog */\n 'document-inspector.search.placeholder': 'Hledat',\n /** The \"parsed\" view mode, meaning the JSON is searchable, collapsible etc */\n 'document-inspector.view-mode.parsed': 'Zpracované',\n /** The \"raw\" view mode, meaning the JSON is presented syntax-highlighted, but with no other features - optimal for copying */\n 'document-inspector.view-mode.raw-json': 'Surový JSON',\n\n /** The text for when a form is hidden */\n 'document-view.form-view.form-hidden': 'Tento formulář je skrytý',\n /** Fallback title shown when a form title is not provided */\n 'document-view.form-view.form-title-fallback': 'Nepojmenované',\n /** The text for when the form view is loading a document */\n 'document-view.form-view.loading': 'Načítání dokumentu…',\n /** The description of the sync lock toast on the form view */\n 'document-view.form-view.sync-lock-toast.description':\n 'Vyčkejte, prosím, dokud se dokument synchronizuje. To se obvykle děje ihned po publikaci dokumentu a nemělo by to trvat déle než několik sekund',\n /** The title of the sync lock toast on the form view */\n 'document-view.form-view.sync-lock-toast.title': 'Synchronizace dokumentu…',\n\n /** The loading messaging for when the tooltip is still loading permission info */\n 'insufficient-permissions-message-tooltip.loading-text': 'Načítání…',\n\n /** --- Menu items --- */\n /** The menu item group title to use for the Action menu items */\n 'menu-item-groups.actions-group': 'Akce',\n /** The menu item group title to use for the Layout menu items */\n 'menu-item-groups.layout-group': 'Rozložení',\n /** The menu item group title to use for the Sort menu items */\n 'menu-item-groups.sorting-group': 'Řazení',\n\n /** The menu item title to use the compact view */\n 'menu-items.layout.compact-view': 'Kompaktní zobrazení',\n /** The menu item title to use the detailed view */\n 'menu-items.layout.detailed-view': 'Detailní zobrazení',\n /** The menu item title to Sort by Created */\n 'menu-items.sort-by.created': 'Seřadit podle data vytvoření',\n /** The menu item title to Sort by Last Edited */\n 'menu-items.sort-by.last-edited': 'Seřadit podle poslední úpravy',\n\n /** The link text of the no document type screen that appears directly below the subtitle */\n 'no-document-types-screen.link-text': 'Zjistěte, jak přidat typ dokumentu →',\n /** The subtitle of the no document type screen that appears directly below the title */\n 'no-document-types-screen.subtitle':\n 'Prosím, definujte alespoň jeden typ dokumentu ve vašem schématu.',\n /** The title of the no document type screen */\n 'no-document-types-screen.title': 'Žádné typy dokumentů',\n\n /** Text shown on back button visible on smaller breakpoints */\n 'pane-header.back-button.text': 'Zpět',\n /** tooltip text (via `title` attribute) for the menu button */\n 'pane-header.context-menu-button.tooltip': 'Zobrazit menu',\n /** Appears in a document list pane header if there are more than one option for create. This is the label for that menu */\n 'pane-header.create-menu.label': 'Vytvořit',\n /** Tooltip displayed on the create new button in document lists */\n 'pane-header.create-new-button.tooltip': 'Vytvořit nový dokument',\n /** The `aria-label` for the disabled button in the pane header if create permissions are granted */\n 'pane-header.disabled-created-button.aria-label': 'Nedostatečná oprávnění',\n\n /** The text shown in the tooltip of pane item previews of documents if there are unpublished edits */\n 'pane-item.draft-status.has-draft.tooltip': 'Editováno <RelativeTime/>',\n /** The text shown in the tooltip of pane item previews of documents if there are no unpublished edits */\n 'pane-item.draft-status.no-draft.tooltip': 'Žádné nezveřejněné úpravy',\n /** The subtitle tor pane item previews if there isn't a matching schema type found */\n 'pane-item.missing-schema-type.subtitle': 'Dokument: <Code>{{documentId}}</Code>',\n /** The title tor pane item previews if there isn't a matching schema type found */\n 'pane-item.missing-schema-type.title':\n 'Pro typ <Code>{{documentType}}</Code> nebylo nalezeno schéma',\n /** The text shown in the tooltip of pane item previews of documents if there are unpublished edits */\n 'pane-item.published-status.has-published.tooltip': 'Publikováno <RelativeTime/>',\n /** The text shown in the tooltip of pane item previews of documents if there are no unpublished edits */\n 'pane-item.published-status.no-published.tooltip': 'Žádné nezveřejněné úpravy',\n\n /** The text used in the document header title if there is an error */\n 'panes.document-header-title.error.text': 'Chyba: {{error}}',\n /** The text used in the document header title if creating a new item */\n 'panes.document-header-title.new.text': 'Nový {{schemaType}}',\n /** The text used in the document header title if no other title can be determined */\n 'panes.document-header-title.untitled.text': 'Bez názvu',\n /** The text for the retry button on the document list pane */\n 'panes.document-list-pane.error.retry-button.text': 'Zkusit znovu',\n /** The error text on the document list pane */\n 'panes.document-list-pane.error.text': 'Chyba: <Code>{{error}}</Code>',\n /** The error title on the document list pane */\n 'panes.document-list-pane.error.title': 'Nepodařilo se načíst položky seznamu',\n /** The text of the document list pane if more than a maximum number of documents are returned */\n 'panes.document-list-pane.max-items.text': 'Zobrazuje se maximálně {{limit}} dokumentů',\n /** The text of the document list pane if no documents are found for a specified type */\n 'panes.document-list-pane.no-documents-of-type.text': 'Žádné dokumenty tohoto typu',\n /** The text of the document list pane if no documents are found */\n 'panes.document-list-pane.no-documents.text': 'Nebyly nalezeny žádné výsledky',\n /** The text of the document list pane if no documents are found matching specified criteria */\n 'panes.document-list-pane.no-matching-documents.text':\n 'Nebyly nalezeny žádné odpovídající dokumenty',\n /** The aria-label for the search input on the document list pane */\n 'panes.document-list-pane.search-input.aria-label': 'Prohledat seznam',\n /** The search input for the search input on the document list pane */\n 'panes.document-list-pane.search-input.placeholder': 'Prohledat seznam',\n /** The summary title when displaying an error for a document operation result */\n 'panes.document-operation-results.error.summary.title': 'Podrobnosti',\n /** The text when a generic operation failed (fallback, generally not shown) */\n 'panes.document-operation-results.operation-error': 'Během {{context}} došlo k chybě',\n /** The text when a delete operation failed */\n 'panes.document-operation-results.operation-error_delete':\n 'Při pokusu o smazání tohoto dokumentu došlo k chybě. To obvykle znamená, že na něj odkazují jiné dokumenty.',\n /** The text when an unpublish operation failed */\n 'panes.document-operation-results.operation-error_unpublish':\n 'Při pokusu o zrušení publikace tohoto dokumentu došlo k chybě. To obvykle znamená, že na něj odkazují jiné dokumenty.',\n /** The text when a generic operation succeeded (fallback, generally not shown) */\n 'panes.document-operation-results.operation-success':\n 'Úspěšně provedeno {{context}} na dokumentu',\n /** The text when a delete operation succeeded */\n 'panes.document-operation-results.operation-success_delete': 'Dokument byl úspěšně smazán',\n /** The text when a discard changes operation succeeded */\n 'panes.document-operation-results.operation-success_discardChanges':\n 'Všechny změny od poslední publikace byly nyní zrušeny. Zahozený koncept lze stále obnovit z historie',\n /** The text when a duplicate operation succeeded */\n 'panes.document-operation-results.operation-success_duplicate': undefined, // 'The document was successfully duplicated'\n /** The text when a publish operation succeeded */\n 'panes.document-operation-results.operation-success_publish': 'Dokument byl publikován',\n /** The text when a restore operation succeeded */\n 'panes.document-operation-results.operation-success_restore':\n '<Strong>{{title}}</Strong> byl obnoven',\n /** The text when an unpublish operation succeeded */\n 'panes.document-operation-results.operation-success_unpublish':\n 'Publikace dokumentu byla zrušena. Z poslední publikované verze byl vytvořen koncept.',\n /** The document title shown when document title is \"undefined\" in operation message */\n 'panes.document-operation-results.operation-undefined-title': 'Bez názvu',\n /** The title of the reconnecting toast */\n 'panes.document-pane-provider.reconnecting.title':\n 'Spojení bylo přerušeno. Opětovné připojování…',\n /** The loading message for the document not found pane */\n 'panes.document-pane.document-not-found.loading': 'Načítání dokumentu…',\n /** The text of the document not found pane if the schema is known */\n 'panes.document-pane.document-not-found.text':\n 'Typ dokumentu není definován a dokument s identifikátorem <Code>{{id}}</Code> nebyl nalezen.',\n /** The title of the document not found pane if the schema is known */\n 'panes.document-pane.document-not-found.title': 'Dokument nebyl nalezen',\n /** The text of the document not found pane if the schema is not found */\n 'panes.document-pane.document-unknown-type.text':\n 'Tento dokument má schéma typu <Code>{{documentType}}</Code>, které není definováno jako typ v lokálním schématu obsahu studia.',\n /** The title of the document not found pane if the schema is not found or unknown */\n 'panes.document-pane.document-unknown-type.title':\n 'Neznámý typ dokumentu: <Code>{{documentType}}</Code>',\n /** The title of the document not found pane if the schema is unknown */\n 'panes.document-pane.document-unknown-type.without-schema.text':\n 'Tento dokument neexistuje a nebyl pro něj určen žádný typ schématu.',\n /** Default message shown while resolving the structure definition for an asynchronous node */\n 'panes.resolving.default-message': 'Načítání…',\n /** Message shown while resolving the structure definition for an asynchronous node and it is taking a while (more than 5s) */\n 'panes.resolving.slow-resolve-message': 'Stále se načítá…',\n /** The text to display when type is missing */\n 'panes.unknown-pane-type.missing-type.text':\n 'Strukturní položka postrádá požadovanou vlastnost <Code>type</Code>.',\n /** The title of the unknown pane */\n 'panes.unknown-pane-type.title': 'Neznámý typ panelu',\n /** The text to display when type is unknown */\n 'panes.unknown-pane-type.unknown-type.text':\n 'Strukturní položka typu <Code>{{type}}</Code> není známou entitou.',\n\n /** The text for the \"Open preview\" action for a document */\n 'production-preview.menu-item.title': 'Otevřít náhled',\n\n /** Label for button when status is saved */\n 'status-bar.document-status-pulse.status.saved.text': 'Uloženo',\n /** Label for button when status is syncing */\n 'status-bar.document-status-pulse.status.syncing.text': 'Ukládání...',\n /** Accessibility label indicating when the document was last published, in relative time, eg \"3 weeks ago\" */\n 'status-bar.publish-status-button.last-published-time.aria-label':\n 'Naposledy publikováno {{relativeTime}}',\n /** Text for tooltip showing explanation of timestamp/relative time, eg \"Last published <RelativeTime/>\" */\n 'status-bar.publish-status-button.last-published-time.tooltip':\n 'Naposledy publikováno <RelativeTime/>',\n /** Accessibility label indicating when the document was last updated, in relative time, eg \"2 hours ago\" */\n 'status-bar.publish-status-button.last-updated-time.aria-label':\n 'Naposledy aktualizováno {{relativeTime}}',\n /** Text for tooltip showing explanation of timestamp/relative time, eg \"Last updated <RelativeTime/>\" */\n 'status-bar.publish-status-button.last-updated-time.tooltip':\n 'Naposledy aktualizováno <RelativeTime/>',\n /** Aria label for the button */\n 'status-bar.review-changes-button.aria-label': 'Zkontrolovat změny',\n /** Label for button when status is saved */\n 'status-bar.review-changes-button.status.saved.text': 'Uloženo!',\n /** Label for button when status is syncing */\n 'status-bar.review-changes-button.status.syncing.text': 'Ukládání...',\n /** Text for the secondary text for tooltip for the button */\n 'status-bar.review-changes-button.tooltip.changes-saved': 'Změny uloženy',\n /** Primary text for tooltip for the button */\n 'status-bar.review-changes-button.tooltip.text': 'Zkontrolovat změny',\n\n /** The text that appears in side the documentation link */\n 'structure-error.docs-link.text': 'Zobrazit dokumentaci',\n /** Labels the error message or error stack of the structure error screen */\n 'structure-error.error.label': 'Chyba',\n /** The header that appears at the top of the error screen */\n 'structure-error.header.text': 'Při čtení struktury došlo k chybě',\n /** The text in the reload button to retry rendering the structure */\n 'structure-error.reload-button.text': 'Znovu načíst',\n /** Labels the structure path of the structure error screen */\n 'structure-error.structure-path.label': 'Cesta struktury',\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":"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"}
|
|
@@ -278,6 +278,9 @@ var studio = sanity.removeUndefinedLocaleResources({
|
|
|
278
278
|
/** Default text in shared loader text / spinner lockup */
|
|
279
279
|
"common.loading": "Na\u010D\xEDt\xE1n\xED",
|
|
280
280
|
/** --- Configuration issues --- */
|
|
281
|
+
/** Default label text on configuration issues button */
|
|
282
|
+
"configuration-issues.button.label": void 0,
|
|
283
|
+
// 'Configuration issues'
|
|
281
284
|
/** Tooltip displayed on configuration issues button */
|
|
282
285
|
"configuration-issues.button.tooltip": "Nalezeny probl\xE9my s konfigurac\xED",
|
|
283
286
|
/** The fallback title for an ordering menu item if no localized titles are provided. */
|
|
@@ -342,12 +345,22 @@ var studio = sanity.removeUndefinedLocaleResources({
|
|
|
342
345
|
"form.error.no-array-item-at-index": "Na cest\u011B <code>{{path}}</code> nebyla nalezena \u017E\xE1dn\xE1 polo\u017Eka pole na indexu <code>{{index}}</code>",
|
|
343
346
|
/** Error text shown when form is unable to find an array item at a given keyed path */
|
|
344
347
|
"form.error.no-array-item-at-key": 'Na cest\u011B <code>{{path}}</code> nebyla nalezena \u017E\xE1dn\xE1 polo\u017Eka pole s `_key` <code>"{{key}}"</code>',
|
|
348
|
+
/** The title above the error call stack output related to the crash */
|
|
349
|
+
"form.error.unhandled-runtime-error.call-stack.title": void 0,
|
|
350
|
+
// 'Call Stack:'
|
|
351
|
+
/** The title above the error component stack provided by React's underlying ErrorBoundary component */
|
|
352
|
+
"form.error.unhandled-runtime-error.component-stack.title": void 0,
|
|
353
|
+
// 'Component Stack:'
|
|
354
|
+
/** The error message for the unhandled error that crashed the Input component during render */
|
|
355
|
+
"form.error.unhandled-runtime-error.error-message": void 0,
|
|
356
|
+
// 'Error: {{message}}'
|
|
357
|
+
/** The title for the error card rendered inside a field in place of a crashing input */
|
|
358
|
+
"form.error.unhandled-runtime-error.title": void 0,
|
|
359
|
+
// 'Unhandled Runtime Error'
|
|
345
360
|
/** Form field deprecated label */
|
|
346
361
|
"form.field.deprecated-label": "zastaral\xE9",
|
|
347
362
|
/** Fallback title shown above field if it has no defined title */
|
|
348
363
|
"form.field.untitled-field-label": "Nepojmenovan\xE9",
|
|
349
|
-
/** Fallback title shown above fieldset if it has no defined title */
|
|
350
|
-
"form.field.untitled-fieldset-label": "Nepojmenovan\xE9",
|
|
351
364
|
/** Accessibility label for the icon that indicates the field has a validation error */
|
|
352
365
|
"form.validation.has-error-aria-label": "Obsahuje chybu",
|
|
353
366
|
/** Accessibility label for the icon that indicates the field has validation information */
|
|
@@ -435,12 +448,30 @@ var studio = sanity.removeUndefinedLocaleResources({
|
|
|
435
448
|
"inputs.array.error.type-is-incompatible-title": "Pro\u010D se to d\u011Bje?",
|
|
436
449
|
/** Error label for unexpected errors in the Array Input */
|
|
437
450
|
"inputs.array.error.unexpected-error": "Neo\u010Dek\xE1van\xE1 chyba: {{error}}",
|
|
451
|
+
/** Label for the array insert menu all items filter */
|
|
452
|
+
"inputs.array.insert-menu.filter.all-items": void 0,
|
|
453
|
+
// 'All'
|
|
454
|
+
/** Label for when the array insert menu search shows no items */
|
|
455
|
+
"inputs.array.insert-menu.search.no-results": void 0,
|
|
456
|
+
// 'No items found'
|
|
457
|
+
/** Placeholder for the array insert menu search field */
|
|
458
|
+
"inputs.array.insert-menu.search.placeholder": void 0,
|
|
459
|
+
// 'Search'
|
|
460
|
+
/** Tooltip for the array insert menu grid view toggle */
|
|
461
|
+
"inputs.array.insert-menu.toggle-grid-view.tooltip": void 0,
|
|
462
|
+
// 'Toggle grid view'
|
|
463
|
+
/** Tooltip for the array insert menu list view toggle */
|
|
464
|
+
"inputs.array.insert-menu.toggle-list-view.tooltip": void 0,
|
|
465
|
+
// 'Toggle list view'
|
|
438
466
|
/** Label for when the array input doesn't have any items */
|
|
439
467
|
"inputs.array.no-items-label": "\u017D\xE1dn\xE9 polo\u017Eky",
|
|
440
468
|
/** Label for read only array fields */
|
|
441
469
|
"inputs.array.read-only-label": "Toto pole je pouze pro \u010Dten\xED",
|
|
442
470
|
/** Label for when the array input is resolving the initial value for the item */
|
|
443
471
|
"inputs.array.resolving-initial-value": "\u0158e\u0161en\xED po\u010D\xE1te\u010Dn\xED hodnoty\u2026",
|
|
472
|
+
/** Tooltip content when boolean input is disabled */
|
|
473
|
+
"inputs.boolean.disabled": void 0,
|
|
474
|
+
// 'Disabled'
|
|
444
475
|
/** Placeholder value for datetime input */
|
|
445
476
|
"inputs.datetime.placeholder": "nap\u0159. {{example}}",
|
|
446
477
|
/** Acessibility label for button to open file options menu */
|
|
@@ -565,7 +596,10 @@ var studio = sanity.removeUndefinedLocaleResources({
|
|
|
565
596
|
"inputs.invalid-value.reset-button.text": "Resetovat hodnotu",
|
|
566
597
|
/** Invalid property value */
|
|
567
598
|
"inputs.invalid-value.title": "Neplatn\xE1 hodnota vlastnosti",
|
|
568
|
-
/**
|
|
599
|
+
/** Title for the "All fields" field group */
|
|
600
|
+
"inputs.object.field-group-tabs.all-fields-title": void 0,
|
|
601
|
+
// 'All fields'
|
|
602
|
+
/** Aria label for the "Field groups" select control on smaller screens */
|
|
569
603
|
"inputs.object.field-group-tabs.aria-label": "Skupiny pol\xED",
|
|
570
604
|
/** Read-only field description */
|
|
571
605
|
"inputs.object.unknown-fields.read-only.description": "Toto pole je podle sch\xE9matu dokumentu <strong>pouze pro \u010Dten\xED</strong> a nelze jej zru\u0161it. Pokud chcete, aby bylo mo\u017En\xE9 toto v Studio zru\u0161it, ujist\u011Bte se, \u017Ee jste odstranili pole <code>readOnly</code> z obklopuj\xEDc\xEDho typu ve sch\xE9matu.",
|
|
@@ -604,13 +638,13 @@ var studio = sanity.removeUndefinedLocaleResources({
|
|
|
604
638
|
"inputs.portable-text.activate-on-focus-message_click-focused": "Klikn\u011Bte nebo stiskn\u011Bte mezern\xEDk pro aktivaci",
|
|
605
639
|
/** Label for activate on focus with context of tap and not focused */
|
|
606
640
|
"inputs.portable-text.activate-on-focus-message_tap": "Klepn\u011Bte pro aktivaci",
|
|
607
|
-
/**Aria label for the annotation object */
|
|
641
|
+
/** Aria label for the annotation object */
|
|
608
642
|
"inputs.portable-text.annotation-aria-label": "Objekt anotace",
|
|
609
643
|
/** Title for dialog that allows editing an annotation */
|
|
610
644
|
"inputs.portable-text.annotation-editor.title": "Upravit {{schemaType}}",
|
|
611
645
|
/** Title of the default "link" annotation */
|
|
612
646
|
"inputs.portable-text.annotation.link": "Odkaz",
|
|
613
|
-
/**Aria label for the block object */
|
|
647
|
+
/** Aria label for the block object */
|
|
614
648
|
"inputs.portable-text.block.aria-label": "Objekt bloku",
|
|
615
649
|
/** Label for action to edit a block item, in the case where it is editable */
|
|
616
650
|
"inputs.portable-text.block.edit": "Upravit",
|
|
@@ -634,7 +668,7 @@ var studio = sanity.removeUndefinedLocaleResources({
|
|
|
634
668
|
"inputs.portable-text.decorator.underline": "Podtr\u017Een\xED",
|
|
635
669
|
/** Placeholder text for when the editor is empty */
|
|
636
670
|
"inputs.portable-text.empty-placeholder": "Pr\xE1zdn\xE9",
|
|
637
|
-
/**Aria label for the block object */
|
|
671
|
+
/** Aria label for the block object */
|
|
638
672
|
"inputs.portable-text.inline-block.aria-label": "Vlo\u017Een\xFD objekt",
|
|
639
673
|
/** Label for action to edit an inline object item */
|
|
640
674
|
"inputs.portable-text.inline-object.edit": "Upravit objekt",
|
|
@@ -880,10 +914,19 @@ var studio = sanity.removeUndefinedLocaleResources({
|
|
|
880
914
|
"insufficient-permissions-message.not-authorized-explanation_create-new-reference": "Nem\xE1te opr\xE1vn\u011Bn\xED vytvo\u0159it novou referenci.",
|
|
881
915
|
/** The explanation when unable to delete a particular document */
|
|
882
916
|
"insufficient-permissions-message.not-authorized-explanation_delete-document": "Nem\xE1te opr\xE1vn\u011Bn\xED smazat tento dokument.",
|
|
917
|
+
/** The explanation when unable to delete a schedule on scheduled publishing */
|
|
918
|
+
"insufficient-permissions-message.not-authorized-explanation_delete-schedules": void 0,
|
|
919
|
+
// 'You do not have permission to delete schedules.'
|
|
883
920
|
/** The explanation when unable to discard changes in a particular document */
|
|
884
921
|
"insufficient-permissions-message.not-authorized-explanation_discard-changes": "Nem\xE1te opr\xE1vn\u011Bn\xED zahodit zm\u011Bny v tomto dokumentu.",
|
|
885
922
|
/** The explanation when unable to duplicate a particular document */
|
|
886
923
|
"insufficient-permissions-message.not-authorized-explanation_duplicate-document": "Nem\xE1te opr\xE1vn\u011Bn\xED duplikovat tento dokument.",
|
|
924
|
+
/** The explanation when unable to edit a schedule on scheduled publishing */
|
|
925
|
+
"insufficient-permissions-message.not-authorized-explanation_edit-schedules": void 0,
|
|
926
|
+
// 'You do not have permission to edit schedules.'
|
|
927
|
+
/** The explanation when unable to execute a schedule on scheduled publishing */
|
|
928
|
+
"insufficient-permissions-message.not-authorized-explanation_execute-schedules": void 0,
|
|
929
|
+
// 'You do not have permission to execute schedules.'
|
|
887
930
|
/** The explanation when unable to publish a particular document */
|
|
888
931
|
"insufficient-permissions-message.not-authorized-explanation_publish-document": "Nem\xE1te opr\xE1vn\u011Bn\xED publikovat tento dokument.",
|
|
889
932
|
/** The explanation when unable to unpublish a particular document */
|
|
@@ -920,6 +963,12 @@ var studio = sanity.removeUndefinedLocaleResources({
|
|
|
920
963
|
"new-document.open-dialog-aria-label": "Vytvo\u0159it nov\xFD dokument",
|
|
921
964
|
/** Title for "Create new document" dialog */
|
|
922
965
|
"new-document.title": "Vytvo\u0159it nov\xFD dokument",
|
|
966
|
+
/** Label for button that will make the browser reload when users' studio version is out-of-date */
|
|
967
|
+
"package-version.new-package-available.reload-button": void 0,
|
|
968
|
+
// 'Push to reload'
|
|
969
|
+
/** Title of the alert for studio users when packages in their studio are out-of-date */
|
|
970
|
+
"package-version.new-package-available.title": void 0,
|
|
971
|
+
// 'Sanity Studio is ready to update!'
|
|
923
972
|
/** Label for action to manage members of the current studio project */
|
|
924
973
|
"presence.action.manage-members": "Spravovat \u010Dleny",
|
|
925
974
|
/** Accessibility label for presence menu button */
|
|
@@ -1312,6 +1361,18 @@ var studio = sanity.removeUndefinedLocaleResources({
|
|
|
1312
1361
|
"search.recent-searches-label": "Ned\xE1vn\xE9 vyhled\xE1v\xE1n\xED",
|
|
1313
1362
|
/** Accessibility label for the search results section, shown when the user has typed valid terms */
|
|
1314
1363
|
"search.search-results-aria-label": "V\xFDsledky vyhled\xE1v\xE1n\xED",
|
|
1364
|
+
/** Label for the edit columns button to change field visibility in sheet list */
|
|
1365
|
+
"sheet-list.edit-columns": void 0,
|
|
1366
|
+
// 'Edit columns'
|
|
1367
|
+
/** Label for the header menu option to hide a field from the sheet list */
|
|
1368
|
+
"sheet-list.hide-field": void 0,
|
|
1369
|
+
// 'Remove from table'
|
|
1370
|
+
/** Label for reset column visibilities button */
|
|
1371
|
+
"sheet-list.reset-columns": void 0,
|
|
1372
|
+
// 'Reset columns'
|
|
1373
|
+
/** Title for the edit columns menu */
|
|
1374
|
+
"sheet-list.select-fields": void 0,
|
|
1375
|
+
// 'Select up to 5 field types'
|
|
1315
1376
|
/** Accessibility label for the navbar status button */
|
|
1316
1377
|
"status-button.aria-label": "Stav konfigurace",
|
|
1317
1378
|
/** Description for error when the timeline for the given document can't be loaded */
|
|
@@ -1326,7 +1387,13 @@ var studio = sanity.removeUndefinedLocaleResources({
|
|
|
1326
1387
|
"timeline.error.unable-to-load-revision": "Nelze na\u010D\xEDst revizi",
|
|
1327
1388
|
/** Label for when the timeline item is the latest in the history */
|
|
1328
1389
|
"timeline.latest": "Nejnov\u011Bj\u0161\xED",
|
|
1329
|
-
/** Label for latest
|
|
1390
|
+
/** Label for latest revision for timeline menu dropdown */
|
|
1391
|
+
"timeline.latest-revision": void 0,
|
|
1392
|
+
// 'Latest revision'
|
|
1393
|
+
/**
|
|
1394
|
+
* Label for latest revision for timeline menu dropdown
|
|
1395
|
+
* @deprecated as of `v3.47.0` `timeline.latest-revision` should be used instead. Note: _usage_ of this key is deprecated, but Studios on `< v3.47.0` still require this key to be _defined_
|
|
1396
|
+
* */
|
|
1330
1397
|
"timeline.latest-version": "Nejnov\u011Bj\u0161\xED verze",
|
|
1331
1398
|
/** The aria-label for the list of revisions in the timeline */
|
|
1332
1399
|
"timeline.list.aria-label": "Revize dokumentu",
|
|
@@ -1371,8 +1438,35 @@ var studio = sanity.removeUndefinedLocaleResources({
|
|
|
1371
1438
|
"timeline.since": "Od: {{timestamp, datetime}}",
|
|
1372
1439
|
/** Label for missing change version for timeline menu dropdown are showing */
|
|
1373
1440
|
"timeline.since-version-missing": "Od: nezn\xE1m\xE1 verze",
|
|
1374
|
-
/**Aria label for the action buttons in the PTE toolbar */
|
|
1441
|
+
/** Aria label for the action buttons in the PTE toolbar */
|
|
1375
1442
|
"toolbar.portable-text.action-button-aria-label": "{{action}}",
|
|
1443
|
+
/** Accessibility label for the breadcrumb menu */
|
|
1444
|
+
"tree-editing-dialog.breadcrumbs.menu": void 0,
|
|
1445
|
+
// 'Breadcrumb menu'
|
|
1446
|
+
/** Title placeholder for search input in array of objects */
|
|
1447
|
+
"tree-editing-dialog.search-placeholder": void 0,
|
|
1448
|
+
// 'Search'
|
|
1449
|
+
/** Menu aria label for the search menu */
|
|
1450
|
+
"tree-editing-dialog.search.menu-label": void 0,
|
|
1451
|
+
// 'Search menu'
|
|
1452
|
+
/** Title label for when no search results are found on the tree of objects */
|
|
1453
|
+
"tree-editing-dialog.search.no-results-title": void 0,
|
|
1454
|
+
// 'No results found'
|
|
1455
|
+
/** Label to close the sidebar */
|
|
1456
|
+
"tree-editing-dialog.sidebar.action.close": void 0,
|
|
1457
|
+
// 'Close sidebar'
|
|
1458
|
+
/** Collapse label the menu item in the sidebar */
|
|
1459
|
+
"tree-editing-dialog.sidebar.action.collapse": void 0,
|
|
1460
|
+
// 'Collapse'
|
|
1461
|
+
/** Label to close the dialog */
|
|
1462
|
+
"tree-editing-dialog.sidebar.action.done": void 0,
|
|
1463
|
+
// 'Done'
|
|
1464
|
+
/** Exapnd label the menu item in the sidebar */
|
|
1465
|
+
"tree-editing-dialog.sidebar.action.expand": void 0,
|
|
1466
|
+
// 'Expand'
|
|
1467
|
+
/** Label to open the sidebar */
|
|
1468
|
+
"tree-editing-dialog.sidebar.action.open": void 0,
|
|
1469
|
+
// 'Open sidebar'
|
|
1376
1470
|
/** Label for button showing the free trial days left */
|
|
1377
1471
|
"user-menu.action.free-trial_one": "{{count}} den zb\xFDv\xE1 do konce zku\u0161ebn\xED doby",
|
|
1378
1472
|
"user-menu.action.free-trial_other": "{{count}} dn\xED zb\xFDv\xE1 do konce zku\u0161ebn\xED doby",
|