@sanity/locale-is-is 1.2.10 → 1.2.12

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.
Files changed (43) hide show
  1. package/dist/_chunks-cjs/comments.cjs +2 -8
  2. package/dist/_chunks-cjs/comments.cjs.map +1 -1
  3. package/dist/_chunks-cjs/copy-paste.cjs +2 -16
  4. package/dist/_chunks-cjs/copy-paste.cjs.map +1 -1
  5. package/dist/_chunks-cjs/create.cjs +2 -6
  6. package/dist/_chunks-cjs/create.cjs.map +1 -1
  7. package/dist/_chunks-cjs/structure.cjs +60 -10
  8. package/dist/_chunks-cjs/structure.cjs.map +1 -1
  9. package/dist/_chunks-cjs/studio.cjs +124 -6
  10. package/dist/_chunks-cjs/studio.cjs.map +1 -1
  11. package/dist/_chunks-cjs/tasks.cjs +5 -7
  12. package/dist/_chunks-cjs/tasks.cjs.map +1 -1
  13. package/dist/_chunks-cjs/validation.cjs +2 -6
  14. package/dist/_chunks-cjs/validation.cjs.map +1 -1
  15. package/dist/_chunks-cjs/vision.cjs +10 -6
  16. package/dist/_chunks-cjs/vision.cjs.map +1 -1
  17. package/dist/_chunks-es/comments.js +4 -6
  18. package/dist/_chunks-es/comments.js.map +1 -1
  19. package/dist/_chunks-es/copy-paste.js +4 -14
  20. package/dist/_chunks-es/copy-paste.js.map +1 -1
  21. package/dist/_chunks-es/create.js +4 -4
  22. package/dist/_chunks-es/create.js.map +1 -1
  23. package/dist/_chunks-es/structure.js +62 -8
  24. package/dist/_chunks-es/structure.js.map +1 -1
  25. package/dist/_chunks-es/studio.js +126 -4
  26. package/dist/_chunks-es/studio.js.map +1 -1
  27. package/dist/_chunks-es/tasks.js +7 -5
  28. package/dist/_chunks-es/tasks.js.map +1 -1
  29. package/dist/_chunks-es/validation.js +4 -4
  30. package/dist/_chunks-es/validation.js.map +1 -1
  31. package/dist/_chunks-es/vision.js +12 -4
  32. package/dist/_chunks-es/vision.js.map +1 -1
  33. package/dist/index.cjs +28 -17
  34. package/dist/index.cjs.map +1 -1
  35. package/dist/index.js +13 -14
  36. package/dist/index.js.map +1 -1
  37. package/package.json +1 -1
  38. package/src/comments.ts +0 -3
  39. package/src/copy-paste.ts +0 -11
  40. package/src/structure.ts +70 -4
  41. package/src/studio.ts +131 -0
  42. package/src/tasks.ts +3 -0
  43. package/src/vision.ts +10 -0
@@ -1,5 +1,4 @@
1
- import { removeUndefinedLocaleResources } from 'sanity';
2
-
1
+ import { removeUndefinedLocaleResources } from "sanity";
3
2
  var tasks = removeUndefinedLocaleResources({
4
3
  /** The label for the create task action */
5
4
  "actions.create.text": "B\xFAa til n\xFDtt verkefni",
@@ -148,8 +147,11 @@ var tasks = removeUndefinedLocaleResources({
148
147
  /** Label for the Active Document Tab */
149
148
  "tab.document.label": "Virk skjal",
150
149
  /** Label for the Subscribed Tab */
151
- "tab.subscribed.label": "\xC1skrifandi"
150
+ "tab.subscribed.label": "\xC1skrifandi",
151
+ /** Tooltip for the tasks navbar icon */
152
+ "toolbar.tooltip": "Verkefni"
152
153
  });
153
-
154
- export { tasks as default };
154
+ export {
155
+ tasks as default
156
+ };
155
157
  //# sourceMappingURL=tasks.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"tasks.js","sources":["../../src/tasks.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** The label for the create task action */\n 'actions.create.text': 'Búa til nýtt verkefni',\n /** The label for the open tasks panel action */\n 'actions.open.text': 'Verkefni',\n\n /** The label for the button to create a new task */\n 'buttons.create.text': 'Búa til verkefni',\n /** The label for the button to discard changes */\n 'buttons.discard.text': 'Hætta við',\n /** The label for the button to open the draft */\n 'buttons.draft.text': 'Drög',\n /** The label for the button to create a new task */\n 'buttons.new.text': 'Nýtt verkefni',\n /** The text for tooltip in the create a new task button when mode is upsell */\n 'buttons.new.upsell-tooltip': 'Uppfærðu til að búa til verkefni',\n /** The label for the button that will navigate to the next task */\n 'buttons.next.tooltip': 'Fara á næsta verkefni',\n /** The label for the button that will previous to the next task */\n 'buttons.previous.tooltip': 'Fara á fyrri verkefni',\n\n /** Text for the remove task dialog asking for confirmation of deletion */\n 'dialog.remove-task.body': 'Ertu viss um að þú viljir eyða þessu verkefni?',\n /** The label for the cancel button on the remove task dialog */\n 'dialog.remove-task.buttons.cancel.text': 'Hætta við',\n /** The label for the confirmation button on the remove task dialog */\n 'dialog.remove-task.buttons.confirm.text': 'Fjarlægja',\n /** The title for the remove task dialog */\n 'dialog.remove-task.title': 'Fjarlægja verkefni',\n\n /** The text used as a placeholder for the footer action in a document with a single task */\n 'document.footer.open-tasks.placeholder_one': 'Opna verkefni',\n /** The text used as a placeholder for the footer action in a document with multiple tasks */\n 'document.footer.open-tasks.placeholder_other': 'Opna verkefni',\n /** The label used in the button in the footer action in a document with a single task */\n 'document.footer.open-tasks.text_one': '{{count}} opið verkefni',\n /** The label used in the button in the footer action in a document with multiple tasks */\n 'document.footer.open-tasks.text_other': '{{count}} opin verkefni',\n\n /** The heading in the tasks sidebar, in the assigned tab, when the user hasn't been assigned to any task*/\n 'empty-state.list.assigned.heading': 'Þér hefur ekki verið úthlutað neinum verkefnum',\n /** The text in the tasks sidebar, in the assigned tab, when the user hasn't been assigned to any task*/\n 'empty-state.list.assigned.text': 'Þegar þér hefur verið úthlutað verkefnum munu þau birtast hér',\n /** The text in the tasks sidebar button any of the empty states is rendered*/\n 'empty-state.list.create-new': 'Búa til nýtt verkefni',\n /** The heading in the tasks sidebar, in the document tab, when the document doesn't have any task*/\n 'empty-state.list.document.heading': 'Þetta skjal hefur engin verkefni ennþá',\n /** The text in the tasks sidebar, in the document tab, when the document doesn't have any task*/\n 'empty-state.list.document.text': 'Þegar skjal hefur tengd verkefni, munu þau birtast hér.',\n /** The heading in the tasks sidebar, when viewing the document tab, but there is not an active document*/\n 'empty-state.list.no-active-document.heading': 'Opnaðu skjal til að sjá verkefni þess',\n /** The text in the tasks sidebar, when viewing the document tab, but there is not an active document*/\n 'empty-state.list.no-active-document.text': 'Verkefni á virka skjalinu þínu munu birtast hér.',\n /** The heading in the tasks sidebar, in the subscriber tab, when the user is not subscribed to any task*/\n 'empty-state.list.subscribed.heading': 'Þú hefur ekki skráð þig á nein verkefni',\n /** The text in the tasks sidebar, in the subscriber tab, when the user is not subscribed to any task*/\n 'empty-state.list.subscribed.text':\n 'Þegar þú býrð til, breytir eða skrifar athugasemd við verkefni munt þú vera sjálfkrafa skráð(ur)',\n /** The heading in the tasks sidebar, in the assigned tab, under the closed details, when it's empty.*/\n 'empty-state.status.list.closed.assigned.heading': 'Engin kláruð verkefni',\n /** The text in the tasks sidebar, in the assigned tab, under the closed details, when it's empty.*/\n 'empty-state.status.list.closed.assigned.text':\n 'Verkefni sem þú hefur merkt sem klárað munu birtast hér',\n /** The heading in the tasks sidebar, in the document tab, under the closed details, when it's empty.*/\n 'empty-state.status.list.closed.document.heading': 'Engin kláruð verkefni',\n /** The heading in the tasks sidebar, in the subscribed tab, under the closed details, when it's empty.*/\n 'empty-state.status.list.closed.subscribed.heading': 'Engin kláruð verkefni',\n /** The text in the tasks sidebar, in the subscribed tab, under the closed details, when it's empty.*/\n 'empty-state.status.list.closed.subscribed.text':\n 'Verkefni sem þú ert áskrifandi að og eru merkt sem kláruð munu birtast hér',\n /** The heading in the tasks sidebar, in the assigned tab, under the open details, when it's empty.*/\n 'empty-state.status.list.open.assigned.heading': 'Þú ert alveg búinn',\n /** The text in the tasks sidebar, in the assigned tab, under the open details, when it's empty.*/\n 'empty-state.status.list.open.assigned.text':\n 'Ný verkefni sem eru úthlutað til þín munu birtast hér',\n /** The heading in the tasks sidebar, in the document tab, under the open details, when it's empty.*/\n 'empty-state.status.list.open.document.heading': 'Engin verkefni á þessu skjali',\n /** The heading in the tasks sidebar, in the subscribed tab, under the open details, when it's empty.*/\n 'empty-state.status.list.open.subscribed.heading': 'Engin áskriftarverkefni',\n /** The text in the tasks sidebar, in the subscribed tab, under the open details, when it's empty.*/\n 'empty-state.status.list.open.subscribed.text':\n 'Verkefni sem þú ert áskrifandi að munu birtast hér',\n\n /** Text used in the assignee input when there is no user assigned */\n 'form.input.assignee.no-user-assigned.text': 'Ekki úthlutað',\n /** Text used in the assignee input tooltip when there is no user assigned */\n 'form.input.assignee.no-user-assigned.tooltip': 'Settu úthlutunaraðila',\n /** Text used in the assignee input when searching and no users are found */\n 'form.input.assignee.search.no-users.text': 'Engir notendur fundust',\n /** Placeholder text used in the search box in the assignee input */\n 'form.input.assignee.search.placeholder': 'Veldu notendanafn',\n /** Text used in the assignee input when user is not authorized */\n 'form.input.assignee.unauthorized.text': 'Óheimilt',\n /** Text used in the assignee input tooltip when there is no user assigned */\n 'form.input.assignee.user-assigned.tooltip': 'Breyttu úthlutunaraðila',\n /** Text used in the assignee input when user is not found */\n 'form.input.assignee.user-not-found.text': 'Notandi fannst ekki',\n /** The label used in the create more toggle */\n 'form.input.create-more.text': 'Búa til fleiri',\n /** The label used in the date input button tooltip when it's empty */\n 'form.input.date.buttons.empty.tooltip': 'Settu skiladag',\n /** The label used in the date input to remove the current value */\n 'form.input.date.buttons.remove.text': 'Fjarlægja',\n /** The label used in the date input button tooltip when it has value */\n 'form.input.date.buttons.tooltip': 'Breyttu skiladegi',\n /** Placeholder text used in the description input */\n 'form.input.description.placeholder': 'Bættu við lýsingu',\n /** Text used in the tooltip in the status change button */\n 'form.input.status.button.tooltip': 'Breyttu stöðu',\n /** The label used in the target input to remove the current value */\n 'form.input.target.buttons.remove.text': 'Fjarlægja markmiðsefni',\n /** The text used in the target input when encountering a schema error */\n 'form.input.target.error.schema-not-found': 'Skema fannst ekki',\n /** The placeholder text used in the target input for the search component */\n 'form.input.target.search.placeholder': 'Veldu skjal',\n /** The placeholder text for the title input */\n 'form.input.title.placeholder': 'Titill verkefnis',\n /** The status error message presented when the user does not supply a title */\n 'form.status.error.title-required': 'Titill er nauðsynlegur',\n /** The status message upon successful creation of a task */\n 'form.status.success': 'Verkefni búið til',\n\n /** The text displayed when no tasks are found */\n 'list.empty.text': 'Engin verkefni',\n /** The text displayed at the bottom of the tasks list inviting users provide feedback */\n 'list.feedback.text': 'Hjálpaðu okkur að bæta, <Link>deildu endurgjöf um Verkefni</Link>',\n\n /** The label for the copy link menu item */\n 'menuitem.copylink.text': 'Afrita tengil á verkefni',\n /** The label for the delete task menu item */\n 'menuitem.delete.text': 'Eyða verkefni',\n /** The label for the duplicate task menu item */\n 'menuitem.duplicate.text': 'Tvöfalda verkefni',\n /** The text for the duplicate task menu item tooltip when mode is upsell */\n 'menuitem.duplicate.upsell-tooltip': 'Uppfærðu til að tvöfalda verkefni',\n\n /** Fragment used to construct the first entry in the activity log */\n 'panel.activity.created-fragment': 'búið til þetta verkefni',\n /** The title of the activity section of the task */\n 'panel.activity.title': 'Virkni',\n /** The text used in the activity log when unable to find the user */\n 'panel.activity.unknown-user': 'Óþekktur notandi',\n /** The tooltip for the close button for the task panel */\n 'panel.close.tooltip': 'Loka hliðarstiku',\n /** The placeholder text for the comment text box */\n 'panel.comment.placeholder': 'Bættu við athugasemd...',\n /** The placeholder text for the comment text box when mode is upsell */\n 'panel.comment.placeholder.upsell': 'Uppfærðu til að tjá þig um verkefni',\n /** The title used in the task panel when showing the create task form */\n 'panel.create.title': 'Búa til',\n /** The title used in the drafts pulldown */\n 'panel.drafts.title': 'Drög',\n /** The tooltip for the task navigation component */\n 'panel.navigation.tooltip': 'Opna verkefni',\n /** Title of the Tasks panel */\n 'panel.title': 'Verkefni',\n\n /** Label for the Assigned Tab */\n 'tab.assigned.label': 'Úthlutað',\n /** Label for the Active Document Tab */\n 'tab.document.label': 'Virk skjal',\n /** Label for the Subscribed Tab */\n 'tab.subscribed.label': 'Áskrifandi',\n})\n"],"names":[],"mappings":";;AAEA,YAAe,8BAA+B,CAAA;AAAA;AAAA,EAE5C,qBAAuB,EAAA,6BAAA;AAAA;AAAA,EAEvB,mBAAqB,EAAA,UAAA;AAAA;AAAA,EAGrB,qBAAuB,EAAA,qBAAA;AAAA;AAAA,EAEvB,sBAAwB,EAAA,iBAAA;AAAA;AAAA,EAExB,oBAAsB,EAAA,SAAA;AAAA;AAAA,EAEtB,kBAAoB,EAAA,kBAAA;AAAA;AAAA,EAEpB,4BAA8B,EAAA,8CAAA;AAAA;AAAA,EAE9B,sBAAwB,EAAA,6BAAA;AAAA;AAAA,EAExB,0BAA4B,EAAA,0BAAA;AAAA;AAAA,EAG5B,yBAA2B,EAAA,+DAAA;AAAA;AAAA,EAE3B,wCAA0C,EAAA,iBAAA;AAAA;AAAA,EAE1C,yCAA2C,EAAA,cAAA;AAAA;AAAA,EAE3C,0BAA4B,EAAA,uBAAA;AAAA;AAAA,EAG5B,4CAA8C,EAAA,eAAA;AAAA;AAAA,EAE9C,8CAAgD,EAAA,eAAA;AAAA;AAAA,EAEhD,qCAAuC,EAAA,4BAAA;AAAA;AAAA,EAEvC,uCAAyC,EAAA,yBAAA;AAAA;AAAA,EAGzC,mCAAqC,EAAA,+DAAA;AAAA;AAAA,EAErC,gCAAkC,EAAA,uFAAA;AAAA;AAAA,EAElC,6BAA+B,EAAA,6BAAA;AAAA;AAAA,EAE/B,mCAAqC,EAAA,iDAAA;AAAA;AAAA,EAErC,gCAAkC,EAAA,kEAAA;AAAA;AAAA,EAElC,6CAA+C,EAAA,mDAAA;AAAA;AAAA,EAE/C,0CAA4C,EAAA,8DAAA;AAAA;AAAA,EAE5C,qCAAuC,EAAA,2DAAA;AAAA;AAAA,EAEvC,kCACE,EAAA,sIAAA;AAAA;AAAA,EAEF,iDAAmD,EAAA,6BAAA;AAAA;AAAA,EAEnD,8CACE,EAAA,wEAAA;AAAA;AAAA,EAEF,iDAAmD,EAAA,6BAAA;AAAA;AAAA,EAEnD,mDAAqD,EAAA,6BAAA;AAAA;AAAA,EAErD,gDACE,EAAA,iGAAA;AAAA;AAAA,EAEF,+CAAiD,EAAA,6BAAA;AAAA;AAAA,EAEjD,4CACE,EAAA,yEAAA;AAAA;AAAA,EAEF,+CAAiD,EAAA,qCAAA;AAAA;AAAA,EAEjD,iDAAmD,EAAA,4BAAA;AAAA;AAAA,EAEnD,8CACE,EAAA,mEAAA;AAAA;AAAA,EAGF,2CAA6C,EAAA,qBAAA;AAAA;AAAA,EAE7C,8CAAgD,EAAA,6BAAA;AAAA;AAAA,EAEhD,0CAA4C,EAAA,wBAAA;AAAA;AAAA,EAE5C,wCAA0C,EAAA,mBAAA;AAAA;AAAA,EAE1C,uCAAyC,EAAA,aAAA;AAAA;AAAA,EAEzC,2CAA6C,EAAA,+BAAA;AAAA;AAAA,EAE7C,yCAA2C,EAAA,qBAAA;AAAA;AAAA,EAE3C,6BAA+B,EAAA,mBAAA;AAAA;AAAA,EAE/B,uCAAyC,EAAA,gBAAA;AAAA;AAAA,EAEzC,qCAAuC,EAAA,cAAA;AAAA;AAAA,EAEvC,iCAAmC,EAAA,mBAAA;AAAA;AAAA,EAEnC,oCAAsC,EAAA,4BAAA;AAAA;AAAA,EAEtC,kCAAoC,EAAA,qBAAA;AAAA;AAAA,EAEpC,uCAAyC,EAAA,8BAAA;AAAA;AAAA,EAEzC,0CAA4C,EAAA,mBAAA;AAAA;AAAA,EAE5C,sCAAwC,EAAA,aAAA;AAAA;AAAA,EAExC,8BAAgC,EAAA,kBAAA;AAAA;AAAA,EAEhC,kCAAoC,EAAA,2BAAA;AAAA;AAAA,EAEpC,qBAAuB,EAAA,yBAAA;AAAA;AAAA,EAGvB,iBAAmB,EAAA,gBAAA;AAAA;AAAA,EAEnB,oBAAsB,EAAA,kFAAA;AAAA;AAAA,EAGtB,wBAA0B,EAAA,6BAAA;AAAA;AAAA,EAE1B,sBAAwB,EAAA,kBAAA;AAAA;AAAA,EAExB,yBAA2B,EAAA,sBAAA;AAAA;AAAA,EAE3B,mCAAqC,EAAA,+CAAA;AAAA;AAAA,EAGrC,iCAAmC,EAAA,kCAAA;AAAA;AAAA,EAEnC,sBAAwB,EAAA,QAAA;AAAA;AAAA,EAExB,6BAA+B,EAAA,wBAAA;AAAA;AAAA,EAE/B,qBAAuB,EAAA,qBAAA;AAAA;AAAA,EAEvB,2BAA6B,EAAA,+BAAA;AAAA;AAAA,EAE7B,kCAAoC,EAAA,oDAAA;AAAA;AAAA,EAEpC,oBAAsB,EAAA,YAAA;AAAA;AAAA,EAEtB,oBAAsB,EAAA,SAAA;AAAA;AAAA,EAEtB,0BAA4B,EAAA,eAAA;AAAA;AAAA,EAE5B,aAAe,EAAA,UAAA;AAAA;AAAA,EAGf,oBAAsB,EAAA,gBAAA;AAAA;AAAA,EAEtB,oBAAsB,EAAA,YAAA;AAAA;AAAA,EAEtB,sBAAwB,EAAA;AAC1B,CAAC,CAAA;;;;"}
1
+ {"version":3,"file":"tasks.js","sources":["../../src/tasks.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** The label for the create task action */\n 'actions.create.text': 'Búa til nýtt verkefni',\n /** The label for the open tasks panel action */\n 'actions.open.text': 'Verkefni',\n\n /** The label for the button to create a new task */\n 'buttons.create.text': 'Búa til verkefni',\n /** The label for the button to discard changes */\n 'buttons.discard.text': 'Hætta við',\n /** The label for the button to open the draft */\n 'buttons.draft.text': 'Drög',\n /** The label for the button to create a new task */\n 'buttons.new.text': 'Nýtt verkefni',\n /** The text for tooltip in the create a new task button when mode is upsell */\n 'buttons.new.upsell-tooltip': 'Uppfærðu til að búa til verkefni',\n /** The label for the button that will navigate to the next task */\n 'buttons.next.tooltip': 'Fara á næsta verkefni',\n /** The label for the button that will previous to the next task */\n 'buttons.previous.tooltip': 'Fara á fyrri verkefni',\n\n /** Text for the remove task dialog asking for confirmation of deletion */\n 'dialog.remove-task.body': 'Ertu viss um að þú viljir eyða þessu verkefni?',\n /** The label for the cancel button on the remove task dialog */\n 'dialog.remove-task.buttons.cancel.text': 'Hætta við',\n /** The label for the confirmation button on the remove task dialog */\n 'dialog.remove-task.buttons.confirm.text': 'Fjarlægja',\n /** The title for the remove task dialog */\n 'dialog.remove-task.title': 'Fjarlægja verkefni',\n\n /** The text used as a placeholder for the footer action in a document with a single task */\n 'document.footer.open-tasks.placeholder_one': 'Opna verkefni',\n /** The text used as a placeholder for the footer action in a document with multiple tasks */\n 'document.footer.open-tasks.placeholder_other': 'Opna verkefni',\n /** The label used in the button in the footer action in a document with a single task */\n 'document.footer.open-tasks.text_one': '{{count}} opið verkefni',\n /** The label used in the button in the footer action in a document with multiple tasks */\n 'document.footer.open-tasks.text_other': '{{count}} opin verkefni',\n\n /** The heading in the tasks sidebar, in the assigned tab, when the user hasn't been assigned to any task*/\n 'empty-state.list.assigned.heading': 'Þér hefur ekki verið úthlutað neinum verkefnum',\n /** The text in the tasks sidebar, in the assigned tab, when the user hasn't been assigned to any task*/\n 'empty-state.list.assigned.text': 'Þegar þér hefur verið úthlutað verkefnum munu þau birtast hér',\n /** The text in the tasks sidebar button any of the empty states is rendered*/\n 'empty-state.list.create-new': 'Búa til nýtt verkefni',\n /** The heading in the tasks sidebar, in the document tab, when the document doesn't have any task*/\n 'empty-state.list.document.heading': 'Þetta skjal hefur engin verkefni ennþá',\n /** The text in the tasks sidebar, in the document tab, when the document doesn't have any task*/\n 'empty-state.list.document.text': 'Þegar skjal hefur tengd verkefni, munu þau birtast hér.',\n /** The heading in the tasks sidebar, when viewing the document tab, but there is not an active document*/\n 'empty-state.list.no-active-document.heading': 'Opnaðu skjal til að sjá verkefni þess',\n /** The text in the tasks sidebar, when viewing the document tab, but there is not an active document*/\n 'empty-state.list.no-active-document.text': 'Verkefni á virka skjalinu þínu munu birtast hér.',\n /** The heading in the tasks sidebar, in the subscriber tab, when the user is not subscribed to any task*/\n 'empty-state.list.subscribed.heading': 'Þú hefur ekki skráð þig á nein verkefni',\n /** The text in the tasks sidebar, in the subscriber tab, when the user is not subscribed to any task*/\n 'empty-state.list.subscribed.text':\n 'Þegar þú býrð til, breytir eða skrifar athugasemd við verkefni munt þú vera sjálfkrafa skráð(ur)',\n /** The heading in the tasks sidebar, in the assigned tab, under the closed details, when it's empty.*/\n 'empty-state.status.list.closed.assigned.heading': 'Engin kláruð verkefni',\n /** The text in the tasks sidebar, in the assigned tab, under the closed details, when it's empty.*/\n 'empty-state.status.list.closed.assigned.text':\n 'Verkefni sem þú hefur merkt sem klárað munu birtast hér',\n /** The heading in the tasks sidebar, in the document tab, under the closed details, when it's empty.*/\n 'empty-state.status.list.closed.document.heading': 'Engin kláruð verkefni',\n /** The heading in the tasks sidebar, in the subscribed tab, under the closed details, when it's empty.*/\n 'empty-state.status.list.closed.subscribed.heading': 'Engin kláruð verkefni',\n /** The text in the tasks sidebar, in the subscribed tab, under the closed details, when it's empty.*/\n 'empty-state.status.list.closed.subscribed.text':\n 'Verkefni sem þú ert áskrifandi að og eru merkt sem kláruð munu birtast hér',\n /** The heading in the tasks sidebar, in the assigned tab, under the open details, when it's empty.*/\n 'empty-state.status.list.open.assigned.heading': 'Þú ert alveg búinn',\n /** The text in the tasks sidebar, in the assigned tab, under the open details, when it's empty.*/\n 'empty-state.status.list.open.assigned.text':\n 'Ný verkefni sem eru úthlutað til þín munu birtast hér',\n /** The heading in the tasks sidebar, in the document tab, under the open details, when it's empty.*/\n 'empty-state.status.list.open.document.heading': 'Engin verkefni á þessu skjali',\n /** The heading in the tasks sidebar, in the subscribed tab, under the open details, when it's empty.*/\n 'empty-state.status.list.open.subscribed.heading': 'Engin áskriftarverkefni',\n /** The text in the tasks sidebar, in the subscribed tab, under the open details, when it's empty.*/\n 'empty-state.status.list.open.subscribed.text':\n 'Verkefni sem þú ert áskrifandi að munu birtast hér',\n\n /** Text used in the assignee input when there is no user assigned */\n 'form.input.assignee.no-user-assigned.text': 'Ekki úthlutað',\n /** Text used in the assignee input tooltip when there is no user assigned */\n 'form.input.assignee.no-user-assigned.tooltip': 'Settu úthlutunaraðila',\n /** Text used in the assignee input when searching and no users are found */\n 'form.input.assignee.search.no-users.text': 'Engir notendur fundust',\n /** Placeholder text used in the search box in the assignee input */\n 'form.input.assignee.search.placeholder': 'Veldu notendanafn',\n /** Text used in the assignee input when user is not authorized */\n 'form.input.assignee.unauthorized.text': 'Óheimilt',\n /** Text used in the assignee input tooltip when there is no user assigned */\n 'form.input.assignee.user-assigned.tooltip': 'Breyttu úthlutunaraðila',\n /** Text used in the assignee input when user is not found */\n 'form.input.assignee.user-not-found.text': 'Notandi fannst ekki',\n /** The label used in the create more toggle */\n 'form.input.create-more.text': 'Búa til fleiri',\n /** The label used in the date input button tooltip when it's empty */\n 'form.input.date.buttons.empty.tooltip': 'Settu skiladag',\n /** The label used in the date input to remove the current value */\n 'form.input.date.buttons.remove.text': 'Fjarlægja',\n /** The label used in the date input button tooltip when it has value */\n 'form.input.date.buttons.tooltip': 'Breyttu skiladegi',\n /** Placeholder text used in the description input */\n 'form.input.description.placeholder': 'Bættu við lýsingu',\n /** Text used in the tooltip in the status change button */\n 'form.input.status.button.tooltip': 'Breyttu stöðu',\n /** The label used in the target input to remove the current value */\n 'form.input.target.buttons.remove.text': 'Fjarlægja markmiðsefni',\n /** The text used in the target input when encountering a schema error */\n 'form.input.target.error.schema-not-found': 'Skema fannst ekki',\n /** The placeholder text used in the target input for the search component */\n 'form.input.target.search.placeholder': 'Veldu skjal',\n /** The placeholder text for the title input */\n 'form.input.title.placeholder': 'Titill verkefnis',\n /** The status error message presented when the user does not supply a title */\n 'form.status.error.title-required': 'Titill er nauðsynlegur',\n /** The status message upon successful creation of a task */\n 'form.status.success': 'Verkefni búið til',\n\n /** The text displayed when no tasks are found */\n 'list.empty.text': 'Engin verkefni',\n /** The text displayed at the bottom of the tasks list inviting users provide feedback */\n 'list.feedback.text': 'Hjálpaðu okkur að bæta, <Link>deildu endurgjöf um Verkefni</Link>',\n\n /** The label for the copy link menu item */\n 'menuitem.copylink.text': 'Afrita tengil á verkefni',\n /** The label for the delete task menu item */\n 'menuitem.delete.text': 'Eyða verkefni',\n /** The label for the duplicate task menu item */\n 'menuitem.duplicate.text': 'Tvöfalda verkefni',\n /** The text for the duplicate task menu item tooltip when mode is upsell */\n 'menuitem.duplicate.upsell-tooltip': 'Uppfærðu til að tvöfalda verkefni',\n\n /** Fragment used to construct the first entry in the activity log */\n 'panel.activity.created-fragment': 'búið til þetta verkefni',\n /** The title of the activity section of the task */\n 'panel.activity.title': 'Virkni',\n /** The text used in the activity log when unable to find the user */\n 'panel.activity.unknown-user': 'Óþekktur notandi',\n /** The tooltip for the close button for the task panel */\n 'panel.close.tooltip': 'Loka hliðarstiku',\n /** The placeholder text for the comment text box */\n 'panel.comment.placeholder': 'Bættu við athugasemd...',\n /** The placeholder text for the comment text box when mode is upsell */\n 'panel.comment.placeholder.upsell': 'Uppfærðu til að tjá þig um verkefni',\n /** The title used in the task panel when showing the create task form */\n 'panel.create.title': 'Búa til',\n /** The title used in the drafts pulldown */\n 'panel.drafts.title': 'Drög',\n /** The tooltip for the task navigation component */\n 'panel.navigation.tooltip': 'Opna verkefni',\n /** Title of the Tasks panel */\n 'panel.title': 'Verkefni',\n\n /** Label for the Assigned Tab */\n 'tab.assigned.label': 'Úthlutað',\n /** Label for the Active Document Tab */\n 'tab.document.label': 'Virk skjal',\n /** Label for the Subscribed Tab */\n 'tab.subscribed.label': 'Áskrifandi',\n\n /** Tooltip for the tasks navbar icon */\n 'toolbar.tooltip': 'Verkefni',\n})\n"],"names":[],"mappings":";AAEA,IAAA,QAAe,+BAA+B;AAAA;AAAA,EAE5C,uBAAuB;AAAA;AAAA,EAEvB,qBAAqB;AAAA;AAAA,EAGrB,uBAAuB;AAAA;AAAA,EAEvB,wBAAwB;AAAA;AAAA,EAExB,sBAAsB;AAAA;AAAA,EAEtB,oBAAoB;AAAA;AAAA,EAEpB,8BAA8B;AAAA;AAAA,EAE9B,wBAAwB;AAAA;AAAA,EAExB,4BAA4B;AAAA;AAAA,EAG5B,2BAA2B;AAAA;AAAA,EAE3B,0CAA0C;AAAA;AAAA,EAE1C,2CAA2C;AAAA;AAAA,EAE3C,4BAA4B;AAAA;AAAA,EAG5B,8CAA8C;AAAA;AAAA,EAE9C,gDAAgD;AAAA;AAAA,EAEhD,uCAAuC;AAAA;AAAA,EAEvC,yCAAyC;AAAA;AAAA,EAGzC,qCAAqC;AAAA;AAAA,EAErC,kCAAkC;AAAA;AAAA,EAElC,+BAA+B;AAAA;AAAA,EAE/B,qCAAqC;AAAA;AAAA,EAErC,kCAAkC;AAAA;AAAA,EAElC,+CAA+C;AAAA;AAAA,EAE/C,4CAA4C;AAAA;AAAA,EAE5C,uCAAuC;AAAA;AAAA,EAEvC,oCACE;AAAA;AAAA,EAEF,mDAAmD;AAAA;AAAA,EAEnD,gDACE;AAAA;AAAA,EAEF,mDAAmD;AAAA;AAAA,EAEnD,qDAAqD;AAAA;AAAA,EAErD,kDACE;AAAA;AAAA,EAEF,iDAAiD;AAAA;AAAA,EAEjD,8CACE;AAAA;AAAA,EAEF,iDAAiD;AAAA;AAAA,EAEjD,mDAAmD;AAAA;AAAA,EAEnD,gDACE;AAAA;AAAA,EAGF,6CAA6C;AAAA;AAAA,EAE7C,gDAAgD;AAAA;AAAA,EAEhD,4CAA4C;AAAA;AAAA,EAE5C,0CAA0C;AAAA;AAAA,EAE1C,yCAAyC;AAAA;AAAA,EAEzC,6CAA6C;AAAA;AAAA,EAE7C,2CAA2C;AAAA;AAAA,EAE3C,+BAA+B;AAAA;AAAA,EAE/B,yCAAyC;AAAA;AAAA,EAEzC,uCAAuC;AAAA;AAAA,EAEvC,mCAAmC;AAAA;AAAA,EAEnC,sCAAsC;AAAA;AAAA,EAEtC,oCAAoC;AAAA;AAAA,EAEpC,yCAAyC;AAAA;AAAA,EAEzC,4CAA4C;AAAA;AAAA,EAE5C,wCAAwC;AAAA;AAAA,EAExC,gCAAgC;AAAA;AAAA,EAEhC,oCAAoC;AAAA;AAAA,EAEpC,uBAAuB;AAAA;AAAA,EAGvB,mBAAmB;AAAA;AAAA,EAEnB,sBAAsB;AAAA;AAAA,EAGtB,0BAA0B;AAAA;AAAA,EAE1B,wBAAwB;AAAA;AAAA,EAExB,2BAA2B;AAAA;AAAA,EAE3B,qCAAqC;AAAA;AAAA,EAGrC,mCAAmC;AAAA;AAAA,EAEnC,wBAAwB;AAAA;AAAA,EAExB,+BAA+B;AAAA;AAAA,EAE/B,uBAAuB;AAAA;AAAA,EAEvB,6BAA6B;AAAA;AAAA,EAE7B,oCAAoC;AAAA;AAAA,EAEpC,sBAAsB;AAAA;AAAA,EAEtB,sBAAsB;AAAA;AAAA,EAEtB,4BAA4B;AAAA;AAAA,EAE5B,eAAe;AAAA;AAAA,EAGf,sBAAsB;AAAA;AAAA,EAEtB,sBAAsB;AAAA;AAAA,EAEtB,wBAAwB;AAAA;AAAA,EAGxB,mBAAmB;AACrB,CAAC;"}
@@ -1,5 +1,4 @@
1
- import { removeUndefinedLocaleResources } from 'sanity';
2
-
1
+ import { removeUndefinedLocaleResources } from "sanity";
3
2
  var validation = removeUndefinedLocaleResources({
4
3
  /** Array must have exactly "$wantedLength" items, but has more/less */
5
4
  "array.exact-length": "Ver\xF0ur a\xF0 hafa n\xE1kv\xE6mlega {{wantedLength}} atri\xF0i",
@@ -90,6 +89,7 @@ var validation = removeUndefinedLocaleResources({
90
89
  /** String is not a relative URL (eg it contains a protocol/host) */
91
90
  "string.url.not-relative": "A\xF0eins afst\xE6\xF0ar vefsl\xF3\xF0ir eru leyf\xF0ar"
92
91
  });
93
-
94
- export { validation as default };
92
+ export {
93
+ validation as default
94
+ };
95
95
  //# sourceMappingURL=validation.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"validation.js","sources":["../../src/validation.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Array must have exactly \"$wantedLength\" items, but has more/less */\n 'array.exact-length': 'Verður að hafa nákvæmlega {{wantedLength}} atriði',\n /** Portable Text array must have exactly \"$wantedLength\" blocks, but has more/less */\n 'array.exact-length_blocks': 'Verður að hafa nákvæmlega {{wantedLength}} blokkir',\n /** Array item is a duplicate, but array wants only unique items */\n 'array.item-duplicate': 'Má ekki vera afrit',\n /** Array has more than the maximum of \"$maxLength\" items */\n 'array.maximum-length': 'Má hafa í mesta lagi {{maxLength}} atriði',\n /** Portable Text array has more than the maximum of \"$maxLength\" items */\n 'array.maximum-length_blocks': 'Má hafa í mesta lagi {{maxLength}} blokkir',\n /** Array has less than the minimum of \"$minLength\" items */\n 'array.minimum-length': 'Verður að hafa að minnsta kosti {{minLength}} atriði',\n /** Portable Text array has less than the minimum of \"$minLength\" blocks */\n 'array.minimum-length_blocks': 'Verður að hafa að minnsta kosti {{minLength}} blokkir',\n\n /** Date is not valid or not in the correct format (ISO-8601) */\n 'date.invalid-format': 'Verður að vera gild ISO-8601 sniðin dagsetning',\n /** Date is later than the given maximum date \"$maxDate\" */\n 'date.maximum': 'Verður að vera á eða fyrir {{maxDate}}',\n /** Date is earlier than the given minimum date \"$minDate\" */\n 'date.minimum': 'Verður að vera á eða eftir {{minDate}}',\n\n /** A value of incorrect type is found, eg found `number` instead of `string` */\n 'generic.incorrect-type': 'Væntanleg týpa \"{{expectedType}}\", fékk \"{{actualType}}\"',\n /** Value is not one of the values specifically allowed */\n 'generic.not-allowed': 'Gildi passaði ekki við nein leyfð gildi',\n /** Value \"$givenValue\" is not one of the values specifically allowed */\n 'generic.not-allowed_hint': 'Gildi \"{{hint}}\" passaði ekki við nein leyfð gildi',\n /** A value is expected, but none is provided */\n 'generic.required': 'Krafist',\n\n /** Number is less than the given minimum threshold value \"$threshold\" */\n 'number.greater-than': 'Verður að vera meira en {{threshold}}',\n /** Number is greater than the given maximum threshold value \"$threshold\" */\n 'number.less-than': 'Verður að vera minna en {{threshold}}',\n /** Number is higher than the given maximum value \"$maxNumber\" */\n 'number.maximum': 'Verður að vera lægra en eða jafnt og {{maxNumber}}',\n /** Number has more precision (decimals) than the allowed \"$limit\" */\n 'number.maximum-precision': 'Hámarks nákvæmni er {{limit}}',\n /** Number is lower than the given minimum value \"$minNumber\" */\n 'number.minimum': 'Verður að vera meira en eða jafnt og {{minNumber}}',\n /** Number is not an integer (\"whole number\") */\n 'number.non-integer': 'Verður að vera heiltala',\n\n /** Object is missing a reference to an asset document in its `asset` field */\n 'object.asset-required': 'Eign er krafist',\n /** Object is missing a reference to a file asset document in its `asset` field */\n 'object.asset-required_file': 'Skrá er krafist',\n /** Object is missing a reference to an image asset document in its `asset` field */\n 'object.asset-required_image': 'Mynd er krafist',\n /** Object is not a reference to a document (eg `{_ref: 'documentId'}`) */\n 'object.not-reference': 'Verður að vera tilvísun í skjal',\n /** Object references a document which is not published */\n 'object.reference-not-published': 'Tilvísunarskjal verður að vera birt',\n\n /** Accessibility label for closing the validation panel */\n 'panel.close-button-aria-label': 'Loka staðfestingarvalmynd',\n /** Message shown when the validation panel is opened but there are no errors/warnings */\n 'panel.no-errors-message': 'Engar staðfestingarvillur',\n /** Title for the actual \"Validation\" panel/feature */\n 'panel.title': 'Staðfesting',\n\n /** Slug is an object, but is missing a `current` string property */\n 'slug.missing-current': 'Slug verður að hafa gildi',\n /** Slug is not an object (eg `{current: 'some-slug'}`) */\n 'slug.not-object': 'Slug verður að vera hlutur',\n /** Slug is already in use somewhere else, but needs to be unique */\n 'slug.not-unique': 'Slug er nú þegar í notkun',\n\n /** String is not a valid email address */\n 'string.email': 'Verður að vera gilt netfang',\n /** String has a different character length than the exact number \"$wantedLength\" */\n 'string.exact-length': 'Verður að vera nákvæmlega {{wantedLength}} stafir að lengd',\n /** String contains characters that are not in lowercase */\n 'string.lowercase': 'Verður að vera allt lágstafir',\n /** String is longer than the limit of \"$maxLength\" characters */\n 'string.maximum-length': 'Má vera í mesta lagi {{maxLength}} stafir að lengd',\n /** String is shorter than the limit of \"$minLength\" characters */\n 'string.minimum-length': 'Verður að vera að minnsta kosti {{minLength}} stafir að lengd',\n /** String does not match the given regular expression, but should */\n 'string.regex-does-not-match': 'Passar ekki við \"{{name}}\"-mynstrið',\n /** String matches the given regular expression, but should not */\n 'string.regex-match': 'Á ekki að passa við \"{{name}}\"-mynstrið',\n /** String contains characters that are not in uppercase */\n 'string.uppercase': 'Verður að vera allt hástafir',\n /** String contains a protocol/scheme that is not allowed, eg (`ftp`, `mailto`…) */\n 'string.url.disallowed-scheme': 'Passar ekki við leyfileg prótókól/snið',\n /** String contains a URL with a username or password specified before the host */\n 'string.url.includes-credentials': 'Notandanafn/lykilorð ekki leyft',\n /** String is not a valid URL */\n 'string.url.invalid': 'Ekki gild vefslóð',\n /** String is not an absolute URL (eg it is missing a protocol/host) */\n 'string.url.not-absolute': 'Afstæðar vefslóðir eru ekki leyfðar',\n /** String is not a relative URL (eg it contains a protocol/host) */\n 'string.url.not-relative': 'Aðeins afstæðar vefslóðir eru leyfðar',\n})\n"],"names":[],"mappings":";;AAEA,iBAAe,8BAA+B,CAAA;AAAA;AAAA,EAE5C,oBAAsB,EAAA,kEAAA;AAAA;AAAA,EAEtB,2BAA6B,EAAA,gEAAA;AAAA;AAAA,EAE7B,sBAAwB,EAAA,uBAAA;AAAA;AAAA,EAExB,sBAAwB,EAAA,oDAAA;AAAA;AAAA,EAExB,6BAA+B,EAAA,kDAAA;AAAA;AAAA,EAE/B,sBAAwB,EAAA,kEAAA;AAAA;AAAA,EAExB,6BAA+B,EAAA,gEAAA;AAAA;AAAA,EAG/B,qBAAuB,EAAA,yDAAA;AAAA;AAAA,EAEvB,cAAgB,EAAA,oDAAA;AAAA;AAAA,EAEhB,cAAgB,EAAA,oDAAA;AAAA;AAAA,EAGhB,wBAA0B,EAAA,mEAAA;AAAA;AAAA,EAE1B,qBAAuB,EAAA,kDAAA;AAAA;AAAA,EAEvB,0BAA4B,EAAA,6DAAA;AAAA;AAAA,EAE5B,kBAAoB,EAAA,SAAA;AAAA;AAAA,EAGpB,qBAAuB,EAAA,6CAAA;AAAA;AAAA,EAEvB,kBAAoB,EAAA,6CAAA;AAAA;AAAA,EAEpB,gBAAkB,EAAA,gEAAA;AAAA;AAAA,EAElB,0BAA4B,EAAA,wCAAA;AAAA;AAAA,EAE5B,gBAAkB,EAAA,6DAAA;AAAA;AAAA,EAElB,oBAAsB,EAAA,+BAAA;AAAA;AAAA,EAGtB,uBAAyB,EAAA,iBAAA;AAAA;AAAA,EAEzB,4BAA8B,EAAA,oBAAA;AAAA;AAAA,EAE9B,6BAA+B,EAAA,iBAAA;AAAA;AAAA,EAE/B,sBAAwB,EAAA,6CAAA;AAAA;AAAA,EAExB,gCAAkC,EAAA,8CAAA;AAAA;AAAA,EAGlC,+BAAiC,EAAA,8BAAA;AAAA;AAAA,EAEjC,yBAA2B,EAAA,8BAAA;AAAA;AAAA,EAE3B,aAAe,EAAA,gBAAA;AAAA;AAAA,EAGf,sBAAwB,EAAA,iCAAA;AAAA;AAAA,EAExB,iBAAmB,EAAA,kCAAA;AAAA;AAAA,EAEnB,iBAAmB,EAAA,oCAAA;AAAA;AAAA,EAGnB,cAAgB,EAAA,mCAAA;AAAA;AAAA,EAEhB,qBAAuB,EAAA,2EAAA;AAAA;AAAA,EAEvB,kBAAoB,EAAA,wCAAA;AAAA;AAAA,EAEpB,uBAAyB,EAAA,6DAAA;AAAA;AAAA,EAEzB,uBAAyB,EAAA,2EAAA;AAAA;AAAA,EAEzB,6BAA+B,EAAA,2CAAA;AAAA;AAAA,EAE/B,oBAAsB,EAAA,qDAAA;AAAA;AAAA,EAEtB,kBAAoB,EAAA,uCAAA;AAAA;AAAA,EAEpB,8BAAgC,EAAA,uDAAA;AAAA;AAAA,EAEhC,iCAAmC,EAAA,oCAAA;AAAA;AAAA,EAEnC,oBAAsB,EAAA,yBAAA;AAAA;AAAA,EAEtB,yBAA2B,EAAA,oDAAA;AAAA;AAAA,EAE3B,yBAA2B,EAAA;AAC7B,CAAC,CAAA;;;;"}
1
+ {"version":3,"file":"validation.js","sources":["../../src/validation.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Array must have exactly \"$wantedLength\" items, but has more/less */\n 'array.exact-length': 'Verður að hafa nákvæmlega {{wantedLength}} atriði',\n /** Portable Text array must have exactly \"$wantedLength\" blocks, but has more/less */\n 'array.exact-length_blocks': 'Verður að hafa nákvæmlega {{wantedLength}} blokkir',\n /** Array item is a duplicate, but array wants only unique items */\n 'array.item-duplicate': 'Má ekki vera afrit',\n /** Array has more than the maximum of \"$maxLength\" items */\n 'array.maximum-length': 'Má hafa í mesta lagi {{maxLength}} atriði',\n /** Portable Text array has more than the maximum of \"$maxLength\" items */\n 'array.maximum-length_blocks': 'Má hafa í mesta lagi {{maxLength}} blokkir',\n /** Array has less than the minimum of \"$minLength\" items */\n 'array.minimum-length': 'Verður að hafa að minnsta kosti {{minLength}} atriði',\n /** Portable Text array has less than the minimum of \"$minLength\" blocks */\n 'array.minimum-length_blocks': 'Verður að hafa að minnsta kosti {{minLength}} blokkir',\n\n /** Date is not valid or not in the correct format (ISO-8601) */\n 'date.invalid-format': 'Verður að vera gild ISO-8601 sniðin dagsetning',\n /** Date is later than the given maximum date \"$maxDate\" */\n 'date.maximum': 'Verður að vera á eða fyrir {{maxDate}}',\n /** Date is earlier than the given minimum date \"$minDate\" */\n 'date.minimum': 'Verður að vera á eða eftir {{minDate}}',\n\n /** A value of incorrect type is found, eg found `number` instead of `string` */\n 'generic.incorrect-type': 'Væntanleg týpa \"{{expectedType}}\", fékk \"{{actualType}}\"',\n /** Value is not one of the values specifically allowed */\n 'generic.not-allowed': 'Gildi passaði ekki við nein leyfð gildi',\n /** Value \"$givenValue\" is not one of the values specifically allowed */\n 'generic.not-allowed_hint': 'Gildi \"{{hint}}\" passaði ekki við nein leyfð gildi',\n /** A value is expected, but none is provided */\n 'generic.required': 'Krafist',\n\n /** Number is less than the given minimum threshold value \"$threshold\" */\n 'number.greater-than': 'Verður að vera meira en {{threshold}}',\n /** Number is greater than the given maximum threshold value \"$threshold\" */\n 'number.less-than': 'Verður að vera minna en {{threshold}}',\n /** Number is higher than the given maximum value \"$maxNumber\" */\n 'number.maximum': 'Verður að vera lægra en eða jafnt og {{maxNumber}}',\n /** Number has more precision (decimals) than the allowed \"$limit\" */\n 'number.maximum-precision': 'Hámarks nákvæmni er {{limit}}',\n /** Number is lower than the given minimum value \"$minNumber\" */\n 'number.minimum': 'Verður að vera meira en eða jafnt og {{minNumber}}',\n /** Number is not an integer (\"whole number\") */\n 'number.non-integer': 'Verður að vera heiltala',\n\n /** Object is missing a reference to an asset document in its `asset` field */\n 'object.asset-required': 'Eign er krafist',\n /** Object is missing a reference to a file asset document in its `asset` field */\n 'object.asset-required_file': 'Skrá er krafist',\n /** Object is missing a reference to an image asset document in its `asset` field */\n 'object.asset-required_image': 'Mynd er krafist',\n /** Object is not a reference to a document (eg `{_ref: 'documentId'}`) */\n 'object.not-reference': 'Verður að vera tilvísun í skjal',\n /** Object references a document which is not published */\n 'object.reference-not-published': 'Tilvísunarskjal verður að vera birt',\n\n /** Accessibility label for closing the validation panel */\n 'panel.close-button-aria-label': 'Loka staðfestingarvalmynd',\n /** Message shown when the validation panel is opened but there are no errors/warnings */\n 'panel.no-errors-message': 'Engar staðfestingarvillur',\n /** Title for the actual \"Validation\" panel/feature */\n 'panel.title': 'Staðfesting',\n\n /** Slug is an object, but is missing a `current` string property */\n 'slug.missing-current': 'Slug verður að hafa gildi',\n /** Slug is not an object (eg `{current: 'some-slug'}`) */\n 'slug.not-object': 'Slug verður að vera hlutur',\n /** Slug is already in use somewhere else, but needs to be unique */\n 'slug.not-unique': 'Slug er nú þegar í notkun',\n\n /** String is not a valid email address */\n 'string.email': 'Verður að vera gilt netfang',\n /** String has a different character length than the exact number \"$wantedLength\" */\n 'string.exact-length': 'Verður að vera nákvæmlega {{wantedLength}} stafir að lengd',\n /** String contains characters that are not in lowercase */\n 'string.lowercase': 'Verður að vera allt lágstafir',\n /** String is longer than the limit of \"$maxLength\" characters */\n 'string.maximum-length': 'Má vera í mesta lagi {{maxLength}} stafir að lengd',\n /** String is shorter than the limit of \"$minLength\" characters */\n 'string.minimum-length': 'Verður að vera að minnsta kosti {{minLength}} stafir að lengd',\n /** String does not match the given regular expression, but should */\n 'string.regex-does-not-match': 'Passar ekki við \"{{name}}\"-mynstrið',\n /** String matches the given regular expression, but should not */\n 'string.regex-match': 'Á ekki að passa við \"{{name}}\"-mynstrið',\n /** String contains characters that are not in uppercase */\n 'string.uppercase': 'Verður að vera allt hástafir',\n /** String contains a protocol/scheme that is not allowed, eg (`ftp`, `mailto`…) */\n 'string.url.disallowed-scheme': 'Passar ekki við leyfileg prótókól/snið',\n /** String contains a URL with a username or password specified before the host */\n 'string.url.includes-credentials': 'Notandanafn/lykilorð ekki leyft',\n /** String is not a valid URL */\n 'string.url.invalid': 'Ekki gild vefslóð',\n /** String is not an absolute URL (eg it is missing a protocol/host) */\n 'string.url.not-absolute': 'Afstæðar vefslóðir eru ekki leyfðar',\n /** String is not a relative URL (eg it contains a protocol/host) */\n 'string.url.not-relative': 'Aðeins afstæðar vefslóðir eru leyfðar',\n})\n"],"names":[],"mappings":";AAEA,IAAA,aAAe,+BAA+B;AAAA;AAAA,EAE5C,sBAAsB;AAAA;AAAA,EAEtB,6BAA6B;AAAA;AAAA,EAE7B,wBAAwB;AAAA;AAAA,EAExB,wBAAwB;AAAA;AAAA,EAExB,+BAA+B;AAAA;AAAA,EAE/B,wBAAwB;AAAA;AAAA,EAExB,+BAA+B;AAAA;AAAA,EAG/B,uBAAuB;AAAA;AAAA,EAEvB,gBAAgB;AAAA;AAAA,EAEhB,gBAAgB;AAAA;AAAA,EAGhB,0BAA0B;AAAA;AAAA,EAE1B,uBAAuB;AAAA;AAAA,EAEvB,4BAA4B;AAAA;AAAA,EAE5B,oBAAoB;AAAA;AAAA,EAGpB,uBAAuB;AAAA;AAAA,EAEvB,oBAAoB;AAAA;AAAA,EAEpB,kBAAkB;AAAA;AAAA,EAElB,4BAA4B;AAAA;AAAA,EAE5B,kBAAkB;AAAA;AAAA,EAElB,sBAAsB;AAAA;AAAA,EAGtB,yBAAyB;AAAA;AAAA,EAEzB,8BAA8B;AAAA;AAAA,EAE9B,+BAA+B;AAAA;AAAA,EAE/B,wBAAwB;AAAA;AAAA,EAExB,kCAAkC;AAAA;AAAA,EAGlC,iCAAiC;AAAA;AAAA,EAEjC,2BAA2B;AAAA;AAAA,EAE3B,eAAe;AAAA;AAAA,EAGf,wBAAwB;AAAA;AAAA,EAExB,mBAAmB;AAAA;AAAA,EAEnB,mBAAmB;AAAA;AAAA,EAGnB,gBAAgB;AAAA;AAAA,EAEhB,uBAAuB;AAAA;AAAA,EAEvB,oBAAoB;AAAA;AAAA,EAEpB,yBAAyB;AAAA;AAAA,EAEzB,yBAAyB;AAAA;AAAA,EAEzB,+BAA+B;AAAA;AAAA,EAE/B,sBAAsB;AAAA;AAAA,EAEtB,oBAAoB;AAAA;AAAA,EAEpB,gCAAgC;AAAA;AAAA,EAEhC,mCAAmC;AAAA;AAAA,EAEnC,sBAAsB;AAAA;AAAA,EAEtB,2BAA2B;AAAA;AAAA,EAE3B,2BAA2B;AAC7B,CAAC;"}
@@ -1,5 +1,4 @@
1
- import { removeUndefinedLocaleResources } from 'sanity';
2
-
1
+ import { removeUndefinedLocaleResources } from "sanity";
3
2
  var vision = removeUndefinedLocaleResources({
4
3
  /** Label for action "Copy to clipboard", tied to the "Query URL" field. Also used for accessibility purposes on button */
5
4
  "action.copy-url-to-clipboard": "Afrita \xE1 klippibor\xF0",
@@ -58,13 +57,22 @@ var vision = removeUndefinedLocaleResources({
58
57
  * @see {@link https://www.sanity.io/docs/perspectives}
59
58
  */
60
59
  "settings.perspective-label": "Perspective",
60
+ /** Notification about previewDrafts to drafts rename */
61
+ "settings.perspective.preview-drafts-renamed-to-drafts.description": 'Perspective "<code>previewDrafts</code>" hefur veri\xF0 endurnefnt \xED "<code>drafts</code>" og er n\xFA \xFArelt. \xDEessi breyting er virk fyrir allar \xFAtg\xE1fur me\xF0 stu\xF0ning vi\xF0 perspective (>= v2021-03-25).',
61
62
  /** Call to action to read the docs related to "Perspectives" */
62
63
  "settings.perspectives.action.docs-link": "Lestu skj\xF6lin",
64
+ /** Option for selecting default perspective */
65
+ "settings.perspectives.default": "Engin perspective (API sj\xE1lfgefi\xF0)",
63
66
  /** Description for popover that explains what "Perspectives" are */
64
67
  "settings.perspectives.description": 'Perspectives leyfa fyrirspurn \xFEinni a\xF0 keyra gegn mismunandi "s\xFDnum" af efni \xED dataset \xFE\xEDnu',
68
+ /** Description for upcoming default perspective change */
69
+ "settings.perspectives.new-default.description": 'Sj\xE1lfgefi\xF0 perspective mun breytast \xFAr "<code>raw</code>" \xED "<code>published</code>" \xED v\xE6ntanlegri API \xFAtg\xE1fu. Vinsamlegast kynntu \xFE\xE9r n\xE1nar \xED skj\xF6lun.',
70
+ /** Label for the pinned release perspective */
71
+ "settings.perspectives.pinned-release-label": "Fest \xFAtg\xE1fa",
65
72
  /** Title for popover that explains what "Perspectives" are */
66
73
  "settings.perspectives.title": "Perspectives"
67
74
  });
68
-
69
- export { vision as default };
75
+ export {
76
+ vision as default
77
+ };
70
78
  //# sourceMappingURL=vision.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"vision.js","sources":["../../src/vision.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Label for action \"Copy to clipboard\", tied to the \"Query URL\" field. Also used for accessibility purposes on button */\n 'action.copy-url-to-clipboard': 'Afrita á klippiborð',\n /** Label for stopping an ongoing listen operation */\n 'action.listen-cancel': 'Stoppa',\n /** Label for setting up a listener */\n 'action.listen-execute': 'Hlusta',\n /** Label for cancelling an ongoing query */\n 'action.query-cancel': 'Hætta við',\n /** Label for executing the query, eg doing a fetch */\n 'action.query-execute': 'Sækja',\n\n /**\n * Some features has a \"New\" label indicating that the feature was recently introduced.\n * This defines what the text of that label is. Keep it short and sweet.\n */\n 'label.new': 'Nýtt',\n\n /** Error message for when the \"Params\" input are not a valid json */\n 'params.error.params-invalid-json': 'Parametrar eru ekki gilt JSON',\n /** Label for \"Params\" (parameters) editor/input */\n 'params.label': 'Parametrar',\n\n /** Label for 'Column' indicator when there is an error within the query */\n 'query.error.column': 'Dálkur',\n /** Label for 'Line' indicator when there is an error within the query */\n 'query.error.line': 'Lína',\n /** Label for \"Query\" editor/input */\n 'query.label': 'Fyrirspurn',\n /** Label for the \"Query URL\" field, shown after executing a query, and allows for copying */\n 'query.url': 'Fyrirspurnarvefslóð',\n\n /** Label for \"End to End time\" information of the fetched query */\n 'result.end-to-end-time-label': 'Enda-til-enda',\n /** Label for \"Execution time\" information of the fetched query */\n 'result.execution-time-label': 'Framkvæmdartími',\n /** Label for \"Result\" explorer/view */\n 'result.label': 'Niðurstaða',\n /** Tooltip text shown when the query result is not encodable as CSV */\n 'result.save-result-as-csv.not-csv-encodable': 'Niðurstöðuna er ekki hægt að umrita sem CSV',\n /** Label for \"Save result as\" result action */\n 'result.save-result-as-format': 'Vista niðurstöðu sem <SaveResultButtons/>',\n /**\n * \"Not applicable\" message for when there is no Execution time or End to End time information\n * available for the query (eg when the query has not been executed, or errored)\n */\n 'result.timing-not-applicable': 'ekki viðeigandi',\n\n /** Label for the \"API version\" dropdown in settings */\n 'settings.api-version-label': 'API útgáfa',\n /** Label for the \"Custom API version\" input in settings, shown when \"other\" is chosen as API version */\n 'settings.custom-api-version-label': 'Sérsniðin API útgáfa',\n /** Label for the \"Dataset\" dropdown in vision settings */\n 'settings.dataset-label': 'Gagnasafn',\n /** Error label for when the API version in 'Custom API version' input is invalid */\n 'settings.error.invalid-api-version': 'Ógild API útgáfa',\n /** Label for the \"other\" versions within the \"API version\" dropdown */\n 'settings.other-api-version-label': 'Annað',\n /**\n * Label for the \"Perspective\" dropdown in vision settings\n * @see {@link https://www.sanity.io/docs/perspectives}\n */\n 'settings.perspective-label': 'Perspective',\n /** Call to action to read the docs related to \"Perspectives\" */\n 'settings.perspectives.action.docs-link': 'Lestu skjölin',\n /** Description for popover that explains what \"Perspectives\" are */\n 'settings.perspectives.description':\n 'Perspectives leyfa fyrirspurn þinni að keyra gegn mismunandi \"sýnum\" af efni í dataset þínu',\n /** Title for popover that explains what \"Perspectives\" are */\n 'settings.perspectives.title': 'Perspectives',\n})\n"],"names":[],"mappings":";;AAEA,aAAe,8BAA+B,CAAA;AAAA;AAAA,EAE5C,8BAAgC,EAAA,2BAAA;AAAA;AAAA,EAEhC,sBAAwB,EAAA,QAAA;AAAA;AAAA,EAExB,uBAAyB,EAAA,QAAA;AAAA;AAAA,EAEzB,qBAAuB,EAAA,iBAAA;AAAA;AAAA,EAEvB,sBAAwB,EAAA,UAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMxB,WAAa,EAAA,SAAA;AAAA;AAAA,EAGb,kCAAoC,EAAA,+BAAA;AAAA;AAAA,EAEpC,cAAgB,EAAA,YAAA;AAAA;AAAA,EAGhB,oBAAsB,EAAA,WAAA;AAAA;AAAA,EAEtB,kBAAoB,EAAA,SAAA;AAAA;AAAA,EAEpB,aAAe,EAAA,YAAA;AAAA;AAAA,EAEf,WAAa,EAAA,2BAAA;AAAA;AAAA,EAGb,8BAAgC,EAAA,eAAA;AAAA;AAAA,EAEhC,6BAA+B,EAAA,uBAAA;AAAA;AAAA,EAE/B,cAAgB,EAAA,kBAAA;AAAA;AAAA,EAEhB,6CAA+C,EAAA,4DAAA;AAAA;AAAA,EAE/C,8BAAgC,EAAA,oDAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKhC,8BAAgC,EAAA,oBAAA;AAAA;AAAA,EAGhC,4BAA8B,EAAA,kBAAA;AAAA;AAAA,EAE9B,mCAAqC,EAAA,kCAAA;AAAA;AAAA,EAErC,wBAA0B,EAAA,WAAA;AAAA;AAAA,EAE1B,oCAAsC,EAAA,2BAAA;AAAA;AAAA,EAEtC,kCAAoC,EAAA,UAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKpC,4BAA8B,EAAA,aAAA;AAAA;AAAA,EAE9B,wCAA0C,EAAA,kBAAA;AAAA;AAAA,EAE1C,mCACE,EAAA,+GAAA;AAAA;AAAA,EAEF,6BAA+B,EAAA;AACjC,CAAC,CAAA;;;;"}
1
+ {"version":3,"file":"vision.js","sources":["../../src/vision.ts"],"sourcesContent":["import {removeUndefinedLocaleResources} from 'sanity'\n\nexport default removeUndefinedLocaleResources({\n /** Label for action \"Copy to clipboard\", tied to the \"Query URL\" field. Also used for accessibility purposes on button */\n 'action.copy-url-to-clipboard': 'Afrita á klippiborð',\n /** Label for stopping an ongoing listen operation */\n 'action.listen-cancel': 'Stoppa',\n /** Label for setting up a listener */\n 'action.listen-execute': 'Hlusta',\n /** Label for cancelling an ongoing query */\n 'action.query-cancel': 'Hætta við',\n /** Label for executing the query, eg doing a fetch */\n 'action.query-execute': 'Sækja',\n\n /**\n * Some features has a \"New\" label indicating that the feature was recently introduced.\n * This defines what the text of that label is. Keep it short and sweet.\n */\n 'label.new': 'Nýtt',\n\n /** Error message for when the \"Params\" input are not a valid json */\n 'params.error.params-invalid-json': 'Parametrar eru ekki gilt JSON',\n /** Label for \"Params\" (parameters) editor/input */\n 'params.label': 'Parametrar',\n\n /** Label for 'Column' indicator when there is an error within the query */\n 'query.error.column': 'Dálkur',\n /** Label for 'Line' indicator when there is an error within the query */\n 'query.error.line': 'Lína',\n /** Label for \"Query\" editor/input */\n 'query.label': 'Fyrirspurn',\n /** Label for the \"Query URL\" field, shown after executing a query, and allows for copying */\n 'query.url': 'Fyrirspurnarvefslóð',\n\n /** Label for \"End to End time\" information of the fetched query */\n 'result.end-to-end-time-label': 'Enda-til-enda',\n /** Label for \"Execution time\" information of the fetched query */\n 'result.execution-time-label': 'Framkvæmdartími',\n /** Label for \"Result\" explorer/view */\n 'result.label': 'Niðurstaða',\n /** Tooltip text shown when the query result is not encodable as CSV */\n 'result.save-result-as-csv.not-csv-encodable': 'Niðurstöðuna er ekki hægt að umrita sem CSV',\n /** Label for \"Save result as\" result action */\n 'result.save-result-as-format': 'Vista niðurstöðu sem <SaveResultButtons/>',\n /**\n * \"Not applicable\" message for when there is no Execution time or End to End time information\n * available for the query (eg when the query has not been executed, or errored)\n */\n 'result.timing-not-applicable': 'ekki viðeigandi',\n\n /** Label for the \"API version\" dropdown in settings */\n 'settings.api-version-label': 'API útgáfa',\n /** Label for the \"Custom API version\" input in settings, shown when \"other\" is chosen as API version */\n 'settings.custom-api-version-label': 'Sérsniðin API útgáfa',\n /** Label for the \"Dataset\" dropdown in vision settings */\n 'settings.dataset-label': 'Gagnasafn',\n /** Error label for when the API version in 'Custom API version' input is invalid */\n 'settings.error.invalid-api-version': 'Ógild API útgáfa',\n /** Label for the \"other\" versions within the \"API version\" dropdown */\n 'settings.other-api-version-label': 'Annað',\n /**\n * Label for the \"Perspective\" dropdown in vision settings\n * @see {@link https://www.sanity.io/docs/perspectives}\n */\n 'settings.perspective-label': 'Perspective',\n /** Notification about previewDrafts to drafts rename */\n 'settings.perspective.preview-drafts-renamed-to-drafts.description':\n 'Perspective \"<code>previewDrafts</code>\" hefur verið endurnefnt í \"<code>drafts</code>\" og er nú úrelt. Þessi breyting er virk fyrir allar útgáfur með stuðning við perspective (>= v2021-03-25).',\n /** Call to action to read the docs related to \"Perspectives\" */\n 'settings.perspectives.action.docs-link': 'Lestu skjölin',\n /** Option for selecting default perspective */\n 'settings.perspectives.default': 'Engin perspective (API sjálfgefið)',\n /** Description for popover that explains what \"Perspectives\" are */\n 'settings.perspectives.description':\n 'Perspectives leyfa fyrirspurn þinni að keyra gegn mismunandi \"sýnum\" af efni í dataset þínu',\n /** Description for upcoming default perspective change */\n 'settings.perspectives.new-default.description':\n 'Sjálfgefið perspective mun breytast úr \"<code>raw</code>\" í \"<code>published</code>\" í væntanlegri API útgáfu. Vinsamlegast kynntu þér nánar í skjölun.',\n /** Label for the pinned release perspective */\n 'settings.perspectives.pinned-release-label': 'Fest útgáfa',\n /** Title for popover that explains what \"Perspectives\" are */\n 'settings.perspectives.title': 'Perspectives',\n})\n"],"names":[],"mappings":";AAEA,IAAA,SAAe,+BAA+B;AAAA;AAAA,EAE5C,gCAAgC;AAAA;AAAA,EAEhC,wBAAwB;AAAA;AAAA,EAExB,yBAAyB;AAAA;AAAA,EAEzB,uBAAuB;AAAA;AAAA,EAEvB,wBAAwB;AAAA;AAAA;AAAA;AAAA;AAAA,EAMxB,aAAa;AAAA;AAAA,EAGb,oCAAoC;AAAA;AAAA,EAEpC,gBAAgB;AAAA;AAAA,EAGhB,sBAAsB;AAAA;AAAA,EAEtB,oBAAoB;AAAA;AAAA,EAEpB,eAAe;AAAA;AAAA,EAEf,aAAa;AAAA;AAAA,EAGb,gCAAgC;AAAA;AAAA,EAEhC,+BAA+B;AAAA;AAAA,EAE/B,gBAAgB;AAAA;AAAA,EAEhB,+CAA+C;AAAA;AAAA,EAE/C,gCAAgC;AAAA;AAAA;AAAA;AAAA;AAAA,EAKhC,gCAAgC;AAAA;AAAA,EAGhC,8BAA8B;AAAA;AAAA,EAE9B,qCAAqC;AAAA;AAAA,EAErC,0BAA0B;AAAA;AAAA,EAE1B,sCAAsC;AAAA;AAAA,EAEtC,oCAAoC;AAAA;AAAA;AAAA;AAAA;AAAA,EAKpC,8BAA8B;AAAA;AAAA,EAE9B,qEACE;AAAA;AAAA,EAEF,0CAA0C;AAAA;AAAA,EAE1C,iCAAiC;AAAA;AAAA,EAEjC,qCACE;AAAA;AAAA,EAEF,iDACE;AAAA;AAAA,EAEF,8CAA8C;AAAA;AAAA,EAE9C,+BAA+B;AACjC,CAAC;"}
package/dist/index.cjs CHANGED
@@ -1,44 +1,57 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var sanity = require('sanity');
6
-
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: !0 });
3
+ var sanity = require("sanity");
7
4
  const locale = sanity.defineLocale({
8
5
  id: "is-IS",
9
6
  title: "\xCDslenska",
10
7
  bundles: [
11
8
  {
12
9
  namespace: "comments",
13
- resources: () => Promise.resolve().then(function () { return require('./_chunks-cjs/comments.cjs'); })
10
+ resources: () => Promise.resolve().then(function() {
11
+ return require("./_chunks-cjs/comments.cjs");
12
+ })
14
13
  },
15
14
  {
16
15
  namespace: "copy-paste",
17
- resources: () => Promise.resolve().then(function () { return require('./_chunks-cjs/copy-paste.cjs'); })
16
+ resources: () => Promise.resolve().then(function() {
17
+ return require("./_chunks-cjs/copy-paste.cjs");
18
+ })
18
19
  },
19
20
  {
20
21
  namespace: "create",
21
- resources: () => Promise.resolve().then(function () { return require('./_chunks-cjs/create.cjs'); })
22
+ resources: () => Promise.resolve().then(function() {
23
+ return require("./_chunks-cjs/create.cjs");
24
+ })
22
25
  },
23
26
  {
24
27
  namespace: "structure",
25
- resources: () => Promise.resolve().then(function () { return require('./_chunks-cjs/structure.cjs'); })
28
+ resources: () => Promise.resolve().then(function() {
29
+ return require("./_chunks-cjs/structure.cjs");
30
+ })
26
31
  },
27
32
  {
28
33
  namespace: "studio",
29
- resources: () => Promise.resolve().then(function () { return require('./_chunks-cjs/studio.cjs'); })
34
+ resources: () => Promise.resolve().then(function() {
35
+ return require("./_chunks-cjs/studio.cjs");
36
+ })
30
37
  },
31
38
  {
32
39
  namespace: "tasks",
33
- resources: () => Promise.resolve().then(function () { return require('./_chunks-cjs/tasks.cjs'); })
40
+ resources: () => Promise.resolve().then(function() {
41
+ return require("./_chunks-cjs/tasks.cjs");
42
+ })
34
43
  },
35
44
  {
36
45
  namespace: "validation",
37
- resources: () => Promise.resolve().then(function () { return require('./_chunks-cjs/validation.cjs'); })
46
+ resources: () => Promise.resolve().then(function() {
47
+ return require("./_chunks-cjs/validation.cjs");
48
+ })
38
49
  },
39
50
  {
40
51
  namespace: "vision",
41
- resources: () => Promise.resolve().then(function () { return require('./_chunks-cjs/vision.cjs'); })
52
+ resources: () => Promise.resolve().then(function() {
53
+ return require("./_chunks-cjs/vision.cjs");
54
+ })
42
55
  }
43
56
  ],
44
57
  weekInfo: {
@@ -46,13 +59,11 @@ const locale = sanity.defineLocale({
46
59
  minimalDays: 4,
47
60
  weekend: [6, 7]
48
61
  }
49
- });
50
- const isISLocale = sanity.definePlugin((config) => ({
62
+ }), isISLocale = sanity.definePlugin((config) => ({
51
63
  name: "@sanity/locale-is-is",
52
64
  i18n: {
53
65
  locales: [config ? { ...locale, ...config } : locale]
54
66
  }
55
67
  }));
56
-
57
68
  exports.isISLocale = isISLocale;
58
69
  //# sourceMappingURL=index.cjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","sources":["../src/index.ts"],"sourcesContent":["import {defineLocale, definePlugin, type LocaleDefinition} from 'sanity'\n\nconst locale = defineLocale({\n id: 'is-IS',\n title: 'Íslenska',\n bundles: [\n {\n namespace: 'comments',\n resources: () => import('./comments'),\n },\n\n {\n namespace: 'copy-paste',\n resources: () => import('./copy-paste'),\n },\n\n {\n namespace: 'create',\n resources: () => import('./create'),\n },\n\n {\n namespace: 'structure',\n resources: () => import('./structure'),\n },\n\n {\n namespace: 'studio',\n resources: () => import('./studio'),\n },\n\n {\n namespace: 'tasks',\n resources: () => import('./tasks'),\n },\n\n {\n namespace: 'validation',\n resources: () => import('./validation'),\n },\n\n {\n namespace: 'vision',\n resources: () => import('./vision'),\n },\n ],\n weekInfo: {\n firstDay: 1,\n minimalDays: 4,\n weekend: [6, 7],\n },\n})\n\n/**\n * Íslenska / Icelandic locale/translation plugin for Sanity Studio\n *\n * @public\n */\nexport const isISLocale = definePlugin<{\n title?: string\n weekInfo?: LocaleDefinition['weekInfo']\n} | void>((config) => ({\n name: '@sanity/locale-is-is',\n i18n: {\n locales: [config ? {...locale, ...config} : locale],\n },\n}))\n"],"names":["defineLocale","definePlugin"],"mappings":";;;;;;AAEA,MAAM,SAASA,mBAAa,CAAA;AAAA,EAC1B,EAAI,EAAA,OAAA;AAAA,EACJ,KAAO,EAAA,aAAA;AAAA,EACP,OAAS,EAAA;AAAA,IACP;AAAA,MACE,SAAW,EAAA,UAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,4BAAY;AAAA,KACtC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,YAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,8BAAc;AAAA,KACxC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,QAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,0BAAU;AAAA,KACpC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,WAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,6BAAa;AAAA,KACvC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,QAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,0BAAU;AAAA,KACpC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,OAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,yBAAS;AAAA,KACnC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,YAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,8BAAc;AAAA,KACxC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,QAAA;AAAA,MACX,SAAA,EAAW,MAAM,oDAAO,0BAAU;AAAA;AACpC,GACF;AAAA,EACA,QAAU,EAAA;AAAA,IACR,QAAU,EAAA,CAAA;AAAA,IACV,WAAa,EAAA,CAAA;AAAA,IACb,OAAA,EAAS,CAAC,CAAA,EAAG,CAAC;AAAA;AAElB,CAAC,CAAA;AAOY,MAAA,UAAA,GAAaC,mBAGhB,CAAA,CAAC,MAAY,MAAA;AAAA,EACrB,IAAM,EAAA,sBAAA;AAAA,EACN,IAAM,EAAA;AAAA,IACJ,OAAA,EAAS,CAAC,MAAS,GAAA,EAAC,GAAG,MAAQ,EAAA,GAAG,MAAM,EAAA,GAAI,MAAM;AAAA;AAEtD,CAAE,CAAA;;;;"}
1
+ {"version":3,"file":"index.cjs","sources":["../src/index.ts"],"sourcesContent":["import {defineLocale, definePlugin, type LocaleDefinition} from 'sanity'\n\nconst locale = defineLocale({\n id: 'is-IS',\n title: 'Íslenska',\n bundles: [\n {\n namespace: 'comments',\n resources: () => import('./comments'),\n },\n\n {\n namespace: 'copy-paste',\n resources: () => import('./copy-paste'),\n },\n\n {\n namespace: 'create',\n resources: () => import('./create'),\n },\n\n {\n namespace: 'structure',\n resources: () => import('./structure'),\n },\n\n {\n namespace: 'studio',\n resources: () => import('./studio'),\n },\n\n {\n namespace: 'tasks',\n resources: () => import('./tasks'),\n },\n\n {\n namespace: 'validation',\n resources: () => import('./validation'),\n },\n\n {\n namespace: 'vision',\n resources: () => import('./vision'),\n },\n ],\n weekInfo: {\n firstDay: 1,\n minimalDays: 4,\n weekend: [6, 7],\n },\n})\n\n/**\n * Íslenska / Icelandic locale/translation plugin for Sanity Studio\n *\n * @public\n */\nexport const isISLocale = definePlugin<{\n title?: string\n weekInfo?: LocaleDefinition['weekInfo']\n} | void>((config) => ({\n name: '@sanity/locale-is-is',\n i18n: {\n locales: [config ? {...locale, ...config} : locale],\n },\n}))\n"],"names":["defineLocale","definePlugin"],"mappings":";;;AAEA,MAAM,SAASA,OAAAA,aAAa;AAAA,EAC1B,IAAI;AAAA,EACJ,OAAO;AAAA,EACP,SAAS;AAAA,IACP;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,QAAA,QAAA,EAAA,KAAA,WAAA;AAAA,eAAA,QAAO,4BAAY;AAAA,MAAA,CAAA;AAAA,IACtC;AAAA,IAEA;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,QAAA,QAAA,EAAA,KAAA,WAAA;AAAA,eAAA,QAAO,8BAAc;AAAA,MAAA,CAAA;AAAA,IACxC;AAAA,IAEA;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,QAAA,QAAA,EAAA,KAAA,WAAA;AAAA,eAAA,QAAO,0BAAU;AAAA,MAAA,CAAA;AAAA,IACpC;AAAA,IAEA;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,QAAA,QAAA,EAAA,KAAA,WAAA;AAAA,eAAA,QAAO,6BAAa;AAAA,MAAA,CAAA;AAAA,IACvC;AAAA,IAEA;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,QAAA,QAAA,EAAA,KAAA,WAAA;AAAA,eAAA,QAAO,0BAAU;AAAA,MAAA,CAAA;AAAA,IACpC;AAAA,IAEA;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,QAAA,QAAA,EAAA,KAAA,WAAA;AAAA,eAAA,QAAO,yBAAS;AAAA,MAAA,CAAA;AAAA,IACnC;AAAA,IAEA;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,QAAA,QAAA,EAAA,KAAA,WAAA;AAAA,eAAA,QAAO,8BAAc;AAAA,MAAA,CAAA;AAAA,IACxC;AAAA,IAEA;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,QAAA,QAAA,EAAA,KAAA,WAAA;AAAA,eAAA,QAAO,0BAAU;AAAA,MAAA,CAAA;AAAA,IAAA;AAAA,EAEtC;AAAA,EACA,UAAU;AAAA,IACR,UAAU;AAAA,IACV,aAAa;AAAA,IACb,SAAS,CAAC,GAAG,CAAC;AAAA,EAAA;AAElB,CAAC,GAOY,aAAaC,OAAAA,aAGhB,CAAC,YAAY;AAAA,EACrB,MAAM;AAAA,EACN,MAAM;AAAA,IACJ,SAAS,CAAC,SAAS,EAAC,GAAG,QAAQ,GAAG,OAAM,IAAI,MAAM;AAAA,EAAA;AAEtD,EAAE;;"}
package/dist/index.js CHANGED
@@ -1,40 +1,39 @@
1
- import { defineLocale, definePlugin } from 'sanity';
2
-
1
+ import { defineLocale, definePlugin } from "sanity";
3
2
  const locale = defineLocale({
4
3
  id: "is-IS",
5
4
  title: "\xCDslenska",
6
5
  bundles: [
7
6
  {
8
7
  namespace: "comments",
9
- resources: () => import('./_chunks-es/comments.js')
8
+ resources: () => import("./_chunks-es/comments.js")
10
9
  },
11
10
  {
12
11
  namespace: "copy-paste",
13
- resources: () => import('./_chunks-es/copy-paste.js')
12
+ resources: () => import("./_chunks-es/copy-paste.js")
14
13
  },
15
14
  {
16
15
  namespace: "create",
17
- resources: () => import('./_chunks-es/create.js')
16
+ resources: () => import("./_chunks-es/create.js")
18
17
  },
19
18
  {
20
19
  namespace: "structure",
21
- resources: () => import('./_chunks-es/structure.js')
20
+ resources: () => import("./_chunks-es/structure.js")
22
21
  },
23
22
  {
24
23
  namespace: "studio",
25
- resources: () => import('./_chunks-es/studio.js')
24
+ resources: () => import("./_chunks-es/studio.js")
26
25
  },
27
26
  {
28
27
  namespace: "tasks",
29
- resources: () => import('./_chunks-es/tasks.js')
28
+ resources: () => import("./_chunks-es/tasks.js")
30
29
  },
31
30
  {
32
31
  namespace: "validation",
33
- resources: () => import('./_chunks-es/validation.js')
32
+ resources: () => import("./_chunks-es/validation.js")
34
33
  },
35
34
  {
36
35
  namespace: "vision",
37
- resources: () => import('./_chunks-es/vision.js')
36
+ resources: () => import("./_chunks-es/vision.js")
38
37
  }
39
38
  ],
40
39
  weekInfo: {
@@ -42,13 +41,13 @@ const locale = defineLocale({
42
41
  minimalDays: 4,
43
42
  weekend: [6, 7]
44
43
  }
45
- });
46
- const isISLocale = definePlugin((config) => ({
44
+ }), isISLocale = definePlugin((config) => ({
47
45
  name: "@sanity/locale-is-is",
48
46
  i18n: {
49
47
  locales: [config ? { ...locale, ...config } : locale]
50
48
  }
51
49
  }));
52
-
53
- export { isISLocale };
50
+ export {
51
+ isISLocale
52
+ };
54
53
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import {defineLocale, definePlugin, type LocaleDefinition} from 'sanity'\n\nconst locale = defineLocale({\n id: 'is-IS',\n title: 'Íslenska',\n bundles: [\n {\n namespace: 'comments',\n resources: () => import('./comments'),\n },\n\n {\n namespace: 'copy-paste',\n resources: () => import('./copy-paste'),\n },\n\n {\n namespace: 'create',\n resources: () => import('./create'),\n },\n\n {\n namespace: 'structure',\n resources: () => import('./structure'),\n },\n\n {\n namespace: 'studio',\n resources: () => import('./studio'),\n },\n\n {\n namespace: 'tasks',\n resources: () => import('./tasks'),\n },\n\n {\n namespace: 'validation',\n resources: () => import('./validation'),\n },\n\n {\n namespace: 'vision',\n resources: () => import('./vision'),\n },\n ],\n weekInfo: {\n firstDay: 1,\n minimalDays: 4,\n weekend: [6, 7],\n },\n})\n\n/**\n * Íslenska / Icelandic locale/translation plugin for Sanity Studio\n *\n * @public\n */\nexport const isISLocale = definePlugin<{\n title?: string\n weekInfo?: LocaleDefinition['weekInfo']\n} | void>((config) => ({\n name: '@sanity/locale-is-is',\n i18n: {\n locales: [config ? {...locale, ...config} : locale],\n },\n}))\n"],"names":[],"mappings":";;AAEA,MAAM,SAAS,YAAa,CAAA;AAAA,EAC1B,EAAI,EAAA,OAAA;AAAA,EACJ,KAAO,EAAA,aAAA;AAAA,EACP,OAAS,EAAA;AAAA,IACP;AAAA,MACE,SAAW,EAAA,UAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,0BAAY;AAAA,KACtC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,YAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,4BAAc;AAAA,KACxC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,QAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,wBAAU;AAAA,KACpC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,WAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,2BAAa;AAAA,KACvC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,QAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,wBAAU;AAAA,KACpC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,OAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,uBAAS;AAAA,KACnC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,YAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,4BAAc;AAAA,KACxC;AAAA,IAEA;AAAA,MACE,SAAW,EAAA,QAAA;AAAA,MACX,SAAA,EAAW,MAAM,OAAO,wBAAU;AAAA;AACpC,GACF;AAAA,EACA,QAAU,EAAA;AAAA,IACR,QAAU,EAAA,CAAA;AAAA,IACV,WAAa,EAAA,CAAA;AAAA,IACb,OAAA,EAAS,CAAC,CAAA,EAAG,CAAC;AAAA;AAElB,CAAC,CAAA;AAOY,MAAA,UAAA,GAAa,YAGhB,CAAA,CAAC,MAAY,MAAA;AAAA,EACrB,IAAM,EAAA,sBAAA;AAAA,EACN,IAAM,EAAA;AAAA,IACJ,OAAA,EAAS,CAAC,MAAS,GAAA,EAAC,GAAG,MAAQ,EAAA,GAAG,MAAM,EAAA,GAAI,MAAM;AAAA;AAEtD,CAAE,CAAA;;;;"}
1
+ {"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import {defineLocale, definePlugin, type LocaleDefinition} from 'sanity'\n\nconst locale = defineLocale({\n id: 'is-IS',\n title: 'Íslenska',\n bundles: [\n {\n namespace: 'comments',\n resources: () => import('./comments'),\n },\n\n {\n namespace: 'copy-paste',\n resources: () => import('./copy-paste'),\n },\n\n {\n namespace: 'create',\n resources: () => import('./create'),\n },\n\n {\n namespace: 'structure',\n resources: () => import('./structure'),\n },\n\n {\n namespace: 'studio',\n resources: () => import('./studio'),\n },\n\n {\n namespace: 'tasks',\n resources: () => import('./tasks'),\n },\n\n {\n namespace: 'validation',\n resources: () => import('./validation'),\n },\n\n {\n namespace: 'vision',\n resources: () => import('./vision'),\n },\n ],\n weekInfo: {\n firstDay: 1,\n minimalDays: 4,\n weekend: [6, 7],\n },\n})\n\n/**\n * Íslenska / Icelandic locale/translation plugin for Sanity Studio\n *\n * @public\n */\nexport const isISLocale = definePlugin<{\n title?: string\n weekInfo?: LocaleDefinition['weekInfo']\n} | void>((config) => ({\n name: '@sanity/locale-is-is',\n i18n: {\n locales: [config ? {...locale, ...config} : locale],\n },\n}))\n"],"names":[],"mappings":";AAEA,MAAM,SAAS,aAAa;AAAA,EAC1B,IAAI;AAAA,EACJ,OAAO;AAAA,EACP,SAAS;AAAA,IACP;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,OAAO,0BAAY;AAAA,IACtC;AAAA,IAEA;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,OAAO,4BAAc;AAAA,IACxC;AAAA,IAEA;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,OAAO,wBAAU;AAAA,IACpC;AAAA,IAEA;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,OAAO,2BAAa;AAAA,IACvC;AAAA,IAEA;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,OAAO,wBAAU;AAAA,IACpC;AAAA,IAEA;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,OAAO,uBAAS;AAAA,IACnC;AAAA,IAEA;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,OAAO,4BAAc;AAAA,IACxC;AAAA,IAEA;AAAA,MACE,WAAW;AAAA,MACX,WAAW,MAAM,OAAO,wBAAU;AAAA,IAAA;AAAA,EAEtC;AAAA,EACA,UAAU;AAAA,IACR,UAAU;AAAA,IACV,aAAa;AAAA,IACb,SAAS,CAAC,GAAG,CAAC;AAAA,EAAA;AAElB,CAAC,GAOY,aAAa,aAGhB,CAAC,YAAY;AAAA,EACrB,MAAM;AAAA,EACN,MAAM;AAAA,IACJ,SAAS,CAAC,SAAS,EAAC,GAAG,QAAQ,GAAG,OAAM,IAAI,MAAM;AAAA,EAAA;AAEtD,EAAE;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity/locale-is-is",
3
- "version": "1.2.10",
3
+ "version": "1.2.12",
4
4
  "private": false,
5
5
  "description": "Icelandic / Íslenska locale/translation for Sanity Studio",
6
6
  "keywords": [
package/src/comments.ts CHANGED
@@ -29,9 +29,6 @@ export default removeUndefinedLocaleResources({
29
29
  /** The inspector text when error copying link */
30
30
  'copy-link-error-message': 'Ekki tókst að afrita tengil á klippiborð',
31
31
 
32
- /** The inspector successfully copied link text */
33
- 'copy-link-success-message': 'Tengill afritaður á klippiborð',
34
-
35
32
  /** The delete dialog body for a comment */
36
33
  'delete-comment.body': 'Ekki hægt að endurheimta athugasemd eftir að henni er eitt.',
37
34
  /** The delete dialog confirm button text for a comment */
package/src/copy-paste.ts CHANGED
@@ -12,12 +12,6 @@ export default removeUndefinedLocaleResources({
12
12
  /** The error message that is shown when the clipboard is not supported */
13
13
  'copy-paste.on-copy.validation.clipboard-not-supported.title':
14
14
  'Vafrinn þinn styður ekki þessa aðgerð',
15
- /** The success message that is shown when a document is copied */
16
- 'copy-paste.on-copy.validation.copy-document-success.title': 'Skjal "{{fieldNames}}" afritað',
17
- /** The success message that is shown when a field is copied */
18
- 'copy-paste.on-copy.validation.copy-field_one-success.title': 'Reitur "{{fieldName}}" afritaður',
19
- /** The success message that is shown when a array item is copied */
20
- 'copy-paste.on-copy.validation.copy-item_one-success.title': 'Atriði "{{typeName}}" afritað',
21
15
  /** The error message that is shown when there is no value to copy */
22
16
  'copy-paste.on-copy.validation.no-value.title': 'Tómt gildi, ekkert til að afrita',
23
17
  /** --- On copy --- */
@@ -34,11 +28,6 @@ export default removeUndefinedLocaleResources({
34
28
  'copy-paste.on-paste.validation.clipboard-empty.title': 'Ekkert til að líma inn',
35
29
  /** The validation message that is shown when the clipboard item is invalid */
36
30
  'copy-paste.on-paste.validation.clipboard-invalid.title': 'Ógilt klippiborðsatriði',
37
- /** The success message that is shown when a document is pasted */
38
- 'copy-paste.on-paste.validation.document-paste-success.title': 'Skjal "{{fieldNames}}" uppfært',
39
- /** The success message that is shown when a field is pasted */
40
- 'copy-paste.on-paste.validation.field_one-paste-success.title':
41
- 'Reitur "{{fieldName}}" uppfærður',
42
31
  /** The validation message that is shown when image files are incompatible */
43
32
  'copy-paste.on-paste.validation.image-file-incompatible.description':
44
33
  '"{{sourceSchemaType}}" er ekki leyfilegt í "{{targetSchemaType}}"',
package/src/structure.ts CHANGED
@@ -39,6 +39,8 @@ export default removeUndefinedLocaleResources({
39
39
  'action.publish.disabled.not-ready': 'Aðgerð ekki tilbúin',
40
40
  /** Label for action when there are pending changes.*/
41
41
  'action.publish.draft.label': 'Birta',
42
+ /** Label for the "Publish" document action */
43
+ 'action.publish.label': 'Birta',
42
44
  /** Label for the "Publish" document action when the document has live edit enabled.*/
43
45
  'action.publish.live-edit.label': 'Birta',
44
46
  /** Fallback tooltip for the "Publish" document action when publish is invoked for a document with live edit enabled.*/
@@ -76,6 +78,9 @@ export default removeUndefinedLocaleResources({
76
78
  'action.unpublish.live-edit.disabled':
77
79
  'Þetta skjal hefur beina ritun virkjaða og getur ekki verið afturkallað',
78
80
 
81
+ /** Description for the archived release banner, rendered when viewing the history of a version document from the publihed view */
82
+ 'banners.archived-release.description':
83
+ 'Þú ert að skoða skjal sem er aðeins til lesturs og var vistað sem hluti af <VersionBadge>{{title}}</VersionBadge>. Það er ekki hægt að breyta því',
79
84
  /** The text for the restore button on the deleted document banner */
80
85
  'banners.deleted-document-banner.restore-button.text': 'Endurheimta nýjustu útgáfuna',
81
86
  /** The text content for the deleted document banner */
@@ -105,6 +110,9 @@ export default removeUndefinedLocaleResources({
105
110
  'banners.permission-check-banner.request-permission-button.sent': 'Beiðni um ritstjóra send',
106
111
  /** The text for the request permission button that appears for viewer roles */
107
112
  'banners.permission-check-banner.request-permission-button.text': 'Biðja um að fá að breyta',
113
+ /** Description for the archived release banner, rendered when viewing the history of a version document from the published view */
114
+ 'banners.published-release.description':
115
+ 'Þú ert að skoða skjal sem er aðeins til lesturs og var birt sem hluti af <VersionBadge>{{title}}</VersionBadge>. Það er ekki hægt að breyta því',
108
116
  /** The text for the reload button */
109
117
  'banners.reference-changed-banner.reason-changed.reload-button.text': 'Endurhlaða tilvísun',
110
118
  /** The text for the reference change banner if the reason is that the reference has been changed */
@@ -115,6 +123,39 @@ export default removeUndefinedLocaleResources({
115
123
  /** The text for the reference change banner if the reason is that the reference has been deleted */
116
124
  'banners.reference-changed-banner.reason-removed.text':
117
125
  'Þessi tilvísun hefur verið fjarlægð síðan þú opnaðir hana.',
126
+ /** The text that appears for the action button to add the current document to the global release */
127
+ 'banners.release.action.add-to-release': 'Bæta við útgáfu',
128
+ /** The text that appears for the action button to add the current document to the global release */
129
+ 'banners.release.action.open-to-edit': 'Opna útgáfu til að breyta',
130
+ /** Toast description in case an error occurs when adding a document to a release */
131
+ 'banners.release.error.description': 'Villa kom upp við að bæta skjali við útgáfuna: {{message}}',
132
+ /** Toast title in case an error occurs when adding a document to a release */
133
+ 'banners.release.error.title': 'Villa við að bæta skjali við útgáfu',
134
+ /** The text for the banner that appears when a document only has versions but is in a draft or published pinned release */
135
+ 'banners.release.navigate-to-edit-description': 'Skjalið er aðeins til í',
136
+ /** The text for the banner that appears when a document only has versions but is in a draft or published pinned release */
137
+ 'banners.release.navigate-to-edit-description-end_one': 'útgáfunni',
138
+ /** The text for the banner that appears when a document only has versions but is in a draft or published pinned release */
139
+ 'banners.release.navigate-to-edit-description-end_other': 'útgáfum',
140
+ /** The text for the banner that appears when there are multiple versions but no drafts or published, only one extra releases */
141
+ 'banners.release.navigate-to-edit-description-multiple_one':
142
+ 'Þetta skjal er hluti af <VersionBadge/> útgáfunni og {{count}} annarri útgáfu.',
143
+ /** The text for the banner that appears when there are multiple versions but no drafts or published, more than one extra releases */
144
+ 'banners.release.navigate-to-edit-description-multiple_other':
145
+ 'Þetta skjal er hluti af <VersionBadge/> útgáfunni og {{count}} öðrum útgáfum',
146
+ /** The text for the banner that appears when a document only has one version but is in a draft or published pinned release */
147
+ 'banners.release.navigate-to-edit-description-single':
148
+ 'Þetta skjal er hluti af <VersionBadge/> útgáfunni',
149
+ /** The text for the banner that appears when a document is not in the current global release */
150
+ 'banners.release.not-in-release': 'Ekki í <VersionBadge>{{title}}</VersionBadge> útgáfunni.',
151
+ /** Description of toast that will appear in case of latency between the user adding a document to a release and the UI reflecting it */
152
+ 'banners.release.waiting.description':
153
+ 'Vinsamlegast bíddu á meðan skjalið er bætt við útgáfuna. Það ætti ekki að taka lengur en nokkrar sekúndur.',
154
+ /** Title of toast that will appear in case of latency between the user adding a document to a release and the UI reflecting it */
155
+ 'banners.release.waiting.title': 'Bæti skjali við útgáfu…',
156
+ /** The text content for the unpublished document banner when is part of a release */
157
+ 'banners.unpublished-release-banner.text':
158
+ 'Þetta skjal verður óbirt sem hluti af <VersionBadge>{{title}}</VersionBadge> útgáfunni',
118
159
 
119
160
  /** Browser/tab title when creating a new document of a given type */
120
161
  'browser-document-title.new-document': 'Nýtt {{schemaType}}',
@@ -143,6 +184,25 @@ export default removeUndefinedLocaleResources({
143
184
  /** The label used in the changes inspector for the to selector */
144
185
  'changes.to.label': 'Til',
145
186
 
187
+ /** The error message shown when the specified document comparison mode is not supported */
188
+ 'compare-version.error.invalidModeParam':
189
+ '"{{input}}" er ekki studdur háttur til að bera saman skjöl.',
190
+ /** The error message shown when the next document for comparison could not be extracted from the URL */
191
+ 'compare-version.error.invalidNextDocumentParam': 'Næsta skjals parameter er ógilt.',
192
+ /** The error message shown when the document comparison URL could not be parsed */
193
+ 'compare-version.error.invalidParams.title': 'Ekki hægt að bera saman skjöl',
194
+ /** The error message shown when the previous document for comparison could not be extracted from the URL */
195
+ 'compare-version.error.invalidPreviousDocumentParam': 'Fyrri skjals parameter er ógilt.',
196
+
197
+ /** The text for the "Compare versions" action for a document */
198
+ 'compare-versions.menu-item.title': 'Bera saman útgáfur',
199
+ /** The string used to label draft documents */
200
+ 'compare-versions.status.draft': 'Drög',
201
+ /** The string used to label published documents */
202
+ 'compare-versions.status.published': 'Birt',
203
+ /** The title used when comparing versions of a document */
204
+ 'compare-versions.title': 'Bera saman útgáfur',
205
+
146
206
  /** The text in the "Cancel" button in the confirm delete dialog that cancels the action and closes the dialog */
147
207
  'confirm-delete-dialog.cancel-button.text': 'Hætta við',
148
208
  /** Used in `confirm-delete-dialog.cdr-summary.title` */
@@ -167,8 +227,6 @@ export default removeUndefinedLocaleResources({
167
227
  'confirm-delete-dialog.cdr-table.dataset.label': 'Gagnasanf',
168
228
  /** The header for the document ID column in the list of cross-dataset references found */
169
229
  'confirm-delete-dialog.cdr-table.document-id.label': 'Auðkenni skjals',
170
- /** The toast title when the copy button has been clicked */
171
- 'confirm-delete-dialog.cdr-table.id-copied-toast.title': 'Afritað aðkenni skjals á klippiborð!',
172
230
  /** The toast title when the copy button has been clicked but copying failed */
173
231
  'confirm-delete-dialog.cdr-table.id-copied-toast.title-failed':
174
232
  'Mistókst að afrita skjalaauðkenni',
@@ -272,6 +330,13 @@ export default removeUndefinedLocaleResources({
272
330
  /** The title of the sync lock toast on the form view */
273
331
  'document-view.form-view.sync-lock-toast.title': 'Samstilli skjal…',
274
332
 
333
+ /**The title for the menu items that will be shown when expanding a publish release event to inspect the document */
334
+ 'events.inspect.release': 'Skoða <VersionBadge>{{releaseTitle}}</VersionBadge> skjal',
335
+ /**The title for the menu items that will be shown when expanding a publish draft event to inspect the draft document*/
336
+ 'events.open.draft': 'Opna <VersionBadge>drög</VersionBadge> skjal',
337
+ /**The title for the menu items that will be shown when expanding a publish release event to inspect the release*/
338
+ 'events.open.release': 'Opna <VersionBadge>{{releaseTitle}}</VersionBadge> útgáfu',
339
+
275
340
  /** The loading messaging for when the tooltip is still loading permission info */
276
341
  'insufficient-permissions-message-tooltip.loading-text': 'Hleður…',
277
342
 
@@ -362,6 +427,9 @@ export default removeUndefinedLocaleResources({
362
427
  /** The text when copy URL operation succeeded */
363
428
  'panes.document-operation-results.operation-success_copy-url':
364
429
  'Skjalavefslóð afrituð á klippiborð',
430
+ /** */
431
+ 'panes.document-operation-results.operation-success_createVersion':
432
+ '<Strong>{{title}}</Strong> var bætt við útgáfuna',
365
433
  /** The text when a delete operation succeeded */
366
434
  'panes.document-operation-results.operation-success_delete': 'Skjalinu var eytt',
367
435
  /** The text when a discard changes operation succeeded */
@@ -380,8 +448,6 @@ export default removeUndefinedLocaleResources({
380
448
  'Birtingu skjalsins var afturkallað. Drög hafa verið búin til úr síðustu birtu útgáfu.',
381
449
  /** The document title shown when document title is "undefined" in operation message */
382
450
  'panes.document-operation-results.operation-undefined-title': 'Ótitlað',
383
- /** The title of the reconnecting toast */
384
- 'panes.document-pane-provider.reconnecting.title': 'Tenging rofnaði. Endurtengi…',
385
451
  /** The loading message for the document not found pane */
386
452
  'panes.document-pane.document-not-found.loading': 'Hleð skjali…',
387
453
  /** The text of the document not found pane if the schema is known */