@sanity/locale-cs-cz 1.1.15 → 1.1.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_chunks-cjs/canvas.cjs +83 -0
- package/dist/_chunks-cjs/canvas.cjs.map +1 -0
- package/dist/_chunks-cjs/comments.cjs +0 -2
- package/dist/_chunks-cjs/comments.cjs.map +1 -1
- package/dist/_chunks-cjs/copy-paste.cjs +0 -10
- package/dist/_chunks-cjs/copy-paste.cjs.map +1 -1
- package/dist/_chunks-cjs/create.cjs +0 -20
- package/dist/_chunks-cjs/create.cjs.map +1 -1
- package/dist/_chunks-cjs/structure.cjs +91 -4
- package/dist/_chunks-cjs/structure.cjs.map +1 -1
- package/dist/_chunks-cjs/studio.cjs +211 -4
- package/dist/_chunks-cjs/studio.cjs.map +1 -1
- package/dist/_chunks-cjs/vision.cjs +8 -0
- package/dist/_chunks-cjs/vision.cjs.map +1 -1
- package/dist/_chunks-es/canvas.js +85 -0
- package/dist/_chunks-es/canvas.js.map +1 -0
- package/dist/_chunks-es/comments.js +0 -2
- package/dist/_chunks-es/comments.js.map +1 -1
- package/dist/_chunks-es/copy-paste.js +0 -10
- package/dist/_chunks-es/copy-paste.js.map +1 -1
- package/dist/_chunks-es/create.js +0 -20
- package/dist/_chunks-es/create.js.map +1 -1
- package/dist/_chunks-es/structure.js +91 -4
- package/dist/_chunks-es/structure.js.map +1 -1
- package/dist/_chunks-es/studio.js +211 -4
- package/dist/_chunks-es/studio.js.map +1 -1
- package/dist/_chunks-es/vision.js +8 -0
- package/dist/_chunks-es/vision.js.map +1 -1
- package/dist/index.cjs +6 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/canvas.ts +59 -0
- package/src/comments.ts +0 -3
- package/src/copy-paste.ts +0 -13
- package/src/create.ts +0 -27
- package/src/index.ts +5 -0
- package/src/structure.ts +96 -5
- package/src/studio.ts +192 -4
- package/src/vision.ts +10 -0
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var sanity = require("sanity"), canvas = sanity.removeUndefinedLocaleResources({
|
|
3
|
+
/** The text for the "Edit in Canvas" action. */
|
|
4
|
+
"action.edit-document": void 0,
|
|
5
|
+
// 'Edit in Canvas'
|
|
6
|
+
/** The text for the "Link to Canvas" action. */
|
|
7
|
+
"action.link-document": void 0,
|
|
8
|
+
// 'Link to Canvas'
|
|
9
|
+
/** The text for the "Link to Canvas" action when the document is not yet resolved. */
|
|
10
|
+
"action.link-document-disabled.initial-value-not-resolved": void 0,
|
|
11
|
+
// 'Please wait until the document initial values are resolved'
|
|
12
|
+
/** The text for the "Link to Canvas" action when the user doesn't have permissions to link the document to Canvas. */
|
|
13
|
+
"action.link-document-disabled.missing-permissions": void 0,
|
|
14
|
+
// 'You don\'t have permissions to link this document to Canvas'
|
|
15
|
+
/** The text for the "Link to Canvas" action when the document is not in the dashboard. */
|
|
16
|
+
"action.link-document-disabled.not-in-dashboard": void 0,
|
|
17
|
+
// 'Open this document in Dashboard to link to Canvas'
|
|
18
|
+
/** The text for the "Link to Canvas" action when the document is a version document. */
|
|
19
|
+
"action.link-document-disabled.version-document": void 0,
|
|
20
|
+
// 'Version documents are not yet supported in Canvas'
|
|
21
|
+
/** The text for the "Unlink from Canvas" action. */
|
|
22
|
+
"action.unlink-document": void 0,
|
|
23
|
+
// 'Unlink from Canvas'
|
|
24
|
+
/** The text for the action button in the banner when the document is linked to Canvas. */
|
|
25
|
+
"banner.edit-document-in-canvas": void 0,
|
|
26
|
+
// 'Edit in Canvas'
|
|
27
|
+
/** The text for the banner when the document is linked to Canvas. */
|
|
28
|
+
"banner.linked-to-canvas": void 0,
|
|
29
|
+
// 'This document is linked to Canvas'
|
|
30
|
+
/** The text for the "Confirm document changes" dialog cancel button. */
|
|
31
|
+
"dialog.confirm-document-changes.cancel": void 0,
|
|
32
|
+
// 'Cancel'
|
|
33
|
+
/** The text for the "Confirm document changes" dialog confirm button. */
|
|
34
|
+
"dialog.confirm-document-changes.confirm": void 0,
|
|
35
|
+
// 'Accept and continue'
|
|
36
|
+
/** The description for the "Confirm document changes" dialog. */
|
|
37
|
+
"dialog.confirm-document-changes.description": void 0,
|
|
38
|
+
// 'This document needs to be updated to be compatible with Canvas.\n Existing content may be edited or removed as part of this process.'
|
|
39
|
+
/** The description for the "Confirm document changes" dialog footer. */
|
|
40
|
+
"dialog.confirm-document-changes.footer-description": void 0,
|
|
41
|
+
// 'You can unlink from Canvas at any time'
|
|
42
|
+
/** The title for the "Confirm document changes" dialog. */
|
|
43
|
+
"dialog.confirm-document-changes.title": void 0,
|
|
44
|
+
// 'Confirm document changes'
|
|
45
|
+
/** The text for the Link to Canvas dialog when there is a error. */
|
|
46
|
+
"dialog.link-to-canvas.error": void 0,
|
|
47
|
+
// 'Failed to link to Canvas'
|
|
48
|
+
/** The text for the "Link to Canvas" dialog when the document is being redirected. */
|
|
49
|
+
"dialog.link-to-canvas.redirecting": void 0,
|
|
50
|
+
// 'Taking you to Canvas to complete linking...'
|
|
51
|
+
/** The title for the "Link to Canvas" dialog. */
|
|
52
|
+
"dialog.link-to-canvas.title": void 0,
|
|
53
|
+
// 'Link to Canvas'
|
|
54
|
+
/** The text for the "Link to Canvas" dialog when the document is being validated. */
|
|
55
|
+
"dialog.link-to-canvas.validating": void 0,
|
|
56
|
+
// 'Validating'
|
|
57
|
+
/** The text for the "Unlink from Canvas" dialog cancel button. */
|
|
58
|
+
"dialog.unlink-from-canvas.cancel": void 0,
|
|
59
|
+
// 'Cancel'
|
|
60
|
+
/** The text for the "Unlink from Canvas" dialog description. */
|
|
61
|
+
"dialog.unlink-from-canvas.description": void 0,
|
|
62
|
+
// 'Once unlinked, it will be editable here and future edits in Canvas will no longer automatically map to this document.'
|
|
63
|
+
/** The text for the "Unlink from Canvas" dialog error message. */
|
|
64
|
+
"dialog.unlink-from-canvas.error": void 0,
|
|
65
|
+
// 'Failed to unlink from Canvas'
|
|
66
|
+
/** The text for the "Unlink from Canvas" dialog success message. */
|
|
67
|
+
"dialog.unlink-from-canvas.success": void 0,
|
|
68
|
+
// 'Unlinked from Canvas'
|
|
69
|
+
/** The title for the "Unlink from Canvas" dialog. */
|
|
70
|
+
"dialog.unlink-from-canvas.title": void 0,
|
|
71
|
+
// 'Unlink from Canvas'
|
|
72
|
+
/** The text for the "Unlink from Canvas" dialog unlink button. */
|
|
73
|
+
"dialog.unlink-from-canvas.unlink-action": void 0,
|
|
74
|
+
// 'Unlink now'
|
|
75
|
+
/** The text for the "Unlink from Canvas" dialog when the document is being unlinked. */
|
|
76
|
+
"dialog.unlink-from-canvas.unlinking": void 0,
|
|
77
|
+
// 'You\'re unlinking <strong>“{{documentTitle}}”</strong> from Canvas.'
|
|
78
|
+
/** The text for the "Navigate to Canvas" dialog error message. */
|
|
79
|
+
"navigate-to-canvas-doc.error.missing-permissions": void 0
|
|
80
|
+
// 'Missing permissions to navigate to Canvas'
|
|
81
|
+
});
|
|
82
|
+
exports.default = canvas;
|
|
83
|
+
//# sourceMappingURL=canvas.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"canvas.cjs","sources":["../../src/canvas.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** The text for the \"Edit in Canvas\" action. */\n 'action.edit-document': undefined, // 'Edit in Canvas'\n /** The text for the \"Link to Canvas\" action. */\n 'action.link-document': undefined, // 'Link to Canvas'\n /** The text for the \"Link to Canvas\" action when the document is not yet resolved. */\n 'action.link-document-disabled.initial-value-not-resolved': undefined, // 'Please wait until the document initial values are resolved'\n /** The text for the \"Link to Canvas\" action when the user doesn't have permissions to link the document to Canvas. */\n 'action.link-document-disabled.missing-permissions': undefined, // 'You don\\'t have permissions to link this document to Canvas'\n /** The text for the \"Link to Canvas\" action when the document is not in the dashboard. */\n 'action.link-document-disabled.not-in-dashboard': undefined, // 'Open this document in Dashboard to link to Canvas'\n /** The text for the \"Link to Canvas\" action when the document is a version document. */\n 'action.link-document-disabled.version-document': undefined, // 'Version documents are not yet supported in Canvas'\n /** The text for the \"Unlink from Canvas\" action. */\n 'action.unlink-document': undefined, // 'Unlink from Canvas'\n\n /** The text for the action button in the banner when the document is linked to Canvas. */\n 'banner.edit-document-in-canvas': undefined, // 'Edit in Canvas'\n /** The text for the banner when the document is linked to Canvas. */\n 'banner.linked-to-canvas': undefined, // 'This document is linked to Canvas'\n\n /** The text for the \"Confirm document changes\" dialog cancel button. */\n 'dialog.confirm-document-changes.cancel': undefined, // 'Cancel'\n /** The text for the \"Confirm document changes\" dialog confirm button. */\n 'dialog.confirm-document-changes.confirm': undefined, // 'Accept and continue'\n /** The description for the \"Confirm document changes\" dialog. */\n 'dialog.confirm-document-changes.description': undefined, // 'This document needs to be updated to be compatible with Canvas.\\n Existing content may be edited or removed as part of this process.'\n /** The description for the \"Confirm document changes\" dialog footer. */\n 'dialog.confirm-document-changes.footer-description': undefined, // 'You can unlink from Canvas at any time'\n /** The title for the \"Confirm document changes\" dialog. */\n 'dialog.confirm-document-changes.title': undefined, // 'Confirm document changes'\n /** The text for the Link to Canvas dialog when there is a error. */\n 'dialog.link-to-canvas.error': undefined, // 'Failed to link to Canvas'\n /** The text for the \"Link to Canvas\" dialog when the document is being redirected. */\n 'dialog.link-to-canvas.redirecting': undefined, // 'Taking you to Canvas to complete linking...'\n /** The title for the \"Link to Canvas\" dialog. */\n 'dialog.link-to-canvas.title': undefined, // 'Link to Canvas'\n /** The text for the \"Link to Canvas\" dialog when the document is being validated. */\n 'dialog.link-to-canvas.validating': undefined, // 'Validating'\n /** The text for the \"Unlink from Canvas\" dialog cancel button. */\n 'dialog.unlink-from-canvas.cancel': undefined, // 'Cancel'\n /** The text for the \"Unlink from Canvas\" dialog description. */\n 'dialog.unlink-from-canvas.description': undefined, // 'Once unlinked, it will be editable here and future edits in Canvas will no longer automatically map to this document.'\n /** The text for the \"Unlink from Canvas\" dialog error message. */\n 'dialog.unlink-from-canvas.error': undefined, // 'Failed to unlink from Canvas'\n /** The text for the \"Unlink from Canvas\" dialog success message. */\n 'dialog.unlink-from-canvas.success': undefined, // 'Unlinked from Canvas'\n /** The title for the \"Unlink from Canvas\" dialog. */\n 'dialog.unlink-from-canvas.title': undefined, // 'Unlink from Canvas'\n /** The text for the \"Unlink from Canvas\" dialog unlink button. */\n 'dialog.unlink-from-canvas.unlink-action': undefined, // 'Unlink now'\n /** The text for the \"Unlink from Canvas\" dialog when the document is being unlinked. */\n 'dialog.unlink-from-canvas.unlinking': undefined, // 'You\\'re unlinking <strong>“{{documentTitle}}”</strong> from Canvas.'\n\n /** The text for the \"Navigate to Canvas\" dialog error message. */\n 'navigate-to-canvas-doc.error.missing-permissions': undefined, // 'Missing permissions to navigate to Canvas'\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":";gCAEA,SAAeA,sCAA+B;AAAA;AAAA,EAE5C,wBAAwB;AAAA;AAAA;AAAA,EAExB,wBAAwB;AAAA;AAAA;AAAA,EAExB,4DAA4D;AAAA;AAAA;AAAA,EAE5D,qDAAqD;AAAA;AAAA;AAAA,EAErD,kDAAkD;AAAA;AAAA;AAAA,EAElD,kDAAkD;AAAA;AAAA;AAAA,EAElD,0BAA0B;AAAA;AAAA;AAAA,EAG1B,kCAAkC;AAAA;AAAA;AAAA,EAElC,2BAA2B;AAAA;AAAA;AAAA,EAG3B,0CAA0C;AAAA;AAAA;AAAA,EAE1C,2CAA2C;AAAA;AAAA;AAAA,EAE3C,+CAA+C;AAAA;AAAA;AAAA,EAE/C,sDAAsD;AAAA;AAAA;AAAA,EAEtD,yCAAyC;AAAA;AAAA;AAAA,EAEzC,+BAA+B;AAAA;AAAA;AAAA,EAE/B,qCAAqC;AAAA;AAAA;AAAA,EAErC,+BAA+B;AAAA;AAAA;AAAA,EAE/B,oCAAoC;AAAA;AAAA;AAAA,EAEpC,oCAAoC;AAAA;AAAA;AAAA,EAEpC,yCAAyC;AAAA;AAAA;AAAA,EAEzC,mCAAmC;AAAA;AAAA;AAAA,EAEnC,qCAAqC;AAAA;AAAA;AAAA,EAErC,mCAAmC;AAAA;AAAA;AAAA,EAEnC,2CAA2C;AAAA;AAAA;AAAA,EAE3C,uCAAuC;AAAA;AAAA;AAAA,EAGvC,oDAAoD;AAAA;AACtD,CAAC;;"}
|
|
@@ -24,8 +24,6 @@ var sanity = require("sanity"), comments = sanity.removeUndefinedLocaleResources
|
|
|
24
24
|
"compose.send-comment-tooltip": "Odeslat koment\xE1\u0159",
|
|
25
25
|
/** The inspector text when error copying link */
|
|
26
26
|
"copy-link-error-message": "Nelze zkop\xEDrovat odkaz do schr\xE1nky",
|
|
27
|
-
/** The inspector successfully copied link text */
|
|
28
|
-
"copy-link-success-message": "Odkaz zkop\xEDrov\xE1n do schr\xE1nky",
|
|
29
27
|
/** The delete dialog body for a comment */
|
|
30
28
|
"delete-comment.body": "Po smaz\xE1n\xED nelze koment\xE1\u0159 obnovit.",
|
|
31
29
|
/** The delete dialog confirm button text for a comment */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"comments.cjs","sources":["../../src/comments.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** The close comments button text */\n 'close-pane-button-text': 'Zavřít komentáře',\n\n /** The aria label for the close comments button */\n 'close-pane-button-text-aria-label': 'Zavřít komentáře',\n\n /** When composing a comment, the placeholder text shown when adding a comment to a field with no current comments */\n 'compose.add-comment-input-placeholder': 'Přidat komentář k <strong>{{field}}</strong>',\n /** When composing a comment, the placeholder text shown when adding a comment to a field with no current comments and the mode is upsell */\n 'compose.add-comment-input-placeholder-upsell': 'Vylepšete pro přidání komentáře',\n /** When composing a comment, the placeholder text shown when the input is empty */\n 'compose.create-comment-placeholder': 'Vytvořit nový komentář',\n /** When composing a comment, the aria label for the button to mention a user */\n 'compose.mention-user-aria-label': 'Zmínit uživatele',\n /** When composing a comment, the tooltip text for the button to mention a user */\n 'compose.mention-user-tooltip': 'Zmínit uživatele',\n /** When composing a reply, the placeholder text shown when the input is empty */\n 'compose.reply-placeholder': 'Odpovědět',\n /** When composing a reply, the placeholder text shown when the input is empty and the mode is upsell */\n 'compose.reply-placeholder-upsell': 'Vylepšete pro odpověď',\n /** When composing a comment, the aria label for the button to send a comment */\n 'compose.send-comment-aria-label': 'Odeslat komentář',\n /** When composing a comment, the tooltip text for the button to send a comment */\n 'compose.send-comment-tooltip': 'Odeslat komentář',\n\n /** The inspector text when error copying link */\n 'copy-link-error-message': 'Nelze zkopírovat odkaz do schránky',\n\n /** The inspector successfully copied link text */\n 'copy-link-success-message': 'Odkaz zkopírován do schránky',\n\n /** The delete dialog body for a comment */\n 'delete-comment.body': 'Po smazání nelze komentář obnovit.',\n /** The delete dialog confirm button text for a comment */\n 'delete-comment.confirm': 'Smazat komentář',\n /** The delete dialog title for a comment */\n 'delete-comment.title': 'Smazat tento komentář?',\n\n /** The delete dialog error */\n 'delete-dialog.error': 'Při mazání komentáře došlo k chybě. Zkuste to prosím znovu.',\n\n /** The delete dialog body for a thread */\n 'delete-thread.body': 'Tento komentář a jeho odpovědi budou smazány a po smazání nelze obnovit.',\n /** The delete dialog conform button text for a thread */\n 'delete-thread.confirm': 'Smazat vlákno',\n /** The delete dialog title for a thread */\n 'delete-thread.title': 'Smazat toto vlákno komentářů?',\n\n /** The button text for confirming discard */\n 'discard.button-confirm': 'Zahodit',\n /** The header for discard comment dialog */\n 'discard.header': 'Zahodit komentář?',\n /** The text for discard comment dialog */\n 'discard.text': 'Chcete zahodit komentář?',\n\n /** Sharing feedback on the comments feature: The link title */\n 'feature-feedback.link': 'Sdílejte svůj názor',\n /** Sharing feedback on the comments feature: The form title */\n 'feature-feedback.title': 'Pomozte zlepšit ',\n\n /** The name of the comments feature, for use in header. Capitalized, eg \"Comments\". */\n 'feature-name': 'Comments',\n\n /** Aria label for button above fields to add a comment, when the field currently do not have any comments */\n 'field-button.aria-label-add': 'Přidat komentář',\n /** Aria label for button above fields that opens the comments for this field, when there are existing comments */\n 'field-button.aria-label-open': 'Otevřít komentáře',\n /** Text shown in popover when hovering the button above fields that opens the comments panel, when there is a single comment present */\n 'field-button.content_one': 'Zobrazit komentář',\n /** Text shown in popover when hovering the button above fields that opens the comments panel, when there are more than one comment present */\n 'field-button.content_other': 'Zobrazit komentáře',\n /** Text shown in popover when hovering the button above fields to add a comment, when the field currently do not have any comments */\n 'field-button.title': 'Přidat komentář',\n\n /* The text shown in the inline comment button when the button is disabled due to overlap */\n 'inline-add-comment-button.disabled-overlap-title': 'Komentáře se nemohou překrývat',\n /** The text shown in the inline comment button */\n 'inline-add-comment-button.title': 'Přidat komentář',\n\n /** Aria label for the breadcrumb button showing the field path. `{{field}}` is the last (most specific) field. */\n 'list-item.breadcrumb-button-go-to-field-aria-label': 'Přejít na pole {{field}}',\n /** The button tooltip content for the add reaction button */\n 'list-item.context-menu-add-reaction': 'Přidat reakci',\n /** The button tooltip aria label for adding a reaction */\n 'list-item.context-menu-add-reaction-aria-label': 'Přidat reakci',\n /** The button tooltip content for the add reaction button and mode is upsell */\n 'list-item.context-menu-add-reaction-upsell': 'Upgradujte pro přidání reakce',\n /** The action menu item for copying a comment link */\n 'list-item.copy-link': 'Kopírovat odkaz na komentář',\n /** The action menu item for deleting a comment */\n 'list-item.delete-comment': 'Smazat komentář',\n /** The action menu item for editing a comment */\n 'list-item.edit-comment': 'Upravit komentář',\n /** The action menu item for editing a comment and the mode is upsell */\n 'list-item.edit-comment-upsell': 'Upgradujte pro úpravu komentáře',\n /** Aria label for the button that takes you to the field, which wraps a thread/comment */\n 'list-item.go-to-field-button.aria-label': 'Přejít na pole',\n /**\n * The text shown below the author and timestamp of a comment including a link back to the context in which the comment was made.\n * Consists of a document title wrapped in a link, and a word or phrase to indicate that the link refers to a location:\n * eg \"on Home\", \"on Coffee Machine | Products\", \"on Pricing – Sanity\"\n */\n 'list-item.layout-context': 'na <IntentLink>{{title}}</IntentLink>',\n /** The marker to indicate that a comment has been edited in brackets */\n 'list-item.layout-edited': 'upraveno',\n /** The error text when sending a comment has failed */\n 'list-item.layout-failed-sent': 'Nepodařilo se odeslat.',\n /** The loading message when posting a comment is in progress */\n 'list-item.layout-posting': 'Odesílání...',\n /** The text for retrying posting a comment */\n 'list-item.layout-retry': 'Zkusit znovu',\n /** The text shown when the value a comment references has been deleted */\n 'list-item.missing-referenced-value-tooltip-content': 'Komentovaný text byl smazán',\n /** The aria label for the comments menu button to open the actions menu */\n 'list-item.open-menu-aria-label': 'Otevřít menu akcí komentáře',\n /** The button text to re-open a resolved comment */\n 'list-item.re-open-resolved': 'Znovu otevřít',\n /** The button aria label to re-open a comment that is resolved */\n 'list-item.re-open-resolved-aria-label': 'Znovu otevřít',\n /** The button aria label to mark a comment as resolved */\n 'list-item.resolved-tooltip-aria-label': 'Označit komentář jako vyřešený',\n /** The button text to mark a comment as resolved */\n 'list-item.resolved-tooltip-content': 'Označit jako vyřešené',\n\n /** The empty state text for open comments */\n 'list-status.empty-state-open-text': 'Zde budou zobrazeny otevřené komentáře k tomuto dokumentu.',\n /** The empty state title for open comments */\n 'list-status.empty-state-open-title': 'Zatím žádné otevřené komentáře',\n /** The empty state text for resolved comments */\n 'list-status.empty-state-resolved-text': 'Vyřešené komentáře k tomuto dokumentu se zobrazí zde.',\n /** The empty state title for resolved comments */\n 'list-status.empty-state-resolved-title': 'Zatím žádné vyřešené komentáře',\n /** The list status message for error */\n 'list-status.error': 'Něco se pokazilo',\n /** The list status message for loading status */\n 'list-status.loading': 'Načítání komentářů',\n\n /** Text shown when no users can be found to mention */\n 'mentions.no-users-found': 'Nenalezeni žádní uživatelé',\n /** Label/badge shown for users that are not authorized to see the document, and thus cannot be mentioned */\n 'mentions.unauthorized-user': 'Neautorizovaný',\n /** Aria label for the command list for users to mention */\n 'mentions.user-list-aria-label': 'Seznam uživatelů k zobrazení',\n\n /** The comments onboarding popover text */\n 'onboarding.body':\n 'K jakémukoli poli v dokumentu můžete přidat komentáře. Zobrazí se zde, seskupené podle pole.',\n /** The comments onboarding dismiss text */\n 'onboarding.dismiss': 'Rozumím',\n /** The comments onboarding popover header text */\n 'onboarding.header': 'Pole dokumentů nyní mají komentáře',\n\n /** Tooltip for the button to add a reaction to a comment */\n 'reactions.add-reaction-tooltip': 'Přidat reakci',\n /** Aria label for the individual reactions you can choose from when reacting to a comment */\n 'reactions.react-with-aria-label': 'Reagovat s {{reactionName}}',\n /** When a users' name cannot be resolved, fall back to this name */\n 'reactions.user-list.unknown-user-fallback-name': 'Neznámý uživatel',\n /**\n * When showing list of users who have reacted, replaces your own name with \"you\", eg\n * \"Donna, you, James, and Tyler reacted with 👍\". A different key (`_leading` suffix)\n * is used when you are the first to react, eg \"You, Donna and Tyler reacted with 👍\".\n * Use `{{name}}` if you want to instead use the current users' actual name.\n */\n 'reactions.user-list.you': 'vy',\n /**\n * When showing list of users who have reacted, replaces your own name with \"You\", eg\n * \"You, Donna, James, and Tyler reacted with 👍\". A different key (`_leading` suffix)\n * is used when you are not the first to react, eg \"Donna, you, James and Tyler reacted with 👍\".\n * Use `{{name}}` if you want to instead use the current users' actual name.\n */\n 'reactions.user-list.you_leading': 'Vy',\n /**\n * The text shown for the tooltip that appears when hovering over the reaction count, eg\n * \"Donna, James, and Tyler Reacted with 👍\". Three components are available for use:\n * - `<UserList/>` - the list of names of users who have reacted, using the locales list format\n * - `<Text>` - should be wrapped around the text describing the action (\"reacted with\")\n * - `<ReactionName/>` - the name of the reaction emoji, eg \":heavy_plus_sign:\"\n */\n 'reactions.users-reacted-with-reaction': '<UserList/> <Text>reagovali s</Text> <ReactionName/>',\n\n /** Status filter: The short title describing filtering on open (non-resolved) comments */\n 'status-filter.status-open': 'Otevřené',\n /** Status filter: The full text for describing filtering on open (non-resolved) comments */\n 'status-filter.status-open-full': 'Otevřené komentáře',\n /** Status filter: The short title describing filtering on resolved comments */\n 'status-filter.status-resolved': 'Vyřešené',\n /** Status filter: The full text for describing filtering on resolved comments */\n 'status-filter.status-resolved-full': 'Vyřešené komentáře',\n /** Status filter: The full text for describing filtering on resolved comments and is upsell mode */\n 'status-filter.status-resolved-full-upsell': 'Upgradujte pro zobrazení vyřešených komentářů',\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":";gCAEA,WAAeA,sCAA+B;AAAA;AAAA,EAE5C,0BAA0B;AAAA;AAAA,EAG1B,qCAAqC;AAAA;AAAA,EAGrC,yCAAyC;AAAA;AAAA,EAEzC,gDAAgD;AAAA;AAAA,EAEhD,sCAAsC;AAAA;AAAA,EAEtC,mCAAmC;AAAA;AAAA,EAEnC,gCAAgC;AAAA;AAAA,EAEhC,6BAA6B;AAAA;AAAA,EAE7B,oCAAoC;AAAA;AAAA,EAEpC,mCAAmC;AAAA;AAAA,EAEnC,gCAAgC;AAAA;AAAA,EAGhC,2BAA2B;AAAA;AAAA,EAG3B,6BAA6B;AAAA;AAAA,EAG7B,uBAAuB;AAAA;AAAA,EAEvB,0BAA0B;AAAA;AAAA,EAE1B,wBAAwB;AAAA;AAAA,EAGxB,uBAAuB;AAAA;AAAA,EAGvB,sBAAsB;AAAA;AAAA,EAEtB,yBAAyB;AAAA;AAAA,EAEzB,uBAAuB;AAAA;AAAA,EAGvB,0BAA0B;AAAA;AAAA,EAE1B,kBAAkB;AAAA;AAAA,EAElB,gBAAgB;AAAA;AAAA,EAGhB,yBAAyB;AAAA;AAAA,EAEzB,0BAA0B;AAAA;AAAA,EAG1B,gBAAgB;AAAA;AAAA,EAGhB,+BAA+B;AAAA;AAAA,EAE/B,gCAAgC;AAAA;AAAA,EAEhC,4BAA4B;AAAA;AAAA,EAE5B,8BAA8B;AAAA;AAAA,EAE9B,sBAAsB;AAAA;AAAA,EAGtB,oDAAoD;AAAA;AAAA,EAEpD,mCAAmC;AAAA;AAAA,EAGnC,sDAAsD;AAAA;AAAA,EAEtD,uCAAuC;AAAA;AAAA,EAEvC,kDAAkD;AAAA;AAAA,EAElD,8CAA8C;AAAA;AAAA,EAE9C,uBAAuB;AAAA;AAAA,EAEvB,4BAA4B;AAAA;AAAA,EAE5B,0BAA0B;AAAA;AAAA,EAE1B,iCAAiC;AAAA;AAAA,EAEjC,2CAA2C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAM3C,4BAA4B;AAAA;AAAA,EAE5B,2BAA2B;AAAA;AAAA,EAE3B,gCAAgC;AAAA;AAAA,EAEhC,4BAA4B;AAAA;AAAA,EAE5B,0BAA0B;AAAA;AAAA,EAE1B,sDAAsD;AAAA;AAAA,EAEtD,kCAAkC;AAAA;AAAA,EAElC,8BAA8B;AAAA;AAAA,EAE9B,yCAAyC;AAAA;AAAA,EAEzC,yCAAyC;AAAA;AAAA,EAEzC,sCAAsC;AAAA;AAAA,EAGtC,qCAAqC;AAAA;AAAA,EAErC,sCAAsC;AAAA;AAAA,EAEtC,yCAAyC;AAAA;AAAA,EAEzC,0CAA0C;AAAA;AAAA,EAE1C,qBAAqB;AAAA;AAAA,EAErB,uBAAuB;AAAA;AAAA,EAGvB,2BAA2B;AAAA;AAAA,EAE3B,8BAA8B;AAAA;AAAA,EAE9B,iCAAiC;AAAA;AAAA,EAGjC,mBACE;AAAA;AAAA,EAEF,sBAAsB;AAAA;AAAA,EAEtB,qBAAqB;AAAA;AAAA,EAGrB,kCAAkC;AAAA;AAAA,EAElC,mCAAmC;AAAA;AAAA,EAEnC,kDAAkD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOlD,2BAA2B;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAO3B,mCAAmC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQnC,yCAAyC;AAAA;AAAA,EAGzC,6BAA6B;AAAA;AAAA,EAE7B,kCAAkC;AAAA;AAAA,EAElC,iCAAiC;AAAA;AAAA,EAEjC,sCAAsC;AAAA;AAAA,EAEtC,6CAA6C;AAC/C,CAAC;;"}
|
|
1
|
+
{"version":3,"file":"comments.cjs","sources":["../../src/comments.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** The close comments button text */\n 'close-pane-button-text': 'Zavřít komentáře',\n\n /** The aria label for the close comments button */\n 'close-pane-button-text-aria-label': 'Zavřít komentáře',\n\n /** When composing a comment, the placeholder text shown when adding a comment to a field with no current comments */\n 'compose.add-comment-input-placeholder': 'Přidat komentář k <strong>{{field}}</strong>',\n /** When composing a comment, the placeholder text shown when adding a comment to a field with no current comments and the mode is upsell */\n 'compose.add-comment-input-placeholder-upsell': 'Vylepšete pro přidání komentáře',\n /** When composing a comment, the placeholder text shown when the input is empty */\n 'compose.create-comment-placeholder': 'Vytvořit nový komentář',\n /** When composing a comment, the aria label for the button to mention a user */\n 'compose.mention-user-aria-label': 'Zmínit uživatele',\n /** When composing a comment, the tooltip text for the button to mention a user */\n 'compose.mention-user-tooltip': 'Zmínit uživatele',\n /** When composing a reply, the placeholder text shown when the input is empty */\n 'compose.reply-placeholder': 'Odpovědět',\n /** When composing a reply, the placeholder text shown when the input is empty and the mode is upsell */\n 'compose.reply-placeholder-upsell': 'Vylepšete pro odpověď',\n /** When composing a comment, the aria label for the button to send a comment */\n 'compose.send-comment-aria-label': 'Odeslat komentář',\n /** When composing a comment, the tooltip text for the button to send a comment */\n 'compose.send-comment-tooltip': 'Odeslat komentář',\n\n /** The inspector text when error copying link */\n 'copy-link-error-message': 'Nelze zkopírovat odkaz do schránky',\n\n /** The delete dialog body for a comment */\n 'delete-comment.body': 'Po smazání nelze komentář obnovit.',\n /** The delete dialog confirm button text for a comment */\n 'delete-comment.confirm': 'Smazat komentář',\n /** The delete dialog title for a comment */\n 'delete-comment.title': 'Smazat tento komentář?',\n\n /** The delete dialog error */\n 'delete-dialog.error': 'Při mazání komentáře došlo k chybě. Zkuste to prosím znovu.',\n\n /** The delete dialog body for a thread */\n 'delete-thread.body': 'Tento komentář a jeho odpovědi budou smazány a po smazání nelze obnovit.',\n /** The delete dialog conform button text for a thread */\n 'delete-thread.confirm': 'Smazat vlákno',\n /** The delete dialog title for a thread */\n 'delete-thread.title': 'Smazat toto vlákno komentářů?',\n\n /** The button text for confirming discard */\n 'discard.button-confirm': 'Zahodit',\n /** The header for discard comment dialog */\n 'discard.header': 'Zahodit komentář?',\n /** The text for discard comment dialog */\n 'discard.text': 'Chcete zahodit komentář?',\n\n /** Sharing feedback on the comments feature: The link title */\n 'feature-feedback.link': 'Sdílejte svůj názor',\n /** Sharing feedback on the comments feature: The form title */\n 'feature-feedback.title': 'Pomozte zlepšit ',\n\n /** The name of the comments feature, for use in header. Capitalized, eg \"Comments\". */\n 'feature-name': 'Comments',\n\n /** Aria label for button above fields to add a comment, when the field currently do not have any comments */\n 'field-button.aria-label-add': 'Přidat komentář',\n /** Aria label for button above fields that opens the comments for this field, when there are existing comments */\n 'field-button.aria-label-open': 'Otevřít komentáře',\n /** Text shown in popover when hovering the button above fields that opens the comments panel, when there is a single comment present */\n 'field-button.content_one': 'Zobrazit komentář',\n /** Text shown in popover when hovering the button above fields that opens the comments panel, when there are more than one comment present */\n 'field-button.content_other': 'Zobrazit komentáře',\n /** Text shown in popover when hovering the button above fields to add a comment, when the field currently do not have any comments */\n 'field-button.title': 'Přidat komentář',\n\n /* The text shown in the inline comment button when the button is disabled due to overlap */\n 'inline-add-comment-button.disabled-overlap-title': 'Komentáře se nemohou překrývat',\n /** The text shown in the inline comment button */\n 'inline-add-comment-button.title': 'Přidat komentář',\n\n /** Aria label for the breadcrumb button showing the field path. `{{field}}` is the last (most specific) field. */\n 'list-item.breadcrumb-button-go-to-field-aria-label': 'Přejít na pole {{field}}',\n /** The button tooltip content for the add reaction button */\n 'list-item.context-menu-add-reaction': 'Přidat reakci',\n /** The button tooltip aria label for adding a reaction */\n 'list-item.context-menu-add-reaction-aria-label': 'Přidat reakci',\n /** The button tooltip content for the add reaction button and mode is upsell */\n 'list-item.context-menu-add-reaction-upsell': 'Upgradujte pro přidání reakce',\n /** The action menu item for copying a comment link */\n 'list-item.copy-link': 'Kopírovat odkaz na komentář',\n /** The action menu item for deleting a comment */\n 'list-item.delete-comment': 'Smazat komentář',\n /** The action menu item for editing a comment */\n 'list-item.edit-comment': 'Upravit komentář',\n /** The action menu item for editing a comment and the mode is upsell */\n 'list-item.edit-comment-upsell': 'Upgradujte pro úpravu komentáře',\n /** Aria label for the button that takes you to the field, which wraps a thread/comment */\n 'list-item.go-to-field-button.aria-label': 'Přejít na pole',\n /**\n * The text shown below the author and timestamp of a comment including a link back to the context in which the comment was made.\n * Consists of a document title wrapped in a link, and a word or phrase to indicate that the link refers to a location:\n * eg \"on Home\", \"on Coffee Machine | Products\", \"on Pricing – Sanity\"\n */\n 'list-item.layout-context': 'na <IntentLink>{{title}}</IntentLink>',\n /** The marker to indicate that a comment has been edited in brackets */\n 'list-item.layout-edited': 'upraveno',\n /** The error text when sending a comment has failed */\n 'list-item.layout-failed-sent': 'Nepodařilo se odeslat.',\n /** The loading message when posting a comment is in progress */\n 'list-item.layout-posting': 'Odesílání...',\n /** The text for retrying posting a comment */\n 'list-item.layout-retry': 'Zkusit znovu',\n /** The text shown when the value a comment references has been deleted */\n 'list-item.missing-referenced-value-tooltip-content': 'Komentovaný text byl smazán',\n /** The aria label for the comments menu button to open the actions menu */\n 'list-item.open-menu-aria-label': 'Otevřít menu akcí komentáře',\n /** The button text to re-open a resolved comment */\n 'list-item.re-open-resolved': 'Znovu otevřít',\n /** The button aria label to re-open a comment that is resolved */\n 'list-item.re-open-resolved-aria-label': 'Znovu otevřít',\n /** The button aria label to mark a comment as resolved */\n 'list-item.resolved-tooltip-aria-label': 'Označit komentář jako vyřešený',\n /** The button text to mark a comment as resolved */\n 'list-item.resolved-tooltip-content': 'Označit jako vyřešené',\n\n /** The empty state text for open comments */\n 'list-status.empty-state-open-text': 'Zde budou zobrazeny otevřené komentáře k tomuto dokumentu.',\n /** The empty state title for open comments */\n 'list-status.empty-state-open-title': 'Zatím žádné otevřené komentáře',\n /** The empty state text for resolved comments */\n 'list-status.empty-state-resolved-text': 'Vyřešené komentáře k tomuto dokumentu se zobrazí zde.',\n /** The empty state title for resolved comments */\n 'list-status.empty-state-resolved-title': 'Zatím žádné vyřešené komentáře',\n /** The list status message for error */\n 'list-status.error': 'Něco se pokazilo',\n /** The list status message for loading status */\n 'list-status.loading': 'Načítání komentářů',\n\n /** Text shown when no users can be found to mention */\n 'mentions.no-users-found': 'Nenalezeni žádní uživatelé',\n /** Label/badge shown for users that are not authorized to see the document, and thus cannot be mentioned */\n 'mentions.unauthorized-user': 'Neautorizovaný',\n /** Aria label for the command list for users to mention */\n 'mentions.user-list-aria-label': 'Seznam uživatelů k zobrazení',\n\n /** The comments onboarding popover text */\n 'onboarding.body':\n 'K jakémukoli poli v dokumentu můžete přidat komentáře. Zobrazí se zde, seskupené podle pole.',\n /** The comments onboarding dismiss text */\n 'onboarding.dismiss': 'Rozumím',\n /** The comments onboarding popover header text */\n 'onboarding.header': 'Pole dokumentů nyní mají komentáře',\n\n /** Tooltip for the button to add a reaction to a comment */\n 'reactions.add-reaction-tooltip': 'Přidat reakci',\n /** Aria label for the individual reactions you can choose from when reacting to a comment */\n 'reactions.react-with-aria-label': 'Reagovat s {{reactionName}}',\n /** When a users' name cannot be resolved, fall back to this name */\n 'reactions.user-list.unknown-user-fallback-name': 'Neznámý uživatel',\n /**\n * When showing list of users who have reacted, replaces your own name with \"you\", eg\n * \"Donna, you, James, and Tyler reacted with 👍\". A different key (`_leading` suffix)\n * is used when you are the first to react, eg \"You, Donna and Tyler reacted with 👍\".\n * Use `{{name}}` if you want to instead use the current users' actual name.\n */\n 'reactions.user-list.you': 'vy',\n /**\n * When showing list of users who have reacted, replaces your own name with \"You\", eg\n * \"You, Donna, James, and Tyler reacted with 👍\". A different key (`_leading` suffix)\n * is used when you are not the first to react, eg \"Donna, you, James and Tyler reacted with 👍\".\n * Use `{{name}}` if you want to instead use the current users' actual name.\n */\n 'reactions.user-list.you_leading': 'Vy',\n /**\n * The text shown for the tooltip that appears when hovering over the reaction count, eg\n * \"Donna, James, and Tyler Reacted with 👍\". Three components are available for use:\n * - `<UserList/>` - the list of names of users who have reacted, using the locales list format\n * - `<Text>` - should be wrapped around the text describing the action (\"reacted with\")\n * - `<ReactionName/>` - the name of the reaction emoji, eg \":heavy_plus_sign:\"\n */\n 'reactions.users-reacted-with-reaction': '<UserList/> <Text>reagovali s</Text> <ReactionName/>',\n\n /** Status filter: The short title describing filtering on open (non-resolved) comments */\n 'status-filter.status-open': 'Otevřené',\n /** Status filter: The full text for describing filtering on open (non-resolved) comments */\n 'status-filter.status-open-full': 'Otevřené komentáře',\n /** Status filter: The short title describing filtering on resolved comments */\n 'status-filter.status-resolved': 'Vyřešené',\n /** Status filter: The full text for describing filtering on resolved comments */\n 'status-filter.status-resolved-full': 'Vyřešené komentáře',\n /** Status filter: The full text for describing filtering on resolved comments and is upsell mode */\n 'status-filter.status-resolved-full-upsell': 'Upgradujte pro zobrazení vyřešených komentářů',\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":";gCAEA,WAAeA,sCAA+B;AAAA;AAAA,EAE5C,0BAA0B;AAAA;AAAA,EAG1B,qCAAqC;AAAA;AAAA,EAGrC,yCAAyC;AAAA;AAAA,EAEzC,gDAAgD;AAAA;AAAA,EAEhD,sCAAsC;AAAA;AAAA,EAEtC,mCAAmC;AAAA;AAAA,EAEnC,gCAAgC;AAAA;AAAA,EAEhC,6BAA6B;AAAA;AAAA,EAE7B,oCAAoC;AAAA;AAAA,EAEpC,mCAAmC;AAAA;AAAA,EAEnC,gCAAgC;AAAA;AAAA,EAGhC,2BAA2B;AAAA;AAAA,EAG3B,uBAAuB;AAAA;AAAA,EAEvB,0BAA0B;AAAA;AAAA,EAE1B,wBAAwB;AAAA;AAAA,EAGxB,uBAAuB;AAAA;AAAA,EAGvB,sBAAsB;AAAA;AAAA,EAEtB,yBAAyB;AAAA;AAAA,EAEzB,uBAAuB;AAAA;AAAA,EAGvB,0BAA0B;AAAA;AAAA,EAE1B,kBAAkB;AAAA;AAAA,EAElB,gBAAgB;AAAA;AAAA,EAGhB,yBAAyB;AAAA;AAAA,EAEzB,0BAA0B;AAAA;AAAA,EAG1B,gBAAgB;AAAA;AAAA,EAGhB,+BAA+B;AAAA;AAAA,EAE/B,gCAAgC;AAAA;AAAA,EAEhC,4BAA4B;AAAA;AAAA,EAE5B,8BAA8B;AAAA;AAAA,EAE9B,sBAAsB;AAAA;AAAA,EAGtB,oDAAoD;AAAA;AAAA,EAEpD,mCAAmC;AAAA;AAAA,EAGnC,sDAAsD;AAAA;AAAA,EAEtD,uCAAuC;AAAA;AAAA,EAEvC,kDAAkD;AAAA;AAAA,EAElD,8CAA8C;AAAA;AAAA,EAE9C,uBAAuB;AAAA;AAAA,EAEvB,4BAA4B;AAAA;AAAA,EAE5B,0BAA0B;AAAA;AAAA,EAE1B,iCAAiC;AAAA;AAAA,EAEjC,2CAA2C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAM3C,4BAA4B;AAAA;AAAA,EAE5B,2BAA2B;AAAA;AAAA,EAE3B,gCAAgC;AAAA;AAAA,EAEhC,4BAA4B;AAAA;AAAA,EAE5B,0BAA0B;AAAA;AAAA,EAE1B,sDAAsD;AAAA;AAAA,EAEtD,kCAAkC;AAAA;AAAA,EAElC,8BAA8B;AAAA;AAAA,EAE9B,yCAAyC;AAAA;AAAA,EAEzC,yCAAyC;AAAA;AAAA,EAEzC,sCAAsC;AAAA;AAAA,EAGtC,qCAAqC;AAAA;AAAA,EAErC,sCAAsC;AAAA;AAAA,EAEtC,yCAAyC;AAAA;AAAA,EAEzC,0CAA0C;AAAA;AAAA,EAE1C,qBAAqB;AAAA;AAAA,EAErB,uBAAuB;AAAA;AAAA,EAGvB,2BAA2B;AAAA;AAAA,EAE3B,8BAA8B;AAAA;AAAA,EAE9B,iCAAiC;AAAA;AAAA,EAGjC,mBACE;AAAA;AAAA,EAEF,sBAAsB;AAAA;AAAA,EAEtB,qBAAqB;AAAA;AAAA,EAGrB,kCAAkC;AAAA;AAAA,EAElC,mCAAmC;AAAA;AAAA,EAEnC,kDAAkD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOlD,2BAA2B;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAO3B,mCAAmC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQnC,yCAAyC;AAAA;AAAA,EAGzC,6BAA6B;AAAA;AAAA,EAE7B,kCAAkC;AAAA;AAAA,EAElC,iCAAiC;AAAA;AAAA,EAEjC,sCAAsC;AAAA;AAAA,EAEtC,6CAA6C;AAC/C,CAAC;;"}
|
|
@@ -10,12 +10,6 @@ var sanity = require("sanity"), copyPaste = sanity.removeUndefinedLocaleResource
|
|
|
10
10
|
"copy-paste.field-action-paste-button.field.title": "Vlo\u017Eit pole",
|
|
11
11
|
/** The error message that is shown when the clipboard is not supported */
|
|
12
12
|
"copy-paste.on-copy.validation.clipboard-not-supported.title": "V\xE1\u0161 prohl\xED\u017Ee\u010D nepodporuje tuto akci",
|
|
13
|
-
/** The success message that is shown when a document is copied */
|
|
14
|
-
"copy-paste.on-copy.validation.copy-document-success.title": 'Dokument "{{fieldNames}}" zkop\xEDrov\xE1n',
|
|
15
|
-
/** The success message that is shown when a field is copied */
|
|
16
|
-
"copy-paste.on-copy.validation.copy-field_one-success.title": 'Pole "{{fieldName}}" zkop\xEDrov\xE1no',
|
|
17
|
-
/** The success message that is shown when a array item is copied */
|
|
18
|
-
"copy-paste.on-copy.validation.copy-item_one-success.title": 'Polo\u017Eka "{{typeName}}" zkop\xEDrov\xE1na',
|
|
19
13
|
/** The error message that is shown when there is no value to copy */
|
|
20
14
|
"copy-paste.on-copy.validation.no-value.title": "Pr\xE1zdn\xE1 hodnota, nic ke kop\xEDrov\xE1n\xED",
|
|
21
15
|
/** --- On copy --- */
|
|
@@ -29,10 +23,6 @@ var sanity = require("sanity"), copyPaste = sanity.removeUndefinedLocaleResource
|
|
|
29
23
|
"copy-paste.on-paste.validation.clipboard-empty.title": "Nen\xED co vlo\u017Eit",
|
|
30
24
|
/** The validation message that is shown when the clipboard item is invalid */
|
|
31
25
|
"copy-paste.on-paste.validation.clipboard-invalid.title": "Neplatn\xE1 polo\u017Eka schr\xE1nky",
|
|
32
|
-
/** The success message that is shown when a document is pasted */
|
|
33
|
-
"copy-paste.on-paste.validation.document-paste-success.title": 'Dokument "{{fieldNames}}" aktualizov\xE1n',
|
|
34
|
-
/** The success message that is shown when a field is pasted */
|
|
35
|
-
"copy-paste.on-paste.validation.field_one-paste-success.title": 'Pole "{{fieldName}}" aktualizov\xE1no',
|
|
36
26
|
/** The validation message that is shown when image files are incompatible */
|
|
37
27
|
"copy-paste.on-paste.validation.image-file-incompatible.description": '"{{sourceSchemaType}}" nen\xED povoleno v "{{targetSchemaType}}"',
|
|
38
28
|
/** The error message that is shown when the MIME type is not accepted */
|
|
@@ -1 +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': 'Kopírovat dokument',\n /** Text on the field action button to copy a field */\n 'copy-paste.field-action-copy-button.field.title': 'Kopírovat pole',\n /** Text on the field action button to paste a document */\n 'copy-paste.field-action-paste-button.document.title': 'Vložit dokument',\n /** Text on the field action button to paste a field */\n 'copy-paste.field-action-paste-button.field.title': 'Vložit pole',\n /** The error message that is shown when the clipboard is not supported */\n 'copy-paste.on-copy.validation.clipboard-not-supported.title':\n 'Váš prohlížeč nepodporuje tuto akci',\n /** The
|
|
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': 'Kopírovat dokument',\n /** Text on the field action button to copy a field */\n 'copy-paste.field-action-copy-button.field.title': 'Kopírovat pole',\n /** Text on the field action button to paste a document */\n 'copy-paste.field-action-paste-button.document.title': 'Vložit dokument',\n /** Text on the field action button to paste a field */\n 'copy-paste.field-action-paste-button.field.title': 'Vložit pole',\n /** The error message that is shown when the clipboard is not supported */\n 'copy-paste.on-copy.validation.clipboard-not-supported.title':\n 'Váš prohlížeč nepodporuje tuto akci',\n /** The error message that is shown when there is no value to copy */\n 'copy-paste.on-copy.validation.no-value.title': 'Prázdná hodnota, nic ke kopírování',\n /** --- On copy --- */\n /** The error message that is shown when schema types are incompatible */\n 'copy-paste.on-copy.validation.schema-type-incompatible.title':\n 'Nelze rozpoznat typ schématu pro cestu: {{path}}',\n /** The validation message that is shown when array types are incompatible */\n 'copy-paste.on-paste.validation.array-type-incompatible.description':\n 'Hodnota typu \"{{type}}\" není povolena v tomto poli pole',\n /** The validation message that is shown when array values are incompatible */\n 'copy-paste.on-paste.validation.array-value-incompatible.description':\n 'Hodnota typu \"{{type}}\" není povolena v tomto poli pole',\n /** The validation message that is shown when the clipboard is empty */\n 'copy-paste.on-paste.validation.clipboard-empty.title': 'Není co vložit',\n /** The validation message that is shown when the clipboard item is invalid */\n 'copy-paste.on-paste.validation.clipboard-invalid.title': 'Neplatná položka schránky',\n /** The validation message that is shown when image files are incompatible */\n 'copy-paste.on-paste.validation.image-file-incompatible.description':\n '\"{{sourceSchemaType}}\" není povoleno v \"{{targetSchemaType}}\"',\n /** The error message that is shown when the MIME type is not accepted */\n 'copy-paste.on-paste.validation.mime-type-incompatible.description':\n 'MIME typ \"{{mimeType}}\" není pro toto pole přijatelný',\n /** The error message that is shown when the MIME type validation fails */\n 'copy-paste.on-paste.validation.mime-type-validation-failed.description':\n 'Ověření MIME typu selhalo',\n /** The warning message that is shown when not all values can be pasted */\n 'copy-paste.on-paste.validation.partial-warning.title': 'Nepodařilo se vložit všechny hodnoty',\n /** The validation message that is shown when primitive types are incompatible */\n 'copy-paste.on-paste.validation.primitive-type-incompatible.description':\n 'Hodnota typu \"{{type}}\" není povolena v tomto poli',\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': 'Cíl je pouze pro čtení',\n /** The validation message that is shown when reference is incompatible with filter */\n 'copy-paste.on-paste.validation.reference-filter-incompatible.description':\n 'Reference není povolena v referenčním poli podle filtru',\n /** The validation message that is shown when reference types are incompatible */\n 'copy-paste.on-paste.validation.reference-type-incompatible.description':\n 'Reference typu \"{{sourceReferenceType}}\" nejsou povoleny v referenčním poli, které akceptuje typy \"{{targetReferenceTypes}}\"',\n /** The validation message that is shown when reference does not exist */\n 'copy-paste.on-paste.validation.reference-validation-failed.description':\n 'Odkazovaný dokument \"{{ref}}\" neexistuje',\n /** The validation message that is shown when the source and target schema types are incompatible */\n 'copy-paste.on-paste.validation.schema-type-incompatible.description':\n 'Zdrojové a cílové typy schémat nejsou kompatibilní',\n /** The validation message that is shown when schema types are incompatible */\n 'copy-paste.on-paste.validation.schema-type-incompatible.title':\n 'Nelze rozpoznat typ schématu pro cestu: {{path}}',\n /** The validation message that is shown when string values are incompatible */\n 'copy-paste.on-paste.validation.string-value-incompatible.description':\n 'Hodnota \"{{value}}\" není povolena v \"{{allowedStrings}}\"',\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":";gCAEA,YAAeA,sCAA+B;AAAA;AAAA,EAE5C,sDAAsD;AAAA;AAAA,EAEtD,mDAAmD;AAAA;AAAA,EAEnD,uDAAuD;AAAA;AAAA,EAEvD,oDAAoD;AAAA;AAAA,EAEpD,+DACE;AAAA;AAAA,EAEF,gDAAgD;AAAA;AAAA;AAAA,EAGhD,gEACE;AAAA;AAAA,EAEF,sEACE;AAAA;AAAA,EAEF,uEACE;AAAA;AAAA,EAEF,wDAAwD;AAAA;AAAA,EAExD,0DAA0D;AAAA;AAAA,EAE1D,sEACE;AAAA;AAAA,EAEF,qEACE;AAAA;AAAA,EAEF,0EACE;AAAA;AAAA,EAEF,wDAAwD;AAAA;AAAA,EAExD,0EACE;AAAA;AAAA;AAAA,EAGF,+DAA+D;AAAA;AAAA,EAE/D,4EACE;AAAA;AAAA,EAEF,0EACE;AAAA;AAAA,EAEF,0EACE;AAAA;AAAA,EAEF,uEACE;AAAA;AAAA,EAEF,iEACE;AAAA;AAAA,EAEF,wEACE;AACJ,CAAC;;"}
|
|
@@ -12,28 +12,8 @@ var sanity = require("sanity"), create = sanity.removeUndefinedLocaleResources({
|
|
|
12
12
|
"create-link-info.tooltip": "Zjistit v\xEDce",
|
|
13
13
|
/** Edit in Create button text */
|
|
14
14
|
"edit-in-create-button.text": "Editovat pomoc\xED Sanity Create",
|
|
15
|
-
/** Details for the "Linking in progress" dialog */
|
|
16
|
-
"linking-in-progress-dialog.details": "Jakmile bude propojen\xED dokon\u010Deno, va\u0161e \xFApravy se zde objev\xED v re\xE1ln\xE9m \u010Dase.",
|
|
17
|
-
/** Header of the "Linking in progress" dialog */
|
|
18
|
-
"linking-in-progress-dialog.header": "Propojen\xED se Sanity Create",
|
|
19
|
-
/** Lede text for the "Linking in progress" dialog */
|
|
20
|
-
"linking-in-progress-dialog.lede": "Vra\u0165te se zp\u011Bt do Sanity Create. V\xE1\u0161 dokument se automaticky synchronizuje (obvykle trv\xE1 n\u011Bkolik sekund).",
|
|
21
|
-
/** "Linking in progress" troubleshooting button title */
|
|
22
|
-
"linking-in-progress-dialog.troubleshooting.button.title": "Zpo\u017Ed\u011Bn\xED propojen\xED?",
|
|
23
|
-
/** "Linking in progress" troubleshooting content */
|
|
24
|
-
"linking-in-progress-dialog.troubleshooting.content": "Zkontrolujte, zda je okno Sanity Create st\xE1le otev\u0159en\xE9, nebo zda proces nen\xED zaseknut\xFD. Pokud probl\xE9my p\u0159etrv\xE1vaj\xED, zkuste obnovit Studio a zkuste to znovu.",
|
|
25
|
-
/** Subtitle of the "Start writing in Create" banner */
|
|
26
|
-
"start-in-create-banner.subtitle": "Voln\u011B form\xE1tovateln\xFD editor s podporou AI, kter\xFD se p\u0159\xEDmo synchronizuje s va\u0161imi dokumenty ve Studiu.",
|
|
27
|
-
/** Header of the "Start writing in Create" banner */
|
|
28
|
-
"start-in-create-banner.title": "Za\u010Dn\u011Bte pou\u017E\xEDvat Sanity Create",
|
|
29
|
-
/** Header badge of the "Start writing in Create" banner */
|
|
30
|
-
"start-in-create-banner.title-badge": "P\u0159edb\u011B\u017En\xFD p\u0159\xEDstup",
|
|
31
15
|
/** CTA in "Start writing in Create" dialog: Learn more */
|
|
32
16
|
"start-in-create-dialog.cta.learn-more": "Zjistit v\xEDce",
|
|
33
|
-
/** Toast error message when we dont have a resolved Sanity Create url*/
|
|
34
|
-
"start-in-create-dialog.error-toast.unresolved-url": "Nelze ur\u010Dit URL Sanity Create.",
|
|
35
|
-
/** "Start in Sanity Create" link button text */
|
|
36
|
-
"start-in-create-link.label": "Za\u010D\xEDt v Create",
|
|
37
17
|
/** Text for the document pane banner informing users that the document is linked to Sanity Create */
|
|
38
18
|
"studio-create-link-banner.text": "Tento dokument je propojen se Sanity Create",
|
|
39
19
|
/** Unlink document from Sanity Create button text */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create.cjs","sources":["../../src/create.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Text in badge above header in Create Link info popover */\n 'create-link-info-popover.eyebrow-badge': 'Předběžný přístup',\n /** Text above header in Create Link info popover */\n 'create-link-info-popover.eyebrow-title': 'Sanity Create',\n /** Header in Create Link info popover */\n 'create-link-info-popover.header': 'Autorství zaměřené na nápad',\n /** Informational text in Create Link info popover */\n 'create-link-info-popover.text':\n 'Pište přirozeně v editoru poháněném umělou inteligencí. Váš obsah se automaticky mapuje do polí Studia, jak píšete.',\n\n /** Tooltip for Create Link button */\n 'create-link-info.tooltip': 'Zjistit více',\n\n /** Edit in Create button text */\n 'edit-in-create-button.text': 'Editovat pomocí Sanity Create',\n\n /**
|
|
1
|
+
{"version":3,"file":"create.cjs","sources":["../../src/create.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Text in badge above header in Create Link info popover */\n 'create-link-info-popover.eyebrow-badge': 'Předběžný přístup',\n /** Text above header in Create Link info popover */\n 'create-link-info-popover.eyebrow-title': 'Sanity Create',\n /** Header in Create Link info popover */\n 'create-link-info-popover.header': 'Autorství zaměřené na nápad',\n /** Informational text in Create Link info popover */\n 'create-link-info-popover.text':\n 'Pište přirozeně v editoru poháněném umělou inteligencí. Váš obsah se automaticky mapuje do polí Studia, jak píšete.',\n\n /** Tooltip for Create Link button */\n 'create-link-info.tooltip': 'Zjistit více',\n\n /** Edit in Create button text */\n 'edit-in-create-button.text': 'Editovat pomocí Sanity Create',\n\n /** CTA in \"Start writing in Create\" dialog: Learn more */\n 'start-in-create-dialog.cta.learn-more': 'Zjistit více',\n\n /** Text for the document pane banner informing users that the document is linked to Sanity Create */\n 'studio-create-link-banner.text': 'Tento dokument je propojen se Sanity Create',\n\n /** Unlink document from Sanity Create button text */\n 'unlink-from-create-button.text': 'Odpojit',\n\n /** Unlink from Create dialog: Cancel button text */\n 'unlink-from-create-dialog.cancel.text': 'Zrušit',\n /** Unlink from Create dialog: Document title used if no other title can be determined */\n 'unlink-from-create-dialog.document.untitled.text': 'Bez názvu',\n /** Unlink from Create dialog – first informational paragraph */\n 'unlink-from-create-dialog.first-paragraph':\n 'Odpojujete „<strong>{{title}}</strong>“ od Sanity Create, aby bylo možné jej editovat zde.',\n /** Unlink from Create dialog header */\n 'unlink-from-create-dialog.header': 'Přepnout úpravy do Studia?',\n /** Unlink from Create dialog – second informational paragraph */\n 'unlink-from-create-dialog.second-paragraph':\n 'Váš obsah zůstane na obou místech. Jakékoli nové změny v Sanity Create přestanou být synchronizovány s tímto Studiem.',\n /** Unlink from Create dialog: Unlink button text */\n 'unlink-from-create-dialog.unlink.text': 'Odpojit nyní',\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":";gCAEA,SAAeA,sCAA+B;AAAA;AAAA,EAE5C,0CAA0C;AAAA;AAAA,EAE1C,0CAA0C;AAAA;AAAA,EAE1C,mCAAmC;AAAA;AAAA,EAEnC,iCACE;AAAA;AAAA,EAGF,4BAA4B;AAAA;AAAA,EAG5B,8BAA8B;AAAA;AAAA,EAG9B,yCAAyC;AAAA;AAAA,EAGzC,kCAAkC;AAAA;AAAA,EAGlC,kCAAkC;AAAA;AAAA,EAGlC,yCAAyC;AAAA;AAAA,EAEzC,oDAAoD;AAAA;AAAA,EAEpD,6CACE;AAAA;AAAA,EAEF,oCAAoC;AAAA;AAAA,EAEpC,8CACE;AAAA;AAAA,EAEF,yCAAyC;AAC3C,CAAC;;"}
|
|
@@ -10,6 +10,9 @@ var sanity = require("sanity"), structure = sanity.removeUndefinedLocaleResource
|
|
|
10
10
|
"action.delete.label": "Smazat",
|
|
11
11
|
/** Label for the "Delete" document action while the document is being deleted */
|
|
12
12
|
"action.delete.running.label": "Ma\u017Ee se\u2026",
|
|
13
|
+
/** Tooltip when action is disabled because the document is linked to Canvas */
|
|
14
|
+
"action.disabled-by-canvas.tooltip": void 0,
|
|
15
|
+
// 'Some document actions are disabled for documents linked to Canvas'
|
|
13
16
|
/** Message prompting the user to confirm discarding changes */
|
|
14
17
|
"action.discard-changes.confirm-dialog.confirm-discard-changes": "Jste si jisti, \u017Ee chcete zahodit v\u0161echny zm\u011Bny od posledn\xEDho zve\u0159ejn\u011Bn\xED?",
|
|
15
18
|
/** Tooltip when action is disabled because the document has no unpublished changes */
|
|
@@ -36,6 +39,8 @@ var sanity = require("sanity"), structure = sanity.removeUndefinedLocaleResource
|
|
|
36
39
|
"action.publish.disabled.not-ready": "Operace nen\xED p\u0159ipravena",
|
|
37
40
|
/** Label for action when there are pending changes.*/
|
|
38
41
|
"action.publish.draft.label": "Zve\u0159ejnit",
|
|
42
|
+
/** Label for the "Publish" document action */
|
|
43
|
+
"action.publish.label": "Publikovat",
|
|
39
44
|
/** Label for the "Publish" document action when the document has live edit enabled.*/
|
|
40
45
|
"action.publish.live-edit.label": "Zve\u0159ejnit",
|
|
41
46
|
/** Fallback tooltip for the "Publish" document action when publish is invoked for a document with live edit enabled.*/
|
|
@@ -68,6 +73,8 @@ var sanity = require("sanity"), structure = sanity.removeUndefinedLocaleResource
|
|
|
68
73
|
"action.unpublish.label": "Zru\u0161it publikaci",
|
|
69
74
|
/** Fallback tooltip for the Unpublish document action when publish is invoked for a document with live edit enabled.*/
|
|
70
75
|
"action.unpublish.live-edit.disabled": "Tento dokument m\xE1 povoleno \u017Eiv\xE9 \xFApravy a nem\u016F\u017Ee b\xFDt zru\u0161ena jeho publikace",
|
|
76
|
+
/** Description for the archived release banner, rendered when viewing the history of a version document from the publihed view */
|
|
77
|
+
"banners.archived-release.description": "Prohl\xED\u017E\xEDte dokument pouze pro \u010Dten\xED, kter\xFD byl archivov\xE1n jako sou\u010D\xE1st <VersionBadge>{{title}}</VersionBadge>. Nelze ho upravit",
|
|
71
78
|
/** The text for the restore button on the deleted document banner */
|
|
72
79
|
"banners.deleted-document-banner.restore-button.text": "Obnovit nejnov\u011Bj\u0161\xED verzi",
|
|
73
80
|
/** The text content for the deleted document banner */
|
|
@@ -92,6 +99,8 @@ var sanity = require("sanity"), structure = sanity.removeUndefinedLocaleResource
|
|
|
92
99
|
"banners.permission-check-banner.request-permission-button.sent": "\u017D\xE1dost o \xFApravy odesl\xE1na",
|
|
93
100
|
/** The text for the request permission button that appears for viewer roles */
|
|
94
101
|
"banners.permission-check-banner.request-permission-button.text": "Po\u017E\xE1dat o \xFApravy",
|
|
102
|
+
/** Description for the archived release banner, rendered when viewing the history of a version document from the published view */
|
|
103
|
+
"banners.published-release.description": "Prohl\xED\u017E\xEDte dokument pouze pro \u010Dten\xED, kter\xFD byl publikov\xE1n jako sou\u010D\xE1st <VersionBadge>{{title}}</VersionBadge>. Nelze ho upravit",
|
|
95
104
|
/** The text for the reload button */
|
|
96
105
|
"banners.reference-changed-banner.reason-changed.reload-button.text": "Znovu na\u010D\xEDst referenci",
|
|
97
106
|
/** The text for the reference change banner if the reason is that the reference has been changed */
|
|
@@ -100,6 +109,34 @@ var sanity = require("sanity"), structure = sanity.removeUndefinedLocaleResource
|
|
|
100
109
|
"banners.reference-changed-banner.reason-removed.close-button.text": "Zav\u0159\xEDt referenci",
|
|
101
110
|
/** The text for the reference change banner if the reason is that the reference has been deleted */
|
|
102
111
|
"banners.reference-changed-banner.reason-removed.text": "Tato reference byla odstran\u011Bna od doby, co jste ji otev\u0159eli.",
|
|
112
|
+
/** The text that appears for the action button to add the current document to the global release */
|
|
113
|
+
"banners.release.action.add-to-release": "P\u0159idat do vyd\xE1n\xED",
|
|
114
|
+
/** The text that appears for the action button to add the current document to the global release */
|
|
115
|
+
"banners.release.action.open-to-edit": "Otev\u0159\xEDt release k \xFAprav\u011B",
|
|
116
|
+
/** Toast description in case an error occurs when adding a document to a release */
|
|
117
|
+
"banners.release.error.description": "P\u0159i p\u0159id\xE1v\xE1n\xED dokumentu do release do\u0161lo k chyb\u011B: {{message}}",
|
|
118
|
+
/** Toast title in case an error occurs when adding a document to a release */
|
|
119
|
+
"banners.release.error.title": "Chyba p\u0159i p\u0159id\xE1v\xE1n\xED dokumentu do release",
|
|
120
|
+
/** The text for the banner that appears when a document only has versions but is in a draft or published pinned release */
|
|
121
|
+
"banners.release.navigate-to-edit-description": "Dokument existuje pouze ve",
|
|
122
|
+
/** The text for the banner that appears when a document only has versions but is in a draft or published pinned release */
|
|
123
|
+
"banners.release.navigate-to-edit-description-end_one": "release",
|
|
124
|
+
/** The text for the banner that appears when a document only has versions but is in a draft or published pinned release */
|
|
125
|
+
"banners.release.navigate-to-edit-description-end_other": "release",
|
|
126
|
+
/** The text for the banner that appears when there are multiple versions but no drafts or published, only one extra releases */
|
|
127
|
+
"banners.release.navigate-to-edit-description-multiple_one": "Tento dokument je sou\u010D\xE1st\xED <VersionBadge/> release a {{count}} dal\u0161\xEDho release.",
|
|
128
|
+
/** The text for the banner that appears when there are multiple versions but no drafts or published, more than one extra releases */
|
|
129
|
+
"banners.release.navigate-to-edit-description-multiple_other": "Tento dokument je sou\u010D\xE1st\xED <VersionBadge/> release a {{count}} dal\u0161\xEDch release",
|
|
130
|
+
/** The text for the banner that appears when a document only has one version but is in a draft or published pinned release */
|
|
131
|
+
"banners.release.navigate-to-edit-description-single": "Tento dokument je sou\u010D\xE1st\xED <VersionBadge/> release",
|
|
132
|
+
/** The text for the banner that appears when a document is not in the current global release */
|
|
133
|
+
"banners.release.not-in-release": "Nen\xED ve vyd\xE1n\xED <VersionBadge>{{title}}</VersionBadge>.",
|
|
134
|
+
/** Description of toast that will appear in case of latency between the user adding a document to a release and the UI reflecting it */
|
|
135
|
+
"banners.release.waiting.description": "Vy\u010Dkejte pros\xEDm, ne\u017E bude dokument p\u0159id\xE1n do release. Nem\u011Blo by to trvat d\xE9le ne\u017E n\u011Bkolik sekund.",
|
|
136
|
+
/** Title of toast that will appear in case of latency between the user adding a document to a release and the UI reflecting it */
|
|
137
|
+
"banners.release.waiting.title": "P\u0159id\xE1v\xE1n\xED dokumentu do release\u2026",
|
|
138
|
+
/** The text content for the unpublished document banner when is part of a release */
|
|
139
|
+
"banners.unpublished-release-banner.text": "Tento dokument bude nepublikov\xE1n jako sou\u010D\xE1st vyd\xE1n\xED <VersionBadge>{{title}}</VersionBadge>",
|
|
103
140
|
/** Browser/tab title when creating a new document of a given type */
|
|
104
141
|
"browser-document-title.new-document": "Nov\xFD {{schemaType}}",
|
|
105
142
|
/** Browser/tab title when editing a document where the title cannot be resolved from preview configuration */
|
|
@@ -116,6 +153,27 @@ var sanity = require("sanity"), structure = sanity.removeUndefinedLocaleResource
|
|
|
116
153
|
"buttons.split-pane-close-button.title": "Zav\u0159\xEDt rozd\u011Blen\xFD panel",
|
|
117
154
|
/** The title for the close group button on the split pane on the document panel header */
|
|
118
155
|
"buttons.split-pane-close-group-button.title": "Zav\u0159\xEDt skupinu panel\u016F",
|
|
156
|
+
/** The text for the canvas linked banner action button */
|
|
157
|
+
"canvas.banner.edit-in-canvas-action": void 0,
|
|
158
|
+
// 'Edit in Canvas'
|
|
159
|
+
/** The text for the canvas linked banner when the document is a draft */
|
|
160
|
+
"canvas.banner.linked-text.draft": void 0,
|
|
161
|
+
// 'This draft document is linked to Canvas'
|
|
162
|
+
/** The text for the canvas linked banner when the document is a live document */
|
|
163
|
+
"canvas.banner.linked-text.published": void 0,
|
|
164
|
+
// 'This live document is linked to Canvas'
|
|
165
|
+
/** The text for the canvas linked banner when the document is a version document */
|
|
166
|
+
"canvas.banner.linked-text.version": void 0,
|
|
167
|
+
// 'This version document is linked to Canvas'
|
|
168
|
+
/** The text for the canvas linked banner popover button */
|
|
169
|
+
"canvas.banner.popover-button-text": void 0,
|
|
170
|
+
// 'Learn more'
|
|
171
|
+
/** The description for the canvas linked banner popover */
|
|
172
|
+
"canvas.banner.popover-description": void 0,
|
|
173
|
+
// 'Canvas lets you author in a free-form editor that automatically maps back to the Studio as structured content - as you type.'
|
|
174
|
+
/** The heading for the canvas linked banner popover */
|
|
175
|
+
"canvas.banner.popover-heading": void 0,
|
|
176
|
+
// 'Idea first authoring'
|
|
119
177
|
/** The label used in the changes inspector for the from selector */
|
|
120
178
|
"changes.from.label": "Od",
|
|
121
179
|
/* The label for the history tab in the changes inspector*/
|
|
@@ -124,6 +182,25 @@ var sanity = require("sanity"), structure = sanity.removeUndefinedLocaleResource
|
|
|
124
182
|
"changes.tab.review-changes": "Zkontrolovat zm\u011Bny",
|
|
125
183
|
/** The label used in the changes inspector for the to selector */
|
|
126
184
|
"changes.to.label": "Do",
|
|
185
|
+
/** The error message shown when the specified document comparison mode is not supported */
|
|
186
|
+
"compare-version.error.invalidModeParam": '"{{input}}" nen\xED podporovan\xFD re\u017Eim porovn\xE1n\xED dokument\u016F.',
|
|
187
|
+
/** The error message shown when the next document for comparison could not be extracted from the URL */
|
|
188
|
+
"compare-version.error.invalidNextDocumentParam": "Parametr pro dal\u0161\xED dokument je neplatn\xFD.",
|
|
189
|
+
/** The error message shown when the document comparison URL could not be parsed */
|
|
190
|
+
"compare-version.error.invalidParams.title": "Nelze porovnat dokumenty",
|
|
191
|
+
/** The error message shown when the previous document for comparison could not be extracted from the URL */
|
|
192
|
+
"compare-version.error.invalidPreviousDocumentParam": "Parametr pro p\u0159edchoz\xED dokument je neplatn\xFD.",
|
|
193
|
+
/** The text for the tooltip when the "Compare versions" action for a document is disabled */
|
|
194
|
+
"compare-versions.menu-item.disabled-reason": void 0,
|
|
195
|
+
// 'There are no other versions of this document to compare.'
|
|
196
|
+
/** The text for the "Compare versions" action for a document */
|
|
197
|
+
"compare-versions.menu-item.title": "Porovnat verze",
|
|
198
|
+
/** The string used to label draft documents */
|
|
199
|
+
"compare-versions.status.draft": "Koncept",
|
|
200
|
+
/** The string used to label published documents */
|
|
201
|
+
"compare-versions.status.published": "Publikov\xE1no",
|
|
202
|
+
/** The title used when comparing versions of a document */
|
|
203
|
+
"compare-versions.title": "Porovn\xE1n\xED verz\xED",
|
|
127
204
|
/** The text in the "Cancel" button in the confirm delete dialog that cancels the action and closes the dialog */
|
|
128
205
|
"confirm-delete-dialog.cancel-button.text": "Zru\u0161it",
|
|
129
206
|
/** Used in `confirm-delete-dialog.cdr-summary.title` */
|
|
@@ -148,8 +225,6 @@ var sanity = require("sanity"), structure = sanity.removeUndefinedLocaleResource
|
|
|
148
225
|
"confirm-delete-dialog.cdr-table.dataset.label": "Dataset",
|
|
149
226
|
/** The header for the document ID column in the list of cross-dataset references found */
|
|
150
227
|
"confirm-delete-dialog.cdr-table.document-id.label": "ID dokumentu",
|
|
151
|
-
/** The toast title when the copy button has been clicked */
|
|
152
|
-
"confirm-delete-dialog.cdr-table.id-copied-toast.title": "ID dokumentu zkop\xEDrov\xE1no do schr\xE1nky!",
|
|
153
228
|
/** The toast title when the copy button has been clicked but copying failed */
|
|
154
229
|
"confirm-delete-dialog.cdr-table.id-copied-toast.title-failed": "Kop\xEDrov\xE1n\xED ID dokumentu selhalo",
|
|
155
230
|
/** The header for the project ID column in the list of cross-dataset references found */
|
|
@@ -236,6 +311,18 @@ var sanity = require("sanity"), structure = sanity.removeUndefinedLocaleResource
|
|
|
236
311
|
"document-view.form-view.sync-lock-toast.description": "Vy\u010Dkejte, pros\xEDm, dokud se dokument synchronizuje. To se obvykle d\u011Bje ihned po publikaci dokumentu a nem\u011Blo by to trvat d\xE9le ne\u017E n\u011Bkolik sekund",
|
|
237
312
|
/** The title of the sync lock toast on the form view */
|
|
238
313
|
"document-view.form-view.sync-lock-toast.title": "Synchronizace dokumentu\u2026",
|
|
314
|
+
/** The description for the document favorite action */
|
|
315
|
+
"document.favorites.add-to-favorites": void 0,
|
|
316
|
+
// 'Add to favorites'
|
|
317
|
+
/** The description for the document unfavorite action */
|
|
318
|
+
"document.favorites.remove-from-favorites": void 0,
|
|
319
|
+
// 'Remove from favorites'
|
|
320
|
+
/**The title for the menu items that will be shown when expanding a publish release event to inspect the document */
|
|
321
|
+
"events.inspect.release": "Prozkoumat dokument <VersionBadge>{{releaseTitle}}</VersionBadge>",
|
|
322
|
+
/**The title for the menu items that will be shown when expanding a publish draft event to inspect the draft document*/
|
|
323
|
+
"events.open.draft": "Otev\u0159\xEDt dokument <VersionBadge>draft</VersionBadge>",
|
|
324
|
+
/**The title for the menu items that will be shown when expanding a publish release event to inspect the release*/
|
|
325
|
+
"events.open.release": "Otev\u0159\xEDt vyd\xE1n\xED <VersionBadge>{{releaseTitle}}</VersionBadge>",
|
|
239
326
|
/** The loading messaging for when the tooltip is still loading permission info */
|
|
240
327
|
"insufficient-permissions-message-tooltip.loading-text": "Na\u010D\xEDt\xE1n\xED\u2026",
|
|
241
328
|
/** --- Menu items --- */
|
|
@@ -315,6 +402,8 @@ var sanity = require("sanity"), structure = sanity.removeUndefinedLocaleResource
|
|
|
315
402
|
"panes.document-operation-results.operation-success": "\xDAsp\u011B\u0161n\u011B provedeno {{context}} na dokumentu",
|
|
316
403
|
/** The text when copy URL operation succeeded */
|
|
317
404
|
"panes.document-operation-results.operation-success_copy-url": "URL dokumentu byla zkop\xEDrov\xE1na do schr\xE1nky",
|
|
405
|
+
/** */
|
|
406
|
+
"panes.document-operation-results.operation-success_createVersion": "<Strong>{{title}}</Strong> byl p\u0159id\xE1n do vyd\xE1n\xED",
|
|
318
407
|
/** The text when a delete operation succeeded */
|
|
319
408
|
"panes.document-operation-results.operation-success_delete": "Dokument byl \xFAsp\u011B\u0161n\u011B smaz\xE1n",
|
|
320
409
|
/** The text when a discard changes operation succeeded */
|
|
@@ -329,8 +418,6 @@ var sanity = require("sanity"), structure = sanity.removeUndefinedLocaleResource
|
|
|
329
418
|
"panes.document-operation-results.operation-success_unpublish": "Publikace dokumentu byla zru\u0161ena. Z posledn\xED publikovan\xE9 verze byl vytvo\u0159en koncept.",
|
|
330
419
|
/** The document title shown when document title is "undefined" in operation message */
|
|
331
420
|
"panes.document-operation-results.operation-undefined-title": "Bez n\xE1zvu",
|
|
332
|
-
/** The title of the reconnecting toast */
|
|
333
|
-
"panes.document-pane-provider.reconnecting.title": "Spojen\xED bylo p\u0159eru\u0161eno. Op\u011Btovn\xE9 p\u0159ipojov\xE1n\xED\u2026",
|
|
334
421
|
/** The loading message for the document not found pane */
|
|
335
422
|
"panes.document-pane.document-not-found.loading": "Na\u010D\xEDt\xE1n\xED dokumentu\u2026",
|
|
336
423
|
/** The text of the document not found pane if the schema is known */
|