@bigbinary/neeto-molecules 4.1.28 → 4.1.30

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/SubscriptionNotificationsContainer.js +3 -4
  2. package/dist/SubscriptionNotificationsContainer.js.map +1 -1
  3. package/dist/cjs/SubscriptionNotificationsContainer.js +3 -4
  4. package/dist/cjs/SubscriptionNotificationsContainer.js.map +1 -1
  5. package/package.json +1 -1
  6. package/src/translations/ar.json +11 -1
  7. package/src/translations/bg.json +11 -1
  8. package/src/translations/ca.json +11 -1
  9. package/src/translations/cs.json +11 -1
  10. package/src/translations/da.json +11 -1
  11. package/src/translations/de.json +11 -1
  12. package/src/translations/es-MX.json +11 -1
  13. package/src/translations/es.json +11 -1
  14. package/src/translations/et.json +11 -1
  15. package/src/translations/fi.json +11 -1
  16. package/src/translations/fil.json +11 -1
  17. package/src/translations/fr.json +11 -1
  18. package/src/translations/he.json +11 -1
  19. package/src/translations/hi.json +11 -1
  20. package/src/translations/hr.json +11 -1
  21. package/src/translations/hu.json +11 -1
  22. package/src/translations/id.json +11 -1
  23. package/src/translations/it.json +11 -1
  24. package/src/translations/ja.json +11 -1
  25. package/src/translations/ko.json +11 -1
  26. package/src/translations/nl.json +11 -1
  27. package/src/translations/pl.json +11 -1
  28. package/src/translations/pt-BR.json +11 -1
  29. package/src/translations/pt.json +11 -1
  30. package/src/translations/ro.json +11 -1
  31. package/src/translations/ru.json +11 -1
  32. package/src/translations/sk.json +11 -1
  33. package/src/translations/sl.json +11 -1
  34. package/src/translations/sv.json +11 -1
  35. package/src/translations/th.json +11 -1
  36. package/src/translations/tr.json +11 -1
  37. package/src/translations/uk.json +11 -1
  38. package/src/translations/vi.json +11 -1
  39. package/src/translations/zh-CN.json +11 -1
  40. package/src/translations/zh-TW.json +11 -1
@@ -35,11 +35,10 @@ var useFetchSubscriptions = function useFetchSubscriptions() {
35
35
  };
36
36
 
37
37
  var SubscriptionNotificationsContainer = function SubscriptionNotificationsContainer() {
38
+ var _data$clientAppSubscr;
38
39
  var _useFetchSubscription = useFetchSubscriptions(),
39
- _useFetchSubscription2 = _useFetchSubscription.data,
40
- _useFetchSubscription3 = _useFetchSubscription2 === void 0 ? {} : _useFetchSubscription2,
41
- _useFetchSubscription4 = _useFetchSubscription3.clientAppSubscriptions,
42
- clientAppSubscriptions = _useFetchSubscription4 === void 0 ? [] : _useFetchSubscription4;
40
+ data = _useFetchSubscription.data;
41
+ var clientAppSubscriptions = (_data$clientAppSubscr = data === null || data === void 0 ? void 0 : data.clientAppSubscriptions) !== null && _data$clientAppSubscr !== void 0 ? _data$clientAppSubscr : [];
43
42
  var visibleNotifications = filterBy({
44
43
  status: SUBSCRIPTION_STATUS.past_due
45
44
  }, clientAppSubscriptions);
@@ -1 +1 @@
1
- {"version":3,"file":"SubscriptionNotificationsContainer.js","sources":["../src/components/SubscriptionNotificationsContainer/constants.js","../src/components/SubscriptionNotificationsContainer/api.js","../src/components/SubscriptionNotificationsContainer/useSubscriptionsApi.js","../src/components/SubscriptionNotificationsContainer/index.jsx"],"sourcesContent":["export const QUERY_KEYS = {\n SUBSCRIPTIONS_LIST: \"SUBSCRIPTIONS_LIST\",\n};\n\nexport const SUBSCRIPTION_STATUS = { past_due: \"past_due\" };\n","import axios from \"axios\";\n\nconst fetchSubscriptions = () =>\n axios.get(\"neeto_sso/api/v1/server/subscriptions\");\n\nconst subscriptionsApi = { fetchSubscriptions };\n\nexport default subscriptionsApi;\n","import { useQuery } from \"@tanstack/react-query\";\n\nimport subscriptionsApi from \"./api\";\nimport { QUERY_KEYS } from \"./constants\";\n\nconst { SUBSCRIPTIONS_LIST } = QUERY_KEYS;\n\nconst useFetchSubscriptions = () =>\n useQuery({\n queryKey: [SUBSCRIPTIONS_LIST],\n queryFn: subscriptionsApi.fetchSubscriptions,\n });\n\nexport { useFetchSubscriptions };\n","import { filterBy } from \"neetocist\";\nimport { dateFormat } from \"neetocommons/utils\";\nimport { Callout, Typography, Button } from \"neetoui\";\nimport { Trans } from \"react-i18next\";\n\nimport { SUBSCRIPTION_STATUS } from \"./constants\";\nimport \"./subscription-notifications.scss\";\nimport { useFetchSubscriptions } from \"./useSubscriptionsApi\";\n\nconst SubscriptionNotificationsContainer = () => {\n const { data: { clientAppSubscriptions = [] } = {} } =\n useFetchSubscriptions();\n\n const visibleNotifications = filterBy(\n { status: SUBSCRIPTION_STATUS.past_due },\n clientAppSubscriptions\n );\n\n return (\n <>\n {visibleNotifications.map(\n ({ downgradeScheduledAt, customerPortalUrl }, index) => (\n <Callout\n className=\"neeto-molecules-subscription-notifications w-full p-2.5\"\n data-testid=\"subscription-notifications\"\n key={index}\n style=\"warning\"\n >\n <Typography style=\"body2\">\n <Trans\n i18nKey=\"neetoMolecules.subscription.paymentFailedNotification\"\n components={{\n a: (\n <Button\n href={customerPortalUrl}\n rel=\"noreferrer\"\n style=\"link\"\n target=\"_blank\"\n />\n ),\n }}\n values={{\n downgradeScheduledAt: dateFormat.date(downgradeScheduledAt),\n }}\n />\n </Typography>\n </Callout>\n )\n )}\n </>\n );\n};\n\nexport default SubscriptionNotificationsContainer;\n"],"names":["QUERY_KEYS","SUBSCRIPTIONS_LIST","SUBSCRIPTION_STATUS","past_due","fetchSubscriptions","axios","get","subscriptionsApi","useFetchSubscriptions","useQuery","queryKey","queryFn","SubscriptionNotificationsContainer","_useFetchSubscription","_useFetchSubscription2","data","_useFetchSubscription3","_useFetchSubscription4","clientAppSubscriptions","visibleNotifications","filterBy","status","_jsx","_Fragment","children","map","_ref","index","downgradeScheduledAt","customerPortalUrl","Callout","className","style","Typography","Trans","i18nKey","components","a","Button","href","rel","target","values","dateFormat","date"],"mappings":";;;;;;;;;;;AAAO,IAAMA,UAAU,GAAG;AACxBC,EAAAA,kBAAkB,EAAE;AACtB,CAAC;AAEM,IAAMC,mBAAmB,GAAG;AAAEC,EAAAA,QAAQ,EAAE;AAAW,CAAC;;;;;ACF3D,IAAMC,kBAAkB,GAAG,SAArBA,kBAAkBA,GAAA;AAAA,EAAA,OACtBC,KAAK,CAACC,GAAG,CAAC,uCAAuC,CAAC;AAAA,CAAA;AAEpD,IAAMC,gBAAgB,GAAG;AAAEH,EAAAA,kBAAkB,EAAlBA;AAAmB,CAAC;;ACA/C,IAAQH,kBAAkB,GAAKD,UAAU,CAAjCC,kBAAkB;AAE1B,IAAMO,qBAAqB,GAAG,SAAxBA,qBAAqBA,GAAA;AAAA,EAAA,OACzBC,QAAQ,CAAC;IACPC,QAAQ,EAAE,CAACT,kBAAkB,CAAC;IAC9BU,OAAO,EAAEJ,gBAAgB,CAACH;AAC5B,GAAC,CAAC;AAAA,CAAA;;ACFJ,IAAMQ,kCAAkC,GAAG,SAArCA,kCAAkCA,GAAS;AAC/C,EAAA,IAAAC,qBAAA,GACEL,qBAAqB,EAAE;IAAAM,sBAAA,GAAAD,qBAAA,CADjBE,IAAI;AAAAC,IAAAA,sBAAA,GAAAF,sBAAA,KAAA,MAAA,GAAoC,EAAE,GAAAA,sBAAA;IAAAG,sBAAA,GAAAD,sBAAA,CAAlCE,sBAAsB;AAAtBA,IAAAA,sBAAsB,GAAAD,sBAAA,KAAA,MAAA,GAAG,EAAE,GAAAA,sBAAA;EAG3C,IAAME,oBAAoB,GAAGC,QAAQ,CACnC;IAAEC,MAAM,EAAEnB,mBAAmB,CAACC;GAAU,EACxCe,sBACF,CAAC;EAED,oBACEI,GAAA,CAAAC,QAAA,EAAA;IAAAC,QAAA,EACGL,oBAAoB,CAACM,GAAG,CACvB,UAAAC,IAAA,EAA8CC,KAAK,EAAA;AAAA,MAAA,IAAhDC,oBAAoB,GAAAF,IAAA,CAApBE,oBAAoB;QAAEC,iBAAiB,GAAAH,IAAA,CAAjBG,iBAAiB;MAAA,oBACxCP,GAAA,CAACQ,OAAO,EAAA;AACNC,QAAAA,SAAS,EAAC,yDAAyD;AACnE,QAAA,aAAA,EAAY,4BAA4B;AAExCC,QAAAA,KAAK,EAAC,SAAS;QAAAR,QAAA,eAEfF,GAAA,CAACW,UAAU,EAAA;AAACD,UAAAA,KAAK,EAAC,OAAO;UAAAR,QAAA,eACvBF,GAAA,CAACY,KAAK,EAAA;AACJC,YAAAA,OAAO,EAAC,uDAAuD;AAC/DC,YAAAA,UAAU,EAAE;cACVC,CAAC,eACCf,GAAA,CAACgB,MAAM,EAAA;AACLC,gBAAAA,IAAI,EAAEV,iBAAkB;AACxBW,gBAAAA,GAAG,EAAC,YAAY;AAChBR,gBAAAA,KAAK,EAAC,MAAM;AACZS,gBAAAA,MAAM,EAAC;eACR;aAEH;AACFC,YAAAA,MAAM,EAAE;AACNd,cAAAA,oBAAoB,EAAEe,UAAU,CAACC,IAAI,CAAChB,oBAAoB;AAC5D;WACD;SACS;AAAC,OAAA,EApBRD,KAqBE,CAAC;IAAA,CAEd;AAAC,GACD,CAAC;AAEP;;;;"}
1
+ {"version":3,"file":"SubscriptionNotificationsContainer.js","sources":["../src/components/SubscriptionNotificationsContainer/constants.js","../src/components/SubscriptionNotificationsContainer/api.js","../src/components/SubscriptionNotificationsContainer/useSubscriptionsApi.js","../src/components/SubscriptionNotificationsContainer/index.jsx"],"sourcesContent":["export const QUERY_KEYS = {\n SUBSCRIPTIONS_LIST: \"SUBSCRIPTIONS_LIST\",\n};\n\nexport const SUBSCRIPTION_STATUS = { past_due: \"past_due\" };\n","import axios from \"axios\";\n\nconst fetchSubscriptions = () =>\n axios.get(\"neeto_sso/api/v1/server/subscriptions\");\n\nconst subscriptionsApi = { fetchSubscriptions };\n\nexport default subscriptionsApi;\n","import { useQuery } from \"@tanstack/react-query\";\n\nimport subscriptionsApi from \"./api\";\nimport { QUERY_KEYS } from \"./constants\";\n\nconst { SUBSCRIPTIONS_LIST } = QUERY_KEYS;\n\nconst useFetchSubscriptions = () =>\n useQuery({\n queryKey: [SUBSCRIPTIONS_LIST],\n queryFn: subscriptionsApi.fetchSubscriptions,\n });\n\nexport { useFetchSubscriptions };\n","import { filterBy } from \"neetocist\";\nimport { dateFormat } from \"neetocommons/utils\";\nimport { Callout, Typography, Button } from \"neetoui\";\nimport { Trans } from \"react-i18next\";\n\nimport { SUBSCRIPTION_STATUS } from \"./constants\";\nimport \"./subscription-notifications.scss\";\nimport { useFetchSubscriptions } from \"./useSubscriptionsApi\";\n\nconst SubscriptionNotificationsContainer = () => {\n const { data } = useFetchSubscriptions();\n const clientAppSubscriptions = data?.clientAppSubscriptions ?? [];\n\n const visibleNotifications = filterBy(\n { status: SUBSCRIPTION_STATUS.past_due },\n clientAppSubscriptions\n );\n\n return (\n <>\n {visibleNotifications.map(\n ({ downgradeScheduledAt, customerPortalUrl }, index) => (\n <Callout\n className=\"neeto-molecules-subscription-notifications w-full p-2.5\"\n data-testid=\"subscription-notifications\"\n key={index}\n style=\"warning\"\n >\n <Typography style=\"body2\">\n <Trans\n i18nKey=\"neetoMolecules.subscription.paymentFailedNotification\"\n components={{\n a: (\n <Button\n href={customerPortalUrl}\n rel=\"noreferrer\"\n style=\"link\"\n target=\"_blank\"\n />\n ),\n }}\n values={{\n downgradeScheduledAt: dateFormat.date(downgradeScheduledAt),\n }}\n />\n </Typography>\n </Callout>\n )\n )}\n </>\n );\n};\n\nexport default SubscriptionNotificationsContainer;\n"],"names":["QUERY_KEYS","SUBSCRIPTIONS_LIST","SUBSCRIPTION_STATUS","past_due","fetchSubscriptions","axios","get","subscriptionsApi","useFetchSubscriptions","useQuery","queryKey","queryFn","SubscriptionNotificationsContainer","_data$clientAppSubscr","_useFetchSubscription","data","clientAppSubscriptions","visibleNotifications","filterBy","status","_jsx","_Fragment","children","map","_ref","index","downgradeScheduledAt","customerPortalUrl","Callout","className","style","Typography","Trans","i18nKey","components","a","Button","href","rel","target","values","dateFormat","date"],"mappings":";;;;;;;;;;;AAAO,IAAMA,UAAU,GAAG;AACxBC,EAAAA,kBAAkB,EAAE;AACtB,CAAC;AAEM,IAAMC,mBAAmB,GAAG;AAAEC,EAAAA,QAAQ,EAAE;AAAW,CAAC;;;;;ACF3D,IAAMC,kBAAkB,GAAG,SAArBA,kBAAkBA,GAAA;AAAA,EAAA,OACtBC,KAAK,CAACC,GAAG,CAAC,uCAAuC,CAAC;AAAA,CAAA;AAEpD,IAAMC,gBAAgB,GAAG;AAAEH,EAAAA,kBAAkB,EAAlBA;AAAmB,CAAC;;ACA/C,IAAQH,kBAAkB,GAAKD,UAAU,CAAjCC,kBAAkB;AAE1B,IAAMO,qBAAqB,GAAG,SAAxBA,qBAAqBA,GAAA;AAAA,EAAA,OACzBC,QAAQ,CAAC;IACPC,QAAQ,EAAE,CAACT,kBAAkB,CAAC;IAC9BU,OAAO,EAAEJ,gBAAgB,CAACH;AAC5B,GAAC,CAAC;AAAA,CAAA;;ACFJ,IAAMQ,kCAAkC,GAAG,SAArCA,kCAAkCA,GAAS;AAAA,EAAA,IAAAC,qBAAA;AAC/C,EAAA,IAAAC,qBAAA,GAAiBN,qBAAqB,EAAE;IAAhCO,IAAI,GAAAD,qBAAA,CAAJC,IAAI;AACZ,EAAA,IAAMC,sBAAsB,GAAA,CAAAH,qBAAA,GAAGE,IAAI,aAAJA,IAAI,KAAA,MAAA,GAAA,MAAA,GAAJA,IAAI,CAAEC,sBAAsB,MAAA,IAAA,IAAAH,qBAAA,KAAA,MAAA,GAAAA,qBAAA,GAAI,EAAE;EAEjE,IAAMI,oBAAoB,GAAGC,QAAQ,CACnC;IAAEC,MAAM,EAAEjB,mBAAmB,CAACC;GAAU,EACxCa,sBACF,CAAC;EAED,oBACEI,GAAA,CAAAC,QAAA,EAAA;IAAAC,QAAA,EACGL,oBAAoB,CAACM,GAAG,CACvB,UAAAC,IAAA,EAA8CC,KAAK,EAAA;AAAA,MAAA,IAAhDC,oBAAoB,GAAAF,IAAA,CAApBE,oBAAoB;QAAEC,iBAAiB,GAAAH,IAAA,CAAjBG,iBAAiB;MAAA,oBACxCP,GAAA,CAACQ,OAAO,EAAA;AACNC,QAAAA,SAAS,EAAC,yDAAyD;AACnE,QAAA,aAAA,EAAY,4BAA4B;AAExCC,QAAAA,KAAK,EAAC,SAAS;QAAAR,QAAA,eAEfF,GAAA,CAACW,UAAU,EAAA;AAACD,UAAAA,KAAK,EAAC,OAAO;UAAAR,QAAA,eACvBF,GAAA,CAACY,KAAK,EAAA;AACJC,YAAAA,OAAO,EAAC,uDAAuD;AAC/DC,YAAAA,UAAU,EAAE;cACVC,CAAC,eACCf,GAAA,CAACgB,MAAM,EAAA;AACLC,gBAAAA,IAAI,EAAEV,iBAAkB;AACxBW,gBAAAA,GAAG,EAAC,YAAY;AAChBR,gBAAAA,KAAK,EAAC,MAAM;AACZS,gBAAAA,MAAM,EAAC;eACR;aAEH;AACFC,YAAAA,MAAM,EAAE;AACNd,cAAAA,oBAAoB,EAAEe,UAAU,CAACC,IAAI,CAAChB,oBAAoB;AAC5D;WACD;SACS;AAAC,OAAA,EApBRD,KAqBE,CAAC;IAAA,CAEd;AAAC,GACD,CAAC;AAEP;;;;"}
@@ -37,11 +37,10 @@ var useFetchSubscriptions = function useFetchSubscriptions() {
37
37
  };
38
38
 
39
39
  var SubscriptionNotificationsContainer = function SubscriptionNotificationsContainer() {
40
+ var _data$clientAppSubscr;
40
41
  var _useFetchSubscription = useFetchSubscriptions(),
41
- _useFetchSubscription2 = _useFetchSubscription.data,
42
- _useFetchSubscription3 = _useFetchSubscription2 === void 0 ? {} : _useFetchSubscription2,
43
- _useFetchSubscription4 = _useFetchSubscription3.clientAppSubscriptions,
44
- clientAppSubscriptions = _useFetchSubscription4 === void 0 ? [] : _useFetchSubscription4;
42
+ data = _useFetchSubscription.data;
43
+ var clientAppSubscriptions = (_data$clientAppSubscr = data === null || data === void 0 ? void 0 : data.clientAppSubscriptions) !== null && _data$clientAppSubscr !== void 0 ? _data$clientAppSubscr : [];
45
44
  var visibleNotifications = neetoCist.filterBy({
46
45
  status: SUBSCRIPTION_STATUS.past_due
47
46
  }, clientAppSubscriptions);
@@ -1 +1 @@
1
- {"version":3,"file":"SubscriptionNotificationsContainer.js","sources":["../../src/components/SubscriptionNotificationsContainer/constants.js","../../src/components/SubscriptionNotificationsContainer/api.js","../../src/components/SubscriptionNotificationsContainer/useSubscriptionsApi.js","../../src/components/SubscriptionNotificationsContainer/index.jsx"],"sourcesContent":["export const QUERY_KEYS = {\n SUBSCRIPTIONS_LIST: \"SUBSCRIPTIONS_LIST\",\n};\n\nexport const SUBSCRIPTION_STATUS = { past_due: \"past_due\" };\n","import axios from \"axios\";\n\nconst fetchSubscriptions = () =>\n axios.get(\"neeto_sso/api/v1/server/subscriptions\");\n\nconst subscriptionsApi = { fetchSubscriptions };\n\nexport default subscriptionsApi;\n","import { useQuery } from \"@tanstack/react-query\";\n\nimport subscriptionsApi from \"./api\";\nimport { QUERY_KEYS } from \"./constants\";\n\nconst { SUBSCRIPTIONS_LIST } = QUERY_KEYS;\n\nconst useFetchSubscriptions = () =>\n useQuery({\n queryKey: [SUBSCRIPTIONS_LIST],\n queryFn: subscriptionsApi.fetchSubscriptions,\n });\n\nexport { useFetchSubscriptions };\n","import { filterBy } from \"neetocist\";\nimport { dateFormat } from \"neetocommons/utils\";\nimport { Callout, Typography, Button } from \"neetoui\";\nimport { Trans } from \"react-i18next\";\n\nimport { SUBSCRIPTION_STATUS } from \"./constants\";\nimport \"./subscription-notifications.scss\";\nimport { useFetchSubscriptions } from \"./useSubscriptionsApi\";\n\nconst SubscriptionNotificationsContainer = () => {\n const { data: { clientAppSubscriptions = [] } = {} } =\n useFetchSubscriptions();\n\n const visibleNotifications = filterBy(\n { status: SUBSCRIPTION_STATUS.past_due },\n clientAppSubscriptions\n );\n\n return (\n <>\n {visibleNotifications.map(\n ({ downgradeScheduledAt, customerPortalUrl }, index) => (\n <Callout\n className=\"neeto-molecules-subscription-notifications w-full p-2.5\"\n data-testid=\"subscription-notifications\"\n key={index}\n style=\"warning\"\n >\n <Typography style=\"body2\">\n <Trans\n i18nKey=\"neetoMolecules.subscription.paymentFailedNotification\"\n components={{\n a: (\n <Button\n href={customerPortalUrl}\n rel=\"noreferrer\"\n style=\"link\"\n target=\"_blank\"\n />\n ),\n }}\n values={{\n downgradeScheduledAt: dateFormat.date(downgradeScheduledAt),\n }}\n />\n </Typography>\n </Callout>\n )\n )}\n </>\n );\n};\n\nexport default SubscriptionNotificationsContainer;\n"],"names":["QUERY_KEYS","SUBSCRIPTIONS_LIST","SUBSCRIPTION_STATUS","past_due","fetchSubscriptions","axios","get","subscriptionsApi","useFetchSubscriptions","useQuery","queryKey","queryFn","SubscriptionNotificationsContainer","_useFetchSubscription","_useFetchSubscription2","data","_useFetchSubscription3","_useFetchSubscription4","clientAppSubscriptions","visibleNotifications","filterBy","status","_jsx","_Fragment","children","map","_ref","index","downgradeScheduledAt","customerPortalUrl","Callout","className","style","Typography","Trans","i18nKey","components","a","Button","href","rel","target","values","dateFormat","date"],"mappings":";;;;;;;;;;;;;AAAO,IAAMA,UAAU,GAAG;AACxBC,EAAAA,kBAAkB,EAAE;AACtB,CAAC;AAEM,IAAMC,mBAAmB,GAAG;AAAEC,EAAAA,QAAQ,EAAE;AAAW,CAAC;;;;;ACF3D,IAAMC,kBAAkB,GAAG,SAArBA,kBAAkBA,GAAA;AAAA,EAAA,OACtBC,KAAK,CAACC,GAAG,CAAC,uCAAuC,CAAC;AAAA,CAAA;AAEpD,IAAMC,gBAAgB,GAAG;AAAEH,EAAAA,kBAAkB,EAAlBA;AAAmB,CAAC;;ACA/C,IAAQH,kBAAkB,GAAKD,UAAU,CAAjCC,kBAAkB;AAE1B,IAAMO,qBAAqB,GAAG,SAAxBA,qBAAqBA,GAAA;AAAA,EAAA,OACzBC,mBAAQ,CAAC;IACPC,QAAQ,EAAE,CAACT,kBAAkB,CAAC;IAC9BU,OAAO,EAAEJ,gBAAgB,CAACH;AAC5B,GAAC,CAAC;AAAA,CAAA;;ACFJ,IAAMQ,kCAAkC,GAAG,SAArCA,kCAAkCA,GAAS;AAC/C,EAAA,IAAAC,qBAAA,GACEL,qBAAqB,EAAE;IAAAM,sBAAA,GAAAD,qBAAA,CADjBE,IAAI;AAAAC,IAAAA,sBAAA,GAAAF,sBAAA,KAAA,MAAA,GAAoC,EAAE,GAAAA,sBAAA;IAAAG,sBAAA,GAAAD,sBAAA,CAAlCE,sBAAsB;AAAtBA,IAAAA,sBAAsB,GAAAD,sBAAA,KAAA,MAAA,GAAG,EAAE,GAAAA,sBAAA;EAG3C,IAAME,oBAAoB,GAAGC,kBAAQ,CACnC;IAAEC,MAAM,EAAEnB,mBAAmB,CAACC;GAAU,EACxCe,sBACF,CAAC;EAED,oBACEI,cAAA,CAAAC,mBAAA,EAAA;IAAAC,QAAA,EACGL,oBAAoB,CAACM,GAAG,CACvB,UAAAC,IAAA,EAA8CC,KAAK,EAAA;AAAA,MAAA,IAAhDC,oBAAoB,GAAAF,IAAA,CAApBE,oBAAoB;QAAEC,iBAAiB,GAAAH,IAAA,CAAjBG,iBAAiB;MAAA,oBACxCP,cAAA,CAACQ,OAAO,EAAA;AACNC,QAAAA,SAAS,EAAC,yDAAyD;AACnE,QAAA,aAAA,EAAY,4BAA4B;AAExCC,QAAAA,KAAK,EAAC,SAAS;QAAAR,QAAA,eAEfF,cAAA,CAACW,UAAU,EAAA;AAACD,UAAAA,KAAK,EAAC,OAAO;UAAAR,QAAA,eACvBF,cAAA,CAACY,kBAAK,EAAA;AACJC,YAAAA,OAAO,EAAC,uDAAuD;AAC/DC,YAAAA,UAAU,EAAE;cACVC,CAAC,eACCf,cAAA,CAACgB,MAAM,EAAA;AACLC,gBAAAA,IAAI,EAAEV,iBAAkB;AACxBW,gBAAAA,GAAG,EAAC,YAAY;AAChBR,gBAAAA,KAAK,EAAC,MAAM;AACZS,gBAAAA,MAAM,EAAC;eACR;aAEH;AACFC,YAAAA,MAAM,EAAE;AACNd,cAAAA,oBAAoB,EAAEe,gBAAU,CAACC,IAAI,CAAChB,oBAAoB;AAC5D;WACD;SACS;AAAC,OAAA,EApBRD,KAqBE,CAAC;IAAA,CAEd;AAAC,GACD,CAAC;AAEP;;;;"}
1
+ {"version":3,"file":"SubscriptionNotificationsContainer.js","sources":["../../src/components/SubscriptionNotificationsContainer/constants.js","../../src/components/SubscriptionNotificationsContainer/api.js","../../src/components/SubscriptionNotificationsContainer/useSubscriptionsApi.js","../../src/components/SubscriptionNotificationsContainer/index.jsx"],"sourcesContent":["export const QUERY_KEYS = {\n SUBSCRIPTIONS_LIST: \"SUBSCRIPTIONS_LIST\",\n};\n\nexport const SUBSCRIPTION_STATUS = { past_due: \"past_due\" };\n","import axios from \"axios\";\n\nconst fetchSubscriptions = () =>\n axios.get(\"neeto_sso/api/v1/server/subscriptions\");\n\nconst subscriptionsApi = { fetchSubscriptions };\n\nexport default subscriptionsApi;\n","import { useQuery } from \"@tanstack/react-query\";\n\nimport subscriptionsApi from \"./api\";\nimport { QUERY_KEYS } from \"./constants\";\n\nconst { SUBSCRIPTIONS_LIST } = QUERY_KEYS;\n\nconst useFetchSubscriptions = () =>\n useQuery({\n queryKey: [SUBSCRIPTIONS_LIST],\n queryFn: subscriptionsApi.fetchSubscriptions,\n });\n\nexport { useFetchSubscriptions };\n","import { filterBy } from \"neetocist\";\nimport { dateFormat } from \"neetocommons/utils\";\nimport { Callout, Typography, Button } from \"neetoui\";\nimport { Trans } from \"react-i18next\";\n\nimport { SUBSCRIPTION_STATUS } from \"./constants\";\nimport \"./subscription-notifications.scss\";\nimport { useFetchSubscriptions } from \"./useSubscriptionsApi\";\n\nconst SubscriptionNotificationsContainer = () => {\n const { data } = useFetchSubscriptions();\n const clientAppSubscriptions = data?.clientAppSubscriptions ?? [];\n\n const visibleNotifications = filterBy(\n { status: SUBSCRIPTION_STATUS.past_due },\n clientAppSubscriptions\n );\n\n return (\n <>\n {visibleNotifications.map(\n ({ downgradeScheduledAt, customerPortalUrl }, index) => (\n <Callout\n className=\"neeto-molecules-subscription-notifications w-full p-2.5\"\n data-testid=\"subscription-notifications\"\n key={index}\n style=\"warning\"\n >\n <Typography style=\"body2\">\n <Trans\n i18nKey=\"neetoMolecules.subscription.paymentFailedNotification\"\n components={{\n a: (\n <Button\n href={customerPortalUrl}\n rel=\"noreferrer\"\n style=\"link\"\n target=\"_blank\"\n />\n ),\n }}\n values={{\n downgradeScheduledAt: dateFormat.date(downgradeScheduledAt),\n }}\n />\n </Typography>\n </Callout>\n )\n )}\n </>\n );\n};\n\nexport default SubscriptionNotificationsContainer;\n"],"names":["QUERY_KEYS","SUBSCRIPTIONS_LIST","SUBSCRIPTION_STATUS","past_due","fetchSubscriptions","axios","get","subscriptionsApi","useFetchSubscriptions","useQuery","queryKey","queryFn","SubscriptionNotificationsContainer","_data$clientAppSubscr","_useFetchSubscription","data","clientAppSubscriptions","visibleNotifications","filterBy","status","_jsx","_Fragment","children","map","_ref","index","downgradeScheduledAt","customerPortalUrl","Callout","className","style","Typography","Trans","i18nKey","components","a","Button","href","rel","target","values","dateFormat","date"],"mappings":";;;;;;;;;;;;;AAAO,IAAMA,UAAU,GAAG;AACxBC,EAAAA,kBAAkB,EAAE;AACtB,CAAC;AAEM,IAAMC,mBAAmB,GAAG;AAAEC,EAAAA,QAAQ,EAAE;AAAW,CAAC;;;;;ACF3D,IAAMC,kBAAkB,GAAG,SAArBA,kBAAkBA,GAAA;AAAA,EAAA,OACtBC,KAAK,CAACC,GAAG,CAAC,uCAAuC,CAAC;AAAA,CAAA;AAEpD,IAAMC,gBAAgB,GAAG;AAAEH,EAAAA,kBAAkB,EAAlBA;AAAmB,CAAC;;ACA/C,IAAQH,kBAAkB,GAAKD,UAAU,CAAjCC,kBAAkB;AAE1B,IAAMO,qBAAqB,GAAG,SAAxBA,qBAAqBA,GAAA;AAAA,EAAA,OACzBC,mBAAQ,CAAC;IACPC,QAAQ,EAAE,CAACT,kBAAkB,CAAC;IAC9BU,OAAO,EAAEJ,gBAAgB,CAACH;AAC5B,GAAC,CAAC;AAAA,CAAA;;ACFJ,IAAMQ,kCAAkC,GAAG,SAArCA,kCAAkCA,GAAS;AAAA,EAAA,IAAAC,qBAAA;AAC/C,EAAA,IAAAC,qBAAA,GAAiBN,qBAAqB,EAAE;IAAhCO,IAAI,GAAAD,qBAAA,CAAJC,IAAI;AACZ,EAAA,IAAMC,sBAAsB,GAAA,CAAAH,qBAAA,GAAGE,IAAI,aAAJA,IAAI,KAAA,MAAA,GAAA,MAAA,GAAJA,IAAI,CAAEC,sBAAsB,MAAA,IAAA,IAAAH,qBAAA,KAAA,MAAA,GAAAA,qBAAA,GAAI,EAAE;EAEjE,IAAMI,oBAAoB,GAAGC,kBAAQ,CACnC;IAAEC,MAAM,EAAEjB,mBAAmB,CAACC;GAAU,EACxCa,sBACF,CAAC;EAED,oBACEI,cAAA,CAAAC,mBAAA,EAAA;IAAAC,QAAA,EACGL,oBAAoB,CAACM,GAAG,CACvB,UAAAC,IAAA,EAA8CC,KAAK,EAAA;AAAA,MAAA,IAAhDC,oBAAoB,GAAAF,IAAA,CAApBE,oBAAoB;QAAEC,iBAAiB,GAAAH,IAAA,CAAjBG,iBAAiB;MAAA,oBACxCP,cAAA,CAACQ,OAAO,EAAA;AACNC,QAAAA,SAAS,EAAC,yDAAyD;AACnE,QAAA,aAAA,EAAY,4BAA4B;AAExCC,QAAAA,KAAK,EAAC,SAAS;QAAAR,QAAA,eAEfF,cAAA,CAACW,UAAU,EAAA;AAACD,UAAAA,KAAK,EAAC,OAAO;UAAAR,QAAA,eACvBF,cAAA,CAACY,kBAAK,EAAA;AACJC,YAAAA,OAAO,EAAC,uDAAuD;AAC/DC,YAAAA,UAAU,EAAE;cACVC,CAAC,eACCf,cAAA,CAACgB,MAAM,EAAA;AACLC,gBAAAA,IAAI,EAAEV,iBAAkB;AACxBW,gBAAAA,GAAG,EAAC,YAAY;AAChBR,gBAAAA,KAAK,EAAC,MAAM;AACZS,gBAAAA,MAAM,EAAC;eACR;aAEH;AACFC,YAAAA,MAAM,EAAE;AACNd,cAAAA,oBAAoB,EAAEe,gBAAU,CAACC,IAAI,CAAChB,oBAAoB;AAC5D;WACD;SACS;AAAC,OAAA,EApBRD,KAqBE,CAAC;IAAA,CAEd;AAAC,GACD,CAAC;AAEP;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-molecules",
3
- "version": "4.1.28",
3
+ "version": "4.1.30",
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>",
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>متصل بـ Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>فصل Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>متصل بـ Zoom</Semibold> باستخدام <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>فصل Zoom</Semibold> لـ <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>فصل Zoom</Semibold> لـ <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>تم الاتصال بـ {{integrationName}}</Semibold> باستخدام <Code>{{detail}}</Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>تم الاتصال بـ {{integrationName}}</Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>تم الاتصال بـ {{integrationName}}</Semibold> نيابة عن <Code>{{onBehalfOf}}</Code> باستخدام <Code>{{detail}}</Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>تم الاتصال بـ {{integrationName}}</Semibold> نيابة عن <Code>{{onBehalfOf}}</Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>تم فصل الاتصال بـ {{integrationName}}</Semibold> من أجل <Code>{{detail}}</Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>تم فصل الاتصال بـ {{integrationName}}</Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>تم فصل الاتصال بـ {{integrationName}}</Semibold> نيابة عن <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>تم فصل الاتصال بـ {{integrationName}}</Semibold> نيابة عن <Code>{{onBehalfOf}}</Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>تم فصله</Semibold> من أجل <Code>{{detail}}</Code> (متصل بواسطة {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>تم فصله</Semibold> (متصل بواسطة {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -583,7 +583,17 @@
583
583
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>свързан Microsoft Teams</Semibold>.",
584
584
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>прекъснат Microsoft Teams</Semibold>.",
585
585
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>свързан Zoom</Semibold> с <Code>{{emailAddress}}</Code>.",
586
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>прекъснат Zoom</Semibold> за <Code>{{emailAddress}}</Code>."
586
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>прекъснат Zoom</Semibold> за <Code>{{emailAddress}}</Code>.",
587
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>свърза {{integrationName}}</Semibold> използвайки <Code>{{detail}}</Code>.",
588
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>свърза {{integrationName}}</Semibold>.",
589
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>свърза {{integrationName}}</Semibold> за <Code>{{onBehalfOf}}</Code> използвайки <Code>{{detail}}</Code>.",
590
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>свърза {{integrationName}}</Semibold> за <Code>{{onBehalfOf}}</Code>.",
591
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>отключи {{integrationName}}</Semibold> за <Code>{{detail}}</Code>.",
592
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>отключи {{integrationName}}</Semibold>.",
593
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>отключи {{integrationName}}</Semibold> за <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
594
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>отключи {{integrationName}}</Semibold> за <Code>{{onBehalfOf}}</Code>.",
595
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>отключен</Semibold> за <Code>{{detail}}</Code> (свързан от {{performedBy, anyCase}}).",
596
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>отключен</Semibold> (свързан от {{performedBy, anyCase}})."
587
597
  }
588
598
  },
589
599
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>connectat Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>desconnectat Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>connectat Zoom</Semibold> utilitzant <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>desconnectat Zoom</Semibold> per <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>desconnectat Zoom</Semibold> per <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>connectat {{integrationName}}</Semibold> utilitzant <Code>{{detail}}</Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>connectat {{integrationName}}</Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>connectat {{integrationName}}</Semibold> en nom de <Code>{{onBehalfOf}}</Code> utilitzant <Code>{{detail}}</Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>connectat {{integrationName}}</Semibold> en nom de <Code>{{onBehalfOf}}</Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>desconnectat {{integrationName}}</Semibold> per <Code>{{detail}}</Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>desconnectat {{integrationName}}</Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>desconnectat {{integrationName}}</Semibold> per <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>desconnectat {{integrationName}}</Semibold> per <Code>{{onBehalfOf}}</Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>desconnectat</Semibold> per <Code>{{detail}}</Code> (connectat per {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>desconnectat</Semibold> (connectat per {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>připojený Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>odpojený Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>připojený Zoom</Semibold> pomocí <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>odpojený Zoom</Semibold> pro <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>odpojený Zoom</Semibold> pro <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>připojil {{integrationName}}< /Semibold> pomocí <Code>{{detail}}< /Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>připojil {{integrationName}}< /Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>připojil {{integrationName}}< /Semibold> za <Code>{{onBehalfOf}}< /Code> pomocí <Code>{{detail}}< /Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>připojil {{integrationName}}< /Semibold> za <Code>{{onBehalfOf}}< /Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>odpojil {{integrationName}}< /Semibold> pro <Code>{{detail}}< /Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>odpojil {{integrationName}}< /Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>odpojil {{integrationName}}< /Semibold> za <Code>{{onBehalfOf}}< /Code> (<Code>{{detail}}< /Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>odpojil {{integrationName}}< /Semibold> za <Code>{{onBehalfOf}}< /Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>odpojeno< /Semibold> pro <Code>{{detail}}< /Code> (připojeno {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>odpojeno< /Semibold> (připojeno {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>forbundet Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>frakoblet Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>forbundet Zoom</Semibold> ved hjælp af <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>frakoblet Zoom</Semibold> for <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>frakoblet Zoom</Semibold> for <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>forbundet {{integrationName}}<\\/Semibold> ved hjælp af <Code>{{detail}}<\\/Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>forbundet {{integrationName}}<\\/Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>forbundet {{integrationName}}<\\/Semibold> på vegne af <Code>{{onBehalfOf}}<\\/Code> ved hjælp af <Code>{{detail}}<\\/Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>forbundet {{integrationName}}<\\/Semibold> på vegne af <Code>{{onBehalfOf}}<\\/Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>afbrudt {{integrationName}}<\\/Semibold> for <Code>{{detail}}<\\/Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>afbrudt {{integrationName}}<\\/Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>afbrudt {{integrationName}}<\\/Semibold> for <Code>{{onBehalfOf}}<\\/Code> (<Code>{{detail}}<\\/Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>afbrudt {{integrationName}}<\\/Semibold> for <Code>{{onBehalfOf}}<\\/Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>afbrudt<\\/Semibold> for <Code>{{detail}}<\\/Code> (forbundet af {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>afbrudt<\\/Semibold> (forbundet af {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -407,7 +407,17 @@
407
407
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>hat Microsoft Teams verbunden</Semibold>.",
408
408
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>hat Microsoft Teams getrennt</Semibold>.",
409
409
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>hat Zoom verbunden</Semibold> über <Code>{{emailAddress}}</Code>.",
410
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>hat Zoom getrennt</Semibold> für <Code>{{emailAddress}}</Code>."
410
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>hat Zoom getrennt</Semibold> für <Code>{{emailAddress}}</Code>.",
411
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>hat {{integrationName}} verbunden<Semibold> unter Verwendung von <Code>{{detail}}</Code>.",
412
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>hat {{integrationName}} verbunden<Semibold>.",
413
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>hat {{integrationName}} verbunden<Semibold> für <Code>{{onBehalfOf}}</Code> unter Verwendung von <Code>{{detail}}</Code>.",
414
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>hat {{integrationName}} verbunden<Semibold> für <Code>{{onBehalfOf}}</Code>.",
415
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>hat {{integrationName}} getrennt<Semibold> für <Code>{{detail}}</Code>.",
416
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>hat {{integrationName}} getrennt<Semibold>.",
417
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>hat {{integrationName}} getrennt<Semibold> für <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
418
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>hat {{integrationName}} getrennt<Semibold> für <Code>{{onBehalfOf}}</Code>.",
419
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>wurde getrennt<Semibold> für <Code>{{detail}}</Code> (verbunden von {{performedBy, anyCase}}).",
420
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>wurde getrennt<Semibold> (verbunden von {{performedBy, anyCase}})."
411
421
  }
412
422
  },
413
423
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>conectado Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>desconectado Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>conectado Zoom</Semibold> usando <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>desconectado Zoom</Semibold> para <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>desconectado Zoom</Semibold> para <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>conectó {{integrationName}}</Semibold> usando <Code>{{detail}}</Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>conectó {{integrationName}}</Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>conectó {{integrationName}}</Semibold> por <Code>{{onBehalfOf}}</Code> usando <Code>{{detail}}</Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>conectó {{integrationName}}</Semibold> por <Code>{{onBehalfOf}}</Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>desconectó {{integrationName}}</Semibold> por <Code>{{detail}}</Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>desconectó {{integrationName}}</Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>desconectó {{integrationName}}</Semibold> por <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>desconectó {{integrationName}}</Semibold> por <Code>{{onBehalfOf}}</Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>desconectó</Semibold> por <Code>{{detail}}</Code> (conectado por {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>desconectó</Semibold> (conectado por {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -407,7 +407,17 @@
407
407
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>conectado Microsoft Teams</Semibold>.",
408
408
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>desconectado Microsoft Teams</Semibold>.",
409
409
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>conectado Zoom</Semibold> usando <Code>{{emailAddress}}</Code>.",
410
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>desconectado Zoom</Semibold> para <Code>{{emailAddress}}</Code>."
410
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>desconectado Zoom</Semibold> para <Code>{{emailAddress}}</Code>.",
411
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>conectado {{integrationName}}</Semibold> usando <Code>{{detail}}</Code>.",
412
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>conectado {{integrationName}}</Semibold>.",
413
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>conectado {{integrationName}}</Semibold> en nombre de <Code>{{onBehalfOf}}</Code> usando <Code>{{detail}}</Code>.",
414
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>conectado {{integrationName}}</Semibold> en nombre de <Code>{{onBehalfOf}}</Code>.",
415
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>desconectado {{integrationName}}</Semibold> para <Code>{{detail}}</Code>.",
416
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>desconectado {{integrationName}}</Semibold>.",
417
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>desconectado {{integrationName}}</Semibold> en nombre de <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
418
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>desconectado {{integrationName}}</Semibold> en nombre de <Code>{{onBehalfOf}}</Code>.",
419
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>desconectado</Semibold> para <Code>{{detail}}</Code> (conectado por {{performedBy, anyCase}}).",
420
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>desconectado</Semibold> (conectado por {{performedBy, anyCase}})."
411
421
  }
412
422
  },
413
423
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>ühendas Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>katkestas Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>ühendas Zoom'i</Semibold> kasutades <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>katkestas Zoom'i</Semibold> aadressil <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>katkestas Zoom'i</Semibold> aadressil <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>ühendas {{integrationName}}<Sembold> kasutades <Code>{{detail}}</Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>ühendas {{integrationName}}<Sembold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>ühendas {{integrationName}}<Sembold> <Code>{{onBehalfOf}}</Code> eest kasutades <Code>{{detail}}</Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>ühendas {{integrationName}}<Sembold> <Code>{{onBehalfOf}}</Code> eest.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>katkestas {{integrationName}}<Sembold> jaoks <Code>{{detail}}</Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>katkestas {{integrationName}}<Sembold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>katkestas {{integrationName}}<Sembold> <Code>{{onBehalfOf}}</Code> eest (<Code>{{detail}}</Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>katkestas {{integrationName}}<Sembold> <Code>{{onBehalfOf}}</Code> eest.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>katkestas<Sembold> <Code>{{detail}}</Code> (ühendatud {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>katkestas<Sembold> (ühendatud {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>liitti Microsoft Teamsin</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>erotti Microsoft Teamsin</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>liitti Zoomin</Semibold> käyttäen <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>erotti Zoomin</Semibold> käyttäjältä <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>erotti Zoomin</Semibold> käyttäjältä <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>yhdisti {{integrationName}}<\\/Semibold> käyttäen <Code>{{detail}}<\\/Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>yhdisti {{integrationName}}<\\/Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>yhdisti {{integrationName}}<\\/Semibold> puolesta <Code>{{onBehalfOf}}<\\/Code> käyttäen <Code>{{detail}}<\\/Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>yhdisti {{integrationName}}<\\/Semibold> puolesta <Code>{{onBehalfOf}}<\\/Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>katkaisi yhteyden {{integrationName}}<\\/Semibold> <Code>{{detail}}<\\/Code>:lla.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>katkaisi yhteyden {{integrationName}}<\\/Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>katkaisi yhteyden {{integrationName}}<\\/Semibold> puolesta <Code>{{onBehalfOf}}<\\/Code> (<Code>{{detail}}<\\/Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>katkaisi yhteyden {{integrationName}}<\\/Semibold> puolesta <Code>{{onBehalfOf}}<\\/Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>katkaisi yhteyden<\\/Semibold> <Code>{{detail}}<\\/Code>:lla (yhdistetty käyttäjän {{performedBy, anyCase}} toimesta).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>katkaisi yhteyden<\\/Semibold> (yhdistetty käyttäjän {{performedBy, anyCase}} toimesta)."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>nakakonekta ang Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>na-disconnect ang Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>nakakonekta ang Zoom</Semibold> gamit ang <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>na-disconnect ang Zoom</Semibold> para sa <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>na-disconnect ang Zoom</Semibold> para sa <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>nakonekta {{integrationName}}<\\/Semibold> gamit ang <Code>{{detail}}<\\/Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>nakonekta {{integrationName}}<\\/Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>nakonekta {{integrationName}}<\\/Semibold> para kay <Code>{{onBehalfOf}}<\\/Code> gamit ang <Code>{{detail}}<\\/Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>nakonekta {{integrationName}}<\\/Semibold> para kay <Code>{{onBehalfOf}}<\\/Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>dinisconnect {{integrationName}}<\\/Semibold> para kay <Code>{{detail}}<\\/Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>dinisconnect {{integrationName}}<\\/Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>dinisconnect {{integrationName}}<\\/Semibold> para kay <Code>{{onBehalfOf}}<\\/Code> (<Code>{{detail}}<\\/Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>dinisconnect {{integrationName}}<\\/Semibold> para kay <Code>{{onBehalfOf}}<\\/Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>dinisconnect<\\/Semibold> para kay <Code>{{detail}}<\\/Code> (nakonekta ni {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>dinisconnect<\\/Semibold> (nakonekta ni {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -407,7 +407,17 @@
407
407
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>connecté Microsoft Teams</Semibold>.",
408
408
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>démis en connexion Microsoft Teams</Semibold>.",
409
409
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>connecté Zoom</Semibold> en utilisant <Code>{{emailAddress}}</Code>.",
410
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>démis en connexion Zoom</Semibold> pour <Code>{{emailAddress}}</Code>."
410
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>démis en connexion Zoom</Semibold> pour <Code>{{emailAddress}}</Code>.",
411
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>connecté {{integrationName}}</Semibold> en utilisant <Code>{{detail}}</Code>.",
412
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>connecté {{integrationName}}</Semibold>.",
413
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>connecté {{integrationName}}</Semibold> pour <Code>{{onBehalfOf}}</Code> en utilisant <Code>{{detail}}</Code>.",
414
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>connecté {{integrationName}}</Semibold> pour <Code>{{onBehalfOf}}</Code>.",
415
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>disconnected {{integrationName}}</Semibold> pour <Code>{{detail}}</Code>.",
416
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>disconnected {{integrationName}}</Semibold>.",
417
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>disconnected {{integrationName}}</Semibold> pour <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
418
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>disconnected {{integrationName}}</Semibold> pour <Code>{{onBehalfOf}}</Code>.",
419
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>disconnected</Semibold> pour <Code>{{detail}}</Code> (connecté par {{performedBy, anyCase}}).",
420
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>disconnected</Semibold> (connecté par {{performedBy, anyCase}})."
411
421
  }
412
422
  },
413
423
  "ipRestriction": {
@@ -384,7 +384,17 @@
384
384
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>מחובר Microsoft Teams</Semibold>.",
385
385
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>הושבת Microsoft Teams</Semibold>.",
386
386
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>מחובר Zoom</Semibold> באמצעות <Code>{{emailAddress}}</Code>.",
387
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>הושבת Zoom</Semibold> ל- <Code>{{emailAddress}}</Code>."
387
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>הושבת Zoom</Semibold> ל- <Code>{{emailAddress}}</Code>.",
388
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold> מחובר {{integrationName}} </Semibold> באמצעות <Code>{{detail}}</Code>.",
389
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold> מחובר {{integrationName}} </Semibold>.",
390
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold> מחובר {{integrationName}} </Semibold> עבור <Code>{{onBehalfOf}}</Code> באמצעות <Code>{{detail}}</Code>.",
391
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold> מחובר {{integrationName}} </Semibold> עבור <Code>{{onBehalfOf}}</Code>.",
392
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold> מנותק {{integrationName}} </Semibold> עבור <Code>{{detail}}</Code>.",
393
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold> מנותק {{integrationName}} </Semibold>.",
394
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold> מנותק {{integrationName}} </Semibold> עבור <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
395
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold> מנותק {{integrationName}} </Semibold> עבור <Code>{{onBehalfOf}}</Code>.",
396
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold> מנותק </Semibold> עבור <Code>{{detail}}</Code> (נתחבר על ידי {{performedBy, anyCase}}).",
397
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold> מנותק </Semibold> (נתחבר על ידי {{performedBy, anyCase}})."
388
398
  },
389
399
  "details": {
390
400
  "emails": {
@@ -570,7 +570,17 @@
570
570
  "createdApiKey": "{{performedBy, anyCase}} <Semibold>बनाया</Semibold> एक API की से etiquetas <Semibold>{{label, anyCase}}</Semibold> पर {{productSuffix, anyCase}}",
571
571
  "deletedApiKey": "{{performedBy, anyCase}} <Semibold>हटाया</Semibold> एक API की से etiquetas <Semibold>{{label, anyCase}}</Semibold> पर {{productSuffix, anyCase}}",
572
572
  "updatedApiKey": "{{performedBy, anyCase}} <Semibold>अपडेट किया</Semibold> एक API की से etiquetas <Semibold>{{label, anyCase}}</Semibold> पर {{productSuffix, anyCase}}",
573
- "removedUser": "{{performedBy, anyCase}} <Semibold>हटा दिया</Semibold> <Code>{{affectedUser}}</Code> {{productSuffix, anyCase}} से।"
573
+ "removedUser": "{{performedBy, anyCase}} <Semibold>हटा दिया</Semibold> <Code>{{affectedUser}}</Code> {{productSuffix, anyCase}} से।",
574
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>जुड़ा {{integrationName}}< /Semibold> का उपयोग करते हुए <Code>{{detail}}< /Code>.",
575
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>जुड़ा {{integrationName}}< /Semibold>.",
576
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>जुड़ा {{integrationName}}< /Semibold> के लिए <Code>{{onBehalfOf}}< /Code> <Code>{{detail}}< /Code> का उपयोग करते हुए.",
577
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>जुड़ा {{integrationName}}< /Semibold> के लिए <Code>{{onBehalfOf}}< /Code>.",
578
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>अलग किया {{integrationName}}< /Semibold> के लिए <Code>{{detail}}< /Code>.",
579
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>अलग किया {{integrationName}}< /Semibold>.",
580
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>अलग किया {{integrationName}}< /Semibold> के लिए <Code>{{onBehalfOf}}< /Code> (<Code>{{detail}}< /Code>).",
581
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>अलग किया {{integrationName}}< /Semibold> के लिए <Code>{{onBehalfOf}}< /Code>.",
582
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>अलग किया< /Semibold> के लिए <Code>{{detail}}< /Code> (जुड़ा हुआ {{performedBy, anyCase}}).",
583
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>अलग किया< /Semibold> (जुड़ा हुआ {{performedBy, anyCase}})."
574
584
  }
575
585
  },
576
586
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>povezan Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>odspojen Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>povezan Zoom</Semibold> koristeći <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>odspojen Zoom</Semibold> za <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>odspojen Zoom</Semibold> za <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold> povezano {{integrationName}}</Semibold> koristeći <Code>{{detail}}</Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold> povezano {{integrationName}}</Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold> povezano {{integrationName}}</Semibold> za <Code>{{onBehalfOf}}</Code> koristeći <Code>{{detail}}</Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold> povezano {{integrationName}}</Semibold> za <Code>{{onBehalfOf}}</Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold> prekinuto {{integrationName}}</Semibold> za <Code>{{detail}}</Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold> prekinuto {{integrationName}}</Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold> prekinuto {{integrationName}}</Semibold> za <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold> prekinuto {{integrationName}}</Semibold> za <Code>{{onBehalfOf}}</Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold> prekinuto</Semibold> za <Code>{{detail}}</Code> (povezao {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold> prekinuto</Semibold> (povezao {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -381,7 +381,17 @@
381
381
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>összekapcsolta a Microsoft Teams-t</Semibold>.",
382
382
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>eltávolította a Microsoft Teams összekapcsolást</Semibold>.",
383
383
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>összekapcsolta a Zoomot</Semibold> a <Code>{{emailAddress}}</Code> segítségével.",
384
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>eltávolította a Zoom összekapcsolást</Semibold> a <Code>{{emailAddress}}</Code> céllal."
384
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>eltávolította a Zoom összekapcsolást</Semibold> a <Code>{{emailAddress}}</Code> céllal.",
385
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>csatlakozott {{integrationName}}</Semibold> a <Code>{{detail}}</Code> használatával.",
386
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>csatlakozott {{integrationName}}</Semibold>.",
387
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>csatlakozott {{integrationName}}</Semibold> a <Code>{{onBehalfOf}}</Code> részére a <Code>{{detail}}</Code> használatával.",
388
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>csatlakozott {{integrationName}}</Semibold> a <Code>{{onBehalfOf}}</Code> részére.",
389
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>lekötött {{integrationName}}</Semibold> a <Code>{{detail}}</Code> használatával.",
390
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>lekötött {{integrationName}}</Semibold>.",
391
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>lekötött {{integrationName}}</Semibold> a <Code>{{onBehalfOf}}</Code> részére (<Code>{{detail}}</Code>).",
392
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>lekötött {{integrationName}}</Semibold> a <Code>{{onBehalfOf}}</Code> részére.",
393
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>lekötve</Semibold> a <Code>{{detail}}</Code> használatával (csatlakoztatta {{performedBy, anyCase}}).",
394
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>lekötve</Semibold> (csatlakoztatta {{performedBy, anyCase}})."
385
395
  },
386
396
  "details": {
387
397
  "emails": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>terhubung ke Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>terputus dari Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>terhubung ke Zoom</Semibold> menggunakan <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>terputus dari Zoom</Semibold> untuk <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>terputus dari Zoom</Semibold> untuk <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>terhubung {{integrationName}}<\\/Semibold> menggunakan <Code>{{detail}}<\\/Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>terhubung {{integrationName}}<\\/Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>terhubung {{integrationName}}<\\/Semibold> untuk <Code>{{onBehalfOf}}<\\/Code> menggunakan <Code>{{detail}}<\\/Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>terhubung {{integrationName}}<\\/Semibold> untuk <Code>{{onBehalfOf}}<\\/Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>terputus {{integrationName}}<\\/Semibold> untuk <Code>{{detail}}<\\/Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>terputus {{integrationName}}<\\/Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>terputus {{integrationName}}<\\/Semibold> untuk <Code>{{onBehalfOf}}<\\/Code> (<Code>{{detail}}<\\/Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>terputus {{integrationName}}<\\/Semibold> untuk <Code>{{onBehalfOf}}<\\/Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>terputus<\\/Semibold> untuk <Code>{{detail}}<\\/Code> (terhubung oleh {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>terputus<\\/Semibold> (terhubung oleh {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>connesso Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>disconnesso Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>connesso Zoom</Semibold> utilizzando <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>disconnesso Zoom</Semibold> per <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>disconnesso Zoom</Semibold> per <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>ha connesso {{integrationName}}</Semibold> utilizzando <Code>{{detail}}</Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>ha connesso {{integrationName}}</Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>ha connesso {{integrationName}}</Semibold> per <Code>{{onBehalfOf}}</Code> utilizzando <Code>{{detail}}</Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>ha connesso {{integrationName}}</Semibold> per <Code>{{onBehalfOf}}</Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>ha disconnesso {{integrationName}}</Semibold> per <Code>{{detail}}</Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>ha disconnesso {{integrationName}}</Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>ha disconnesso {{integrationName}}</Semibold> per <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>ha disconnesso {{integrationName}}</Semibold> per <Code>{{onBehalfOf}}</Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>è stato disconnesso</Semibold> per <Code>{{detail}}</Code> (connesso da {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>è stato disconnesso</Semibold> (connesso da {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>Microsoft Teamsに接続しました</Semibold>。",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>Microsoft Teamsが切断されました</Semibold>。",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>Zoomに接続しました</Semibold> using <Code>{{emailAddress}}</Code>。",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>Zoomが切断されました</Semibold> <Code>{{emailAddress}}</Code>。"
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>Zoomが切断されました</Semibold> <Code>{{emailAddress}}</Code>。",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>が {{integrationName}} を接続しました</Semibold> するために <Code>{{detail}}</Code>。",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>が {{integrationName}} を接続しました</Semibold>。",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>が {{integrationName}} を接続しました</Semibold> {{onBehalfOf}} のために <Code>{{detail}}</Code>。",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>が {{integrationName}} を接続しました</Semibold> {{onBehalfOf}} のために。",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>が {{integrationName}} を切断しました</Semibold> <Code>{{detail}}</Code>。",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>が {{integrationName}} を切断しました</Semibold>。",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>が {{integrationName}} を切断しました</Semibold> {{onBehalfOf}} のために (<Code>{{detail}}</Code>)。",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>が {{integrationName}} を切断しました</Semibold> {{onBehalfOf}} のために。",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>が切断されました</Semibold> <Code>{{detail}}</Code> (接続者: {{performedBy, anyCase}})。",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>が切断されました</Semibold> (接続者: {{performedBy, anyCase}})。"
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>마이크로소프트 팀즈 연결됨</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>마이크로소프트 팀즈 연결 끊김</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>줌 연결됨</Semibold> <Code>{{emailAddress}}</Code>를 사용하여.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>줌 연결 끊김</Semibold>: <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>줌 연결 끊김</Semibold>: <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>연결됨 {{integrationName}}</Semibold> 사용하여 <Code>{{detail}}</Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>연결됨 {{integrationName}}</Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>연결됨 {{integrationName}}</Semibold> 대신 <Code>{{onBehalfOf}}</Code> 사용하여 <Code>{{detail}}</Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>연결됨 {{integrationName}}</Semibold> 대신 <Code>{{onBehalfOf}}</Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>연결 해제됨 {{integrationName}}</Semibold> 위하여 <Code>{{detail}}</Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>연결 해제됨 {{integrationName}}</Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>연결 해제됨 {{integrationName}}</Semibold> 대신 <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>연결 해제됨 {{integrationName}}</Semibold> 대신 <Code>{{onBehalfOf}}</Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>연결 해제됨</Semibold> 위하여 <Code>{{detail}}</Code> ({{performedBy, anyCase}}에 의해 연결됨).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>연결 해제됨</Semibold> ({{performedBy, anyCase}}에 의해 연결됨)."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -407,7 +407,17 @@
407
407
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>verbond Microsoft Teams</Semibold>.",
408
408
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>ontkoppelde Microsoft Teams</Semibold>.",
409
409
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>verbond Zoom</Semibold> met <Code>{{emailAddress}}</Code>.",
410
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>ontkoppelde Zoom</Semibold> voor <Code>{{emailAddress}}</Code>."
410
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>ontkoppelde Zoom</Semibold> voor <Code>{{emailAddress}}</Code>.",
411
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>verbonden {{integrationName}}<\\/Semibold> met <Code>{{detail}}<\\/Code>.",
412
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>verbonden {{integrationName}}<\\/Semibold>.",
413
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>verbonden {{integrationName}}<\\/Semibold> namens <Code>{{onBehalfOf}}<\\/Code> met <Code>{{detail}}<\\/Code>.",
414
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>verbonden {{integrationName}}<\\/Semibold> namens <Code>{{onBehalfOf}}<\\/Code>.",
415
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>ontkoppeld {{integrationName}}<\\/Semibold> voor <Code>{{detail}}<\\/Code>.",
416
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>ontkoppeld {{integrationName}}<\\/Semibold>.",
417
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>ontkoppeld {{integrationName}}<\\/Semibold> voor <Code>{{onBehalfOf}}<\\/Code> (<Code>{{detail}}<\\/Code>).",
418
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>ontkoppeld {{integrationName}}<\\/Semibold> voor <Code>{{onBehalfOf}}<\\/Code>.",
419
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>ontkoppeld<\\/Semibold> voor <Code>{{detail}}<\\/Code> (verbonden door {{performedBy, anyCase}}).",
420
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>ontkoppeld<\\/Semibold> (verbonden door {{performedBy, anyCase}})."
411
421
  }
412
422
  },
413
423
  "ipRestriction": {
@@ -407,7 +407,17 @@
407
407
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>połączono Microsoft Teams</Semibold>.",
408
408
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>rozłączono Microsoft Teams</Semibold>.",
409
409
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>połączono Zoom</Semibold> używając <Code>{{emailAddress}}</Code>.",
410
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>rozłączono Zoom</Semibold> dla <Code>{{emailAddress}}</Code>."
410
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>rozłączono Zoom</Semibold> dla <Code>{{emailAddress}}</Code>.",
411
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>połączył {{integrationName}}<\\/Semibold> używając <Code>{{detail}}<\\/Code>.",
412
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>połączył {{integrationName}}<\\/Semibold>.",
413
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>połączył {{integrationName}}<\\/Semibold> w imieniu <Code>{{onBehalfOf}}<\\/Code> używając <Code>{{detail}}<\\/Code>.",
414
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>połączył {{integrationName}}<\\/Semibold> w imieniu <Code>{{onBehalfOf}}<\\/Code>.",
415
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>rozłączył {{integrationName}}<\\/Semibold> dla <Code>{{detail}}<\\/Code>.",
416
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>rozłączył {{integrationName}}<\\/Semibold>.",
417
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>rozłączył {{integrationName}}<\\/Semibold> w imieniu <Code>{{onBehalfOf}}<\\/Code> (<Code>{{detail}}<\\/Code>).",
418
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>rozłączył {{integrationName}}<\\/Semibold> w imieniu <Code>{{onBehalfOf}}<\\/Code>.",
419
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>rozłączył<\\/Semibold> dla <Code>{{detail}}<\\/Code> (połączony przez {{performedBy, anyCase}}).",
420
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>rozłączył<\\/Semibold> (połączony przez {{performedBy, anyCase}})."
411
421
  }
412
422
  },
413
423
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>conectado Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>desconectado Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>conectado Zoom</Semibold> usando <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>desconectado Zoom</Semibold> para <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>desconectado Zoom</Semibold> para <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>conectou {{integrationName}}< /Semibold> usando <Code>{{detail}}< /Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>conectou {{integrationName}}< /Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>conectou {{integrationName}}< /Semibold> por <Code>{{onBehalfOf}}< /Code> usando <Code>{{detail}}< /Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>conectou {{integrationName}}< /Semibold> por <Code>{{onBehalfOf}}< /Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>desconectou {{integrationName}}< /Semibold> por <Code>{{detail}}< /Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>desconectou {{integrationName}}< /Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>desconectou {{integrationName}}< /Semibold> por <Code>{{onBehalfOf}}< /Code> (<Code>{{detail}}< /Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>desconectou {{integrationName}}< /Semibold> por <Code>{{onBehalfOf}}< /Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>desconectou< /Semibold> por <Code>{{detail}}< /Code> (conectado por {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>desconectou< /Semibold> (conectado por {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -407,7 +407,17 @@
407
407
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>conectou o Microsoft Teams</Semibold>.",
408
408
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>desconectou o Microsoft Teams</Semibold>.",
409
409
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>conectou o Zoom</Semibold> usando <Code>{{emailAddress}}</Code>.",
410
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>desconectou o Zoom</Semibold> para <Code>{{emailAddress}}</Code>."
410
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>desconectou o Zoom</Semibold> para <Code>{{emailAddress}}</Code>.",
411
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>conectou {{integrationName}}< /Semibold> usando <Code>{{detail}}< /Code>.",
412
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>conectou {{integrationName}}< /Semibold>.",
413
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>conectou {{integrationName}}< /Semibold> em nome de <Code>{{onBehalfOf}}< /Code> usando <Code>{{detail}}< /Code>.",
414
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>conectou {{integrationName}}< /Semibold> em nome de <Code>{{onBehalfOf}}< /Code>.",
415
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>desconectou {{integrationName}}< /Semibold> para <Code>{{detail}}< /Code>.",
416
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>desconectou {{integrationName}}< /Semibold>.",
417
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>desconectou {{integrationName}}< /Semibold> para <Code>{{onBehalfOf}}< /Code> (<Code>{{detail}}< /Code>).",
418
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>desconectou {{integrationName}}< /Semibold> para <Code>{{onBehalfOf}}< /Code>.",
419
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>desconectou< /Semibold> para <Code>{{detail}}< /Code> (conectado por {{performedBy, anyCase}}).",
420
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>desconectou< /Semibold> (conectado por {{performedBy, anyCase}})."
411
421
  }
412
422
  },
413
423
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>conectat Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>deconectat Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>conectat Zoom</Semibold> folosind <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>deconectat Zoom</Semibold> pentru <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>deconectat Zoom</Semibold> pentru <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>conectat {{integrationName}}</Semibold> folosind <Code>{{detail}}</Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>conectat {{integrationName}}</Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>conectat {{integrationName}}</Semibold> pentru <Code>{{onBehalfOf}}</Code> folosind <Code>{{detail}}</Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>conectat {{integrationName}}</Semibold> pentru <Code>{{onBehalfOf}}</Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>disconectat {{integrationName}}</Semibold> pentru <Code>{{detail}}</Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>disconectat {{integrationName}}</Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>disconectat {{integrationName}}</Semibold> pentru <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>disconectat {{integrationName}}</Semibold> pentru <Code>{{onBehalfOf}}</Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>disconectat</Semibold> pentru <Code>{{detail}}</Code> (conectat de {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>disconectat</Semibold> (conectat de {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -558,7 +558,17 @@
558
558
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>соединил Microsoft Teams</Semibold>.",
559
559
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>отключил Microsoft Teams</Semibold>.",
560
560
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>соединил Zoom</Semibold> с использованием <Code>{{emailAddress}}</Code>.",
561
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>отключил Zoom</Semibold> для <Code>{{emailAddress}}</Code>."
561
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>отключил Zoom</Semibold> для <Code>{{emailAddress}}</Code>.",
562
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>соединил {{integrationName}}</Semibold> используя <Code>{{detail}}</Code>.",
563
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>соединил {{integrationName}}</Semibold>.",
564
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>соединил {{integrationName}}</Semibold> для <Code>{{onBehalfOf}}</Code> используя <Code>{{detail}}</Code>.",
565
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>соединил {{integrationName}}</Semibold> для <Code>{{onBehalfOf}}</Code>.",
566
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>отключил {{integrationName}}</Semibold> для <Code>{{detail}}</Code>.",
567
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>отключил {{integrationName}}</Semibold>.",
568
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>отключил {{integrationName}}</Semibold> для <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
569
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>отключил {{integrationName}}</Semibold> для <Code>{{onBehalfOf}}</Code>.",
570
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>отключен</Semibold> для <Code>{{detail}}</Code> (подключен {{performedBy, anyCase}}).",
571
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>отключен</Semibold> (подключен {{performedBy, anyCase}})."
562
572
  }
563
573
  },
564
574
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>pripojený Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>odpojený Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>pripojený Zoom</Semibold> pomocou <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>odpojený Zoom</Semibold> pre <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>odpojený Zoom</Semibold> pre <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>pripojil {{integrationName}}<\\/Semibold> pomocou <Code>{{detail}}<\\/Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>pripojil {{integrationName}}<\\/Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>pripojil {{integrationName}}<\\/Semibold> pre <Code>{{onBehalfOf}}<\\/Code> pomocou <Code>{{detail}}<\\/Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>pripojil {{integrationName}}<\\/Semibold> pre <Code>{{onBehalfOf}}<\\/Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>odpojil {{integrationName}}<\\/Semibold> pre <Code>{{detail}}<\\/Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>odpojil {{integrationName}}<\\/Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>odpojil {{integrationName}}<\\/Semibold> pre <Code>{{onBehalfOf}}<\\/Code> (<Code>{{detail}}<\\/Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>odpojil {{integrationName}}<\\/Semibold> pre <Code>{{onBehalfOf}}<\\/Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>odpojil<\\/Semibold> pre <Code>{{detail}}<\\/Code> (pripojený <strong> {{performedBy, anyCase}}<\\/strong>).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>odpojil<\\/Semibold> (pripojený <strong>{{performedBy, anyCase}}<\\/strong>)."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>povezan Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>odklopljen Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>povezan Zoom</Semibold> z uporabo <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>odklopljen Zoom</Semibold> za <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>odklopljen Zoom</Semibold> za <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>je povezan {{integrationName}}</Semibold> z uporabo <Code>{{detail}}</Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>je povezan {{integrationName}}</Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>je povezan {{integrationName}}</Semibold> v imenu <Code>{{onBehalfOf}}</Code> z uporabo <Code>{{detail}}</Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>je povezan {{integrationName}}</Semibold> v imenu <Code>{{onBehalfOf}}</Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>je preklican {{integrationName}}</Semibold> za <Code>{{detail}}</Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>je preklican {{integrationName}}</Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>je preklican {{integrationName}}</Semibold> v imenu <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>je preklican {{integrationName}}</Semibold> v imenu <Code>{{onBehalfOf}}</Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>je preklican</Semibold> za <Code>{{detail}}</Code> (povezan z {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>je preklican</Semibold> (povezan z {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>kopplade Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>frånkopplade Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>kopplade Zoom</Semibold> med <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>frånkopplade Zoom</Semibold> för <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>frånkopplade Zoom</Semibold> för <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>ansluten {{integrationName}}<\\/Semibold> med hjälp av <Code>{{detail}}<\\/Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>ansluten {{integrationName}}<\\/Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>ansluten {{integrationName}}<\\/Semibold> för <Code>{{onBehalfOf}}<\\/Code> med hjälp av <Code>{{detail}}<\\/Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>ansluten {{integrationName}}<\\/Semibold> för <Code>{{onBehalfOf}}<\\/Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>fråntagen {{integrationName}}<\\/Semibold> för <Code>{{detail}}<\\/Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>fråntagen {{integrationName}}<\\/Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>fråntagen {{integrationName}}<\\/Semibold> för <Code>{{onBehalfOf}}<\\/Code> (<Code>{{detail}}<\\/Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>fråntagen {{integrationName}}<\\/Semibold> för <Code>{{onBehalfOf}}<\\/Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>fråntagen<\\/Semibold> för <Code>{{detail}}<\\/Code> (ansluten av {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>fråntagen<\\/Semibold> (ansluten av {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -862,7 +862,17 @@
862
862
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>ได้เชื่อมต่อ Microsoft Teams</Semibold>.",
863
863
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>ได้ยกเลิกการเชื่อมต่อ Microsoft Teams</Semibold>.",
864
864
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>ได้เชื่อมต่อ Zoom</Semibold> โดยใช้ <Code>{{emailAddress}}</Code>.",
865
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>ได้ยกเลิกการเชื่อมต่อ Zoom</Semibold> สำหรับ <Code>{{emailAddress}}</Code>."
865
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>ได้ยกเลิกการเชื่อมต่อ Zoom</Semibold> สำหรับ <Code>{{emailAddress}}</Code>.",
866
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>เชื่อมต่อ {{integrationName}}<\\/Semibold> โดยใช้ <Code>{{detail}}<\\/Code>.",
867
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>เชื่อมต่อ {{integrationName}}<\\/Semibold>.",
868
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>เชื่อมต่อ {{integrationName}}<\\/Semibold> สำหรับ <Code>{{onBehalfOf}}<\\/Code> โดยใช้ <Code>{{detail}}<\\/Code>.",
869
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>เชื่อมต่อ {{integrationName}}<\\/Semibold> สำหรับ <Code>{{onBehalfOf}}<\\/Code>.",
870
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>ตัดการเชื่อมต่อ {{integrationName}}<\\/Semibold> สำหรับ <Code>{{detail}}<\\/Code>.",
871
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>ตัดการเชื่อมต่อ {{integrationName}}<\\/Semibold>.",
872
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>ตัดการเชื่อมต่อ {{integrationName}}<\\/Semibold> สำหรับ <Code>{{onBehalfOf}}<\\/Code> (<Code>{{detail}}<\\/Code>).",
873
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>ตัดการเชื่อมต่อ {{integrationName}}<\\/Semibold> สำหรับ <Code>{{onBehalfOf}}<\\/Code>.",
874
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>ตัดการเชื่อมต่อ<\\/Semibold> สำหรับ <Code>{{detail}}<\\/Code> (เชื่อมต่อโดย {{performedBy, anyCase}}).",
875
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>ตัดการเชื่อมต่อ<\\/Semibold> (เชื่อมต่อโดย {{performedBy, anyCase}})."
866
876
  }
867
877
  },
868
878
  "reactions": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>Microsoft Teams Bağlandı</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>Microsoft Teams Bağlantısı Kesildi</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>Zoom Bağlandı</Semibold> <Code>{{emailAddress}}</Code> kullanarak.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>Zoom Bağlantısı Kesildi</Semibold> için <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>Zoom Bağlantısı Kesildi</Semibold> için <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>bağlandı {{integrationName}}< /Semibold> kullanarak <Code>{{detail}}< /Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>bağlandı {{integrationName}}< /Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>bağlandı {{integrationName}}< /Semibold> adına <Code>{{onBehalfOf}}< /Code> kullanarak <Code>{{detail}}< /Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>bağlandı {{integrationName}}< /Semibold> adına <Code>{{onBehalfOf}}< /Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>koparıldı {{integrationName}}< /Semibold> için <Code>{{detail}}< /Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>koparıldı {{integrationName}}< /Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>koparıldı {{integrationName}}< /Semibold> adına <Code>{{onBehalfOf}}< /Code> (<Code>{{detail}}< /Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>koparıldı {{integrationName}}< /Semibold> adına <Code>{{onBehalfOf}}< /Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>koparıldı< /Semibold> için <Code>{{detail}}< /Code> (bağlanan {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>koparıldı< /Semibold> (bağlanan {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>підключено Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>відключено Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>підключено Zoom</Semibold> за допомогою <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>відключено Zoom</Semibold> для <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>відключено Zoom</Semibold> для <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>підключив {{integrationName}}</Semibold> за допомогою <Code>{{detail}}</Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>підключив {{integrationName}}</Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>підключив {{integrationName}}</Semibold> від імені <Code>{{onBehalfOf}}</Code> за допомогою <Code>{{detail}}</Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>підключив {{integrationName}}</Semibold> від імені <Code>{{onBehalfOf}}</Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>відключив {{integrationName}}</Semibold> за допомогою <Code>{{detail}}</Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>відключив {{integrationName}}</Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>відключив {{integrationName}}</Semibold> від імені <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>відключив {{integrationName}}</Semibold> від імені <Code>{{onBehalfOf}}</Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>відключено</Semibold> за допомогою <Code>{{detail}}</Code> (підключено {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>відключено</Semibold> (підключено {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>đã kết nối Microsoft Teams</Semibold>.",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>đã ngắt kết nối Microsoft Teams</Semibold>.",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>đã kết nối Zoom</Semibold> bằng <Code>{{emailAddress}}</Code>.",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>đã ngắt kết nối Zoom</Semibold> cho <Code>{{emailAddress}}</Code>."
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>đã ngắt kết nối Zoom</Semibold> cho <Code>{{emailAddress}}</Code>.",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>đã kết nối {{integrationName}}</Semibold> bằng <Code>{{detail}}</Code>.",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>đã kết nối {{integrationName}}</Semibold>.",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>đã kết nối {{integrationName}}</Semibold> cho <Code>{{onBehalfOf}}</Code> bằng <Code>{{detail}}</Code>.",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>đã kết nối {{integrationName}}</Semibold> cho <Code>{{onBehalfOf}}</Code>.",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>đã ngắt kết nối {{integrationName}}</Semibold> cho <Code>{{detail}}</Code>.",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>đã ngắt kết nối {{integrationName}}</Semibold>.",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>đã ngắt kết nối {{integrationName}}</Semibold> cho <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>).",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>đã ngắt kết nối {{integrationName}}</Semibold> cho <Code>{{onBehalfOf}}</Code>.",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>đã ngắt kết nối</Semibold> cho <Code>{{detail}}</Code> (được kết nối bởi {{performedBy, anyCase}}).",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>đã ngắt kết nối</Semibold> (được kết nối bởi {{performedBy, anyCase}})."
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>已连接 Microsoft Teams</Semibold>。",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>已断开连接 Microsoft Teams</Semibold>。",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>已连接 Zoom</Semibold>,使用 <Code>{{emailAddress}}</Code>。",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>已断开连接 Zoom</Semibold>,针对 <Code>{{emailAddress}}</Code>。"
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>已断开连接 Zoom</Semibold>,针对 <Code>{{emailAddress}}</Code>。",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>已连接 {{integrationName}}</Semibold> 使用 <Code>{{detail}}</Code>。",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>已连接 {{integrationName}}</Semibold>。",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>已连接 {{integrationName}}</Semibold> 代表 <Code>{{onBehalfOf}}</Code> 使用 <Code>{{detail}}</Code>。",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>已连接 {{integrationName}}</Semibold> 代表 <Code>{{onBehalfOf}}</Code>。",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>已断开连接 {{integrationName}}</Semibold> 由于 <Code>{{detail}}</Code>。",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>已断开连接 {{integrationName}}</Semibold>。",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>已断开连接 {{integrationName}}</Semibold> 代表 <Code>{{onBehalfOf}}</Code> (<Code>{{detail}}</Code>)。",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>已断开连接 {{integrationName}}</Semibold> 代表 <Code>{{onBehalfOf}}</Code>。",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>已断开连接</Semibold> 由于 <Code>{{detail}}</Code> (由 {{performedBy, anyCase}} 连接)。",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>已断开连接</Semibold> (由 {{performedBy, anyCase}} 连接)。"
568
578
  }
569
579
  },
570
580
  "ipRestriction": {
@@ -564,7 +564,17 @@
564
564
  "connectedTeams": "{{performedBy, anyCase}} <Semibold>已連接 Microsoft Teams</Semibold>。",
565
565
  "disconnectedTeams": "{{performedBy, anyCase}} <Semibold>已斷開 Microsoft Teams</Semibold>。",
566
566
  "connectedZoom": "{{performedBy, anyCase}} <Semibold>已連接 Zoom</Semibold>,使用 <Code>{{emailAddress}}</Code>。",
567
- "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>已斷開 Zoom</Semibold>,為 <Code>{{emailAddress}}</Code>。"
567
+ "disconnectedZoom": "{{performedBy, anyCase}} <Semibold>已斷開 Zoom</Semibold>,為 <Code>{{emailAddress}}</Code>。",
568
+ "integrationConnected": "{{performedBy, anyCase}} <Semibold>已連接 {{integrationName}}<\\/Semibold> 使用 <Code>{{detail}}<\\/Code>。",
569
+ "integrationConnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>已連接 {{integrationName}}<\\/Semibold>。",
570
+ "integrationConnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>已連接 {{integrationName}}<\\/Semibold> 代表 <Code>{{onBehalfOf}}<\\/Code> 使用 <Code>{{detail}}<\\/Code>。",
571
+ "integrationConnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>已連接 {{integrationName}}<\\/Semibold> 代表 <Code>{{onBehalfOf}}<\\/Code>。",
572
+ "integrationDisconnected": "{{performedBy, anyCase}} <Semibold>已斷開連接 {{integrationName}}<\\/Semibold> 代表 <Code>{{detail}}<\\/Code>。",
573
+ "integrationDisconnectedWithoutDetail": "{{performedBy, anyCase}} <Semibold>已斷開連接 {{integrationName}}<\\/Semibold>。",
574
+ "integrationDisconnectedOnBehalf": "{{performedBy, anyCase}} <Semibold>已斷開連接 {{integrationName}}<\\/Semibold> 代表 <Code>{{onBehalfOf}}<\\/Code> (<Code>{{detail}}<\\/Code>)。",
575
+ "integrationDisconnectedOnBehalfWithoutDetail": "{{performedBy, anyCase}} <Semibold>已斷開連接 {{integrationName}}<\\/Semibold> 代表 <Code>{{onBehalfOf}}<\\/Code>。",
576
+ "integrationDisconnectedByProvider": "{{integrationName}} <Semibold>已斷開連接<\\/Semibold> 代表 <Code>{{detail}}<\\/Code> (連接者 {{performedBy, anyCase}})。",
577
+ "integrationDisconnectedByProviderWithoutDetail": "{{integrationName}} <Semibold>已斷開連接<\\/Semibold> (連接者 {{performedBy, anyCase}})。"
568
578
  }
569
579
  },
570
580
  "ipRestriction": {