@rh-support/troubleshoot 2.2.61 → 2.2.64
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/README.md +2 -0
- package/lib/esm/components/CaseEditView/Case.d.ts.map +1 -1
- package/lib/esm/components/CaseEditView/Case.js +3 -1
- package/lib/esm/components/CaseEditView/Tabs/CaseDiscussion/CaseDiscussion.js +1 -1
- package/lib/esm/components/CaseManagement/CaseManagement.js +1 -1
- package/lib/esm/components/SessionRestore/SessionRestore.d.ts.map +1 -1
- package/lib/esm/components/SessionRestore/SessionRestore.js +2 -1
- package/lib/esm/components/SubmitCase/SubmitCase.js +5 -2
- package/lib/esm/components/shared/fileUpload/useFileUploader.d.ts.map +1 -1
- package/lib/esm/components/shared/fileUpload/useFileUploader.js +2 -1
- package/lib/esm/components/wizardLayout/GlobalTroubleshootEffects.d.ts.map +1 -1
- package/lib/esm/components/wizardLayout/GlobalTroubleshootEffects.js +2 -1
- package/lib/esm/i18n/template-de.d.ts +52 -0
- package/lib/esm/i18n/template-de.d.ts.map +1 -1
- package/lib/esm/i18n/template-de.js +55 -0
- package/lib/esm/i18n/template-es.d.ts +51 -0
- package/lib/esm/i18n/template-es.d.ts.map +1 -1
- package/lib/esm/i18n/template-es.js +53 -0
- package/lib/esm/i18n/template-fr.d.ts +6 -0
- package/lib/esm/i18n/template-fr.d.ts.map +1 -1
- package/lib/esm/i18n/template-fr.js +6 -0
- package/lib/esm/i18n/template-it.d.ts +52 -0
- package/lib/esm/i18n/template-it.d.ts.map +1 -1
- package/lib/esm/i18n/template-it.js +54 -0
- package/lib/esm/i18n/template-jp.d.ts +8 -0
- package/lib/esm/i18n/template-jp.d.ts.map +1 -1
- package/lib/esm/i18n/template-jp.js +8 -0
- package/lib/esm/i18n/template-ko.d.ts +8 -0
- package/lib/esm/i18n/template-ko.d.ts.map +1 -1
- package/lib/esm/i18n/template-ko.js +8 -0
- package/lib/esm/i18n/template-pt.d.ts +50 -0
- package/lib/esm/i18n/template-pt.d.ts.map +1 -1
- package/lib/esm/i18n/template-pt.js +53 -0
- package/lib/esm/i18n/template-zh.d.ts +8 -0
- package/lib/esm/i18n/template-zh.d.ts.map +1 -1
- package/lib/esm/i18n/template-zh.js +8 -0
- package/lib/esm/reducers/CaseReducer.d.ts.map +1 -1
- package/lib/esm/reducers/CaseReducer.js +7 -1
- package/lib/esm/scss/_pf-overrides.scss +5 -1
- package/package.json +10 -13
package/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Case.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseEditView/Case.tsx"],"names":[],"mappings":"AAgBA,OAAO,EAAS,mBAAmB,EAAiD,MAAM,kBAAkB,CAAC;AAmB7G,UAAU,MAAM;IACZ,UAAU,EAAE,mBAAmB,CAAC;CACnC;AAED,MAAM,CAAC,OAAO,UAAU,IAAI,CAAC,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"Case.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseEditView/Case.tsx"],"names":[],"mappings":"AAgBA,OAAO,EAAS,mBAAmB,EAAiD,MAAM,kBAAkB,CAAC;AAmB7G,UAAU,MAAM;IACZ,UAAU,EAAE,mBAAmB,CAAC;CACnC;AAED,MAAM,CAAC,OAAO,UAAU,IAAI,CAAC,KAAK,EAAE,MAAM,eAiMzC"}
|
|
@@ -116,7 +116,9 @@ export default function Case(props) {
|
|
|
116
116
|
canReadCase &&
|
|
117
117
|
(!isFetchingCaseDetails || !isEmpty(product)) &&
|
|
118
118
|
!isFetchingCaseDetailsError && (React.createElement(React.Fragment, null,
|
|
119
|
-
React.createElement(ErrorBoundary, { errorMsgInfo:
|
|
119
|
+
React.createElement(ErrorBoundary, { errorMsgInfo: {
|
|
120
|
+
message: t('There was an error loading cases. Please try refreshing the page.'),
|
|
121
|
+
} },
|
|
120
122
|
React.createElement(CaseOverview, { caseNumber: caseNumber, tabsRef: caseDetailsTabsRef })),
|
|
121
123
|
React.createElement(Switch, null,
|
|
122
124
|
React.createElement(Route, { path: `${path}/:activeTab?` },
|
|
@@ -12,11 +12,11 @@ import { AlertMessage, AlertType, Dropdown, ErrorBoundary, LoadingIndicator, Mul
|
|
|
12
12
|
import { useGlobalStateContext } from '@rh-support/react-context';
|
|
13
13
|
import { AbilityContext, CaseDetailsFields, resourceActions, resources } from '@rh-support/user-permissions';
|
|
14
14
|
import { getDropdownBtnPlaceholder, getUrlParsedParams, scrollIntoView, toOption, toOptions } from '@rh-support/utils';
|
|
15
|
-
import { isEqual } from 'lodash';
|
|
16
15
|
import cloneDeep from 'lodash/cloneDeep';
|
|
17
16
|
import filter from 'lodash/filter';
|
|
18
17
|
import findIndex from 'lodash/findIndex';
|
|
19
18
|
import isEmpty from 'lodash/isEmpty';
|
|
19
|
+
import isEqual from 'lodash/isEqual';
|
|
20
20
|
import Mark from 'mark.js';
|
|
21
21
|
import React, { useContext, useEffect, useRef, useState } from 'react';
|
|
22
22
|
import { Trans, useTranslation } from 'react-i18next';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Flex, FlexItem } from '@patternfly/react-core';
|
|
2
2
|
import { useGlobalStateContext } from '@rh-support/react-context';
|
|
3
3
|
import { isSpecialSupportOfferingEnabled } from '@rh-support/utils';
|
|
4
|
-
import
|
|
4
|
+
import isEqual from 'lodash/isEqual';
|
|
5
5
|
import React from 'react';
|
|
6
6
|
import { useCaseDispatch, useCaseSelector } from '../../context/CaseContext';
|
|
7
7
|
import { setCaseDetails } from '../../reducers/CaseReducer';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SessionRestore.d.ts","sourceRoot":"","sources":["../../../../src/components/SessionRestore/SessionRestore.tsx"],"names":[],"mappings":"AAWA,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAQvD,OAAO,EAGH,eAAe,EAElB,MAAM,iCAAiC,CAAC;AAiBzC,UAAU,MAAM;IACZ,UAAU,EAAE,mBAAmB,CAAC,eAAe,CAAC,CAAC;CACpD;AAED,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"SessionRestore.d.ts","sourceRoot":"","sources":["../../../../src/components/SessionRestore/SessionRestore.tsx"],"names":[],"mappings":"AAWA,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAQvD,OAAO,EAGH,eAAe,EAElB,MAAM,iCAAiC,CAAC;AAiBzC,UAAU,MAAM;IACZ,UAAU,EAAE,mBAAmB,CAAC,eAAe,CAAC,CAAC;CACpD;AAED,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,eA8U3C"}
|
|
@@ -91,6 +91,7 @@ export function SessionRestore(props) {
|
|
|
91
91
|
userAgent,
|
|
92
92
|
originatingSystem: userAgent,
|
|
93
93
|
referrerUrl: (caseDetails.referrer || referrerUrl).substring(0, SESSION_REFERRER_URL_LIMIT),
|
|
94
|
+
isInternal: loggedInUserRights.data.isInternal(),
|
|
94
95
|
};
|
|
95
96
|
!sessionRestore.sessionCreationStatus.isCreating &&
|
|
96
97
|
!sessionRestore.sessionCreationStatus.isError &&
|
|
@@ -141,7 +142,7 @@ export function SessionRestore(props) {
|
|
|
141
142
|
: userAgent;
|
|
142
143
|
let session = {
|
|
143
144
|
userAgent,
|
|
144
|
-
originatingSystem,
|
|
145
|
+
originatingSystem: originatingSystem,
|
|
145
146
|
caseCreationError: caseCreation500ErrorStatus,
|
|
146
147
|
};
|
|
147
148
|
// PCM-12337 - Moved the session patch call to submit case function in CaseReducer.ts
|
|
@@ -142,10 +142,13 @@ export default function SubmitCase(props) {
|
|
|
142
142
|
React.createElement("div", null,
|
|
143
143
|
React.createElement(ActionList, null,
|
|
144
144
|
React.createElement(ActionListItem, null,
|
|
145
|
-
React.createElement(Button, { component: "a", href: `${getRedhatDotComHost(Env.getEnvName())}/wapps/ugc/protected/${'personalInfo.html'}`, target: "_blank", variant: "secondary", "data-tracking-id": "get-support-update-info", className: "update-info-button" },
|
|
145
|
+
React.createElement(Button, { component: "a", href: `${getRedhatDotComHost(Env.getEnvName())}/wapps/ugc/protected/${'personalInfo.html'}`, target: "_blank", variant: "secondary", "data-tracking-id": "get-support-update-info", className: "update-info-button" },
|
|
146
|
+
React.createElement(Trans, null, "Update info"))),
|
|
146
147
|
React.createElement(ActionListItem, null, isUploadingAttachment(attachmentState.caseFiles.selectedLocalFiles) ? (React.createElement(React.Fragment, null,
|
|
147
148
|
React.createElement(Tooltip, { content: t('File upload in progress.'), position: "bottom" },
|
|
148
|
-
React.createElement(Button, { className: "pf-v5-u-ml-md", component: "a", href: getCaseURL(), variant: "primary", "data-tracking-id": "get-support-view-case", "aria-label": t('View case'), isAriaDisabled: isUploadingAttachment(attachmentState.caseFiles.selectedLocalFiles) },
|
|
149
|
+
React.createElement(Button, { className: "pf-v5-u-ml-md", component: "a", href: getCaseURL(), variant: "primary", "data-tracking-id": "get-support-view-case", "aria-label": t('View case'), isAriaDisabled: isUploadingAttachment(attachmentState.caseFiles.selectedLocalFiles) },
|
|
150
|
+
React.createElement(Trans, null, "View case"))))) : (React.createElement(Button, { component: (props) => (React.createElement(Link, Object.assign({}, props, { to: `/case/${caseNoOfCreatedCase}` }))), variant: "primary", "data-tracking-id": "get-support-view-case", "aria-label": t('View case') },
|
|
151
|
+
React.createElement(Trans, null, "View case"))))))),
|
|
149
152
|
!isEmpty(attachmentState.caseFiles.selectedLocalFiles) && (React.createElement(FileUploader, { idToUploadTo: caseNoOfCreatedCase, isSessionId: false, isSecureSupport: loggedInUsersAccount.data.secureSupport })),
|
|
150
153
|
React.createElement("div", null,
|
|
151
154
|
(!isEmpty(topContent.data) || !rulesState.EARules.rules || !clusterRecommendations) &&
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useFileUploader.d.ts","sourceRoot":"","sources":["../../../../../src/components/shared/fileUpload/useFileUploader.tsx"],"names":[],"mappings":"AAMA,OAAO,KAA8D,MAAM,OAAO,CAAC;AAenF,OAAO,EAAE,UAAU,EAAmD,MAAM,6BAA6B,CAAC;AAE1G,OAAO,EAAE,wBAAwB,EAAE,MAAM,SAAS,CAAC;AAEnD,wBAAgB,eAAe,CAAC,KAAK,EAAE,wBAAwB;gCA8DvB,MAAM;gCAYM,UAAU,mBAAmB,MAAM,WAAW,UAAU;oCAOpD,MAAM,QAAQ,UAAU;wBAczC,gBAAgB,CAAC,iBAAiB,EAAE,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"useFileUploader.d.ts","sourceRoot":"","sources":["../../../../../src/components/shared/fileUpload/useFileUploader.tsx"],"names":[],"mappings":"AAMA,OAAO,KAA8D,MAAM,OAAO,CAAC;AAenF,OAAO,EAAE,UAAU,EAAmD,MAAM,6BAA6B,CAAC;AAE1G,OAAO,EAAE,wBAAwB,EAAE,MAAM,SAAS,CAAC;AAEnD,wBAAgB,eAAe,CAAC,KAAK,EAAE,wBAAwB;gCA8DvB,MAAM;gCAYM,UAAU,mBAAmB,MAAM,WAAW,UAAU;oCAOpD,MAAM,QAAQ,UAAU;wBAczC,gBAAgB,CAAC,iBAAiB,EAAE,UAAU,CAAC;4BA4BjD,MAAM;kCAxDA,MAAM;EA8EhD"}
|
|
@@ -26,7 +26,7 @@ export function useFileUploader(props) {
|
|
|
26
26
|
const { request: deleteSessionAttachment } = useFetch(sessionAttachments.deleteSesionAttachment);
|
|
27
27
|
const { request: deleteCaseAttachment } = useFetch(caseAttachments.deleteAttachment);
|
|
28
28
|
const { idToUploadTo, needsAnalyzing, isSecureSupport, isSessionId, autoUploadOnSelect, onUploadClick } = props;
|
|
29
|
-
const { globalMetadataState: { pcmConfig, referrerUrl }, } = useContext(GlobalMetadataStateContext);
|
|
29
|
+
const { globalMetadataState: { pcmConfig, referrerUrl, loggedInUserRights }, } = useContext(GlobalMetadataStateContext);
|
|
30
30
|
const { sessionRestore } = useContext(SessionRestoreStateContext);
|
|
31
31
|
const sessionRestoreDispatch = useContext(SessionRestoreDispatchContext);
|
|
32
32
|
const checkForS3SlowUploads = getConfigField(pcmConfig.data, 'checkForS3SlowUploads', PCM_CONFIG_FIELD_TYPE.FEATURE_FLAG);
|
|
@@ -99,6 +99,7 @@ export function useFileUploader(props) {
|
|
|
99
99
|
userAgent,
|
|
100
100
|
originatingSystem: userAgent,
|
|
101
101
|
referrerUrl: referrerUrl.substring(0, SESSION_REFERRER_URL_LIMIT),
|
|
102
|
+
isInternal: loggedInUserRights.data.isInternal(),
|
|
102
103
|
};
|
|
103
104
|
if (!sessionRestore.sessionCreationStatus.isCreating && !sessionRestore.sessionCreationStatus.isError) {
|
|
104
105
|
sessionId = yield createSession(sessionRestoreDispatch, getSessionDetailsFromCase({}, []), session);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GlobalTroubleshootEffects.d.ts","sourceRoot":"","sources":["../../../../src/components/wizardLayout/GlobalTroubleshootEffects.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"GlobalTroubleshootEffects.d.ts","sourceRoot":"","sources":["../../../../src/components/wizardLayout/GlobalTroubleshootEffects.tsx"],"names":[],"mappings":"AAYA,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAUvD,OAAO,EAAqB,eAAe,EAAE,MAAM,iCAAiC,CAAC;AASrF,UAAU,MAAM;IACZ,UAAU,EAAE,mBAAmB,CAAC,eAAe,CAAC,CAAC;CACpD;AAED,wBAAgB,yBAAyB,CAAC,KAAK,EAAE,MAAM,eAqWtD"}
|
|
@@ -11,6 +11,7 @@ import { useDebounce, usePrevious } from '@rh-support/components';
|
|
|
11
11
|
import { GlobalMetadataStateContext, useUserPreferences } from '@rh-support/react-context';
|
|
12
12
|
import { ability, CaseListFields, resourceActions, resources } from '@rh-support/user-permissions';
|
|
13
13
|
import { getVersion } from '@rh-support/utils';
|
|
14
|
+
import { isUndefined } from 'lodash';
|
|
14
15
|
import findIndex from 'lodash/findIndex';
|
|
15
16
|
import includes from 'lodash/includes';
|
|
16
17
|
import isEmpty from 'lodash/isEmpty';
|
|
@@ -284,7 +285,7 @@ export function GlobalTroubleshootEffects(props) {
|
|
|
284
285
|
const hasCluster = isClusterIdEnabledForProduct(product, (_a = allProducts.data) === null || _a === void 0 ? void 0 : _a.productsResult);
|
|
285
286
|
// Need to check `hasCluster` is empty as when product is changing from shift product to non-shift
|
|
286
287
|
// product new product will don't have any cluster
|
|
287
|
-
const isClusterInfoShouldBeReset = !hasCluster || (hasCluster && oldMajorVersion !== newMajorVersion);
|
|
288
|
+
const isClusterInfoShouldBeReset = !hasCluster || (hasCluster && !isUndefined(oldMajorVersion) && oldMajorVersion !== newMajorVersion);
|
|
288
289
|
const isOpenShiftV3 = product === 'OpenShift Container Platform' && newMajorVersion === '3';
|
|
289
290
|
if (isClusterInfoShouldBeReset) {
|
|
290
291
|
setCaseDetails(caseDispatch, {
|
|
@@ -747,6 +747,58 @@ declare const _default: {
|
|
|
747
747
|
'How satisfied are you with customer support\u2019s web experience?': string;
|
|
748
748
|
'Manage your application preferences or send feedback to the web experience team.': string;
|
|
749
749
|
ChangeHostnamePrefLink: string;
|
|
750
|
+
i18nkeySummarizeExperience: string;
|
|
751
|
+
'Search for or select a product': string;
|
|
752
|
+
'Drag and drop, paste, or browse to upload a file': string;
|
|
753
|
+
'Upload file to analyze': string;
|
|
754
|
+
'Because you selected': string;
|
|
755
|
+
'Popular solutions and docs': string;
|
|
756
|
+
'Knowledgebase recommendations': string;
|
|
757
|
+
'Go back': string;
|
|
758
|
+
'Get support': string;
|
|
759
|
+
'What can we help you with?': string;
|
|
760
|
+
'Bug or defect': string;
|
|
761
|
+
'Report an issue with a product': string;
|
|
762
|
+
'Hardware and software certification support': string;
|
|
763
|
+
Configuration: string;
|
|
764
|
+
'Set-up and configuration support': string;
|
|
765
|
+
'Customer service': string;
|
|
766
|
+
'Account, billing, or subscription support': string;
|
|
767
|
+
'Usage & Docs help': string;
|
|
768
|
+
'Suggest or request an update to content': string;
|
|
769
|
+
Idea: string;
|
|
770
|
+
'Request a feature or product enhancement': string;
|
|
771
|
+
'Root cause analysis': string;
|
|
772
|
+
'Only for identifying the source of an issue': string;
|
|
773
|
+
'Please enter an elaborate description': string;
|
|
774
|
+
'Define the value or impact to you or the business': string;
|
|
775
|
+
"User or financial impact, and whether there's a legal, national, or medical urgency": string;
|
|
776
|
+
'Where are you experiencing this behavior? What environment?': string;
|
|
777
|
+
'When does this behavior occur? Frequency? Repeatedly? At certain times?': string;
|
|
778
|
+
'Please describe your request*': string;
|
|
779
|
+
"Case owner's phone number": string;
|
|
780
|
+
'A current phone number with the country code helps us support you better.': string;
|
|
781
|
+
'Select a language for communicating with our support engineers.': string;
|
|
782
|
+
'Organization administrators have the permission to manage groups.': string;
|
|
783
|
+
'Add an internal associate to watch this case': string;
|
|
784
|
+
'Enter the reference number used personally or within your company': string;
|
|
785
|
+
'Personal reference number': string;
|
|
786
|
+
'Add a personal or company reference number to help you connect, organize, and track cases.': string;
|
|
787
|
+
'These changes to your phone number affect only this case.': string;
|
|
788
|
+
'Support type': string;
|
|
789
|
+
"We've added your case to our queue": string;
|
|
790
|
+
'Case number:': string;
|
|
791
|
+
'Is this contact information correct?': string;
|
|
792
|
+
'Troubleshoot this case': string;
|
|
793
|
+
'Please select a support type': string;
|
|
794
|
+
'Product Recommendations': string;
|
|
795
|
+
'Phone number': string;
|
|
796
|
+
'Our response time is': string;
|
|
797
|
+
'or as in your Service Level Agreement (SLA)': string;
|
|
798
|
+
'View case': string;
|
|
799
|
+
'Update info': string;
|
|
800
|
+
Summarize: string;
|
|
801
|
+
'Describe more': string;
|
|
750
802
|
};
|
|
751
803
|
export default _default;
|
|
752
804
|
//# 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":"
|
|
1
|
+
{"version":3,"file":"template-de.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-de.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAs7BE"}
|
|
@@ -747,4 +747,59 @@ export default {
|
|
|
747
747
|
'How satisfied are you with customer support’s web experience?': 'Wie zufrieden sind Sie mit dem Webangebot des Kundendienstes?',
|
|
748
748
|
'Manage your application preferences or send feedback to the web experience team.': 'Verwalten Sie Ihre Anwendungspräferenzen oder senden Sie Feedback an das Web Experience Team.',
|
|
749
749
|
ChangeHostnamePrefLink: 'Sichtbarkeit für Hostnamen unter <1>Einstellungen ändern</1>',
|
|
750
|
+
i18nkeySummarizeExperience: 'Ihre Erlebnisse zusammenfassen',
|
|
751
|
+
'Search for or select a product': 'Nach einem Produkt suchen oder eines auswählen',
|
|
752
|
+
'Drag and drop, paste, or browse to upload a file': 'Ziehen und ablegen, einfügen oder durchsuchen, um eine Datei hochzuladen',
|
|
753
|
+
'Upload file to analyze': 'Datei zur Analyse hochladen',
|
|
754
|
+
'Because you selected': 'Weil Sie ausgewählt haben',
|
|
755
|
+
'Popular solutions and docs': 'Beliebte Lösungen und Dokumente',
|
|
756
|
+
'Knowledgebase recommendations': 'Knowledgebase-Empfehlungen',
|
|
757
|
+
'Go back': 'Zurückgehen',
|
|
758
|
+
'Get support': 'Support holen',
|
|
759
|
+
'What can we help you with?': 'Wie können wir Ihnen helfen?',
|
|
760
|
+
'Bug or defect': 'Fehler oder Defekt',
|
|
761
|
+
'Report an issue with a product': 'Problem mit einem Produkt melden',
|
|
762
|
+
'Hardware and software certification support': 'Suppport für Hardware- und Software-Zertifizierung',
|
|
763
|
+
Configuration: 'Konfiguration',
|
|
764
|
+
'Set-up and configuration support': 'Support für Einrichtung und Konfiguration',
|
|
765
|
+
'Customer service': 'Kundenservice',
|
|
766
|
+
'Account, billing, or subscription support': 'Support für Account, Abrechnung oder Subskription',
|
|
767
|
+
'Usage & Docs help': 'Hilfe für Nutzung oder Dokumente',
|
|
768
|
+
'Suggest or request an update to content': 'Update von Inhalten vorschlagen oder anfragen',
|
|
769
|
+
Idea: 'Idee',
|
|
770
|
+
'Request a feature or product enhancement': 'Funktion oder Produktverbesserung anfragen',
|
|
771
|
+
'Root cause analysis': 'Grundursachenanalyse',
|
|
772
|
+
'Only for identifying the source of an issue': 'Nur für die Identifikation der Quelle eines Problems',
|
|
773
|
+
'Please enter an elaborate description': 'Bitte eine ausführliche Beschreibung eingeben',
|
|
774
|
+
'Define the value or impact to you or the business': 'Den Wert oder die Auswirkung auf Sie oder das Unternehmen definieren',
|
|
775
|
+
"User or financial impact, and whether there's a legal, national, or medical urgency": 'Auswirkung auf Nutzende oder Finanzen und ob es sich um einen rechtlichen, nationalen oder medizinischen Notfall handelt',
|
|
776
|
+
'Where are you experiencing this behavior? What environment?': 'Wo erleben Sie dieses Verhalten? Welche Umgebung?',
|
|
777
|
+
'When does this behavior occur? Frequency? Repeatedly? At certain times?': 'Wann tritt dieses Verhalten auf? Wie oft? Wiederholt? Zu bestimmten Zeiten?',
|
|
778
|
+
'Please describe your request*': 'Bitte beschreiben Sie Ihre Anfrage*',
|
|
779
|
+
"Case owner's phone number": 'Telefonnummer des Case-Owners',
|
|
780
|
+
'A current phone number with the country code helps us support you better.': 'Eine aktuelle Telefonnummer mit Ländervorwahl hilft uns, Ihnen einen besseren Support zu bieten.',
|
|
781
|
+
'Select a language for communicating with our support engineers.': 'Wählen Sie eine Sprache für die Kommunikation mit unseren Support-Engineers.',
|
|
782
|
+
'Organization administrators have the permission to manage groups.': 'Organisationsadministratoren haben die Erlaubnis Gruppen zu managen.',
|
|
783
|
+
'Add an internal associate to watch this case': 'Einen internen Beschäftigten zur Beobachtung des Case hinzufügen',
|
|
784
|
+
'Enter the reference number used personally or within your company': 'Geben Sie die Referenznummer ein, die persönlich oder innerhalb Ihres Unternehmens verwendet wird',
|
|
785
|
+
'Personal reference number': 'Persönliche Referenznummer',
|
|
786
|
+
'Add a personal or company reference number to help you connect, organize, and track cases.': 'Fügen Sie eine persönliche oder unternehmensbezogene Referenznummer hinzu, um Cases leichter verbinden, organisieren und nachverfolgen zu können.',
|
|
787
|
+
'These changes to your phone number affect only this case.': 'Dieser Änderungen an Ihrer Telefonnummer betreffen nur diesen Case.',
|
|
788
|
+
'Support type': 'Supporttyp',
|
|
789
|
+
"We've added your case to our queue": 'Wie haben Ihren Case in unsere Warteschlange aufgenommen',
|
|
790
|
+
'Case number:': 'Case-Nummer:',
|
|
791
|
+
'Is this contact information correct?': 'Sind diese Kontaktdaten korrekt?',
|
|
792
|
+
'Troubleshoot this case': 'Fehlerbehebung für diesen Case betreiben',
|
|
793
|
+
// 'Filtering by': 'Filtern nach',
|
|
794
|
+
'Please select a support type': 'Bitte wählen Sie einen Support-Typ',
|
|
795
|
+
'Product Recommendations': 'Produktempfehlungen',
|
|
796
|
+
'Phone number': 'Telefonnummer',
|
|
797
|
+
// Email: 'E-Mail',
|
|
798
|
+
'Our response time is': 'Unsere Reaktionszeit beträgt',
|
|
799
|
+
'or as in your Service Level Agreement (SLA)': 'oder gemäß Ihrem Service Level Agreement (SLA)',
|
|
800
|
+
'View case': 'Case anzeigen',
|
|
801
|
+
'Update info': 'Info aktualisieren',
|
|
802
|
+
Summarize: 'Zusammenfassen',
|
|
803
|
+
'Describe more': 'Mehr beschreiben',
|
|
804
|
+
// Review: 'Überprüfung',
|
|
750
805
|
};
|
|
@@ -747,6 +747,57 @@ declare const _default: {
|
|
|
747
747
|
'How satisfied are you with customer support\u2019s web experience?': string;
|
|
748
748
|
'Manage your application preferences or send feedback to the web experience team.': string;
|
|
749
749
|
ChangeHostnamePrefLink: string;
|
|
750
|
+
i18nkeySummarizeExperience: string;
|
|
751
|
+
'Search for or select a product': string;
|
|
752
|
+
'Drag and drop, paste, or browse to upload a file': string;
|
|
753
|
+
'Upload file to analyze': string;
|
|
754
|
+
'Because you selected': string;
|
|
755
|
+
'Popular solutions and docs': string;
|
|
756
|
+
'Knowledgebase recommendations': string;
|
|
757
|
+
'Go back': string;
|
|
758
|
+
'Get support': string;
|
|
759
|
+
'What can we help you with?': string;
|
|
760
|
+
'Bug or defect': string;
|
|
761
|
+
'Report an issue with a product': string;
|
|
762
|
+
'Hardware and software certification support': string;
|
|
763
|
+
Configuration: string;
|
|
764
|
+
'Set-up and configuration support': string;
|
|
765
|
+
'Customer service': string;
|
|
766
|
+
'Account, billing, or subscription support': string;
|
|
767
|
+
'Usage & Docs help': string;
|
|
768
|
+
'Suggest or request an update to content': string;
|
|
769
|
+
Idea: string;
|
|
770
|
+
'Request a feature or product enhancement': string;
|
|
771
|
+
'Root cause analysis': string;
|
|
772
|
+
'Only for identifying the source of an issue': string;
|
|
773
|
+
'Please enter an elaborate description': string;
|
|
774
|
+
'Define the value or impact to you or the business': string;
|
|
775
|
+
"User or financial impact, and whether there's a legal, national, or medical urgency": string;
|
|
776
|
+
'Where are you experiencing this behavior? What environment?': string;
|
|
777
|
+
'When does this behavior occur? Frequency? Repeatedly? At certain times?': string;
|
|
778
|
+
'Please describe your request*': string;
|
|
779
|
+
"Case owner's phone number": string;
|
|
780
|
+
'A current phone number with the country code helps us support you better.': string;
|
|
781
|
+
'Select a language for communicating with our support engineers.': string;
|
|
782
|
+
'Organization administrators have the permission to manage groups.': string;
|
|
783
|
+
'Add an internal associate to watch this case': string;
|
|
784
|
+
'Personal reference number, Enter the reference number used personally or within your company': string;
|
|
785
|
+
'Add a personal or company reference number to help you connect, organize, and track cases.': string;
|
|
786
|
+
'These changes to your phone number affect only this case.': string;
|
|
787
|
+
'Support type': string;
|
|
788
|
+
"We've added your case to our queue": string;
|
|
789
|
+
'Case number:': string;
|
|
790
|
+
'Is this contact information correct?': string;
|
|
791
|
+
'Troubleshoot this case': string;
|
|
792
|
+
'Please select a support type': string;
|
|
793
|
+
'Product Recommendations': string;
|
|
794
|
+
'Phone number': string;
|
|
795
|
+
'Our response time is': string;
|
|
796
|
+
'or as in your Service Level Agreement (SLA)': string;
|
|
797
|
+
'View case': string;
|
|
798
|
+
'Update info': string;
|
|
799
|
+
Summarize: string;
|
|
800
|
+
'Describe more': string;
|
|
750
801
|
};
|
|
751
802
|
export default _default;
|
|
752
803
|
//# 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":"
|
|
1
|
+
{"version":3,"file":"template-es.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-es.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAy7BE"}
|
|
@@ -747,4 +747,57 @@ export default {
|
|
|
747
747
|
'How satisfied are you with customer support’s web experience?': '¿Cuál es su grado de satisfacción con la experiencia web del soporte al cliente?',
|
|
748
748
|
'Manage your application preferences or send feedback to the web experience team.': 'Gestione sus preferencias de aplicación o envíe comentarios al equipo de experiencia web.',
|
|
749
749
|
ChangeHostnamePrefLink: 'Cambiar la visibilidad de los nombres de host en <1>Preferencias</1>',
|
|
750
|
+
i18nkeySummarizeExperience: 'Resuma la situación que está experimentando',
|
|
751
|
+
'Search for or select a product': 'Busque o seleccione un producto',
|
|
752
|
+
'Drag and drop, paste, or browse to upload a file': 'Para cargar un archivo, arrástrelo y suéltelo, péguelo o utilice la función Browse para examinar sus documentos',
|
|
753
|
+
'Upload file to analyze': 'Cargue el archivo para analizarlo',
|
|
754
|
+
'Because you selected': 'Porque seleccionó',
|
|
755
|
+
'Popular solutions and docs': 'Soluciones y documentos más utilizados',
|
|
756
|
+
'Knowledgebase recommendations': 'Recomendaciones de la base de conocimiento',
|
|
757
|
+
'Go back': 'Atrás',
|
|
758
|
+
'Get support': 'Necesito soporte',
|
|
759
|
+
'What can we help you with?': '¿En qué podemos ayudarlo?',
|
|
760
|
+
'Bug or defect': 'Error o falla',
|
|
761
|
+
'Report an issue with a product': 'Infórmenos sobre un problema con un producto',
|
|
762
|
+
'Hardware and software certification support': 'Soporte para la certificación de hardware y software',
|
|
763
|
+
Configuration: 'Configuración',
|
|
764
|
+
'Set-up and configuration support': 'Soporte para la instalación y configuración de los sistemas',
|
|
765
|
+
'Customer service': 'Servicio de atención al cliente',
|
|
766
|
+
'Account, billing, or subscription support': 'Soporte para las cuentas, la facturación o las suscripciones',
|
|
767
|
+
'Usage & Docs help': 'Ayuda con los documentos y el uso de los servicios',
|
|
768
|
+
'Suggest or request an update to content': 'Proponga o solicite la actualización de los contenidos',
|
|
769
|
+
Idea: 'Ideas',
|
|
770
|
+
'Request a feature or product enhancement': 'Solicite una mejora en un producto o una función',
|
|
771
|
+
'Root cause analysis': 'Análisis de causas principales',
|
|
772
|
+
'Only for identifying the source of an issue': 'Solo necesito identificar el origen de un problema',
|
|
773
|
+
'Please enter an elaborate description': 'Elabore una descripción detallada.',
|
|
774
|
+
'Define the value or impact to you or the business': 'Describa la forma en que la situación afecta a la empresa o a su persona',
|
|
775
|
+
"User or financial impact, and whether there's a legal, national, or medical urgency": 'Especifique el impacto financiero o para el usuario e infórmenos si existe alguna emergencia jurídica, nacional o médica.',
|
|
776
|
+
'Where are you experiencing this behavior? What environment?': '¿Dónde experimenta este comportamiento? ¿En qué entorno?',
|
|
777
|
+
'When does this behavior occur? Frequency? Repeatedly? At certain times?': '¿Cuándo se produce? ¿Con qué frecuencia? ¿Se repite? ¿Ocurre en determinados momentos?',
|
|
778
|
+
'Please describe your request*': 'Describa la solicitud*',
|
|
779
|
+
"Case owner's phone number": 'Número de teléfono del autor del caso de soporte',
|
|
780
|
+
'A current phone number with the country code helps us support you better.': 'Si el número de teléfono está actualizado e incluye el prefijo del país, podremos prestarle un mejor servicio de soporte.',
|
|
781
|
+
'Select a language for communicating with our support engineers.': 'Seleccione un idioma para comunicarse con nuestros ingenieros de soporte.',
|
|
782
|
+
'Organization administrators have the permission to manage groups.': 'Los administradores de la empresa tienen permiso para gestionar los grupos.',
|
|
783
|
+
'Add an internal associate to watch this case': 'Agregue un empleado interno para que supervise el caso',
|
|
784
|
+
'Personal reference number, Enter the reference number used personally or within your company': 'Número de referencia personal. Ingrese el número de referencia que utiliza individualmente o en su empresa.',
|
|
785
|
+
'Add a personal or company reference number to help you connect, organize, and track cases.': 'Agregue un número de referencia personal o corporativo para que pueda identificar los casos, organizarlos y realizar su seguimiento.',
|
|
786
|
+
'These changes to your phone number affect only this case.': 'Los cambios en su número de teléfono solo afectan a este caso.',
|
|
787
|
+
'Support type': 'Tipo de soporte',
|
|
788
|
+
"We've added your case to our queue": 'Agregamos su caso a nuestra cola.',
|
|
789
|
+
'Case number:': 'Número de caso:',
|
|
790
|
+
'Is this contact information correct?': '¿La información de contacto es correcta?',
|
|
791
|
+
'Troubleshoot this case': 'Lleve a cabo una resolución de problemas para el caso',
|
|
792
|
+
// 'Filtering by': 'Filtrar por',
|
|
793
|
+
'Please select a support type': 'Seleccione un tipo de soporte',
|
|
794
|
+
'Product Recommendations': 'Recomendaciones de productos',
|
|
795
|
+
'Phone number': 'Número de teléfono',
|
|
796
|
+
// Email: 'Correo electrónico',
|
|
797
|
+
'Our response time is': 'Nuestro tiempo de respuesta es',
|
|
798
|
+
'or as in your Service Level Agreement (SLA)': 'o el indicado en el Acuerdo de nivel de servicio (SLA)',
|
|
799
|
+
'View case': 'Vea lel caso',
|
|
800
|
+
'Update info': 'Actualice la información',
|
|
801
|
+
Summarize: 'Resumir',
|
|
802
|
+
'Describe more': 'Describir más',
|
|
750
803
|
};
|
|
@@ -791,6 +791,12 @@ declare const _default: {
|
|
|
791
791
|
'Is this contact information correct?': string;
|
|
792
792
|
'Troubleshoot this case': string;
|
|
793
793
|
Summarize: string;
|
|
794
|
+
'Product Recommendations': string;
|
|
795
|
+
'Phone number': string;
|
|
796
|
+
'Our response time is': string;
|
|
797
|
+
'or as in your Service Level Agreement (SLA)': string;
|
|
798
|
+
'View case': string;
|
|
799
|
+
'Update info': string;
|
|
794
800
|
};
|
|
795
801
|
export default _default;
|
|
796
802
|
//# 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":"
|
|
1
|
+
{"version":3,"file":"template-fr.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-fr.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAg8BE"}
|
|
@@ -796,4 +796,10 @@ export default {
|
|
|
796
796
|
'Is this contact information correct?': 'Ces coordonnées sont-elles correctes ?',
|
|
797
797
|
'Troubleshoot this case': 'Résolution de ce cas',
|
|
798
798
|
Summarize: 'Résumez',
|
|
799
|
+
'Product Recommendations': 'Recommandations Produit',
|
|
800
|
+
'Phone number': 'Numéro de téléphone',
|
|
801
|
+
'Our response time is': 'Notre temps de réponse est de',
|
|
802
|
+
'or as in your Service Level Agreement (SLA)': 'ou selon votre SLA contractuel',
|
|
803
|
+
'View case': 'Voir le cas',
|
|
804
|
+
'Update info': 'Mise à jour des informations',
|
|
799
805
|
};
|
|
@@ -748,6 +748,58 @@ declare const _default: {
|
|
|
748
748
|
'How satisfied are you with customer support\u2019s web experience?': string;
|
|
749
749
|
'Manage your application preferences or send feedback to the web experience team.': string;
|
|
750
750
|
ChangeHostnamePrefLink: string;
|
|
751
|
+
i18nkeySummarizeExperience: string;
|
|
752
|
+
'Search for or select a product': string;
|
|
753
|
+
'Drag and drop, paste, or browse to upload a file': string;
|
|
754
|
+
'Upload file to analyze': string;
|
|
755
|
+
'Because you selected': string;
|
|
756
|
+
'Popular solutions and docs': string;
|
|
757
|
+
'Knowledgebase recommendations': string;
|
|
758
|
+
'Go back': string;
|
|
759
|
+
'Get support': string;
|
|
760
|
+
'What can we help you with?': string;
|
|
761
|
+
'Bug or defect': string;
|
|
762
|
+
'Report an issue with a product': string;
|
|
763
|
+
'Hardware and software certification support': string;
|
|
764
|
+
Configuration: string;
|
|
765
|
+
'Set-up and configuration support': string;
|
|
766
|
+
'Customer service': string;
|
|
767
|
+
'Account, billing, or subscription support': string;
|
|
768
|
+
'Usage & Docs help': string;
|
|
769
|
+
'Suggest or request an update to content': string;
|
|
770
|
+
Idea: string;
|
|
771
|
+
'Request a feature or product enhancement': string;
|
|
772
|
+
'Root cause analysis': string;
|
|
773
|
+
'Only for identifying the source of an issue': string;
|
|
774
|
+
'Please enter an elaborate description': string;
|
|
775
|
+
'Define the value or impact to you or the business': string;
|
|
776
|
+
"User or financial impact, and whether there's a legal, national, or medical urgency": string;
|
|
777
|
+
'Where are you experiencing this behavior? What environment?': string;
|
|
778
|
+
'When does this behavior occur? Frequency? Repeatedly? At certain times?': string;
|
|
779
|
+
'Please describe your request*': string;
|
|
780
|
+
"Case owner's phone number": string;
|
|
781
|
+
'A current phone number with the country code helps us support you better.': string;
|
|
782
|
+
'Select a language for communicating with our support engineers.': string;
|
|
783
|
+
'Organization administrators have the permission to manage groups.': string;
|
|
784
|
+
'Add an internal associate to watch this case': string;
|
|
785
|
+
'Enter the reference number used personally or within your company': string;
|
|
786
|
+
'Personal reference number': string;
|
|
787
|
+
'Add a personal or company reference number to help you connect, organize, and track cases.': string;
|
|
788
|
+
'These changes to your phone number affect only this case.': string;
|
|
789
|
+
'Support type': string;
|
|
790
|
+
"We've added your case to our queue": string;
|
|
791
|
+
'Case number:': string;
|
|
792
|
+
'Is this contact information correct?': string;
|
|
793
|
+
'Troubleshoot this case': string;
|
|
794
|
+
'Please select a support type': string;
|
|
795
|
+
'Product Recommendations': string;
|
|
796
|
+
'Phone number': string;
|
|
797
|
+
'Our response time is': string;
|
|
798
|
+
'or as in your Service Level Agreement (SLA)': string;
|
|
799
|
+
'View case': string;
|
|
800
|
+
'Update info': string;
|
|
801
|
+
Summarize: string;
|
|
802
|
+
'Describe more': string;
|
|
751
803
|
};
|
|
752
804
|
export default _default;
|
|
753
805
|
//# 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":"
|
|
1
|
+
{"version":3,"file":"template-it.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-it.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA67BE"}
|
|
@@ -748,4 +748,58 @@ export default {
|
|
|
748
748
|
'How satisfied are you with customer support’s web experience?': "Livello di soddisfazione dell'esperienza web con l'assistenza clienti?",
|
|
749
749
|
'Manage your application preferences or send feedback to the web experience team.': 'Gestire le preferenze relative all’applicazione o inviare un feedback al team Web Experience.',
|
|
750
750
|
ChangeHostnamePrefLink: 'Modificare la visibilità degli hostname in <1>Preferenze</1>',
|
|
751
|
+
i18nkeySummarizeExperience: 'Ihre Erlebnisse zusammenfassen',
|
|
752
|
+
'Search for or select a product': 'Nach einem Produkt suchen oder eines auswählen',
|
|
753
|
+
'Drag and drop, paste, or browse to upload a file': 'Ziehen und ablegen, einfügen oder durchsuchen, um eine Datei hochzuladen',
|
|
754
|
+
'Upload file to analyze': 'Datei zur Analyse hochladen',
|
|
755
|
+
'Because you selected': 'Weil Sie ausgewählt haben',
|
|
756
|
+
'Popular solutions and docs': 'Beliebte Lösungen und Dokumente',
|
|
757
|
+
'Knowledgebase recommendations': 'Knowledgebase-Empfehlungen',
|
|
758
|
+
'Go back': 'Zurückgehen',
|
|
759
|
+
'Get support': 'Support holen',
|
|
760
|
+
'What can we help you with?': 'Wie können wir Ihnen helfen?',
|
|
761
|
+
'Bug or defect': 'Fehler oder Defekt',
|
|
762
|
+
'Report an issue with a product': 'Problem mit einem Produkt melden',
|
|
763
|
+
'Hardware and software certification support': 'Suppport für Hardware- und Software-Zertifizierung',
|
|
764
|
+
Configuration: 'Konfiguration',
|
|
765
|
+
'Set-up and configuration support': 'Support für Einrichtung und Konfiguration',
|
|
766
|
+
'Customer service': 'Kundenservice',
|
|
767
|
+
'Account, billing, or subscription support': 'Support für Account, Abrechnung oder Subskription',
|
|
768
|
+
'Usage & Docs help': 'Hilfe für Nutzung oder Dokumente',
|
|
769
|
+
'Suggest or request an update to content': 'Update von Inhalten vorschlagen oder anfragen',
|
|
770
|
+
Idea: 'Idee',
|
|
771
|
+
'Request a feature or product enhancement': 'Funktion oder Produktverbesserung anfragen',
|
|
772
|
+
'Root cause analysis': 'Grundursachenanalyse',
|
|
773
|
+
'Only for identifying the source of an issue': 'Nur für die Identifikation der Quelle eines Problems',
|
|
774
|
+
'Please enter an elaborate description': 'Bitte eine ausführliche Beschreibung eingeben',
|
|
775
|
+
'Define the value or impact to you or the business': 'Den Wert oder die Auswirkung auf Sie oder das Unternehmen definieren',
|
|
776
|
+
"User or financial impact, and whether there's a legal, national, or medical urgency": 'Auswirkung auf Nutzende oder Finanzen und ob es sich um einen rechtlichen, nationalen oder medizinischen Notfall handelt',
|
|
777
|
+
'Where are you experiencing this behavior? What environment?': 'Wo erleben Sie dieses Verhalten? Welche Umgebung?',
|
|
778
|
+
'When does this behavior occur? Frequency? Repeatedly? At certain times?': 'Wann tritt dieses Verhalten auf? Wie oft? Wiederholt? Zu bestimmten Zeiten?',
|
|
779
|
+
'Please describe your request*': 'Bitte beschreiben Sie Ihre Anfrage*',
|
|
780
|
+
"Case owner's phone number": 'Telefonnummer des Case-Owners',
|
|
781
|
+
'A current phone number with the country code helps us support you better.': 'Eine aktuelle Telefonnummer mit Ländervorwahl hilft uns, Ihnen einen besseren Support zu bieten.',
|
|
782
|
+
'Select a language for communicating with our support engineers.': 'Wählen Sie eine Sprache für die Kommunikation mit unseren Support-Engineers.',
|
|
783
|
+
'Organization administrators have the permission to manage groups.': 'Organisationsadministratoren haben die Erlaubnis Gruppen zu managen.',
|
|
784
|
+
'Add an internal associate to watch this case': 'Einen internen Beschäftigten zur Beobachtung des Case hinzufügen',
|
|
785
|
+
'Enter the reference number used personally or within your company': "Inserisci il codice di riferimento utilizzato personalmente o all'interno della tua azienda",
|
|
786
|
+
'Personal reference number': 'Numero di identificazione personale',
|
|
787
|
+
'Add a personal or company reference number to help you connect, organize, and track cases.': 'Fügen Sie eine persönliche oder unternehmensbezogene Referenznummer hinzu, um Cases leichter verbinden, organisieren und nachverfolgen zu können.',
|
|
788
|
+
'These changes to your phone number affect only this case.': 'Dieser Änderungen an Ihrer Telefonnummer betreffen nur diesen Case.',
|
|
789
|
+
'Support type': 'Supporttyp',
|
|
790
|
+
"We've added your case to our queue": 'Wie haben Ihren Case in unsere Warteschlange aufgenommen',
|
|
791
|
+
'Case number:': 'Case-Nummer:',
|
|
792
|
+
'Is this contact information correct?': 'Sind diese Kontaktdaten korrekt?',
|
|
793
|
+
'Troubleshoot this case': 'Fehlerbehebung für diesen Case betreiben',
|
|
794
|
+
// 'Filtering by': 'Filtern nach',
|
|
795
|
+
'Please select a support type': 'Bitte wählen Sie einen Support-Typ',
|
|
796
|
+
'Product Recommendations': 'Produktempfehlungen',
|
|
797
|
+
'Phone number': 'Telefonnummer',
|
|
798
|
+
// Email: 'E-Mail',
|
|
799
|
+
'Our response time is': 'Unsere Reaktionszeit beträgt',
|
|
800
|
+
'or as in your Service Level Agreement (SLA)': 'oder gemäß Ihrem Service Level Agreement (SLA)',
|
|
801
|
+
'View case': 'Case anzeigen',
|
|
802
|
+
'Update info': 'Info aktualisieren',
|
|
803
|
+
Summarize: 'Riassumere',
|
|
804
|
+
'Describe more': 'Descrivere più dettagliatamente',
|
|
751
805
|
};
|
|
@@ -794,6 +794,14 @@ declare const _default: {
|
|
|
794
794
|
'Is this contact information correct?': string;
|
|
795
795
|
'Troubleshoot this case': string;
|
|
796
796
|
Summarize: string;
|
|
797
|
+
'Please select a support type': string;
|
|
798
|
+
'Product Recommendations': string;
|
|
799
|
+
'Phone number': string;
|
|
800
|
+
'Our response time is': string;
|
|
801
|
+
'or as in your Service Level Agreement (SLA)': string;
|
|
802
|
+
'View case': string;
|
|
803
|
+
'Update info': string;
|
|
804
|
+
'These changes to your phone number affect only this case.': string;
|
|
797
805
|
};
|
|
798
806
|
export default _default;
|
|
799
807
|
//# 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":"
|
|
1
|
+
{"version":3,"file":"template-jp.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-jp.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA46BE"}
|
|
@@ -799,4 +799,12 @@ export default {
|
|
|
799
799
|
'Is this contact information correct?': 'この連絡先情報が正しいことを確認してください。',
|
|
800
800
|
'Troubleshoot this case': 'このケースのトラブルシューティングを行う',
|
|
801
801
|
Summarize: '概要',
|
|
802
|
+
'Please select a support type': 'サポートタイプを選択してください',
|
|
803
|
+
'Product Recommendations': '推奨製品',
|
|
804
|
+
'Phone number': '電話番号',
|
|
805
|
+
'Our response time is': '対応時間:',
|
|
806
|
+
'or as in your Service Level Agreement (SLA)': 'またはサービスレベルアグリーメント (SLA) に準拠します。',
|
|
807
|
+
'View case': 'ケースの表示',
|
|
808
|
+
'Update info': '情報の更新',
|
|
809
|
+
'These changes to your phone number affect only this case.': 'これらの電話番号への変更は、このケースにのみ影響します',
|
|
802
810
|
};
|
|
@@ -792,6 +792,14 @@ declare const _default: {
|
|
|
792
792
|
'Is this contact information correct?': string;
|
|
793
793
|
'Troubleshoot this case': string;
|
|
794
794
|
Summarize: string;
|
|
795
|
+
'These changes to your phone number affect only this case.': string;
|
|
796
|
+
'Please select a support type': string;
|
|
797
|
+
'Product Recommendations': string;
|
|
798
|
+
'Phone number': string;
|
|
799
|
+
'Our response time is': string;
|
|
800
|
+
'or as in your Service Level Agreement (SLA)': string;
|
|
801
|
+
'View case': string;
|
|
802
|
+
'Update info': string;
|
|
795
803
|
};
|
|
796
804
|
export default _default;
|
|
797
805
|
//# 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":"
|
|
1
|
+
{"version":3,"file":"template-ko.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-ko.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA05BE"}
|
|
@@ -797,4 +797,12 @@ export default {
|
|
|
797
797
|
'Is this contact information correct?': '이 연락처 정보가 정확합니까?',
|
|
798
798
|
'Troubleshoot this case': '이 케이스 문제 해결',
|
|
799
799
|
Summarize: '요약',
|
|
800
|
+
'These changes to your phone number affect only this case.': '이 전화번호 변경은 이 경우에만 영향을 미칩니다',
|
|
801
|
+
'Please select a support type': '지원 유형을 선택하세요',
|
|
802
|
+
'Product Recommendations': '제품 추천',
|
|
803
|
+
'Phone number': '전화 번호',
|
|
804
|
+
'Our response time is': '대응 시간',
|
|
805
|
+
'or as in your Service Level Agreement (SLA)': '또는 서비스 수준 계약(SLA)에 따라 준수',
|
|
806
|
+
'View case': '케이스 보기',
|
|
807
|
+
'Update info': '업데이트 정보',
|
|
800
808
|
};
|
|
@@ -748,6 +748,56 @@ declare const _default: {
|
|
|
748
748
|
'How satisfied are you with customer support\u2019s web experience?': string;
|
|
749
749
|
'Manage your application preferences or send feedback to the web experience team.': string;
|
|
750
750
|
ChangeHostnamePrefLink: string;
|
|
751
|
+
i18nkeySummarizeExperience: string;
|
|
752
|
+
'Search for or select a product': string;
|
|
753
|
+
'Drag and drop, paste, or browse to upload a file': string;
|
|
754
|
+
'Upload file to analyze': string;
|
|
755
|
+
'Because you selected': string;
|
|
756
|
+
'Popular solutions and docs': string;
|
|
757
|
+
'Knowledgebase recommendations': string;
|
|
758
|
+
'Go back': string;
|
|
759
|
+
'Get support': string;
|
|
760
|
+
'What can we help you with?': string;
|
|
761
|
+
'Bug or defect': string;
|
|
762
|
+
'Report an issue with a product': string;
|
|
763
|
+
'Hardware and software certification support': string;
|
|
764
|
+
Configuration: string;
|
|
765
|
+
'Set-up and configuration support': string;
|
|
766
|
+
'Customer service': string;
|
|
767
|
+
'Account, billing, or subscription support': string;
|
|
768
|
+
'Usage & Docs help': string;
|
|
769
|
+
'Suggest or request an update to content': string;
|
|
770
|
+
Idea: string;
|
|
771
|
+
'Request a feature or product enhancement': string;
|
|
772
|
+
'Root cause analysis': string;
|
|
773
|
+
'Only for identifying the source of an issue': string;
|
|
774
|
+
'Please enter an elaborate description': string;
|
|
775
|
+
'Define the value or impact to you or the business': string;
|
|
776
|
+
"User or financial impact, and whether there's a legal, national, or medical urgency": string;
|
|
777
|
+
'Where are you experiencing this behavior? What environment?': string;
|
|
778
|
+
'When does this behavior occur? Frequency? Repeatedly? At certain times?': string;
|
|
779
|
+
'Please describe your request*': string;
|
|
780
|
+
"Case owner's phone number": string;
|
|
781
|
+
'A current phone number with the country code helps us support you better.': string;
|
|
782
|
+
'Select a language for communicating with our support engineers.': string;
|
|
783
|
+
'Organization administrators have the permission to manage groups.': string;
|
|
784
|
+
'Add an internal associate to watch this case': string;
|
|
785
|
+
'Enter the reference number used personally or within your company': string;
|
|
786
|
+
'Personal reference number': string;
|
|
787
|
+
'Add a personal or company reference number to help you connect, organize, and track cases.': string;
|
|
788
|
+
'These changes to your phone number affect only this case.': string;
|
|
789
|
+
'Support type': string;
|
|
790
|
+
"We've added your case to our queue": string;
|
|
791
|
+
'Case number:': string;
|
|
792
|
+
'Is this contact information correct?': string;
|
|
793
|
+
'Troubleshoot this case': string;
|
|
794
|
+
'Please select a support type': string;
|
|
795
|
+
'Product Recommendations': string;
|
|
796
|
+
'Phone number': string;
|
|
797
|
+
'Our response time is': string;
|
|
798
|
+
'or as in your Service Level Agreement (SLA)': string;
|
|
799
|
+
'View case': string;
|
|
800
|
+
'Update info': string;
|
|
751
801
|
};
|
|
752
802
|
export default _default;
|
|
753
803
|
//# 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":"
|
|
1
|
+
{"version":3,"file":"template-pt.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-pt.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAy7BE"}
|
|
@@ -748,4 +748,57 @@ export default {
|
|
|
748
748
|
'How satisfied are you with customer support’s web experience?': 'Qual é seu nível de satisfação com a experiência do suporte ao cliente na web?',
|
|
749
749
|
'Manage your application preferences or send feedback to the web experience team.': 'Gerencie suas preferências do aplicativo ou envie comentários para a equipe de experiência da web.',
|
|
750
750
|
ChangeHostnamePrefLink: 'Altere a visibilidade dos nomes de host em <1>Preferências</1>',
|
|
751
|
+
i18nkeySummarizeExperience: 'Resuma sua experiência',
|
|
752
|
+
'Search for or select a product': 'Pesquise ou selecione um produto',
|
|
753
|
+
'Drag and drop, paste, or browse to upload a file': 'Arraste e solte, cole ou procure para fazer upload de um arquivo',
|
|
754
|
+
'Upload file to analyze': 'Faça upload de um arquivo para analisar',
|
|
755
|
+
'Because you selected': 'Porque você selecionou',
|
|
756
|
+
'Popular solutions and docs': 'Documentos e soluções populares',
|
|
757
|
+
'Knowledgebase recommendations': 'Recomendações da base de conhecimento',
|
|
758
|
+
'Go back': 'Voltar',
|
|
759
|
+
'Get support': 'Obter suporte',
|
|
760
|
+
'What can we help you with?': 'Como podemos ajudar?',
|
|
761
|
+
'Bug or defect': 'Bug ou defeito',
|
|
762
|
+
'Report an issue with a product': 'Relatar um problema com um produto',
|
|
763
|
+
'Hardware and software certification support': 'Suporte para certificação de hardware e software',
|
|
764
|
+
Configuration: 'Configuração',
|
|
765
|
+
'Set-up and configuration support': 'Suporte para configuração',
|
|
766
|
+
'Customer service': 'Atendimento ao cliente',
|
|
767
|
+
'Account, billing, or subscription support': 'Suporte para conta, cobrança ou subscrição',
|
|
768
|
+
'Usage & Docs help': 'Ajuda com uso e documentos',
|
|
769
|
+
'Suggest or request an update to content': 'Sugerir ou solicitar uma atualização de conteúdo',
|
|
770
|
+
Idea: 'Ideia',
|
|
771
|
+
'Request a feature or product enhancement': 'Solicitar um aprimoramento de recurso ou produto',
|
|
772
|
+
'Root cause analysis': 'Análise de causa-raiz',
|
|
773
|
+
'Only for identifying the source of an issue': 'Somente para identificar a origem de um problema',
|
|
774
|
+
'Please enter an elaborate description': 'Insira uma descrição detalhada',
|
|
775
|
+
'Define the value or impact to you or the business': 'Defina o valor ou impacto para você ou a empresa',
|
|
776
|
+
"User or financial impact, and whether there's a legal, national, or medical urgency": 'Impacto financeiro ou para usuários e se há uma emergência jurídica, nacional ou médica',
|
|
777
|
+
'Where are you experiencing this behavior? What environment?': 'Onde você está vendo esse comportamento? Qual ambiente?',
|
|
778
|
+
'When does this behavior occur? Frequency? Repeatedly? At certain times?': 'Quando ocorre esse comportamento? Frequência? De forma repetida? Em determinados momentos?',
|
|
779
|
+
'Please describe your request*': 'Descreva sua solicitação*',
|
|
780
|
+
"Case owner's phone number": 'Número de telefone do proprietário do caso',
|
|
781
|
+
'A current phone number with the country code helps us support you better.': 'Um número de telefone atual com o código do país nos ajuda a oferecer um suporte superior.',
|
|
782
|
+
'Select a language for communicating with our support engineers.': 'Selecione um idioma para comunicação com nossos engenheiros de suporte.',
|
|
783
|
+
'Organization administrators have the permission to manage groups.': 'Os administradores da organização têm permissão para gerenciar grupos.',
|
|
784
|
+
'Add an internal associate to watch this case': 'Adicione um associado interno para observar este caso',
|
|
785
|
+
'Enter the reference number used personally or within your company': 'Insira o número de referência usado pessoalmente ou na sua empresa',
|
|
786
|
+
'Personal reference number': 'Número de referência pessoal',
|
|
787
|
+
'Add a personal or company reference number to help you connect, organize, and track cases.': 'Adicione um número de referência pessoal ou da empresa para ajudar a conectar, organizar e rastrear casos.',
|
|
788
|
+
'These changes to your phone number affect only this case.': 'Estas alterações no número de telefone afetam somente este caso.',
|
|
789
|
+
'Support type': 'Tipo de suporte',
|
|
790
|
+
"We've added your case to our queue": 'Adicionamos seu caso à nossa fila',
|
|
791
|
+
'Case number:': 'Número do caso:',
|
|
792
|
+
'Is this contact information correct?': 'Estas informações de contato estão corretas?',
|
|
793
|
+
'Troubleshoot this case': 'Solucionar problema deste caso',
|
|
794
|
+
//
|
|
795
|
+
// 'Filtering by': 'Filtrando por',
|
|
796
|
+
'Please select a support type': 'Selecione um tipo de suporte',
|
|
797
|
+
'Product Recommendations': 'Recomendações de produtos',
|
|
798
|
+
'Phone number': 'Número de telefone',
|
|
799
|
+
// Email: 'E-mail',
|
|
800
|
+
'Our response time is': 'Nosso tempo de resposta é',
|
|
801
|
+
'or as in your Service Level Agreement (SLA)': 'ou conforme seu Contrato de nível de serviço (SLA)',
|
|
802
|
+
'View case': 'Ver caso',
|
|
803
|
+
'Update info': 'Atualizar informações',
|
|
751
804
|
};
|
|
@@ -785,6 +785,14 @@ declare const _default: {
|
|
|
785
785
|
'Is this contact information correct?': string;
|
|
786
786
|
'Troubleshoot this case': string;
|
|
787
787
|
Summarize: string;
|
|
788
|
+
'These changes to your phone number affect only this case.': string;
|
|
789
|
+
'Please select a support type': string;
|
|
790
|
+
'Product Recommendations': string;
|
|
791
|
+
'Phone number': string;
|
|
792
|
+
'Our response time is': string;
|
|
793
|
+
'or as in your Service Level Agreement (SLA)': string;
|
|
794
|
+
'View case': string;
|
|
795
|
+
'Update info': string;
|
|
788
796
|
};
|
|
789
797
|
export default _default;
|
|
790
798
|
//# 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":"
|
|
1
|
+
{"version":3,"file":"template-zh.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-zh.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA82BE"}
|
|
@@ -789,4 +789,12 @@ export default {
|
|
|
789
789
|
'Is this contact information correct?': '此联系信息是否正确?',
|
|
790
790
|
'Troubleshoot this case': '对此问题进行故障排除',
|
|
791
791
|
Summarize: '总结',
|
|
792
|
+
'These changes to your phone number affect only this case.': '这些对您电话号码的更改仅影响此案例.',
|
|
793
|
+
'Please select a support type': '请选择一个支持类型',
|
|
794
|
+
'Product Recommendations': '产品建议',
|
|
795
|
+
'Phone number': '电话号码',
|
|
796
|
+
'Our response time is': '我们的响应时间是',
|
|
797
|
+
'or as in your Service Level Agreement (SLA)': '或按照您的服务水平协议(SLA)',
|
|
798
|
+
'View case': '查看问题单',
|
|
799
|
+
'Update info': '更新信息',
|
|
792
800
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseReducer.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseReducer.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,qDAAqD,CAAC;AACnF,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,yCAAyC,CAAC;AAEtH,OAAO,EAAE,QAAQ,EAAE,MAAM,wCAAwC,CAAC;AAClE,OAAO,EAAE,0BAA0B,EAA+B,MAAM,qCAAqC,CAAC;AAC9G,OAAO,EAAE,QAAQ,EAAE,MAAM,wCAAwC,CAAC;AAClE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AAE/E,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;
|
|
1
|
+
{"version":3,"file":"CaseReducer.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseReducer.ts"],"names":[],"mappings":"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"}
|
|
@@ -10,6 +10,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
10
10
|
import { accounts, contacts, kase, pcm, publicApi } from '@cee-eng/hydrajs';
|
|
11
11
|
import { formattedApiErrorMessage } from '@rh-support/components';
|
|
12
12
|
import { getApiResourceObject } from '@rh-support/utils';
|
|
13
|
+
import { isUndefined } from 'lodash';
|
|
13
14
|
import filter from 'lodash/filter';
|
|
14
15
|
import find from 'lodash/find';
|
|
15
16
|
import isEmpty from 'lodash/isEmpty';
|
|
@@ -493,9 +494,14 @@ const getSelectedNotificationContactsFromSession = (contacts, notifiedUsers) =>
|
|
|
493
494
|
export const updateCaseWithSession = (dispatch, sessionItem, loggedInUserAccountNumber, loggedInUserContact, loggedInUserAccount = {}) => __awaiter(void 0, void 0, void 0, function* () {
|
|
494
495
|
var _e, _f, _g, _h;
|
|
495
496
|
const caseDetails = getCaseFromSessionDetails(sessionItem, loggedInUserAccountNumber, loggedInUserContact.ssoUsername);
|
|
497
|
+
const { sessionDetails } = sessionItem;
|
|
496
498
|
setCaseDetails(dispatch, caseDetails);
|
|
497
499
|
setCaseAccountNumber(dispatch, caseDetails.accountNumberRef, caseDetails.accountNumberRef === loggedInUserAccountNumber, loggedInUserAccount);
|
|
498
|
-
|
|
500
|
+
// entitlementSla gets undefined when case group, owner or product is changed
|
|
501
|
+
// Please refer line 60
|
|
502
|
+
if (isUndefined(caseDetails.entitlementSla)) {
|
|
503
|
+
setCaseDetails(dispatch, { entitlementSla: sessionDetails.sla });
|
|
504
|
+
}
|
|
499
505
|
// Set owner and Notified users
|
|
500
506
|
const notifiedUsersExternal = (_f = (_e = sessionDetails.notifiedUsersExternal) === null || _e === void 0 ? void 0 : _e.split(',')) !== null && _f !== void 0 ? _f : [];
|
|
501
507
|
const notifiedUsersInternal = (_h = (_g = sessionDetails.notifiedUsersInternal) === null || _g === void 0 ? void 0 : _g.split(',')) !== null && _h !== void 0 ? _h : [];
|
|
@@ -628,7 +628,11 @@ button.pf-v5-c-toggle-group__button {
|
|
|
628
628
|
|
|
629
629
|
.top-content-suggestion-accordion {
|
|
630
630
|
.pf-v5-c-accordion .pf-v5-c-accordion__toggle {
|
|
631
|
-
padding:
|
|
631
|
+
padding: 10px 20px 10px 20px !important;
|
|
632
|
+
}
|
|
633
|
+
.pf-v5-c-accordion__toggle-text h3 {
|
|
634
|
+
font-size: 17px !important;
|
|
635
|
+
font-weight: 600;
|
|
632
636
|
}
|
|
633
637
|
.pf-v5-c-accordion__expandable-content-body {
|
|
634
638
|
padding-top: 4px;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/troubleshoot",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.64",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -26,13 +26,12 @@
|
|
|
26
26
|
"lib/**/*"
|
|
27
27
|
],
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"@cee-eng/hydrajs": "4.
|
|
29
|
+
"@cee-eng/hydrajs": "4.17.1",
|
|
30
30
|
"@cee-eng/ui-toolkit": "1.1.6",
|
|
31
31
|
"@patternfly/patternfly": "5.1.0",
|
|
32
32
|
"@patternfly/react-core": "5.1.1",
|
|
33
33
|
"dompurify": "^2.2.6",
|
|
34
34
|
"downshift": "^6.0.5",
|
|
35
|
-
"i18next": "^19.0.1",
|
|
36
35
|
"js-markdown-extra": "^1.2.4",
|
|
37
36
|
"js-worker-search": "^1.4.1",
|
|
38
37
|
"lazysizes": "^5.3.2",
|
|
@@ -45,14 +44,14 @@
|
|
|
45
44
|
"react-bootstrap-typeahead": "^5.1.4",
|
|
46
45
|
"react-dom": "17.0.2",
|
|
47
46
|
"react-dropzone": "^10.2.1",
|
|
48
|
-
"react-i18next": "^
|
|
47
|
+
"react-i18next": "^12.3.1",
|
|
49
48
|
"react-redux": "^7.2.2",
|
|
50
49
|
"react-router-dom": "^5.1.2",
|
|
51
50
|
"react-test-renderer": "17.0.2",
|
|
52
51
|
"react-virtualized": "9.22.5"
|
|
53
52
|
},
|
|
54
53
|
"dependencies": {
|
|
55
|
-
"@cee-eng/hydrajs": "4.
|
|
54
|
+
"@cee-eng/hydrajs": "4.17.1",
|
|
56
55
|
"@cee-eng/ui-toolkit": "1.1.6",
|
|
57
56
|
"@patternfly/patternfly": "5.1.0",
|
|
58
57
|
"@patternfly/react-core": "5.1.1",
|
|
@@ -60,16 +59,15 @@
|
|
|
60
59
|
"@progress/kendo-drawing": "^1.6.0",
|
|
61
60
|
"@progress/kendo-licensing": "1.3.5",
|
|
62
61
|
"@progress/kendo-react-pdf": "4.6.0",
|
|
63
|
-
"@rh-support/components": "2.1.
|
|
64
|
-
"@rh-support/react-context": "2.1.
|
|
62
|
+
"@rh-support/components": "2.1.35",
|
|
63
|
+
"@rh-support/react-context": "2.1.38",
|
|
65
64
|
"@rh-support/types": "2.0.2",
|
|
66
|
-
"@rh-support/user-permissions": "2.1.
|
|
67
|
-
"@rh-support/utils": "2.1.
|
|
65
|
+
"@rh-support/user-permissions": "2.1.25",
|
|
66
|
+
"@rh-support/utils": "2.1.17",
|
|
68
67
|
"@types/react-redux": "^7.1.12",
|
|
69
68
|
"@types/redux": "^3.6.0",
|
|
70
69
|
"dompurify": "^2.4.1",
|
|
71
70
|
"downshift": "^6.0.5",
|
|
72
|
-
"i18next": "^19.0.1",
|
|
73
71
|
"js-markdown-extra": "^1.2.4",
|
|
74
72
|
"js-worker-search": "^1.4.1",
|
|
75
73
|
"lazysizes": "^5.3.2",
|
|
@@ -82,7 +80,7 @@
|
|
|
82
80
|
"react-bootstrap-typeahead": "^5.1.4",
|
|
83
81
|
"react-dom": "17.0.2",
|
|
84
82
|
"react-dropzone": "^10.2.1",
|
|
85
|
-
"react-i18next": "^
|
|
83
|
+
"react-i18next": "^12.3.1",
|
|
86
84
|
"react-redux": "^7.2.2",
|
|
87
85
|
"react-router-dom": "^5.1.2",
|
|
88
86
|
"react-test-renderer": "17.0.2",
|
|
@@ -96,7 +94,6 @@
|
|
|
96
94
|
"@testing-library/react": "^12.0.0",
|
|
97
95
|
"@testing-library/user-event": "^13.1.9",
|
|
98
96
|
"@types/dompurify": "^2.2.1",
|
|
99
|
-
"@types/i18next": "^12.1.0",
|
|
100
97
|
"@types/lodash": "^4.14.136",
|
|
101
98
|
"@types/qs": "^6.9.1",
|
|
102
99
|
"@types/react": "^17.0.14",
|
|
@@ -125,5 +122,5 @@
|
|
|
125
122
|
"defaults and supports es6-module",
|
|
126
123
|
"maintained node versions"
|
|
127
124
|
],
|
|
128
|
-
"gitHead": "
|
|
125
|
+
"gitHead": "6ccb5b388d58ad076886f1da22615f3225d667f6"
|
|
129
126
|
}
|