@sanity/locale-hr-hr 1.1.31 → 1.1.33
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/media-library.cjs +15 -0
- package/dist/_chunks-cjs/media-library.cjs.map +1 -0
- package/dist/_chunks-cjs/structure.cjs +7 -1
- package/dist/_chunks-cjs/structure.cjs.map +1 -1
- package/dist/_chunks-cjs/studio.cjs +22 -18
- package/dist/_chunks-cjs/studio.cjs.map +1 -1
- package/dist/_chunks-es/media-library.js +17 -0
- package/dist/_chunks-es/media-library.js.map +1 -0
- package/dist/_chunks-es/structure.js +7 -1
- package/dist/_chunks-es/structure.js.map +1 -1
- package/dist/_chunks-es/studio.js +22 -18
- package/dist/_chunks-es/studio.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/index.ts +5 -0
- package/src/media-library.ts +16 -0
- package/src/structure.ts +8 -1
- package/src/studio.ts +25 -18
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var sanity = require("sanity"), mediaLibrary = sanity.removeUndefinedLocaleResources({
|
|
3
|
+
/** Warning description for invalid video value */
|
|
4
|
+
"invalid-video-warning.description": "Vrijednost ovog polja nije valjani video. Resetiranjem ovog polja mo\u0107i \u0107ete odabrati novi video.",
|
|
5
|
+
/** Reset button text for invalid video warning */
|
|
6
|
+
"invalid-video-warning.reset-button.text": "Resetiraj vrijednost",
|
|
7
|
+
/** Warning title for invalid video value */
|
|
8
|
+
"invalid-video-warning.title": "Nevaljana vrijednost videa",
|
|
9
|
+
/** Video error fallback description */
|
|
10
|
+
"video-error.description": "U\u010Ditavanje videa nije uspjelo",
|
|
11
|
+
/** Retry button text for video loading errors */
|
|
12
|
+
"video-error.retry-button.text": "Poku\u0161aj ponovo"
|
|
13
|
+
});
|
|
14
|
+
exports.default = mediaLibrary;
|
|
15
|
+
//# sourceMappingURL=media-library.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"media-library.cjs","sources":["../../src/media-library.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Warning description for invalid video value */\n 'invalid-video-warning.description':\n 'Vrijednost ovog polja nije valjani video. Resetiranjem ovog polja moći ćete odabrati novi video.',\n /** Reset button text for invalid video warning */\n 'invalid-video-warning.reset-button.text': 'Resetiraj vrijednost',\n /** Warning title for invalid video value */\n 'invalid-video-warning.title': 'Nevaljana vrijednost videa',\n\n /** Video error fallback description */\n 'video-error.description': 'Učitavanje videa nije uspjelo',\n /** Retry button text for video loading errors */\n 'video-error.retry-button.text': 'Pokušaj ponovo',\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":";gCAEA,eAAeA,sCAA+B;AAAA;AAAA,EAE5C,qCACE;AAAA;AAAA,EAEF,2CAA2C;AAAA;AAAA,EAE3C,+BAA+B;AAAA;AAAA,EAG/B,2BAA2B;AAAA;AAAA,EAE3B,iCAAiC;AACnC,CAAC;;"}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var sanity = require("sanity"), structure = sanity.removeUndefinedLocaleResources({
|
|
3
|
-
/** Label for the "Copy
|
|
3
|
+
/** Label for the "Copy document ID" menu item */
|
|
4
|
+
"action.copy-document-id.label": "Kopiraj ID dokumenta",
|
|
5
|
+
/** Tooltip for the copy actions dropdown button in the document panel header */
|
|
4
6
|
"action.copy-document-url.label": "Kopiraj URL dokumenta",
|
|
7
|
+
/** Label for the "Copy document URL" menu item */
|
|
8
|
+
"action.copy-link-to-document.label": "Kopiraj URL dokumenta",
|
|
5
9
|
/** Tooltip when action button is disabled because the operation is not ready */
|
|
6
10
|
"action.delete.disabled.not-ready": "Operacija nije spremna",
|
|
7
11
|
/** Tooltip when action button is disabled because the document does not exist */
|
|
@@ -488,6 +492,8 @@ var sanity = require("sanity"), structure = sanity.removeUndefinedLocaleResource
|
|
|
488
492
|
"panes.document-operation-results.operation-error_unpublish": "Do\u0161lo je do gre\u0161ke pri poku\u0161aju povla\u010Denja ovog dokumenta. To obi\u010Dno zna\u010Di da postoje drugi dokumenti koji upu\u0107uju na njega.",
|
|
489
493
|
/** The text when a generic operation succeeded (fallback, generally not shown) */
|
|
490
494
|
"panes.document-operation-results.operation-success": "Uspje\u0161no izveden {{context}} na dokumentu",
|
|
495
|
+
/** The text when copy document ID operation succeeded */
|
|
496
|
+
"panes.document-operation-results.operation-success_copy-id": "ID dokumenta kopiran u me\u0111uspremnik",
|
|
491
497
|
/** The text when copy URL operation succeeded */
|
|
492
498
|
"panes.document-operation-results.operation-success_copy-url": "URL dokumenta kopiran u me\u0111uspremnik",
|
|
493
499
|
/** */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"structure.cjs","sources":["../../src/structure.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Label for the \"Copy Document URL\" document action */\n 'action.copy-document-url.label': 'Kopiraj URL dokumenta',\n /** Tooltip when action button is disabled because the operation is not ready */\n 'action.delete.disabled.not-ready': 'Operacija nije spremna',\n /** Tooltip when action button is disabled because the document does not exist */\n 'action.delete.disabled.nothing-to-delete': 'Ovaj dokument ne postoji',\n /** Tooltip when action button is disabled because the document exists in scheduled releases */\n 'action.delete.disabled.scheduled-release':\n 'Ovaj dokument se ne može obrisati jer postoji unutar zakazanih objava',\n /** Label for the \"Delete\" document action button */\n 'action.delete.label': 'Izbriši',\n /** Label for the \"Delete\" document action while the document is being deleted */\n 'action.delete.running.label': 'Brisanje…',\n /** Tooltip when action is disabled because the document is linked to Canvas */\n 'action.disabled-by-canvas.tooltip':\n 'Neke akcije nad dokumentom su onemogućene za dokumente povezane s Canvasom',\n /** Message prompting the user to confirm discarding changes */\n 'action.discard-changes.confirm-dialog.confirm-discard-changes':\n 'Jeste li sigurni da želite odbaciti sve promjene od posljednjeg objavljivanja?',\n /** Message prompting the user to confirm discarding changes */\n 'action.discard-changes.confirm-dialog.confirm-discard-changes-draft':\n 'Jeste li sigurni da želite odbaciti sve promjene i izbrisati ovaj nacrt dokumenta?',\n /**Header for the confirm discard dialog */\n 'action.discard-changes.confirm-dialog.header.text': 'Odbaciti promjene?',\n /** Tooltip when action is disabled because the document has no unpublished changes */\n 'action.discard-changes.disabled.no-change': 'Ovaj dokument nema neobjavljenih promjena',\n /** Tooltip when action is disabled because the document is not published */\n 'action.discard-changes.disabled.not-published': 'Ovaj dokument nije objavljen',\n /** Tooltip when action button is disabled because the operation is not ready */\n 'action.discard-changes.disabled.not-ready': 'Operacija nije spremna',\n /** Label for the \"Discard changes\" document action */\n 'action.discard-changes.label': 'Odbaci promjene',\n /** Tooltip when action is disabled because the operation is not ready */\n 'action.duplicate.disabled.not-ready': 'Operacija nije spremna',\n /** Tooltip when action is disabled because the document doesn't exist */\n 'action.duplicate.disabled.nothing-to-duplicate':\n 'Ovaj dokument još ne postoji pa se nema što duplicirati',\n /** Label for the \"Duplicate\" document action */\n 'action.duplicate.label': 'Dupliciraj',\n /** Label for the \"Duplicate\" document action while the document is being duplicated */\n 'action.duplicate.running.label': 'Dupliciranje…',\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': 'Već objavljeno',\n /** Tooltip when publish button is disabled because the document is already published.*/\n 'action.publish.already-published.tooltip': 'Objavljeno prije {{timeSincePublished}}',\n /** Tooltip when action is disabled because the studio is not ready.*/\n 'action.publish.disabled.not-ready': 'Operacija nije spremna',\n /** Label for action when there are pending changes.*/\n 'action.publish.draft.label': 'Objavi',\n /** Label for the \"Publish\" document action */\n 'action.publish.label': 'Objavi',\n /** Label for the \"Publish\" document action when the document has live edit enabled.*/\n 'action.publish.live-edit.label': 'Objavi',\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 'Ne može se objaviti jer je za ovu vrstu dokumenta omogućen Live Edit',\n /** Tooltip for the \"Publish\" document action when the document has live edit enabled.*/\n 'action.publish.live-edit.tooltip':\n 'Za ovu vrstu sadržaja omogućen je Live Edit i objavljivanje se automatski događa dok vršite promjene',\n /** Tooltip when publish button is disabled because there are no changes.*/\n 'action.publish.no-changes.tooltip': 'Nema neobjavljenih promjena',\n /** Label for the \"Publish\" document action when there are no changes.*/\n 'action.publish.published.label': 'Objavljeno',\n /** Label for the \"Publish\" document action while publish is being executed.*/\n 'action.publish.running.label': 'Objavljivanje…',\n /** Label for the \"Publish\" document action while publish is being executed.*/\n 'action.publish.validation-in-progress.label': 'Validacija dokumenta u tijeku…',\n /** Toast description when trying to publish with validation errors */\n 'action.publish.validation-issues-toast.description':\n 'Molimo ispravite greške u validaciji prije objavljivanja',\n /** Toast title when trying to publish with validation errors */\n 'action.publish.validation-issues-toast.title': 'Greške u validaciji',\n /** Tooltip when the \"Publish\" document action is disabled due to validation issues */\n 'action.publish.validation-issues.tooltip':\n 'Postoje greške u validaciji koje treba ispraviti prije nego što se ovaj dokument može objaviti',\n /** Tooltip when publish button is waiting for validation and async tasks to complete.*/\n 'action.publish.waiting': 'Čekanje da se zadaci završe prije objavljivanja',\n /** Message prompting the user to confirm that they want to restore to an earlier revision*/\n 'action.restore.confirm.message':\n 'Jeste li sigurni da želite vratiti ovaj dokument na raniju verziju?',\n /** Fallback tooltip for when user is looking at the initial revision */\n 'action.restore.disabled.cannot-restore-initial': 'Ne možete vratiti na inicijalnu verziju',\n /** Label for the \"Restore\" document action */\n 'action.restore.label': 'Vrati',\n /** Default tooltip for the action */\n 'action.restore.tooltip': 'Vrati na ovu verziju',\n /** Tooltip when action is disabled because the document is not already published */\n 'action.unpublish.disabled.not-published': 'Ovaj dokument nije objavljen',\n /** Tooltip when action is disabled because the operation is not ready */\n 'action.unpublish.disabled.not-ready': 'Operacija nije spremna',\n /** Label for the \"Unpublish\" document action */\n 'action.unpublish.label': 'Poništi objavu',\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 'Ovaj dokument ima omogućen Live Edit i ne može biti poništena objava',\n\n /** Description for the archived release banner, rendered when viewing the history of a version document from the publihed view */\n 'banners.archived-release.description':\n 'Pregledavate dokument samo za čitanje koji je arhiviran kao dio <VersionBadge> izdanja</VersionBadge>. Ne može se uređivati',\n /** Description for the archived scheduled draft banner, rendered when viewing the history of a cardinality one release document */\n 'banners.archived-scheduled-draft.description': 'Ovaj zakazani nacrt je arhiviran',\n /** The explanation displayed when a user attempts to create a new draft document, but the draft model is not switched on */\n 'banners.choose-new-document-destination.cannot-create-draft-document':\n 'Nije moguće stvoriti dokument nacrta.',\n /** The explanation displayed when a user attempts to create a new published document, but the schema type doesn't support live-editing */\n 'banners.choose-new-document-destination.cannot-create-published-document':\n 'Nije moguće stvoriti objavljeni dokument.',\n /** The prompt displayed when a user must select a different perspective in order to create a document */\n 'banners.choose-new-document-destination.choose-destination':\n 'Odaberite odredište za ovaj dokument:',\n /** The explanation displayed when a user attempts to create a new document in a release, but the selected release is inactive */\n 'banners.choose-new-document-destination.release-inactive':\n '<VersionBadge>{{title}}</VersionBadge> izdanje nije aktivno.',\n /** The text for the restore button on the deleted document banner */\n 'banners.deleted-document-banner.restore-button.text': 'Vrati najnoviju verziju',\n /** The text content for the deleted document banner */\n 'banners.deleted-document-banner.text': 'Ovaj dokument je izbrisan.',\n /** The text content for the deprecated document type banner */\n 'banners.deprecated-document-type-banner.text': 'Ovaj tip dokumenta je zastario.',\n /** The text for publish action for discarding the version */\n 'banners.live-edit-draft-banner.discard.tooltip': 'Odbaci skicu',\n /** The text for publish action for the draft banner */\n 'banners.live-edit-draft-banner.publish.tooltip': 'Objavi za nastavak uređivanja',\n /** The text content for the live edit document when it's a draft */\n 'banners.live-edit-draft-banner.text':\n 'Tip <strong>{{schemaType}}</strong> ima omogućeno <code>liveEdit</code>, ali postoji skica ovog dokumenta. Objavite ili odbacite skicu kako biste nastavili s uređivanjem uživo.',\n /** The label for the \"compare draft\" action */\n 'banners.obsolete-draft.actions.compare-draft.text': 'Usporedi nacrt',\n /** The label for the \"discard draft\" action */\n 'banners.obsolete-draft.actions.discard-draft.text': 'Odbaci nacrt',\n /** The label for the \"publish draft\" action */\n 'banners.obsolete-draft.actions.publish-draft.text': 'Objavi nacrt',\n /** The warning displayed when editing a document that has an obsolete draft because the draft model is not switched on */\n 'banners.obsolete-draft.draft-model-inactive.text':\n 'Radni prostor nema omogućene nacrte, ali postoji nacrt verzija ovog dokumenta.',\n /** The text content for the paused scheduled draft banner */\n 'banners.paused-scheduled-draft.text':\n 'Raspored je pauziran tijekom uređivanja. Pritisnite Raspored za reaktivaciju ili odaberite novi datum.',\n /** The text for the permission check banner if the user only has one role, and it does not allow publishing this document */\n 'banners.permission-check-banner.missing-permission_create_one':\n 'Vaša uloga <Roles/> nema dozvolu za kreiranje ovog dokumenta.',\n /** The text for the permission check banner if the user only has multiple roles, but they do not allow publishing this document */\n 'banners.permission-check-banner.missing-permission_create_other':\n 'Vaše uloge <Roles/> nemaju dozvolu za kreiranje ovog dokumenta.',\n /** The text for the permission check banner if the user only has one role, and it does not allow editing this document */\n 'banners.permission-check-banner.missing-permission_update_one':\n 'Vaša uloga <Roles/> nema dozvolu za ažuriranje ovog dokumenta.',\n /** The text for the permission check banner if the user only has multiple roles, but they do not allow editing this document */\n 'banners.permission-check-banner.missing-permission_update_other':\n 'Vaše uloge <Roles/> nemaju dozvolu za ažuriranje ovog dokumenta.',\n /** The pending text for the request permission button that appears for viewer roles */\n 'banners.permission-check-banner.request-permission-button.sent': 'Zahtjev za uređivanje poslan',\n /** The text for the request permission button that appears for viewer roles */\n 'banners.permission-check-banner.request-permission-button.text': 'Zatraži pravo na uređivanje',\n /** Description for the archived release banner, rendered when viewing the history of a version document from the published view */\n 'banners.published-release.description':\n 'Pregledavate dokument samo za čitanje koji je objavljen kao dio <VersionBadge> izdanja</VersionBadge>. Ne može se uređivati',\n /** The text for the reload button */\n 'banners.reference-changed-banner.reason-changed.reload-button.text': 'Ponovno učitaj referencu',\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 'Ova referenca se promijenila otkako ste je otvorili.',\n /** The text for the close button */\n 'banners.reference-changed-banner.reason-removed.close-button.text': 'Zatvori referencu',\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 'Ova referenca je uklonjena otkako ste je otvorili.',\n /** The text that appears for the action button to add the current document to the global release */\n 'banners.release.action.add-to-release': 'Dodaj u izdanje',\n /** The text that appears for the action button to add the current document to the global release */\n 'banners.release.action.open-to-edit': 'Otvori izdanje za uređivanje',\n /** Toast description in case an error occurs when adding a document to a release */\n 'banners.release.error.description':\n 'Došlo je do pogreške prilikom dodavanja dokumenta u izdanje: {{message}}',\n /** Toast title in case an error occurs when adding a document to a release */\n 'banners.release.error.title': 'Pogreška pri dodavanju dokumenta u izdanje',\n /** The text for the banner that appears when a document only has versions but is in a draft or published pinned release */\n 'banners.release.navigate-to-edit-description': 'Dokument postoji samo u',\n /** The text for the banner that appears when a document only has versions but is in a draft or published pinned release */\n 'banners.release.navigate-to-edit-description-end_one': 'izdanju',\n /** The text for the banner that appears when a document only has versions but is in a draft or published pinned release */\n 'banners.release.navigate-to-edit-description-end_other': 'izdanjima',\n /** The text for the banner that appears when there are multiple versions but no drafts or published, only one extra releases */\n 'banners.release.navigate-to-edit-description-multiple_one':\n 'Ovaj dokument je dio <VersionBadge/> izdanja i još {{count}} izdanja.',\n /** The text for the banner that appears when there are multiple versions but no drafts or published, more than one extra releases */\n 'banners.release.navigate-to-edit-description-multiple_other':\n 'Ovaj dokument je dio <VersionBadge/> izdanja i još {{count}} izdanja',\n /** The text for the banner that appears when a document is not part of any release\n * @deprecated – no longer in use\n * */\n 'banners.release.navigate-to-edit-description-none': 'Ovaj dokument nije dio nijednog izdanja',\n /** The text for the banner that appears when a document only has one version but is in a draft or published pinned release */\n 'banners.release.navigate-to-edit-description-single':\n 'Ovaj dokument je dio <VersionBadge/> izdanja',\n /** The text for the banner that appears when a document is not in the current global release */\n 'banners.release.not-in-release': 'Nije u <Label>{{title}}</Label> izdanju.',\n /** Description of toast that will appear in case of latency between the user adding a document to a release and the UI reflecting it */\n 'banners.release.waiting.description':\n 'Molimo pričekajte dok se dokument ne doda u izdanje. Ne bi trebalo trajati duže od nekoliko sekundi.',\n /** Title of toast that will appear in case of latency between the user adding a document to a release and the UI reflecting it */\n 'banners.release.waiting.title': 'Dodavanje dokumenta u izdanje…',\n /** The text for the revision not found banner */\n 'banners.revision-not-found.description':\n 'Nismo mogli pronaći odabranu reviziju dokumenta, molimo odaberite drugi unos iz povijesne liste.',\n /** The text content for the scheduled draft override banner */\n 'banners.scheduled-draft-override-banner.text':\n 'Postoji zakazani nacrt za ovaj dokument. Ako sada objavite promjene, one će biti prebrisane kada se raspored izvrši.',\n /** The text content for the unpublished document banner when is part of a release */\n 'banners.unpublished-release-banner.text':\n 'Ovaj dokument će biti nepublikovan kao dio <VersionBadge>{{title}}</VersionBadge> izdanja',\n /** The text content for the unpublished document banner letting the user know that the current published version is being shown */\n 'banners.unpublished-release-banner.text-with-published':\n 'Prikazuje se trenutna <strong>objavljena</strong> verzija:',\n\n /** Browser/tab title when creating a new document of a given type */\n 'browser-document-title.new-document': 'Novi {{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 naslova',\n\n /** The action menu button aria-label */\n 'buttons.action-menu-button.aria-label': 'Otvori akcije dokumenta',\n /** The action menu button tooltip */\n 'buttons.action-menu-button.tooltip': 'Akcije dokumenta',\n /** The aria-label for the collapse pane button on the document panel header */\n 'buttons.focus-pane-button.aria-label.collapse':\n 'Izađite iz fokusnog načina (prikažite navigaciju)',\n /** The aria-label for the focus pane button on the document panel header */\n 'buttons.focus-pane-button.aria-label.focus': 'Uđite u fokusni način (sakrijte navigaciju)',\n /** The tooltip for the collapse pane button on the document panel header */\n 'buttons.focus-pane-button.tooltip.collapse': 'Izađite iz fokusnog načina',\n /** The tooltip for the focus pane button on the document panel header */\n 'buttons.focus-pane-button.tooltip.focus': 'Uđite u fokusni način',\n /** The aria-label for the split pane button on the document panel header */\n 'buttons.split-pane-button.aria-label': 'Podijeli ploču desno',\n /** The tool tip for the split pane button on the document panel header */\n 'buttons.split-pane-button.tooltip': 'Podijeli ploču desno',\n /** The title for the close button on the split pane on the document panel header */\n 'buttons.split-pane-close-button.title': 'Zatvori podijeljenu ploču',\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': 'Zatvori grupu ploča',\n\n /** The text for the canvas linked banner action button */\n 'canvas.banner.edit-in-canvas-action': 'Uredi u Canvasu',\n /** The text for the canvas linked banner when the document in editable mode*/\n 'canvas.banner.editable.linked-text': 'Ovaj dokument se može uređivati u Canvasu.',\n /** The description for the canvas linked banner popover in editable mode*/\n 'canvas.banner.editable.popover-description':\n 'Canvas vam omogućuje slobodno pisanje, a zatim ažuriranje sadržaja u Studiju bez ručnog kopiranja polje po polje.',\n /** The heading for the canvas linked banner popover in editable mode*/\n 'canvas.banner.editable.popover-heading': 'Pisanje slobodnim stilom',\n /** The text for the canvas linked banner when the document is a draft */\n 'canvas.banner.linked-text.draft': 'Ovaj nacrt dokumenta je povezan s Canvasom',\n /** The text for the canvas linked banner when the document is a live document */\n 'canvas.banner.linked-text.published': 'Ovaj objavljeni dokument je povezan s Canvasom',\n /** The text for the canvas linked banner when the document is a version document */\n 'canvas.banner.linked-text.version': 'Ova verzija dokumenta je povezana s Canvasom',\n /** The text for the canvas linked banner popover button */\n 'canvas.banner.popover-button-text': 'Saznajte više',\n /** The description for the canvas linked banner popover */\n 'canvas.banner.popover-description':\n 'Canvas vam omogućuje autorstvo u slobodnoj formi uredniku koji se automatski mapira natrag na Studio kao strukturirani sadržaj - dok tipkate.',\n /** The heading for the canvas linked banner popover */\n 'canvas.banner.popover-heading': 'Autorstvo s idejom na prvom mjestu',\n\n /** The description for the changes banner */\n 'changes.banner.description':\n 'Prikazuje povijest za <strong>{{perspective}}</strong> verziju ovog dokumenta.',\n /** The tooltip for the changes banner */\n 'changes.banner.tooltip':\n 'Ovaj prikaz pokazuje promjene koje su se dogodile u određenoj verziji ovog dokumenta. Odaberite drugu verziju da biste vidjeli njene promjene',\n /** The label used in the changes inspector for the from selector */\n 'changes.from.label': 'Od',\n /* The label for the history tab in the changes inspector*/\n 'changes.tab.history': 'Povijest',\n /* The label for the review tab in the changes inspector*/\n 'changes.tab.review-changes': 'Pregled promjena',\n /** The label used in the changes inspector for the to selector */\n 'changes.to.label': 'Do',\n\n /** The error message shown when the specified document comparison mode is not supported */\n 'compare-version.error.invalidModeParam': '\"{{input}}\" nije podržani način usporedbe dokumenata.',\n /** The error message shown when the next document for comparison could not be extracted from the URL */\n 'compare-version.error.invalidNextDocumentParam': 'Parametar sljedećeg dokumenta je nevažeći.',\n /** The error message shown when the document comparison URL could not be parsed */\n 'compare-version.error.invalidParams.title': 'Nemoguće usporediti dokumente',\n /** The error message shown when the previous document for comparison could not be extracted from the URL */\n 'compare-version.error.invalidPreviousDocumentParam':\n 'Parametar prethodnog dokumenta je nevažeći.',\n /** The error message shown when releases failed to load */\n 'compare-version.error.loadReleases.title': 'Učitavanje izdanja nije uspjelo',\n\n /** The text for the tooltip when the \"Compare versions\" action for a document is disabled */\n 'compare-versions.menu-item.disabled-reason': 'Nema drugih verzija ovog dokumenta za usporedbu.',\n /** The text for the \"Compare versions\" action for a document */\n 'compare-versions.menu-item.title': 'Usporedi verzije',\n /** The string used to label draft documents */\n 'compare-versions.status.draft': 'Nacrt',\n /** The string used to label published documents */\n 'compare-versions.status.published': 'Objavljeno',\n /** The title used when comparing versions of a document */\n 'compare-versions.title': 'Usporedi verzije',\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': 'Odustani',\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}} dokumenata',\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': 'Datasets: {{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': 'Nedostupan 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': 'Nedostupni datasets',\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}} u drugom 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}} u {{count}} datasets',\n /** Appears when hovering over the copy button to copy */\n 'confirm-delete-dialog.cdr-table.copy-id-button.tooltip': 'Kopiraj ID u međuspremnik',\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 dokumenta',\n /** The toast title when the copy button has been clicked but copying failed */\n 'confirm-delete-dialog.cdr-table.id-copied-toast.title-failed':\n 'Kopiranje ID-a dokumenta nije uspjelo',\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 projekta',\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': 'Svejedno izbriši',\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': 'Svejedno poništi objavu',\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': 'Izbriši sada',\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': 'Poništi objavu sada',\n /** If no referring documents are found, this text appears above the cancel and confirmation buttons */\n 'confirm-delete-dialog.confirmation.text_delete':\n 'Jeste li sigurni da želite izbrisati “<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 'Jeste li sigurni da želite poništiti objavu “<DocumentTitle/>”?',\n /** The text body of the error dialog. */\n 'confirm-delete-dialog.error.message.text':\n 'Došlo je do pogreške prilikom učitavanja referentnih dokumenata.',\n /** The text in the retry button of the confirm delete dialog if an error occurred. */\n 'confirm-delete-dialog.error.retry-button.text': 'Pokušaj ponovno',\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': 'Greška',\n /** The header of the confirm delete dialog */\n 'confirm-delete-dialog.header.text_delete': 'Izbrisati dokument?',\n /** The header of the confirm delete dialog */\n 'confirm-delete-dialog.header.text_unpublish': 'Poništiti objavu dokumenta?',\n /** The text that appears while the referring documents are queried */\n 'confirm-delete-dialog.loading.text': 'Traženje referentnih dokumenata…',\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 druga referenca nije prikazana',\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}} druge reference nisu prikazane',\n /** Text in the tooltip of this component if hovering over the info icon */\n 'confirm-delete-dialog.other-reference-count.tooltip':\n 'Ne možemo prikazati metapodatke za ove reference zbog nedostatka pristupnog tokena za povezane datasetove.',\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': 'Pregled nije dostupan',\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 'Ako izbrišete ovaj dokument, dokumenti koji na njega upućuju više mu neće moći pristupiti.',\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 'Ako poništite objavu ovog dokumenta, dokumenti koji na njega upućuju više mu neće moći pristupiti.',\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 upućuje 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}} dokumenta upućuju 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žda nećete moći izbrisati “<DocumentTitle/>” jer sljedeći dokumenti upućuju na njega:',\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žda nećete moći poništiti objavu “<DocumentTitle/>” jer sljedeći dokumenti upućuju na njega:',\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': 'Odustani',\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': 'Potvrdi',\n\n /** For the default structure definition, the title for the \"Content\" pane */\n 'default-definition.content-title': 'Sadržaj',\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': 'Greška: {{errorMessage}}',\n /** The text shown if the preview value for a document is non-existent or empty */\n 'doc-title.fallback.text': 'Bez naslova',\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': 'Nepoznati tip sheme: {{schemaType}}',\n\n /** Tooltip text shown for the close button of the document inspector */\n 'document-inspector.close-button.tooltip': 'Zatvori',\n /** The title shown in the dialog header, when inspecting a valid document */\n 'document-inspector.dialog.title': 'Inspekcija <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': 'Nema vrijednosti',\n /** Title shown for menu item that opens the \"Inspect\" dialog */\n 'document-inspector.menu-item.title': 'Inspekcija',\n /** the placeholder text for the search input on the inspect dialog */\n 'document-inspector.search.placeholder': 'Pretraži',\n /** The \"parsed\" view mode, meaning the JSON is searchable, collapsible etc */\n 'document-inspector.view-mode.parsed': 'Obrađeno',\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': 'Sirovi JSON',\n\n /** The text for when a form is hidden */\n 'document-view.form-view.form-hidden': 'Ovaj obrazac je skriven',\n /** Fallback title shown when a form title is not provided */\n 'document-view.form-view.form-title-fallback': 'Bez naslova',\n /** The text for when the form view is loading a document */\n 'document-view.form-view.loading': 'Učitavanje dokumenta…',\n /** The description of the sync lock toast on the form view */\n 'document-view.form-view.sync-lock-toast.description':\n 'Molimo vas da pričekate dok se dokument sinkronizira. To se obično događa odmah nakon što je dokument objavljen i ne bi trebalo trajati više od nekoliko sekundi',\n /** The title of the sync lock toast on the form view */\n 'document-view.form-view.sync-lock-toast.title': 'Sinkronizacija dokumenta…',\n\n /** The description for the document favorite action */\n 'document.favorites.add-to-favorites': 'Dodaj u favorite',\n /** The description for the document unfavorite action */\n 'document.favorites.remove-from-favorites': 'Ukloni iz favorita',\n\n /** The description for the events inspector when we can't load the document so we default to compare with published */\n 'events.compare-with-published.description':\n 'Nismo u mogućnosti učitati promjene za ovaj dokument, vjerojatno zbog politike zadržavanja povijesti vašeg plana, ovo vam pokazuje kako se <strong>{{version}}</strong> verzija uspoređuje s <strong>objavljenom</strong> verzijom.',\n /** The title for the events inspector when we can't load the document so we default to compare with published */\n 'events.compare-with-published.title': 'Usporedba s objavljenim',\n /**The title for the menu items that will be shown when expanding a publish release event to inspect the document */\n 'events.inspect.release': 'Pregledaj <VersionBadge>{{releaseTitle}}</VersionBadge> dokument',\n /**The title for the menu items that will be shown when expanding a publish draft event to inspect the draft document*/\n 'events.open.draft': 'Otvori <VersionBadge>nacrt</VersionBadge> dokument',\n /**The title for the menu items that will be shown when expanding a publish release event to inspect the release*/\n 'events.open.release': 'Otvori <VersionBadge>{{releaseTitle}}</VersionBadge> izdanje',\n\n /** The text for the add reference item in the incoming references input */\n 'incoming-references-input.add-reference-item': 'Dodaj stavku',\n /** The aria-label for the incoming references list */\n 'incoming-references-input.list-label': 'Dolazne reference tipa {{type}}',\n /** The text for the no items in the incoming references input */\n 'incoming-references-input.no-items': 'Nema stavki',\n /** The text for the reference from in the incoming references input */\n 'incoming-references-input.reference-from': 'Referenca od {{type}}',\n /** The text for the schema type not found in the incoming references input */\n 'incoming-references-input.schema-type-not-found': 'Tip sheme {{type}} nije pronađen',\n /** The text for the type to search in the incoming references input */\n 'incoming-references-input.type-to-search': 'Upišite za pretragu',\n /** The text for the loading state in the incoming references input */\n 'incoming-references-input.types-loading': 'Učitavanje dokumenata...',\n /** The text for the loading state in the incoming references input */\n 'incoming-references-input.types-loading-cross-dataset':\n 'Učitavanje dokumenata između skupova podataka...',\n /** The text for the no references defined in the incoming references input */\n 'incoming-references-input.types-not-defined':\n 'Nisu definirane dolazne reference za ovaj tip, pogledajte dokumentaciju za više informacija.',\n\n /** The text shown if there are no incoming references for a type */\n 'incoming-references-pane.no-references-found': 'Nisu pronađene reference ovog tipa.',\n /** The text shown if there is no schema type found for a document in the incoming references pane */\n 'incoming-references-pane.schema-type-not-found': 'Tip sheme {{type}} nije pronađen',\n\n /** The loading messaging for when the tooltip is still loading permission info */\n 'insufficient-permissions-message-tooltip.loading-text': 'Učitavanje…',\n\n /** --- Menu items --- */\n /** The menu item group title to use for the Action menu items */\n 'menu-item-groups.actions-group': 'Akcije',\n /** The menu item group title to use for the Layout menu items */\n 'menu-item-groups.layout-group': 'Raspored',\n /** The menu item group title to use for the Sort menu items */\n 'menu-item-groups.sorting-group': 'Sortiranje',\n\n /** The menu item title to use the compact view */\n 'menu-items.layout.compact-view': 'Kompaktan prikaz',\n /** The menu item title to use the detailed view */\n 'menu-items.layout.detailed-view': 'Detaljan prikaz',\n /** The menu item title to Sort by Created */\n 'menu-items.sort-by.created': 'Sortiraj po datumu stvaranja',\n /** The menu item title to Sort by Last Edited */\n 'menu-items.sort-by.last-edited': 'Sortiraj po zadnjoj izmjeni',\n\n /** The link text of the no document type screen that appears directly below the subtitle */\n 'no-document-types-screen.link-text': 'Saznajte kako dodati vrstu dokumenta →',\n /** The subtitle of the no document type screen that appears directly below the title */\n 'no-document-types-screen.subtitle':\n 'Molimo definirajte barem jednu vrstu dokumenta u vašoj shemi.',\n /** The title of the no document type screen */\n 'no-document-types-screen.title': 'Nema vrsta dokumenata',\n\n /** Text shown on back button visible on smaller breakpoints */\n 'pane-header.back-button.text': 'Natrag',\n /** tooltip text (via `title` attribute) for the menu button */\n 'pane-header.context-menu-button.tooltip': 'Prikaži izbornik',\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': 'Kreiraj',\n /** Tooltip displayed on the create new button in document lists */\n 'pane-header.create-new-button.tooltip': 'Kreiraj novi 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': 'Nedovoljne dozvole',\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': 'Uređeno <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': 'Nema neobjavljenih izmjena',\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 'Nema pronađene sheme za tip <Code>{{documentType}}</Code>',\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': 'Objavljeno <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': 'Nema neobjavljenih izmjena',\n\n /** The text used in the document header title if there is an error */\n 'panes.document-header-title.error.text': 'Greška: {{error}}',\n /** The text used in the document header title if creating a new item */\n 'panes.document-header-title.new.text': 'Novi {{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 naslova',\n /** The help text saying that we'll retry fetching the document list */\n 'panes.document-list-pane.error.retrying': 'Ponovni pokušaj…',\n /** The error text on the document list pane */\n 'panes.document-list-pane.error.text': 'Greška: <Code>{{error}}</Code>',\n /** The error text on the document list pane */\n 'panes.document-list-pane.error.text.dev': 'Greška: <Code>{{error}}</Code>',\n /** The error text on the document list pane if the browser appears to be offlline */\n 'panes.document-list-pane.error.text.offline': 'Čini se da je internetska veza u prekidu.',\n /** The error title on the document list pane */\n 'panes.document-list-pane.error.title': 'Nije moguće dohvatiti stavke popisa',\n /** The help text saying that we'll retry fetching the document list */\n 'panes.document-list-pane.error.will-retry-automatically_one': 'Ponovni pokušaj…',\n 'panes.document-list-pane.error.will-retry-automatically_other': 'Ponovni pokušaj… (#{{count}}).',\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': 'Prikazuje se maksimalno {{limit}} dokumenata',\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': 'Nema dokumenata ove vrste',\n /** The text of the document list pane if no documents are found */\n 'panes.document-list-pane.no-documents.text': 'Nema rezultata',\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': 'Nema odgovarajućih dokumenata',\n /** The search input for the search input on the document list pane */\n 'panes.document-list-pane.reconnecting': 'Pokušavam se povezati…',\n /** The aria-label for the search input on the document list pane */\n 'panes.document-list-pane.search-input.aria-label': 'Pretraži popis',\n /** The search input for the search input on the document list pane */\n 'panes.document-list-pane.search-input.placeholder': 'Pretraži popis',\n /** The summary title when displaying an error for a document operation result */\n 'panes.document-operation-results.error.summary.title': 'Detalji',\n /** The text when a generic operation failed (fallback, generally not shown) */\n 'panes.document-operation-results.operation-error': 'Došlo je do greške tijekom {{context}}',\n /** The text when a delete operation failed */\n 'panes.document-operation-results.operation-error_delete':\n 'Došlo je do greške pri pokušaju brisanja ovog dokumenta. To obično znači da postoje drugi dokumenti koji upućuju na njega.',\n /** The text when an unpublish operation failed */\n 'panes.document-operation-results.operation-error_unpublish':\n 'Došlo je do greške pri pokušaju povlačenja ovog dokumenta. To obično znači da postoje drugi dokumenti koji upućuju na njega.',\n /** The text when a generic operation succeeded (fallback, generally not shown) */\n 'panes.document-operation-results.operation-success': 'Uspješno izveden {{context}} na dokumentu',\n /** The text when copy URL operation succeeded */\n 'panes.document-operation-results.operation-success_copy-url':\n 'URL dokumenta kopiran u međuspremnik',\n /** */\n 'panes.document-operation-results.operation-success_createVersion':\n '<Strong>{{title}}</Strong> je dodan u izdanje',\n /** The text when a delete operation succeeded */\n 'panes.document-operation-results.operation-success_delete': 'Dokument je uspješno izbrisan',\n /** The text when a discard changes operation succeeded */\n 'panes.document-operation-results.operation-success_discardChanges':\n 'Sve promjene od posljednjeg objavljivanja su sada odbačene. Odbačeni nacrt još uvijek se može oporaviti iz povijesti',\n /** The text when a duplicate operation succeeded */\n 'panes.document-operation-results.operation-success_duplicate': 'Dokument je uspješno dupliciran',\n /** The text when a publish operation succeeded */\n 'panes.document-operation-results.operation-success_publish': 'Dokument je objavljen',\n /** The text when a restore operation succeeded */\n 'panes.document-operation-results.operation-success_restore':\n '<Strong>{{title}}</Strong> je obnovljen',\n /** The text when an unpublish operation succeeded */\n 'panes.document-operation-results.operation-success_unpublish':\n 'Dokumentu je poništena objava. Nacrt je stvoren iz posljednje objavljene verzije.',\n /** The document title shown when document title is \"undefined\" in operation message */\n 'panes.document-operation-results.operation-undefined-title': 'Bez naslova',\n /** The loading message for the document not found pane */\n 'panes.document-pane.document-not-found.loading': 'Učitavanje dokumenta…',\n /** The text of the document not found pane if the schema is known */\n 'panes.document-pane.document-not-found.text':\n 'Vrsta dokumenta nije definirana i dokument s identifikatorom <Code>{{id}}</Code> nije mogao biti pronađen.',\n /** The title of the document not found pane if the schema is known */\n 'panes.document-pane.document-not-found.title': 'Dokument nije pronađen',\n /** The text of the document not found pane if the schema is not found */\n 'panes.document-pane.document-unknown-type.text':\n 'Ovaj dokument ima vrstu sheme <Code>{{documentType}}</Code>, koja nije definirana kao tip u lokalnoj shemi sadržaja Studija.',\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 'Nepoznati tip dokumenta: <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 'Ovaj dokument ne postoji i nije definiran tip sheme za njega.',\n /** Default message shown while resolving the structure definition for an asynchronous node */\n 'panes.resolving.default-message': 'Učitavanje…',\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': 'Još se učitava…',\n /** The text to display when type is missing */\n 'panes.unknown-pane-type.missing-type.text':\n 'Elementu strukture nedostaje obavezno svojstvo <Code>type</Code>.',\n /** The title of the unknown pane */\n 'panes.unknown-pane-type.title': 'Nepoznati tip panela',\n /** The text to display when type is unknown */\n 'panes.unknown-pane-type.unknown-type.text':\n 'Element strukture tipa <Code>{{type}}</Code> nije poznat.',\n\n /** The text for the \"Open preview\" action for a document */\n 'production-preview.menu-item.title': 'Otvori pregled',\n\n /** The text for the confirm button in the request permission dialog used in the permissions banner */\n 'request-permission-dialog.confirm-button.text': 'Pošalji zahtjev',\n /** The description text for the request permission dialog used in the permissions banner */\n 'request-permission-dialog.description.text':\n 'Vaš zahtjev će biti poslan administratoru(ima) projekta. Ako želite, možete uključiti i bilješku',\n /** The header/title for the request permission dialog used in the permissions banner */\n 'request-permission-dialog.header.text': 'Zatraži pristup za uređivanje',\n /** The text describing the note input for the request permission dialog used in the permissions banner */\n 'request-permission-dialog.note-input.description.text': 'Ako želite, možete dodati bilješku',\n /** The placeholder for the note input in the request permission dialog used in the permissions banner */\n 'request-permission-dialog.note-input.placeholder.text': 'Dodaj bilješku...',\n /** The error/warning text in the request permission dialog when the user's request has been declined */\n 'request-permission-dialog.warning.denied.text':\n 'Vaš zahtjev za pristup ovom projektu je odbijen.',\n /** The error/warning text in the request permission dialog when the user's request has been denied due to too many outstanding requests */\n 'request-permission-dialog.warning.limit-reached.text':\n 'Dosegli ste limit za zahtjeve uloga u svim projektima. Pričekajte prije slanja novih zahtjeva ili kontaktirajte administratora za pomoć.',\n\n /** Label for button when status is saved */\n 'status-bar.document-status-pulse.status.saved.text': 'Spremljeno',\n /** Label for button when status is syncing */\n 'status-bar.document-status-pulse.status.syncing.text': 'Spremanje...',\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 'Zadnje objavljeno {{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 'Zadnje objavljeno <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 'Zadnje ažurirano {{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': 'Zadnje ažurirano <RelativeTime/>',\n /** Aria label for the button */\n 'status-bar.review-changes-button.aria-label': 'Pregledaj promjene',\n /** Label for button when status is saved */\n 'status-bar.review-changes-button.status.saved.text': 'Spremljeno!',\n /** Label for button when status is syncing */\n 'status-bar.review-changes-button.status.syncing.text': 'Spremanje...',\n /** Text for the secondary text for tooltip for the button */\n 'status-bar.review-changes-button.tooltip.changes-saved': 'Promjene spremljene',\n /** Primary text for tooltip for the button */\n 'status-bar.review-changes-button.tooltip.text': 'Pregledaj promjene',\n\n /** The text that appears in side the documentation link */\n 'structure-error.docs-link.text': 'Pogledaj dokumentaciju',\n /** Labels the error message or error stack of the structure error screen */\n 'structure-error.error.label': 'Greška',\n /** The header that appears at the top of the error screen */\n 'structure-error.header.text': 'Došlo je do greške prilikom čitanja strukture',\n /** The text in the reload button to retry rendering the structure */\n 'structure-error.reload-button.text': 'Ponovno učitaj',\n /** Labels the structure path of the structure error screen */\n 'structure-error.structure-path.label': 'Putanja strukture',\n\n /** The aria label for the menu button in the timeline item */\n 'timeline-item.menu-button.aria-label': 'Otvori izbornik akcija',\n /** The text for the tooltip in menu button the timeline item */\n 'timeline-item.menu-button.tooltip': 'Akcije',\n /** The text for the collapse action in the timeline item menu */\n 'timeline-item.menu.action-collapse': 'Skupi',\n /** The text for the expand action in the timeline item menu */\n 'timeline-item.menu.action-expand': 'Proširi',\n /** The text for the published event menu tooltip when the release is not found */\n 'timeline-item.not-found-release.tooltip': 'Izdanje s id-om \"{{releaseId}}\" nije pronađeno',\n\n /** The text for the \"Inline changes\" action, which is used to toggle the visibility of content diffs inside inputs */\n 'toggle-inline-changes.menu-item.title': 'Promjene u tekstu',\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 /** Label for the \"Copy document ID\" menu item */\n 'action.copy-document-id.label': 'Kopiraj ID dokumenta',\n /** Tooltip for the copy actions dropdown button in the document panel header */\n 'action.copy-document-url.label': 'Kopiraj URL dokumenta',\n /** Label for the \"Copy document URL\" menu item */\n 'action.copy-link-to-document.label': 'Kopiraj URL dokumenta',\n /** Tooltip when action button is disabled because the operation is not ready */\n 'action.delete.disabled.not-ready': 'Operacija nije spremna',\n /** Tooltip when action button is disabled because the document does not exist */\n 'action.delete.disabled.nothing-to-delete': 'Ovaj dokument ne postoji',\n /** Tooltip when action button is disabled because the document exists in scheduled releases */\n 'action.delete.disabled.scheduled-release':\n 'Ovaj dokument se ne može obrisati jer postoji unutar zakazanih objava',\n /** Label for the \"Delete\" document action button */\n 'action.delete.label': 'Izbriši',\n /** Label for the \"Delete\" document action while the document is being deleted */\n 'action.delete.running.label': 'Brisanje…',\n /** Tooltip when action is disabled because the document is linked to Canvas */\n 'action.disabled-by-canvas.tooltip':\n 'Neke akcije nad dokumentom su onemogućene za dokumente povezane s Canvasom',\n /** Message prompting the user to confirm discarding changes */\n 'action.discard-changes.confirm-dialog.confirm-discard-changes':\n 'Jeste li sigurni da želite odbaciti sve promjene od posljednjeg objavljivanja?',\n /** Message prompting the user to confirm discarding changes */\n 'action.discard-changes.confirm-dialog.confirm-discard-changes-draft':\n 'Jeste li sigurni da želite odbaciti sve promjene i izbrisati ovaj nacrt dokumenta?',\n /**Header for the confirm discard dialog */\n 'action.discard-changes.confirm-dialog.header.text': 'Odbaciti promjene?',\n /** Tooltip when action is disabled because the document has no unpublished changes */\n 'action.discard-changes.disabled.no-change': 'Ovaj dokument nema neobjavljenih promjena',\n /** Tooltip when action is disabled because the document is not published */\n 'action.discard-changes.disabled.not-published': 'Ovaj dokument nije objavljen',\n /** Tooltip when action button is disabled because the operation is not ready */\n 'action.discard-changes.disabled.not-ready': 'Operacija nije spremna',\n /** Label for the \"Discard changes\" document action */\n 'action.discard-changes.label': 'Odbaci promjene',\n /** Tooltip when action is disabled because the operation is not ready */\n 'action.duplicate.disabled.not-ready': 'Operacija nije spremna',\n /** Tooltip when action is disabled because the document doesn't exist */\n 'action.duplicate.disabled.nothing-to-duplicate':\n 'Ovaj dokument još ne postoji pa se nema što duplicirati',\n /** Label for the \"Duplicate\" document action */\n 'action.duplicate.label': 'Dupliciraj',\n /** Label for the \"Duplicate\" document action while the document is being duplicated */\n 'action.duplicate.running.label': 'Dupliciranje…',\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': 'Već objavljeno',\n /** Tooltip when publish button is disabled because the document is already published.*/\n 'action.publish.already-published.tooltip': 'Objavljeno prije {{timeSincePublished}}',\n /** Tooltip when action is disabled because the studio is not ready.*/\n 'action.publish.disabled.not-ready': 'Operacija nije spremna',\n /** Label for action when there are pending changes.*/\n 'action.publish.draft.label': 'Objavi',\n /** Label for the \"Publish\" document action */\n 'action.publish.label': 'Objavi',\n /** Label for the \"Publish\" document action when the document has live edit enabled.*/\n 'action.publish.live-edit.label': 'Objavi',\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 'Ne može se objaviti jer je za ovu vrstu dokumenta omogućen Live Edit',\n /** Tooltip for the \"Publish\" document action when the document has live edit enabled.*/\n 'action.publish.live-edit.tooltip':\n 'Za ovu vrstu sadržaja omogućen je Live Edit i objavljivanje se automatski događa dok vršite promjene',\n /** Tooltip when publish button is disabled because there are no changes.*/\n 'action.publish.no-changes.tooltip': 'Nema neobjavljenih promjena',\n /** Label for the \"Publish\" document action when there are no changes.*/\n 'action.publish.published.label': 'Objavljeno',\n /** Label for the \"Publish\" document action while publish is being executed.*/\n 'action.publish.running.label': 'Objavljivanje…',\n /** Label for the \"Publish\" document action while publish is being executed.*/\n 'action.publish.validation-in-progress.label': 'Validacija dokumenta u tijeku…',\n /** Toast description when trying to publish with validation errors */\n 'action.publish.validation-issues-toast.description':\n 'Molimo ispravite greške u validaciji prije objavljivanja',\n /** Toast title when trying to publish with validation errors */\n 'action.publish.validation-issues-toast.title': 'Greške u validaciji',\n /** Tooltip when the \"Publish\" document action is disabled due to validation issues */\n 'action.publish.validation-issues.tooltip':\n 'Postoje greške u validaciji koje treba ispraviti prije nego što se ovaj dokument može objaviti',\n /** Tooltip when publish button is waiting for validation and async tasks to complete.*/\n 'action.publish.waiting': 'Čekanje da se zadaci završe prije objavljivanja',\n /** Message prompting the user to confirm that they want to restore to an earlier revision*/\n 'action.restore.confirm.message':\n 'Jeste li sigurni da želite vratiti ovaj dokument na raniju verziju?',\n /** Fallback tooltip for when user is looking at the initial revision */\n 'action.restore.disabled.cannot-restore-initial': 'Ne možete vratiti na inicijalnu verziju',\n /** Label for the \"Restore\" document action */\n 'action.restore.label': 'Vrati',\n /** Default tooltip for the action */\n 'action.restore.tooltip': 'Vrati na ovu verziju',\n /** Tooltip when action is disabled because the document is not already published */\n 'action.unpublish.disabled.not-published': 'Ovaj dokument nije objavljen',\n /** Tooltip when action is disabled because the operation is not ready */\n 'action.unpublish.disabled.not-ready': 'Operacija nije spremna',\n /** Label for the \"Unpublish\" document action */\n 'action.unpublish.label': 'Poništi objavu',\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 'Ovaj dokument ima omogućen Live Edit i ne može biti poništena objava',\n\n /** Description for the archived release banner, rendered when viewing the history of a version document from the publihed view */\n 'banners.archived-release.description':\n 'Pregledavate dokument samo za čitanje koji je arhiviran kao dio <VersionBadge> izdanja</VersionBadge>. Ne može se uređivati',\n /** Description for the archived scheduled draft banner, rendered when viewing the history of a cardinality one release document */\n 'banners.archived-scheduled-draft.description': 'Ovaj zakazani nacrt je arhiviran',\n /** The explanation displayed when a user attempts to create a new draft document, but the draft model is not switched on */\n 'banners.choose-new-document-destination.cannot-create-draft-document':\n 'Nije moguće stvoriti dokument nacrta.',\n /** The explanation displayed when a user attempts to create a new published document, but the schema type doesn't support live-editing */\n 'banners.choose-new-document-destination.cannot-create-published-document':\n 'Nije moguće stvoriti objavljeni dokument.',\n /** The prompt displayed when a user must select a different perspective in order to create a document */\n 'banners.choose-new-document-destination.choose-destination':\n 'Odaberite odredište za ovaj dokument:',\n /** The explanation displayed when a user attempts to create a new document in a release, but the selected release is inactive */\n 'banners.choose-new-document-destination.release-inactive':\n '<VersionBadge>{{title}}</VersionBadge> izdanje nije aktivno.',\n /** The text for the restore button on the deleted document banner */\n 'banners.deleted-document-banner.restore-button.text': 'Vrati najnoviju verziju',\n /** The text content for the deleted document banner */\n 'banners.deleted-document-banner.text': 'Ovaj dokument je izbrisan.',\n /** The text content for the deprecated document type banner */\n 'banners.deprecated-document-type-banner.text': 'Ovaj tip dokumenta je zastario.',\n /** The text for publish action for discarding the version */\n 'banners.live-edit-draft-banner.discard.tooltip': 'Odbaci skicu',\n /** The text for publish action for the draft banner */\n 'banners.live-edit-draft-banner.publish.tooltip': 'Objavi za nastavak uređivanja',\n /** The text content for the live edit document when it's a draft */\n 'banners.live-edit-draft-banner.text':\n 'Tip <strong>{{schemaType}}</strong> ima omogućeno <code>liveEdit</code>, ali postoji skica ovog dokumenta. Objavite ili odbacite skicu kako biste nastavili s uređivanjem uživo.',\n /** The label for the \"compare draft\" action */\n 'banners.obsolete-draft.actions.compare-draft.text': 'Usporedi nacrt',\n /** The label for the \"discard draft\" action */\n 'banners.obsolete-draft.actions.discard-draft.text': 'Odbaci nacrt',\n /** The label for the \"publish draft\" action */\n 'banners.obsolete-draft.actions.publish-draft.text': 'Objavi nacrt',\n /** The warning displayed when editing a document that has an obsolete draft because the draft model is not switched on */\n 'banners.obsolete-draft.draft-model-inactive.text':\n 'Radni prostor nema omogućene nacrte, ali postoji nacrt verzija ovog dokumenta.',\n /** The text content for the paused scheduled draft banner */\n 'banners.paused-scheduled-draft.text':\n 'Raspored je pauziran tijekom uređivanja. Pritisnite Raspored za reaktivaciju ili odaberite novi datum.',\n /** The text for the permission check banner if the user only has one role, and it does not allow publishing this document */\n 'banners.permission-check-banner.missing-permission_create_one':\n 'Vaša uloga <Roles/> nema dozvolu za kreiranje ovog dokumenta.',\n /** The text for the permission check banner if the user only has multiple roles, but they do not allow publishing this document */\n 'banners.permission-check-banner.missing-permission_create_other':\n 'Vaše uloge <Roles/> nemaju dozvolu za kreiranje ovog dokumenta.',\n /** The text for the permission check banner if the user only has one role, and it does not allow editing this document */\n 'banners.permission-check-banner.missing-permission_update_one':\n 'Vaša uloga <Roles/> nema dozvolu za ažuriranje ovog dokumenta.',\n /** The text for the permission check banner if the user only has multiple roles, but they do not allow editing this document */\n 'banners.permission-check-banner.missing-permission_update_other':\n 'Vaše uloge <Roles/> nemaju dozvolu za ažuriranje ovog dokumenta.',\n /** The pending text for the request permission button that appears for viewer roles */\n 'banners.permission-check-banner.request-permission-button.sent': 'Zahtjev za uređivanje poslan',\n /** The text for the request permission button that appears for viewer roles */\n 'banners.permission-check-banner.request-permission-button.text': 'Zatraži pravo na uređivanje',\n /** Description for the archived release banner, rendered when viewing the history of a version document from the published view */\n 'banners.published-release.description':\n 'Pregledavate dokument samo za čitanje koji je objavljen kao dio <VersionBadge> izdanja</VersionBadge>. Ne može se uređivati',\n /** The text for the reload button */\n 'banners.reference-changed-banner.reason-changed.reload-button.text': 'Ponovno učitaj referencu',\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 'Ova referenca se promijenila otkako ste je otvorili.',\n /** The text for the close button */\n 'banners.reference-changed-banner.reason-removed.close-button.text': 'Zatvori referencu',\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 'Ova referenca je uklonjena otkako ste je otvorili.',\n /** The text that appears for the action button to add the current document to the global release */\n 'banners.release.action.add-to-release': 'Dodaj u izdanje',\n /** The text that appears for the action button to add the current document to the global release */\n 'banners.release.action.open-to-edit': 'Otvori izdanje za uređivanje',\n /** Toast description in case an error occurs when adding a document to a release */\n 'banners.release.error.description':\n 'Došlo je do pogreške prilikom dodavanja dokumenta u izdanje: {{message}}',\n /** Toast title in case an error occurs when adding a document to a release */\n 'banners.release.error.title': 'Pogreška pri dodavanju dokumenta u izdanje',\n /** The text for the banner that appears when a document only has versions but is in a draft or published pinned release */\n 'banners.release.navigate-to-edit-description': 'Dokument postoji samo u',\n /** The text for the banner that appears when a document only has versions but is in a draft or published pinned release */\n 'banners.release.navigate-to-edit-description-end_one': 'izdanju',\n /** The text for the banner that appears when a document only has versions but is in a draft or published pinned release */\n 'banners.release.navigate-to-edit-description-end_other': 'izdanjima',\n /** The text for the banner that appears when there are multiple versions but no drafts or published, only one extra releases */\n 'banners.release.navigate-to-edit-description-multiple_one':\n 'Ovaj dokument je dio <VersionBadge/> izdanja i još {{count}} izdanja.',\n /** The text for the banner that appears when there are multiple versions but no drafts or published, more than one extra releases */\n 'banners.release.navigate-to-edit-description-multiple_other':\n 'Ovaj dokument je dio <VersionBadge/> izdanja i još {{count}} izdanja',\n /** The text for the banner that appears when a document is not part of any release\n * @deprecated – no longer in use\n * */\n 'banners.release.navigate-to-edit-description-none': 'Ovaj dokument nije dio nijednog izdanja',\n /** The text for the banner that appears when a document only has one version but is in a draft or published pinned release */\n 'banners.release.navigate-to-edit-description-single':\n 'Ovaj dokument je dio <VersionBadge/> izdanja',\n /** The text for the banner that appears when a document is not in the current global release */\n 'banners.release.not-in-release': 'Nije u <Label>{{title}}</Label> izdanju.',\n /** Description of toast that will appear in case of latency between the user adding a document to a release and the UI reflecting it */\n 'banners.release.waiting.description':\n 'Molimo pričekajte dok se dokument ne doda u izdanje. Ne bi trebalo trajati duže od nekoliko sekundi.',\n /** Title of toast that will appear in case of latency between the user adding a document to a release and the UI reflecting it */\n 'banners.release.waiting.title': 'Dodavanje dokumenta u izdanje…',\n /** The text for the revision not found banner */\n 'banners.revision-not-found.description':\n 'Nismo mogli pronaći odabranu reviziju dokumenta, molimo odaberite drugi unos iz povijesne liste.',\n /** The text content for the scheduled draft override banner */\n 'banners.scheduled-draft-override-banner.text':\n 'Postoji zakazani nacrt za ovaj dokument. Ako sada objavite promjene, one će biti prebrisane kada se raspored izvrši.',\n /** The text content for the unpublished document banner when is part of a release */\n 'banners.unpublished-release-banner.text':\n 'Ovaj dokument će biti nepublikovan kao dio <VersionBadge>{{title}}</VersionBadge> izdanja',\n /** The text content for the unpublished document banner letting the user know that the current published version is being shown */\n 'banners.unpublished-release-banner.text-with-published':\n 'Prikazuje se trenutna <strong>objavljena</strong> verzija:',\n\n /** Browser/tab title when creating a new document of a given type */\n 'browser-document-title.new-document': 'Novi {{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 naslova',\n\n /** The action menu button aria-label */\n 'buttons.action-menu-button.aria-label': 'Otvori akcije dokumenta',\n /** The action menu button tooltip */\n 'buttons.action-menu-button.tooltip': 'Akcije dokumenta',\n /** The aria-label for the collapse pane button on the document panel header */\n 'buttons.focus-pane-button.aria-label.collapse':\n 'Izađite iz fokusnog načina (prikažite navigaciju)',\n /** The aria-label for the focus pane button on the document panel header */\n 'buttons.focus-pane-button.aria-label.focus': 'Uđite u fokusni način (sakrijte navigaciju)',\n /** The tooltip for the collapse pane button on the document panel header */\n 'buttons.focus-pane-button.tooltip.collapse': 'Izađite iz fokusnog načina',\n /** The tooltip for the focus pane button on the document panel header */\n 'buttons.focus-pane-button.tooltip.focus': 'Uđite u fokusni način',\n /** The aria-label for the split pane button on the document panel header */\n 'buttons.split-pane-button.aria-label': 'Podijeli ploču desno',\n /** The tool tip for the split pane button on the document panel header */\n 'buttons.split-pane-button.tooltip': 'Podijeli ploču desno',\n /** The title for the close button on the split pane on the document panel header */\n 'buttons.split-pane-close-button.title': 'Zatvori podijeljenu ploču',\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': 'Zatvori grupu ploča',\n\n /** The text for the canvas linked banner action button */\n 'canvas.banner.edit-in-canvas-action': 'Uredi u Canvasu',\n /** The text for the canvas linked banner when the document in editable mode*/\n 'canvas.banner.editable.linked-text': 'Ovaj dokument se može uređivati u Canvasu.',\n /** The description for the canvas linked banner popover in editable mode*/\n 'canvas.banner.editable.popover-description':\n 'Canvas vam omogućuje slobodno pisanje, a zatim ažuriranje sadržaja u Studiju bez ručnog kopiranja polje po polje.',\n /** The heading for the canvas linked banner popover in editable mode*/\n 'canvas.banner.editable.popover-heading': 'Pisanje slobodnim stilom',\n /** The text for the canvas linked banner when the document is a draft */\n 'canvas.banner.linked-text.draft': 'Ovaj nacrt dokumenta je povezan s Canvasom',\n /** The text for the canvas linked banner when the document is a live document */\n 'canvas.banner.linked-text.published': 'Ovaj objavljeni dokument je povezan s Canvasom',\n /** The text for the canvas linked banner when the document is a version document */\n 'canvas.banner.linked-text.version': 'Ova verzija dokumenta je povezana s Canvasom',\n /** The text for the canvas linked banner popover button */\n 'canvas.banner.popover-button-text': 'Saznajte više',\n /** The description for the canvas linked banner popover */\n 'canvas.banner.popover-description':\n 'Canvas vam omogućuje autorstvo u slobodnoj formi uredniku koji se automatski mapira natrag na Studio kao strukturirani sadržaj - dok tipkate.',\n /** The heading for the canvas linked banner popover */\n 'canvas.banner.popover-heading': 'Autorstvo s idejom na prvom mjestu',\n\n /** The description for the changes banner */\n 'changes.banner.description':\n 'Prikazuje povijest za <strong>{{perspective}}</strong> verziju ovog dokumenta.',\n /** The tooltip for the changes banner */\n 'changes.banner.tooltip':\n 'Ovaj prikaz pokazuje promjene koje su se dogodile u određenoj verziji ovog dokumenta. Odaberite drugu verziju da biste vidjeli njene promjene',\n /** The label used in the changes inspector for the from selector */\n 'changes.from.label': 'Od',\n /* The label for the history tab in the changes inspector*/\n 'changes.tab.history': 'Povijest',\n /* The label for the review tab in the changes inspector*/\n 'changes.tab.review-changes': 'Pregled promjena',\n /** The label used in the changes inspector for the to selector */\n 'changes.to.label': 'Do',\n\n /** The error message shown when the specified document comparison mode is not supported */\n 'compare-version.error.invalidModeParam': '\"{{input}}\" nije podržani način usporedbe dokumenata.',\n /** The error message shown when the next document for comparison could not be extracted from the URL */\n 'compare-version.error.invalidNextDocumentParam': 'Parametar sljedećeg dokumenta je nevažeći.',\n /** The error message shown when the document comparison URL could not be parsed */\n 'compare-version.error.invalidParams.title': 'Nemoguće usporediti dokumente',\n /** The error message shown when the previous document for comparison could not be extracted from the URL */\n 'compare-version.error.invalidPreviousDocumentParam':\n 'Parametar prethodnog dokumenta je nevažeći.',\n /** The error message shown when releases failed to load */\n 'compare-version.error.loadReleases.title': 'Učitavanje izdanja nije uspjelo',\n\n /** The text for the tooltip when the \"Compare versions\" action for a document is disabled */\n 'compare-versions.menu-item.disabled-reason': 'Nema drugih verzija ovog dokumenta za usporedbu.',\n /** The text for the \"Compare versions\" action for a document */\n 'compare-versions.menu-item.title': 'Usporedi verzije',\n /** The string used to label draft documents */\n 'compare-versions.status.draft': 'Nacrt',\n /** The string used to label published documents */\n 'compare-versions.status.published': 'Objavljeno',\n /** The title used when comparing versions of a document */\n 'compare-versions.title': 'Usporedi verzije',\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': 'Odustani',\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}} dokumenata',\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': 'Datasets: {{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': 'Nedostupan 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': 'Nedostupni datasets',\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}} u drugom 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}} u {{count}} datasets',\n /** Appears when hovering over the copy button to copy */\n 'confirm-delete-dialog.cdr-table.copy-id-button.tooltip': 'Kopiraj ID u međuspremnik',\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 dokumenta',\n /** The toast title when the copy button has been clicked but copying failed */\n 'confirm-delete-dialog.cdr-table.id-copied-toast.title-failed':\n 'Kopiranje ID-a dokumenta nije uspjelo',\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 projekta',\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': 'Svejedno izbriši',\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': 'Svejedno poništi objavu',\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': 'Izbriši sada',\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': 'Poništi objavu sada',\n /** If no referring documents are found, this text appears above the cancel and confirmation buttons */\n 'confirm-delete-dialog.confirmation.text_delete':\n 'Jeste li sigurni da želite izbrisati “<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 'Jeste li sigurni da želite poništiti objavu “<DocumentTitle/>”?',\n /** The text body of the error dialog. */\n 'confirm-delete-dialog.error.message.text':\n 'Došlo je do pogreške prilikom učitavanja referentnih dokumenata.',\n /** The text in the retry button of the confirm delete dialog if an error occurred. */\n 'confirm-delete-dialog.error.retry-button.text': 'Pokušaj ponovno',\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': 'Greška',\n /** The header of the confirm delete dialog */\n 'confirm-delete-dialog.header.text_delete': 'Izbrisati dokument?',\n /** The header of the confirm delete dialog */\n 'confirm-delete-dialog.header.text_unpublish': 'Poništiti objavu dokumenta?',\n /** The text that appears while the referring documents are queried */\n 'confirm-delete-dialog.loading.text': 'Traženje referentnih dokumenata…',\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 druga referenca nije prikazana',\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}} druge reference nisu prikazane',\n /** Text in the tooltip of this component if hovering over the info icon */\n 'confirm-delete-dialog.other-reference-count.tooltip':\n 'Ne možemo prikazati metapodatke za ove reference zbog nedostatka pristupnog tokena za povezane datasetove.',\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': 'Pregled nije dostupan',\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 'Ako izbrišete ovaj dokument, dokumenti koji na njega upućuju više mu neće moći pristupiti.',\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 'Ako poništite objavu ovog dokumenta, dokumenti koji na njega upućuju više mu neće moći pristupiti.',\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 upućuje 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}} dokumenta upućuju 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žda nećete moći izbrisati “<DocumentTitle/>” jer sljedeći dokumenti upućuju na njega:',\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žda nećete moći poništiti objavu “<DocumentTitle/>” jer sljedeći dokumenti upućuju na njega:',\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': 'Odustani',\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': 'Potvrdi',\n\n /** For the default structure definition, the title for the \"Content\" pane */\n 'default-definition.content-title': 'Sadržaj',\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': 'Greška: {{errorMessage}}',\n /** The text shown if the preview value for a document is non-existent or empty */\n 'doc-title.fallback.text': 'Bez naslova',\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': 'Nepoznati tip sheme: {{schemaType}}',\n\n /** Tooltip text shown for the close button of the document inspector */\n 'document-inspector.close-button.tooltip': 'Zatvori',\n /** The title shown in the dialog header, when inspecting a valid document */\n 'document-inspector.dialog.title': 'Inspekcija <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': 'Nema vrijednosti',\n /** Title shown for menu item that opens the \"Inspect\" dialog */\n 'document-inspector.menu-item.title': 'Inspekcija',\n /** the placeholder text for the search input on the inspect dialog */\n 'document-inspector.search.placeholder': 'Pretraži',\n /** The \"parsed\" view mode, meaning the JSON is searchable, collapsible etc */\n 'document-inspector.view-mode.parsed': 'Obrađeno',\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': 'Sirovi JSON',\n\n /** The text for when a form is hidden */\n 'document-view.form-view.form-hidden': 'Ovaj obrazac je skriven',\n /** Fallback title shown when a form title is not provided */\n 'document-view.form-view.form-title-fallback': 'Bez naslova',\n /** The text for when the form view is loading a document */\n 'document-view.form-view.loading': 'Učitavanje dokumenta…',\n /** The description of the sync lock toast on the form view */\n 'document-view.form-view.sync-lock-toast.description':\n 'Molimo vas da pričekate dok se dokument sinkronizira. To se obično događa odmah nakon što je dokument objavljen i ne bi trebalo trajati više od nekoliko sekundi',\n /** The title of the sync lock toast on the form view */\n 'document-view.form-view.sync-lock-toast.title': 'Sinkronizacija dokumenta…',\n\n /** The description for the document favorite action */\n 'document.favorites.add-to-favorites': 'Dodaj u favorite',\n /** The description for the document unfavorite action */\n 'document.favorites.remove-from-favorites': 'Ukloni iz favorita',\n\n /** The description for the events inspector when we can't load the document so we default to compare with published */\n 'events.compare-with-published.description':\n 'Nismo u mogućnosti učitati promjene za ovaj dokument, vjerojatno zbog politike zadržavanja povijesti vašeg plana, ovo vam pokazuje kako se <strong>{{version}}</strong> verzija uspoređuje s <strong>objavljenom</strong> verzijom.',\n /** The title for the events inspector when we can't load the document so we default to compare with published */\n 'events.compare-with-published.title': 'Usporedba s objavljenim',\n /**The title for the menu items that will be shown when expanding a publish release event to inspect the document */\n 'events.inspect.release': 'Pregledaj <VersionBadge>{{releaseTitle}}</VersionBadge> dokument',\n /**The title for the menu items that will be shown when expanding a publish draft event to inspect the draft document*/\n 'events.open.draft': 'Otvori <VersionBadge>nacrt</VersionBadge> dokument',\n /**The title for the menu items that will be shown when expanding a publish release event to inspect the release*/\n 'events.open.release': 'Otvori <VersionBadge>{{releaseTitle}}</VersionBadge> izdanje',\n\n /** The text for the add reference item in the incoming references input */\n 'incoming-references-input.add-reference-item': 'Dodaj stavku',\n /** The aria-label for the incoming references list */\n 'incoming-references-input.list-label': 'Dolazne reference tipa {{type}}',\n /** The text for the no items in the incoming references input */\n 'incoming-references-input.no-items': 'Nema stavki',\n /** The text for the reference from in the incoming references input */\n 'incoming-references-input.reference-from': 'Referenca od {{type}}',\n /** The text for the schema type not found in the incoming references input */\n 'incoming-references-input.schema-type-not-found': 'Tip sheme {{type}} nije pronađen',\n /** The text for the type to search in the incoming references input */\n 'incoming-references-input.type-to-search': 'Upišite za pretragu',\n /** The text for the loading state in the incoming references input */\n 'incoming-references-input.types-loading': 'Učitavanje dokumenata...',\n /** The text for the loading state in the incoming references input */\n 'incoming-references-input.types-loading-cross-dataset':\n 'Učitavanje dokumenata između skupova podataka...',\n /** The text for the no references defined in the incoming references input */\n 'incoming-references-input.types-not-defined':\n 'Nisu definirane dolazne reference za ovaj tip, pogledajte dokumentaciju za više informacija.',\n\n /** The text shown if there are no incoming references for a type */\n 'incoming-references-pane.no-references-found': 'Nisu pronađene reference ovog tipa.',\n /** The text shown if there is no schema type found for a document in the incoming references pane */\n 'incoming-references-pane.schema-type-not-found': 'Tip sheme {{type}} nije pronađen',\n\n /** The loading messaging for when the tooltip is still loading permission info */\n 'insufficient-permissions-message-tooltip.loading-text': 'Učitavanje…',\n\n /** --- Menu items --- */\n /** The menu item group title to use for the Action menu items */\n 'menu-item-groups.actions-group': 'Akcije',\n /** The menu item group title to use for the Layout menu items */\n 'menu-item-groups.layout-group': 'Raspored',\n /** The menu item group title to use for the Sort menu items */\n 'menu-item-groups.sorting-group': 'Sortiranje',\n\n /** The menu item title to use the compact view */\n 'menu-items.layout.compact-view': 'Kompaktan prikaz',\n /** The menu item title to use the detailed view */\n 'menu-items.layout.detailed-view': 'Detaljan prikaz',\n /** The menu item title to Sort by Created */\n 'menu-items.sort-by.created': 'Sortiraj po datumu stvaranja',\n /** The menu item title to Sort by Last Edited */\n 'menu-items.sort-by.last-edited': 'Sortiraj po zadnjoj izmjeni',\n\n /** The link text of the no document type screen that appears directly below the subtitle */\n 'no-document-types-screen.link-text': 'Saznajte kako dodati vrstu dokumenta →',\n /** The subtitle of the no document type screen that appears directly below the title */\n 'no-document-types-screen.subtitle':\n 'Molimo definirajte barem jednu vrstu dokumenta u vašoj shemi.',\n /** The title of the no document type screen */\n 'no-document-types-screen.title': 'Nema vrsta dokumenata',\n\n /** Text shown on back button visible on smaller breakpoints */\n 'pane-header.back-button.text': 'Natrag',\n /** tooltip text (via `title` attribute) for the menu button */\n 'pane-header.context-menu-button.tooltip': 'Prikaži izbornik',\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': 'Kreiraj',\n /** Tooltip displayed on the create new button in document lists */\n 'pane-header.create-new-button.tooltip': 'Kreiraj novi 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': 'Nedovoljne dozvole',\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': 'Uređeno <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': 'Nema neobjavljenih izmjena',\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 'Nema pronađene sheme za tip <Code>{{documentType}}</Code>',\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': 'Objavljeno <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': 'Nema neobjavljenih izmjena',\n\n /** The text used in the document header title if there is an error */\n 'panes.document-header-title.error.text': 'Greška: {{error}}',\n /** The text used in the document header title if creating a new item */\n 'panes.document-header-title.new.text': 'Novi {{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 naslova',\n /** The help text saying that we'll retry fetching the document list */\n 'panes.document-list-pane.error.retrying': 'Ponovni pokušaj…',\n /** The error text on the document list pane */\n 'panes.document-list-pane.error.text': 'Greška: <Code>{{error}}</Code>',\n /** The error text on the document list pane */\n 'panes.document-list-pane.error.text.dev': 'Greška: <Code>{{error}}</Code>',\n /** The error text on the document list pane if the browser appears to be offlline */\n 'panes.document-list-pane.error.text.offline': 'Čini se da je internetska veza u prekidu.',\n /** The error title on the document list pane */\n 'panes.document-list-pane.error.title': 'Nije moguće dohvatiti stavke popisa',\n /** The help text saying that we'll retry fetching the document list */\n 'panes.document-list-pane.error.will-retry-automatically_one': 'Ponovni pokušaj…',\n 'panes.document-list-pane.error.will-retry-automatically_other': 'Ponovni pokušaj… (#{{count}}).',\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': 'Prikazuje se maksimalno {{limit}} dokumenata',\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': 'Nema dokumenata ove vrste',\n /** The text of the document list pane if no documents are found */\n 'panes.document-list-pane.no-documents.text': 'Nema rezultata',\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': 'Nema odgovarajućih dokumenata',\n /** The search input for the search input on the document list pane */\n 'panes.document-list-pane.reconnecting': 'Pokušavam se povezati…',\n /** The aria-label for the search input on the document list pane */\n 'panes.document-list-pane.search-input.aria-label': 'Pretraži popis',\n /** The search input for the search input on the document list pane */\n 'panes.document-list-pane.search-input.placeholder': 'Pretraži popis',\n /** The summary title when displaying an error for a document operation result */\n 'panes.document-operation-results.error.summary.title': 'Detalji',\n /** The text when a generic operation failed (fallback, generally not shown) */\n 'panes.document-operation-results.operation-error': 'Došlo je do greške tijekom {{context}}',\n /** The text when a delete operation failed */\n 'panes.document-operation-results.operation-error_delete':\n 'Došlo je do greške pri pokušaju brisanja ovog dokumenta. To obično znači da postoje drugi dokumenti koji upućuju na njega.',\n /** The text when an unpublish operation failed */\n 'panes.document-operation-results.operation-error_unpublish':\n 'Došlo je do greške pri pokušaju povlačenja ovog dokumenta. To obično znači da postoje drugi dokumenti koji upućuju na njega.',\n /** The text when a generic operation succeeded (fallback, generally not shown) */\n 'panes.document-operation-results.operation-success': 'Uspješno izveden {{context}} na dokumentu',\n /** The text when copy document ID operation succeeded */\n 'panes.document-operation-results.operation-success_copy-id':\n 'ID dokumenta kopiran u međuspremnik',\n /** The text when copy URL operation succeeded */\n 'panes.document-operation-results.operation-success_copy-url':\n 'URL dokumenta kopiran u međuspremnik',\n /** */\n 'panes.document-operation-results.operation-success_createVersion':\n '<Strong>{{title}}</Strong> je dodan u izdanje',\n /** The text when a delete operation succeeded */\n 'panes.document-operation-results.operation-success_delete': 'Dokument je uspješno izbrisan',\n /** The text when a discard changes operation succeeded */\n 'panes.document-operation-results.operation-success_discardChanges':\n 'Sve promjene od posljednjeg objavljivanja su sada odbačene. Odbačeni nacrt još uvijek se može oporaviti iz povijesti',\n /** The text when a duplicate operation succeeded */\n 'panes.document-operation-results.operation-success_duplicate': 'Dokument je uspješno dupliciran',\n /** The text when a publish operation succeeded */\n 'panes.document-operation-results.operation-success_publish': 'Dokument je objavljen',\n /** The text when a restore operation succeeded */\n 'panes.document-operation-results.operation-success_restore':\n '<Strong>{{title}}</Strong> je obnovljen',\n /** The text when an unpublish operation succeeded */\n 'panes.document-operation-results.operation-success_unpublish':\n 'Dokumentu je poništena objava. Nacrt je stvoren iz posljednje objavljene verzije.',\n /** The document title shown when document title is \"undefined\" in operation message */\n 'panes.document-operation-results.operation-undefined-title': 'Bez naslova',\n /** The loading message for the document not found pane */\n 'panes.document-pane.document-not-found.loading': 'Učitavanje dokumenta…',\n /** The text of the document not found pane if the schema is known */\n 'panes.document-pane.document-not-found.text':\n 'Vrsta dokumenta nije definirana i dokument s identifikatorom <Code>{{id}}</Code> nije mogao biti pronađen.',\n /** The title of the document not found pane if the schema is known */\n 'panes.document-pane.document-not-found.title': 'Dokument nije pronađen',\n /** The text of the document not found pane if the schema is not found */\n 'panes.document-pane.document-unknown-type.text':\n 'Ovaj dokument ima vrstu sheme <Code>{{documentType}}</Code>, koja nije definirana kao tip u lokalnoj shemi sadržaja Studija.',\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 'Nepoznati tip dokumenta: <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 'Ovaj dokument ne postoji i nije definiran tip sheme za njega.',\n /** Default message shown while resolving the structure definition for an asynchronous node */\n 'panes.resolving.default-message': 'Učitavanje…',\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': 'Još se učitava…',\n /** The text to display when type is missing */\n 'panes.unknown-pane-type.missing-type.text':\n 'Elementu strukture nedostaje obavezno svojstvo <Code>type</Code>.',\n /** The title of the unknown pane */\n 'panes.unknown-pane-type.title': 'Nepoznati tip panela',\n /** The text to display when type is unknown */\n 'panes.unknown-pane-type.unknown-type.text':\n 'Element strukture tipa <Code>{{type}}</Code> nije poznat.',\n\n /** The text for the \"Open preview\" action for a document */\n 'production-preview.menu-item.title': 'Otvori pregled',\n\n /** The text for the confirm button in the request permission dialog used in the permissions banner */\n 'request-permission-dialog.confirm-button.text': 'Pošalji zahtjev',\n /** The description text for the request permission dialog used in the permissions banner */\n 'request-permission-dialog.description.text':\n 'Vaš zahtjev će biti poslan administratoru(ima) projekta. Ako želite, možete uključiti i bilješku',\n /** The header/title for the request permission dialog used in the permissions banner */\n 'request-permission-dialog.header.text': 'Zatraži pristup za uređivanje',\n /** The text describing the note input for the request permission dialog used in the permissions banner */\n 'request-permission-dialog.note-input.description.text': 'Ako želite, možete dodati bilješku',\n /** The placeholder for the note input in the request permission dialog used in the permissions banner */\n 'request-permission-dialog.note-input.placeholder.text': 'Dodaj bilješku...',\n /** The error/warning text in the request permission dialog when the user's request has been declined */\n 'request-permission-dialog.warning.denied.text':\n 'Vaš zahtjev za pristup ovom projektu je odbijen.',\n /** The error/warning text in the request permission dialog when the user's request has been denied due to too many outstanding requests */\n 'request-permission-dialog.warning.limit-reached.text':\n 'Dosegli ste limit za zahtjeve uloga u svim projektima. Pričekajte prije slanja novih zahtjeva ili kontaktirajte administratora za pomoć.',\n\n /** Label for button when status is saved */\n 'status-bar.document-status-pulse.status.saved.text': 'Spremljeno',\n /** Label for button when status is syncing */\n 'status-bar.document-status-pulse.status.syncing.text': 'Spremanje...',\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 'Zadnje objavljeno {{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 'Zadnje objavljeno <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 'Zadnje ažurirano {{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': 'Zadnje ažurirano <RelativeTime/>',\n /** Aria label for the button */\n 'status-bar.review-changes-button.aria-label': 'Pregledaj promjene',\n /** Label for button when status is saved */\n 'status-bar.review-changes-button.status.saved.text': 'Spremljeno!',\n /** Label for button when status is syncing */\n 'status-bar.review-changes-button.status.syncing.text': 'Spremanje...',\n /** Text for the secondary text for tooltip for the button */\n 'status-bar.review-changes-button.tooltip.changes-saved': 'Promjene spremljene',\n /** Primary text for tooltip for the button */\n 'status-bar.review-changes-button.tooltip.text': 'Pregledaj promjene',\n\n /** The text that appears in side the documentation link */\n 'structure-error.docs-link.text': 'Pogledaj dokumentaciju',\n /** Labels the error message or error stack of the structure error screen */\n 'structure-error.error.label': 'Greška',\n /** The header that appears at the top of the error screen */\n 'structure-error.header.text': 'Došlo je do greške prilikom čitanja strukture',\n /** The text in the reload button to retry rendering the structure */\n 'structure-error.reload-button.text': 'Ponovno učitaj',\n /** Labels the structure path of the structure error screen */\n 'structure-error.structure-path.label': 'Putanja strukture',\n\n /** The aria label for the menu button in the timeline item */\n 'timeline-item.menu-button.aria-label': 'Otvori izbornik akcija',\n /** The text for the tooltip in menu button the timeline item */\n 'timeline-item.menu-button.tooltip': 'Akcije',\n /** The text for the collapse action in the timeline item menu */\n 'timeline-item.menu.action-collapse': 'Skupi',\n /** The text for the expand action in the timeline item menu */\n 'timeline-item.menu.action-expand': 'Proširi',\n /** The text for the published event menu tooltip when the release is not found */\n 'timeline-item.not-found-release.tooltip': 'Izdanje s id-om \"{{releaseId}}\" nije pronađeno',\n\n /** The text for the \"Inline changes\" action, which is used to toggle the visibility of content diffs inside inputs */\n 'toggle-inline-changes.menu-item.title': 'Promjene u tekstu',\n})\n"],"names":["removeUndefinedLocaleResources"],"mappings":"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"}
|
|
@@ -73,6 +73,8 @@ var sanity = require("sanity"), studio = sanity.removeUndefinedLocaleResources({
|
|
|
73
73
|
"asset-source.asset-usage-dialog.header_image": "Dokumenti koji koriste sliku",
|
|
74
74
|
/** Text shown in usage dialog when loading documents using the selected asset */
|
|
75
75
|
"asset-source.asset-usage-dialog.loading": "U\u010Ditavanje\u2026",
|
|
76
|
+
/** Browse button text */
|
|
77
|
+
"asset-source.browse-button.text": "Odaberi",
|
|
76
78
|
/** Text for cancel action in delete-asset dialog */
|
|
77
79
|
"asset-source.delete-dialog.action.cancel": "Odustani",
|
|
78
80
|
/** Text for "confirm delete" action in delete-asset dialog */
|
|
@@ -108,12 +110,6 @@ var sanity = require("sanity"), studio = sanity.removeUndefinedLocaleResources({
|
|
|
108
110
|
/** Select asset dialog select-button */
|
|
109
111
|
"asset-source.dialog.button.select": "Odaberi",
|
|
110
112
|
/** Keys shared between both image asset source and file asset source */
|
|
111
|
-
/** Select asset dialog title for files */
|
|
112
|
-
"asset-source.dialog.default-title_file": "Odaberite datoteku",
|
|
113
|
-
/** Select asset dialog title for images */
|
|
114
|
-
"asset-source.dialog.default-title_image": "Odaberite sliku",
|
|
115
|
-
/** Select asset dialog title for videos */
|
|
116
|
-
"asset-source.dialog.default-title_video": "Odaberite video",
|
|
117
113
|
/** Insert asset error */
|
|
118
114
|
"asset-source.dialog.insert-asset-error": "Gre\u0161ka pri umetanju resursa. Za vi\u0161e informacija pogledajte konzolu.",
|
|
119
115
|
/** Select asset dialog load more items */
|
|
@@ -182,10 +178,8 @@ var sanity = require("sanity"), studio = sanity.removeUndefinedLocaleResources({
|
|
|
182
178
|
"asset-sources.media-library.open-in-source-dialog.button.select-new-asset-fallback": "Odaberite novu datoteku",
|
|
183
179
|
/** Title for the open in source dialog */
|
|
184
180
|
"asset-sources.media-library.open-in-source-dialog.title": "Uredi datoteku",
|
|
185
|
-
/**
|
|
186
|
-
"asset-sources.media-library.
|
|
187
|
-
"asset-sources.media-library.select-dialog.title_image": "Odabir slike za {{targetTitle}}",
|
|
188
|
-
"asset-sources.media-library.select-dialog.title_video": "Odabir videa za {{targetTitle}}",
|
|
181
|
+
/** Title for the upload dialog (component mode) */
|
|
182
|
+
"asset-sources.media-library.upload-dialog.title": "U\u010Ditaj u Media Library",
|
|
189
183
|
/** Warning message shown when uploading already existing files to the Media Library Asset Source */
|
|
190
184
|
"asset-sources.media-library.warning.file-already-exist.description": "Koristi se postoje\u0107a datoteka prona\u0111ena u knji\u017Enici.",
|
|
191
185
|
"asset-sources.media-library.warning.file-already-exist.title": "Datoteka: '{{filename}}' ve\u0107 postoji",
|
|
@@ -434,6 +428,10 @@ var sanity = require("sanity"), studio = sanity.removeUndefinedLocaleResources({
|
|
|
434
428
|
"document-status.revision-from": "Revizija od <em>{{date}}</em>",
|
|
435
429
|
/** Label to show in the document footer indicating that the revision was not found */
|
|
436
430
|
"document-status.revision-not-found": "Revizija nije prona\u0111ena",
|
|
431
|
+
/** Toast description shown when saving changes is taking longer than expected */
|
|
432
|
+
"document-store.slow-commit.description": "Va\u0161e promjene se jo\u0161 uvijek spremaju.",
|
|
433
|
+
/** Toast title shown when saving changes is taking longer than expected */
|
|
434
|
+
"document-store.slow-commit.title": "Spremanje traje dulje nego o\u010Dekivano",
|
|
437
435
|
/** Label to indicate that a document type was not found */
|
|
438
436
|
"document.type.not-found": 'Tip dokumenta "{{type}}" nije prona\u0111en',
|
|
439
437
|
/** Error message shown when an action cannot be performed */
|
|
@@ -571,6 +569,8 @@ var sanity = require("sanity"), studio = sanity.removeUndefinedLocaleResources({
|
|
|
571
569
|
"inputs.array.action.duplicate": "Dupliciraj",
|
|
572
570
|
/** Label for editing the item of a specific type, eg "Edit Person" */
|
|
573
571
|
"inputs.array.action.edit": "Uredi {{itemTypeTitle}}",
|
|
572
|
+
/** Tooltip text explaining why adding items is disabled when array max is reached */
|
|
573
|
+
"inputs.array.action.max-reached": "Dostignut maksimalan broj stavki",
|
|
574
574
|
/** Label for removing an array item action */
|
|
575
575
|
"inputs.array.action.remove": "Ukloni",
|
|
576
576
|
/** Label for removing action when an array item has an error */
|
|
@@ -619,10 +619,6 @@ var sanity = require("sanity"), studio = sanity.removeUndefinedLocaleResources({
|
|
|
619
619
|
"inputs.datetime.placeholder": "npr. {{example}}",
|
|
620
620
|
/** Acessibility label for button to open file options menu */
|
|
621
621
|
"inputs.file.actions-menu.file-options.aria-label": "Otvori izbornik opcija datoteke",
|
|
622
|
-
/** Browse */
|
|
623
|
-
"inputs.file.browse-button.text": "Pretra\u017Ei",
|
|
624
|
-
/** Select file */
|
|
625
|
-
"inputs.file.dialog.title": "Odaberi datoteku",
|
|
626
622
|
/** Unknown member kind: `{{kind}}` */
|
|
627
623
|
"inputs.file.error.unknown-member-kind": "Nepoznata vrsta \u010Dlana: {{kind}}",
|
|
628
624
|
/** The value of this field is not a valid file. Resetting this field will let you choose a new file. */
|
|
@@ -631,8 +627,6 @@ var sanity = require("sanity"), studio = sanity.removeUndefinedLocaleResources({
|
|
|
631
627
|
"inputs.file.invalid-file-warning.reset-button.text": "Resetiraj vrijednost",
|
|
632
628
|
/** Invalid file value */
|
|
633
629
|
"inputs.file.invalid-file-warning.title": "Neispravna vrijednost datoteke",
|
|
634
|
-
/** Select */
|
|
635
|
-
"inputs.file.multi-browse-button.text": "Odaberi",
|
|
636
630
|
/** The upload could not be completed at this time. */
|
|
637
631
|
"inputs.file.upload-failed.description": "Prijenos nije mogu\u0107e dovr\u0161iti u ovom trenutku.",
|
|
638
632
|
/** Upload failed */
|
|
@@ -692,14 +686,14 @@ var sanity = require("sanity"), studio = sanity.removeUndefinedLocaleResources({
|
|
|
692
686
|
"inputs.files.common.stale-upload-warning.description": "Prijenos nije napredovao najmanje {{staleThresholdMinutes}} minuta i vjerojatno je prekinut. Mo\u017Eete sigurno o\u010Distiti nedovr\u0161eni prijenos i poku\u0161ati ponovno u\u010Ditati.",
|
|
693
687
|
/** Incomplete upload */
|
|
694
688
|
"inputs.files.common.stale-upload-warning.title": "Nedovr\u0161eni prijenos",
|
|
689
|
+
/** Select file */
|
|
690
|
+
"inputs.files.select-dialog.title": 'Odaberi datoteku za \u201E{{targetTitle}}"',
|
|
695
691
|
/** Tooltip text for action to crop image */
|
|
696
692
|
"inputs.image.actions-menu.crop-image-tooltip": "Obre\u017Ei sliku",
|
|
697
693
|
/** Accessibility label for button to open image edit dialog */
|
|
698
694
|
"inputs.image.actions-menu.edit-details.aria-label": "Otvori dijalog za ure\u0111ivanje slike",
|
|
699
695
|
/** Accessibility label for button to open image options menu */
|
|
700
696
|
"inputs.image.actions-menu.options.aria-label": "Otvori izbornik opcija slike",
|
|
701
|
-
/** Select */
|
|
702
|
-
"inputs.image.browse-menu.text": "Odaberi",
|
|
703
697
|
/** Cannot upload this file here */
|
|
704
698
|
"inputs.image.drag-overlay.cannot-upload-here": "Ovdje nije mogu\u0107e u\u010Ditati datoteku",
|
|
705
699
|
/** Drop image to upload */
|
|
@@ -720,6 +714,8 @@ var sanity = require("sanity"), studio = sanity.removeUndefinedLocaleResources({
|
|
|
720
714
|
"inputs.image.invalid-image-warning.title": "Neva\u017Ee\u0107a vrijednost slike",
|
|
721
715
|
/** Preview of uploaded image */
|
|
722
716
|
"inputs.image.preview-uploaded-image": "Pregled u\u010Ditane slike",
|
|
717
|
+
/** Select image */
|
|
718
|
+
"inputs.image.select-dialog.title": 'Odaberi sliku za \u201E{{targetTitle}}"',
|
|
723
719
|
/** The upload could not be completed at this time. */
|
|
724
720
|
"inputs.image.upload-error.description": "Prijenos trenutno nije mogu\u0107e dovr\u0161iti.",
|
|
725
721
|
/** Upload failed */
|
|
@@ -767,6 +763,8 @@ var sanity = require("sanity"), studio = sanity.removeUndefinedLocaleResources({
|
|
|
767
763
|
"inputs.object.field-group-tabs.validation-warning": "upozorenje",
|
|
768
764
|
/** Read-only field description */
|
|
769
765
|
"inputs.object.unknown-fields.read-only.description": "Ovo polje je <strong>samo za \u010Ditanje</strong> prema shemi dokumenta i ne mo\u017Ee se poni\u0161titi. Ako \u017Eelite mo\u0107i poni\u0161titi ovo u Studiju, pobrinite se da uklonite <code>readOnly</code> polje iz obuhva\u0107enog tipa u shemi.",
|
|
766
|
+
/** Fallback description shown when the unknown reference preview cannot be loaded */
|
|
767
|
+
"inputs.object.unknown-fields.reference.preview.unavailable": 'Nije mogu\u0107e u\u010Ditati pregled za referencu \u201E{{documentId}}".',
|
|
770
768
|
/** Remove field */
|
|
771
769
|
"inputs.object.unknown-fields.remove-field-button.text": "Ukloni polje",
|
|
772
770
|
/** Encountered `{{count}}` fields that are not defined in the schema. */
|
|
@@ -1072,6 +1070,8 @@ var sanity = require("sanity"), studio = sanity.removeUndefinedLocaleResources({
|
|
|
1072
1070
|
"inputs.untyped-value.title": "Vrijednost svojstva nedostaje <code>_type</code>",
|
|
1073
1071
|
/** Unset value */
|
|
1074
1072
|
"inputs.untyped-value.unset-item-button.text": "Poni\u0161ti vrijednost",
|
|
1073
|
+
/** Select video */
|
|
1074
|
+
"inputs.video.select-dialog.title": 'Odaberi video za \u201E{{targetTitle}}"',
|
|
1075
1075
|
/** The fallback explanation if no context is provided */
|
|
1076
1076
|
"insufficient-permissions-message.not-authorized-explanation": "Nemate dopu\u0161tenje za pristup ovoj zna\u010Dajci.",
|
|
1077
1077
|
/** The explanation when unable to create any document at all */
|
|
@@ -1922,6 +1922,10 @@ var sanity = require("sanity"), studio = sanity.removeUndefinedLocaleResources({
|
|
|
1922
1922
|
"user-menu.login-provider": "Prijavljeni s {{providerTitle}}",
|
|
1923
1923
|
/** Label for open menu button for user menu */
|
|
1924
1924
|
"user-menu.open-menu": "Otvori izbornik",
|
|
1925
|
+
/** Label for other users' agent bundle versions */
|
|
1926
|
+
"version.agent-bundle.agent-changes": "Promjene agenta",
|
|
1927
|
+
/** Label for the current user's agent bundle versions */
|
|
1928
|
+
"version.agent-bundle.proposed-changes": "Predlo\u017Eene promjene",
|
|
1925
1929
|
/**
|
|
1926
1930
|
* Label for action to add a workspace (currently a developer-oriented action, as this will
|
|
1927
1931
|
* lead to the documentation on workspace configuration)
|