@rh-support/troubleshoot 2.6.75 → 2.6.77

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/lib/esm/components/CaseEditView/RequestRemoteSession/NewEssTermsModal.d.ts.map +1 -1
  2. package/lib/esm/components/CaseEditView/RequestRemoteSession/NewEssTermsModal.js +36 -15
  3. package/lib/esm/components/CaseEditView/RequestRemoteSession/RemoteSessionAgreementModal.d.ts.map +1 -1
  4. package/lib/esm/components/CaseEditView/RequestRemoteSession/RemoteSessionAgreementModal.js +36 -13
  5. package/lib/esm/components/TroubleshootSection/AskRedHat.d.ts.map +1 -1
  6. package/lib/esm/components/TroubleshootSection/AskRedHat.js +54 -17
  7. package/lib/esm/components/TroubleshootSection/TroubleshootSection.d.ts.map +1 -1
  8. package/lib/esm/components/TroubleshootSection/TroubleshootSection.js +4 -0
  9. package/lib/esm/components/TroubleshootSection/UserFeedback.d.ts.map +1 -1
  10. package/lib/esm/components/TroubleshootSection/UserFeedback.js +5 -1
  11. package/lib/esm/components/shared/fileUpload/fileSelectors/WidgetFileSelector.js +1 -1
  12. package/lib/esm/components/shared/fileUpload/fileSelectors/WidgetFileSelectorImage.js +1 -1
  13. package/lib/esm/components/wizardLayout/WizardNavigation.d.ts.map +1 -1
  14. package/lib/esm/components/wizardLayout/WizardNavigation.js +4 -3
  15. package/lib/esm/constants/askRedHatMessages.d.ts +12 -12
  16. package/lib/esm/constants/askRedHatMessages.d.ts.map +1 -1
  17. package/lib/esm/constants/askRedHatMessages.js +45 -20
  18. package/lib/esm/css/AskRedHat.css +10 -0
  19. package/lib/esm/hooks/useARHResponse.d.ts.map +1 -1
  20. package/lib/esm/hooks/useARHResponse.js +17 -2
  21. package/lib/esm/i18n/template-de.d.ts +33 -0
  22. package/lib/esm/i18n/template-de.d.ts.map +1 -1
  23. package/lib/esm/i18n/template-de.js +33 -0
  24. package/lib/esm/i18n/template-es.d.ts +33 -0
  25. package/lib/esm/i18n/template-es.d.ts.map +1 -1
  26. package/lib/esm/i18n/template-es.js +33 -0
  27. package/lib/esm/i18n/template-fr.d.ts +33 -0
  28. package/lib/esm/i18n/template-fr.d.ts.map +1 -1
  29. package/lib/esm/i18n/template-fr.js +33 -0
  30. package/lib/esm/i18n/template-it.d.ts +33 -0
  31. package/lib/esm/i18n/template-it.d.ts.map +1 -1
  32. package/lib/esm/i18n/template-it.js +33 -0
  33. package/lib/esm/i18n/template-jp.d.ts +33 -0
  34. package/lib/esm/i18n/template-jp.d.ts.map +1 -1
  35. package/lib/esm/i18n/template-jp.js +33 -0
  36. package/lib/esm/i18n/template-ko.d.ts +33 -0
  37. package/lib/esm/i18n/template-ko.d.ts.map +1 -1
  38. package/lib/esm/i18n/template-ko.js +33 -0
  39. package/lib/esm/i18n/template-pt.d.ts +33 -0
  40. package/lib/esm/i18n/template-pt.d.ts.map +1 -1
  41. package/lib/esm/i18n/template-pt.js +33 -0
  42. package/lib/esm/i18n/template-ru.d.ts +33 -0
  43. package/lib/esm/i18n/template-ru.d.ts.map +1 -1
  44. package/lib/esm/i18n/template-ru.js +33 -0
  45. package/lib/esm/i18n/template-zh.d.ts +33 -1
  46. package/lib/esm/i18n/template-zh.d.ts.map +1 -1
  47. package/lib/esm/i18n/template-zh.js +33 -1
  48. package/lib/esm/reducers/AIResponseConstNTypes.d.ts +12 -2
  49. package/lib/esm/reducers/AIResponseConstNTypes.d.ts.map +1 -1
  50. package/lib/esm/reducers/AIResponseConstNTypes.js +3 -0
  51. package/lib/esm/reducers/AIResponseReducer.d.ts +2 -1
  52. package/lib/esm/reducers/AIResponseReducer.d.ts.map +1 -1
  53. package/lib/esm/reducers/AIResponseReducer.js +9 -4
  54. package/package.json +7 -7
@@ -1,36 +1,61 @@
1
+ import i18next from 'i18next';
1
2
  export const QUICK_RESPONSES = {
2
- positive: [
3
- { id: '1', content: 'Solved my issue' },
4
- { id: '2', content: 'Easy to understand' },
5
- { id: '3', content: 'Accurate' },
6
- ],
7
- negative: [
8
- { id: '1', content: "Didn't solve my issue" },
9
- { id: '2', content: 'Confusing' },
10
- { id: '3', content: 'Inaccurate' },
11
- ],
3
+ get positive() {
4
+ return [
5
+ { id: '1', content: i18next.t('Solved my issue') },
6
+ { id: '2', content: i18next.t('Easy to understand') },
7
+ { id: '3', content: i18next.t('Accurate') },
8
+ ];
9
+ },
10
+ get negative() {
11
+ return [
12
+ { id: '1', content: i18next.t("Didn't solve my issue") },
13
+ { id: '2', content: i18next.t('Confusing') },
14
+ { id: '3', content: i18next.t('Inaccurate') },
15
+ ];
16
+ },
12
17
  };
13
18
  export const TOOLTIP_MESSAGES = {
14
19
  positive: {
15
- tooltipContent: 'Good response',
16
- clickedTooltipContent: 'Response recorded as helpful',
20
+ get tooltipContent() {
21
+ return i18next.t('Good response');
22
+ },
23
+ get clickedTooltipContent() {
24
+ return i18next.t('Response recorded as helpful');
25
+ },
17
26
  },
18
27
  negative: {
19
- tooltipContent: 'Bad response',
20
- clickedTooltipContent: 'Response recorded as unhelpful',
28
+ get tooltipContent() {
29
+ return i18next.t('Bad response');
30
+ },
31
+ get clickedTooltipContent() {
32
+ return i18next.t('Response recorded as unhelpful');
33
+ },
21
34
  },
22
35
  copy: {
23
- tooltipContent: 'Copy',
24
- clickedTooltipContent: 'Response copied',
36
+ get tooltipContent() {
37
+ return i18next.t('Copy');
38
+ },
39
+ get clickedTooltipContent() {
40
+ return i18next.t('Response copied');
41
+ },
25
42
  },
26
43
  };
27
44
  export const MODAL_MESSAGES = {
28
45
  feedback: {
29
- positive: '<strong>Thank you. Any more feedback?</strong>',
30
- negative: '<strong>Thank you. How can we improve?</strong>',
46
+ get positive() {
47
+ return i18next.t('<strong>Thank you. Any more feedback?</strong>');
48
+ },
49
+ get negative() {
50
+ return i18next.t('<strong>Thank you. How can we improve?</strong>');
51
+ },
31
52
  },
32
53
  complete: {
33
- title: '<strong>Thank you</strong>',
34
- body: 'We appreciate your input. <br />It helps us improve this experience.',
54
+ get title() {
55
+ return i18next.t('<strong>Thank you</strong>');
56
+ },
57
+ get body() {
58
+ return i18next.t('We appreciate your input. <br />It helps us improve this experience.');
59
+ },
35
60
  },
36
61
  };
@@ -85,6 +85,16 @@
85
85
  padding: 12px 24px;
86
86
  }
87
87
 
88
+ .ask-redhat-rate-limit-error {
89
+ border: 1px solid #c7c7c7;
90
+ border-radius: 6px;
91
+ padding: 24px;
92
+ }
93
+
94
+ .ask-redhat-rate-limit-error > .pf-v6-c-empty-state {
95
+ padding: 0 !important;
96
+ }
97
+
88
98
  :root {
89
99
  --color-red: var(--Core-color-palette-Red-red-40, #f56e6e);
90
100
  --color-purple: var(--Secondary-color-palette-Purple-purple-50, #5e40be);
@@ -1 +1 @@
1
- {"version":3,"file":"useARHResponse.d.ts","sourceRoot":"","sources":["../../../src/hooks/useARHResponse.ts"],"names":[],"mappings":"AAeA;;GAEG;AACH,eAAO,MAAM,cAAc,2EAQxB;IACC,aAAa,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,GAAG,CAAC;CACf;;CA+EA,CAAC"}
1
+ {"version":3,"file":"useARHResponse.d.ts","sourceRoot":"","sources":["../../../src/hooks/useARHResponse.ts"],"names":[],"mappings":"AAqBA;;GAEG;AACH,eAAO,MAAM,cAAc,2EAQxB;IACC,aAAa,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,GAAG,CAAC;CACf;;CAgGA,CAAC"}
@@ -7,13 +7,13 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
7
7
  step((generator = generator.apply(thisArg, _arguments || [])).next());
8
8
  });
9
9
  };
10
- import { askRHDirectAIResponse } from '@ifd-ui/ask-redhat-core';
10
+ import { askRHDirectAIResponse, getRHDirectConversationQuota, } from '@ifd-ui/ask-redhat-core';
11
11
  import i18n from 'i18next';
12
12
  import { useCallback, useContext } from 'react';
13
13
  import { generateAIQuestion } from '../components/wizardLayout/WizardMain';
14
14
  import { useAIResponseDispatch } from '../context/AIResponseContext';
15
15
  import { SessionRestoreDispatchContext, SessionRestoreStateContext } from '../context/SessionRestoreContext';
16
- import { streamingChunkReceived, streamingCompleted, streamingError, streamingStarted, } from '../reducers/AIResponseReducer';
16
+ import { streamingChunkReceived, streamingCompleted, streamingError, streamingStarted, updateQuotaLimit, } from '../reducers/AIResponseReducer';
17
17
  import { updateSession } from '../reducers/SessionRestoreReducer';
18
18
  /**
19
19
  * Custom hook to prompt from the Ask Red Hat
@@ -24,6 +24,21 @@ export const useARHResponse = ({ activeSection, product, version, summary, issue
24
24
  const sessionRestoreDispatch = useContext(SessionRestoreDispatchContext);
25
25
  const fetchARHResponse = useCallback(() => __awaiter(void 0, void 0, void 0, function* () {
26
26
  var _a;
27
+ try {
28
+ // Check conversation quota
29
+ const quotaResponse = yield getRHDirectConversationQuota(config);
30
+ // Update quota limit in state
31
+ aiResponseDispatch(updateQuotaLimit(quotaResponse.quota.limit));
32
+ // Check if quota is exceeded
33
+ if (quotaResponse.quota.used >= quotaResponse.quota.limit) {
34
+ aiResponseDispatch(streamingError('Chat limit reached', true));
35
+ return;
36
+ }
37
+ }
38
+ catch (quotaError) {
39
+ // If quota check fails, continue with the request
40
+ console.error('Failed to check conversation quota:', quotaError);
41
+ }
27
42
  const detailedQuestion = generateAIQuestion(activeSection || '', product, version, summary, issue, caseType || '', i18n.language || 'en');
28
43
  // Streaming callbacks
29
44
  const streamingCallbacks = {
@@ -799,6 +799,39 @@ declare const _default: {
799
799
  'Update info': string;
800
800
  Summarize: string;
801
801
  'Describe more': string;
802
+ 'AI insights is currently unavailable, try reloading.': string;
803
+ 'Back to resources': string;
804
+ 'Chat with AI': string;
805
+ 'Chat with AI to get started': string;
806
+ 'Error while loading AI insights': string;
807
+ 'Getting AI insights...': string;
808
+ 'No AI response available yet.': string;
809
+ 'No recommendations for this product': string;
810
+ PREVIEW: string;
811
+ 'Read more': string;
812
+ 'Red Hat hand picked support articles': string;
813
+ Reload: string;
814
+ 'Resolve your issue now with AI insights': string;
815
+ 'Support articles are matched to the product and version details you selected, not the problem details you entered.': string;
816
+ 'Troubleshoot with AI insights': string;
817
+ 'Want to continue the conversation? Dive deeper with our AI assistant': string;
818
+ 'Why did you choose this rating?': string;
819
+ '<strong>Thank you. Any more feedback?</strong>': string;
820
+ '<strong>Thank you. How can we improve?</strong>': string;
821
+ '<strong>Thank you</strong>': string;
822
+ Accurate: string;
823
+ 'Bad response': string;
824
+ Confusing: string;
825
+ Copy: string;
826
+ "Didn't solve my issue": string;
827
+ 'Easy to understand': string;
828
+ 'Good response': string;
829
+ Inaccurate: string;
830
+ 'Response copied': string;
831
+ 'Response recorded as helpful': string;
832
+ 'Response recorded as unhelpful': string;
833
+ 'Solved my issue': string;
834
+ 'We appreciate your input. <br />It helps us improve this experience.': string;
802
835
  };
803
836
  export default _default;
804
837
  //# sourceMappingURL=template-de.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"template-de.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-de.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAs7BE"}
1
+ {"version":3,"file":"template-de.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-de.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA29BE"}
@@ -802,4 +802,37 @@ export default {
802
802
  Summarize: 'Zusammenfassen',
803
803
  'Describe more': 'Mehr beschreiben',
804
804
  // Review: 'Überprüfung',
805
+ 'AI insights is currently unavailable, try reloading.': 'AI insights ist derzeit nicht verfügbar. Versuchen Sie, es erneut zu laden.',
806
+ 'Back to resources': 'Zurück zu den Ressourcen',
807
+ 'Chat with AI': 'Mit KI chatten',
808
+ 'Chat with AI to get started': 'Chatten Sie mit der KI, um zu beginnen',
809
+ 'Error while loading AI insights': 'Fehler beim Laden von AI insights',
810
+ 'Getting AI insights...': 'AI insights wird abgerufen...',
811
+ 'No AI response available yet.': 'Noch keine KI-Antwort verfügbar.',
812
+ 'No recommendations for this product': 'Keine Empfehlungen für dieses Produkt',
813
+ PREVIEW: 'VORSCHAU',
814
+ 'Read more': 'Mehr erfahren',
815
+ 'Red Hat hand picked support articles': 'Von Red Hat ausgesuchte Support-Artikel',
816
+ Reload: 'Neu laden',
817
+ 'Resolve your issue now with AI insights': 'Lösen Sie Ihr Problem jetzt mit AI insights',
818
+ 'Support articles are matched to the product and version details you selected, not the problem details you entered.': 'Support-Artikel werden den von Ihnen ausgewählten Produkt- und Versionsdetails zugeordnet, nicht den von Ihnen eingegebenen Problemdetails.',
819
+ 'Troubleshoot with AI insights': 'Fehlerbehebung mit AI insights',
820
+ 'Want to continue the conversation? Dive deeper with our AI assistant': 'Möchten Sie die Unterhaltung fortsetzen? Tauchen Sie mit unserem KI-Assistenten noch tiefer ein',
821
+ 'Why did you choose this rating?': 'Warum haben Sie diese Bewertung gewählt?',
822
+ '<strong>Thank you. Any more feedback?</strong>': '<strong>Vielen Dank. Haben Sie noch weiteres Feedback?</strong>',
823
+ '<strong>Thank you. How can we improve?</strong>': '<strong>Vielen Dank. Wie können wir uns verbessern?</strong>',
824
+ '<strong>Thank you</strong>': '<strong>Vielen Dank</strong>',
825
+ Accurate: 'Richtig',
826
+ 'Bad response': 'Schlechte Antwort',
827
+ Confusing: 'Verwirrend',
828
+ Copy: 'Kopie',
829
+ "Didn't solve my issue": 'Hat mein Problem nicht gelöst',
830
+ 'Easy to understand': 'Leicht verständlich',
831
+ 'Good response': 'Gute Antwort',
832
+ Inaccurate: 'Ungenau',
833
+ 'Response copied': 'Antwort kopiert',
834
+ 'Response recorded as helpful': 'Antwort als hilfreich erfasst',
835
+ 'Response recorded as unhelpful': 'Antwort als nicht hilfreich erfasst',
836
+ 'Solved my issue': 'Mein Problem wurde gelöst',
837
+ 'We appreciate your input. <br />It helps us improve this experience.': 'Wir freuen uns über Ihren Beitrag. <br />Er hilft uns, diese Erfahrung zu verbessern.',
805
838
  };
@@ -798,6 +798,39 @@ declare const _default: {
798
798
  'Update info': string;
799
799
  Summarize: string;
800
800
  'Describe more': string;
801
+ 'AI insights is currently unavailable, try reloading.': string;
802
+ 'Back to resources': string;
803
+ 'Chat with AI': string;
804
+ 'Chat with AI to get started': string;
805
+ 'Error while loading AI insights': string;
806
+ 'Getting AI insights...': string;
807
+ 'No AI response available yet.': string;
808
+ 'No recommendations for this product': string;
809
+ PREVIEW: string;
810
+ 'Read more': string;
811
+ 'Red Hat hand picked support articles': string;
812
+ Reload: string;
813
+ 'Resolve your issue now with AI insights': string;
814
+ 'Support articles are matched to the product and version details you selected, not the problem details you entered.': string;
815
+ 'Troubleshoot with AI insights': string;
816
+ 'Want to continue the conversation? Dive deeper with our AI assistant': string;
817
+ 'Why did you choose this rating?': string;
818
+ '<strong>Thank you. Any more feedback?</strong>': string;
819
+ '<strong>Thank you. How can we improve?</strong>': string;
820
+ '<strong>Thank you</strong>': string;
821
+ Accurate: string;
822
+ 'Bad response': string;
823
+ Confusing: string;
824
+ Copy: string;
825
+ "Didn't solve my issue": string;
826
+ 'Easy to understand': string;
827
+ 'Good response': string;
828
+ Inaccurate: string;
829
+ 'Response copied': string;
830
+ 'Response recorded as helpful': string;
831
+ 'Response recorded as unhelpful': string;
832
+ 'Solved my issue': string;
833
+ 'We appreciate your input. <br />It helps us improve this experience.': string;
801
834
  };
802
835
  export default _default;
803
836
  //# sourceMappingURL=template-es.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"template-es.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-es.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAy7BE"}
1
+ {"version":3,"file":"template-es.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-es.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA89BE"}
@@ -800,4 +800,37 @@ export default {
800
800
  'Update info': 'Actualice la información',
801
801
  Summarize: 'Resumir',
802
802
  'Describe more': 'Describir más',
803
+ 'AI insights is currently unavailable, try reloading.': 'Actualmente, AI Insights no está disponible; intente volver a cargar.',
804
+ 'Back to resources': 'Volver a los recursos',
805
+ 'Chat with AI': 'Chatear con la IA',
806
+ 'Chat with AI to get started': 'Chatear con la IA para comenzar',
807
+ 'Error while loading AI insights': 'Error al cargar AI Insights',
808
+ 'Getting AI insights...': 'Obteniendo AI Insights…',
809
+ 'No AI response available yet.': 'Todavía no hay ninguna respuesta de la IA disponible.',
810
+ 'No recommendations for this product': 'No hay recomendaciones para este producto',
811
+ PREVIEW: 'VISTA PREVIA',
812
+ 'Read more': 'Leer más',
813
+ 'Red Hat hand picked support articles': 'Artículos de soporte seleccionados por Red Hat',
814
+ Reload: 'Volver a cargar',
815
+ 'Resolve your issue now with AI insights': 'Resuelva su problema ahora con AI Insights',
816
+ 'Support articles are matched to the product and version details you selected, not the problem details you entered.': 'Los artículos de soporte coinciden con los detalles del producto y la versión que seleccionó, no con los detalles del problema que ingresó.',
817
+ 'Troubleshoot with AI insights': 'Solucionar problemas con AI Insights',
818
+ 'Want to continue the conversation? Dive deeper with our AI assistant': '¿Desea continuar con la conversación? Profundice con nuestro asistente de IA',
819
+ 'Why did you choose this rating?': '¿Por qué eligió esta calificación?',
820
+ '<strong>Thank you. Any more feedback?</strong>': '<strong>Gracias. ¿Tiene más comentarios?</strong>',
821
+ '<strong>Thank you. How can we improve?</strong>': '<strong>Gracias. ¿Cómo podemos mejorar?</strong>',
822
+ '<strong>Thank you</strong>': '<strong>Gracias</strong>',
823
+ Accurate: 'Preciso',
824
+ 'Bad response': 'Mala respuesta',
825
+ Confusing: 'Confuso',
826
+ Copy: 'Copiar',
827
+ "Didn't solve my issue": 'No resolvió mi problema',
828
+ 'Easy to understand': 'Fácil de entender',
829
+ 'Good response': 'Buena respuesta',
830
+ Inaccurate: 'Incorrecto',
831
+ 'Response copied': 'Respuesta copiada',
832
+ 'Response recorded as helpful': 'Respuesta registrada como útil',
833
+ 'Response recorded as unhelpful': 'Respuesta registrada como inútil',
834
+ 'Solved my issue': 'Resolvió mi problema',
835
+ 'We appreciate your input. <br />It helps us improve this experience.': 'Agradecemos tu aporte. <br/>Nos ayuda a mejorar esta experiencia.',
803
836
  };
@@ -797,6 +797,39 @@ declare const _default: {
797
797
  'or as in your Service Level Agreement (SLA)': string;
798
798
  'View case': string;
799
799
  'Update info': string;
800
+ 'AI insights is currently unavailable, try reloading.': string;
801
+ 'Back to resources': string;
802
+ 'Chat with AI': string;
803
+ 'Chat with AI to get started': string;
804
+ 'Error while loading AI insights': string;
805
+ 'Getting AI insights...': string;
806
+ 'No AI response available yet.': string;
807
+ 'No recommendations for this product': string;
808
+ PREVIEW: string;
809
+ 'Read more': string;
810
+ 'Red Hat hand picked support articles': string;
811
+ Reload: string;
812
+ 'Resolve your issue now with AI insights': string;
813
+ 'Support articles are matched to the product and version details you selected, not the problem details you entered.': string;
814
+ 'Troubleshoot with AI insights': string;
815
+ 'Want to continue the conversation? Dive deeper with our AI assistant': string;
816
+ 'Why did you choose this rating?': string;
817
+ '<strong>Thank you. Any more feedback?</strong>': string;
818
+ '<strong>Thank you. How can we improve?</strong>': string;
819
+ '<strong>Thank you</strong>': string;
820
+ Accurate: string;
821
+ 'Bad response': string;
822
+ Confusing: string;
823
+ Copy: string;
824
+ "Didn't solve my issue": string;
825
+ 'Easy to understand': string;
826
+ 'Good response': string;
827
+ Inaccurate: string;
828
+ 'Response copied': string;
829
+ 'Response recorded as helpful': string;
830
+ 'Response recorded as unhelpful': string;
831
+ 'Solved my issue': string;
832
+ 'We appreciate your input. <br />It helps us improve this experience.': string;
800
833
  };
801
834
  export default _default;
802
835
  //# sourceMappingURL=template-fr.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"template-fr.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-fr.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAg8BE"}
1
+ {"version":3,"file":"template-fr.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-fr.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAq+BE"}
@@ -802,4 +802,37 @@ export default {
802
802
  'or as in your Service Level Agreement (SLA)': 'ou selon votre SLA contractuel',
803
803
  'View case': 'Voir le cas',
804
804
  'Update info': 'Mise à jour des informations',
805
+ 'AI insights is currently unavailable, try reloading.': "Les informations sur l'IA ne sont pas actuellement disponibles, essayez de charger à nouveau.",
806
+ 'Back to resources': 'Retour aux ressources',
807
+ 'Chat with AI': "Discuter avec l'IA",
808
+ 'Chat with AI to get started': "Discutez avec l'IA pour commencer",
809
+ 'Error while loading AI insights': 'Erreur lors du chargement des informations AI',
810
+ 'Getting AI insights...': "Obtenir des informations sur l'IA...",
811
+ 'No AI response available yet.': "Aucune réponse de l'IA n'est encore disponible.",
812
+ 'No recommendations for this product': 'Aucune recommandation pour ce produit',
813
+ PREVIEW: 'APERÇU',
814
+ 'Read more': 'En savoir plus',
815
+ 'Red Hat hand picked support articles': 'Articles de support soigneusement sélectionnés par Red Hat',
816
+ Reload: 'Chargez à nouveau',
817
+ 'Resolve your issue now with AI insights': "Résolvez votre problème maintenant grâce aux informations de l'IA",
818
+ 'Support articles are matched to the product and version details you selected, not the problem details you entered.': "Les articles d'assistance correspondent aux détails du produit et de la version que vous avez sélectionnés, et non aux détails du problème que vous avez saisis.",
819
+ 'Troubleshoot with AI insights': "Dépannage grâce aux informations de l'IA",
820
+ 'Want to continue the conversation? Dive deeper with our AI assistant': 'Envie de poursuivre la conversation ? Approfondissez vos connaissances avec notre assistant IA.',
821
+ 'Why did you choose this rating?': 'Pourquoi avez-vous choisi cette note ?',
822
+ '<strong>Thank you. Any more feedback?</strong>': "Merci. Avez-vous d'autres commentaires ?",
823
+ '<strong>Thank you. How can we improve?</strong>': 'Merci. Comment pouvons-nous nous améliorer ?',
824
+ '<strong>Thank you</strong>': '<strong>Merci</strong>',
825
+ Accurate: 'Précis',
826
+ 'Bad response': 'Mauvaise réponse',
827
+ Confusing: 'Déroutant',
828
+ Copy: 'Copie',
829
+ "Didn't solve my issue": "N'a pas résolu mon problème",
830
+ 'Easy to understand': 'Facile à comprendre',
831
+ 'Good response': 'Bonne réponse',
832
+ Inaccurate: 'Inexact(e)',
833
+ 'Response copied': 'Réponse copiée',
834
+ 'Response recorded as helpful': 'Réponse enregistrée comme utile',
835
+ 'Response recorded as unhelpful': 'Réponse enregistrée comme inutile',
836
+ 'Solved my issue': "J'ai résolu mon problème",
837
+ 'We appreciate your input. <br />It helps us improve this experience.': 'Nous apprécions votre contribution. <br />Cela nous aide à améliorer cette expérience.',
805
838
  };
@@ -800,6 +800,39 @@ declare const _default: {
800
800
  'Update info': string;
801
801
  Summarize: string;
802
802
  'Describe more': string;
803
+ 'AI insights is currently unavailable, try reloading.': string;
804
+ 'Back to resources': string;
805
+ 'Chat with AI': string;
806
+ 'Chat with AI to get started': string;
807
+ 'Error while loading AI insights': string;
808
+ 'Getting AI insights...': string;
809
+ 'No AI response available yet.': string;
810
+ 'No recommendations for this product': string;
811
+ PREVIEW: string;
812
+ 'Read more': string;
813
+ 'Red Hat hand picked support articles': string;
814
+ Reload: string;
815
+ 'Resolve your issue now with AI insights': string;
816
+ 'Support articles are matched to the product and version details you selected, not the problem details you entered.': string;
817
+ 'Troubleshoot with AI insights': string;
818
+ 'Want to continue the conversation? Dive deeper with our AI assistant': string;
819
+ 'Why did you choose this rating?': string;
820
+ '<strong>Thank you. Any more feedback?</strong>': string;
821
+ '<strong>Thank you. How can we improve?</strong>': string;
822
+ '<strong>Thank you</strong>': string;
823
+ Accurate: string;
824
+ 'Bad response': string;
825
+ Confusing: string;
826
+ Copy: string;
827
+ "Didn't solve my issue": string;
828
+ 'Easy to understand': string;
829
+ 'Good response': string;
830
+ Inaccurate: string;
831
+ 'Response copied': string;
832
+ 'Response recorded as helpful': string;
833
+ 'Response recorded as unhelpful': string;
834
+ 'Solved my issue': string;
835
+ 'We appreciate your input. <br />It helps us improve this experience.': string;
803
836
  };
804
837
  export default _default;
805
838
  //# sourceMappingURL=template-it.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"template-it.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-it.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA67BE"}
1
+ {"version":3,"file":"template-it.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-it.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAk+BE"}
@@ -802,4 +802,37 @@ export default {
802
802
  'Update info': 'Info aktualisieren',
803
803
  Summarize: 'Riassumere',
804
804
  'Describe more': 'Descrivere più dettagliatamente',
805
+ 'AI insights is currently unavailable, try reloading.': "Al momento le informazioni sull'intelligenza artificiale non sono disponibili. Prova a ricaricarle.",
806
+ 'Back to resources': 'Torna alle risorse',
807
+ 'Chat with AI': "Chatta con l'IA",
808
+ 'Chat with AI to get started': "Chatta con l'IA per iniziare",
809
+ 'Error while loading AI insights': "Errore durante il caricamento delle informazioni sull'IA",
810
+ 'Getting AI insights...': "Recupero informazioni dall'IA...",
811
+ 'No AI response available yet.': "Nessuna risposta dell'IA è ancora disponibile.",
812
+ 'No recommendations for this product': 'Nessun suggerimento per questo prodotto',
813
+ PREVIEW: 'ANTEPRIMA',
814
+ 'Read more': 'Per saperne di più',
815
+ 'Red Hat hand picked support articles': 'Articoli del supporto selezionati da Red Hat',
816
+ Reload: 'Ricarica',
817
+ 'Resolve your issue now with AI insights': "Risolvi subito il tuo problema con le informazioni dell'IA",
818
+ 'Support articles are matched to the product and version details you selected, not the problem details you entered.': 'Gli articoli del supporto vengono abbinati ai dettagli del prodotto e della versione selezionati, non ai dettagli del problema inseriti.',
819
+ 'Troubleshoot with AI insights': "Risoluzione dei problemi con informazioni basate sull'IA",
820
+ 'Want to continue the conversation? Dive deeper with our AI assistant': 'Vuoi continuare la conversazione? Approfondisci con il nostro assistente IA',
821
+ 'Why did you choose this rating?': 'Perché hai scelto questa valutazione?',
822
+ '<strong>Thank you. Any more feedback?</strong>': '<strong>Grazie. Hai altri commenti?</strong>',
823
+ '<strong>Thank you. How can we improve?</strong>': '<strong>Grazie. Come possiamo migliorare?</strong>',
824
+ '<strong>Thank you</strong>': '<strong>Grazie</strong>',
825
+ Accurate: 'Precisa',
826
+ 'Bad response': 'Risposta pessima',
827
+ Confusing: 'Confusa',
828
+ Copy: 'Copia',
829
+ "Didn't solve my issue": 'Non ha risolto il mio problema',
830
+ 'Easy to understand': 'Facile da capire',
831
+ 'Good response': 'Buona risposta',
832
+ Inaccurate: 'Imprecisa',
833
+ 'Response copied': 'Risposta copiata',
834
+ 'Response recorded as helpful': 'Risposta registrata come utile',
835
+ 'Response recorded as unhelpful': 'Risposta registrata come inutile',
836
+ 'Solved my issue': 'Ha risolto il mio problema',
837
+ 'We appreciate your input. <br />It helps us improve this experience.': 'Apprezziamo il tuo contributo. <br />Ci aiuta a migliorare questa esperienza.',
805
838
  };
@@ -803,6 +803,39 @@ declare const _default: {
803
803
  'View case': string;
804
804
  'Update info': string;
805
805
  'These changes to your phone number affect only this case.': string;
806
+ 'AI insights is currently unavailable, try reloading.': string;
807
+ 'Back to resources': string;
808
+ 'Chat with AI': string;
809
+ 'Chat with AI to get started': string;
810
+ 'Error while loading AI insights': string;
811
+ 'Getting AI insights...': string;
812
+ 'No AI response available yet.': string;
813
+ 'No recommendations for this product': string;
814
+ PREVIEW: string;
815
+ 'Read more': string;
816
+ 'Red Hat hand picked support articles': string;
817
+ Reload: string;
818
+ 'Resolve your issue now with AI insights': string;
819
+ 'Support articles are matched to the product and version details you selected, not the problem details you entered.': string;
820
+ 'Troubleshoot with AI insights': string;
821
+ 'Want to continue the conversation? Dive deeper with our AI assistant': string;
822
+ 'Why did you choose this rating?': string;
823
+ '<strong>Thank you. Any more feedback?</strong>': string;
824
+ '<strong>Thank you. How can we improve?</strong>': string;
825
+ '<strong>Thank you</strong>': string;
826
+ Accurate: string;
827
+ 'Bad response': string;
828
+ Confusing: string;
829
+ Copy: string;
830
+ "Didn't solve my issue": string;
831
+ 'Easy to understand': string;
832
+ 'Good response': string;
833
+ Inaccurate: string;
834
+ 'Response copied': string;
835
+ 'Response recorded as helpful': string;
836
+ 'Response recorded as unhelpful': string;
837
+ 'Solved my issue': string;
838
+ 'We appreciate your input. <br />It helps us improve this experience.': string;
806
839
  };
807
840
  export default _default;
808
841
  //# sourceMappingURL=template-jp.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"template-jp.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-jp.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA66BE"}
1
+ {"version":3,"file":"template-jp.d.ts","sourceRoot":"","sources":["../../../src/i18n/template-jp.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAm9BE"}
@@ -808,4 +808,37 @@ export default {
808
808
  'View case': 'ケースの表示',
809
809
  'Update info': '情報の更新',
810
810
  'These changes to your phone number affect only this case.': 'これらの電話番号への変更は、このケースにのみ影響します',
811
+ 'AI insights is currently unavailable, try reloading.': 'AI インサイトは現在利用できません。再読み込みしてください。',
812
+ 'Back to resources': 'リソースに戻る',
813
+ 'Chat with AI': 'AI とチャット',
814
+ 'Chat with AI to get started': 'AI とのチャットから始める',
815
+ 'Error while loading AI insights': 'AI インサイトの読み込み中にエラーが発生しました',
816
+ 'Getting AI insights...': 'AI インサイトを取得中...',
817
+ 'No AI response available yet.': 'AI の回答はまだ利用できません。',
818
+ 'No recommendations for this product': 'この製品に関する推奨事項はありません',
819
+ PREVIEW: 'プレビュー',
820
+ 'Read more': '続きを読む',
821
+ 'Red Hat hand picked support articles': 'Red Hat 厳選サポート記事',
822
+ Reload: '再読み込み',
823
+ 'Resolve your issue now with AI insights': 'AI インサイトで今すぐ問題を解決',
824
+ 'Support articles are matched to the product and version details you selected, not the problem details you entered.': 'サポート記事は、お客様が入力した問題の詳細ではなく、選択した製品とバージョンの詳細とマッチします。',
825
+ 'Troubleshoot with AI insights': 'AI インサイトによるトラブルシューティング',
826
+ 'Want to continue the conversation? Dive deeper with our AI assistant': '会話を続けますか? AI アシスタントでさらに深く掘り下げましょう',
827
+ 'Why did you choose this rating?': 'この評価を選んだ理由を教えてください。',
828
+ '<strong>Thank you. Any more feedback?</strong>': '<strong>ありがとうございます。他にご意見はありますか?</strong>',
829
+ '<strong>Thank you. How can we improve?</strong>': '<strong>ありがとうございます。改善点がありましたらお聞かせください。</strong>',
830
+ '<strong>Thank you</strong>': '<strong>ありがとうございます</strong>',
831
+ Accurate: '正確',
832
+ 'Bad response': '不適切な回答',
833
+ Confusing: 'わかりにくい',
834
+ Copy: 'コピー',
835
+ "Didn't solve my issue": '問題が解決しなかった',
836
+ 'Easy to understand': 'わかりやすい',
837
+ 'Good response': '適切な回答',
838
+ Inaccurate: '不正確',
839
+ 'Response copied': '回答をコピーしました',
840
+ 'Response recorded as helpful': '回答が役に立ったと記録されました',
841
+ 'Response recorded as unhelpful': '回答が役に立たないと記録されました',
842
+ 'Solved my issue': '問題が解決した',
843
+ 'We appreciate your input. <br />It helps us improve this experience.': 'ご意見をお寄せいただきありがとうございます。<br />この機能の改善に役立てさせていただきます。',
811
844
  };
@@ -801,6 +801,39 @@ declare const _default: {
801
801
  'or as in your Service Level Agreement (SLA)': string;
802
802
  'View case': string;
803
803
  'Update info': string;
804
+ 'AI insights is currently unavailable, try reloading.': string;
805
+ 'Back to resources': string;
806
+ 'Chat with AI': string;
807
+ 'Chat with AI to get started': string;
808
+ 'Error while loading AI insights': string;
809
+ 'Getting AI insights...': string;
810
+ 'No AI response available yet.': string;
811
+ 'No recommendations for this product': string;
812
+ PREVIEW: string;
813
+ 'Read more': string;
814
+ 'Red Hat hand picked support articles': string;
815
+ Reload: string;
816
+ 'Resolve your issue now with AI insights': string;
817
+ 'Support articles are matched to the product and version details you selected, not the problem details you entered.': string;
818
+ 'Troubleshoot with AI insights': string;
819
+ 'Want to continue the conversation? Dive deeper with our AI assistant': string;
820
+ 'Why did you choose this rating?': string;
821
+ '<strong>Thank you. Any more feedback?</strong>': string;
822
+ '<strong>Thank you. How can we improve?</strong>': string;
823
+ '<strong>Thank you</strong>': string;
824
+ Accurate: string;
825
+ 'Bad response': string;
826
+ Confusing: string;
827
+ Copy: string;
828
+ "Didn't solve my issue": string;
829
+ 'Easy to understand': string;
830
+ 'Good response': string;
831
+ Inaccurate: string;
832
+ 'Response copied': string;
833
+ 'Response recorded as helpful': string;
834
+ 'Response recorded as unhelpful': string;
835
+ 'Solved my issue': string;
836
+ 'We appreciate your input. <br />It helps us improve this experience.': string;
804
837
  };
805
838
  export default _default;
806
839
  //# sourceMappingURL=template-ko.d.ts.map