@bigbinary/neeto-molecules 5.1.14 → 5.1.16

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 (40) hide show
  1. package/dist/cjs/v2/ConfirmationModal.js +3 -3
  2. package/dist/cjs/v2/ConfirmationModal.js.map +1 -1
  3. package/dist/v2/ConfirmationModal.js +3 -3
  4. package/dist/v2/ConfirmationModal.js.map +1 -1
  5. package/package.json +1 -1
  6. package/src/translations/ar.json +13 -13
  7. package/src/translations/bg.json +13 -13
  8. package/src/translations/ca.json +13 -13
  9. package/src/translations/cs.json +13 -13
  10. package/src/translations/da.json +13 -13
  11. package/src/translations/de.json +13 -13
  12. package/src/translations/es-MX.json +13 -13
  13. package/src/translations/es.json +13 -13
  14. package/src/translations/et.json +13 -13
  15. package/src/translations/fi.json +13 -13
  16. package/src/translations/fil.json +13 -13
  17. package/src/translations/fr.json +13 -13
  18. package/src/translations/he.json +13 -13
  19. package/src/translations/hi.json +13 -13
  20. package/src/translations/hr.json +13 -13
  21. package/src/translations/hu.json +13 -13
  22. package/src/translations/id.json +13 -13
  23. package/src/translations/it.json +13 -13
  24. package/src/translations/ja.json +13 -13
  25. package/src/translations/ko.json +13 -13
  26. package/src/translations/nl.json +13 -13
  27. package/src/translations/pl.json +13 -13
  28. package/src/translations/pt-BR.json +13 -13
  29. package/src/translations/pt.json +13 -13
  30. package/src/translations/ro.json +13 -13
  31. package/src/translations/ru.json +13 -13
  32. package/src/translations/sk.json +13 -13
  33. package/src/translations/sl.json +13 -13
  34. package/src/translations/sv.json +13 -13
  35. package/src/translations/th.json +13 -13
  36. package/src/translations/tr.json +13 -13
  37. package/src/translations/uk.json +13 -13
  38. package/src/translations/vi.json +13 -13
  39. package/src/translations/zh-CN.json +13 -13
  40. package/src/translations/zh-TW.json +13 -13
@@ -2,7 +2,6 @@
2
2
 
3
3
  var neetoAtoms = require('@bigbinary/neeto-atoms');
4
4
  var formik = require('@bigbinary/neeto-atoms/formik');
5
- var ramda = require('ramda');
6
5
  var reactI18next = require('react-i18next');
7
6
  var yup = require('yup');
8
7
  var jsxRuntime = require('react/jsx-runtime');
@@ -84,10 +83,11 @@ var ConfirmationModal = function ConfirmationModal(_ref) {
84
83
  return /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
85
84
  children: [/*#__PURE__*/jsxRuntime.jsxs(neetoAtoms.Dialog.Body, {
86
85
  className: "flex flex-col gap-y-4",
87
- children: [ramda.type(description) === "String" ? /*#__PURE__*/jsxRuntime.jsx(neetoAtoms.Typography, {
86
+ children: [/*#__PURE__*/jsxRuntime.jsx(neetoAtoms.Typography, {
87
+ as: "div",
88
88
  variant: "body2",
89
89
  children: description
90
- }) : description, /*#__PURE__*/jsxRuntime.jsx(formik.Input, {
90
+ }), /*#__PURE__*/jsxRuntime.jsx(formik.Input, {
91
91
  autoFocus: true,
92
92
  "data-testid": "confirmation-modal-input",
93
93
  label: deleteInputLabel,
@@ -1 +1 @@
1
- {"version":3,"file":"ConfirmationModal.js","sources":["../../../src/v2/components/ConfirmationModal/constants.js","../../../src/v2/components/ConfirmationModal/utils.js","../../../src/v2/components/ConfirmationModal/index.jsx"],"sourcesContent":["export const INITIAL_VALUES = { confirmationText: \"\" };\n","import * as yup from \"yup\";\n\nexport const deletionValidationSchema = confirmationText =>\n yup.object({\n confirmationText: yup.string().required(\"\").oneOf([confirmationText], \"\"),\n });\n","import { Dialog, Typography } from \"@bigbinary/neeto-atoms\";\nimport { ActionBlock, Form, Input } from \"@bigbinary/neeto-atoms/formik\";\nimport PropTypes from \"prop-types\";\nimport { type } from \"ramda\";\nimport { Trans, useTranslation } from \"react-i18next\";\n\nimport { INITIAL_VALUES } from \"./constants\";\nimport { deletionValidationSchema } from \"./utils\";\n\nconst ConfirmationModal = ({\n buttonLabel,\n confirmationText,\n description = \"\",\n isOpen = true,\n isSubmitting = false,\n title = \"\",\n onClose,\n onSubmit,\n deleteConfirmationMessage,\n}) => {\n const { t } = useTranslation();\n\n const formikProps = {\n initialValues: INITIAL_VALUES,\n validationSchema: deletionValidationSchema(confirmationText),\n onSubmit,\n };\n\n const deleteInputLabel = deleteConfirmationMessage || (\n <Trans\n components={{ strong: <strong /> }}\n i18nKey=\"neetoMolecules.confirmationModal.deleteConfirmationMessage\"\n values={{ value: confirmationText }}\n />\n );\n\n return (\n <Dialog\n {...{ isOpen, onClose }}\n aria-describedby={undefined}\n data-testid=\"confirmation-modal\"\n >\n <Dialog.Header>\n <Dialog.Title data-testid=\"confirmation-modal-title\">\n {title}\n </Dialog.Title>\n </Dialog.Header>\n <Form {...{ formikProps }} className=\"flex flex-col gap-5\">\n {({ values }) => (\n <>\n <Dialog.Body className=\"flex flex-col gap-y-4\">\n {type(description) === \"String\" ? (\n <Typography variant=\"body2\">{description}</Typography>\n ) : (\n description\n )}\n <Input\n autoFocus\n data-testid=\"confirmation-modal-input\"\n label={deleteInputLabel}\n labelProps={{ className: \"block w-full\" }}\n name=\"confirmationText\"\n type=\"text\"\n />\n </Dialog.Body>\n <Dialog.Footer>\n <ActionBlock\n position=\"right\"\n cancelButtonProps={{\n label: t(\"neetoMolecules.common.actions.cancel\"),\n variant: \"ghost\",\n onClick: onClose,\n disabled: false,\n type: \"button\",\n }}\n submitButtonProps={{\n \"data-testid\": \"delete-continue-button\",\n label: buttonLabel,\n loading: isSubmitting,\n variant: \"destructive\",\n disabled:\n isSubmitting ||\n confirmationText !== values.confirmationText,\n }}\n />\n </Dialog.Footer>\n </>\n )}\n </Form>\n </Dialog>\n );\n};\n\nConfirmationModal.propTypes = {\n /**\n * Label of the action button in the Modal\n */\n buttonLabel: PropTypes.string,\n /**\n * Text that is expected to be entered by the user\n */\n confirmationText: PropTypes.string,\n /**\n * Modal description\n */\n description: PropTypes.oneOfType([\n PropTypes.arrayOf(PropTypes.node),\n PropTypes.node,\n PropTypes.string,\n ]),\n /**\n * To be passed to loading prop of the action button\n */\n isSubmitting: PropTypes.bool,\n /**\n * To specify whether the modal should be opened or closed.\n */\n isOpen: PropTypes.bool,\n /**\n * Title of the modal\n */\n title: PropTypes.string,\n /**\n * Handler function that is invoked when the close button is clicked\n */\n onClose: PropTypes.func,\n /**\n * Handler function that is invoked when the action button is clicked\n */\n onSubmit: PropTypes.func,\n /**\n * Message that will be shown as the label of the confirmation input field.\n */\n deleteConfirmationMessage: PropTypes.string,\n};\n\nexport default ConfirmationModal;\n"],"names":["INITIAL_VALUES","confirmationText","deletionValidationSchema","yup","object","string","required","oneOf","ConfirmationModal","_ref","buttonLabel","_ref$description","description","_ref$isOpen","isOpen","_ref$isSubmitting","isSubmitting","_ref$title","title","onClose","onSubmit","deleteConfirmationMessage","_useTranslation","useTranslation","t","formikProps","initialValues","validationSchema","deleteInputLabel","_jsx","Trans","components","strong","i18nKey","values","value","_jsxs","Dialog","undefined","children","Header","Title","Form","className","_ref2","_Fragment","Body","type","Typography","variant","Input","autoFocus","label","labelProps","name","Footer","ActionBlock","position","cancelButtonProps","onClick","disabled","submitButtonProps","loading"],"mappings":"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"}
1
+ {"version":3,"file":"ConfirmationModal.js","sources":["../../../src/v2/components/ConfirmationModal/constants.js","../../../src/v2/components/ConfirmationModal/utils.js","../../../src/v2/components/ConfirmationModal/index.jsx"],"sourcesContent":["export const INITIAL_VALUES = { confirmationText: \"\" };\n","import * as yup from \"yup\";\n\nexport const deletionValidationSchema = confirmationText =>\n yup.object({\n confirmationText: yup.string().required(\"\").oneOf([confirmationText], \"\"),\n });\n","import { Dialog, Typography } from \"@bigbinary/neeto-atoms\";\nimport { ActionBlock, Form, Input } from \"@bigbinary/neeto-atoms/formik\";\nimport PropTypes from \"prop-types\";\nimport { Trans, useTranslation } from \"react-i18next\";\n\nimport { INITIAL_VALUES } from \"./constants\";\nimport { deletionValidationSchema } from \"./utils\";\n\nconst ConfirmationModal = ({\n buttonLabel,\n confirmationText,\n description = \"\",\n isOpen = true,\n isSubmitting = false,\n title = \"\",\n onClose,\n onSubmit,\n deleteConfirmationMessage,\n}) => {\n const { t } = useTranslation();\n\n const formikProps = {\n initialValues: INITIAL_VALUES,\n validationSchema: deletionValidationSchema(confirmationText),\n onSubmit,\n };\n\n const deleteInputLabel = deleteConfirmationMessage || (\n <Trans\n components={{ strong: <strong /> }}\n i18nKey=\"neetoMolecules.confirmationModal.deleteConfirmationMessage\"\n values={{ value: confirmationText }}\n />\n );\n\n return (\n <Dialog\n {...{ isOpen, onClose }}\n aria-describedby={undefined}\n data-testid=\"confirmation-modal\"\n >\n <Dialog.Header>\n <Dialog.Title data-testid=\"confirmation-modal-title\">\n {title}\n </Dialog.Title>\n </Dialog.Header>\n <Form {...{ formikProps }} className=\"flex flex-col gap-5\">\n {({ values }) => (\n <>\n <Dialog.Body className=\"flex flex-col gap-y-4\">\n <Typography as=\"div\" variant=\"body2\">\n {description}\n </Typography>\n <Input\n autoFocus\n data-testid=\"confirmation-modal-input\"\n label={deleteInputLabel}\n labelProps={{ className: \"block w-full\" }}\n name=\"confirmationText\"\n type=\"text\"\n />\n </Dialog.Body>\n <Dialog.Footer>\n <ActionBlock\n position=\"right\"\n cancelButtonProps={{\n label: t(\"neetoMolecules.common.actions.cancel\"),\n variant: \"ghost\",\n onClick: onClose,\n disabled: false,\n type: \"button\",\n }}\n submitButtonProps={{\n \"data-testid\": \"delete-continue-button\",\n label: buttonLabel,\n loading: isSubmitting,\n variant: \"destructive\",\n disabled:\n isSubmitting ||\n confirmationText !== values.confirmationText,\n }}\n />\n </Dialog.Footer>\n </>\n )}\n </Form>\n </Dialog>\n );\n};\n\nConfirmationModal.propTypes = {\n /**\n * Label of the action button in the Modal\n */\n buttonLabel: PropTypes.string,\n /**\n * Text that is expected to be entered by the user\n */\n confirmationText: PropTypes.string,\n /**\n * Modal description\n */\n description: PropTypes.oneOfType([\n PropTypes.arrayOf(PropTypes.node),\n PropTypes.node,\n PropTypes.string,\n ]),\n /**\n * To be passed to loading prop of the action button\n */\n isSubmitting: PropTypes.bool,\n /**\n * To specify whether the modal should be opened or closed.\n */\n isOpen: PropTypes.bool,\n /**\n * Title of the modal\n */\n title: PropTypes.string,\n /**\n * Handler function that is invoked when the close button is clicked\n */\n onClose: PropTypes.func,\n /**\n * Handler function that is invoked when the action button is clicked\n */\n onSubmit: PropTypes.func,\n /**\n * Message that will be shown as the label of the confirmation input field.\n */\n deleteConfirmationMessage: PropTypes.string,\n};\n\nexport default ConfirmationModal;\n"],"names":["INITIAL_VALUES","confirmationText","deletionValidationSchema","yup","object","string","required","oneOf","ConfirmationModal","_ref","buttonLabel","_ref$description","description","_ref$isOpen","isOpen","_ref$isSubmitting","isSubmitting","_ref$title","title","onClose","onSubmit","deleteConfirmationMessage","_useTranslation","useTranslation","t","formikProps","initialValues","validationSchema","deleteInputLabel","_jsx","Trans","components","strong","i18nKey","values","value","_jsxs","Dialog","undefined","children","Header","Title","Form","className","_ref2","_Fragment","Body","Typography","as","variant","Input","autoFocus","label","labelProps","name","type","Footer","ActionBlock","position","cancelButtonProps","onClick","disabled","submitButtonProps","loading"],"mappings":"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"}
@@ -1,6 +1,5 @@
1
1
  import { Dialog, Typography } from '@bigbinary/neeto-atoms';
2
2
  import { Form, Input, ActionBlock } from '@bigbinary/neeto-atoms/formik';
3
- import { type } from 'ramda';
4
3
  import { useTranslation, Trans } from 'react-i18next';
5
4
  import * as yup from 'yup';
6
5
  import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
@@ -63,10 +62,11 @@ var ConfirmationModal = function ConfirmationModal(_ref) {
63
62
  return /*#__PURE__*/jsxs(Fragment, {
64
63
  children: [/*#__PURE__*/jsxs(Dialog.Body, {
65
64
  className: "flex flex-col gap-y-4",
66
- children: [type(description) === "String" ? /*#__PURE__*/jsx(Typography, {
65
+ children: [/*#__PURE__*/jsx(Typography, {
66
+ as: "div",
67
67
  variant: "body2",
68
68
  children: description
69
- }) : description, /*#__PURE__*/jsx(Input, {
69
+ }), /*#__PURE__*/jsx(Input, {
70
70
  autoFocus: true,
71
71
  "data-testid": "confirmation-modal-input",
72
72
  label: deleteInputLabel,
@@ -1 +1 @@
1
- {"version":3,"file":"ConfirmationModal.js","sources":["../../src/v2/components/ConfirmationModal/constants.js","../../src/v2/components/ConfirmationModal/utils.js","../../src/v2/components/ConfirmationModal/index.jsx"],"sourcesContent":["export const INITIAL_VALUES = { confirmationText: \"\" };\n","import * as yup from \"yup\";\n\nexport const deletionValidationSchema = confirmationText =>\n yup.object({\n confirmationText: yup.string().required(\"\").oneOf([confirmationText], \"\"),\n });\n","import { Dialog, Typography } from \"@bigbinary/neeto-atoms\";\nimport { ActionBlock, Form, Input } from \"@bigbinary/neeto-atoms/formik\";\nimport PropTypes from \"prop-types\";\nimport { type } from \"ramda\";\nimport { Trans, useTranslation } from \"react-i18next\";\n\nimport { INITIAL_VALUES } from \"./constants\";\nimport { deletionValidationSchema } from \"./utils\";\n\nconst ConfirmationModal = ({\n buttonLabel,\n confirmationText,\n description = \"\",\n isOpen = true,\n isSubmitting = false,\n title = \"\",\n onClose,\n onSubmit,\n deleteConfirmationMessage,\n}) => {\n const { t } = useTranslation();\n\n const formikProps = {\n initialValues: INITIAL_VALUES,\n validationSchema: deletionValidationSchema(confirmationText),\n onSubmit,\n };\n\n const deleteInputLabel = deleteConfirmationMessage || (\n <Trans\n components={{ strong: <strong /> }}\n i18nKey=\"neetoMolecules.confirmationModal.deleteConfirmationMessage\"\n values={{ value: confirmationText }}\n />\n );\n\n return (\n <Dialog\n {...{ isOpen, onClose }}\n aria-describedby={undefined}\n data-testid=\"confirmation-modal\"\n >\n <Dialog.Header>\n <Dialog.Title data-testid=\"confirmation-modal-title\">\n {title}\n </Dialog.Title>\n </Dialog.Header>\n <Form {...{ formikProps }} className=\"flex flex-col gap-5\">\n {({ values }) => (\n <>\n <Dialog.Body className=\"flex flex-col gap-y-4\">\n {type(description) === \"String\" ? (\n <Typography variant=\"body2\">{description}</Typography>\n ) : (\n description\n )}\n <Input\n autoFocus\n data-testid=\"confirmation-modal-input\"\n label={deleteInputLabel}\n labelProps={{ className: \"block w-full\" }}\n name=\"confirmationText\"\n type=\"text\"\n />\n </Dialog.Body>\n <Dialog.Footer>\n <ActionBlock\n position=\"right\"\n cancelButtonProps={{\n label: t(\"neetoMolecules.common.actions.cancel\"),\n variant: \"ghost\",\n onClick: onClose,\n disabled: false,\n type: \"button\",\n }}\n submitButtonProps={{\n \"data-testid\": \"delete-continue-button\",\n label: buttonLabel,\n loading: isSubmitting,\n variant: \"destructive\",\n disabled:\n isSubmitting ||\n confirmationText !== values.confirmationText,\n }}\n />\n </Dialog.Footer>\n </>\n )}\n </Form>\n </Dialog>\n );\n};\n\nConfirmationModal.propTypes = {\n /**\n * Label of the action button in the Modal\n */\n buttonLabel: PropTypes.string,\n /**\n * Text that is expected to be entered by the user\n */\n confirmationText: PropTypes.string,\n /**\n * Modal description\n */\n description: PropTypes.oneOfType([\n PropTypes.arrayOf(PropTypes.node),\n PropTypes.node,\n PropTypes.string,\n ]),\n /**\n * To be passed to loading prop of the action button\n */\n isSubmitting: PropTypes.bool,\n /**\n * To specify whether the modal should be opened or closed.\n */\n isOpen: PropTypes.bool,\n /**\n * Title of the modal\n */\n title: PropTypes.string,\n /**\n * Handler function that is invoked when the close button is clicked\n */\n onClose: PropTypes.func,\n /**\n * Handler function that is invoked when the action button is clicked\n */\n onSubmit: PropTypes.func,\n /**\n * Message that will be shown as the label of the confirmation input field.\n */\n deleteConfirmationMessage: PropTypes.string,\n};\n\nexport default ConfirmationModal;\n"],"names":["INITIAL_VALUES","confirmationText","deletionValidationSchema","yup","object","string","required","oneOf","ConfirmationModal","_ref","buttonLabel","_ref$description","description","_ref$isOpen","isOpen","_ref$isSubmitting","isSubmitting","_ref$title","title","onClose","onSubmit","deleteConfirmationMessage","_useTranslation","useTranslation","t","formikProps","initialValues","validationSchema","deleteInputLabel","_jsx","Trans","components","strong","i18nKey","values","value","_jsxs","Dialog","undefined","children","Header","Title","Form","className","_ref2","_Fragment","Body","type","Typography","variant","Input","autoFocus","label","labelProps","name","Footer","ActionBlock","position","cancelButtonProps","onClick","disabled","submitButtonProps","loading"],"mappings":"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"}
1
+ {"version":3,"file":"ConfirmationModal.js","sources":["../../src/v2/components/ConfirmationModal/constants.js","../../src/v2/components/ConfirmationModal/utils.js","../../src/v2/components/ConfirmationModal/index.jsx"],"sourcesContent":["export const INITIAL_VALUES = { confirmationText: \"\" };\n","import * as yup from \"yup\";\n\nexport const deletionValidationSchema = confirmationText =>\n yup.object({\n confirmationText: yup.string().required(\"\").oneOf([confirmationText], \"\"),\n });\n","import { Dialog, Typography } from \"@bigbinary/neeto-atoms\";\nimport { ActionBlock, Form, Input } from \"@bigbinary/neeto-atoms/formik\";\nimport PropTypes from \"prop-types\";\nimport { Trans, useTranslation } from \"react-i18next\";\n\nimport { INITIAL_VALUES } from \"./constants\";\nimport { deletionValidationSchema } from \"./utils\";\n\nconst ConfirmationModal = ({\n buttonLabel,\n confirmationText,\n description = \"\",\n isOpen = true,\n isSubmitting = false,\n title = \"\",\n onClose,\n onSubmit,\n deleteConfirmationMessage,\n}) => {\n const { t } = useTranslation();\n\n const formikProps = {\n initialValues: INITIAL_VALUES,\n validationSchema: deletionValidationSchema(confirmationText),\n onSubmit,\n };\n\n const deleteInputLabel = deleteConfirmationMessage || (\n <Trans\n components={{ strong: <strong /> }}\n i18nKey=\"neetoMolecules.confirmationModal.deleteConfirmationMessage\"\n values={{ value: confirmationText }}\n />\n );\n\n return (\n <Dialog\n {...{ isOpen, onClose }}\n aria-describedby={undefined}\n data-testid=\"confirmation-modal\"\n >\n <Dialog.Header>\n <Dialog.Title data-testid=\"confirmation-modal-title\">\n {title}\n </Dialog.Title>\n </Dialog.Header>\n <Form {...{ formikProps }} className=\"flex flex-col gap-5\">\n {({ values }) => (\n <>\n <Dialog.Body className=\"flex flex-col gap-y-4\">\n <Typography as=\"div\" variant=\"body2\">\n {description}\n </Typography>\n <Input\n autoFocus\n data-testid=\"confirmation-modal-input\"\n label={deleteInputLabel}\n labelProps={{ className: \"block w-full\" }}\n name=\"confirmationText\"\n type=\"text\"\n />\n </Dialog.Body>\n <Dialog.Footer>\n <ActionBlock\n position=\"right\"\n cancelButtonProps={{\n label: t(\"neetoMolecules.common.actions.cancel\"),\n variant: \"ghost\",\n onClick: onClose,\n disabled: false,\n type: \"button\",\n }}\n submitButtonProps={{\n \"data-testid\": \"delete-continue-button\",\n label: buttonLabel,\n loading: isSubmitting,\n variant: \"destructive\",\n disabled:\n isSubmitting ||\n confirmationText !== values.confirmationText,\n }}\n />\n </Dialog.Footer>\n </>\n )}\n </Form>\n </Dialog>\n );\n};\n\nConfirmationModal.propTypes = {\n /**\n * Label of the action button in the Modal\n */\n buttonLabel: PropTypes.string,\n /**\n * Text that is expected to be entered by the user\n */\n confirmationText: PropTypes.string,\n /**\n * Modal description\n */\n description: PropTypes.oneOfType([\n PropTypes.arrayOf(PropTypes.node),\n PropTypes.node,\n PropTypes.string,\n ]),\n /**\n * To be passed to loading prop of the action button\n */\n isSubmitting: PropTypes.bool,\n /**\n * To specify whether the modal should be opened or closed.\n */\n isOpen: PropTypes.bool,\n /**\n * Title of the modal\n */\n title: PropTypes.string,\n /**\n * Handler function that is invoked when the close button is clicked\n */\n onClose: PropTypes.func,\n /**\n * Handler function that is invoked when the action button is clicked\n */\n onSubmit: PropTypes.func,\n /**\n * Message that will be shown as the label of the confirmation input field.\n */\n deleteConfirmationMessage: PropTypes.string,\n};\n\nexport default ConfirmationModal;\n"],"names":["INITIAL_VALUES","confirmationText","deletionValidationSchema","yup","object","string","required","oneOf","ConfirmationModal","_ref","buttonLabel","_ref$description","description","_ref$isOpen","isOpen","_ref$isSubmitting","isSubmitting","_ref$title","title","onClose","onSubmit","deleteConfirmationMessage","_useTranslation","useTranslation","t","formikProps","initialValues","validationSchema","deleteInputLabel","_jsx","Trans","components","strong","i18nKey","values","value","_jsxs","Dialog","undefined","children","Header","Title","Form","className","_ref2","_Fragment","Body","Typography","as","variant","Input","autoFocus","label","labelProps","name","type","Footer","ActionBlock","position","cancelButtonProps","onClick","disabled","submitButtonProps","loading"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-molecules",
3
- "version": "5.1.14",
3
+ "version": "5.1.16",
4
4
  "description": "A package of reusable molecular components for neeto products.",
5
5
  "repository": "git@github.com:bigbinary/neeto-molecules.git",
6
6
  "author": "Amaljith K <amaljith.k@bigbinary.com>",
@@ -542,11 +542,11 @@
542
542
  "updatedFieldsWithNewValue": "<Semibold>{{field}}</Semibold> إلى <Code>{{to, anyCase}}</Code>",
543
543
  "connectedGoogleCalender": "{{performedBy, anyCase}} <Semibold>تم الاتصال بـ Google Calendar</Semibold> باستخدام <Code>{{emailAddress}}</Code>.",
544
544
  "disconnectedGoogleCalender": "{{performedBy, anyCase}} <Semibold>تم فصل الاتصال بـ Google Calendar</Semibold> لـ <Code>{{emailAddress}}</Code>.",
545
- "connectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>متصل بدمج Stripe</Semibold> مع معرف الحساب: <Code>{{stripeAccountId}}</Code> في {{productSuffix, anyCase}}.",
545
+ "connectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>متصل بدمج Stripe</Semibold> مع رمز الحساب: <Code>{{stripeAccountId, anyCase}}</Code> على {{productSuffix, anyCase}}.",
546
546
  "disconnectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>غير متصل بدمج Stripe</Semibold> في {{productSuffix, anyCase}}.",
547
- "connectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>متصل بدمج Zoom</Semibold> مع معرف الحساب: <Code>{{zoomAccountId}}</Code> في {{productSuffix, anyCase}}.",
547
+ "connectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>متصل بدمج Zoom</Semibold> مع رمز الحساب: <Code>{{zoomAccountId, anyCase}}</Code> على {{productSuffix, anyCase}}.",
548
548
  "disconnectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>غير متصل بدمج Zoom</Semibold> في {{productSuffix, anyCase}}.",
549
- "connectedCustomDomain": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>متصل بالنطاق المخصص:</Semibold> <Code>{{hostname}}</Code> في {{productSuffix, anyCase}}.",
549
+ "connectedCustomDomain": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>متصل بالنطاق المخصص:</Semibold> <Code>{{hostname, anyCase}}</Code> على {{productSuffix, anyCase}}.",
550
550
  "updatedFields": "<Semibold>{{field}}</Semibold>",
551
551
  "updatedRole": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>حدّث</Semibold> <Code>{{roleName}}</Code> دور في {{productSuffix, anyCase}}.",
552
552
  "updatedRoleName": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>أعاد تسمية</Semibold> <Code>{{name.from}}</Code> دور إلى <Code>{{name.to}}</Code> في {{productSuffix, anyCase}}.",
@@ -570,16 +570,16 @@
570
570
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>فصل Microsoft Teams</Semibold>.",
571
571
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>متصل بـ Zoom</Semibold> باستخدام <Code>{{emailAddress}}</Code>.",
572
572
  "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>فصل Zoom</Semibold> لـ <Code>{{emailAddress}}</Code>.",
573
- "integrationConnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>متصل {{integrationName}}</Semibold> باستخدام <Code>{{detail}}</Code>.",
574
- "integrationConnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>متصل {{integrationName}}</Semibold>.",
575
- "integrationConnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>متصل {{integrationName}}</Semibold> نيابة عن <Code>{{integrationOwner}}</Code> باستخدام <Code>{{detail}}</Code>.",
576
- "integrationConnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>متصل {{integrationName}}</Semibold> نيابة عن <Code>{{integrationOwner}}</Code>.",
577
- "integrationDisconnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>غير متصل {{integrationName}}</Semibold> لـ <Code>{{detail}}</Code>.",
578
- "integrationDisconnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>غير متصل {{integrationName}}</Semibold>.",
579
- "integrationDisconnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>غير متصل {{integrationName}}</Semibold> نيابة عن <Code>{{integrationOwner}}</Code> (<Code>{{detail}}</Code>).",
580
- "integrationDisconnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>غير متصل {{integrationName}}</Semibold> نيابة عن <Code>{{integrationOwner}}</Code>.",
581
- "integrationDisconnectedByProvider": "<Bold>{{integrationName}}</Bold> <Semibold>غير متصل</Semibold> لـ <Code>{{detail}}</Code> (متصل بواسطة {{performedBy, anyCase}}).",
582
- "integrationDisconnectedByProviderWithoutDetail": "<Bold>{{integrationName}}</Bold> <Semibold>غير متصل</Semibold> (متصل بواسطة {{performedBy, anyCase}})."
573
+ "integrationConnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>متصل {{integrationName, anyCase}}</Semibold> باستخدام <Code>{{detail, anyCase}}</Code>.",
574
+ "integrationConnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>متصل {{integrationName, anyCase}}</Semibold>.",
575
+ "integrationConnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>متصل {{integrationName, anyCase}}</Semibold> نيابةً عن <Code>{{integrationOwner, anyCase}}</Code> باستخدام <Code>{{detail, anyCase}}</Code>.",
576
+ "integrationConnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>متصل {{integrationName, anyCase}}</Semibold> نيابةً عن <Code>{{integrationOwner, anyCase}}</Code>.",
577
+ "integrationDisconnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>منفصل {{integrationName, anyCase}}</Semibold> من أجل <Code>{{detail, anyCase}}</Code>.",
578
+ "integrationDisconnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>منفصل {{integrationName, anyCase}}</Semibold>.",
579
+ "integrationDisconnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>منفصل {{integrationName, anyCase}}</Semibold> نيابةً عن <Code>{{integrationOwner, anyCase}}</Code> باستخدام <Code>{{detail, anyCase}}</Code>.",
580
+ "integrationDisconnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>منفصل {{integrationName, anyCase}}</Semibold> نيابةً عن <Code>{{integrationOwner, anyCase}}</Code>.",
581
+ "integrationDisconnectedByProvider": "<Bold>{{integrationName, anyCase}}</Bold> <Semibold>منفصل</Semibold> من أجل <Code>{{detail, anyCase}}</Code> (متصل بواسطة {{performedBy, anyCase}}).",
582
+ "integrationDisconnectedByProviderWithoutDetail": "<Bold>{{integrationName, anyCase}}</Bold> <Semibold>منفصل</Semibold> (متصل بواسطة {{performedBy, anyCase}})."
583
583
  }
584
584
  },
585
585
  "ipRestriction": {
@@ -559,11 +559,11 @@
559
559
  "updatedFieldsWithNewValue": "<Semibold>{{field}}</Semibold> на <Code>{{to, anyCase}}</Code>",
560
560
  "connectedGoogleCalender": "{{performedBy, anyCase}} <Semibold>свързан Google Calendar</Semibold> с <Code>{{emailAddress}}</Code>.",
561
561
  "disconnectedGoogleCalender": "{{performedBy, anyCase}} <Semibold>развръзал Google Calendar</Semibold> за <Code>{{emailAddress}}</Code>.",
562
- "connectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>свързан с интеграция Stripe</Semibold> с ID на акаунт: <Code>{{stripeAccountId}}</Code> на {{productSuffix, anyCase}}.",
562
+ "connectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>се свърза с интеграцията Stripe</Semibold> с ID на акаунт: <Code>{{stripeAccountId, anyCase}}</Code> на {{productSuffix, anyCase}}.",
563
563
  "disconnectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>изключи интеграцията Stripe</Semibold> на {{productSuffix, anyCase}}.",
564
- "connectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>свързан с интеграция Zoom</Semibold> с ID на акаунт: <Code>{{zoomAccountId}}</Code> на {{productSuffix, anyCase}}.",
564
+ "connectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>се свърза с интеграцията Zoom</Semibold> с ID на акаунт: <Code>{{zoomAccountId, anyCase}}</Code> на {{productSuffix, anyCase}}.",
565
565
  "disconnectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>изключи интеграцията Zoom</Semibold> на {{productSuffix, anyCase}}.",
566
- "connectedCustomDomain": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>свързан с персонализиран домейн:</Semibold> <Code>{{hostname}}</Code> на {{productSuffix, anyCase}}.",
566
+ "connectedCustomDomain": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>се свърза с персонален домейн:</Semibold> <Code>{{hostname, anyCase}}</Code> на {{productSuffix, anyCase}}.",
567
567
  "updatedFields": "<Semibold>{{field}}</Semibold>",
568
568
  "updatedRole": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>актуализира</Semibold> <Code>{{roleName}}</Code> роля в {{productSuffix, anyCase}}.",
569
569
  "updatedRoleName": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>преименува</Semibold> <Code>{{name.from}}</Code> роля на <Code>{{name.to}}</Code> в {{productSuffix, anyCase}}.",
@@ -587,16 +587,16 @@
587
587
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>прекъснат Microsoft Teams</Semibold>.",
588
588
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>свързан Zoom</Semibold> с <Code>{{emailAddress}}</Code>.",
589
589
  "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>прекъснат Zoom</Semibold> за <Code>{{emailAddress}}</Code>.",
590
- "integrationConnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>свързан</Semibold> с {{integrationName}} чрез <Code>{{detail}}</Code>.",
591
- "integrationConnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>свързан</Semibold> с {{integrationName}}.",
592
- "integrationConnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>свързан</Semibold> с {{integrationName}} от името на <Code>{{integrationOwner}}</Code> чрез <Code>{{detail}}</Code>.",
593
- "integrationConnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>свързан</Semibold> с {{integrationName}} от името на <Code>{{integrationOwner}}</Code>.",
594
- "integrationDisconnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>изключен</Semibold> {{integrationName}} за <Code>{{detail}}</Code>.",
595
- "integrationDisconnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>изключен</Semibold> {{integrationName}}.",
596
- "integrationDisconnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>изключен</Semibold> {{integrationName}} за <Code>{{integrationOwner}}</Code> (<Code>{{detail}}</Code>).",
597
- "integrationDisconnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>изключен</Semibold> {{integrationName}} за <Code>{{integrationOwner}}</Code>.",
598
- "integrationDisconnectedByProvider": "<Bold>{{integrationName}}</Bold> <Semibold>изключен</Semibold> за <Code>{{detail}}</Code> (свързан от {{performedBy, anyCase}}).",
599
- "integrationDisconnectedByProviderWithoutDetail": "<Bold>{{integrationName}}</Bold> <Semibold>изключен</Semibold> (свързан от {{performedBy, anyCase}})."
590
+ "integrationConnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>се свърза с {{integrationName, anyCase}}</Semibold> с помощта на <Code>{{detail, anyCase}}</Code>.",
591
+ "integrationConnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>се свърза с {{integrationName, anyCase}}</Semibold>.",
592
+ "integrationConnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>се свърза с {{integrationName, anyCase}}</Semibold> от името на <Code>{{integrationOwner, anyCase}}</Code> с помощта на <Code>{{detail, anyCase}}</Code>.",
593
+ "integrationConnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>се свърза с {{integrationName, anyCase}}</Semibold> от името на <Code>{{integrationOwner, anyCase}}</Code>.",
594
+ "integrationDisconnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>отключи {{integrationName, anyCase}}</Semibold> за <Code>{{detail, anyCase}}</Code>.",
595
+ "integrationDisconnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>отключи {{integrationName, anyCase}}</Semibold>.",
596
+ "integrationDisconnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>отключи {{integrationName, anyCase}}</Semibold> от името на <Code>{{integrationOwner, anyCase}}</Code> с помощта на <Code>{{detail, anyCase}}</Code>.",
597
+ "integrationDisconnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>отключи {{integrationName, anyCase}}</Semibold> от името на <Code>{{integrationOwner, anyCase}}</Code>.",
598
+ "integrationDisconnectedByProvider": "<Bold>{{integrationName, anyCase}}</Bold> <Semibold>отключи</Semibold> за <Code>{{detail, anyCase}}</Code> (свързан от {{performedBy, anyCase}}).",
599
+ "integrationDisconnectedByProviderWithoutDetail": "<Bold>{{integrationName, anyCase}}</Bold> <Semibold>отключи</Semibold> (свързан от {{performedBy, anyCase}})."
600
600
  }
601
601
  },
602
602
  "ipRestriction": {
@@ -542,11 +542,11 @@
542
542
  "updatedFieldsWithNewValue": "<Semibold>{{field}}</Semibold> a <Code>{{to, anyCase}}</Code>",
543
543
  "connectedGoogleCalender": "{{performedBy, anyCase}} <Semibold>ha connectat Google Calendar</Semibold> utilitzant <Code>{{emailAddress}}</Code>.",
544
544
  "disconnectedGoogleCalender": "{{performedBy, anyCase}} <Semibold>ha desconnectat Google Calendar</Semibold> per <Code>{{emailAddress}}</Code>.",
545
- "connectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>s'ha connectat a la integració de Stripe</Semibold> amb ID d'account: <Code>{{stripeAccountId}}</Code> a {{productSuffix, anyCase}}.",
545
+ "connectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>connectat a la integració de Stripe</Semibold> amb ID del compte: <Code>{{stripeAccountId, anyCase}}</Code> el {{productSuffix, anyCase}}.",
546
546
  "disconnectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>ha desconnectat la integració de Stripe</Semibold> a {{productSuffix, anyCase}}.",
547
- "connectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>s'ha connectat a la integració de Zoom</Semibold> amb ID d'account: <Code>{{zoomAccountId}}</Code> a {{productSuffix, anyCase}}.",
547
+ "connectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>connectat a la integració de Zoom</Semibold> amb ID del compte: <Code>{{zoomAccountId, anyCase}}</Code> el {{productSuffix, anyCase}}.",
548
548
  "disconnectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>ha desconnectat la integració de Zoom</Semibold> a {{productSuffix, anyCase}}.",
549
- "connectedCustomDomain": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>s'ha connectat al domini personalitzat:</Semibold> <Code>{{hostname}}</Code> a {{productSuffix, anyCase}}.",
549
+ "connectedCustomDomain": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>connectat al domini personalitzat:</Semibold> <Code>{{hostname, anyCase}}</Code> el {{productSuffix, anyCase}}.",
550
550
  "updatedFields": "<Semibold>{{field}}</Semibold>",
551
551
  "updatedRole": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>ha actualitzat</Semibold> <Code>{{roleName}}</Code> rol a {{productSuffix, anyCase}}.",
552
552
  "updatedRoleName": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>ha renomé</Semibold> <Code>{{name.from}}</Code> rol a <Code>{{name.to}}</Code> a {{productSuffix, anyCase}}.",
@@ -570,16 +570,16 @@
570
570
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>desconnectat Microsoft Teams</Semibold>.",
571
571
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>connectat Zoom</Semibold> utilitzant <Code>{{emailAddress}}</Code>.",
572
572
  "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>desconnectat Zoom</Semibold> per <Code>{{emailAddress}}</Code>.",
573
- "integrationConnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>s'ha connectat {{integrationName}}</Semibold> utilitzant <Code>{{detail}}</Code>.",
574
- "integrationConnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>s'ha connectat {{integrationName}}</Semibold>.",
575
- "integrationConnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>s'ha connectat {{integrationName}}</Semibold> per <Code>{{integrationOwner}}</Code> utilitzant <Code>{{detail}}</Code>.",
576
- "integrationConnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>s'ha connectat {{integrationName}}</Semibold> per <Code>{{integrationOwner}}</Code>.",
577
- "integrationDisconnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>s'ha desconnectat {{integrationName}}</Semibold> per <Code>{{detail}}</Code>.",
578
- "integrationDisconnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>s'ha desconnectat {{integrationName}}</Semibold>.",
579
- "integrationDisconnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>s'ha desconnectat {{integrationName}}</Semibold> per <Code>{{integrationOwner}}</Code> (<Code>{{detail}}</Code>).",
580
- "integrationDisconnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>s'ha desconnectat {{integrationName}}</Semibold> per <Code>{{integrationOwner}}</Code>.",
581
- "integrationDisconnectedByProvider": "<Bold>{{integrationName}}</Bold> <Semibold>s'ha desconnectat</Semibold> per <Code>{{detail}}</Code> (connectat per {{performedBy, anyCase}}).",
582
- "integrationDisconnectedByProviderWithoutDetail": "<Bold>{{integrationName}}</Bold> <Semibold>s'ha desconnectat</Semibold> (connectat per {{performedBy, anyCase}})."
573
+ "integrationConnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>connectat {{integrationName, anyCase}}</Semibold> utilitzant <Code>{{detail, anyCase}}</Code>.",
574
+ "integrationConnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>connectat {{integrationName, anyCase}}</Semibold>.",
575
+ "integrationConnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>connectat {{integrationName, anyCase}}</Semibold> per <Code>{{integrationOwner, anyCase}}</Code> utilitzant <Code>{{detail, anyCase}}</Code>.",
576
+ "integrationConnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>connectat {{integrationName, anyCase}}</Semibold> per <Code>{{integrationOwner, anyCase}}</Code>.",
577
+ "integrationDisconnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>desconnectat {{integrationName, anyCase}}</Semibold> per <Code>{{detail, anyCase}}</Code>.",
578
+ "integrationDisconnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>desconnectat {{integrationName, anyCase}}</Semibold>.",
579
+ "integrationDisconnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>desconnectat {{integrationName, anyCase}}</Semibold> per <Code>{{integrationOwner, anyCase}}</Code> utilitzant <Code>{{detail, anyCase}}</Code>.",
580
+ "integrationDisconnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>desconnectat {{integrationName, anyCase}}</Semibold> per <Code>{{integrationOwner, anyCase}}</Code>.",
581
+ "integrationDisconnectedByProvider": "<Bold>{{integrationName, anyCase}}</Bold> <Semibold>desconnectat</Semibold> per <Code>{{detail, anyCase}}</Code> (connectat per {{performedBy, anyCase}}).",
582
+ "integrationDisconnectedByProviderWithoutDetail": "<Bold>{{integrationName, anyCase}}</Bold> <Semibold>desconnectat</Semibold> (connectat per {{performedBy, anyCase}})."
583
583
  }
584
584
  },
585
585
  "ipRestriction": {
@@ -542,11 +542,11 @@
542
542
  "updatedFieldsWithNewValue": "<Semibold>{{field}}</Semibold> na <Code>{{to, anyCase}}</Code>",
543
543
  "connectedGoogleCalender": "{{performedBy, anyCase}} <Semibold>připojil Google Calendar</Semibold> použitím <Code>{{emailAddress}}</Code>.",
544
544
  "disconnectedGoogleCalender": "{{performedBy, anyCase}} <Semibold>odpojil Google Calendar</Semibold> pro <Code>{{emailAddress}}</Code>.",
545
- "connectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>připojen k integraci Stripe</Semibold> s ID účtu: <Code>{{stripeAccountId}}</Code> na {{productSuffix, anyCase}}.",
545
+ "connectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>připojil se k integraci Stripe</Semibold> s ID účtu: <Code>{{stripeAccountId, anyCase}}</Code> na {{productSuffix, anyCase}}.",
546
546
  "disconnectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>odpojil integraci Stripe</Semibold> na {{productSuffix, anyCase}}.",
547
- "connectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>připojen k integraci Zoom</Semibold> s ID účtu: <Code>{{zoomAccountId}}</Code> na {{productSuffix, anyCase}}.",
547
+ "connectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>připojil se k integraci Zoom</Semibold> s ID účtu: <Code>{{zoomAccountId, anyCase}}</Code> na {{productSuffix, anyCase}}.",
548
548
  "disconnectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>odpojil integraci Zoom</Semibold> na {{productSuffix, anyCase}}.",
549
- "connectedCustomDomain": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>připojen vlastní doména:</Semibold> <Code>{{hostname}}</Code> na {{productSuffix, anyCase}}.",
549
+ "connectedCustomDomain": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>připojil vlastní doménu:</Semibold> <Code>{{hostname, anyCase}}</Code> na {{productSuffix, anyCase}}.",
550
550
  "updatedFields": "<Semibold>{{field}}</Semibold>",
551
551
  "updatedRole": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>aktualizoval</Semibold> <Code>{{roleName}}</Code> roli na {{productSuffix, anyCase}}.",
552
552
  "updatedRoleName": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>přejmenoval</Semibold> <Code>{{name.from}}</Code> roli na <Code>{{name.to}}</Code> na {{productSuffix, anyCase}}.",
@@ -570,16 +570,16 @@
570
570
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>odpojený Microsoft Teams</Semibold>.",
571
571
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>připojený Zoom</Semibold> pomocí <Code>{{emailAddress}}</Code>.",
572
572
  "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>odpojený Zoom</Semibold> pro <Code>{{emailAddress}}</Code>.",
573
- "integrationConnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>připojil {{integrationName}}</Semibold> pomocí <Code>{{detail}}</Code>.",
574
- "integrationConnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>připojil {{integrationName}}</Semibold>.",
575
- "integrationConnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>připojil {{integrationName}}</Semibold> za <Code>{{integrationOwner}}</Code> pomocí <Code>{{detail}}</Code>.",
576
- "integrationConnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>připojil {{integrationName}}</Semibold> za <Code>{{integrationOwner}}</Code>.",
577
- "integrationDisconnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>odpojil {{integrationName}}</Semibold> pro <Code>{{detail}}</Code>.",
578
- "integrationDisconnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>odpojil {{integrationName}}</Semibold>.",
579
- "integrationDisconnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>odpojil {{integrationName}}</Semibold> pro <Code>{{integrationOwner}}</Code> (<Code>{{detail}}</Code>).",
580
- "integrationDisconnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>odpojil {{integrationName}}</Semibold> pro <Code>{{integrationOwner}}</Code>.",
581
- "integrationDisconnectedByProvider": "<Bold>{{integrationName}}</Bold> <Semibold>odpojen</Semibold> pro <Code>{{detail}}</Code> (připojen {{performedBy, anyCase}}).",
582
- "integrationDisconnectedByProviderWithoutDetail": "<Bold>{{integrationName}}</Bold> <Semibold>odpojen</Semibold> (připojen {{performedBy, anyCase}})."
573
+ "integrationConnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>připojil {{integrationName, anyCase}}</Semibold> pomocí <Code>{{detail, anyCase}}</Code>.",
574
+ "integrationConnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>připojil {{integrationName, anyCase}}</Semibold>.",
575
+ "integrationConnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>připojil {{integrationName, anyCase}}</Semibold> za <Code>{{integrationOwner, anyCase}}</Code> pomocí <Code>{{detail, anyCase}}</Code>.",
576
+ "integrationConnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>připojil {{integrationName, anyCase}}</Semibold> za <Code>{{integrationOwner, anyCase}}</Code>.",
577
+ "integrationDisconnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>odpojen {{integrationName, anyCase}}</Semibold> pro <Code>{{detail, anyCase}}</Code>.",
578
+ "integrationDisconnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>odpojen {{integrationName, anyCase}}</Semibold>.",
579
+ "integrationDisconnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>odpojen {{integrationName, anyCase}}</Semibold> pro <Code>{{integrationOwner, anyCase}}</Code> pomocí <Code>{{detail, anyCase}}</Code>.",
580
+ "integrationDisconnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>odpojen {{integrationName, anyCase}}</Semibold> pro <Code>{{integrationOwner, anyCase}}</Code>.",
581
+ "integrationDisconnectedByProvider": "<Bold>{{integrationName, anyCase}}</Bold> <Semibold>odpojen</Semibold> pro <Code>{{detail, anyCase}}</Code> (připojen {{performedBy, anyCase}}).",
582
+ "integrationDisconnectedByProviderWithoutDetail": "<Bold>{{integrationName, anyCase}}</Bold> <Semibold>odpojen</Semibold> (připojen {{performedBy, anyCase}})."
583
583
  }
584
584
  },
585
585
  "ipRestriction": {
@@ -542,11 +542,11 @@
542
542
  "updatedFieldsWithNewValue": "<Semibold>{{field}}</Semibold> til <Code>{{to, anyCase}}</Code>",
543
543
  "connectedGoogleCalender": "{{performedBy, anyCase}} <Semibold>forbandt Google Kalender</Semibold> ved hjælp af <Code>{{emailAddress}}</Code>.",
544
544
  "disconnectedGoogleCalender": "{{performedBy, anyCase}} <Semibold>afbrød forbindelse til Google Kalender</Semibold> for <Code>{{emailAddress}}</Code>.",
545
- "connectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>forbandt til Stripe integration</Semibold> med konto-ID: <Code>{{stripeAccountId}}</Code> på {{productSuffix, anyCase}}.",
545
+ "connectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>forbundet til Stripe-integration</Semibold> med konto-ID: <Code>{{stripeAccountId, anyCase}}</Code> på {{productSuffix, anyCase}}.",
546
546
  "disconnectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>afbrød Stripe integration</Semibold> på {{productSuffix, anyCase}}.",
547
- "connectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>forbandt til Zoom integration</Semibold> med konto-ID: <Code>{{zoomAccountId}}</Code> på {{productSuffix, anyCase}}.",
547
+ "connectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>forbundet til Zoom-integration</Semibold> med konto-ID: <Code>{{zoomAccountId, anyCase}}</Code> på {{productSuffix, anyCase}}.",
548
548
  "disconnectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>afbrød Zoom integration</Semibold> på {{productSuffix, anyCase}}.",
549
- "connectedCustomDomain": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>forbandt til Custom Domain:</Semibold> <Code>{{hostname}}</Code> på {{productSuffix, anyCase}}.",
549
+ "connectedCustomDomain": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>forbundet til brugerdefineret domæne:</Semibold> <Code>{{hostname, anyCase}}</Code> på {{productSuffix, anyCase}}.",
550
550
  "updatedFields": "<Semibold>{{field}}</Semibold>",
551
551
  "updatedRole": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>opdaterede</Semibold> <Code>{{roleName}}</Code> rolle på {{productSuffix, anyCase}}.",
552
552
  "updatedRoleName": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>omdøbte</Semibold> <Code>{{name.from}}</Code> rolle til <Code>{{name.to}}</Code> på {{productSuffix, anyCase}}.",
@@ -570,16 +570,16 @@
570
570
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>frakoblet Microsoft Teams</Semibold>.",
571
571
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>forbundet Zoom</Semibold> ved hjælp af <Code>{{emailAddress}}</Code>.",
572
572
  "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>frakoblet Zoom</Semibold> for <Code>{{emailAddress}}</Code>.",
573
- "integrationConnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>forbandt {{integrationName}}</Semibold> ved brug af <Code>{{detail}}</Code>.",
574
- "integrationConnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>forbandt {{integrationName}}</Semibold>.",
575
- "integrationConnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>forbandt {{integrationName}}</Semibold> for <Code>{{integrationOwner}}</Code> ved brug af <Code>{{detail}}</Code>.",
576
- "integrationConnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>forbandt {{integrationName}}</Semibold> for <Code>{{integrationOwner}}</Code>.",
577
- "integrationDisconnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>afbrød forbindelsen til {{integrationName}}</Semibold> for <Code>{{detail}}</Code>.",
578
- "integrationDisconnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>afbrød forbindelsen til {{integrationName}}</Semibold>.",
579
- "integrationDisconnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>afbrød forbindelsen til {{integrationName}}</Semibold> for <Code>{{integrationOwner}}</Code> (<Code>{{detail}}</Code>).",
580
- "integrationDisconnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>afbrød forbindelsen til {{integrationName}}</Semibold> for <Code>{{integrationOwner}}</Code>.",
581
- "integrationDisconnectedByProvider": "<Bold>{{integrationName}}</Bold> <Semibold>afbrød forbindelsen</Semibold> for <Code>{{detail}}</Code> (forbundet af {{performedBy, anyCase}}).",
582
- "integrationDisconnectedByProviderWithoutDetail": "<Bold>{{integrationName}}</Bold> <Semibold>afbrød forbindelsen</Semibold> (forbundet af {{performedBy, anyCase}})."
573
+ "integrationConnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>forbundet {{integrationName, anyCase}}</Semibold> ved hjælp af <Code>{{detail, anyCase}}</Code>.",
574
+ "integrationConnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>forbundet {{integrationName, anyCase}}</Semibold>.",
575
+ "integrationConnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>forbundet {{integrationName, anyCase}}</Semibold> for <Code>{{integrationOwner, anyCase}}</Code> ved hjælp af <Code>{{detail, anyCase}}</Code>.",
576
+ "integrationConnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>forbundet {{integrationName, anyCase}}</Semibold> for <Code>{{integrationOwner, anyCase}}</Code>.",
577
+ "integrationDisconnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>afbrudt {{integrationName, anyCase}}</Semibold> for <Code>{{detail, anyCase}}</Code>.",
578
+ "integrationDisconnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>afbrudt {{integrationName, anyCase}}</Semibold>.",
579
+ "integrationDisconnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>afbrudt {{integrationName, anyCase}}</Semibold> for <Code>{{integrationOwner, anyCase}}</Code> ved hjælp af <Code>{{detail, anyCase}}</Code>.",
580
+ "integrationDisconnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>afbrudt {{integrationName, anyCase}}</Semibold> for <Code>{{integrationOwner, anyCase}}</Code>.",
581
+ "integrationDisconnectedByProvider": "<Bold>{{integrationName, anyCase}}</Bold> <Semibold>afbrudt</Semibold> for <Code>{{detail, anyCase}}</Code> (forbundet af {{performedBy, anyCase}}).",
582
+ "integrationDisconnectedByProviderWithoutDetail": "<Bold>{{integrationName, anyCase}}</Bold> <Semibold>afbrudt</Semibold> (forbundet af {{performedBy, anyCase}})."
583
583
  }
584
584
  },
585
585
  "ipRestriction": {
@@ -384,11 +384,11 @@
384
384
  "updatedFieldsWithNewValue": "<Semibold>{{field}}</Semibold> auf <Code>{{to, anyCase}}</Code>",
385
385
  "connectedGoogleCalender": "{{performedBy, anyCase}} <Semibold>verbundene Google Kalender</Semibold> über <Code>{{emailAddress}}</Code>.",
386
386
  "disconnectedGoogleCalender": "{{performedBy, anyCase}} <Semibold>getrennte Google Kalender</Semibold> für <Code>{{emailAddress}}</Code>.",
387
- "connectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>verbunden mit Stripe-Integration</Semibold> mit Kontonummer: <Code>{{stripeAccountId}}</Code> bei {{productSuffix, anyCase}}.",
387
+ "connectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>verbunden mit Stripe-Integration</Semibold> mit Konto-ID: <Code>{{stripeAccountId, anyCase}}</Code> am {{productSuffix, anyCase}}.",
388
388
  "disconnectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>trennte die Stripe-Integration</Semibold> bei {{productSuffix, anyCase}}.",
389
- "connectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>verbunden mit Zoom-Integration</Semibold> mit Kontonummer: <Code>{{zoomAccountId}}</Code> bei {{productSuffix, anyCase}}.",
389
+ "connectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>verbunden mit Zoom-Integration</Semibold> mit Konto-ID: <Code>{{zoomAccountId, anyCase}}</Code> am {{productSuffix, anyCase}}.",
390
390
  "disconnectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>trennte die Zoom-Integration</Semibold> bei {{productSuffix, anyCase}}.",
391
- "connectedCustomDomain": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>verbunden mit benutzerdefiniertem Domain:</Semibold> <Code>{{hostname}}</Code> bei {{productSuffix, anyCase}}.",
391
+ "connectedCustomDomain": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>verbunden mit benutzerdefiniertem Domain:</Semibold> <Code>{{hostname, anyCase}}</Code> am {{productSuffix, anyCase}}.",
392
392
  "updatedFields": "<Semibold>{{field}}</Semibold>",
393
393
  "updatedRole": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>aktualisierte</Semibold> <Code>{{roleName}}</Code> Rolle bei {{productSuffix, anyCase}}.",
394
394
  "updatedRoleName": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>benannte</Semibold> <Code>{{name.from}}</Code> Rolle um zu <Code>{{name.to}}</Code> bei {{productSuffix, anyCase}}.",
@@ -412,16 +412,16 @@
412
412
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>hat Microsoft Teams getrennt</Semibold>.",
413
413
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>hat Zoom verbunden</Semibold> über <Code>{{emailAddress}}</Code>.",
414
414
  "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>hat Zoom getrennt</Semibold> für <Code>{{emailAddress}}</Code>.",
415
- "integrationConnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>verbunden</Semibold> {{integrationName}} mit <Code>{{detail}}</Code>.",
416
- "integrationConnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>verbunden</Semibold> {{integrationName}}.",
417
- "integrationConnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>verbunden</Semibold> {{integrationName}} für <Code>{{integrationOwner}}</Code> mit <Code>{{detail}}</Code>.",
418
- "integrationConnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>verbunden</Semibold> {{integrationName}} für <Code>{{integrationOwner}}</Code>.",
419
- "integrationDisconnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>trennte die Verbindung zu {{integrationName}}</Semibold> für <Code>{{detail}}</Code>.",
420
- "integrationDisconnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>trennte die Verbindung zu {{integrationName}}</Semibold>.",
421
- "integrationDisconnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>trennte die Verbindung zu {{integrationName}}</Semibold> für <Code>{{integrationOwner}}</Code> (<Code>{{detail}}</Code>).",
422
- "integrationDisconnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>trennte die Verbindung zu {{integrationName}}</Semibold> für <Code>{{integrationOwner}}</Code>.",
423
- "integrationDisconnectedByProvider": "<Bold>{{integrationName}}</Bold> <Semibold>trennte die Verbindung</Semibold> für <Code>{{detail}}</Code> (verbunden von {{performedBy, anyCase}}).",
424
- "integrationDisconnectedByProviderWithoutDetail": "<Bold>{{integrationName}}</Bold> <Semibold>trennte die Verbindung</Semibold> (verbunden von {{performedBy, anyCase}})."
415
+ "integrationConnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>verbunden {{integrationName, anyCase}}</Semibold> mit <Code>{{detail, anyCase}}</Code>.",
416
+ "integrationConnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>verbunden {{integrationName, anyCase}}</Semibold>.",
417
+ "integrationConnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>verbunden {{integrationName, anyCase}}</Semibold> für <Code>{{integrationOwner, anyCase}}</Code> mit <Code>{{detail, anyCase}}</Code>.",
418
+ "integrationConnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>verbunden {{integrationName, anyCase}}</Semibold> für <Code>{{integrationOwner, anyCase}}</Code>.",
419
+ "integrationDisconnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>getrennt {{integrationName, anyCase}}</Semibold> für <Code>{{detail, anyCase}}</Code>.",
420
+ "integrationDisconnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>getrennt {{integrationName, anyCase}}</Semibold>.",
421
+ "integrationDisconnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>getrennt {{integrationName, anyCase}}</Semibold> für <Code>{{integrationOwner, anyCase}}</Code> mit <Code>{{detail, anyCase}}</Code>.",
422
+ "integrationDisconnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>getrennt {{integrationName, anyCase}}</Semibold> für <Code>{{integrationOwner, anyCase}}</Code>.",
423
+ "integrationDisconnectedByProvider": "<Bold>{{integrationName, anyCase}}</Bold> <Semibold>getrennt</Semibold> für <Code>{{detail, anyCase}}</Code> (verbunden von {{performedBy, anyCase}}).",
424
+ "integrationDisconnectedByProviderWithoutDetail": "<Bold>{{integrationName, anyCase}}</Bold> <Semibold>getrennt</Semibold> (verbunden von {{performedBy, anyCase}})."
425
425
  }
426
426
  },
427
427
  "ipRestriction": {
@@ -542,11 +542,11 @@
542
542
  "updatedFieldsWithNewValue": "<Semibold>{{field}}</Semibold> a <Code>{{to, anyCase}}</Code>",
543
543
  "connectedGoogleCalender": "{{performedBy, anyCase}} <Semibold>conectó Google Calendar</Semibold> usando <Code>{{emailAddress}}</Code>.",
544
544
  "disconnectedGoogleCalender": "{{performedBy, anyCase}} <Semibold>desconectó Google Calendar</Semibold> para <Code>{{emailAddress}}</Code>.",
545
- "connectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>conectado a la integración de Stripe</Semibold> con ID de cuenta: <Code>{{stripeAccountId}}</Code> en {{productSuffix, anyCase}}.",
545
+ "connectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>conectado a la integración de Stripe</Semibold> con ID de cuenta: <Code>{{stripeAccountId, anyCase}}</Code> en {{productSuffix, anyCase}}.",
546
546
  "disconnectedStripeAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>desconectó la integración de Stripe</Semibold> en {{productSuffix, anyCase}}.",
547
- "connectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>conectado a la integración de Zoom</Semibold> con ID de cuenta: <Code>{{zoomAccountId}}</Code> en {{productSuffix, anyCase}}.",
547
+ "connectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>conectado a la integración de Zoom</Semibold> con ID de cuenta: <Code>{{zoomAccountId, anyCase}}</Code> en {{productSuffix, anyCase}}.",
548
548
  "disconnectedZoomAccount": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>desconectó la integración de Zoom</Semibold> en {{productSuffix, anyCase}}.",
549
- "connectedCustomDomain": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>conectado Dominio Personalizado:</Semibold> <Code>{{hostname}}</Code> en {{productSuffix, anyCase}}.",
549
+ "connectedCustomDomain": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>conectado Dominio Personalizado:</Semibold> <Code>{{hostname, anyCase}}</Code> en {{productSuffix, anyCase}}.",
550
550
  "updatedFields": "<Semibold>{{field}}</Semibold>",
551
551
  "updatedRole": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>actualizó</Semibold> <Code>{{roleName}}</Code> rol en {{productSuffix, anyCase}}.",
552
552
  "updatedRoleName": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>renombró</Semibold> <Code>{{name.from}}</Code> rol a <Code>{{name.to}}</Code> en {{productSuffix, anyCase}}.",
@@ -570,16 +570,16 @@
570
570
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>desconectado Microsoft Teams</Semibold>.",
571
571
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>conectado Zoom</Semibold> usando <Code>{{emailAddress}}</Code>.",
572
572
  "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>desconectado Zoom</Semibold> para <Code>{{emailAddress}}</Code>.",
573
- "integrationConnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>conectó {{integrationName}}</Semibold> usando <Code>{{detail}}</Code>.",
574
- "integrationConnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>conectó {{integrationName}}</Semibold>.",
575
- "integrationConnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>conectó {{integrationName}}</Semibold> por <Code>{{integrationOwner}}</Code> usando <Code>{{detail}}</Code>.",
576
- "integrationConnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>conectó {{integrationName}}</Semibold> por <Code>{{integrationOwner}}</Code>.",
577
- "integrationDisconnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>desconectó {{integrationName}}</Semibold> por <Code>{{detail}}</Code>.",
578
- "integrationDisconnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>desconectó {{integrationName}}</Semibold>.",
579
- "integrationDisconnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>desconectó {{integrationName}}</Semibold> por <Code>{{integrationOwner}}</Code> (<Code>{{detail}}</Code>).",
580
- "integrationDisconnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>desconectó {{integrationName}}</Semibold> por <Code>{{integrationOwner}}</Code>.",
581
- "integrationDisconnectedByProvider": "<Bold>{{integrationName}}</Bold> <Semibold>desconectado</Semibold> por <Code>{{detail}}</Code> (conectado por {{performedBy, anyCase}}).",
582
- "integrationDisconnectedByProviderWithoutDetail": "<Bold>{{integrationName}}</Bold> <Semibold>desconectado</Semibold> (conectado por {{performedBy, anyCase}})."
573
+ "integrationConnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>conectado {{integrationName, anyCase}}</Semibold> usando <Code>{{detail, anyCase}}</Code>.",
574
+ "integrationConnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>conectado {{integrationName, anyCase}}</Semibold>.",
575
+ "integrationConnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>conectado {{integrationName, anyCase}}</Semibold> por <Code>{{integrationOwner, anyCase}}</Code> usando <Code>{{detail, anyCase}}</Code>.",
576
+ "integrationConnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>conectado {{integrationName, anyCase}}</Semibold> por <Code>{{integrationOwner, anyCase}}</Code>.",
577
+ "integrationDisconnected": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>desconectado {{integrationName, anyCase}}</Semibold> por <Code>{{detail, anyCase}}</Code>.",
578
+ "integrationDisconnectedWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>desconectado {{integrationName, anyCase}}</Semibold>.",
579
+ "integrationDisconnectedOnBehalf": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>desconectado {{integrationName, anyCase}}</Semibold> por <Code>{{integrationOwner, anyCase}}</Code> usando <Code>{{detail, anyCase}}</Code>.",
580
+ "integrationDisconnectedOnBehalfWithoutDetail": "<Bold>{{performedBy, anyCase}}</Bold> <Semibold>desconectado {{integrationName, anyCase}}</Semibold> por <Code>{{integrationOwner, anyCase}}</Code>.",
581
+ "integrationDisconnectedByProvider": "<Bold>{{integrationName, anyCase}}</Bold> <Semibold>desconectado</Semibold> por <Code>{{detail, anyCase}}</Code> (conectado por {{performedBy, anyCase}}).",
582
+ "integrationDisconnectedByProviderWithoutDetail": "<Bold>{{integrationName, anyCase}}</Bold> <Semibold>desconectado</Semibold> (conectado por {{performedBy, anyCase}})."
583
583
  }
584
584
  },
585
585
  "ipRestriction": {