@rh-support/manage 1.0.13 → 1.0.15

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 (33) hide show
  1. package/lib/esm/ManageTabs.js +1 -1
  2. package/lib/esm/components/ManagePreferences/PreferencesHeader.js +3 -3
  3. package/lib/esm/components/ManagePreferences/sections/PreferencesCaseView.js +1 -1
  4. package/lib/esm/components/NotificationEmails/NotificationEmailsModal.js +2 -2
  5. package/lib/esm/components/NotificationEmails/index.js +2 -2
  6. package/lib/esm/i18n/template-de.d.ts +11 -0
  7. package/lib/esm/i18n/template-de.d.ts.map +1 -1
  8. package/lib/esm/i18n/template-de.js +11 -0
  9. package/lib/esm/i18n/template-es.d.ts +11 -0
  10. package/lib/esm/i18n/template-es.d.ts.map +1 -1
  11. package/lib/esm/i18n/template-es.js +11 -0
  12. package/lib/esm/i18n/template-fr.d.ts +11 -0
  13. package/lib/esm/i18n/template-fr.d.ts.map +1 -1
  14. package/lib/esm/i18n/template-fr.js +11 -0
  15. package/lib/esm/i18n/template-it.d.ts +11 -0
  16. package/lib/esm/i18n/template-it.d.ts.map +1 -1
  17. package/lib/esm/i18n/template-it.js +11 -0
  18. package/lib/esm/i18n/template-jp.d.ts +11 -0
  19. package/lib/esm/i18n/template-jp.d.ts.map +1 -1
  20. package/lib/esm/i18n/template-jp.js +11 -0
  21. package/lib/esm/i18n/template-ko.d.ts +11 -0
  22. package/lib/esm/i18n/template-ko.d.ts.map +1 -1
  23. package/lib/esm/i18n/template-ko.js +11 -0
  24. package/lib/esm/i18n/template-pt.d.ts +11 -0
  25. package/lib/esm/i18n/template-pt.d.ts.map +1 -1
  26. package/lib/esm/i18n/template-pt.js +11 -0
  27. package/lib/esm/i18n/template-ru.d.ts +11 -0
  28. package/lib/esm/i18n/template-ru.d.ts.map +1 -1
  29. package/lib/esm/i18n/template-ru.js +11 -0
  30. package/lib/esm/i18n/template-zh.d.ts +11 -0
  31. package/lib/esm/i18n/template-zh.d.ts.map +1 -1
  32. package/lib/esm/i18n/template-zh.js +11 -0
  33. package/package.json +6 -6
@@ -62,7 +62,7 @@ export function ManageTabs(props) {
62
62
  canViewEmailNotificationTab &&
63
63
  canAddCustomNotification &&
64
64
  tabsToRender.push({
65
- title: 'Notification Emails',
65
+ title: 'Notification emails',
66
66
  key: 'notification-emails-tab',
67
67
  'data-tracking-id': 'notification-emails-tab',
68
68
  routePath: notificationEmailsRoute,
@@ -1,9 +1,9 @@
1
1
  import React from 'react';
2
- import { Trans } from 'react-i18next';
2
+ import { Trans, useTranslation } from 'react-i18next';
3
3
  export function PreferencesHeader() {
4
+ const { t } = useTranslation();
4
5
  return (React.createElement("header", null,
5
6
  React.createElement("h2", null,
6
7
  React.createElement(Trans, null, "Preferences")),
7
- React.createElement("p", { className: "pf-u-mt-md pf-u-mb-sm" },
8
- React.createElement(Trans, null, "Setting preferences will personalize your support case experience to best suit your needs."))));
8
+ React.createElement("p", { className: "pf-u-mt-md pf-u-mb-sm" }, t('Setting preferences will personalize your support case experience to best suit your needs.'))));
9
9
  }
@@ -166,7 +166,7 @@ export function PreferencesCaseView(props) {
166
166
  }
167
167
  };
168
168
  const prefCasePopover = (React.createElement(React.Fragment, null,
169
- React.createElement(Trans, null, "Default Case View"),
169
+ React.createElement(Trans, null, "Default case view"),
170
170
  React.createElement(Popover, { "aria-label": "Preferred-default-case-view-popover", position: PopoverPosition.top, bodyContent: React.createElement("p", { className: 'pref-case-popover-text' },
171
171
  React.createElement(Trans, null, "Choose the default view you want to see when looking at a case")), showClose: false },
172
172
  React.createElement(InfoCircleIcon, { "aria-label": "Preferred-default-case-view-info-icon", className: "pf-u-ml-sm" }))));
@@ -107,7 +107,7 @@ export const NotificationEmailsModal = (props) => {
107
107
  React.createElement(FormGroup, { label: t('Email address'), isRequired: true, fieldId: "email-notification-first-emailaddress", validated: isValidEmail && !isEmailDuplicate ? ValidatedOptions.default : ValidatedOptions.error, helperTextInvalid: !isValidEmail ? t('Invalid email') : isEmailDuplicate ? t('Duplicate Email') : '' },
108
108
  React.createElement(TextInput, { value: email, className: `form-control${!isValidEmail && isEmailDuplicate ? ' form-invalid' : ''}`, isRequired: true, type: "text", onChange: onEmailChange, "aria-label": t('Email address'), placeholder: t('Email address'), maxLength: 254, validated: isValidEmail && !isEmailDuplicate ? ValidatedOptions.default : ValidatedOptions.error, isDisabled: !props.isAddingNotificationEmail })),
109
109
  React.createElement(FormGroup, { label: t('First name'), isRequired: true, fieldId: "email-notification-first-name", validated: isValidFirstName ? ValidatedOptions.default : ValidatedOptions.error, helperTextInvalid: t('First name cannot be empty') },
110
- React.createElement(TextInput, { value: firstName, className: "form-control", isRequired: true, type: "text", onChange: onFirstNameChange, "aria-label": t('First Name'), placeholder: t('First Name'), maxLength: 254, validated: isValidFirstName ? ValidatedOptions.default : ValidatedOptions.error })),
110
+ React.createElement(TextInput, { value: firstName, className: "form-control", isRequired: true, type: "text", onChange: onFirstNameChange, "aria-label": t('First name'), placeholder: t('First name'), maxLength: 254, validated: isValidFirstName ? ValidatedOptions.default : ValidatedOptions.error })),
111
111
  React.createElement(FormGroup, { label: t('Last name'), fieldId: "email-notification-last-name" },
112
- React.createElement(TextInput, { value: lastName, className: "form-control", type: "text", onChange: onLastNameChange, "aria-label": t('Last Name'), placeholder: t('Last Name'), maxLength: 254 })))));
112
+ React.createElement(TextInput, { value: lastName, className: "form-control", type: "text", onChange: onLastNameChange, "aria-label": t('Last name'), placeholder: t('Last name'), maxLength: 254 })))));
113
113
  };
@@ -161,13 +161,13 @@ export function NotificationEmails() {
161
161
  t('Add, edit or remove emails from your account that were added to receive notifications.')),
162
162
  React.createElement("div", { className: "toolbar" },
163
163
  React.createElement("div", { className: "toolbar-left" },
164
- React.createElement("label", { htmlFor: "notification-emails-input" }, "Add an Email"),
164
+ React.createElement("label", { htmlFor: "notification-emails-input" }, t('Add an Email')),
165
165
  React.createElement(TextInput, { id: "notification-email-input", placeholder: t('Enter a valid email address'), "aria-label": t('Enter a valid email address'), onChange: onEmailInputBoxChange }),
166
166
  React.createElement("span", { className: "pf-u-ml-sm" },
167
167
  React.createElement(Button, { variant: ButtonVariant.primary, isInline: true, onClick: addEmail, "data-tracking-id": "email-address-add-button", isDisabled: isAddButtonDisabled },
168
168
  React.createElement(Trans, null, "Add")))),
169
169
  React.createElement("div", { className: "toolbar-right" },
170
- React.createElement("label", { htmlFor: "search-notification-emails-selector" }, "Filter by"),
170
+ React.createElement("label", { htmlFor: "search-notification-emails-selector" }, t('Filter by')),
171
171
  React.createElement(SearchInput, { className: "pf-u-flex-grow-1 pf-c-search-input pf-u-background-color-100", id: "search-notification-emails-selector", placeholder: t('Search for an existing email'), value: searchString, onChange: onSearchChange, onClear: () => onSearchChange(''), "aria-label": t('Search for an existing email') }))),
172
172
  React.createElement(ManageTable, { ariaLabel: t('Table to manage Notification emails'), columns: columns, data: emailLists || [], sortInfo: { column: 'first-name', direction: 'asc' }, errorVariant: AlertVariant.warning, isFetching: accountCustomEmails.isFetching, isError: accountCustomEmails.isError, errorTitle: t('Notification emails error'), errorComponent: React.createElement(Trans, null, "Could not get notification emails"), actionResolver: emailLists && emailLists.length !== 0 ? actionResolver : null, keepPageNumberOnDataChange: keepPageNumberOnDataChange }),
173
173
  React.createElement(NotificationEmailsModal, { isOpen: isEditModalOpen, onClose: onModalClose, selectedEmailNotification: selectedEmailNotification, onUpdate: onUpdate, onAdd: onAdd, accountNumber: loggedInUserJwtToken.account_number, isAddingNotificationEmail: isAddingNotificationEmail, emailsList: (accountCustomEmails.data || []).map((e) => e.emailAddress) })));
@@ -30,6 +30,17 @@ declare const _default: {
30
30
  'Default group': string;
31
31
  Preferences: string;
32
32
  'Setting preferences will personalize your support case experience to best suit your needs.': string;
33
+ 'Show archived clusters': string;
34
+ 'Case search': string;
35
+ 'Select an option': string;
36
+ 'Preferred language will impact future cases, not existing ones.': string;
37
+ 'Notification emails': string;
38
+ 'Add, edit or remove emails from your account that were added to receive notifications.': string;
39
+ 'Add an Email': string;
40
+ 'Enter a valid email address': string;
41
+ 'Search for an existing email': string;
42
+ 'Alternate case ID': string;
43
+ 'Default case view': string;
33
44
  };
34
45
  export default _default;
35
46
  //# sourceMappingURL=template-de.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"template-de.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-de.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAyCE"}
1
+ {"version":3,"file":"template-de.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-de.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAsDE"}
@@ -31,4 +31,15 @@ export default {
31
31
  'Default group': 'Standardgruppe',
32
32
  Preferences: 'Präferenzen',
33
33
  'Setting preferences will personalize your support case experience to best suit your needs.': 'Durch die Einstellung von Präferenzen können Sie Ihren Support-Fall optimal an Ihre Bedürfnisse anpassen.',
34
+ 'Show archived clusters': 'Archivierte Cluster anzeigen',
35
+ 'Case search': 'Suche nach Fällen',
36
+ 'Select an option': 'Option auswählen',
37
+ 'Preferred language will impact future cases, not existing ones.': 'Die bevorzugte Sprache wird sich auf künftige Fälle auswirken, nicht auf bestehende.',
38
+ 'Notification emails': 'Benachrichtigungs-E-Mails',
39
+ 'Add, edit or remove emails from your account that were added to receive notifications.': 'Hinzufügen, Bearbeiten oder Entfernen von E-Mails aus Ihrem Konto, die zum Erhalt von Benachrichtigungen hinzugefügt wurden.',
40
+ 'Add an Email': 'E-Mail hinzufügen',
41
+ 'Enter a valid email address': 'Geben Sie eine gültige E-Mail Adresse ein',
42
+ 'Search for an existing email': 'Suche nach einer vorhandenen E-Mail',
43
+ 'Alternate case ID': 'Alternative Fall-ID',
44
+ 'Default case view': 'Standard-Fallansicht',
34
45
  };
@@ -30,6 +30,17 @@ declare const _default: {
30
30
  'Default group': string;
31
31
  Preferences: string;
32
32
  'Setting preferences will personalize your support case experience to best suit your needs.': string;
33
+ 'Show archived clusters': string;
34
+ 'Case search': string;
35
+ 'Select an option': string;
36
+ 'Preferred language will impact future cases, not existing ones.': string;
37
+ 'Notification emails': string;
38
+ 'Add, edit or remove emails from your account that were added to receive notifications.': string;
39
+ 'Add an Email': string;
40
+ 'Enter a valid email address': string;
41
+ 'Search for an existing email': string;
42
+ 'Alternate case ID': string;
43
+ 'Default case view': string;
33
44
  };
34
45
  export default _default;
35
46
  //# sourceMappingURL=template-es.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"template-es.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-es.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAwCE"}
1
+ {"version":3,"file":"template-es.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-es.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAqDE"}
@@ -31,4 +31,15 @@ export default {
31
31
  'Default group': 'Grupo predeterminado',
32
32
  Preferences: 'Preferencias',
33
33
  'Setting preferences will personalize your support case experience to best suit your needs.': 'La configuración de las preferencias personalizará su experiencia en los casos de soporte para que se adapte mejor a sus necesidades.',
34
+ 'Show archived clusters': 'Mostrar los clústeres archivados',
35
+ 'Case search': 'Búsqueda de casos',
36
+ 'Select an option': 'Seleccione una opción',
37
+ 'Preferred language will impact future cases, not existing ones.': 'El lenguaje preferido afectará a los casos futuros, no a los existentes.',
38
+ 'Notification emails': 'Correos electrónicos de notificación',
39
+ 'Add, edit or remove emails from your account that were added to receive notifications.': 'Agregue, edite o elimine los correos electrónicos de su cuenta que se agregaron para recibir notificaciones.',
40
+ 'Add an Email': 'Agregar un correo electrónico',
41
+ 'Enter a valid email address': 'Introduzca una dirección de correo electrónico válida',
42
+ 'Search for an existing email': 'Buscar un correo electrónico existente',
43
+ 'Alternate case ID': 'ID de caso alternativo',
44
+ 'Default case view': 'Vista del caso predeterminada',
34
45
  };
@@ -30,6 +30,17 @@ declare const _default: {
30
30
  'Default group': string;
31
31
  Preferences: string;
32
32
  'Setting preferences will personalize your support case experience to best suit your needs.': string;
33
+ 'Show archived clusters': string;
34
+ 'Case search': string;
35
+ 'Select an option': string;
36
+ 'Preferred language will impact future cases, not existing ones.': string;
37
+ 'Notification emails': string;
38
+ 'Add, edit or remove emails from your account that were added to receive notifications.': string;
39
+ 'Add an Email': string;
40
+ 'Enter a valid email address': string;
41
+ 'Search for an existing email': string;
42
+ 'Alternate case ID': string;
43
+ 'Default case view': string;
33
44
  };
34
45
  export default _default;
35
46
  //# sourceMappingURL=template-fr.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"template-fr.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-fr.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAwCE"}
1
+ {"version":3,"file":"template-fr.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-fr.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAqDE"}
@@ -31,4 +31,15 @@ export default {
31
31
  'Default group': 'Groupe par défaut',
32
32
  Preferences: 'Préférences',
33
33
  'Setting preferences will personalize your support case experience to best suit your needs.': "La définition de préférences personnalisera l'expérience de votre dossier d'assistance afin de répondre au mieux à vos besoins.",
34
+ 'Show archived clusters': 'Afficher les clusters archivés',
35
+ 'Case search': 'Recherche de cas',
36
+ 'Select an option': 'Sélectionnez une option',
37
+ 'Preferred language will impact future cases, not existing ones.': 'La langue préférée aura un impact sur les affaires futures, pas sur les affaires existantes.',
38
+ 'Notification emails': 'Emails de notification',
39
+ 'Add, edit or remove emails from your account that were added to receive notifications.': 'Ajoutez, modifiez ou supprimez les e-mails de votre compte qui ont été ajoutés pour recevoir des notifications.',
40
+ 'Add an Email': 'Ajouter une adresse email',
41
+ 'Enter a valid email address': 'Saisissez une adresse électronique valide',
42
+ 'Search for an existing email': "Recherche d'un email existant",
43
+ 'Alternate case ID': 'Autre ID de cas',
44
+ 'Default case view': 'Vue par défaut du cas',
34
45
  };
@@ -30,6 +30,17 @@ declare const _default: {
30
30
  'Default group': string;
31
31
  Preferences: string;
32
32
  'Setting preferences will personalize your support case experience to best suit your needs.': string;
33
+ 'Show archived clusters': string;
34
+ 'Case search': string;
35
+ 'Select an option': string;
36
+ 'Preferred language will impact future cases, not existing ones.': string;
37
+ 'Notification emails': string;
38
+ 'Add, edit or remove emails from your account that were added to receive notifications.': string;
39
+ 'Add an Email': string;
40
+ 'Enter a valid email address': string;
41
+ 'Search for an existing email': string;
42
+ 'Alternate case ID': string;
43
+ 'Default case view': string;
33
44
  };
34
45
  export default _default;
35
46
  //# sourceMappingURL=template-it.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"template-it.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-it.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAuCE"}
1
+ {"version":3,"file":"template-it.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-it.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAoDE"}
@@ -31,4 +31,15 @@ export default {
31
31
  'Default group': 'Gruppo predefinito',
32
32
  Preferences: 'Preferenze',
33
33
  'Setting preferences will personalize your support case experience to best suit your needs.': "Impostando le preferenze potrai ricevere un'esperienza di supporto personalizzata per il tuo caso e soddisfare al meglio le tue esigenze.",
34
+ 'Show archived clusters': 'Mostrare i cluster archiviati',
35
+ 'Case search': 'Ricerca casi',
36
+ 'Select an option': "Selezionare un'opzione",
37
+ 'Preferred language will impact future cases, not existing ones.': 'La lingua preferita impatterà i casi futuri, non quelli esistenti.',
38
+ 'Notification emails': 'E-mail di notifica',
39
+ 'Add, edit or remove emails from your account that were added to receive notifications.': 'Aggiungere, modificare o rimuovere dal proprio account le e-mail aggiunte per ricevere le notifiche.',
40
+ 'Add an Email': "Aggiungere un'e-mail",
41
+ 'Enter a valid email address': 'Inserire un indirizzo e-mail valido',
42
+ 'Search for an existing email': 'Cercare un’e-mail esistente',
43
+ 'Alternate case ID': 'ID caso alternativo',
44
+ 'Default case view': 'Visualizzazione predefinita del caso',
34
45
  };
@@ -30,6 +30,17 @@ declare const _default: {
30
30
  'Default group': string;
31
31
  Preferences: string;
32
32
  'Setting preferences will personalize your support case experience to best suit your needs.': string;
33
+ 'Show archived clusters': string;
34
+ 'Case search': string;
35
+ 'Select an option': string;
36
+ 'Preferred language will impact future cases, not existing ones.': string;
37
+ 'Notification emails': string;
38
+ 'Add, edit or remove emails from your account that were added to receive notifications.': string;
39
+ 'Add an Email': string;
40
+ 'Enter a valid email address': string;
41
+ 'Search for an existing email': string;
42
+ 'Alternate case ID': string;
43
+ 'Default case view': string;
33
44
  };
34
45
  export default _default;
35
46
  //# sourceMappingURL=template-jp.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"template-jp.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-jp.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAqCE"}
1
+ {"version":3,"file":"template-jp.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-jp.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAkDE"}
@@ -31,4 +31,15 @@ export default {
31
31
  'Default group': 'デフォルトのグループ',
32
32
  Preferences: '設定',
33
33
  'Setting preferences will personalize your support case experience to best suit your needs.': '設定を行うと、お客様のニーズに最適になるように、サポートケースエクスペリエンスがカスタマイズされます。',
34
+ 'Show archived clusters': 'アーカイブされたクラスターを表示',
35
+ 'Case search': 'ケース検索',
36
+ 'Select an option': 'オプションの選択',
37
+ 'Preferred language will impact future cases, not existing ones.': '推奨言語は、既存のケースではなく、今後のケースに影響します。',
38
+ 'Notification emails': '通知メール',
39
+ 'Add, edit or remove emails from your account that were added to receive notifications.': '通知を受信するために追加されたアカウントでメールを追加、編集、または削除します。',
40
+ 'Add an Email': 'メールの追加',
41
+ 'Enter a valid email address': '有効なメールアドレスを入力します',
42
+ 'Search for an existing email': '既存のメールの検索',
43
+ 'Alternate case ID': '代替ケース ID',
44
+ 'Default case view': 'デフォルトのケースビュー',
34
45
  };
@@ -30,6 +30,17 @@ declare const _default: {
30
30
  'Default group': string;
31
31
  Preferences: string;
32
32
  'Setting preferences will personalize your support case experience to best suit your needs.': string;
33
+ 'Show archived clusters': string;
34
+ 'Case search': string;
35
+ 'Select an option': string;
36
+ 'Preferred language will impact future cases, not existing ones.': string;
37
+ 'Notification emails': string;
38
+ 'Add, edit or remove emails from your account that were added to receive notifications.': string;
39
+ 'Add an Email': string;
40
+ 'Enter a valid email address': string;
41
+ 'Search for an existing email': string;
42
+ 'Alternate case ID': string;
43
+ 'Default case view': string;
33
44
  };
34
45
  export default _default;
35
46
  //# sourceMappingURL=template-ko.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"template-ko.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-ko.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAqCE"}
1
+ {"version":3,"file":"template-ko.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-ko.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAkDE"}
@@ -31,4 +31,15 @@ export default {
31
31
  'Default group': '기본 그룹',
32
32
  Preferences: '환경 설정',
33
33
  'Setting preferences will personalize your support case experience to best suit your needs.': '환경을 설정하면 고객의 요구에 가장 적합한 지원 케이스 환경을 사용자 지정할 수 있습니다.',
34
+ 'Show archived clusters': '아카이브된 클러스터 표시',
35
+ 'Case search': '케이스 검색',
36
+ 'Select an option': '옵션 선택',
37
+ 'Preferred language will impact future cases, not existing ones.': '기본 언어는 기존 케이스가 아닌 향후 케이스에 영향을 미칩니다.',
38
+ 'Notification emails': '알림 이메일',
39
+ 'Add, edit or remove emails from your account that were added to receive notifications.': '알림을 수신하기 위해 추가된 계정에서 이메일을 추가, 편집 또는 제거합니다.',
40
+ 'Add an Email': '이메일 추가',
41
+ 'Enter a valid email address': '유효한 이메일 주소 입력',
42
+ 'Search for an existing email': '기존 이메일 검색',
43
+ 'Alternate case ID': '대체 케이스 ID',
44
+ 'Default case view': '기본 케이스 보기',
34
45
  };
@@ -30,6 +30,17 @@ declare const _default: {
30
30
  'Default group': string;
31
31
  Preferences: string;
32
32
  'Setting preferences will personalize your support case experience to best suit your needs.': string;
33
+ 'Show archived clusters': string;
34
+ 'Case search': string;
35
+ 'Select an option': string;
36
+ 'Preferred language will impact future cases, not existing ones.': string;
37
+ 'Notification emails': string;
38
+ 'Add, edit or remove emails from your account that were added to receive notifications.': string;
39
+ 'Add an Email': string;
40
+ 'Enter a valid email address': string;
41
+ 'Search for an existing email': string;
42
+ 'Alternate case ID': string;
43
+ 'Default case view': string;
33
44
  };
34
45
  export default _default;
35
46
  //# sourceMappingURL=template-pt.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"template-pt.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-pt.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAwCE"}
1
+ {"version":3,"file":"template-pt.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-pt.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAqDE"}
@@ -31,4 +31,15 @@ export default {
31
31
  'Default group': 'Grupo padrão',
32
32
  Preferences: 'Preferências',
33
33
  'Setting preferences will personalize your support case experience to best suit your needs.': 'A definição de preferências personalizará sua experiência em casos de suporte para melhor atender às suas necessidades.',
34
+ 'Show archived clusters': 'Mostrar clusters arquivados',
35
+ 'Case search': 'Busca de casos',
36
+ 'Select an option': 'Selecione uma opção',
37
+ 'Preferred language will impact future cases, not existing ones.': 'O idioma preferido terá impacto em casos futuros, não em casos existentes.',
38
+ 'Notification emails': 'E-mails de notificação',
39
+ 'Add, edit or remove emails from your account that were added to receive notifications.': 'Adicione, edite ou remova e-mails de sua conta que foram adicionados para receber notificações.',
40
+ 'Add an Email': 'Adicionar um e-mail',
41
+ 'Enter a valid email address': 'Digite um endereço de e-mail válido',
42
+ 'Search for an existing email': 'Pesquisar um e-mail existente',
43
+ 'Alternate case ID': 'ID do caso alternativo',
44
+ 'Default case view': 'Exibição de caso padrão',
34
45
  };
@@ -30,6 +30,17 @@ declare const _default: {
30
30
  'Default group': string;
31
31
  Preferences: string;
32
32
  'Setting preferences will personalize your support case experience to best suit your needs.': string;
33
+ 'Show archived clusters': string;
34
+ 'Case search': string;
35
+ 'Select an option': string;
36
+ 'Preferred language will impact future cases, not existing ones.': string;
37
+ 'Notification emails': string;
38
+ 'Add, edit or remove emails from your account that were added to receive notifications.': string;
39
+ 'Add an Email': string;
40
+ 'Enter a valid email address': string;
41
+ 'Search for an existing email': string;
42
+ 'Alternate case ID': string;
43
+ 'Default case view': string;
33
44
  };
34
45
  export default _default;
35
46
  //# sourceMappingURL=template-ru.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"template-ru.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-ru.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAwCE"}
1
+ {"version":3,"file":"template-ru.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-ru.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAqDE"}
@@ -31,4 +31,15 @@ export default {
31
31
  'Default group': 'Группа по умолчанию',
32
32
  Preferences: 'Настройки',
33
33
  'Setting preferences will personalize your support case experience to best suit your needs.': 'Задайте настройки, чтобы эффективнее работать с обращениями в службу поддержки.',
34
+ 'Show archived clusters': 'Показать архивные кластеры',
35
+ 'Case search': 'Поиск обращения',
36
+ 'Select an option': 'Выберите вариант',
37
+ 'Preferred language will impact future cases, not existing ones.': 'Выбор предпочитаемого языка повлияет на будущие обращения, но не на текущие.',
38
+ 'Notification emails': 'Адреса электронной почты для уведомлений',
39
+ 'Add, edit or remove emails from your account that were added to receive notifications.': 'Добавляйте адреса электронной почты для получения уведомлений в свою учетную запись, редактируйте их или удаляйте.',
40
+ 'Add an Email': 'Добавить адрес электронной почты',
41
+ 'Enter a valid email address': 'Введите действительный адрес электронной почты',
42
+ 'Search for an existing email': 'Найдите существующий адрес электронной почты',
43
+ 'Alternate case ID': 'Альтернативный ID обращения',
44
+ 'Default case view': 'Представление обращения по умолчанию',
34
45
  };
@@ -30,6 +30,17 @@ declare const _default: {
30
30
  'Default group': string;
31
31
  Preferences: string;
32
32
  'Setting preferences will personalize your support case experience to best suit your needs.': string;
33
+ 'Show archived clusters': string;
34
+ 'Case search': string;
35
+ 'Select an option': string;
36
+ 'Preferred language will impact future cases, not existing ones.': string;
37
+ 'Notification emails': string;
38
+ 'Add, edit or remove emails from your account that were added to receive notifications.': string;
39
+ 'Add an Email': string;
40
+ 'Enter a valid email address': string;
41
+ 'Search for an existing email': string;
42
+ 'Alternate case ID': string;
43
+ 'Default case view': string;
33
44
  };
34
45
  export default _default;
35
46
  //# sourceMappingURL=template-zh.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"template-zh.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-zh.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAqCE"}
1
+ {"version":3,"file":"template-zh.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-zh.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAkDE"}
@@ -31,4 +31,15 @@ export default {
31
31
  'Default group': '默认组',
32
32
  Preferences: '首选项',
33
33
  'Setting preferences will personalize your support case experience to best suit your needs.': '通过设置首选项,可以根据您的具体情况获得更好的支持体验。',
34
+ 'Show archived clusters': '显示归档的集群',
35
+ 'Case search': '问题单搜索',
36
+ 'Select an option': '选择选项',
37
+ 'Preferred language will impact future cases, not existing ones.': '首选语言将影响未来的问题单,对现有的问题单没有影响。',
38
+ 'Notification emails': '通知电子邮件',
39
+ 'Add, edit or remove emails from your account that were added to receive notifications.': '添加、编辑或删除添加到接收通知的帐户中的电子邮件。',
40
+ 'Add an Email': '添加一个电子邮件',
41
+ 'Enter a valid email address': '输入一个有效的电子邮件地址',
42
+ 'Search for an existing email': '搜索现有电子邮件',
43
+ 'Alternate case ID': '备用问题单 ID',
44
+ 'Default case view': '默认问题单视图',
34
45
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rh-support/manage",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "description": "Customer Support Manage App",
5
5
  "author": "Jordan Eudy <jeudy100@gmail.com>",
6
6
  "homepage": "",
@@ -94,12 +94,12 @@
94
94
  "@patternfly/pfe-tabs": "1.12.3",
95
95
  "@patternfly/react-core": "4.202.16",
96
96
  "@patternfly/react-table": "4.71.16",
97
- "@rh-support/components": "1.2.7",
97
+ "@rh-support/components": "1.2.9",
98
98
  "@rh-support/configs": "0.2.8",
99
- "@rh-support/react-context": "1.0.8",
99
+ "@rh-support/react-context": "1.0.10",
100
100
  "@rh-support/types": "0.2.0",
101
- "@rh-support/user-permissions": "1.0.7",
102
- "@rh-support/utils": "1.0.5",
101
+ "@rh-support/user-permissions": "1.0.9",
102
+ "@rh-support/utils": "1.0.7",
103
103
  "@types/react-beautiful-dnd": "^13.0.0",
104
104
  "i18next": ">=17.0.1",
105
105
  "lodash": ">=4.17.15",
@@ -109,5 +109,5 @@
109
109
  "react-i18next": ">=10.11.0",
110
110
  "react-router-dom": ">=5.1.2"
111
111
  },
112
- "gitHead": "385be1a5087e7a199a974b22442a06f8ef61a06b"
112
+ "gitHead": "30ff95d969e84721b15571f7dd99a617db8956f8"
113
113
  }