@rh-support/manage 0.2.25 → 0.2.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/esm/ManageTabs.d.ts.map +1 -1
- package/lib/esm/ManageTabs.js +4 -5
- package/lib/esm/components/Configs/ConfigsTable.d.ts.map +1 -1
- package/lib/esm/components/Configs/ConfigsTable.js +2 -1
- package/lib/esm/components/ManageBookmarkedAccountsTab/ManageBookmarkedAccountsTab.d.ts.map +1 -1
- package/lib/esm/components/ManageBookmarkedAccountsTab/ManageBookmarkedAccountsTab.js +1 -1
- package/lib/esm/components/ManageBookmarkedAccountsTab/ManageGroupedBookmarkedAccountsTab.d.ts.map +1 -1
- package/lib/esm/components/ManageBookmarkedAccountsTab/ManageGroupedBookmarkedAccountsTab.js +1 -2
- package/lib/esm/components/ManagePreferences/sections/PreferencesCaseCreate.js +1 -1
- package/lib/esm/i18n/template-de.d.ts +3 -3
- package/lib/esm/i18n/template-de.js +3 -3
- package/lib/esm/i18n/template-es.d.ts +3 -3
- package/lib/esm/i18n/template-es.js +3 -3
- package/lib/esm/i18n/template-fr.d.ts +3 -3
- package/lib/esm/i18n/template-fr.js +3 -3
- package/lib/esm/i18n/template-it.d.ts +3 -3
- package/lib/esm/i18n/template-it.js +3 -3
- package/lib/esm/i18n/template-jp.d.ts +3 -3
- package/lib/esm/i18n/template-jp.js +3 -3
- package/lib/esm/i18n/template-ko.d.ts +3 -3
- package/lib/esm/i18n/template-ko.js +3 -3
- package/lib/esm/i18n/template-pt.d.ts +3 -3
- package/lib/esm/i18n/template-pt.js +3 -3
- package/lib/esm/i18n/template-ru.d.ts +3 -3
- package/lib/esm/i18n/template-ru.js +3 -3
- package/lib/esm/i18n/template-zh.d.ts +3 -3
- package/lib/esm/i18n/template-zh.js +3 -3
- package/package.json +6 -6
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ManageTabs.d.ts","sourceRoot":"","sources":["../../src/ManageTabs.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ManageTabs.d.ts","sourceRoot":"","sources":["../../src/ManageTabs.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAsBvD,UAAU,MAAM;IACZ,UAAU,EAAE,mBAAmB,CAAC,EAAE,CAAC,CAAC;CACvC;AAED,wBAAgB,UAAU,CAAC,KAAK,EAAE,MAAM,eA0JvC"}
|
package/lib/esm/ManageTabs.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ErrorBoundary, useDocumentTitle } from '@rh-support/components';
|
|
2
2
|
import { GlobalMetadataStateContext } from '@rh-support/react-context';
|
|
3
3
|
import { ability, CaseDetailsFields, resourceActions, resources } from '@rh-support/user-permissions';
|
|
4
|
-
import { CustomElements, getConfigField,
|
|
4
|
+
import { CustomElements, getConfigField, PCM_CONFIG_FIELD_TYPE, requireCustomElement } from '@rh-support/utils';
|
|
5
5
|
import map from 'lodash/map';
|
|
6
6
|
import React, { useContext } from 'react';
|
|
7
7
|
import { ConfigsTable } from './components/Configs/ConfigsTable';
|
|
@@ -23,10 +23,9 @@ export function ManageTabs(props) {
|
|
|
23
23
|
var _a, _b;
|
|
24
24
|
const history = props.routeProps.history;
|
|
25
25
|
const { groupsRoute, bookmarkedAccountsRoute, topContentRoute, notificationEmailsRoute, preferencesRoute, configsRoute, } = Routes.getPaths();
|
|
26
|
-
const { globalMetadataState: { pcmConfig
|
|
26
|
+
const { globalMetadataState: { pcmConfig }, } = useContext(GlobalMetadataStateContext);
|
|
27
27
|
const isGroupBookmarkEnabled = getConfigField(pcmConfig.data, 'isGroupBookmarkEnabled', PCM_CONFIG_FIELD_TYPE.FEATURE_FLAG);
|
|
28
28
|
const isPreferencesPageEnabled = getConfigField(pcmConfig.data, 'allowPreferencesPage', PCM_CONFIG_FIELD_TYPE.FEATURE_FLAG);
|
|
29
|
-
const pcmConfigEditorsSSOList = getFieldInParts(pcmConfig.data, 'pcmConfigEditorsSSO', PCM_CONFIG_FIELD_TYPE.STRING_COMMA_SEPERATED);
|
|
30
29
|
// Changes route and saves the current path to the url query params
|
|
31
30
|
const isOnlyBasePath = history.location.pathname === Routes.basePath;
|
|
32
31
|
useDocumentTitle(PageTitle.MANAGE);
|
|
@@ -40,7 +39,7 @@ export function ManageTabs(props) {
|
|
|
40
39
|
const canManageBookmarkAccounts = ability.can(resourceActions.CREATE, resources.BOOKMARK_ACCOUNTS) && canViewManageTab;
|
|
41
40
|
const canViewEmailNotificationTab = ability.can(resourceActions.READ, resources.NOTIFICATION_EMAIL);
|
|
42
41
|
const canAddCustomNotification = ability.can(resourceActions.PATCH, resources.CASE_DETAILS, CaseDetailsFields.CASE_DETAILS_SEND_NOTIFICATIONS);
|
|
43
|
-
const
|
|
42
|
+
const canViewConfigsTab = ability.can(resourceActions.READ, resources.APP_INTERNAL_CONFIGS);
|
|
44
43
|
const tabsToRender = [];
|
|
45
44
|
canManageBookmarkAccounts &&
|
|
46
45
|
tabsToRender.push({
|
|
@@ -98,7 +97,7 @@ export function ManageTabs(props) {
|
|
|
98
97
|
},
|
|
99
98
|
component: React.createElement(TopContentManagement, null),
|
|
100
99
|
});
|
|
101
|
-
|
|
100
|
+
canViewConfigsTab &&
|
|
102
101
|
tabsToRender.push({
|
|
103
102
|
title: 'Internal Configs',
|
|
104
103
|
key: 'pcm-internal-configs-tab',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConfigsTable.d.ts","sourceRoot":"","sources":["../../../../src/components/Configs/ConfigsTable.tsx"],"names":[],"mappings":"AAaA,eAAO,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"ConfigsTable.d.ts","sourceRoot":"","sources":["../../../../src/components/Configs/ConfigsTable.tsx"],"names":[],"mappings":"AAaA,eAAO,MAAM,YAAY,mBA2JxB,CAAC"}
|
|
@@ -117,7 +117,8 @@ export const ConfigsTable = () => {
|
|
|
117
117
|
"Edit app configs that used as flags or other settings here."),
|
|
118
118
|
React.createElement("div", { className: "toolbar" },
|
|
119
119
|
React.createElement("div", { className: "toolbar-right" },
|
|
120
|
-
React.createElement("label", { htmlFor: "search-config-filelds" },
|
|
120
|
+
React.createElement("label", { htmlFor: "search-config-filelds" },
|
|
121
|
+
React.createElement(Trans, null, "Filter by")),
|
|
121
122
|
React.createElement(SearchInput, { className: "pf-u-flex-grow-1 pf-c-search-input pf-u-background-color-100", id: "search-config-filelds", placeholder: "Search for an existing config name", value: searchString, onChange: onSearchChange, onClear: () => onSearchChange(''), "aria-label": "Search for an existing config name" }))),
|
|
122
123
|
React.createElement(ErrorBoundary, { errorMsgInfo: { message: 'There was an error loading config page' } },
|
|
123
124
|
React.createElement(ManageTable, { sortInfo: { column: 'created-date', direction: 'desc' }, ariaLabel: 'Table to manage pcm config', columns: columns, data: filteredValues, isFetching: isFetching, isError: false, errorTitle: 'Config table error', errorComponent: React.createElement(Trans, null, "Could not get configs"), keepPageNumberOnDataChange: keepPageNumberOnDataChange }))));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ManageBookmarkedAccountsTab.d.ts","sourceRoot":"","sources":["../../../../src/components/ManageBookmarkedAccountsTab/ManageBookmarkedAccountsTab.tsx"],"names":[],"mappings":"AAYA,UAAU,MAAM;IACZ,yBAAyB,EAAE,OAAO,CAAC;CACtC;AAED,wBAAgB,2BAA2B,CAAC,EAAE,yBAAyB,EAAE,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"ManageBookmarkedAccountsTab.d.ts","sourceRoot":"","sources":["../../../../src/components/ManageBookmarkedAccountsTab/ManageBookmarkedAccountsTab.tsx"],"names":[],"mappings":"AAYA,UAAU,MAAM;IACZ,yBAAyB,EAAE,OAAO,CAAC;CACtC;AAED,wBAAgB,2BAA2B,CAAC,EAAE,yBAAyB,EAAE,EAAE,MAAM,eA8HhF"}
|
|
@@ -64,7 +64,7 @@ export function ManageBookmarkedAccountsTab({ canManageBookmarkAccounts }) {
|
|
|
64
64
|
React.createElement("header", null,
|
|
65
65
|
React.createElement("p", null,
|
|
66
66
|
React.createElement("h2", null, t('Bookmarks')),
|
|
67
|
-
|
|
67
|
+
React.createElement(Trans, { i18nKey: "i18AddEditRemoveBookmark" }, "Add, edit or remove bookmarks to customize your search experience on the portal."))),
|
|
68
68
|
React.createElement("div", { className: "toolbar" },
|
|
69
69
|
React.createElement("form", { className: "toolbar-left" },
|
|
70
70
|
React.createElement("label", { htmlFor: "bookmark-account-selector" },
|
package/lib/esm/components/ManageBookmarkedAccountsTab/ManageGroupedBookmarkedAccountsTab.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ManageGroupedBookmarkedAccountsTab.d.ts","sourceRoot":"","sources":["../../../../src/components/ManageBookmarkedAccountsTab/ManageGroupedBookmarkedAccountsTab.tsx"],"names":[],"mappings":"AA0CA,UAAU,MAAM;IACZ,yBAAyB,EAAE,OAAO,CAAC;CACtC;AAED,wBAAgB,kCAAkC,CAAC,EAAE,yBAAyB,EAAE,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"ManageGroupedBookmarkedAccountsTab.d.ts","sourceRoot":"","sources":["../../../../src/components/ManageBookmarkedAccountsTab/ManageGroupedBookmarkedAccountsTab.tsx"],"names":[],"mappings":"AA0CA,UAAU,MAAM;IACZ,yBAAyB,EAAE,OAAO,CAAC;CACtC;AAED,wBAAgB,kCAAkC,CAAC,EAAE,yBAAyB,EAAE,EAAE,MAAM,eAwXvF"}
|
package/lib/esm/components/ManageBookmarkedAccountsTab/ManageGroupedBookmarkedAccountsTab.js
CHANGED
|
@@ -236,8 +236,7 @@ export function ManageGroupedBookmarkedAccountsTab({ canManageBookmarkAccounts }
|
|
|
236
236
|
React.createElement("header", null,
|
|
237
237
|
React.createElement("h2", null, t('Bookmarks')),
|
|
238
238
|
React.createElement("p", null,
|
|
239
|
-
|
|
240
|
-
' ',
|
|
239
|
+
React.createElement(Trans, { i18nKey: "i18AddEditRemoveBookmark" }, "Add, edit or remove bookmarks to customize your search experience on the portal."),
|
|
241
240
|
loggedInUserRights.data.isInternal() && (React.createElement(Popover, { "aria-label": "Cluster Id Info", position: PopoverPosition.right, bodyContent: React.createElement("p", null,
|
|
242
241
|
React.createElement(Trans, null, " Learn how to create and manage"),
|
|
243
242
|
' ',
|
|
@@ -89,7 +89,7 @@ export function PreferencesCaseCreate(props) {
|
|
|
89
89
|
React.createElement(CardBody, null,
|
|
90
90
|
React.createElement("form", null,
|
|
91
91
|
React.createElement("div", { className: "form-group" },
|
|
92
|
-
React.createElement(PreferenceSelect, { label:
|
|
92
|
+
React.createElement(PreferenceSelect, { label: t('i18nPreferredLanguage', 'Preferred case language'), id: preferredLangTitleId, onSelect: onPreferredLanguageSelect, selections: originalPreferredLanguage }, Object.keys(languageConst).map((option, index) => (React.createElement(SelectOption, { key: index, value: languageConst[option] })))),
|
|
93
93
|
React.createElement("p", { className: "form-instructions" },
|
|
94
94
|
React.createElement(Trans, null, "Preferred language will impact future cases, not existing ones."))),
|
|
95
95
|
React.createElement("div", { className: "form-group" },
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
Group: string;
|
|
17
17
|
'No results found': string;
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': string;
|
|
19
|
-
|
|
19
|
+
Add: string;
|
|
20
20
|
'Auto-restore my saved search': string;
|
|
21
21
|
'Auto-restore last search': string;
|
|
22
22
|
'Auto-save selected table columns': string;
|
|
@@ -24,8 +24,8 @@ declare const _default: {
|
|
|
24
24
|
'Comment signature': string;
|
|
25
25
|
'Share hostnames with Red Hat': string;
|
|
26
26
|
'Case information': string;
|
|
27
|
-
'Case
|
|
28
|
-
|
|
27
|
+
'Case create': string;
|
|
28
|
+
i18nPreferredLanguage: string;
|
|
29
29
|
'Default group': string;
|
|
30
30
|
Preferences: string;
|
|
31
31
|
'Setting preferences will personalize your support case experience to best suit your needs.': string;
|
|
@@ -16,7 +16,7 @@ export default {
|
|
|
16
16
|
Group: 'Gruppe',
|
|
17
17
|
'No results found': 'Keine Ergebnisse gefunden',
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': 'Es sind keine Ergebnisse zum Anzeigen vorhanden. Versuchen Sie, eine Gruppe zum Anzeigen von Accounts auszuwählen.',
|
|
19
|
-
|
|
19
|
+
Add: 'Hinzufügen',
|
|
20
20
|
//Preferences Page
|
|
21
21
|
'Auto-restore my saved search': 'Meine gespeicherte Suche automatisch wiederherstellen',
|
|
22
22
|
'Auto-restore last search': 'Letzte Suche automatisch wiederherstellen',
|
|
@@ -25,8 +25,8 @@ export default {
|
|
|
25
25
|
'Comment signature': 'Kommentarsignatur',
|
|
26
26
|
'Share hostnames with Red Hat': 'Hostnamen für Red Hat freigeben',
|
|
27
27
|
'Case information': 'Fallinformationen',
|
|
28
|
-
'Case
|
|
29
|
-
|
|
28
|
+
'Case create': 'Fall erstellen',
|
|
29
|
+
i18nPreferredLanguage: 'Bevorzugte Sprache',
|
|
30
30
|
'Default group': 'Standardgruppe',
|
|
31
31
|
Preferences: 'Präferenzen',
|
|
32
32
|
'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.',
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
Group: string;
|
|
17
17
|
'No results found': string;
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': string;
|
|
19
|
-
|
|
19
|
+
Add: string;
|
|
20
20
|
'Auto-restore my saved search': string;
|
|
21
21
|
'Auto-restore last search': string;
|
|
22
22
|
'Auto-save selected table columns': string;
|
|
@@ -24,8 +24,8 @@ declare const _default: {
|
|
|
24
24
|
'Comment signature': string;
|
|
25
25
|
'Share hostnames with Red Hat': string;
|
|
26
26
|
'Case information': string;
|
|
27
|
-
'Case
|
|
28
|
-
|
|
27
|
+
'Case create': string;
|
|
28
|
+
i18nPreferredLanguage: string;
|
|
29
29
|
'Default group': string;
|
|
30
30
|
Preferences: string;
|
|
31
31
|
'Setting preferences will personalize your support case experience to best suit your needs.': string;
|
|
@@ -16,7 +16,7 @@ export default {
|
|
|
16
16
|
Group: 'Grupo',
|
|
17
17
|
'No results found': 'No se encontraron resultados',
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': 'No hay resultados que mostrar. Intenta seleccionar un grupo para ver las cuentas.',
|
|
19
|
-
|
|
19
|
+
Add: 'Agregar',
|
|
20
20
|
//Preferences Page
|
|
21
21
|
'Auto-restore my saved search': 'Restaurar automáticamente mi búsqueda guardada',
|
|
22
22
|
'Auto-restore last search': 'Restaurar automáticamente la última búsqueda',
|
|
@@ -25,8 +25,8 @@ export default {
|
|
|
25
25
|
'Comment signature': 'Firma de comentarios',
|
|
26
26
|
'Share hostnames with Red Hat': 'Compartir nombres de host con Red Hat',
|
|
27
27
|
'Case information': 'Información del caso',
|
|
28
|
-
'Case
|
|
29
|
-
|
|
28
|
+
'Case create': 'Crear un caso',
|
|
29
|
+
i18nPreferredLanguage: 'Idioma preferido',
|
|
30
30
|
'Default group': 'Grupo predeterminado',
|
|
31
31
|
Preferences: 'Preferencias',
|
|
32
32
|
'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.',
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
Group: string;
|
|
17
17
|
'No results found': string;
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': string;
|
|
19
|
-
|
|
19
|
+
Add: string;
|
|
20
20
|
'Auto-restore my saved search': string;
|
|
21
21
|
'Auto-restore last search': string;
|
|
22
22
|
'Auto-save selected table columns': string;
|
|
@@ -24,8 +24,8 @@ declare const _default: {
|
|
|
24
24
|
'Comment signature': string;
|
|
25
25
|
'Share hostnames with Red Hat': string;
|
|
26
26
|
'Case information': string;
|
|
27
|
-
'Case
|
|
28
|
-
|
|
27
|
+
'Case create': string;
|
|
28
|
+
i18nPreferredLanguage: string;
|
|
29
29
|
'Default group': string;
|
|
30
30
|
Preferences: string;
|
|
31
31
|
'Setting preferences will personalize your support case experience to best suit your needs.': string;
|
|
@@ -16,7 +16,7 @@ export default {
|
|
|
16
16
|
Group: 'Groupe',
|
|
17
17
|
'No results found': 'Aucun résultat trouvé',
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': "Il n'y a pas de résultats à afficher. Essayez de sélectionner un groupe pour afficher les comptes.",
|
|
19
|
-
|
|
19
|
+
Add: 'Ajouter',
|
|
20
20
|
//Preferences Page
|
|
21
21
|
'Auto-restore my saved search': 'Restaurer automatiquement ma recherche sauvegardée',
|
|
22
22
|
'Auto-restore last search': 'Rétablissement automatique de la dernière recherche',
|
|
@@ -25,8 +25,8 @@ export default {
|
|
|
25
25
|
'Comment signature': 'Signature des commentaires',
|
|
26
26
|
'Share hostnames with Red Hat': "Partager les noms d'hôtes avec Red Hat",
|
|
27
27
|
'Case information': 'Information sur le cas',
|
|
28
|
-
'Case
|
|
29
|
-
|
|
28
|
+
'Case create': 'Créer un cas',
|
|
29
|
+
i18nPreferredLanguage: 'Langue préférée',
|
|
30
30
|
'Default group': 'Groupe par défaut',
|
|
31
31
|
Preferences: 'Préférences',
|
|
32
32
|
'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.",
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
Group: string;
|
|
17
17
|
'No results found': string;
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': string;
|
|
19
|
-
|
|
19
|
+
Add: string;
|
|
20
20
|
'Auto-restore my saved search': string;
|
|
21
21
|
'Auto-restore last search': string;
|
|
22
22
|
'Auto-save selected table columns': string;
|
|
@@ -24,8 +24,8 @@ declare const _default: {
|
|
|
24
24
|
'Comment signature': string;
|
|
25
25
|
'Share hostnames with Red Hat': string;
|
|
26
26
|
'Case information': string;
|
|
27
|
-
'Case
|
|
28
|
-
|
|
27
|
+
'Case create': string;
|
|
28
|
+
i18nPreferredLanguage: string;
|
|
29
29
|
'Default group': string;
|
|
30
30
|
Preferences: string;
|
|
31
31
|
'Setting preferences will personalize your support case experience to best suit your needs.': string;
|
|
@@ -16,7 +16,7 @@ export default {
|
|
|
16
16
|
Group: 'Gruppo',
|
|
17
17
|
'No results found': 'Nessun risultato trovato',
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': 'Non ci sono risultati da visualizzare. Prova a selezionare un gruppo per visualizzare i conti.',
|
|
19
|
-
|
|
19
|
+
Add: 'Aggiungi',
|
|
20
20
|
//Preferences Page
|
|
21
21
|
'Auto-restore my saved search': 'Ripristinare automaticamente la mia ricerca salvata',
|
|
22
22
|
'Auto-restore last search': 'Ripristino automatico ultima ricerca',
|
|
@@ -25,8 +25,8 @@ export default {
|
|
|
25
25
|
'Comment signature': 'Firma di commento',
|
|
26
26
|
'Share hostnames with Red Hat': 'Condividi hostname con Red Hat',
|
|
27
27
|
'Case information': 'Informazioni sul caso',
|
|
28
|
-
'Case
|
|
29
|
-
|
|
28
|
+
'Case create': 'Crea caso',
|
|
29
|
+
i18nPreferredLanguage: 'Lingua preferita',
|
|
30
30
|
'Default group': 'Gruppo predefinito',
|
|
31
31
|
Preferences: 'Preferenze',
|
|
32
32
|
'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.",
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
'To request control over who can access cases under a specific group, please contact your Technical Account Manager or Red Hat Technical Support for assistance.': string;
|
|
17
17
|
Group: string;
|
|
18
18
|
'No results found': string;
|
|
19
|
-
|
|
19
|
+
Add: string;
|
|
20
20
|
'Auto-restore my saved search': string;
|
|
21
21
|
'Auto-restore last search': string;
|
|
22
22
|
'Auto-save selected table columns': string;
|
|
@@ -24,8 +24,8 @@ declare const _default: {
|
|
|
24
24
|
'Comment signature': string;
|
|
25
25
|
'Share hostnames with Red Hat': string;
|
|
26
26
|
'Case information': string;
|
|
27
|
-
'Case
|
|
28
|
-
|
|
27
|
+
'Case create': string;
|
|
28
|
+
i18nPreferredLanguage: string;
|
|
29
29
|
'Default group': string;
|
|
30
30
|
Preferences: string;
|
|
31
31
|
'Setting preferences will personalize your support case experience to best suit your needs.': string;
|
|
@@ -16,7 +16,7 @@ export default {
|
|
|
16
16
|
'To request control over who can access cases under a specific group, please contact your Technical Account Manager or Red Hat Technical Support for assistance.': '特定グループのケースに対するアクセス管理権限を依頼するには、テクニカルアカウントマネージャーか、Red Hat テクニカルサポートまでお問い合わせください。',
|
|
17
17
|
Group: 'グループ',
|
|
18
18
|
'No results found': '結果が見つかりませんでした',
|
|
19
|
-
|
|
19
|
+
Add: '追加',
|
|
20
20
|
//Preferences Page
|
|
21
21
|
'Auto-restore my saved search': '保存した検索の自動復元',
|
|
22
22
|
'Auto-restore last search': '自動復元の最後の検索',
|
|
@@ -25,8 +25,8 @@ export default {
|
|
|
25
25
|
'Comment signature': 'コメント署名',
|
|
26
26
|
'Share hostnames with Red Hat': 'ホスト名を Red Hat と共有する',
|
|
27
27
|
'Case information': 'ケース情報',
|
|
28
|
-
'Case
|
|
29
|
-
|
|
28
|
+
'Case create': 'ケースの作成',
|
|
29
|
+
i18nPreferredLanguage: '言語の設定',
|
|
30
30
|
'Default group': 'デフォルトのグループ',
|
|
31
31
|
Preferences: '設定',
|
|
32
32
|
'Setting preferences will personalize your support case experience to best suit your needs.': '設定を行うと、お客様のニーズに最適になるように、サポートケースエクスペリエンスがカスタマイズされます。',
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
Group: string;
|
|
17
17
|
'No results found': string;
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': string;
|
|
19
|
-
|
|
19
|
+
Add: string;
|
|
20
20
|
'Auto-restore my saved search': string;
|
|
21
21
|
'Auto-restore last search': string;
|
|
22
22
|
'Auto-save selected table columns': string;
|
|
@@ -24,8 +24,8 @@ declare const _default: {
|
|
|
24
24
|
'Comment signature': string;
|
|
25
25
|
'Share hostnames with Red Hat': string;
|
|
26
26
|
'Case information': string;
|
|
27
|
-
'Case
|
|
28
|
-
|
|
27
|
+
'Case create': string;
|
|
28
|
+
i18nPreferredLanguage: string;
|
|
29
29
|
'Default group': string;
|
|
30
30
|
Preferences: string;
|
|
31
31
|
'Setting preferences will personalize your support case experience to best suit your needs.': string;
|
|
@@ -16,7 +16,7 @@ export default {
|
|
|
16
16
|
Group: '그룹',
|
|
17
17
|
'No results found': '검색 결과가 없습니다',
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': '표시할 결과가 없습니다. 계정을 보려면 그룹을 선택하십시오.',
|
|
19
|
-
|
|
19
|
+
Add: '추가',
|
|
20
20
|
//Preferences Page
|
|
21
21
|
'Auto-restore my saved search': '저장된 검색 자동 복원',
|
|
22
22
|
'Auto-restore last search': '마지막 검색 자동 복원',
|
|
@@ -25,8 +25,8 @@ export default {
|
|
|
25
25
|
'Comment signature': '댓글 서명',
|
|
26
26
|
'Share hostnames with Red Hat': 'Red Hat과 호스트 이름을 공유',
|
|
27
27
|
'Case information': '케이스 정보',
|
|
28
|
-
'Case
|
|
29
|
-
|
|
28
|
+
'Case create': '케이스 만들기',
|
|
29
|
+
i18nPreferredLanguage: '언어 설정',
|
|
30
30
|
'Default group': '기본 그룹',
|
|
31
31
|
Preferences: '환경 설정',
|
|
32
32
|
'Setting preferences will personalize your support case experience to best suit your needs.': '환경을 설정하면 고객의 요구에 가장 적합한 지원 케이스 환경을 사용자 지정할 수 있습니다.',
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
Group: string;
|
|
17
17
|
'No results found': string;
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': string;
|
|
19
|
-
|
|
19
|
+
Add: string;
|
|
20
20
|
'Auto-restore my saved search': string;
|
|
21
21
|
'Auto-restore last search': string;
|
|
22
22
|
'Auto-save selected table columns': string;
|
|
@@ -24,8 +24,8 @@ declare const _default: {
|
|
|
24
24
|
'Comment signature': string;
|
|
25
25
|
'Share hostnames with Red Hat': string;
|
|
26
26
|
'Case information': string;
|
|
27
|
-
'Case
|
|
28
|
-
|
|
27
|
+
'Case create': string;
|
|
28
|
+
i18nPreferredLanguage: string;
|
|
29
29
|
'Default group': string;
|
|
30
30
|
Preferences: string;
|
|
31
31
|
'Setting preferences will personalize your support case experience to best suit your needs.': string;
|
|
@@ -16,7 +16,7 @@ export default {
|
|
|
16
16
|
Group: 'Grupo',
|
|
17
17
|
'No results found': 'Nenhum resultado encontrado',
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': 'Não há resultados para exibir. Tente selecionar um grupo para visualizar contas.',
|
|
19
|
-
|
|
19
|
+
Add: 'Adicionar',
|
|
20
20
|
//Preferences Page
|
|
21
21
|
'Auto-restore my saved search': 'Auto-restaurar minha busca salva',
|
|
22
22
|
'Auto-restore last search': 'Restaurar automaticamente última pesquisa',
|
|
@@ -25,8 +25,8 @@ export default {
|
|
|
25
25
|
'Comment signature': 'Assinatura do comentário',
|
|
26
26
|
'Share hostnames with Red Hat': 'Compartilhar os nomes de host com a Red Hat',
|
|
27
27
|
'Case information': 'Informações do caso',
|
|
28
|
-
'Case
|
|
29
|
-
|
|
28
|
+
'Case create': 'Criação de caso',
|
|
29
|
+
i18nPreferredLanguage: 'Idioma preferencial',
|
|
30
30
|
'Default group': 'Grupo padrão',
|
|
31
31
|
Preferences: 'Preferências',
|
|
32
32
|
'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.',
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
Group: string;
|
|
17
17
|
'No results found': string;
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': string;
|
|
19
|
-
|
|
19
|
+
Add: string;
|
|
20
20
|
'Auto-restore my saved search': string;
|
|
21
21
|
'Auto-restore last search': string;
|
|
22
22
|
'Auto-save selected table columns': string;
|
|
@@ -24,8 +24,8 @@ declare const _default: {
|
|
|
24
24
|
'Comment signature': string;
|
|
25
25
|
'Share hostnames with Red Hat': string;
|
|
26
26
|
'Case information': string;
|
|
27
|
-
'Case
|
|
28
|
-
|
|
27
|
+
'Case create': string;
|
|
28
|
+
i18nPreferredLanguage: string;
|
|
29
29
|
'Default group': string;
|
|
30
30
|
Preferences: string;
|
|
31
31
|
'Setting preferences will personalize your support case experience to best suit your needs.': string;
|
|
@@ -16,7 +16,7 @@ export default {
|
|
|
16
16
|
Group: 'Группа',
|
|
17
17
|
'No results found': 'Результаты не найдены',
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': 'Нет результатов. Попробуйте выбрать группу для просмотра учетных записей.',
|
|
19
|
-
|
|
19
|
+
Add: 'добавить',
|
|
20
20
|
//Preferences Page
|
|
21
21
|
'Auto-restore my saved search': 'Автовосстановление моего сохраненного поиска',
|
|
22
22
|
'Auto-restore last search': 'Автовосстановление последнего поиска',
|
|
@@ -25,8 +25,8 @@ export default {
|
|
|
25
25
|
'Comment signature': 'Подпись комментария',
|
|
26
26
|
'Share hostnames with Red Hat': 'Отправлять имена хостов в Red Hat',
|
|
27
27
|
'Case information': 'Информация об обращении',
|
|
28
|
-
'Case
|
|
29
|
-
|
|
28
|
+
'Case create': 'Создание обращения',
|
|
29
|
+
i18nPreferredLanguage: 'Предпочитаемый язык',
|
|
30
30
|
'Default group': 'Группа по умолчанию',
|
|
31
31
|
Preferences: 'Настройки',
|
|
32
32
|
'Setting preferences will personalize your support case experience to best suit your needs.': 'Задайте настройки, чтобы эффективнее работать с обращениями в службу поддержки.',
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
Group: string;
|
|
17
17
|
'No results found': string;
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': string;
|
|
19
|
-
|
|
19
|
+
Add: string;
|
|
20
20
|
'Auto-restore my saved search': string;
|
|
21
21
|
'Auto-restore last search': string;
|
|
22
22
|
'Auto-save selected table columns': string;
|
|
@@ -24,8 +24,8 @@ declare const _default: {
|
|
|
24
24
|
'Comment signature': string;
|
|
25
25
|
'Share hostnames with Red Hat': string;
|
|
26
26
|
'Case information': string;
|
|
27
|
-
'Case
|
|
28
|
-
|
|
27
|
+
'Case create': string;
|
|
28
|
+
i18nPreferredLanguage: string;
|
|
29
29
|
'Default group': string;
|
|
30
30
|
Preferences: string;
|
|
31
31
|
'Setting preferences will personalize your support case experience to best suit your needs.': string;
|
|
@@ -16,7 +16,7 @@ export default {
|
|
|
16
16
|
Group: '组',
|
|
17
17
|
'No results found': '未找到结果',
|
|
18
18
|
'There are no results to display. Try selecting a group to view accounts.': '没有可供显示的结果。尝试选择一个组以查看帐户。',
|
|
19
|
-
|
|
19
|
+
Add: '添加',
|
|
20
20
|
//Preferences Page
|
|
21
21
|
'Auto-restore my saved search': '自动恢复我已保存的搜索',
|
|
22
22
|
'Auto-restore last search': '自动恢复上次搜索',
|
|
@@ -25,8 +25,8 @@ export default {
|
|
|
25
25
|
'Comment signature': '批注签名',
|
|
26
26
|
'Share hostnames with Red Hat': '与红帽共享主机名',
|
|
27
27
|
'Case information': '问题单信息',
|
|
28
|
-
'Case
|
|
29
|
-
|
|
28
|
+
'Case create': '创建问题单',
|
|
29
|
+
i18nPreferredLanguage: '首选语言',
|
|
30
30
|
'Default group': '默认组',
|
|
31
31
|
Preferences: '首选项',
|
|
32
32
|
'Setting preferences will personalize your support case experience to best suit your needs.': '通过设置首选项,可以根据您的具体情况获得更好的支持体验。',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/manage",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.29",
|
|
4
4
|
"description": "Customer Support Manage App",
|
|
5
5
|
"author": "Jordan Eudy <jeudy100@gmail.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -97,11 +97,11 @@
|
|
|
97
97
|
"@patternfly/react-core": "4.128.2",
|
|
98
98
|
"@patternfly/react-table": "4.26.7",
|
|
99
99
|
"@rh-support/api": "0.3.9",
|
|
100
|
-
"@rh-support/components": "1.1.
|
|
101
|
-
"@rh-support/configs": "0.2.
|
|
102
|
-
"@rh-support/react-context": "0.2.
|
|
100
|
+
"@rh-support/components": "1.1.20",
|
|
101
|
+
"@rh-support/configs": "0.2.4",
|
|
102
|
+
"@rh-support/react-context": "0.2.22",
|
|
103
103
|
"@rh-support/types": "0.2.0",
|
|
104
|
-
"@rh-support/user-permissions": "0.2.
|
|
104
|
+
"@rh-support/user-permissions": "0.2.15",
|
|
105
105
|
"@rh-support/utils": "0.2.13",
|
|
106
106
|
"@types/react-beautiful-dnd": "^13.0.0",
|
|
107
107
|
"i18next": ">=17.0.1",
|
|
@@ -113,5 +113,5 @@
|
|
|
113
113
|
"react-i18next": ">=10.11.0",
|
|
114
114
|
"react-router-dom": ">=5.1.2"
|
|
115
115
|
},
|
|
116
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "cdaf99c40c84eb9dbf63b52cc8c227e1e3d131a4"
|
|
117
117
|
}
|