@red-hat-developer-hub/backstage-plugin-lightspeed 1.1.1 → 1.2.0

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 (73) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/README.md +26 -20
  3. package/dist/alpha.d.ts +24 -0
  4. package/dist/api/LightspeedApiClient.esm.js.map +1 -1
  5. package/dist/api/api.esm.js.map +1 -1
  6. package/dist/components/AttachmentContext.esm.js +12 -2
  7. package/dist/components/AttachmentContext.esm.js.map +1 -1
  8. package/dist/components/LightSpeedChat.esm.js +199 -39
  9. package/dist/components/LightSpeedChat.esm.js.map +1 -1
  10. package/dist/components/LightspeedChatBox.esm.js +70 -9
  11. package/dist/components/LightspeedChatBox.esm.js.map +1 -1
  12. package/dist/components/LightspeedChatBoxHeader.esm.js +84 -26
  13. package/dist/components/LightspeedChatBoxHeader.esm.js.map +1 -1
  14. package/dist/components/LightspeedChatContainer.esm.js +118 -0
  15. package/dist/components/LightspeedChatContainer.esm.js.map +1 -0
  16. package/dist/components/LightspeedDrawerContext.esm.js +6 -0
  17. package/dist/components/LightspeedDrawerContext.esm.js.map +1 -0
  18. package/dist/components/LightspeedDrawerProvider.esm.js +175 -0
  19. package/dist/components/LightspeedDrawerProvider.esm.js.map +1 -0
  20. package/dist/components/LightspeedDrawerStateExposer.esm.js +28 -0
  21. package/dist/components/LightspeedDrawerStateExposer.esm.js.map +1 -0
  22. package/dist/components/LightspeedFAB.esm.js +68 -0
  23. package/dist/components/LightspeedFAB.esm.js.map +1 -0
  24. package/dist/components/LightspeedIcon.esm.js +23 -2
  25. package/dist/components/LightspeedIcon.esm.js.map +1 -1
  26. package/dist/components/LightspeedPage.esm.js +5 -110
  27. package/dist/components/LightspeedPage.esm.js.map +1 -1
  28. package/dist/components/Router.esm.js +19 -0
  29. package/dist/components/Router.esm.js.map +1 -0
  30. package/dist/components/ToolCallContent.esm.js +217 -0
  31. package/dist/components/ToolCallContent.esm.js.map +1 -0
  32. package/dist/hooks/useConversationMessages.esm.js +136 -20
  33. package/dist/hooks/useConversationMessages.esm.js.map +1 -1
  34. package/dist/hooks/useLightspeedDrawerContext.esm.js +15 -0
  35. package/dist/hooks/useLightspeedDrawerContext.esm.js.map +1 -0
  36. package/dist/hooks/usePinnedChatsSettings.esm.js +118 -0
  37. package/dist/hooks/usePinnedChatsSettings.esm.js.map +1 -0
  38. package/dist/hooks/useSortSettings.esm.js +60 -0
  39. package/dist/hooks/useSortSettings.esm.js.map +1 -0
  40. package/dist/images/logo-black.svg +22 -0
  41. package/dist/images/rounded-logo.svg +22 -0
  42. package/dist/index.d.ts +52 -2
  43. package/dist/index.esm.js +4 -1
  44. package/dist/index.esm.js.map +1 -1
  45. package/dist/plugin.esm.js +44 -5
  46. package/dist/plugin.esm.js.map +1 -1
  47. package/dist/routes.esm.js +7 -2
  48. package/dist/routes.esm.js.map +1 -1
  49. package/dist/translations/de.esm.js +29 -1
  50. package/dist/translations/de.esm.js.map +1 -1
  51. package/dist/translations/es.esm.js +29 -1
  52. package/dist/translations/es.esm.js.map +1 -1
  53. package/dist/translations/fr.esm.js +120 -115
  54. package/dist/translations/fr.esm.js.map +1 -1
  55. package/dist/translations/index.esm.js +3 -1
  56. package/dist/translations/index.esm.js.map +1 -1
  57. package/dist/translations/it.esm.js +158 -0
  58. package/dist/translations/it.esm.js.map +1 -0
  59. package/dist/translations/ja.esm.js +158 -0
  60. package/dist/translations/ja.esm.js.map +1 -0
  61. package/dist/translations/ref.esm.js +29 -1
  62. package/dist/translations/ref.esm.js.map +1 -1
  63. package/dist/types.esm.js.map +1 -1
  64. package/dist/utils/lightspeed-chatbox-utils.esm.js +24 -5
  65. package/dist/utils/lightspeed-chatbox-utils.esm.js.map +1 -1
  66. package/dist/utils/reasoningParser.esm.js +46 -0
  67. package/dist/utils/reasoningParser.esm.js.map +1 -0
  68. package/dist/utils/toolCallMapper.esm.js +15 -0
  69. package/dist/utils/toolCallMapper.esm.js.map +1 -0
  70. package/dist/utils/user-utils.esm.js +7 -0
  71. package/dist/utils/user-utils.esm.js.map +1 -0
  72. package/package.json +9 -4
  73. package/app-config.yaml +0 -18
@@ -0,0 +1,158 @@
1
+ import { createTranslationMessages } from '@backstage/core-plugin-api/alpha';
2
+ import { lightspeedTranslationRef } from './ref.esm.js';
3
+
4
+ const lightspeedTranslationIt = createTranslationMessages({
5
+ ref: lightspeedTranslationRef,
6
+ messages: {
7
+ "page.title": "Lightspeed",
8
+ "page.subtitle": "Assistente allo sviluppo basato sull'intelligenza artificiale",
9
+ "prompts.codeReadability.title": "Ottenere aiuto sulla leggibilit\xE0 del codice",
10
+ "prompts.codeReadability.message": "Puoi suggerirmi delle tecniche da utilizzare per rendere il mio codice pi\xF9 leggibile e gestibile?",
11
+ "prompts.debugging.title": "Ottenere aiuto con il debug",
12
+ "prompts.debugging.message": "La mia applicazione genera un errore quando tenta di connettersi al database. Puoi aiutarmi a identificare il problema?",
13
+ "prompts.developmentConcept.title": "Spiegare un concetto di sviluppo",
14
+ "prompts.developmentConcept.message": "Puoi spiegarmi come funziona l'architettura dei microservizi e quali vantaggi ha rispetto alla progettazione monolitica?",
15
+ "prompts.codeOptimization.title": "Suggerimenti per ottimizzare il codice",
16
+ "prompts.codeOptimization.message": "Puoi suggerirmi metodi comuni per ottimizzare il codice e ottenere prestazioni migliori?",
17
+ "prompts.documentation.title": "Riepilogo della documentazione",
18
+ "prompts.documentation.message": "Puoi riassumere la documentazione per implementare l'autenticazione OAuth 2.0 in un'app web?",
19
+ "prompts.gitWorkflows.title": "Flussi di lavoro con Git",
20
+ "prompts.gitWorkflows.message": "Voglio apportare modifiche al codice su un'altra diramazione, senza perdere il lavoro svolto in precedenza. Qual \xE8 la procedura per farlo utilizzando Git?",
21
+ "prompts.testingStrategies.title": "Suggerimenti su strategie di test",
22
+ "prompts.testingStrategies.message": "Puoi consigliarmi alcune strategie di test comuni in grado di rendere la mia applicazione efficiente e priva di errori?",
23
+ "prompts.sortingAlgorithms.title": "Svelare gli algoritmi di ordinamento",
24
+ "prompts.sortingAlgorithms.message": "Puoi spiegarmi la differenza tra un algoritmo quicksort e un algoritmo merge sort e quando utilizzare ognuno di essi?",
25
+ "prompts.eventDriven.title": "Comprendere l'architettura guidata dagli eventi",
26
+ "prompts.eventDriven.message": "Puoi spiegarmi cos'\xE8 l'architettura guidata dagli eventi e quando \xE8 utile utilizzarla nello sviluppo software?",
27
+ "prompts.tekton.title": "Deployment con Tekton",
28
+ "prompts.tekton.message": "Puoi aiutarmi ad automatizzare il deployment della mia applicazione utilizzando le pipeline Tekton?",
29
+ "prompts.openshift.title": "Creare un deployment in OpenShift",
30
+ "prompts.openshift.message": "Puoi guidarmi nella creazione di un nuovo deployment in OpenShift per un'applicazione containerizzata?",
31
+ "prompts.rhdh.title": "Introduzione a Red Hat Developer Hub",
32
+ "prompts.rhdh.message": "Puoi guidarmi nelle prime fasi per iniziare a utilizzare Developer Hub come sviluppatore, ad esempio esplorando il catalogo software e aggiungendo il mio servizio?",
33
+ "conversation.delete.confirm.title": "Eliminare la chat?",
34
+ "conversation.delete.confirm.message": "Questa chat non sar\xE0 pi\xF9 visibile qui. Dalla tua attivit\xE0 Lightspeed verranno eliminate anche le attivit\xE0 correlate, come prompt, risposte e feedback.",
35
+ "conversation.delete.confirm.action": "Elimina",
36
+ "conversation.rename.confirm.title": "Rinominare la chat?",
37
+ "conversation.rename.confirm.action": "Rinomina",
38
+ "conversation.rename.placeholder": "Nome della chat",
39
+ "conversation.action.error": "Si \xE8 verificato un errore: {{error}}",
40
+ "permission.required.title": "Autorizzazioni mancanti",
41
+ "permission.required.description": "Per visualizzare il plugin Lightspeed, contattare l'amministratore per ottenere le autorizzazioni <b>lightspeed.chat.read</b> e <b>lightspeed.chat.create</b>.",
42
+ "disclaimer.withValidation": "Questa funzione utilizza una tecnologia AI. Non includere nei dati immessi informazioni personali o altre informazioni sensibili. Le interazioni possono essere utilizzate per migliorare i prodotti o i servizi Red Hat.",
43
+ "disclaimer.withoutValidation": "Questa funzione utilizza una tecnologia AI. Non includere nei dati immessi informazioni personali o altre informazioni sensibili. Le interazioni possono essere utilizzate per migliorare i prodotti o i servizi Red Hat.",
44
+ "footer.accuracy.label": "Esaminare sempre i contenuti generati dall'intelligenza artificiale prima di utilizzarli.",
45
+ "footer.accuracy.popover.title": "Verificare l'accuratezza",
46
+ "footer.accuracy.popover.description": "Nonostante l'impegno di Developer Lightspeed a garantire la massima precisione, esiste sempre un margine di errore. \xC8 buona norma verificare le informazioni critiche confrontandole con fonti affidabili, soprattutto se sono essenziali per prendere decisioni o intraprendere azioni.",
47
+ "footer.accuracy.popover.image.alt": "Immagine di esempio per il popover del pi\xE8 di pagina",
48
+ "footer.accuracy.popover.cta.label": "Ho capito",
49
+ "footer.accuracy.popover.link.label": "Per saperne di pi\xF9",
50
+ "common.cancel": "Cancella",
51
+ "common.close": "Chiudi",
52
+ "common.readMore": "Per saperne di pi\xF9",
53
+ "common.noSearchResults": "Nessun risultato corrisponde alla ricerca",
54
+ "menu.newConversation": "Nuova chat",
55
+ "chatbox.header.title": "Sviluppatore Lightspeed",
56
+ "chatbox.search.placeholder": "Ricerca",
57
+ "chatbox.provider.other": "Altro",
58
+ "chatbox.emptyState.noPinnedChats": "Nessuna chat bloccata",
59
+ "chatbox.emptyState.noRecentChats": "Nessuna chat recente",
60
+ "chatbox.emptyState.noResults.title": "Nessun risultato trovato",
61
+ "chatbox.emptyState.noResults.body": "Modificare la query di ricerca e riprovare. Controllare l'ortografia o provare un termine pi\xF9 generico.",
62
+ "chatbox.welcome.greeting": "Ciao {{userName}},",
63
+ "chatbox.welcome.description": "come posso aiutarti oggi?",
64
+ "chatbox.message.placeholder": "Invia un messaggio e, facoltativamente, carica un file JSON, YAML o TXT...",
65
+ "chatbox.fileUpload.failed": "Caricamento del file non riuscito",
66
+ "chatbox.fileUpload.infoText": "I tipi di file supportati sono: .txt, .yaml e .json. La dimensione massima del file \xE8 25 MB.",
67
+ "aria.chatbotSelector": "Selettore di chatbot",
68
+ "aria.important": "Importante",
69
+ "aria.chatHistoryMenu": "Menu cronologia chat",
70
+ "aria.closeDrawerPanel": "Chiudi riquadro",
71
+ "aria.search.placeholder": "Ricerca",
72
+ "aria.searchPreviousConversations": "Cerca conversazioni precedenti",
73
+ "aria.resize": "Ridimensiona",
74
+ "aria.options.label": "Opzioni",
75
+ "aria.scroll.down": "Torna alla fine",
76
+ "aria.scroll.up": "Torna all'inizio",
77
+ "aria.settings.label": "Opzioni chatbot",
78
+ "modal.edit": "Modifica",
79
+ "modal.save": "Salva",
80
+ "modal.close": "Chiudi",
81
+ "modal.cancel": "Cancella",
82
+ "conversation.delete": "Elimina",
83
+ "conversation.rename": "Rinomina",
84
+ "conversation.addToPinnedChats": "Blocca",
85
+ "conversation.removeFromPinnedChats": "Sblocca",
86
+ "conversation.announcement.userMessage": "Messaggio dall'utente: {{prompt}}. Caricamento in corso del messaggio del bot.",
87
+ "user.guest": "Ospite",
88
+ "user.loading": "...",
89
+ "tooltip.attach": "Allega",
90
+ "tooltip.send": "Invia",
91
+ "tooltip.microphone.active": "Non ascoltare pi\xF9",
92
+ "tooltip.microphone.inactive": "Usa il microfono",
93
+ "button.newChat": "Nuova chat",
94
+ "tooltip.chatHistoryMenu": "Menu cronologia chat",
95
+ "tooltip.responseRecorded": "Risposta registrata",
96
+ "tooltip.backToTop": "Torna all'inizio",
97
+ "tooltip.backToBottom": "Torna alla fine",
98
+ "tooltip.settings": "Opzioni chatbot",
99
+ "modal.title.preview": "Anteprima allegato",
100
+ "modal.title.edit": "Modifica allegato",
101
+ "icon.lightspeed.alt": "icona di lightspeed",
102
+ "icon.permissionRequired.alt": "icona di autorizzazione richiesta",
103
+ "message.options.label": "Opzioni",
104
+ "file.upload.error.alreadyExists": "Il file esiste gi\xE0.",
105
+ "file.upload.error.multipleFiles": "\xC8 stato caricato pi\xF9 di un file.",
106
+ "file.upload.error.unsupportedType": "Tipo di file non supportato. I tipi supportati sono: .txt, .yaml e .json.",
107
+ "file.upload.error.fileTooLarge": "Dimensione del file troppo grande. Verificare che il file sia inferiore a 25 MB.",
108
+ "file.upload.error.readFailed": "Impossibile leggere il file: {{errorMessage}}",
109
+ "error.context.fileAttachment": "useFileAttachmentContext deve essere all'interno di un FileAttachmentContextProvider",
110
+ "feedback.form.title": "Perch\xE9 hai scelto questa valutazione?",
111
+ "feedback.form.textAreaPlaceholder": "Fornire commenti aggiuntivi facoltativi",
112
+ "feedback.form.submitWord": "Invia",
113
+ "feedback.tooltips.goodResponse": "Risposta valida",
114
+ "feedback.tooltips.badResponse": "Risposta non valida",
115
+ "feedback.tooltips.copied": "Copiato",
116
+ "feedback.tooltips.copy": "Copia",
117
+ "feedback.tooltips.listening": "In ascolto",
118
+ "feedback.tooltips.listen": "Ascoltare",
119
+ "feedback.quickResponses.positive.helpful": "Informazioni utili",
120
+ "feedback.quickResponses.positive.easyToUnderstand": "Facile da capire",
121
+ "feedback.quickResponses.positive.resolvedIssue": "Ha risolto il mio problema",
122
+ "feedback.quickResponses.negative.didntAnswer": "Non ha risposto alla mia domanda",
123
+ "feedback.quickResponses.negative.hardToUnderstand": "Difficile da capire",
124
+ "feedback.quickResponses.negative.notHelpful": "Non utile",
125
+ "feedback.completion.title": "Feedback inviato",
126
+ "feedback.completion.body": "Abbiamo ricevuto la tua risposta. Grazie per aver condiviso i tuoi commenti!",
127
+ "conversation.category.pinnedChats": "Bloccata",
128
+ "conversation.category.recent": "Recente",
129
+ "settings.pinned.enable": "Abilita le chat bloccate",
130
+ "settings.pinned.disable": "Disattiva le chat bloccate",
131
+ "settings.pinned.enabled.description": "Le chat bloccate sono attualmente abilitate",
132
+ "settings.pinned.disabled.description": "Le chat bloccate sono attualmente disabilitate",
133
+ // Tool calling
134
+ "toolCall.header": "Risposta dello strumento: {{toolName}}",
135
+ "toolCall.thinking": "Ha pensato per {{seconds}} secondi",
136
+ "toolCall.executionTime": "Tempo di esecuzione: ",
137
+ "toolCall.parameters": "Parametri",
138
+ "toolCall.response": "Risposta",
139
+ "toolCall.showMore": "mostra di pi\xF9",
140
+ "toolCall.showLess": "mostra di meno",
141
+ "toolCall.loading": "Esecuzione dello strumento...",
142
+ "toolCall.executing": "Esecuzione dello strumento...",
143
+ "toolCall.copyResponse": "Copia risposta",
144
+ "toolCall.summary": "Ecco un riepilogo della tua risposta",
145
+ "toolCall.mcpServer": "Server MCP",
146
+ // Sort options
147
+ "sort.label": "Ordina conversazioni",
148
+ "sort.newest": "Data (pi\xF9 recente prima)",
149
+ "sort.oldest": "Data (meno recente prima)",
150
+ "sort.alphabeticalAsc": "Nome (A-Z)",
151
+ "sort.alphabeticalDesc": "Nome (Z-A)",
152
+ // Deep thinking
153
+ "reasoning.thinking": "Mostra ragionamento"
154
+ }
155
+ });
156
+
157
+ export { lightspeedTranslationIt as default };
158
+ //# sourceMappingURL=it.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"it.esm.js","sources":["../../src/translations/it.ts"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\n\nimport { lightspeedTranslationRef } from './ref';\n\n/**\n * Italian translation for plugin.lightspeed.\n * @public\n */\nconst lightspeedTranslationIt = createTranslationMessages({\n ref: lightspeedTranslationRef,\n messages: {\n 'page.title': 'Lightspeed',\n 'page.subtitle':\n \"Assistente allo sviluppo basato sull'intelligenza artificiale\",\n 'prompts.codeReadability.title':\n 'Ottenere aiuto sulla leggibilità del codice',\n 'prompts.codeReadability.message':\n 'Puoi suggerirmi delle tecniche da utilizzare per rendere il mio codice più leggibile e gestibile?',\n 'prompts.debugging.title': 'Ottenere aiuto con il debug',\n 'prompts.debugging.message':\n 'La mia applicazione genera un errore quando tenta di connettersi al database. Puoi aiutarmi a identificare il problema?',\n 'prompts.developmentConcept.title': 'Spiegare un concetto di sviluppo',\n 'prompts.developmentConcept.message':\n \"Puoi spiegarmi come funziona l'architettura dei microservizi e quali vantaggi ha rispetto alla progettazione monolitica?\",\n 'prompts.codeOptimization.title': 'Suggerimenti per ottimizzare il codice',\n 'prompts.codeOptimization.message':\n 'Puoi suggerirmi metodi comuni per ottimizzare il codice e ottenere prestazioni migliori?',\n 'prompts.documentation.title': 'Riepilogo della documentazione',\n 'prompts.documentation.message':\n \"Puoi riassumere la documentazione per implementare l'autenticazione OAuth 2.0 in un'app web?\",\n 'prompts.gitWorkflows.title': 'Flussi di lavoro con Git',\n 'prompts.gitWorkflows.message':\n \"Voglio apportare modifiche al codice su un'altra diramazione, senza perdere il lavoro svolto in precedenza. Qual è la procedura per farlo utilizzando Git?\",\n 'prompts.testingStrategies.title': 'Suggerimenti su strategie di test',\n 'prompts.testingStrategies.message':\n 'Puoi consigliarmi alcune strategie di test comuni in grado di rendere la mia applicazione efficiente e priva di errori?',\n 'prompts.sortingAlgorithms.title': 'Svelare gli algoritmi di ordinamento',\n 'prompts.sortingAlgorithms.message':\n 'Puoi spiegarmi la differenza tra un algoritmo quicksort e un algoritmo merge sort e quando utilizzare ognuno di essi?',\n 'prompts.eventDriven.title':\n \"Comprendere l'architettura guidata dagli eventi\",\n 'prompts.eventDriven.message':\n \"Puoi spiegarmi cos'è l'architettura guidata dagli eventi e quando è utile utilizzarla nello sviluppo software?\",\n 'prompts.tekton.title': 'Deployment con Tekton',\n 'prompts.tekton.message':\n 'Puoi aiutarmi ad automatizzare il deployment della mia applicazione utilizzando le pipeline Tekton?',\n 'prompts.openshift.title': 'Creare un deployment in OpenShift',\n 'prompts.openshift.message':\n \"Puoi guidarmi nella creazione di un nuovo deployment in OpenShift per un'applicazione containerizzata?\",\n 'prompts.rhdh.title': 'Introduzione a Red Hat Developer Hub',\n 'prompts.rhdh.message':\n 'Puoi guidarmi nelle prime fasi per iniziare a utilizzare Developer Hub come sviluppatore, ad esempio esplorando il catalogo software e aggiungendo il mio servizio?',\n 'conversation.delete.confirm.title': 'Eliminare la chat?',\n 'conversation.delete.confirm.message':\n 'Questa chat non sarà più visibile qui. Dalla tua attività Lightspeed verranno eliminate anche le attività correlate, come prompt, risposte e feedback.',\n 'conversation.delete.confirm.action': 'Elimina',\n 'conversation.rename.confirm.title': 'Rinominare la chat?',\n 'conversation.rename.confirm.action': 'Rinomina',\n 'conversation.rename.placeholder': 'Nome della chat',\n 'conversation.action.error': 'Si è verificato un errore: {{error}}',\n 'permission.required.title': 'Autorizzazioni mancanti',\n 'permission.required.description':\n \"Per visualizzare il plugin Lightspeed, contattare l'amministratore per ottenere le autorizzazioni <b>lightspeed.chat.read</b> e <b>lightspeed.chat.create</b>.\",\n 'disclaimer.withValidation':\n 'Questa funzione utilizza una tecnologia AI. Non includere nei dati immessi informazioni personali o altre informazioni sensibili. Le interazioni possono essere utilizzate per migliorare i prodotti o i servizi Red Hat.',\n 'disclaimer.withoutValidation':\n 'Questa funzione utilizza una tecnologia AI. Non includere nei dati immessi informazioni personali o altre informazioni sensibili. Le interazioni possono essere utilizzate per migliorare i prodotti o i servizi Red Hat.',\n 'footer.accuracy.label':\n \"Esaminare sempre i contenuti generati dall'intelligenza artificiale prima di utilizzarli.\",\n 'footer.accuracy.popover.title': \"Verificare l'accuratezza\",\n 'footer.accuracy.popover.description':\n \"Nonostante l'impegno di Developer Lightspeed a garantire la massima precisione, esiste sempre un margine di errore. È buona norma verificare le informazioni critiche confrontandole con fonti affidabili, soprattutto se sono essenziali per prendere decisioni o intraprendere azioni.\",\n 'footer.accuracy.popover.image.alt':\n 'Immagine di esempio per il popover del piè di pagina',\n 'footer.accuracy.popover.cta.label': 'Ho capito',\n 'footer.accuracy.popover.link.label': 'Per saperne di più',\n 'common.cancel': 'Cancella',\n 'common.close': 'Chiudi',\n 'common.readMore': 'Per saperne di più',\n 'common.noSearchResults': 'Nessun risultato corrisponde alla ricerca',\n 'menu.newConversation': 'Nuova chat',\n 'chatbox.header.title': 'Sviluppatore Lightspeed',\n 'chatbox.search.placeholder': 'Ricerca',\n 'chatbox.provider.other': 'Altro',\n 'chatbox.emptyState.noPinnedChats': 'Nessuna chat bloccata',\n 'chatbox.emptyState.noRecentChats': 'Nessuna chat recente',\n 'chatbox.emptyState.noResults.title': 'Nessun risultato trovato',\n 'chatbox.emptyState.noResults.body':\n \"Modificare la query di ricerca e riprovare. Controllare l'ortografia o provare un termine più generico.\",\n 'chatbox.welcome.greeting': 'Ciao {{userName}},',\n 'chatbox.welcome.description': 'come posso aiutarti oggi?',\n 'chatbox.message.placeholder':\n 'Invia un messaggio e, facoltativamente, carica un file JSON, YAML o TXT...',\n 'chatbox.fileUpload.failed': 'Caricamento del file non riuscito',\n 'chatbox.fileUpload.infoText':\n 'I tipi di file supportati sono: .txt, .yaml e .json. La dimensione massima del file è 25 MB.',\n 'aria.chatbotSelector': 'Selettore di chatbot',\n 'aria.important': 'Importante',\n 'aria.chatHistoryMenu': 'Menu cronologia chat',\n 'aria.closeDrawerPanel': 'Chiudi riquadro',\n 'aria.search.placeholder': 'Ricerca',\n 'aria.searchPreviousConversations': 'Cerca conversazioni precedenti',\n 'aria.resize': 'Ridimensiona',\n 'aria.options.label': 'Opzioni',\n 'aria.scroll.down': 'Torna alla fine',\n 'aria.scroll.up': \"Torna all'inizio\",\n 'aria.settings.label': 'Opzioni chatbot',\n 'modal.edit': 'Modifica',\n 'modal.save': 'Salva',\n 'modal.close': 'Chiudi',\n 'modal.cancel': 'Cancella',\n 'conversation.delete': 'Elimina',\n 'conversation.rename': 'Rinomina',\n 'conversation.addToPinnedChats': 'Blocca',\n 'conversation.removeFromPinnedChats': 'Sblocca',\n 'conversation.announcement.userMessage':\n \"Messaggio dall'utente: {{prompt}}. Caricamento in corso del messaggio del bot.\",\n 'user.guest': 'Ospite',\n 'user.loading': '...',\n 'tooltip.attach': 'Allega',\n 'tooltip.send': 'Invia',\n 'tooltip.microphone.active': 'Non ascoltare più',\n 'tooltip.microphone.inactive': 'Usa il microfono',\n 'button.newChat': 'Nuova chat',\n 'tooltip.chatHistoryMenu': 'Menu cronologia chat',\n 'tooltip.responseRecorded': 'Risposta registrata',\n 'tooltip.backToTop': \"Torna all'inizio\",\n 'tooltip.backToBottom': 'Torna alla fine',\n 'tooltip.settings': 'Opzioni chatbot',\n 'modal.title.preview': 'Anteprima allegato',\n 'modal.title.edit': 'Modifica allegato',\n 'icon.lightspeed.alt': 'icona di lightspeed',\n 'icon.permissionRequired.alt': 'icona di autorizzazione richiesta',\n 'message.options.label': 'Opzioni',\n 'file.upload.error.alreadyExists': 'Il file esiste già.',\n 'file.upload.error.multipleFiles': 'È stato caricato più di un file.',\n 'file.upload.error.unsupportedType':\n 'Tipo di file non supportato. I tipi supportati sono: .txt, .yaml e .json.',\n 'file.upload.error.fileTooLarge':\n 'Dimensione del file troppo grande. Verificare che il file sia inferiore a 25 MB.',\n 'file.upload.error.readFailed':\n 'Impossibile leggere il file: {{errorMessage}}',\n 'error.context.fileAttachment':\n \"useFileAttachmentContext deve essere all'interno di un FileAttachmentContextProvider\",\n 'feedback.form.title': 'Perché hai scelto questa valutazione?',\n 'feedback.form.textAreaPlaceholder':\n 'Fornire commenti aggiuntivi facoltativi',\n 'feedback.form.submitWord': 'Invia',\n 'feedback.tooltips.goodResponse': 'Risposta valida',\n 'feedback.tooltips.badResponse': 'Risposta non valida',\n 'feedback.tooltips.copied': 'Copiato',\n 'feedback.tooltips.copy': 'Copia',\n 'feedback.tooltips.listening': 'In ascolto',\n 'feedback.tooltips.listen': 'Ascoltare',\n 'feedback.quickResponses.positive.helpful': 'Informazioni utili',\n 'feedback.quickResponses.positive.easyToUnderstand': 'Facile da capire',\n 'feedback.quickResponses.positive.resolvedIssue':\n 'Ha risolto il mio problema',\n 'feedback.quickResponses.negative.didntAnswer':\n 'Non ha risposto alla mia domanda',\n 'feedback.quickResponses.negative.hardToUnderstand': 'Difficile da capire',\n 'feedback.quickResponses.negative.notHelpful': 'Non utile',\n 'feedback.completion.title': 'Feedback inviato',\n 'feedback.completion.body':\n 'Abbiamo ricevuto la tua risposta. Grazie per aver condiviso i tuoi commenti!',\n 'conversation.category.pinnedChats': 'Bloccata',\n 'conversation.category.recent': 'Recente',\n 'settings.pinned.enable': 'Abilita le chat bloccate',\n 'settings.pinned.disable': 'Disattiva le chat bloccate',\n 'settings.pinned.enabled.description':\n 'Le chat bloccate sono attualmente abilitate',\n 'settings.pinned.disabled.description':\n 'Le chat bloccate sono attualmente disabilitate',\n\n // Tool calling\n 'toolCall.header': 'Risposta dello strumento: {{toolName}}',\n 'toolCall.thinking': 'Ha pensato per {{seconds}} secondi',\n 'toolCall.executionTime': 'Tempo di esecuzione: ',\n 'toolCall.parameters': 'Parametri',\n 'toolCall.response': 'Risposta',\n 'toolCall.showMore': 'mostra di più',\n 'toolCall.showLess': 'mostra di meno',\n 'toolCall.loading': 'Esecuzione dello strumento...',\n 'toolCall.executing': 'Esecuzione dello strumento...',\n 'toolCall.copyResponse': 'Copia risposta',\n 'toolCall.summary': 'Ecco un riepilogo della tua risposta',\n 'toolCall.mcpServer': 'Server MCP',\n\n // Sort options\n 'sort.label': 'Ordina conversazioni',\n 'sort.newest': 'Data (più recente prima)',\n 'sort.oldest': 'Data (meno recente prima)',\n 'sort.alphabeticalAsc': 'Nome (A-Z)',\n 'sort.alphabeticalDesc': 'Nome (Z-A)',\n\n // Deep thinking\n 'reasoning.thinking': 'Mostra ragionamento',\n },\n});\n\nexport default lightspeedTranslationIt;\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,158 @@
1
+ import { createTranslationMessages } from '@backstage/core-plugin-api/alpha';
2
+ import { lightspeedTranslationRef } from './ref.esm.js';
3
+
4
+ const lightspeedTranslationJa = createTranslationMessages({
5
+ ref: lightspeedTranslationRef,
6
+ messages: {
7
+ "page.title": "Lightspeed",
8
+ "page.subtitle": "AI \u642D\u8F09\u958B\u767A\u30A2\u30B7\u30B9\u30BF\u30F3\u30C8",
9
+ "prompts.codeReadability.title": "\u30B3\u30FC\u30C9\u306E\u53EF\u8AAD\u6027\u306B\u95A2\u3059\u308B\u30D8\u30EB\u30D7\u3092\u5229\u7528\u3059\u308B",
10
+ "prompts.codeReadability.message": "\u30B3\u30FC\u30C9\u306E\u53EF\u8AAD\u6027\u3068\u4FDD\u5B88\u6027\u3092\u9AD8\u3081\u308B\u305F\u3081\u306E\u624B\u6CD5\u3092\u63D0\u6848\u3057\u3066\u304F\u308C\u307E\u305B\u3093\u304B?",
11
+ "prompts.debugging.title": "\u30C7\u30D0\u30C3\u30B0\u306B\u95A2\u3059\u308B\u30D8\u30EB\u30D7\u3092\u5229\u7528\u3059\u308B",
12
+ "prompts.debugging.message": "\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u304C\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u306B\u63A5\u7D9A\u3057\u3088\u3046\u3068\u3059\u308B\u3068\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3059\u3002\u554F\u984C\u306E\u7279\u5B9A\u3092\u624B\u4F1D\u3063\u3066\u304F\u308C\u307E\u305B\u3093\u304B?",
13
+ "prompts.developmentConcept.title": "\u958B\u767A\u30B3\u30F3\u30BB\u30D7\u30C8\u3092\u8AAC\u660E\u3059\u308B",
14
+ "prompts.developmentConcept.message": "\u30DE\u30A4\u30AF\u30ED\u30B5\u30FC\u30D3\u30B9\u30A2\u30FC\u30AD\u30C6\u30AF\u30C1\u30E3\u30FC\u306E\u4ED5\u7D44\u307F\u3068\u3001\u30E2\u30CE\u30EA\u30B7\u30C3\u30AF\u306A\u8A2D\u8A08\u3068\u6BD4\u3079\u305F\u5229\u70B9\u306B\u3064\u3044\u3066\u8AAC\u660E\u3057\u3066\u304F\u308C\u307E\u305B\u3093\u304B?",
15
+ "prompts.codeOptimization.title": "\u30B3\u30FC\u30C9\u306E\u6700\u9069\u5316\u3092\u63D0\u6848\u3059\u308B",
16
+ "prompts.codeOptimization.message": "\u30B3\u30FC\u30C9\u3092\u6700\u9069\u5316\u3057\u3066\u30D1\u30D5\u30A9\u30FC\u30DE\u30F3\u30B9\u3092\u5411\u4E0A\u3055\u305B\u308B\u305F\u3081\u306E\u4E00\u822C\u7684\u306A\u65B9\u6CD5\u3092\u63D0\u6848\u3057\u3066\u304F\u308C\u307E\u305B\u3093\u304B?",
17
+ "prompts.documentation.title": "\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u306E\u8981\u7D04",
18
+ "prompts.documentation.message": "Web \u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u3067\u306E OAuth 2.0 \u8A8D\u8A3C\u306E\u5B9F\u88C5\u306B\u95A2\u3059\u308B\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u3092\u8981\u7D04\u3057\u3066\u304F\u308C\u307E\u305B\u3093\u304B?",
19
+ "prompts.gitWorkflows.title": "Git \u3092\u4F7F\u7528\u3057\u305F\u30EF\u30FC\u30AF\u30D5\u30ED\u30FC",
20
+ "prompts.gitWorkflows.message": "\u65E2\u5B58\u306E\u4F5C\u696D\u5185\u5BB9\u3092\u5931\u3046\u3053\u3068\u306A\u304F\u3001\u5225\u306E\u30D6\u30E9\u30F3\u30C1\u306E\u30B3\u30FC\u30C9\u306B\u5909\u66F4\u3092\u52A0\u3048\u305F\u3044\u3067\u3059\u3002Git \u3092\u4F7F\u7528\u3057\u3066\u3053\u308C\u3092\u884C\u3046\u306B\u306F\u3069\u3046\u3059\u308C\u3070\u3088\u3044\u3067\u3059\u304B?",
21
+ "prompts.testingStrategies.title": "\u30C6\u30B9\u30C8\u65B9\u6CD5\u3092\u63D0\u6848\u3059\u308B",
22
+ "prompts.testingStrategies.message": "\u5805\u7262\u3067\u30A8\u30E9\u30FC\u306E\u306A\u3044\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u3092\u69CB\u7BC9\u3059\u308B\u305F\u3081\u306E\u4E00\u822C\u7684\u306A\u30C6\u30B9\u30C8\u65B9\u6CD5\u3092\u3044\u304F\u3064\u304B\u63D0\u6848\u3057\u3066\u304F\u308C\u307E\u305B\u3093\u304B?",
23
+ "prompts.sortingAlgorithms.title": "\u30BD\u30FC\u30C8\u306E\u30A2\u30EB\u30B4\u30EA\u30BA\u30E0\u3092\u308F\u304B\u308A\u3084\u3059\u304F\u8AAC\u660E\u3059\u308B",
24
+ "prompts.sortingAlgorithms.message": "\u30AF\u30A4\u30C3\u30AF\u30BD\u30FC\u30C8\u3068\u30DE\u30FC\u30B8\u30BD\u30FC\u30C8\u306E\u30A2\u30EB\u30B4\u30EA\u30BA\u30E0\u306E\u9055\u3044\u3068\u3001\u305D\u308C\u305E\u308C\u306E\u4F7F\u7528\u30BF\u30A4\u30DF\u30F3\u30B0\u306B\u3064\u3044\u3066\u8AAC\u660E\u3057\u3066\u304F\u308C\u307E\u305B\u3093\u304B?",
25
+ "prompts.eventDriven.title": "\u30A4\u30D9\u30F3\u30C8\u99C6\u52D5\u578B\u30A2\u30FC\u30AD\u30C6\u30AF\u30C1\u30E3\u30FC\u3092\u7406\u89E3\u3059\u308B",
26
+ "prompts.eventDriven.message": "\u30A4\u30D9\u30F3\u30C8\u99C6\u52D5\u578B\u30A2\u30FC\u30AD\u30C6\u30AF\u30C1\u30E3\u30FC\u3068\u306F\u4F55\u304B\u3001\u307E\u305F\u305D\u308C\u3092\u30BD\u30D5\u30C8\u30A6\u30A7\u30A2\u958B\u767A\u3067\u3069\u306E\u3088\u3046\u306A\u3068\u304D\u306B\u4F7F\u7528\u3059\u308B\u3068\u6709\u76CA\u304B\u3092\u8AAC\u660E\u3057\u3066\u304F\u308C\u307E\u305B\u3093\u304B?",
27
+ "prompts.tekton.title": "Tekton \u3092\u4F7F\u7528\u3057\u305F\u30C7\u30D7\u30ED\u30A4",
28
+ "prompts.tekton.message": "Tekton \u30D1\u30A4\u30D7\u30E9\u30A4\u30F3\u3092\u4F7F\u7528\u3057\u3066\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u306E\u30C7\u30D7\u30ED\u30A4\u3092\u81EA\u52D5\u5316\u3059\u308B\u306E\u3092\u624B\u4F1D\u3063\u3066\u304F\u308C\u307E\u305B\u3093\u304B?",
29
+ "prompts.openshift.title": "OpenShift \u30C7\u30D7\u30ED\u30A4\u30E1\u30F3\u30C8\u306E\u4F5C\u6210",
30
+ "prompts.openshift.message": "\u30B3\u30F3\u30C6\u30CA\u30FC\u5316\u3055\u308C\u305F\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u7528\u306B OpenShift \u3067\u65B0\u3057\u3044\u30C7\u30D7\u30ED\u30A4\u30E1\u30F3\u30C8\u3092\u4F5C\u6210\u3059\u308B\u624B\u9806\u3092\u8AAC\u660E\u3057\u3066\u304F\u308C\u307E\u305B\u3093\u304B?",
31
+ "prompts.rhdh.title": "Red Hat Developer Hub \u3092\u4F7F\u3044\u59CB\u3081\u308B",
32
+ "prompts.rhdh.message": "\u30BD\u30D5\u30C8\u30A6\u30A7\u30A2\u30AB\u30BF\u30ED\u30B0\u306E\u63A2\u7D22\u3084\u30B5\u30FC\u30D3\u30B9\u306E\u8FFD\u52A0\u306A\u3069\u3001\u958B\u767A\u8005\u304C Developer Hub \u3092\u5229\u7528\u3059\u308B\u969B\u306B\u307E\u305A\u4F55\u3092\u3059\u3079\u304D\u304B\u6559\u3048\u3066\u304F\u308C\u307E\u305B\u3093\u304B?",
33
+ "conversation.delete.confirm.title": "\u30C1\u30E3\u30C3\u30C8\u3092\u524A\u9664\u3057\u307E\u3059\u304B?",
34
+ "conversation.delete.confirm.message": "\u3053\u306E\u30C1\u30E3\u30C3\u30C8\u306F\u3053\u3053\u306B\u8868\u793A\u3055\u308C\u306A\u304F\u306A\u308A\u307E\u3059\u3002Lightspeed Activity \u304B\u3089\u306E\u30D7\u30ED\u30F3\u30D7\u30C8\u3001\u56DE\u7B54\u3001\u30D5\u30A3\u30FC\u30C9\u30D0\u30C3\u30AF\u306A\u3069\u3001\u95A2\u9023\u30A2\u30AF\u30C6\u30A3\u30D3\u30C6\u30A3\u30FC\u3082\u524A\u9664\u3055\u308C\u307E\u3059\u3002",
35
+ "conversation.delete.confirm.action": "\u524A\u9664",
36
+ "conversation.rename.confirm.title": "\u30C1\u30E3\u30C3\u30C8\u306E\u540D\u524D\u3092\u5909\u66F4\u3057\u307E\u3059\u304B?",
37
+ "conversation.rename.confirm.action": "\u540D\u524D\u306E\u5909\u66F4",
38
+ "conversation.rename.placeholder": "\u30C1\u30E3\u30C3\u30C8\u540D",
39
+ "conversation.action.error": "\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F: {{error}}",
40
+ "permission.required.title": "\u6A29\u9650\u306E\u4E0D\u8DB3",
41
+ "permission.required.description": "lightspeed \u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u8868\u793A\u3059\u308B\u306B\u306F\u3001\u7BA1\u7406\u8005\u306B\u9023\u7D61\u3057\u3066 <b>lightspeed.chat.read</b> \u304A\u3088\u3073 <b>lightspeed.chat.create</b> \u6A29\u9650\u3092\u4ED8\u4E0E\u3057\u3066\u3082\u3089\u3046\u3088\u3046\u4F9D\u983C\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
42
+ "disclaimer.withValidation": "\u3053\u306E\u6A5F\u80FD\u306F AI \u30C6\u30AF\u30CE\u30ED\u30B8\u30FC\u3092\u4F7F\u7528\u3057\u307E\u3059\u3002\u5165\u529B\u5185\u5BB9\u306B\u500B\u4EBA\u60C5\u5831\u3084\u305D\u306E\u4ED6\u306E\u6A5F\u5BC6\u60C5\u5831\u3092\u542B\u3081\u306A\u3044\u3067\u304F\u3060\u3055\u3044\u3002\u3084\u308A\u53D6\u308A\u306E\u5185\u5BB9\u306F\u3001Red Hat \u306E\u88FD\u54C1\u3084\u30B5\u30FC\u30D3\u30B9\u3092\u6539\u5584\u3059\u308B\u305F\u3081\u306B\u4F7F\u7528\u3055\u308C\u308B\u5834\u5408\u304C\u3042\u308A\u307E\u3059\u3002",
43
+ "disclaimer.withoutValidation": "\u3053\u306E\u6A5F\u80FD\u306F AI \u30C6\u30AF\u30CE\u30ED\u30B8\u30FC\u3092\u4F7F\u7528\u3057\u307E\u3059\u3002\u5165\u529B\u5185\u5BB9\u306B\u500B\u4EBA\u60C5\u5831\u3084\u305D\u306E\u4ED6\u306E\u6A5F\u5BC6\u60C5\u5831\u3092\u542B\u3081\u306A\u3044\u3067\u304F\u3060\u3055\u3044\u3002\u3084\u308A\u53D6\u308A\u306E\u5185\u5BB9\u306F\u3001Red Hat \u306E\u88FD\u54C1\u3084\u30B5\u30FC\u30D3\u30B9\u3092\u6539\u5584\u3059\u308B\u305F\u3081\u306B\u4F7F\u7528\u3055\u308C\u308B\u5834\u5408\u304C\u3042\u308A\u307E\u3059\u3002",
44
+ "footer.accuracy.label": "AI \u306B\u3088\u3063\u3066\u751F\u6210\u3055\u308C\u305F\u30B3\u30F3\u30C6\u30F3\u30C4\u306F\u3001\u4F7F\u7528\u3059\u308B\u524D\u306B\u5FC5\u305A\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
45
+ "footer.accuracy.popover.title": "\u6B63\u78BA\u6027\u306E\u78BA\u8A8D",
46
+ "footer.accuracy.popover.description": "Developer Lightspeed \u306F\u6B63\u78BA\u6027\u3092\u671F\u3059\u3088\u3046\u52AA\u3081\u3066\u304A\u308A\u307E\u3059\u304C\u3001\u8AA4\u308A\u304C\u751F\u3058\u308B\u53EF\u80FD\u6027\u306F\u5E38\u306B\u3042\u308A\u307E\u3059\u3002\u7279\u306B\u610F\u601D\u6C7A\u5B9A\u3084\u884C\u52D5\u306B\u95A2\u308F\u308B\u91CD\u8981\u306A\u60C5\u5831\u306B\u3064\u3044\u3066\u306F\u3001\u4FE1\u983C\u3067\u304D\u308B\u60C5\u5831\u6E90\u3067\u305D\u306E\u60C5\u5831\u3092\u78BA\u8A8D\u3059\u308B\u3053\u3068\u3092\u63A8\u5968\u3057\u307E\u3059\u3002",
47
+ "footer.accuracy.popover.image.alt": "\u811A\u6CE8\u30DD\u30C3\u30D7\u30AA\u30FC\u30D0\u30FC\u306E\u30B5\u30F3\u30D7\u30EB\u753B\u50CF",
48
+ "footer.accuracy.popover.cta.label": "\u4E86\u89E3\u3057\u307E\u3057\u305F",
49
+ "footer.accuracy.popover.link.label": "\u8A73\u7D30",
50
+ "common.cancel": "\u30AD\u30E3\u30F3\u30BB\u30EB",
51
+ "common.close": "\u9589\u3058\u308B",
52
+ "common.readMore": "\u3055\u3089\u306B\u8868\u793A\u3059\u308B",
53
+ "common.noSearchResults": "\u691C\u7D22\u306B\u4E00\u81F4\u3059\u308B\u7D50\u679C\u304C\u3042\u308A\u307E\u305B\u3093",
54
+ "menu.newConversation": "\u65B0\u3057\u3044\u30C1\u30E3\u30C3\u30C8",
55
+ "chatbox.header.title": "Developer Lightspeed",
56
+ "chatbox.search.placeholder": "\u691C\u7D22",
57
+ "chatbox.provider.other": "\u305D\u306E\u4ED6",
58
+ "chatbox.emptyState.noPinnedChats": "\u56FA\u5B9A\u3057\u305F\u30C1\u30E3\u30C3\u30C8\u304C\u3042\u308A\u307E\u305B\u3093",
59
+ "chatbox.emptyState.noRecentChats": "\u6700\u8FD1\u306E\u30C1\u30E3\u30C3\u30C8\u304C\u3042\u308A\u307E\u305B\u3093",
60
+ "chatbox.emptyState.noResults.title": "\u7D50\u679C\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
61
+ "chatbox.emptyState.noResults.body": "\u691C\u7D22\u30AF\u30A8\u30EA\u30FC\u3092\u8ABF\u6574\u3057\u3066\u518D\u8A66\u884C\u3057\u3066\u304F\u3060\u3055\u3044\u3002\u30B9\u30DA\u30EB\u3092\u78BA\u8A8D\u3059\u308B\u304B\u3001\u3088\u308A\u4E00\u822C\u7684\u306A\u7528\u8A9E\u3092\u304A\u8A66\u3057\u304F\u3060\u3055\u3044\u3002",
62
+ "chatbox.welcome.greeting": "\u3053\u3093\u306B\u3061\u306F\u3001{{userName}}",
63
+ "chatbox.welcome.description": "\u4ECA\u65E5\u306F\u4F55\u3092\u304A\u624B\u4F1D\u3044\u3057\u307E\u3057\u3087\u3046\u304B?",
64
+ "chatbox.message.placeholder": "\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u9001\u4FE1\u3057\u3001\u5FC5\u8981\u306B\u5FDC\u3058\u3066 JSON\u3001YAML\u3001\u307E\u305F\u306F TXT \u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u307E\u3059...",
65
+ "chatbox.fileUpload.failed": "\u30D5\u30A1\u30A4\u30EB\u306E\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u306B\u5931\u6557\u3057\u307E\u3057\u305F",
66
+ "chatbox.fileUpload.infoText": "\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u308B\u30D5\u30A1\u30A4\u30EB\u306E\u7A2E\u985E\u306F\u3001.txt\u3001.yaml\u3001.json \u3067\u3059\u3002\u6700\u5927\u30D5\u30A1\u30A4\u30EB\u30B5\u30A4\u30BA\u306F 25 MB \u3067\u3059\u3002",
67
+ "aria.chatbotSelector": "\u30C1\u30E3\u30C3\u30C8\u30DC\u30C3\u30C8\u30BB\u30EC\u30AF\u30BF\u30FC",
68
+ "aria.important": "\u91CD\u8981",
69
+ "aria.chatHistoryMenu": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u30E1\u30CB\u30E5\u30FC",
70
+ "aria.closeDrawerPanel": "\u30C9\u30ED\u30EF\u30FC\u30D1\u30CD\u30EB\u3092\u9589\u3058\u308B",
71
+ "aria.search.placeholder": "\u691C\u7D22",
72
+ "aria.searchPreviousConversations": "\u4EE5\u524D\u306E\u4F1A\u8A71\u306E\u691C\u7D22",
73
+ "aria.resize": "\u30B5\u30A4\u30BA\u5909\u66F4",
74
+ "aria.options.label": "\u30AA\u30D7\u30B7\u30E7\u30F3",
75
+ "aria.scroll.down": "\u4E00\u756A\u4E0B\u306B\u623B\u308B",
76
+ "aria.scroll.up": "\u4E00\u756A\u4E0A\u306B\u623B\u308B",
77
+ "aria.settings.label": "\u30C1\u30E3\u30C3\u30C8\u30DC\u30C3\u30C8\u306E\u30AA\u30D7\u30B7\u30E7\u30F3",
78
+ "modal.edit": "\u7DE8\u96C6",
79
+ "modal.save": "\u4FDD\u5B58",
80
+ "modal.close": "\u9589\u3058\u308B",
81
+ "modal.cancel": "\u30AD\u30E3\u30F3\u30BB\u30EB",
82
+ "conversation.delete": "\u524A\u9664",
83
+ "conversation.rename": "\u540D\u524D\u306E\u5909\u66F4",
84
+ "conversation.addToPinnedChats": "\u56FA\u5B9A",
85
+ "conversation.removeFromPinnedChats": "\u56FA\u5B9A\u89E3\u9664",
86
+ "conversation.announcement.userMessage": "\u30E6\u30FC\u30B6\u30FC\u304B\u3089\u306E\u30E1\u30C3\u30BB\u30FC\u30B8: {{prompt}}\u3002\u30DC\u30C3\u30C8\u304B\u3089\u306E\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u8AAD\u307F\u8FBC\u3093\u3067\u3044\u307E\u3059\u3002",
87
+ "user.guest": "\u30B2\u30B9\u30C8",
88
+ "user.loading": "...",
89
+ "tooltip.attach": "\u5272\u308A\u5F53\u3066",
90
+ "tooltip.send": "\u9001\u4FE1",
91
+ "tooltip.microphone.active": "\u805E\u304D\u53D6\u308A\u3092\u505C\u6B62",
92
+ "tooltip.microphone.inactive": "\u30DE\u30A4\u30AF\u3092\u4F7F\u7528\u3059\u308B",
93
+ "button.newChat": "\u65B0\u3057\u3044\u30C1\u30E3\u30C3\u30C8",
94
+ "tooltip.chatHistoryMenu": "\u30C1\u30E3\u30C3\u30C8\u5C65\u6B74\u30E1\u30CB\u30E5\u30FC",
95
+ "tooltip.responseRecorded": "\u56DE\u7B54\u304C\u8A18\u9332\u3055\u308C\u307E\u3057\u305F",
96
+ "tooltip.backToTop": "\u4E00\u756A\u4E0A\u306B\u623B\u308B",
97
+ "tooltip.backToBottom": "\u4E00\u756A\u4E0B\u306B\u623B\u308B",
98
+ "tooltip.settings": "\u30C1\u30E3\u30C3\u30C8\u30DC\u30C3\u30C8\u306E\u30AA\u30D7\u30B7\u30E7\u30F3",
99
+ "modal.title.preview": "\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u30D7\u30EC\u30D3\u30E5\u30FC",
100
+ "modal.title.edit": "\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306E\u7DE8\u96C6",
101
+ "icon.lightspeed.alt": "lightspeed \u30A2\u30A4\u30B3\u30F3",
102
+ "icon.permissionRequired.alt": "\u6A29\u9650\u4E0D\u8DB3\u30A2\u30A4\u30B3\u30F3",
103
+ "message.options.label": "\u30AA\u30D7\u30B7\u30E7\u30F3",
104
+ "file.upload.error.alreadyExists": "\u30D5\u30A1\u30A4\u30EB\u304C\u3059\u3067\u306B\u5B58\u5728\u3057\u307E\u3059\u3002",
105
+ "file.upload.error.multipleFiles": "\u8907\u6570\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u307E\u3057\u305F\u3002",
106
+ "file.upload.error.unsupportedType": "\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u306A\u3044\u30D5\u30A1\u30A4\u30EB\u30BF\u30A4\u30D7\u3067\u3059\u3002\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u308B\u30BF\u30A4\u30D7\u306F\u3001.txt\u3001.yaml\u3001.json \u3067\u3059\u3002",
107
+ "file.upload.error.fileTooLarge": "\u30D5\u30A1\u30A4\u30EB\u30B5\u30A4\u30BA\u304C\u5927\u304D\u3059\u304E\u307E\u3059\u3002\u30D5\u30A1\u30A4\u30EB\u30B5\u30A4\u30BA\u304C 25 MB \u672A\u6E80\u3067\u3042\u308B\u3053\u3068\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
108
+ "file.upload.error.readFailed": "\u30D5\u30A1\u30A4\u30EB\u306E\u8AAD\u307F\u53D6\u308A\u306B\u5931\u6557\u3057\u307E\u3057\u305F: {{errorMessage}}",
109
+ "error.context.fileAttachment": "useFileAttachmentContext \u304C FileAttachmentContextProvider \u5185\u306B\u53CE\u307E\u3063\u3066\u3044\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059",
110
+ "feedback.form.title": "\u306A\u305C\u3053\u306E\u8A55\u4FA1\u3092\u9078\u3093\u3060\u306E\u3067\u3059\u304B?",
111
+ "feedback.form.textAreaPlaceholder": "\u305D\u306E\u4ED6\u3054\u610F\u898B\u3092\u304A\u805E\u304B\u305B\u304F\u3060\u3055\u3044 (\u4EFB\u610F)",
112
+ "feedback.form.submitWord": "\u9001\u4FE1",
113
+ "feedback.tooltips.goodResponse": "\u56DE\u7B54\u5185\u5BB9\u304C\u826F\u3044",
114
+ "feedback.tooltips.badResponse": "\u56DE\u7B54\u5185\u5BB9\u304C\u60AA\u3044",
115
+ "feedback.tooltips.copied": "\u30B3\u30D4\u30FC\u6E08\u307F",
116
+ "feedback.tooltips.copy": "\u30B3\u30D4\u30FC",
117
+ "feedback.tooltips.listening": "\u805E\u304D\u53D6\u308A\u4E2D",
118
+ "feedback.tooltips.listen": "\u805E\u304D\u53D6\u308A",
119
+ "feedback.quickResponses.positive.helpful": "\u60C5\u5831\u304C\u5F79\u306B\u7ACB\u3064",
120
+ "feedback.quickResponses.positive.easyToUnderstand": "\u308F\u304B\u308A\u3084\u3059\u3044",
121
+ "feedback.quickResponses.positive.resolvedIssue": "\u554F\u984C\u304C\u89E3\u6C7A\u3057\u305F",
122
+ "feedback.quickResponses.negative.didntAnswer": "\u8CEA\u554F\u306B\u5BFE\u3059\u308B\u7B54\u3048\u304C\u5F97\u3089\u308C\u306A\u304B\u3063\u305F",
123
+ "feedback.quickResponses.negative.hardToUnderstand": "\u308F\u304B\u308A\u306B\u304F\u3044",
124
+ "feedback.quickResponses.negative.notHelpful": "\u5F79\u306B\u7ACB\u305F\u306A\u3044",
125
+ "feedback.completion.title": "\u30D5\u30A3\u30FC\u30C9\u30D0\u30C3\u30AF\u3092\u9001\u4FE1\u3057\u307E\u3057\u305F",
126
+ "feedback.completion.body": "\u3054\u56DE\u7B54\u3092\u53D7\u3051\u53D6\u308A\u307E\u3057\u305F\u3002\u3054\u610F\u898B\u3092\u304A\u805E\u304B\u305B\u3044\u305F\u3060\u304D\u3042\u308A\u304C\u3068\u3046\u3054\u3056\u3044\u307E\u3057\u305F!",
127
+ "conversation.category.pinnedChats": "\u56FA\u5B9A",
128
+ "conversation.category.recent": "\u6700\u8FD1",
129
+ "settings.pinned.enable": "\u30C1\u30E3\u30C3\u30C8\u306E\u56FA\u5B9A\u306E\u6709\u52B9\u5316",
130
+ "settings.pinned.disable": "\u30C1\u30E3\u30C3\u30C8\u306E\u56FA\u5B9A\u306E\u7121\u52B9\u5316",
131
+ "settings.pinned.enabled.description": "\u30C1\u30E3\u30C3\u30C8\u306E\u56FA\u5B9A\u306F\u73FE\u5728\u6709\u52B9\u3067\u3059",
132
+ "settings.pinned.disabled.description": "\u30C1\u30E3\u30C3\u30C8\u306E\u56FA\u5B9A\u306F\u73FE\u5728\u7121\u52B9\u3067\u3059",
133
+ // Tool calling
134
+ "toolCall.header": "\u30C4\u30FC\u30EB\u306E\u5FDC\u7B54: {{toolName}}",
135
+ "toolCall.thinking": "{{seconds}} \u79D2\u9593\u8003\u3048\u307E\u3057\u305F",
136
+ "toolCall.executionTime": "\u5B9F\u884C\u6642\u9593: ",
137
+ "toolCall.parameters": "\u30D1\u30E9\u30E1\u30FC\u30BF\u30FC",
138
+ "toolCall.response": "\u5FDC\u7B54",
139
+ "toolCall.showMore": "\u3055\u3089\u306B\u8868\u793A",
140
+ "toolCall.showLess": "\u8868\u793A\u3092\u6E1B\u3089\u3059",
141
+ "toolCall.loading": "\u30C4\u30FC\u30EB\u3092\u5B9F\u884C\u4E2D...",
142
+ "toolCall.executing": "\u30C4\u30FC\u30EB\u3092\u5B9F\u884C\u4E2D...",
143
+ "toolCall.copyResponse": "\u5FDC\u7B54\u3092\u30B3\u30D4\u30FC",
144
+ "toolCall.summary": "\u5FDC\u7B54\u306E\u6982\u8981\u306F\u6B21\u306E\u3068\u304A\u308A\u3067\u3059",
145
+ "toolCall.mcpServer": "MCP \u30B5\u30FC\u30D0\u30FC",
146
+ // Sort options
147
+ "sort.label": "\u4F1A\u8A71\u3092\u4E26\u3079\u66FF\u3048",
148
+ "sort.newest": "\u65E5\u4ED8\uFF08\u65B0\u3057\u3044\u9806\uFF09",
149
+ "sort.oldest": "\u65E5\u4ED8\uFF08\u53E4\u3044\u9806\uFF09",
150
+ "sort.alphabeticalAsc": "\u540D\u524D\uFF08A-Z\uFF09",
151
+ "sort.alphabeticalDesc": "\u540D\u524D\uFF08Z-A\uFF09",
152
+ // Deep thinking
153
+ "reasoning.thinking": "\u601D\u8003\u3092\u8868\u793A"
154
+ }
155
+ });
156
+
157
+ export { lightspeedTranslationJa as default };
158
+ //# sourceMappingURL=ja.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ja.esm.js","sources":["../../src/translations/ja.ts"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\n\nimport { lightspeedTranslationRef } from './ref';\n\n/**\n * Japanese translation for plugin.lightspeed.\n * @public\n */\nconst lightspeedTranslationJa = createTranslationMessages({\n ref: lightspeedTranslationRef,\n messages: {\n 'page.title': 'Lightspeed',\n 'page.subtitle': 'AI 搭載開発アシスタント',\n 'prompts.codeReadability.title': 'コードの可読性に関するヘルプを利用する',\n 'prompts.codeReadability.message':\n 'コードの可読性と保守性を高めるための手法を提案してくれませんか?',\n 'prompts.debugging.title': 'デバッグに関するヘルプを利用する',\n 'prompts.debugging.message':\n 'アプリケーションがデータベースに接続しようとするとエラーが発生します。問題の特定を手伝ってくれませんか?',\n 'prompts.developmentConcept.title': '開発コンセプトを説明する',\n 'prompts.developmentConcept.message':\n 'マイクロサービスアーキテクチャーの仕組みと、モノリシックな設計と比べた利点について説明してくれませんか?',\n 'prompts.codeOptimization.title': 'コードの最適化を提案する',\n 'prompts.codeOptimization.message':\n 'コードを最適化してパフォーマンスを向上させるための一般的な方法を提案してくれませんか?',\n 'prompts.documentation.title': 'ドキュメントの要約',\n 'prompts.documentation.message':\n 'Web アプリケーションでの OAuth 2.0 認証の実装に関するドキュメントを要約してくれませんか?',\n 'prompts.gitWorkflows.title': 'Git を使用したワークフロー',\n 'prompts.gitWorkflows.message':\n '既存の作業内容を失うことなく、別のブランチのコードに変更を加えたいです。Git を使用してこれを行うにはどうすればよいですか?',\n 'prompts.testingStrategies.title': 'テスト方法を提案する',\n 'prompts.testingStrategies.message':\n '堅牢でエラーのないアプリケーションを構築するための一般的なテスト方法をいくつか提案してくれませんか?',\n 'prompts.sortingAlgorithms.title':\n 'ソートのアルゴリズムをわかりやすく説明する',\n 'prompts.sortingAlgorithms.message':\n 'クイックソートとマージソートのアルゴリズムの違いと、それぞれの使用タイミングについて説明してくれませんか?',\n 'prompts.eventDriven.title': 'イベント駆動型アーキテクチャーを理解する',\n 'prompts.eventDriven.message':\n 'イベント駆動型アーキテクチャーとは何か、またそれをソフトウェア開発でどのようなときに使用すると有益かを説明してくれませんか?',\n 'prompts.tekton.title': 'Tekton を使用したデプロイ',\n 'prompts.tekton.message':\n 'Tekton パイプラインを使用してアプリケーションのデプロイを自動化するのを手伝ってくれませんか?',\n 'prompts.openshift.title': 'OpenShift デプロイメントの作成',\n 'prompts.openshift.message':\n 'コンテナー化されたアプリケーション用に OpenShift で新しいデプロイメントを作成する手順を説明してくれませんか?',\n 'prompts.rhdh.title': 'Red Hat Developer Hub を使い始める',\n 'prompts.rhdh.message':\n 'ソフトウェアカタログの探索やサービスの追加など、開発者が Developer Hub を利用する際にまず何をすべきか教えてくれませんか?',\n 'conversation.delete.confirm.title': 'チャットを削除しますか?',\n 'conversation.delete.confirm.message':\n 'このチャットはここに表示されなくなります。Lightspeed Activity からのプロンプト、回答、フィードバックなど、関連アクティビティーも削除されます。',\n 'conversation.delete.confirm.action': '削除',\n 'conversation.rename.confirm.title': 'チャットの名前を変更しますか?',\n 'conversation.rename.confirm.action': '名前の変更',\n 'conversation.rename.placeholder': 'チャット名',\n 'conversation.action.error': 'エラーが発生しました: {{error}}',\n 'permission.required.title': '権限の不足',\n 'permission.required.description':\n 'lightspeed プラグインを表示するには、管理者に連絡して <b>lightspeed.chat.read</b> および <b>lightspeed.chat.create</b> 権限を付与してもらうよう依頼してください。',\n 'disclaimer.withValidation':\n 'この機能は AI テクノロジーを使用します。入力内容に個人情報やその他の機密情報を含めないでください。やり取りの内容は、Red Hat の製品やサービスを改善するために使用される場合があります。',\n 'disclaimer.withoutValidation':\n 'この機能は AI テクノロジーを使用します。入力内容に個人情報やその他の機密情報を含めないでください。やり取りの内容は、Red Hat の製品やサービスを改善するために使用される場合があります。',\n 'footer.accuracy.label':\n 'AI によって生成されたコンテンツは、使用する前に必ず確認してください。',\n 'footer.accuracy.popover.title': '正確性の確認',\n 'footer.accuracy.popover.description':\n 'Developer Lightspeed は正確性を期すよう努めておりますが、誤りが生じる可能性は常にあります。特に意思決定や行動に関わる重要な情報については、信頼できる情報源でその情報を確認することを推奨します。',\n 'footer.accuracy.popover.image.alt': '脚注ポップオーバーのサンプル画像',\n 'footer.accuracy.popover.cta.label': '了解しました',\n 'footer.accuracy.popover.link.label': '詳細',\n 'common.cancel': 'キャンセル',\n 'common.close': '閉じる',\n 'common.readMore': 'さらに表示する',\n 'common.noSearchResults': '検索に一致する結果がありません',\n 'menu.newConversation': '新しいチャット',\n 'chatbox.header.title': 'Developer Lightspeed',\n 'chatbox.search.placeholder': '検索',\n 'chatbox.provider.other': 'その他',\n 'chatbox.emptyState.noPinnedChats': '固定したチャットがありません',\n 'chatbox.emptyState.noRecentChats': '最近のチャットがありません',\n 'chatbox.emptyState.noResults.title': '結果が見つかりません',\n 'chatbox.emptyState.noResults.body':\n '検索クエリーを調整して再試行してください。スペルを確認するか、より一般的な用語をお試しください。',\n 'chatbox.welcome.greeting': 'こんにちは、{{userName}}',\n 'chatbox.welcome.description': '今日は何をお手伝いしましょうか?',\n 'chatbox.message.placeholder':\n 'メッセージを送信し、必要に応じて JSON、YAML、または TXT ファイルをアップロードします...',\n 'chatbox.fileUpload.failed': 'ファイルのアップロードに失敗しました',\n 'chatbox.fileUpload.infoText':\n 'サポートされているファイルの種類は、.txt、.yaml、.json です。最大ファイルサイズは 25 MB です。',\n 'aria.chatbotSelector': 'チャットボットセレクター',\n 'aria.important': '重要',\n 'aria.chatHistoryMenu': 'チャット履歴メニュー',\n 'aria.closeDrawerPanel': 'ドロワーパネルを閉じる',\n 'aria.search.placeholder': '検索',\n 'aria.searchPreviousConversations': '以前の会話の検索',\n 'aria.resize': 'サイズ変更',\n 'aria.options.label': 'オプション',\n 'aria.scroll.down': '一番下に戻る',\n 'aria.scroll.up': '一番上に戻る',\n 'aria.settings.label': 'チャットボットのオプション',\n 'modal.edit': '編集',\n 'modal.save': '保存',\n 'modal.close': '閉じる',\n 'modal.cancel': 'キャンセル',\n 'conversation.delete': '削除',\n 'conversation.rename': '名前の変更',\n 'conversation.addToPinnedChats': '固定',\n 'conversation.removeFromPinnedChats': '固定解除',\n 'conversation.announcement.userMessage':\n 'ユーザーからのメッセージ: {{prompt}}。ボットからのメッセージを読み込んでいます。',\n 'user.guest': 'ゲスト',\n 'user.loading': '...',\n 'tooltip.attach': '割り当て',\n 'tooltip.send': '送信',\n 'tooltip.microphone.active': '聞き取りを停止',\n 'tooltip.microphone.inactive': 'マイクを使用する',\n 'button.newChat': '新しいチャット',\n 'tooltip.chatHistoryMenu': 'チャット履歴メニュー',\n 'tooltip.responseRecorded': '回答が記録されました',\n 'tooltip.backToTop': '一番上に戻る',\n 'tooltip.backToBottom': '一番下に戻る',\n 'tooltip.settings': 'チャットボットのオプション',\n 'modal.title.preview': '添付ファイルのプレビュー',\n 'modal.title.edit': '添付ファイルの編集',\n 'icon.lightspeed.alt': 'lightspeed アイコン',\n 'icon.permissionRequired.alt': '権限不足アイコン',\n 'message.options.label': 'オプション',\n 'file.upload.error.alreadyExists': 'ファイルがすでに存在します。',\n 'file.upload.error.multipleFiles': '複数のファイルをアップロードしました。',\n 'file.upload.error.unsupportedType':\n 'サポートされていないファイルタイプです。サポートされているタイプは、.txt、.yaml、.json です。',\n 'file.upload.error.fileTooLarge':\n 'ファイルサイズが大きすぎます。ファイルサイズが 25 MB 未満であることを確認してください。',\n 'file.upload.error.readFailed':\n 'ファイルの読み取りに失敗しました: {{errorMessage}}',\n 'error.context.fileAttachment':\n 'useFileAttachmentContext が FileAttachmentContextProvider 内に収まっている必要があります',\n 'feedback.form.title': 'なぜこの評価を選んだのですか?',\n 'feedback.form.textAreaPlaceholder':\n 'その他ご意見をお聞かせください (任意)',\n 'feedback.form.submitWord': '送信',\n 'feedback.tooltips.goodResponse': '回答内容が良い',\n 'feedback.tooltips.badResponse': '回答内容が悪い',\n 'feedback.tooltips.copied': 'コピー済み',\n 'feedback.tooltips.copy': 'コピー',\n 'feedback.tooltips.listening': '聞き取り中',\n 'feedback.tooltips.listen': '聞き取り',\n 'feedback.quickResponses.positive.helpful': '情報が役に立つ',\n 'feedback.quickResponses.positive.easyToUnderstand': 'わかりやすい',\n 'feedback.quickResponses.positive.resolvedIssue': '問題が解決した',\n 'feedback.quickResponses.negative.didntAnswer':\n '質問に対する答えが得られなかった',\n 'feedback.quickResponses.negative.hardToUnderstand': 'わかりにくい',\n 'feedback.quickResponses.negative.notHelpful': '役に立たない',\n 'feedback.completion.title': 'フィードバックを送信しました',\n 'feedback.completion.body':\n 'ご回答を受け取りました。ご意見をお聞かせいただきありがとうございました!',\n 'conversation.category.pinnedChats': '固定',\n 'conversation.category.recent': '最近',\n 'settings.pinned.enable': 'チャットの固定の有効化',\n 'settings.pinned.disable': 'チャットの固定の無効化',\n 'settings.pinned.enabled.description': 'チャットの固定は現在有効です',\n 'settings.pinned.disabled.description': 'チャットの固定は現在無効です',\n\n // Tool calling\n 'toolCall.header': 'ツールの応答: {{toolName}}',\n 'toolCall.thinking': '{{seconds}} 秒間考えました',\n 'toolCall.executionTime': '実行時間: ',\n 'toolCall.parameters': 'パラメーター',\n 'toolCall.response': '応答',\n 'toolCall.showMore': 'さらに表示',\n 'toolCall.showLess': '表示を減らす',\n 'toolCall.loading': 'ツールを実行中...',\n 'toolCall.executing': 'ツールを実行中...',\n 'toolCall.copyResponse': '応答をコピー',\n 'toolCall.summary': '応答の概要は次のとおりです',\n 'toolCall.mcpServer': 'MCP サーバー',\n\n // Sort options\n 'sort.label': '会話を並べ替え',\n 'sort.newest': '日付(新しい順)',\n 'sort.oldest': '日付(古い順)',\n 'sort.alphabeticalAsc': '名前(A-Z)',\n 'sort.alphabeticalDesc': '名前(Z-A)',\n\n // Deep thinking\n 'reasoning.thinking': '思考を表示',\n },\n});\n\nexport default lightspeedTranslationJa;\n"],"names":[],"mappings":"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"}
@@ -83,6 +83,7 @@ const lightspeedMessages = {
83
83
  "aria.scroll.down": "Back to bottom",
84
84
  "aria.scroll.up": "Back to top",
85
85
  "aria.settings.label": "Chatbot options",
86
+ "aria.close": "Close chatbot",
86
87
  // Modal actions
87
88
  "modal.edit": "Edit",
88
89
  "modal.save": "Save",
@@ -108,6 +109,7 @@ const lightspeedMessages = {
108
109
  "tooltip.backToTop": "Back to top",
109
110
  "tooltip.backToBottom": "Back to bottom",
110
111
  "tooltip.settings": "Chatbot options",
112
+ "tooltip.close": "Close",
111
113
  // Modal titles
112
114
  "modal.title.preview": "Preview attachment",
113
115
  "modal.title.edit": "Edit attachment",
@@ -149,7 +151,33 @@ const lightspeedMessages = {
149
151
  "settings.pinned.enable": "Enable pinned chats",
150
152
  "settings.pinned.disable": "Disable pinned chats",
151
153
  "settings.pinned.enabled.description": "Pinned chats are currently enabled",
152
- "settings.pinned.disabled.description": "Pinned chats are currently disabled"
154
+ "settings.pinned.disabled.description": "Pinned chats are currently disabled",
155
+ // Tool calling
156
+ "toolCall.header": "Tool response: {{toolName}}",
157
+ "toolCall.thinking": "Thought for {{seconds}} seconds",
158
+ "toolCall.executionTime": "Execution time: ",
159
+ "toolCall.parameters": "Parameters",
160
+ "toolCall.response": "Response",
161
+ "toolCall.showMore": "show more",
162
+ "toolCall.showLess": "show less",
163
+ "toolCall.loading": "Executing tool...",
164
+ "toolCall.executing": "Executing tool...",
165
+ "toolCall.copyResponse": "Copy response",
166
+ "toolCall.summary": "Here's a summary of your response",
167
+ "toolCall.mcpServer": "MCP Server",
168
+ // Display modes
169
+ "settings.displayMode.label": "Display mode",
170
+ "settings.displayMode.overlay": "Overlay",
171
+ "settings.displayMode.docked": "Dock to window",
172
+ "settings.displayMode.fullscreen": "Fullscreen",
173
+ // Sort options
174
+ "sort.label": "Sort conversations",
175
+ "sort.newest": "Date (newest first)",
176
+ "sort.oldest": "Date (oldest first)",
177
+ "sort.alphabeticalAsc": "Name (A-Z)",
178
+ "sort.alphabeticalDesc": "Name (Z-A)",
179
+ // Deep thinking
180
+ "reasoning.thinking": "Show thinking"
153
181
  };
154
182
  const lightspeedTranslationRef = createTranslationRef({
155
183
  id: "plugin.lightspeed",
@@ -1 +1 @@
1
- {"version":3,"file":"ref.esm.js","sources":["../../src/translations/ref.ts"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationRef } from '@backstage/core-plugin-api/alpha';\n\n/**\n * Messages object containing all English translations.\n * This is our single source of truth for translations.\n * @alpha\n */\nexport const lightspeedMessages = {\n // Page titles and headers\n 'page.title': 'Lightspeed',\n 'page.subtitle': 'AI-powered development assistant',\n\n // Sample prompts - General Development\n 'prompts.codeReadability.title': 'Get Help On Code Readability',\n 'prompts.codeReadability.message':\n 'Can you suggest techniques I can use to make my code more readable and maintainable?',\n 'prompts.debugging.title': 'Get Help With Debugging',\n 'prompts.debugging.message':\n 'My application is throwing an error when trying to connect to the database. Can you help me identify the issue?',\n 'prompts.developmentConcept.title': 'Explain a Development Concept',\n 'prompts.developmentConcept.message':\n 'Can you explain how microservices architecture works and its advantages over a monolithic design?',\n 'prompts.codeOptimization.title': 'Suggest Code Optimizations',\n 'prompts.codeOptimization.message':\n 'Can you suggest common ways to optimize code to achieve better performance?',\n 'prompts.documentation.title': 'Documentation Summary',\n 'prompts.documentation.message':\n 'Can you summarize the documentation for implementing OAuth 2.0 authentication in a web app?',\n 'prompts.gitWorkflows.title': 'Workflows With Git',\n 'prompts.gitWorkflows.message':\n 'I want to make changes to code on another branch without losing my existing work. What is the procedure to do this using Git?',\n 'prompts.testingStrategies.title': 'Suggest Testing Strategies',\n 'prompts.testingStrategies.message':\n 'Can you recommend some common testing strategies that will make my application robust and error-free?',\n 'prompts.sortingAlgorithms.title': 'Demystify Sorting Algorithms',\n 'prompts.sortingAlgorithms.message':\n 'Can you explain the difference between a quicksort and a merge sort algorithm, and when to use each?',\n 'prompts.eventDriven.title': 'Understand Event-Driven Architecture',\n 'prompts.eventDriven.message':\n \"Can you explain what event-driven architecture is and when it's beneficial to use it in software development?\",\n\n // Sample prompts - RHDH Specific\n 'prompts.tekton.title': 'Deploy With Tekton',\n 'prompts.tekton.message':\n 'Can you help me automate the deployment of my application using Tekton pipelines?',\n 'prompts.openshift.title': 'Create An OpenShift Deployment',\n 'prompts.openshift.message':\n 'Can you guide me through creating a new deployment in OpenShift for a containerized application?',\n 'prompts.rhdh.title': 'Getting Started with Red Hat Developer Hub',\n 'prompts.rhdh.message':\n 'Can you guide me through the first steps to start using Developer Hub as a developer, like exploring the Software Catalog and adding my service?',\n\n // Conversation history\n 'conversation.delete.confirm.title': 'Delete chat?',\n 'conversation.delete.confirm.message':\n \"You'll no longer see this chat here. This will also delete related activity like prompts, responses, and feedback from your Lightspeed Activity.\",\n 'conversation.delete.confirm.action': 'Delete',\n 'conversation.rename.confirm.title': 'Rename chat?',\n 'conversation.rename.confirm.action': 'Rename',\n 'conversation.rename.placeholder': 'Chat name',\n 'conversation.action.error': 'Error occured: {{error}}',\n\n // Permissions\n 'permission.required.title': 'Missing permissions',\n 'permission.required.description':\n 'To view lightspeed plugin, contact your administrator to give the <b>lightspeed.chat.read</b> and <b>lightspeed.chat.create</b> permissions.',\n\n // Disclaimers\n 'disclaimer.withValidation':\n \"This feature uses AI technology. Do not include any personal information or any other sensitive information in your input. Interactions may be used to improve Red Hat's products or services.\",\n 'disclaimer.withoutValidation':\n \"This feature uses AI technology. Do not include any personal information or any other sensitive information in your input. Interactions may be used to improve Red Hat's products or services.\",\n\n // Footer and feedback\n 'footer.accuracy.label': 'Always review AI generated content prior to use.',\n 'footer.accuracy.popover.title': 'Verify accuracy',\n 'footer.accuracy.popover.description':\n \"While Developer Lightspeed strives for accuracy, there's always a possibility of errors. It's a good practice to verify critical information from reliable sources, especially if it's crucial for decision-making or actions.\",\n 'footer.accuracy.popover.image.alt': 'Example image for footnote popover',\n 'footer.accuracy.popover.cta.label': 'Got it',\n 'footer.accuracy.popover.link.label': 'Learn more',\n\n // Common actions\n 'common.cancel': 'Cancel',\n 'common.close': 'Close',\n 'common.readMore': 'Read more',\n 'common.noSearchResults': 'No result matches the search',\n\n // Menu items\n 'menu.newConversation': 'New Chat',\n\n // Chat-specific UI elements\n 'chatbox.header.title': 'Developer Lightspeed',\n 'chatbox.search.placeholder': 'Search',\n 'chatbox.provider.other': 'Other',\n 'chatbox.emptyState.noPinnedChats': 'No pinned chats',\n 'chatbox.emptyState.noRecentChats': 'No recent chats',\n 'chatbox.emptyState.noResults.title': 'No results found',\n 'chatbox.emptyState.noResults.body':\n 'Adjust your search query and try again. Check your spelling or try a more general term.',\n 'chatbox.welcome.greeting': 'Hello, {{userName}}',\n 'chatbox.welcome.description': 'How can I help you today?',\n 'chatbox.message.placeholder':\n 'Send a message and optionally upload a JSON, YAML, or TXT file...',\n 'chatbox.fileUpload.failed': 'File upload failed',\n 'chatbox.fileUpload.infoText':\n 'Supported file types are: .txt, .yaml, and .json. The maximum file size is 25 MB.',\n\n // Accessibility and ARIA labels\n 'aria.chatbotSelector': 'Chatbot selector',\n 'aria.important': 'Important',\n 'aria.chatHistoryMenu': 'Chat history menu',\n 'aria.closeDrawerPanel': 'Close drawer panel',\n 'aria.search.placeholder': 'Search',\n 'aria.searchPreviousConversations': 'Search previous conversations',\n 'aria.resize': 'Resize',\n 'aria.options.label': 'Options',\n 'aria.scroll.down': 'Back to bottom',\n 'aria.scroll.up': 'Back to top',\n 'aria.settings.label': 'Chatbot options',\n\n // Modal actions\n 'modal.edit': 'Edit',\n 'modal.save': 'Save',\n 'modal.close': 'Close',\n 'modal.cancel': 'Cancel',\n\n // Conversation actions\n 'conversation.delete': 'Delete',\n 'conversation.rename': 'Rename',\n 'conversation.addToPinnedChats': 'Pin',\n 'conversation.removeFromPinnedChats': 'Unpin',\n 'conversation.announcement.userMessage':\n 'Message from User: {{prompt}}. Message from Bot is loading.',\n\n // User states\n 'user.guest': 'Guest',\n 'user.loading': '...',\n\n // Button tooltips and labels\n 'tooltip.attach': 'Attach',\n 'tooltip.send': 'Send',\n 'tooltip.microphone.active': 'Stop listening',\n 'tooltip.microphone.inactive': 'Use microphone',\n 'button.newChat': 'New chat',\n 'tooltip.chatHistoryMenu': 'Chat history menu',\n 'tooltip.responseRecorded': 'Response recorded',\n 'tooltip.backToTop': 'Back to top',\n 'tooltip.backToBottom': 'Back to bottom',\n 'tooltip.settings': 'Chatbot options',\n\n // Modal titles\n 'modal.title.preview': 'Preview attachment',\n 'modal.title.edit': 'Edit attachment',\n\n // Alt texts for icons\n 'icon.lightspeed.alt': 'lightspeed icon',\n 'icon.permissionRequired.alt': 'permission required icon',\n\n // Message utilities\n 'message.options.label': 'Options',\n\n // File attachment errors\n 'file.upload.error.alreadyExists': 'File already exists.',\n 'file.upload.error.multipleFiles': 'Uploaded more than one file.',\n 'file.upload.error.unsupportedType':\n 'Unsupported file type. Supported types are: .txt, .yaml, and .json.',\n 'file.upload.error.fileTooLarge':\n 'Your file size is too large. Please ensure that your file is less than 25 MB.',\n 'file.upload.error.readFailed': 'Failed to read file: {{errorMessage}}',\n\n // Developer error messages\n 'error.context.fileAttachment':\n 'useFileAttachmentContext must be within a FileAttachmentContextProvider',\n\n // Feedback actions\n 'feedback.form.title': 'Why did you choose this rating?',\n 'feedback.form.textAreaPlaceholder': 'Provide optional additional feedback',\n 'feedback.form.submitWord': 'Submit',\n 'feedback.tooltips.goodResponse': 'Good Response',\n 'feedback.tooltips.badResponse': 'Bad Response',\n 'feedback.tooltips.copied': 'Copied',\n 'feedback.tooltips.copy': 'Copy',\n 'feedback.tooltips.listening': 'Listening',\n 'feedback.tooltips.listen': 'Listen',\n 'feedback.quickResponses.positive.helpful': 'Helpful information',\n 'feedback.quickResponses.positive.easyToUnderstand': 'Easy to understand',\n 'feedback.quickResponses.positive.resolvedIssue': 'Resolved my issue',\n 'feedback.quickResponses.negative.didntAnswer': \"Didn't answer my question\",\n 'feedback.quickResponses.negative.hardToUnderstand': 'Hard to understand',\n 'feedback.quickResponses.negative.notHelpful': 'Not Helpful',\n 'feedback.completion.title': 'Feedback submitted',\n 'feedback.completion.body':\n \"We've received your response. Thank you for sharing your feedback!\",\n\n // Conversation categorization\n 'conversation.category.pinnedChats': 'Pinned',\n 'conversation.category.recent': 'Recent',\n\n // lightspeed settings\n 'settings.pinned.enable': 'Enable pinned chats',\n 'settings.pinned.disable': 'Disable pinned chats',\n 'settings.pinned.enabled.description': 'Pinned chats are currently enabled',\n 'settings.pinned.disabled.description': 'Pinned chats are currently disabled',\n};\n\n/**\n * Translation Reference for Developer Lightspeed\n * @alpha\n **/\nexport const lightspeedTranslationRef = createTranslationRef({\n id: 'plugin.lightspeed',\n messages: lightspeedMessages,\n});\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ref.esm.js","sources":["../../src/translations/ref.ts"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationRef } from '@backstage/core-plugin-api/alpha';\n\n/**\n * Messages object containing all English translations.\n * This is our single source of truth for translations.\n * @alpha\n */\nexport const lightspeedMessages = {\n // Page titles and headers\n 'page.title': 'Lightspeed',\n 'page.subtitle': 'AI-powered development assistant',\n\n // Sample prompts - General Development\n 'prompts.codeReadability.title': 'Get Help On Code Readability',\n 'prompts.codeReadability.message':\n 'Can you suggest techniques I can use to make my code more readable and maintainable?',\n 'prompts.debugging.title': 'Get Help With Debugging',\n 'prompts.debugging.message':\n 'My application is throwing an error when trying to connect to the database. Can you help me identify the issue?',\n 'prompts.developmentConcept.title': 'Explain a Development Concept',\n 'prompts.developmentConcept.message':\n 'Can you explain how microservices architecture works and its advantages over a monolithic design?',\n 'prompts.codeOptimization.title': 'Suggest Code Optimizations',\n 'prompts.codeOptimization.message':\n 'Can you suggest common ways to optimize code to achieve better performance?',\n 'prompts.documentation.title': 'Documentation Summary',\n 'prompts.documentation.message':\n 'Can you summarize the documentation for implementing OAuth 2.0 authentication in a web app?',\n 'prompts.gitWorkflows.title': 'Workflows With Git',\n 'prompts.gitWorkflows.message':\n 'I want to make changes to code on another branch without losing my existing work. What is the procedure to do this using Git?',\n 'prompts.testingStrategies.title': 'Suggest Testing Strategies',\n 'prompts.testingStrategies.message':\n 'Can you recommend some common testing strategies that will make my application robust and error-free?',\n 'prompts.sortingAlgorithms.title': 'Demystify Sorting Algorithms',\n 'prompts.sortingAlgorithms.message':\n 'Can you explain the difference between a quicksort and a merge sort algorithm, and when to use each?',\n 'prompts.eventDriven.title': 'Understand Event-Driven Architecture',\n 'prompts.eventDriven.message':\n \"Can you explain what event-driven architecture is and when it's beneficial to use it in software development?\",\n\n // Sample prompts - RHDH Specific\n 'prompts.tekton.title': 'Deploy With Tekton',\n 'prompts.tekton.message':\n 'Can you help me automate the deployment of my application using Tekton pipelines?',\n 'prompts.openshift.title': 'Create An OpenShift Deployment',\n 'prompts.openshift.message':\n 'Can you guide me through creating a new deployment in OpenShift for a containerized application?',\n 'prompts.rhdh.title': 'Getting Started with Red Hat Developer Hub',\n 'prompts.rhdh.message':\n 'Can you guide me through the first steps to start using Developer Hub as a developer, like exploring the Software Catalog and adding my service?',\n\n // Conversation history\n 'conversation.delete.confirm.title': 'Delete chat?',\n 'conversation.delete.confirm.message':\n \"You'll no longer see this chat here. This will also delete related activity like prompts, responses, and feedback from your Lightspeed Activity.\",\n 'conversation.delete.confirm.action': 'Delete',\n 'conversation.rename.confirm.title': 'Rename chat?',\n 'conversation.rename.confirm.action': 'Rename',\n 'conversation.rename.placeholder': 'Chat name',\n 'conversation.action.error': 'Error occured: {{error}}',\n\n // Permissions\n 'permission.required.title': 'Missing permissions',\n 'permission.required.description':\n 'To view lightspeed plugin, contact your administrator to give the <b>lightspeed.chat.read</b> and <b>lightspeed.chat.create</b> permissions.',\n\n // Disclaimers\n 'disclaimer.withValidation':\n \"This feature uses AI technology. Do not include any personal information or any other sensitive information in your input. Interactions may be used to improve Red Hat's products or services.\",\n 'disclaimer.withoutValidation':\n \"This feature uses AI technology. Do not include any personal information or any other sensitive information in your input. Interactions may be used to improve Red Hat's products or services.\",\n\n // Footer and feedback\n 'footer.accuracy.label': 'Always review AI generated content prior to use.',\n 'footer.accuracy.popover.title': 'Verify accuracy',\n 'footer.accuracy.popover.description':\n \"While Developer Lightspeed strives for accuracy, there's always a possibility of errors. It's a good practice to verify critical information from reliable sources, especially if it's crucial for decision-making or actions.\",\n 'footer.accuracy.popover.image.alt': 'Example image for footnote popover',\n 'footer.accuracy.popover.cta.label': 'Got it',\n 'footer.accuracy.popover.link.label': 'Learn more',\n\n // Common actions\n 'common.cancel': 'Cancel',\n 'common.close': 'Close',\n 'common.readMore': 'Read more',\n 'common.noSearchResults': 'No result matches the search',\n\n // Menu items\n 'menu.newConversation': 'New Chat',\n\n // Chat-specific UI elements\n 'chatbox.header.title': 'Developer Lightspeed',\n 'chatbox.search.placeholder': 'Search',\n 'chatbox.provider.other': 'Other',\n 'chatbox.emptyState.noPinnedChats': 'No pinned chats',\n 'chatbox.emptyState.noRecentChats': 'No recent chats',\n 'chatbox.emptyState.noResults.title': 'No results found',\n 'chatbox.emptyState.noResults.body':\n 'Adjust your search query and try again. Check your spelling or try a more general term.',\n 'chatbox.welcome.greeting': 'Hello, {{userName}}',\n 'chatbox.welcome.description': 'How can I help you today?',\n 'chatbox.message.placeholder':\n 'Send a message and optionally upload a JSON, YAML, or TXT file...',\n 'chatbox.fileUpload.failed': 'File upload failed',\n 'chatbox.fileUpload.infoText':\n 'Supported file types are: .txt, .yaml, and .json. The maximum file size is 25 MB.',\n\n // Accessibility and ARIA labels\n 'aria.chatbotSelector': 'Chatbot selector',\n 'aria.important': 'Important',\n 'aria.chatHistoryMenu': 'Chat history menu',\n 'aria.closeDrawerPanel': 'Close drawer panel',\n 'aria.search.placeholder': 'Search',\n 'aria.searchPreviousConversations': 'Search previous conversations',\n 'aria.resize': 'Resize',\n 'aria.options.label': 'Options',\n 'aria.scroll.down': 'Back to bottom',\n 'aria.scroll.up': 'Back to top',\n 'aria.settings.label': 'Chatbot options',\n 'aria.close': 'Close chatbot',\n\n // Modal actions\n 'modal.edit': 'Edit',\n 'modal.save': 'Save',\n 'modal.close': 'Close',\n 'modal.cancel': 'Cancel',\n\n // Conversation actions\n 'conversation.delete': 'Delete',\n 'conversation.rename': 'Rename',\n 'conversation.addToPinnedChats': 'Pin',\n 'conversation.removeFromPinnedChats': 'Unpin',\n 'conversation.announcement.userMessage':\n 'Message from User: {{prompt}}. Message from Bot is loading.',\n\n // User states\n 'user.guest': 'Guest',\n 'user.loading': '...',\n\n // Button tooltips and labels\n 'tooltip.attach': 'Attach',\n 'tooltip.send': 'Send',\n 'tooltip.microphone.active': 'Stop listening',\n 'tooltip.microphone.inactive': 'Use microphone',\n 'button.newChat': 'New chat',\n 'tooltip.chatHistoryMenu': 'Chat history menu',\n 'tooltip.responseRecorded': 'Response recorded',\n 'tooltip.backToTop': 'Back to top',\n 'tooltip.backToBottom': 'Back to bottom',\n 'tooltip.settings': 'Chatbot options',\n 'tooltip.close': 'Close',\n\n // Modal titles\n 'modal.title.preview': 'Preview attachment',\n 'modal.title.edit': 'Edit attachment',\n\n // Alt texts for icons\n 'icon.lightspeed.alt': 'lightspeed icon',\n 'icon.permissionRequired.alt': 'permission required icon',\n\n // Message utilities\n 'message.options.label': 'Options',\n\n // File attachment errors\n 'file.upload.error.alreadyExists': 'File already exists.',\n 'file.upload.error.multipleFiles': 'Uploaded more than one file.',\n 'file.upload.error.unsupportedType':\n 'Unsupported file type. Supported types are: .txt, .yaml, and .json.',\n 'file.upload.error.fileTooLarge':\n 'Your file size is too large. Please ensure that your file is less than 25 MB.',\n 'file.upload.error.readFailed': 'Failed to read file: {{errorMessage}}',\n\n // Developer error messages\n 'error.context.fileAttachment':\n 'useFileAttachmentContext must be within a FileAttachmentContextProvider',\n\n // Feedback actions\n 'feedback.form.title': 'Why did you choose this rating?',\n 'feedback.form.textAreaPlaceholder': 'Provide optional additional feedback',\n 'feedback.form.submitWord': 'Submit',\n 'feedback.tooltips.goodResponse': 'Good Response',\n 'feedback.tooltips.badResponse': 'Bad Response',\n 'feedback.tooltips.copied': 'Copied',\n 'feedback.tooltips.copy': 'Copy',\n 'feedback.tooltips.listening': 'Listening',\n 'feedback.tooltips.listen': 'Listen',\n 'feedback.quickResponses.positive.helpful': 'Helpful information',\n 'feedback.quickResponses.positive.easyToUnderstand': 'Easy to understand',\n 'feedback.quickResponses.positive.resolvedIssue': 'Resolved my issue',\n 'feedback.quickResponses.negative.didntAnswer': \"Didn't answer my question\",\n 'feedback.quickResponses.negative.hardToUnderstand': 'Hard to understand',\n 'feedback.quickResponses.negative.notHelpful': 'Not Helpful',\n 'feedback.completion.title': 'Feedback submitted',\n 'feedback.completion.body':\n \"We've received your response. Thank you for sharing your feedback!\",\n\n // Conversation categorization\n 'conversation.category.pinnedChats': 'Pinned',\n 'conversation.category.recent': 'Recent',\n\n // lightspeed settings\n 'settings.pinned.enable': 'Enable pinned chats',\n 'settings.pinned.disable': 'Disable pinned chats',\n 'settings.pinned.enabled.description': 'Pinned chats are currently enabled',\n 'settings.pinned.disabled.description': 'Pinned chats are currently disabled',\n\n // Tool calling\n 'toolCall.header': 'Tool response: {{toolName}}',\n 'toolCall.thinking': 'Thought for {{seconds}} seconds',\n 'toolCall.executionTime': 'Execution time: ',\n 'toolCall.parameters': 'Parameters',\n 'toolCall.response': 'Response',\n 'toolCall.showMore': 'show more',\n 'toolCall.showLess': 'show less',\n 'toolCall.loading': 'Executing tool...',\n 'toolCall.executing': 'Executing tool...',\n 'toolCall.copyResponse': 'Copy response',\n 'toolCall.summary': \"Here's a summary of your response\",\n 'toolCall.mcpServer': 'MCP Server',\n // Display modes\n 'settings.displayMode.label': 'Display mode',\n 'settings.displayMode.overlay': 'Overlay',\n 'settings.displayMode.docked': 'Dock to window',\n 'settings.displayMode.fullscreen': 'Fullscreen',\n\n // Sort options\n 'sort.label': 'Sort conversations',\n 'sort.newest': 'Date (newest first)',\n 'sort.oldest': 'Date (oldest first)',\n 'sort.alphabeticalAsc': 'Name (A-Z)',\n 'sort.alphabeticalDesc': 'Name (Z-A)',\n // Deep thinking\n 'reasoning.thinking': 'Show thinking',\n};\n\n/**\n * Translation Reference for Developer Lightspeed\n * @alpha\n **/\nexport const lightspeedTranslationRef = createTranslationRef({\n id: 'plugin.lightspeed',\n messages: lightspeedMessages,\n});\n"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"types.esm.js","sources":["../src/types.ts"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SourcesCardProps } from '@patternfly/chatbot';\nimport { AlertProps } from '@patternfly/react-core';\n\nexport type Conversations = {\n [key: string]: {\n user: string;\n bot: string;\n model: string;\n loading: boolean;\n timestamp: string;\n botTimestamp: string;\n error?: AlertProps;\n };\n};\n\nexport type ReferencedDocument = {\n doc_title: string;\n doc_url: string;\n doc_description?: string;\n};\n\nexport type ReferencedDocuments = ReferencedDocument[];\n\nexport type LCSModelType = 'embedding' | 'llm';\nexport type LCSModelApiModelType = 'embedding' | 'llm';\n\nexport interface LCSModel {\n identifier: string;\n metadata: {\n embedding_dimension: number;\n };\n api_model_type: LCSModelApiModelType;\n provider_id: string;\n type: 'model';\n provider_resource_id: string;\n model_type: LCSModelType;\n}\nexport interface LCSConversation {\n provider: string;\n model: string;\n messages: BaseMessage[];\n started_at: string;\n completed_at: string;\n referenced_documents?: ReferencedDocuments;\n}\n\nexport interface LCSShield {\n identifier: string;\n provider_id: string;\n type: 'shield';\n params: {};\n provider_resource_id: string;\n}\nexport interface BaseMessage {\n name: string;\n type: string;\n id: number;\n content: string;\n model: string;\n timestamp: string;\n sources?: SourcesCardProps;\n referenced_documents?: ReferencedDocuments;\n error?: AlertProps;\n}\nexport type ConversationSummary = {\n conversation_id: string;\n last_message_timestamp: number;\n topic_summary: string;\n};\n\nexport enum SupportedFileType {\n JSON = 'application/json',\n YAML = 'application/x-yaml',\n TEXT = 'text/plain',\n}\nexport interface FileContent {\n content: string;\n type: string;\n name: string;\n}\n\nexport type Attachment = {\n attachment_type: string;\n content_type: string;\n content: string;\n};\n\nexport type ConversationList = ConversationSummary[];\n\nexport type SamplePrompt =\n | {\n title: string;\n message: string;\n }\n | {\n titleKey: string;\n messageKey: string;\n };\n\nexport type SamplePrompts = SamplePrompt[];\n\nexport type CaptureFeedback = {\n conversation_id: string;\n user_question: string;\n llm_response: string;\n user_feedback: string;\n sentiment: number;\n};\n"],"names":["SupportedFileType"],"mappings":"AAsFY,IAAA,iBAAA,qBAAAA,kBAAL,KAAA;AACL,EAAAA,mBAAA,MAAO,CAAA,GAAA,kBAAA;AACP,EAAAA,mBAAA,MAAO,CAAA,GAAA,oBAAA;AACP,EAAAA,mBAAA,MAAO,CAAA,GAAA,YAAA;AAHG,EAAAA,OAAAA,kBAAAA;AAAA,CAAA,EAAA,iBAAA,IAAA,EAAA;;;;"}
1
+ {"version":3,"file":"types.esm.js","sources":["../src/types.ts"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SourcesCardProps } from '@patternfly/chatbot';\nimport { AlertProps } from '@patternfly/react-core';\n\nexport type Conversations = {\n [key: string]: {\n user: string;\n bot: string;\n model: string;\n loading: boolean;\n timestamp: string;\n botTimestamp: string;\n error?: AlertProps;\n };\n};\n\n/**\n * @public\n * Referenced document metadata\n */\nexport type ReferencedDocument = {\n doc_title: string;\n doc_url: string;\n doc_description?: string;\n};\n\n/**\n * @public\n * List of referenced documents\n */\nexport type ReferencedDocuments = ReferencedDocument[];\n\n/**\n * @public\n * LCS model type - embedding or llm\n */\nexport type LCSModelType = 'embedding' | 'llm';\n\n/**\n * @public\n * LCS model API model type\n */\nexport type LCSModelApiModelType = 'embedding' | 'llm';\n\n/**\n * @public\n * LCS Model interface\n */\nexport interface LCSModel {\n identifier: string;\n metadata: {\n embedding_dimension: number;\n };\n api_model_type: LCSModelApiModelType;\n provider_id: string;\n type: 'model';\n provider_resource_id: string;\n model_type: LCSModelType;\n}\nexport interface LCSConversation {\n provider: string;\n model: string;\n messages: BaseMessage[];\n started_at: string;\n completed_at: string;\n referenced_documents?: ReferencedDocuments;\n}\n\nexport interface LCSShield {\n identifier: string;\n provider_id: string;\n type: 'shield';\n params: {};\n provider_resource_id: string;\n}\n\n/**\n * @public\n * Base message interface for chat messages\n */\nexport interface BaseMessage {\n name: string;\n type: string;\n id: number;\n content: string;\n model: string;\n timestamp: string;\n sources?: SourcesCardProps;\n referenced_documents?: ReferencedDocuments;\n error?: AlertProps;\n}\n\n/**\n * @public\n * Conversation summary type\n */\nexport type ConversationSummary = {\n conversation_id: string;\n last_message_timestamp: number;\n topic_summary: string;\n};\n\nexport enum SupportedFileType {\n JSON = 'application/json',\n YAML = 'application/x-yaml',\n TEXT = 'text/plain',\n}\nexport interface FileContent {\n content: string;\n type: string;\n name: string;\n}\n\n/**\n * @public\n * Attachment type for file attachments in chat messages\n */\nexport type Attachment = {\n attachment_type: string;\n content_type: string;\n content: string;\n};\n\n/**\n * @public\n * List of conversation summaries\n */\nexport type ConversationList = ConversationSummary[];\n\nexport type SamplePrompt =\n | {\n title: string;\n message: string;\n }\n | {\n titleKey: string;\n messageKey: string;\n };\n\nexport type SamplePrompts = SamplePrompt[];\n\n/**\n * @public\n * Feedback capture payload for user feedback on AI responses\n */\nexport type CaptureFeedback = {\n conversation_id: string;\n user_question: string;\n llm_response: string;\n user_feedback: string;\n sentiment: number;\n};\n\n// Tool Calling Types\nexport interface ToolCall {\n id: number;\n toolName: string;\n description?: string;\n arguments: Record<string, any>;\n response?: string;\n startTime: number;\n endTime?: number;\n executionTime?: number; // in seconds\n isLoading: boolean;\n}\n\nexport interface ToolCallEvent {\n id: number;\n token: string | { tool_name: string; arguments: Record<string, any> };\n}\n\nexport interface ToolResultEvent {\n id: number;\n token: { tool_name: string; response: string };\n}\n"],"names":["SupportedFileType"],"mappings":"AAqHY,IAAA,iBAAA,qBAAAA,kBAAL,KAAA;AACL,EAAAA,mBAAA,MAAO,CAAA,GAAA,kBAAA;AACP,EAAAA,mBAAA,MAAO,CAAA,GAAA,oBAAA;AACP,EAAAA,mBAAA,MAAO,CAAA,GAAA,YAAA;AAHG,EAAAA,OAAAA,kBAAAA;AAAA,CAAA,EAAA,iBAAA,IAAA,EAAA;;;;"}