@red-hat-developer-hub/backstage-plugin-lightspeed 1.2.1 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/alpha.d.ts +0 -6
- package/dist/api/LightspeedApiClient.esm.js +20 -6
- package/dist/api/LightspeedApiClient.esm.js.map +1 -1
- package/dist/components/DeleteModal.esm.js +2 -3
- package/dist/components/DeleteModal.esm.js.map +1 -1
- package/dist/components/LightSpeedChat.esm.js +1 -11
- package/dist/components/LightSpeedChat.esm.js.map +1 -1
- package/dist/components/LightspeedChatBox.esm.js +48 -17
- package/dist/components/LightspeedChatBox.esm.js.map +1 -1
- package/dist/components/LightspeedDrawerProvider.esm.js +39 -26
- package/dist/components/LightspeedDrawerProvider.esm.js.map +1 -1
- package/dist/components/LightspeedDrawerStateExposer.esm.js +8 -2
- package/dist/components/LightspeedDrawerStateExposer.esm.js.map +1 -1
- package/dist/components/RenameConversationModal.esm.js +26 -8
- package/dist/components/RenameConversationModal.esm.js.map +1 -1
- package/dist/components/ToolCallContent.esm.js +25 -54
- package/dist/components/ToolCallContent.esm.js.map +1 -1
- package/dist/hooks/useDisplayModeSettings.esm.js +57 -0
- package/dist/hooks/useDisplayModeSettings.esm.js.map +1 -0
- package/dist/translations/de.esm.js +1 -7
- package/dist/translations/de.esm.js.map +1 -1
- package/dist/translations/es.esm.js +1 -7
- package/dist/translations/es.esm.js.map +1 -1
- package/dist/translations/fr.esm.js +1 -7
- package/dist/translations/fr.esm.js.map +1 -1
- package/dist/translations/it.esm.js +6 -7
- package/dist/translations/it.esm.js.map +1 -1
- package/dist/translations/ja.esm.js +6 -7
- package/dist/translations/ja.esm.js.map +1 -1
- package/dist/translations/ref.esm.js +1 -7
- package/dist/translations/ref.esm.js.map +1 -1
- package/dist/utils/lightspeed-chatbox-utils.esm.js +13 -23
- package/dist/utils/lightspeed-chatbox-utils.esm.js.map +1 -1
- package/dist/utils/reasoningParser.esm.js +18 -31
- package/dist/utils/reasoningParser.esm.js.map +1 -1
- package/dist/utils/toolCallMapper.esm.js +2 -2
- package/dist/utils/toolCallMapper.esm.js.map +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { useState, useEffect, useCallback } from 'react';
|
|
2
|
+
import { useApi, storageApiRef } from '@backstage/core-plugin-api';
|
|
3
|
+
import { ChatbotDisplayMode } from '@patternfly/chatbot';
|
|
4
|
+
import { isGuestUser } from '../utils/user-utils.esm.js';
|
|
5
|
+
|
|
6
|
+
const BUCKET_NAME = "lightspeed";
|
|
7
|
+
const DISPLAY_MODE_KEY = "displayMode";
|
|
8
|
+
const useDisplayModeSettings = (user, defaultMode = ChatbotDisplayMode.default) => {
|
|
9
|
+
const storageApi = useApi(storageApiRef);
|
|
10
|
+
const bucket = storageApi.forBucket(BUCKET_NAME);
|
|
11
|
+
const [displayModeState, setDisplayModeState] = useState(defaultMode);
|
|
12
|
+
const shouldPersist = !isGuestUser(user);
|
|
13
|
+
useEffect(() => {
|
|
14
|
+
if (!user || isGuestUser(user)) {
|
|
15
|
+
setDisplayModeState(defaultMode);
|
|
16
|
+
return undefined;
|
|
17
|
+
}
|
|
18
|
+
try {
|
|
19
|
+
const modeSnapshot = bucket.snapshot(DISPLAY_MODE_KEY);
|
|
20
|
+
setDisplayModeState(modeSnapshot.value ?? defaultMode);
|
|
21
|
+
} catch (error) {
|
|
22
|
+
console.error("Error reading display mode from storage:", error);
|
|
23
|
+
}
|
|
24
|
+
const modeSubscription = bucket.observe$(DISPLAY_MODE_KEY).subscribe({
|
|
25
|
+
next: (snapshot) => {
|
|
26
|
+
setDisplayModeState(snapshot.value ?? defaultMode);
|
|
27
|
+
},
|
|
28
|
+
error: (error) => {
|
|
29
|
+
console.error("Error observing displayMode:", error);
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
return () => {
|
|
33
|
+
modeSubscription.unsubscribe();
|
|
34
|
+
};
|
|
35
|
+
}, [bucket, user, defaultMode]);
|
|
36
|
+
const setDisplayMode = useCallback(
|
|
37
|
+
(mode) => {
|
|
38
|
+
if (!user) return;
|
|
39
|
+
setDisplayModeState(mode);
|
|
40
|
+
if (shouldPersist) {
|
|
41
|
+
try {
|
|
42
|
+
bucket.set(DISPLAY_MODE_KEY, mode);
|
|
43
|
+
} catch (error) {
|
|
44
|
+
console.error("Error saving display mode:", error);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
[bucket, user, shouldPersist]
|
|
49
|
+
);
|
|
50
|
+
return {
|
|
51
|
+
displayMode: displayModeState,
|
|
52
|
+
setDisplayMode
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export { useDisplayModeSettings };
|
|
57
|
+
//# sourceMappingURL=useDisplayModeSettings.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useDisplayModeSettings.esm.js","sources":["../../src/hooks/useDisplayModeSettings.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 */\nimport { useCallback, useEffect, useState } from 'react';\n\nimport { storageApiRef, useApi } from '@backstage/core-plugin-api';\n\nimport { ChatbotDisplayMode } from '@patternfly/chatbot';\n\nimport { isGuestUser } from '../utils/user-utils';\n\nconst BUCKET_NAME = 'lightspeed';\nconst DISPLAY_MODE_KEY = 'displayMode';\n\ntype UseDisplayModeSettingsReturn = {\n displayMode: ChatbotDisplayMode;\n setDisplayMode: (mode: ChatbotDisplayMode) => void;\n};\n\n/**\n * Hook to manage display mode settings with persistence using Backstage StorageApi.\n *\n * @param user - The user entity ref (e.g., \"user:default/john\")\n * @param defaultMode - The default display mode to use if no preference is stored\n * @returns Object containing display mode state and management function\n */\nexport const useDisplayModeSettings = (\n user: string | undefined,\n defaultMode: ChatbotDisplayMode = ChatbotDisplayMode.default,\n): UseDisplayModeSettingsReturn => {\n const storageApi = useApi(storageApiRef);\n const bucket = storageApi.forBucket(BUCKET_NAME);\n\n const [displayModeState, setDisplayModeState] =\n useState<ChatbotDisplayMode>(defaultMode);\n\n const shouldPersist = !isGuestUser(user);\n\n useEffect(() => {\n if (!user || isGuestUser(user)) {\n setDisplayModeState(defaultMode);\n return undefined;\n }\n\n try {\n const modeSnapshot =\n bucket.snapshot<ChatbotDisplayMode>(DISPLAY_MODE_KEY);\n setDisplayModeState(modeSnapshot.value ?? defaultMode);\n } catch (error) {\n // eslint-disable-next-line no-console\n console.error('Error reading display mode from storage:', error);\n }\n\n const modeSubscription = bucket\n .observe$<ChatbotDisplayMode>(DISPLAY_MODE_KEY)\n .subscribe({\n next: snapshot => {\n setDisplayModeState(snapshot.value ?? defaultMode);\n },\n error: error => {\n // eslint-disable-next-line no-console\n console.error('Error observing displayMode:', error);\n },\n });\n\n return () => {\n modeSubscription.unsubscribe();\n };\n }, [bucket, user, defaultMode]);\n\n const setDisplayMode = useCallback(\n (mode: ChatbotDisplayMode) => {\n if (!user) return;\n\n setDisplayModeState(mode);\n\n if (shouldPersist) {\n try {\n bucket.set(DISPLAY_MODE_KEY, mode);\n } catch (error) {\n // eslint-disable-next-line no-console\n console.error('Error saving display mode:', error);\n }\n }\n },\n [bucket, user, shouldPersist],\n );\n\n return {\n displayMode: displayModeState,\n setDisplayMode,\n };\n};\n"],"names":[],"mappings":";;;;;AAuBA,MAAM,WAAc,GAAA,YAAA;AACpB,MAAM,gBAAmB,GAAA,aAAA;AAclB,MAAM,sBAAyB,GAAA,CACpC,IACA,EAAA,WAAA,GAAkC,mBAAmB,OACpB,KAAA;AACjC,EAAM,MAAA,UAAA,GAAa,OAAO,aAAa,CAAA;AACvC,EAAM,MAAA,MAAA,GAAS,UAAW,CAAA,SAAA,CAAU,WAAW,CAAA;AAE/C,EAAA,MAAM,CAAC,gBAAA,EAAkB,mBAAmB,CAAA,GAC1C,SAA6B,WAAW,CAAA;AAE1C,EAAM,MAAA,aAAA,GAAgB,CAAC,WAAA,CAAY,IAAI,CAAA;AAEvC,EAAA,SAAA,CAAU,MAAM;AACd,IAAA,IAAI,CAAC,IAAA,IAAQ,WAAY,CAAA,IAAI,CAAG,EAAA;AAC9B,MAAA,mBAAA,CAAoB,WAAW,CAAA;AAC/B,MAAO,OAAA,SAAA;AAAA;AAGT,IAAI,IAAA;AACF,MAAM,MAAA,YAAA,GACJ,MAAO,CAAA,QAAA,CAA6B,gBAAgB,CAAA;AACtD,MAAoB,mBAAA,CAAA,YAAA,CAAa,SAAS,WAAW,CAAA;AAAA,aAC9C,KAAO,EAAA;AAEd,MAAQ,OAAA,CAAA,KAAA,CAAM,4CAA4C,KAAK,CAAA;AAAA;AAGjE,IAAA,MAAM,gBAAmB,GAAA,MAAA,CACtB,QAA6B,CAAA,gBAAgB,EAC7C,SAAU,CAAA;AAAA,MACT,MAAM,CAAY,QAAA,KAAA;AAChB,QAAoB,mBAAA,CAAA,QAAA,CAAS,SAAS,WAAW,CAAA;AAAA,OACnD;AAAA,MACA,OAAO,CAAS,KAAA,KAAA;AAEd,QAAQ,OAAA,CAAA,KAAA,CAAM,gCAAgC,KAAK,CAAA;AAAA;AACrD,KACD,CAAA;AAEH,IAAA,OAAO,MAAM;AACX,MAAA,gBAAA,CAAiB,WAAY,EAAA;AAAA,KAC/B;AAAA,GACC,EAAA,CAAC,MAAQ,EAAA,IAAA,EAAM,WAAW,CAAC,CAAA;AAE9B,EAAA,MAAM,cAAiB,GAAA,WAAA;AAAA,IACrB,CAAC,IAA6B,KAAA;AAC5B,MAAA,IAAI,CAAC,IAAM,EAAA;AAEX,MAAA,mBAAA,CAAoB,IAAI,CAAA;AAExB,MAAA,IAAI,aAAe,EAAA;AACjB,QAAI,IAAA;AACF,UAAO,MAAA,CAAA,GAAA,CAAI,kBAAkB,IAAI,CAAA;AAAA,iBAC1B,KAAO,EAAA;AAEd,UAAQ,OAAA,CAAA,KAAA,CAAM,8BAA8B,KAAK,CAAA;AAAA;AACnD;AACF,KACF;AAAA,IACA,CAAC,MAAQ,EAAA,IAAA,EAAM,aAAa;AAAA,GAC9B;AAEA,EAAO,OAAA;AAAA,IACL,WAAa,EAAA,gBAAA;AAAA,IACb;AAAA,GACF;AACF;;;;"}
|
|
@@ -40,7 +40,6 @@ const lightspeedTranslationDe = createTranslationMessages({
|
|
|
40
40
|
"conversation.rename.confirm.title": "Chat umbenennen?",
|
|
41
41
|
"conversation.rename.confirm.action": "Umbenennen",
|
|
42
42
|
"conversation.rename.placeholder": "Chat-Name",
|
|
43
|
-
"conversation.action.error": "Fehler aufgetreten: {{error}}",
|
|
44
43
|
// Permissions
|
|
45
44
|
"permission.required.title": "Fehlende Berechtigungen",
|
|
46
45
|
"permission.required.description": "Um das Lightspeed-Plugin zu sehen, wenden Sie sich an Ihren Administrator, um die Berechtigungen <b>lightspeed.chat.read</b> und <b>lightspeed.chat.create</b> zu erhalten.",
|
|
@@ -49,11 +48,6 @@ const lightspeedTranslationDe = createTranslationMessages({
|
|
|
49
48
|
"disclaimer.withoutValidation": "Diese Funktion verwendet KI-Technologie. Geben Sie keine pers\xF6nlichen Informationen oder andere sensible Informationen in Ihre Eingabe ein. Interaktionen k\xF6nnen zur Verbesserung der Produkte oder Dienstleistungen von Red Hat verwendet werden.",
|
|
50
49
|
// Footer and feedback
|
|
51
50
|
"footer.accuracy.label": "\xDCberpr\xFCfen Sie KI-generierte Inhalte immer vor der Verwendung.",
|
|
52
|
-
"footer.accuracy.popover.title": "Genauigkeit \xFCberpr\xFCfen",
|
|
53
|
-
"footer.accuracy.popover.description": "Obwohl Developer Lightspeed sich um Genauigkeit bem\xFCht, besteht immer die M\xF6glichkeit von Fehlern. Es ist eine gute Praxis, kritische Informationen aus zuverl\xE4ssigen Quellen zu \xFCberpr\xFCfen, besonders wenn sie f\xFCr Entscheidungsfindung oder Handlungen entscheidend sind.",
|
|
54
|
-
"footer.accuracy.popover.image.alt": "Beispielbild f\xFCr Fu\xDFnoten-Popover",
|
|
55
|
-
"footer.accuracy.popover.cta.label": "Verstanden",
|
|
56
|
-
"footer.accuracy.popover.link.label": "Mehr erfahren",
|
|
57
51
|
// Common actions
|
|
58
52
|
"common.cancel": "Abbrechen",
|
|
59
53
|
"common.close": "Schlie\xDFen",
|
|
@@ -71,7 +65,7 @@ const lightspeedTranslationDe = createTranslationMessages({
|
|
|
71
65
|
"chatbox.emptyState.noResults.body": "Passen Sie Ihre Suchanfrage an und versuchen Sie es erneut. \xDCberpr\xFCfen Sie Ihre Rechtschreibung oder versuchen Sie einen allgemeineren Begriff.",
|
|
72
66
|
"chatbox.welcome.greeting": "Hallo, {{userName}}",
|
|
73
67
|
"chatbox.welcome.description": "Wie kann ich Ihnen heute helfen?",
|
|
74
|
-
"chatbox.message.placeholder": "
|
|
68
|
+
"chatbox.message.placeholder": "Geben Sie eine Eingabeaufforderung f\xFCr Lightspeed ein",
|
|
75
69
|
"chatbox.fileUpload.failed": "Datei-Upload fehlgeschlagen",
|
|
76
70
|
"chatbox.fileUpload.infoText": "Unterst\xFCtzte Dateitypen sind: .txt, .yaml, und .json. Die maximale Dateigr\xF6\xDFe betr\xE4gt 25 MB.",
|
|
77
71
|
// Accessibility and ARIA labels
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"de.esm.js","sources":["../../src/translations/de.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 * Deutsch translation for Developer Lightspeed.\n * @public\n */\nconst lightspeedTranslationDe = createTranslationMessages({\n ref: lightspeedTranslationRef,\n messages: {\n // Page titles and headers\n 'page.title': 'Lightspeed',\n 'page.subtitle': 'KI-gestützter Entwicklungsassistent',\n\n // Sample prompts - General Development\n 'prompts.codeReadability.title': 'Hilfe zur Code-Lesbarkeit',\n 'prompts.codeReadability.message':\n 'Können Sie Techniken vorschlagen, die ich verwenden kann, um meinen Code lesbarer und wartbarer zu machen?',\n 'prompts.debugging.title': 'Hilfe beim Debugging',\n 'prompts.debugging.message':\n 'Meine Anwendung wirft einen Fehler beim Versuch, sich mit der Datenbank zu verbinden. Können Sie mir helfen, das Problem zu identifizieren?',\n 'prompts.developmentConcept.title': 'Entwicklungskonzept erklären',\n 'prompts.developmentConcept.message':\n 'Können Sie erklären, wie Microservices-Architektur funktioniert und welche Vorteile sie gegenüber einem monolithischen Design hat?',\n 'prompts.codeOptimization.title': 'Code-Optimierungen vorschlagen',\n 'prompts.codeOptimization.message':\n 'Können Sie gängige Möglichkeiten vorschlagen, Code zu optimieren, um bessere Leistung zu erzielen?',\n 'prompts.documentation.title': 'Dokumentationszusammenfassung',\n 'prompts.documentation.message':\n 'Können Sie die Dokumentation für die Implementierung von OAuth 2.0-Authentifizierung in einer Web-App zusammenfassen?',\n 'prompts.gitWorkflows.title': 'Arbeitsabläufe mit Git',\n 'prompts.gitWorkflows.message':\n 'Ich möchte Änderungen am Code in einem anderen Branch vornehmen, ohne meine bestehende Arbeit zu verlieren. Was ist das Verfahren, um dies mit Git zu tun?',\n 'prompts.testingStrategies.title': 'Teststrategien vorschlagen',\n 'prompts.testingStrategies.message':\n 'Können Sie gängige Teststrategien empfehlen, die meine Anwendung robust und fehlerfrei machen?',\n 'prompts.sortingAlgorithms.title': 'Sortieralgorithmen entmystifizieren',\n 'prompts.sortingAlgorithms.message':\n 'Können Sie den Unterschied zwischen einem Quicksort- und einem Mergesort-Algorithmus erklären und wann man welchen verwendet?',\n 'prompts.eventDriven.title': 'Event-getriebene Architektur verstehen',\n 'prompts.eventDriven.message':\n 'Können Sie erklären, was event-getriebene Architektur ist und wann es vorteilhaft ist, sie in der Softwareentwicklung zu verwenden?',\n\n // Sample prompts - RHDH Specific\n 'prompts.tekton.title': 'Mit Tekton bereitstellen',\n 'prompts.tekton.message':\n 'Können Sie mir helfen, die Bereitstellung meiner Anwendung mit Tekton-Pipelines zu automatisieren?',\n 'prompts.openshift.title': 'OpenShift-Bereitstellung erstellen',\n 'prompts.openshift.message':\n 'Können Sie mich durch die Erstellung einer neuen Bereitstellung in OpenShift für eine containerisierte Anwendung führen?',\n 'prompts.rhdh.title': 'Erste Schritte mit Red Hat Developer Hub',\n 'prompts.rhdh.message':\n 'Können Sie mich durch die ersten Schritte führen, um Developer Hub als Entwickler zu nutzen, wie das Erkunden des Software-Katalogs und das Hinzufügen meines Dienstes?',\n\n // Conversation history\n 'conversation.delete.confirm.title': 'Chat löschen?',\n 'conversation.delete.confirm.message':\n 'Sie werden diesen Chat hier nicht mehr sehen. Dies löscht auch verwandte Aktivitäten wie Prompts, Antworten und Feedback aus Ihrer Lightspeed-Aktivität.',\n 'conversation.delete.confirm.action': 'Löschen',\n 'conversation.rename.confirm.title': 'Chat umbenennen?',\n 'conversation.rename.confirm.action': 'Umbenennen',\n 'conversation.rename.placeholder': 'Chat-Name',\n 'conversation.action.error': 'Fehler aufgetreten: {{error}}',\n\n // Permissions\n 'permission.required.title': 'Fehlende Berechtigungen',\n 'permission.required.description':\n 'Um das Lightspeed-Plugin zu sehen, wenden Sie sich an Ihren Administrator, um die Berechtigungen <b>lightspeed.chat.read</b> und <b>lightspeed.chat.create</b> zu erhalten.',\n\n // Disclaimers\n 'disclaimer.withValidation':\n 'Diese Funktion verwendet KI-Technologie. Geben Sie keine persönlichen Informationen oder andere sensible Informationen in Ihre Eingabe ein. Interaktionen können zur Verbesserung der Produkte oder Dienstleistungen von Red Hat verwendet werden.',\n 'disclaimer.withoutValidation':\n 'Diese Funktion verwendet KI-Technologie. Geben Sie keine persönlichen Informationen oder andere sensible Informationen in Ihre Eingabe ein. Interaktionen können zur Verbesserung der Produkte oder Dienstleistungen von Red Hat verwendet werden.',\n\n // Footer and feedback\n 'footer.accuracy.label':\n 'Überprüfen Sie KI-generierte Inhalte immer vor der Verwendung.',\n 'footer.accuracy.popover.title': 'Genauigkeit überprüfen',\n 'footer.accuracy.popover.description':\n 'Obwohl Developer Lightspeed sich um Genauigkeit bemüht, besteht immer die Möglichkeit von Fehlern. Es ist eine gute Praxis, kritische Informationen aus zuverlässigen Quellen zu überprüfen, besonders wenn sie für Entscheidungsfindung oder Handlungen entscheidend sind.',\n 'footer.accuracy.popover.image.alt': 'Beispielbild für Fußnoten-Popover',\n 'footer.accuracy.popover.cta.label': 'Verstanden',\n 'footer.accuracy.popover.link.label': 'Mehr erfahren',\n\n // Common actions\n 'common.cancel': 'Abbrechen',\n 'common.close': 'Schließen',\n 'common.readMore': 'Mehr erfahren',\n 'common.noSearchResults': 'Kein Ergebnis entspricht der Suche',\n\n // Menu items\n 'menu.newConversation': 'Neuer Chat',\n\n // Chat-specific UI elements\n 'chatbox.header.title': 'Developer Lightspeed',\n 'chatbox.search.placeholder': 'Suchen',\n 'chatbox.provider.other': 'Andere',\n 'chatbox.emptyState.noPinnedChats': 'Keine angehefteten Chats',\n 'chatbox.emptyState.noRecentChats': 'Keine kürzlichen Chats',\n 'chatbox.emptyState.noResults.title': 'Keine Ergebnisse gefunden',\n 'chatbox.emptyState.noResults.body':\n 'Passen Sie Ihre Suchanfrage an und versuchen Sie es erneut. Überprüfen Sie Ihre Rechtschreibung oder versuchen Sie einen allgemeineren Begriff.',\n 'chatbox.welcome.greeting': 'Hallo, {{userName}}',\n 'chatbox.welcome.description': 'Wie kann ich Ihnen heute helfen?',\n 'chatbox.message.placeholder':\n 'Senden Sie eine Nachricht und laden Sie optional eine JSON-, YAML-, oder TXT-Datei hoch...',\n 'chatbox.fileUpload.failed': 'Datei-Upload fehlgeschlagen',\n 'chatbox.fileUpload.infoText':\n 'Unterstützte Dateitypen sind: .txt, .yaml, und .json. Die maximale Dateigröße beträgt 25 MB.',\n\n // Accessibility and ARIA labels\n 'aria.chatbotSelector': 'Chatbot-Auswahl',\n 'aria.important': 'Wichtig',\n 'aria.chatHistoryMenu': 'Chat-Verlauf-Menü',\n 'aria.closeDrawerPanel': 'Seitenleiste schließen',\n 'aria.search.placeholder': 'Suchen',\n 'aria.searchPreviousConversations': 'Frühere Chats durchsuchen',\n 'aria.resize': 'Größe ändern',\n 'aria.options.label': 'Optionen',\n 'aria.scroll.down': 'Nach unten',\n 'aria.scroll.up': 'Nach oben',\n 'aria.settings.label': 'Chatbot-Optionen',\n 'aria.close': 'Chatbot schließen',\n\n // Modal actions\n 'modal.edit': 'Bearbeiten',\n 'modal.save': 'Speichern',\n 'modal.close': 'Schließen',\n 'modal.cancel': 'Abbrechen',\n\n // Conversation actions\n 'conversation.delete': 'Löschen',\n 'conversation.rename': 'Umbenennen',\n 'conversation.addToPinnedChats': 'Anheften',\n 'conversation.removeFromPinnedChats': 'Loslösen',\n 'conversation.announcement.userMessage':\n 'Nachricht vom Benutzer: {{prompt}}. Nachricht vom Bot wird geladen.',\n\n // User states\n 'user.guest': 'Gast',\n 'user.loading': '...',\n\n // Button tooltips and labels\n 'tooltip.attach': 'Anhängen',\n 'tooltip.send': 'Senden',\n 'tooltip.microphone.active': 'Aufhören zu hören',\n 'tooltip.microphone.inactive': 'Mikrofon verwenden',\n 'button.newChat': 'Neuer Chat',\n 'tooltip.chatHistoryMenu': 'Chat-Verlauf-Menü',\n 'tooltip.responseRecorded': 'Antwort aufgezeichnet',\n 'tooltip.backToTop': 'Nach oben',\n 'tooltip.backToBottom': 'Nach unten',\n 'tooltip.settings': 'Chatbot-Optionen',\n 'tooltip.close': 'Schließen',\n\n // Modal titles\n 'modal.title.preview': 'Anhang-Vorschau',\n 'modal.title.edit': 'Anhang bearbeiten',\n\n // Alt texts for icons\n 'icon.lightspeed.alt': 'Lightspeed-Icon',\n 'icon.permissionRequired.alt': 'Berechtigung erforderlich Icon',\n\n // Message utilities\n 'message.options.label': 'Optionen',\n\n // File attachment errors\n 'file.upload.error.alreadyExists': 'Die Datei existiert bereits.',\n 'file.upload.error.multipleFiles': 'Mehr als eine Datei hochgeladen.',\n 'file.upload.error.unsupportedType':\n 'Nicht unterstützter Dateityp. Unterstützte Typen sind: .txt, .yaml, und .json.',\n 'file.upload.error.fileTooLarge':\n 'Ihre Dateigröße ist zu groß. Bitte stellen Sie sicher, dass Ihre Datei kleiner als 25 MB ist.',\n 'file.upload.error.readFailed':\n 'Fehler beim Lesen der Datei: {{errorMessage}}',\n\n // Developer error messages\n 'error.context.fileAttachment':\n 'useFileAttachmentContext muss innerhalb eines FileAttachmentContextProvider sein',\n\n // Feedback actions\n 'feedback.form.title': 'Warum haben Sie diese Bewertung gewählt?',\n 'feedback.form.textAreaPlaceholder':\n 'Geben Sie optionale zusätzliche Kommentare',\n 'feedback.form.submitWord': 'Absenden',\n 'feedback.tooltips.goodResponse': 'Gute Antwort',\n 'feedback.tooltips.badResponse': 'Schlechte Antwort',\n 'feedback.tooltips.copied': 'Kopiert',\n 'feedback.tooltips.copy': 'Kopieren',\n 'feedback.tooltips.listening': 'Höre zu',\n 'feedback.tooltips.listen': 'Zuhören',\n 'feedback.quickResponses.positive.helpful': 'Hilfreiche Informationen',\n 'feedback.quickResponses.positive.easyToUnderstand': 'Einfach zu verstehen',\n 'feedback.quickResponses.positive.resolvedIssue': 'Hat mein Problem gelöst',\n 'feedback.quickResponses.negative.didntAnswer':\n 'Hat meine Frage nicht beantwortet',\n 'feedback.quickResponses.negative.hardToUnderstand': 'Schwer zu verstehen',\n 'feedback.quickResponses.negative.notHelpful': 'Nicht hilfreich',\n 'feedback.completion.title': 'Feedback übermittelt',\n 'feedback.completion.body':\n 'Wir haben Ihre Antwort erhalten. Vielen Dank für Ihr Feedback!',\n\n // Conversation categorization\n 'conversation.category.pinnedChats': 'Angeheftet',\n 'conversation.category.recent': 'Kürzlich',\n\n // lightspeed settings\n 'settings.pinned.enable': 'Angeheftete Chats aktivieren',\n 'settings.pinned.disable': 'Angeheftete Chats deaktivieren',\n 'settings.pinned.enabled.description':\n 'Angeheftete Chats sind derzeit aktiviert',\n 'settings.pinned.disabled.description':\n 'Angeheftete Chats sind derzeit deaktiviert',\n\n // Tool calling\n 'toolCall.header': 'Werkzeugantwort: {{toolName}}',\n 'toolCall.thinking': '{{seconds}} Sekunden nachgedacht',\n 'toolCall.executionTime': 'Ausführungszeit: ',\n 'toolCall.parameters': 'Parameter',\n 'toolCall.response': 'Antwort',\n 'toolCall.showMore': 'mehr anzeigen',\n 'toolCall.showLess': 'weniger anzeigen',\n 'toolCall.loading': 'Werkzeug wird ausgeführt...',\n 'toolCall.executing': 'Werkzeug wird ausgeführt...',\n 'toolCall.copyResponse': 'Antwort kopieren',\n 'toolCall.summary': 'Hier ist eine Zusammenfassung Ihrer Antwort',\n 'toolCall.mcpServer': 'MCP-Server',\n // Display modes\n 'settings.displayMode.label': 'Anzeigemodus',\n 'settings.displayMode.overlay': 'Überlagerung',\n 'settings.displayMode.docked': 'An Fenster andocken',\n 'settings.displayMode.fullscreen': 'Vollbild',\n\n // Sort options\n 'sort.label': 'Konversationen sortieren',\n 'sort.newest': 'Datum (neueste zuerst)',\n 'sort.oldest': 'Datum (älteste zuerst)',\n 'sort.alphabeticalAsc': 'Name (A-Z)',\n 'sort.alphabeticalDesc': 'Name (Z-A)',\n\n // Deep thinking\n 'reasoning.thinking': 'Denkvorgang anzeigen',\n },\n});\n\nexport default lightspeedTranslationDe;\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"de.esm.js","sources":["../../src/translations/de.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 * Deutsch translation for Developer Lightspeed.\n * @public\n */\nconst lightspeedTranslationDe = createTranslationMessages({\n ref: lightspeedTranslationRef,\n messages: {\n // Page titles and headers\n 'page.title': 'Lightspeed',\n 'page.subtitle': 'KI-gestützter Entwicklungsassistent',\n\n // Sample prompts - General Development\n 'prompts.codeReadability.title': 'Hilfe zur Code-Lesbarkeit',\n 'prompts.codeReadability.message':\n 'Können Sie Techniken vorschlagen, die ich verwenden kann, um meinen Code lesbarer und wartbarer zu machen?',\n 'prompts.debugging.title': 'Hilfe beim Debugging',\n 'prompts.debugging.message':\n 'Meine Anwendung wirft einen Fehler beim Versuch, sich mit der Datenbank zu verbinden. Können Sie mir helfen, das Problem zu identifizieren?',\n 'prompts.developmentConcept.title': 'Entwicklungskonzept erklären',\n 'prompts.developmentConcept.message':\n 'Können Sie erklären, wie Microservices-Architektur funktioniert und welche Vorteile sie gegenüber einem monolithischen Design hat?',\n 'prompts.codeOptimization.title': 'Code-Optimierungen vorschlagen',\n 'prompts.codeOptimization.message':\n 'Können Sie gängige Möglichkeiten vorschlagen, Code zu optimieren, um bessere Leistung zu erzielen?',\n 'prompts.documentation.title': 'Dokumentationszusammenfassung',\n 'prompts.documentation.message':\n 'Können Sie die Dokumentation für die Implementierung von OAuth 2.0-Authentifizierung in einer Web-App zusammenfassen?',\n 'prompts.gitWorkflows.title': 'Arbeitsabläufe mit Git',\n 'prompts.gitWorkflows.message':\n 'Ich möchte Änderungen am Code in einem anderen Branch vornehmen, ohne meine bestehende Arbeit zu verlieren. Was ist das Verfahren, um dies mit Git zu tun?',\n 'prompts.testingStrategies.title': 'Teststrategien vorschlagen',\n 'prompts.testingStrategies.message':\n 'Können Sie gängige Teststrategien empfehlen, die meine Anwendung robust und fehlerfrei machen?',\n 'prompts.sortingAlgorithms.title': 'Sortieralgorithmen entmystifizieren',\n 'prompts.sortingAlgorithms.message':\n 'Können Sie den Unterschied zwischen einem Quicksort- und einem Mergesort-Algorithmus erklären und wann man welchen verwendet?',\n 'prompts.eventDriven.title': 'Event-getriebene Architektur verstehen',\n 'prompts.eventDriven.message':\n 'Können Sie erklären, was event-getriebene Architektur ist und wann es vorteilhaft ist, sie in der Softwareentwicklung zu verwenden?',\n\n // Sample prompts - RHDH Specific\n 'prompts.tekton.title': 'Mit Tekton bereitstellen',\n 'prompts.tekton.message':\n 'Können Sie mir helfen, die Bereitstellung meiner Anwendung mit Tekton-Pipelines zu automatisieren?',\n 'prompts.openshift.title': 'OpenShift-Bereitstellung erstellen',\n 'prompts.openshift.message':\n 'Können Sie mich durch die Erstellung einer neuen Bereitstellung in OpenShift für eine containerisierte Anwendung führen?',\n 'prompts.rhdh.title': 'Erste Schritte mit Red Hat Developer Hub',\n 'prompts.rhdh.message':\n 'Können Sie mich durch die ersten Schritte führen, um Developer Hub als Entwickler zu nutzen, wie das Erkunden des Software-Katalogs und das Hinzufügen meines Dienstes?',\n\n // Conversation history\n 'conversation.delete.confirm.title': 'Chat löschen?',\n 'conversation.delete.confirm.message':\n 'Sie werden diesen Chat hier nicht mehr sehen. Dies löscht auch verwandte Aktivitäten wie Prompts, Antworten und Feedback aus Ihrer Lightspeed-Aktivität.',\n 'conversation.delete.confirm.action': 'Löschen',\n 'conversation.rename.confirm.title': 'Chat umbenennen?',\n 'conversation.rename.confirm.action': 'Umbenennen',\n 'conversation.rename.placeholder': 'Chat-Name',\n\n // Permissions\n 'permission.required.title': 'Fehlende Berechtigungen',\n 'permission.required.description':\n 'Um das Lightspeed-Plugin zu sehen, wenden Sie sich an Ihren Administrator, um die Berechtigungen <b>lightspeed.chat.read</b> und <b>lightspeed.chat.create</b> zu erhalten.',\n\n // Disclaimers\n 'disclaimer.withValidation':\n 'Diese Funktion verwendet KI-Technologie. Geben Sie keine persönlichen Informationen oder andere sensible Informationen in Ihre Eingabe ein. Interaktionen können zur Verbesserung der Produkte oder Dienstleistungen von Red Hat verwendet werden.',\n 'disclaimer.withoutValidation':\n 'Diese Funktion verwendet KI-Technologie. Geben Sie keine persönlichen Informationen oder andere sensible Informationen in Ihre Eingabe ein. Interaktionen können zur Verbesserung der Produkte oder Dienstleistungen von Red Hat verwendet werden.',\n\n // Footer and feedback\n 'footer.accuracy.label':\n 'Überprüfen Sie KI-generierte Inhalte immer vor der Verwendung.',\n\n // Common actions\n 'common.cancel': 'Abbrechen',\n 'common.close': 'Schließen',\n 'common.readMore': 'Mehr erfahren',\n 'common.noSearchResults': 'Kein Ergebnis entspricht der Suche',\n\n // Menu items\n 'menu.newConversation': 'Neuer Chat',\n\n // Chat-specific UI elements\n 'chatbox.header.title': 'Developer Lightspeed',\n 'chatbox.search.placeholder': 'Suchen',\n 'chatbox.provider.other': 'Andere',\n 'chatbox.emptyState.noPinnedChats': 'Keine angehefteten Chats',\n 'chatbox.emptyState.noRecentChats': 'Keine kürzlichen Chats',\n 'chatbox.emptyState.noResults.title': 'Keine Ergebnisse gefunden',\n 'chatbox.emptyState.noResults.body':\n 'Passen Sie Ihre Suchanfrage an und versuchen Sie es erneut. Überprüfen Sie Ihre Rechtschreibung oder versuchen Sie einen allgemeineren Begriff.',\n 'chatbox.welcome.greeting': 'Hallo, {{userName}}',\n 'chatbox.welcome.description': 'Wie kann ich Ihnen heute helfen?',\n 'chatbox.message.placeholder':\n 'Geben Sie eine Eingabeaufforderung für Lightspeed ein',\n 'chatbox.fileUpload.failed': 'Datei-Upload fehlgeschlagen',\n 'chatbox.fileUpload.infoText':\n 'Unterstützte Dateitypen sind: .txt, .yaml, und .json. Die maximale Dateigröße beträgt 25 MB.',\n\n // Accessibility and ARIA labels\n 'aria.chatbotSelector': 'Chatbot-Auswahl',\n 'aria.important': 'Wichtig',\n 'aria.chatHistoryMenu': 'Chat-Verlauf-Menü',\n 'aria.closeDrawerPanel': 'Seitenleiste schließen',\n 'aria.search.placeholder': 'Suchen',\n 'aria.searchPreviousConversations': 'Frühere Chats durchsuchen',\n 'aria.resize': 'Größe ändern',\n 'aria.options.label': 'Optionen',\n 'aria.scroll.down': 'Nach unten',\n 'aria.scroll.up': 'Nach oben',\n 'aria.settings.label': 'Chatbot-Optionen',\n 'aria.close': 'Chatbot schließen',\n\n // Modal actions\n 'modal.edit': 'Bearbeiten',\n 'modal.save': 'Speichern',\n 'modal.close': 'Schließen',\n 'modal.cancel': 'Abbrechen',\n\n // Conversation actions\n 'conversation.delete': 'Löschen',\n 'conversation.rename': 'Umbenennen',\n 'conversation.addToPinnedChats': 'Anheften',\n 'conversation.removeFromPinnedChats': 'Loslösen',\n 'conversation.announcement.userMessage':\n 'Nachricht vom Benutzer: {{prompt}}. Nachricht vom Bot wird geladen.',\n\n // User states\n 'user.guest': 'Gast',\n 'user.loading': '...',\n\n // Button tooltips and labels\n 'tooltip.attach': 'Anhängen',\n 'tooltip.send': 'Senden',\n 'tooltip.microphone.active': 'Aufhören zu hören',\n 'tooltip.microphone.inactive': 'Mikrofon verwenden',\n 'button.newChat': 'Neuer Chat',\n 'tooltip.chatHistoryMenu': 'Chat-Verlauf-Menü',\n 'tooltip.responseRecorded': 'Antwort aufgezeichnet',\n 'tooltip.backToTop': 'Nach oben',\n 'tooltip.backToBottom': 'Nach unten',\n 'tooltip.settings': 'Chatbot-Optionen',\n 'tooltip.close': 'Schließen',\n\n // Modal titles\n 'modal.title.preview': 'Anhang-Vorschau',\n 'modal.title.edit': 'Anhang bearbeiten',\n\n // Alt texts for icons\n 'icon.lightspeed.alt': 'Lightspeed-Icon',\n 'icon.permissionRequired.alt': 'Berechtigung erforderlich Icon',\n\n // Message utilities\n 'message.options.label': 'Optionen',\n\n // File attachment errors\n 'file.upload.error.alreadyExists': 'Die Datei existiert bereits.',\n 'file.upload.error.multipleFiles': 'Mehr als eine Datei hochgeladen.',\n 'file.upload.error.unsupportedType':\n 'Nicht unterstützter Dateityp. Unterstützte Typen sind: .txt, .yaml, und .json.',\n 'file.upload.error.fileTooLarge':\n 'Ihre Dateigröße ist zu groß. Bitte stellen Sie sicher, dass Ihre Datei kleiner als 25 MB ist.',\n 'file.upload.error.readFailed':\n 'Fehler beim Lesen der Datei: {{errorMessage}}',\n\n // Developer error messages\n 'error.context.fileAttachment':\n 'useFileAttachmentContext muss innerhalb eines FileAttachmentContextProvider sein',\n\n // Feedback actions\n 'feedback.form.title': 'Warum haben Sie diese Bewertung gewählt?',\n 'feedback.form.textAreaPlaceholder':\n 'Geben Sie optionale zusätzliche Kommentare',\n 'feedback.form.submitWord': 'Absenden',\n 'feedback.tooltips.goodResponse': 'Gute Antwort',\n 'feedback.tooltips.badResponse': 'Schlechte Antwort',\n 'feedback.tooltips.copied': 'Kopiert',\n 'feedback.tooltips.copy': 'Kopieren',\n 'feedback.tooltips.listening': 'Höre zu',\n 'feedback.tooltips.listen': 'Zuhören',\n 'feedback.quickResponses.positive.helpful': 'Hilfreiche Informationen',\n 'feedback.quickResponses.positive.easyToUnderstand': 'Einfach zu verstehen',\n 'feedback.quickResponses.positive.resolvedIssue': 'Hat mein Problem gelöst',\n 'feedback.quickResponses.negative.didntAnswer':\n 'Hat meine Frage nicht beantwortet',\n 'feedback.quickResponses.negative.hardToUnderstand': 'Schwer zu verstehen',\n 'feedback.quickResponses.negative.notHelpful': 'Nicht hilfreich',\n 'feedback.completion.title': 'Feedback übermittelt',\n 'feedback.completion.body':\n 'Wir haben Ihre Antwort erhalten. Vielen Dank für Ihr Feedback!',\n\n // Conversation categorization\n 'conversation.category.pinnedChats': 'Angeheftet',\n 'conversation.category.recent': 'Kürzlich',\n\n // lightspeed settings\n 'settings.pinned.enable': 'Angeheftete Chats aktivieren',\n 'settings.pinned.disable': 'Angeheftete Chats deaktivieren',\n 'settings.pinned.enabled.description':\n 'Angeheftete Chats sind derzeit aktiviert',\n 'settings.pinned.disabled.description':\n 'Angeheftete Chats sind derzeit deaktiviert',\n\n // Tool calling\n 'toolCall.header': 'Werkzeugantwort: {{toolName}}',\n 'toolCall.thinking': '{{seconds}} Sekunden nachgedacht',\n 'toolCall.executionTime': 'Ausführungszeit: ',\n 'toolCall.parameters': 'Parameter',\n 'toolCall.response': 'Antwort',\n 'toolCall.showMore': 'mehr anzeigen',\n 'toolCall.showLess': 'weniger anzeigen',\n 'toolCall.loading': 'Werkzeug wird ausgeführt...',\n 'toolCall.executing': 'Werkzeug wird ausgeführt...',\n 'toolCall.copyResponse': 'Antwort kopieren',\n 'toolCall.summary': 'Hier ist eine Zusammenfassung Ihrer Antwort',\n 'toolCall.mcpServer': 'MCP-Server',\n // Display modes\n 'settings.displayMode.label': 'Anzeigemodus',\n 'settings.displayMode.overlay': 'Überlagerung',\n 'settings.displayMode.docked': 'An Fenster andocken',\n 'settings.displayMode.fullscreen': 'Vollbild',\n\n // Sort options\n 'sort.label': 'Konversationen sortieren',\n 'sort.newest': 'Datum (neueste zuerst)',\n 'sort.oldest': 'Datum (älteste zuerst)',\n 'sort.alphabeticalAsc': 'Name (A-Z)',\n 'sort.alphabeticalDesc': 'Name (Z-A)',\n\n // Deep thinking\n 'reasoning.thinking': 'Denkvorgang anzeigen',\n },\n});\n\nexport default lightspeedTranslationDe;\n"],"names":[],"mappings":";;;AAwBA,MAAM,0BAA0B,yBAA0B,CAAA;AAAA,EACxD,GAAK,EAAA,wBAAA;AAAA,EACL,QAAU,EAAA;AAAA;AAAA,IAER,YAAc,EAAA,YAAA;AAAA,IACd,eAAiB,EAAA,wCAAA;AAAA;AAAA,IAGjB,+BAAiC,EAAA,2BAAA;AAAA,IACjC,iCACE,EAAA,+GAAA;AAAA,IACF,yBAA2B,EAAA,sBAAA;AAAA,IAC3B,2BACE,EAAA,gJAAA;AAAA,IACF,kCAAoC,EAAA,iCAAA;AAAA,IACpC,oCACE,EAAA,6IAAA;AAAA,IACF,gCAAkC,EAAA,gCAAA;AAAA,IAClC,kCACE,EAAA,6GAAA;AAAA,IACF,6BAA+B,EAAA,+BAAA;AAAA,IAC/B,+BACE,EAAA,6HAAA;AAAA,IACF,4BAA8B,EAAA,2BAAA;AAAA,IAC9B,8BACE,EAAA,kKAAA;AAAA,IACF,iCAAmC,EAAA,4BAAA;AAAA,IACnC,mCACE,EAAA,sGAAA;AAAA,IACF,iCAAmC,EAAA,qCAAA;AAAA,IACnC,mCACE,EAAA,qIAAA;AAAA,IACF,2BAA6B,EAAA,wCAAA;AAAA,IAC7B,6BACE,EAAA,2IAAA;AAAA;AAAA,IAGF,sBAAwB,EAAA,0BAAA;AAAA,IACxB,wBACE,EAAA,uGAAA;AAAA,IACF,yBAA2B,EAAA,oCAAA;AAAA,IAC3B,2BACE,EAAA,mIAAA;AAAA,IACF,oBAAsB,EAAA,0CAAA;AAAA,IACtB,sBACE,EAAA,kLAAA;AAAA;AAAA,IAGF,mCAAqC,EAAA,kBAAA;AAAA,IACrC,qCACE,EAAA,mKAAA;AAAA,IACF,oCAAsC,EAAA,YAAA;AAAA,IACtC,mCAAqC,EAAA,kBAAA;AAAA,IACrC,oCAAsC,EAAA,YAAA;AAAA,IACtC,iCAAmC,EAAA,WAAA;AAAA;AAAA,IAGnC,2BAA6B,EAAA,yBAAA;AAAA,IAC7B,iCACE,EAAA,6KAAA;AAAA;AAAA,IAGF,2BACE,EAAA,0PAAA;AAAA,IACF,8BACE,EAAA,0PAAA;AAAA;AAAA,IAGF,uBACE,EAAA,sEAAA;AAAA;AAAA,IAGF,eAAiB,EAAA,WAAA;AAAA,IACjB,cAAgB,EAAA,cAAA;AAAA,IAChB,iBAAmB,EAAA,eAAA;AAAA,IACnB,wBAA0B,EAAA,oCAAA;AAAA;AAAA,IAG1B,sBAAwB,EAAA,YAAA;AAAA;AAAA,IAGxB,sBAAwB,EAAA,sBAAA;AAAA,IACxB,4BAA8B,EAAA,QAAA;AAAA,IAC9B,wBAA0B,EAAA,QAAA;AAAA,IAC1B,kCAAoC,EAAA,0BAAA;AAAA,IACpC,kCAAoC,EAAA,2BAAA;AAAA,IACpC,oCAAsC,EAAA,2BAAA;AAAA,IACtC,mCACE,EAAA,uJAAA;AAAA,IACF,0BAA4B,EAAA,qBAAA;AAAA,IAC5B,6BAA+B,EAAA,kCAAA;AAAA,IAC/B,6BACE,EAAA,0DAAA;AAAA,IACF,2BAA6B,EAAA,6BAAA;AAAA,IAC7B,6BACE,EAAA,0GAAA;AAAA;AAAA,IAGF,sBAAwB,EAAA,iBAAA;AAAA,IACxB,gBAAkB,EAAA,SAAA;AAAA,IAClB,sBAAwB,EAAA,sBAAA;AAAA,IACxB,uBAAyB,EAAA,2BAAA;AAAA,IACzB,yBAA2B,EAAA,QAAA;AAAA,IAC3B,kCAAoC,EAAA,8BAAA;AAAA,IACpC,aAAe,EAAA,uBAAA;AAAA,IACf,oBAAsB,EAAA,UAAA;AAAA,IACtB,kBAAoB,EAAA,YAAA;AAAA,IACpB,gBAAkB,EAAA,WAAA;AAAA,IAClB,qBAAuB,EAAA,kBAAA;AAAA,IACvB,YAAc,EAAA,sBAAA;AAAA;AAAA,IAGd,YAAc,EAAA,YAAA;AAAA,IACd,YAAc,EAAA,WAAA;AAAA,IACd,aAAe,EAAA,cAAA;AAAA,IACf,cAAgB,EAAA,WAAA;AAAA;AAAA,IAGhB,qBAAuB,EAAA,YAAA;AAAA,IACvB,qBAAuB,EAAA,YAAA;AAAA,IACvB,+BAAiC,EAAA,UAAA;AAAA,IACjC,oCAAsC,EAAA,aAAA;AAAA,IACtC,uCACE,EAAA,qEAAA;AAAA;AAAA,IAGF,YAAc,EAAA,MAAA;AAAA,IACd,cAAgB,EAAA,KAAA;AAAA;AAAA,IAGhB,gBAAkB,EAAA,aAAA;AAAA,IAClB,cAAgB,EAAA,QAAA;AAAA,IAChB,2BAA6B,EAAA,yBAAA;AAAA,IAC7B,6BAA+B,EAAA,oBAAA;AAAA,IAC/B,gBAAkB,EAAA,YAAA;AAAA,IAClB,yBAA2B,EAAA,sBAAA;AAAA,IAC3B,0BAA4B,EAAA,uBAAA;AAAA,IAC5B,mBAAqB,EAAA,WAAA;AAAA,IACrB,sBAAwB,EAAA,YAAA;AAAA,IACxB,kBAAoB,EAAA,kBAAA;AAAA,IACpB,eAAiB,EAAA,cAAA;AAAA;AAAA,IAGjB,qBAAuB,EAAA,iBAAA;AAAA,IACvB,kBAAoB,EAAA,mBAAA;AAAA;AAAA,IAGpB,qBAAuB,EAAA,iBAAA;AAAA,IACvB,6BAA+B,EAAA,gCAAA;AAAA;AAAA,IAG/B,uBAAyB,EAAA,UAAA;AAAA;AAAA,IAGzB,iCAAmC,EAAA,8BAAA;AAAA,IACnC,iCAAmC,EAAA,kCAAA;AAAA,IACnC,mCACE,EAAA,sFAAA;AAAA,IACF,gCACE,EAAA,wGAAA;AAAA,IACF,8BACE,EAAA,+CAAA;AAAA;AAAA,IAGF,8BACE,EAAA,kFAAA;AAAA;AAAA,IAGF,qBAAuB,EAAA,6CAAA;AAAA,IACvB,mCACE,EAAA,+CAAA;AAAA,IACF,0BAA4B,EAAA,UAAA;AAAA,IAC5B,gCAAkC,EAAA,cAAA;AAAA,IAClC,+BAAiC,EAAA,mBAAA;AAAA,IACjC,0BAA4B,EAAA,SAAA;AAAA,IAC5B,wBAA0B,EAAA,UAAA;AAAA,IAC1B,6BAA+B,EAAA,YAAA;AAAA,IAC/B,0BAA4B,EAAA,YAAA;AAAA,IAC5B,0CAA4C,EAAA,0BAAA;AAAA,IAC5C,mDAAqD,EAAA,sBAAA;AAAA,IACrD,gDAAkD,EAAA,4BAAA;AAAA,IAClD,8CACE,EAAA,mCAAA;AAAA,IACF,mDAAqD,EAAA,qBAAA;AAAA,IACrD,6CAA+C,EAAA,iBAAA;AAAA,IAC/C,2BAA6B,EAAA,yBAAA;AAAA,IAC7B,0BACE,EAAA,mEAAA;AAAA;AAAA,IAGF,mCAAqC,EAAA,YAAA;AAAA,IACrC,8BAAgC,EAAA,aAAA;AAAA;AAAA,IAGhC,wBAA0B,EAAA,8BAAA;AAAA,IAC1B,yBAA2B,EAAA,gCAAA;AAAA,IAC3B,qCACE,EAAA,0CAAA;AAAA,IACF,sCACE,EAAA,4CAAA;AAAA;AAAA,IAGF,iBAAmB,EAAA,+BAAA;AAAA,IACnB,mBAAqB,EAAA,kCAAA;AAAA,IACrB,wBAA0B,EAAA,sBAAA;AAAA,IAC1B,qBAAuB,EAAA,WAAA;AAAA,IACvB,mBAAqB,EAAA,SAAA;AAAA,IACrB,mBAAqB,EAAA,eAAA;AAAA,IACrB,mBAAqB,EAAA,kBAAA;AAAA,IACrB,kBAAoB,EAAA,gCAAA;AAAA,IACpB,oBAAsB,EAAA,gCAAA;AAAA,IACtB,uBAAyB,EAAA,kBAAA;AAAA,IACzB,kBAAoB,EAAA,6CAAA;AAAA,IACpB,oBAAsB,EAAA,YAAA;AAAA;AAAA,IAEtB,4BAA8B,EAAA,cAAA;AAAA,IAC9B,8BAAgC,EAAA,iBAAA;AAAA,IAChC,6BAA+B,EAAA,qBAAA;AAAA,IAC/B,iCAAmC,EAAA,UAAA;AAAA;AAAA,IAGnC,YAAc,EAAA,0BAAA;AAAA,IACd,aAAe,EAAA,wBAAA;AAAA,IACf,aAAe,EAAA,2BAAA;AAAA,IACf,sBAAwB,EAAA,YAAA;AAAA,IACxB,uBAAyB,EAAA,YAAA;AAAA;AAAA,IAGzB,oBAAsB,EAAA;AAAA;AAE1B,CAAC;;;;"}
|
|
@@ -40,7 +40,6 @@ const lightspeedTranslationEs = createTranslationMessages({
|
|
|
40
40
|
"conversation.rename.confirm.title": "\xBFRenombrar chat?",
|
|
41
41
|
"conversation.rename.confirm.action": "Renombrar",
|
|
42
42
|
"conversation.rename.placeholder": "Nombre del chat",
|
|
43
|
-
"conversation.action.error": "Error ocurrido: {{error}}",
|
|
44
43
|
// Permissions
|
|
45
44
|
"permission.required.title": "Permisos faltantes",
|
|
46
45
|
"permission.required.description": "Para ver el plugin de lightspeed, contacta a tu administrador para que te d\xE9 los permisos <b>lightspeed.chat.read</b> y <b>lightspeed.chat.create</b>.",
|
|
@@ -49,11 +48,6 @@ const lightspeedTranslationEs = createTranslationMessages({
|
|
|
49
48
|
"disclaimer.withoutValidation": "Esta funci\xF3n utiliza tecnolog\xEDa de IA. No incluyas informaci\xF3n personal ni otra informaci\xF3n sensible en tu entrada. Las interacciones pueden ser utilizadas para mejorar los productos o servicios de Red Hat.",
|
|
50
49
|
// Footer and feedback
|
|
51
50
|
"footer.accuracy.label": "Siempre revisa el contenido generado por IA antes de usarlo.",
|
|
52
|
-
"footer.accuracy.popover.title": "Verificar precisi\xF3n",
|
|
53
|
-
"footer.accuracy.popover.description": "Si bien Developer Lightspeed se esfuerza por la precisi\xF3n, siempre existe la posibilidad de errores. Es una buena pr\xE1ctica verificar informaci\xF3n cr\xEDtica de fuentes confiables, especialmente si es crucial para la toma de decisiones o acciones.",
|
|
54
|
-
"footer.accuracy.popover.image.alt": "Imagen de ejemplo para el popover de nota al pie",
|
|
55
|
-
"footer.accuracy.popover.cta.label": "Entendido",
|
|
56
|
-
"footer.accuracy.popover.link.label": "Aprende m\xE1s",
|
|
57
51
|
// Common actions
|
|
58
52
|
"common.cancel": "Cancelar",
|
|
59
53
|
"common.close": "Cerrar",
|
|
@@ -71,7 +65,7 @@ const lightspeedTranslationEs = createTranslationMessages({
|
|
|
71
65
|
"chatbox.emptyState.noResults.body": "Ajusta tu consulta de b\xFAsqueda e int\xE9ntalo de nuevo. Verifica tu ortograf\xEDa o prueba un t\xE9rmino m\xE1s general.",
|
|
72
66
|
"chatbox.welcome.greeting": "Hola, {{userName}}",
|
|
73
67
|
"chatbox.welcome.description": "\xBFC\xF3mo puedo ayudarte hoy?",
|
|
74
|
-
"chatbox.message.placeholder": "
|
|
68
|
+
"chatbox.message.placeholder": "Ingrese un prompt para Lightspeed",
|
|
75
69
|
"chatbox.fileUpload.failed": "La carga del archivo fall\xF3",
|
|
76
70
|
"chatbox.fileUpload.infoText": "Los tipos de archivo soportados son: .txt, .yaml, y .json. El tama\xF1o m\xE1ximo del archivo es 25 MB.",
|
|
77
71
|
// Accessibility and ARIA labels
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"es.esm.js","sources":["../../src/translations/es.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 * Spanish translation for Developer Lightspeed.\n * @public\n */\nconst lightspeedTranslationEs = createTranslationMessages({\n ref: lightspeedTranslationRef,\n messages: {\n // Page titles and headers\n 'page.title': 'Lightspeed',\n 'page.subtitle': 'Asistente de desarrollo impulsado por IA',\n\n // Sample prompts - General Development\n 'prompts.codeReadability.title':\n 'Obtener ayuda sobre legibilidad del código',\n 'prompts.codeReadability.message':\n '¿Puedes sugerir técnicas que pueda usar para hacer mi código más legible y mantenible?',\n 'prompts.debugging.title': 'Obtener ayuda con depuración',\n 'prompts.debugging.message':\n 'Mi aplicación está lanzando un error al intentar conectarse a la base de datos. ¿Puedes ayudarme a identificar el problema?',\n 'prompts.developmentConcept.title': 'Explicar un concepto de desarrollo',\n 'prompts.developmentConcept.message':\n '¿Puedes explicar cómo funciona la arquitectura de microservicios y sus ventajas sobre un diseño monolítico?',\n 'prompts.codeOptimization.title': 'Sugerir optimizaciones de código',\n 'prompts.codeOptimization.message':\n '¿Puedes sugerir formas comunes de optimizar el código para lograr mejor rendimiento?',\n 'prompts.documentation.title': 'Resumen de documentación',\n 'prompts.documentation.message':\n '¿Puedes resumir la documentación para implementar autenticación OAuth 2.0 en una aplicación web?',\n 'prompts.gitWorkflows.title': 'Flujos de trabajo con Git',\n 'prompts.gitWorkflows.message':\n 'Quiero hacer cambios en el código en otra rama sin perder mi trabajo existente. ¿Cuál es el procedimiento para hacer esto usando Git?',\n 'prompts.testingStrategies.title': 'Sugerir estrategias de prueba',\n 'prompts.testingStrategies.message':\n '¿Puedes recomendar algunas estrategias de prueba comunes que harán que mi aplicación sea robusta y libre de errores?',\n 'prompts.sortingAlgorithms.title':\n 'Desmitificar algoritmos de ordenamiento',\n 'prompts.sortingAlgorithms.message':\n '¿Puedes explicar la diferencia entre un algoritmo de ordenamiento rápido y uno de ordenamiento por mezcla, y cuándo usar cada uno?',\n 'prompts.eventDriven.title':\n 'Entender la arquitectura impulsada por eventos',\n 'prompts.eventDriven.message':\n '¿Puedes explicar qué es la arquitectura impulsada por eventos y cuándo es beneficioso usarla en el desarrollo de software?',\n\n // Sample prompts - RHDH Specific\n 'prompts.tekton.title': 'Implementar con Tekton',\n 'prompts.tekton.message':\n '¿Puedes ayudarme a automatizar la implementación de mi aplicación usando pipelines de Tekton?',\n 'prompts.openshift.title': 'Crear una implementación de OpenShift',\n 'prompts.openshift.message':\n '¿Puedes guiarme a través de la creación de una nueva implementación en OpenShift para una aplicación containerizada?',\n 'prompts.rhdh.title': 'Comenzar con Red Hat Developer Hub',\n 'prompts.rhdh.message':\n '¿Puedes guiarme a través de los primeros pasos para comenzar a usar Developer Hub como desarrollador, como explorar el Catálogo de Software y agregar mi servicio?',\n\n // Conversation history\n 'conversation.delete.confirm.title': '¿Eliminar chat?',\n 'conversation.delete.confirm.message':\n 'Ya no verás este chat aquí. Esto también eliminará la actividad relacionada como prompts, respuestas y comentarios de tu Actividad de Lightspeed.',\n 'conversation.delete.confirm.action': 'Eliminar',\n 'conversation.rename.confirm.title': '¿Renombrar chat?',\n 'conversation.rename.confirm.action': 'Renombrar',\n 'conversation.rename.placeholder': 'Nombre del chat',\n 'conversation.action.error': 'Error ocurrido: {{error}}',\n\n // Permissions\n 'permission.required.title': 'Permisos faltantes',\n 'permission.required.description':\n 'Para ver el plugin de lightspeed, contacta a tu administrador para que te dé los permisos <b>lightspeed.chat.read</b> y <b>lightspeed.chat.create</b>.',\n\n // Disclaimers\n 'disclaimer.withValidation':\n 'Esta función utiliza tecnología de IA. No incluyas información personal ni otra información sensible en tu entrada. Las interacciones pueden ser utilizadas para mejorar los productos o servicios de Red Hat.',\n 'disclaimer.withoutValidation':\n 'Esta función utiliza tecnología de IA. No incluyas información personal ni otra información sensible en tu entrada. Las interacciones pueden ser utilizadas para mejorar los productos o servicios de Red Hat.',\n\n // Footer and feedback\n 'footer.accuracy.label':\n 'Siempre revisa el contenido generado por IA antes de usarlo.',\n 'footer.accuracy.popover.title': 'Verificar precisión',\n 'footer.accuracy.popover.description':\n 'Si bien Developer Lightspeed se esfuerza por la precisión, siempre existe la posibilidad de errores. Es una buena práctica verificar información crítica de fuentes confiables, especialmente si es crucial para la toma de decisiones o acciones.',\n 'footer.accuracy.popover.image.alt':\n 'Imagen de ejemplo para el popover de nota al pie',\n 'footer.accuracy.popover.cta.label': 'Entendido',\n 'footer.accuracy.popover.link.label': 'Aprende más',\n\n // Common actions\n 'common.cancel': 'Cancelar',\n 'common.close': 'Cerrar',\n 'common.readMore': 'Leer más',\n 'common.noSearchResults': 'Ningún resultado coincide con la búsqueda',\n\n // Menu items\n 'menu.newConversation': 'Nuevo Chat',\n\n // Chat-specific UI elements\n 'chatbox.header.title': 'Developer Lightspeed',\n 'chatbox.search.placeholder': 'Buscar',\n 'chatbox.provider.other': 'Otro',\n 'chatbox.emptyState.noPinnedChats': 'No hay chats fijados',\n 'chatbox.emptyState.noRecentChats': 'No hay chats recientes',\n 'chatbox.emptyState.noResults.title': 'No se encontraron resultados',\n 'chatbox.emptyState.noResults.body':\n 'Ajusta tu consulta de búsqueda e inténtalo de nuevo. Verifica tu ortografía o prueba un término más general.',\n 'chatbox.welcome.greeting': 'Hola, {{userName}}',\n 'chatbox.welcome.description': '¿Cómo puedo ayudarte hoy?',\n 'chatbox.message.placeholder':\n 'Envía un mensaje y opcionalmente sube un archivo JSON, YAML, o TXT...',\n 'chatbox.fileUpload.failed': 'La carga del archivo falló',\n 'chatbox.fileUpload.infoText':\n 'Los tipos de archivo soportados son: .txt, .yaml, y .json. El tamaño máximo del archivo es 25 MB.',\n\n // Accessibility and ARIA labels\n 'aria.chatbotSelector': 'Selector de chatbot',\n 'aria.important': 'Importante',\n 'aria.chatHistoryMenu': 'Menú de historial de chat',\n 'aria.closeDrawerPanel': 'Cerrar panel lateral',\n 'aria.search.placeholder': 'Buscar',\n 'aria.searchPreviousConversations': 'Buscar chats anteriores',\n 'aria.resize': 'Redimensionar',\n 'aria.options.label': 'Opciones',\n 'aria.scroll.down': 'Volver abajo',\n 'aria.scroll.up': 'Volver arriba',\n 'aria.settings.label': 'Opciones del chatbot',\n 'aria.close': 'Cerrar chatbot',\n\n // Modal actions\n 'modal.edit': 'Editar',\n 'modal.save': 'Guardar',\n 'modal.close': 'Cerrar',\n 'modal.cancel': 'Cancelar',\n\n // Conversation actions\n 'conversation.delete': 'Eliminar',\n 'conversation.rename': 'Renombrar',\n 'conversation.addToPinnedChats': 'Fijar',\n 'conversation.removeFromPinnedChats': 'Desfijar',\n 'conversation.announcement.userMessage':\n 'Mensaje del Usuario: {{prompt}}. El mensaje del Bot está cargando.',\n\n // User states\n 'user.guest': 'Invitado',\n 'user.loading': '...',\n\n // Button tooltips and labels\n 'tooltip.attach': 'Adjuntar',\n 'tooltip.send': 'Enviar',\n 'tooltip.microphone.active': 'Dejar de escuchar',\n 'tooltip.microphone.inactive': 'Usar micrófono',\n 'button.newChat': 'Nuevo chat',\n 'tooltip.chatHistoryMenu': 'Menú de historial de chat',\n 'tooltip.responseRecorded': 'Respuesta registrada',\n 'tooltip.backToTop': 'Volver arriba',\n 'tooltip.backToBottom': 'Volver abajo',\n 'tooltip.settings': 'Opciones del chatbot',\n 'tooltip.close': 'Cerrar',\n\n // Modal titles\n 'modal.title.preview': 'Vista previa del adjunto',\n 'modal.title.edit': 'Editar adjunto',\n\n // Alt texts for icons\n 'icon.lightspeed.alt': 'icono de lightspeed',\n 'icon.permissionRequired.alt': 'icono de permiso requerido',\n\n // Message utilities\n 'message.options.label': 'Opciones',\n\n // File attachment errors\n 'file.upload.error.alreadyExists': 'El archivo ya existe.',\n 'file.upload.error.multipleFiles': 'Se subió más de un archivo.',\n 'file.upload.error.unsupportedType':\n 'Tipo de archivo no soportado. Los tipos soportados son: .txt, .yaml, y .json.',\n 'file.upload.error.fileTooLarge':\n 'El tamaño de tu archivo es demasiado grande. Por favor asegúrate de que tu archivo sea menor a 25 MB.',\n 'file.upload.error.readFailed':\n 'Error al leer el archivo: {{errorMessage}}',\n\n // Developer error messages\n 'error.context.fileAttachment':\n 'useFileAttachmentContext debe estar dentro de un FileAttachmentContextProvider',\n\n // Feedback actions\n 'feedback.form.title': '¿Por qué elegiste esta calificación?',\n 'feedback.form.textAreaPlaceholder':\n 'Proporciona comentarios adicionales opcionales',\n 'feedback.form.submitWord': 'Enviar',\n 'feedback.tooltips.goodResponse': 'Buena Respuesta',\n 'feedback.tooltips.badResponse': 'Mala Respuesta',\n 'feedback.tooltips.copied': 'Copiado',\n 'feedback.tooltips.copy': 'Copiar',\n 'feedback.tooltips.listening': 'Escuchando',\n 'feedback.tooltips.listen': 'Escuchar',\n 'feedback.quickResponses.positive.helpful': 'Información útil',\n 'feedback.quickResponses.positive.easyToUnderstand': 'Fácil de entender',\n 'feedback.quickResponses.positive.resolvedIssue': 'Resolvió mi problema',\n 'feedback.quickResponses.negative.didntAnswer': 'No respondió mi pregunta',\n 'feedback.quickResponses.negative.hardToUnderstand': 'Difícil de entender',\n 'feedback.quickResponses.negative.notHelpful': 'No fue útil',\n 'feedback.completion.title': 'Feedback enviado',\n 'feedback.completion.body':\n 'Hemos recibido tu respuesta. ¡Gracias por compartir tu feedback!',\n\n // Conversation categorization\n 'conversation.category.pinnedChats': 'Fijados',\n 'conversation.category.recent': 'Recientes',\n\n // lightspeed settings\n 'settings.pinned.enable': 'Habilitar chats fijados',\n 'settings.pinned.disable': 'Deshabilitar chats fijados',\n 'settings.pinned.enabled.description':\n 'Los chats fijados están actualmente habilitados',\n 'settings.pinned.disabled.description':\n 'Los chats fijados están actualmente deshabilitados',\n\n // Tool calling\n 'toolCall.header': 'Respuesta de herramienta: {{toolName}}',\n 'toolCall.thinking': 'Pensó durante {{seconds}} segundos',\n 'toolCall.executionTime': 'Tiempo de ejecución: ',\n 'toolCall.parameters': 'Parámetros',\n 'toolCall.response': 'Respuesta',\n 'toolCall.showMore': 'mostrar más',\n 'toolCall.showLess': 'mostrar menos',\n 'toolCall.loading': 'Ejecutando herramienta...',\n 'toolCall.executing': 'Ejecutando herramienta...',\n 'toolCall.copyResponse': 'Copiar respuesta',\n 'toolCall.summary': 'Aquí tienes un resumen de tu respuesta',\n 'toolCall.mcpServer': 'Servidor MCP',\n // Display modes\n 'settings.displayMode.label': 'Modo de visualización',\n 'settings.displayMode.overlay': 'Superposición',\n 'settings.displayMode.docked': 'Acoplar a ventana',\n 'settings.displayMode.fullscreen': 'Pantalla completa',\n\n // Sort options\n 'sort.label': 'Ordenar conversaciones',\n 'sort.newest': 'Fecha (más reciente primero)',\n 'sort.oldest': 'Fecha (más antiguo primero)',\n 'sort.alphabeticalAsc': 'Nombre (A-Z)',\n 'sort.alphabeticalDesc': 'Nombre (Z-A)',\n\n // Deep thinking\n 'reasoning.thinking': 'Mostrar razonamiento',\n },\n});\n\nexport default lightspeedTranslationEs;\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"es.esm.js","sources":["../../src/translations/es.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 * Spanish translation for Developer Lightspeed.\n * @public\n */\nconst lightspeedTranslationEs = createTranslationMessages({\n ref: lightspeedTranslationRef,\n messages: {\n // Page titles and headers\n 'page.title': 'Lightspeed',\n 'page.subtitle': 'Asistente de desarrollo impulsado por IA',\n\n // Sample prompts - General Development\n 'prompts.codeReadability.title':\n 'Obtener ayuda sobre legibilidad del código',\n 'prompts.codeReadability.message':\n '¿Puedes sugerir técnicas que pueda usar para hacer mi código más legible y mantenible?',\n 'prompts.debugging.title': 'Obtener ayuda con depuración',\n 'prompts.debugging.message':\n 'Mi aplicación está lanzando un error al intentar conectarse a la base de datos. ¿Puedes ayudarme a identificar el problema?',\n 'prompts.developmentConcept.title': 'Explicar un concepto de desarrollo',\n 'prompts.developmentConcept.message':\n '¿Puedes explicar cómo funciona la arquitectura de microservicios y sus ventajas sobre un diseño monolítico?',\n 'prompts.codeOptimization.title': 'Sugerir optimizaciones de código',\n 'prompts.codeOptimization.message':\n '¿Puedes sugerir formas comunes de optimizar el código para lograr mejor rendimiento?',\n 'prompts.documentation.title': 'Resumen de documentación',\n 'prompts.documentation.message':\n '¿Puedes resumir la documentación para implementar autenticación OAuth 2.0 en una aplicación web?',\n 'prompts.gitWorkflows.title': 'Flujos de trabajo con Git',\n 'prompts.gitWorkflows.message':\n 'Quiero hacer cambios en el código en otra rama sin perder mi trabajo existente. ¿Cuál es el procedimiento para hacer esto usando Git?',\n 'prompts.testingStrategies.title': 'Sugerir estrategias de prueba',\n 'prompts.testingStrategies.message':\n '¿Puedes recomendar algunas estrategias de prueba comunes que harán que mi aplicación sea robusta y libre de errores?',\n 'prompts.sortingAlgorithms.title':\n 'Desmitificar algoritmos de ordenamiento',\n 'prompts.sortingAlgorithms.message':\n '¿Puedes explicar la diferencia entre un algoritmo de ordenamiento rápido y uno de ordenamiento por mezcla, y cuándo usar cada uno?',\n 'prompts.eventDriven.title':\n 'Entender la arquitectura impulsada por eventos',\n 'prompts.eventDriven.message':\n '¿Puedes explicar qué es la arquitectura impulsada por eventos y cuándo es beneficioso usarla en el desarrollo de software?',\n\n // Sample prompts - RHDH Specific\n 'prompts.tekton.title': 'Implementar con Tekton',\n 'prompts.tekton.message':\n '¿Puedes ayudarme a automatizar la implementación de mi aplicación usando pipelines de Tekton?',\n 'prompts.openshift.title': 'Crear una implementación de OpenShift',\n 'prompts.openshift.message':\n '¿Puedes guiarme a través de la creación de una nueva implementación en OpenShift para una aplicación containerizada?',\n 'prompts.rhdh.title': 'Comenzar con Red Hat Developer Hub',\n 'prompts.rhdh.message':\n '¿Puedes guiarme a través de los primeros pasos para comenzar a usar Developer Hub como desarrollador, como explorar el Catálogo de Software y agregar mi servicio?',\n\n // Conversation history\n 'conversation.delete.confirm.title': '¿Eliminar chat?',\n 'conversation.delete.confirm.message':\n 'Ya no verás este chat aquí. Esto también eliminará la actividad relacionada como prompts, respuestas y comentarios de tu Actividad de Lightspeed.',\n 'conversation.delete.confirm.action': 'Eliminar',\n 'conversation.rename.confirm.title': '¿Renombrar chat?',\n 'conversation.rename.confirm.action': 'Renombrar',\n 'conversation.rename.placeholder': 'Nombre del chat',\n\n // Permissions\n 'permission.required.title': 'Permisos faltantes',\n 'permission.required.description':\n 'Para ver el plugin de lightspeed, contacta a tu administrador para que te dé los permisos <b>lightspeed.chat.read</b> y <b>lightspeed.chat.create</b>.',\n\n // Disclaimers\n 'disclaimer.withValidation':\n 'Esta función utiliza tecnología de IA. No incluyas información personal ni otra información sensible en tu entrada. Las interacciones pueden ser utilizadas para mejorar los productos o servicios de Red Hat.',\n 'disclaimer.withoutValidation':\n 'Esta función utiliza tecnología de IA. No incluyas información personal ni otra información sensible en tu entrada. Las interacciones pueden ser utilizadas para mejorar los productos o servicios de Red Hat.',\n\n // Footer and feedback\n 'footer.accuracy.label':\n 'Siempre revisa el contenido generado por IA antes de usarlo.',\n\n // Common actions\n 'common.cancel': 'Cancelar',\n 'common.close': 'Cerrar',\n 'common.readMore': 'Leer más',\n 'common.noSearchResults': 'Ningún resultado coincide con la búsqueda',\n\n // Menu items\n 'menu.newConversation': 'Nuevo Chat',\n\n // Chat-specific UI elements\n 'chatbox.header.title': 'Developer Lightspeed',\n 'chatbox.search.placeholder': 'Buscar',\n 'chatbox.provider.other': 'Otro',\n 'chatbox.emptyState.noPinnedChats': 'No hay chats fijados',\n 'chatbox.emptyState.noRecentChats': 'No hay chats recientes',\n 'chatbox.emptyState.noResults.title': 'No se encontraron resultados',\n 'chatbox.emptyState.noResults.body':\n 'Ajusta tu consulta de búsqueda e inténtalo de nuevo. Verifica tu ortografía o prueba un término más general.',\n 'chatbox.welcome.greeting': 'Hola, {{userName}}',\n 'chatbox.welcome.description': '¿Cómo puedo ayudarte hoy?',\n 'chatbox.message.placeholder': 'Ingrese un prompt para Lightspeed',\n 'chatbox.fileUpload.failed': 'La carga del archivo falló',\n 'chatbox.fileUpload.infoText':\n 'Los tipos de archivo soportados son: .txt, .yaml, y .json. El tamaño máximo del archivo es 25 MB.',\n\n // Accessibility and ARIA labels\n 'aria.chatbotSelector': 'Selector de chatbot',\n 'aria.important': 'Importante',\n 'aria.chatHistoryMenu': 'Menú de historial de chat',\n 'aria.closeDrawerPanel': 'Cerrar panel lateral',\n 'aria.search.placeholder': 'Buscar',\n 'aria.searchPreviousConversations': 'Buscar chats anteriores',\n 'aria.resize': 'Redimensionar',\n 'aria.options.label': 'Opciones',\n 'aria.scroll.down': 'Volver abajo',\n 'aria.scroll.up': 'Volver arriba',\n 'aria.settings.label': 'Opciones del chatbot',\n 'aria.close': 'Cerrar chatbot',\n\n // Modal actions\n 'modal.edit': 'Editar',\n 'modal.save': 'Guardar',\n 'modal.close': 'Cerrar',\n 'modal.cancel': 'Cancelar',\n\n // Conversation actions\n 'conversation.delete': 'Eliminar',\n 'conversation.rename': 'Renombrar',\n 'conversation.addToPinnedChats': 'Fijar',\n 'conversation.removeFromPinnedChats': 'Desfijar',\n 'conversation.announcement.userMessage':\n 'Mensaje del Usuario: {{prompt}}. El mensaje del Bot está cargando.',\n\n // User states\n 'user.guest': 'Invitado',\n 'user.loading': '...',\n\n // Button tooltips and labels\n 'tooltip.attach': 'Adjuntar',\n 'tooltip.send': 'Enviar',\n 'tooltip.microphone.active': 'Dejar de escuchar',\n 'tooltip.microphone.inactive': 'Usar micrófono',\n 'button.newChat': 'Nuevo chat',\n 'tooltip.chatHistoryMenu': 'Menú de historial de chat',\n 'tooltip.responseRecorded': 'Respuesta registrada',\n 'tooltip.backToTop': 'Volver arriba',\n 'tooltip.backToBottom': 'Volver abajo',\n 'tooltip.settings': 'Opciones del chatbot',\n 'tooltip.close': 'Cerrar',\n\n // Modal titles\n 'modal.title.preview': 'Vista previa del adjunto',\n 'modal.title.edit': 'Editar adjunto',\n\n // Alt texts for icons\n 'icon.lightspeed.alt': 'icono de lightspeed',\n 'icon.permissionRequired.alt': 'icono de permiso requerido',\n\n // Message utilities\n 'message.options.label': 'Opciones',\n\n // File attachment errors\n 'file.upload.error.alreadyExists': 'El archivo ya existe.',\n 'file.upload.error.multipleFiles': 'Se subió más de un archivo.',\n 'file.upload.error.unsupportedType':\n 'Tipo de archivo no soportado. Los tipos soportados son: .txt, .yaml, y .json.',\n 'file.upload.error.fileTooLarge':\n 'El tamaño de tu archivo es demasiado grande. Por favor asegúrate de que tu archivo sea menor a 25 MB.',\n 'file.upload.error.readFailed':\n 'Error al leer el archivo: {{errorMessage}}',\n\n // Developer error messages\n 'error.context.fileAttachment':\n 'useFileAttachmentContext debe estar dentro de un FileAttachmentContextProvider',\n\n // Feedback actions\n 'feedback.form.title': '¿Por qué elegiste esta calificación?',\n 'feedback.form.textAreaPlaceholder':\n 'Proporciona comentarios adicionales opcionales',\n 'feedback.form.submitWord': 'Enviar',\n 'feedback.tooltips.goodResponse': 'Buena Respuesta',\n 'feedback.tooltips.badResponse': 'Mala Respuesta',\n 'feedback.tooltips.copied': 'Copiado',\n 'feedback.tooltips.copy': 'Copiar',\n 'feedback.tooltips.listening': 'Escuchando',\n 'feedback.tooltips.listen': 'Escuchar',\n 'feedback.quickResponses.positive.helpful': 'Información útil',\n 'feedback.quickResponses.positive.easyToUnderstand': 'Fácil de entender',\n 'feedback.quickResponses.positive.resolvedIssue': 'Resolvió mi problema',\n 'feedback.quickResponses.negative.didntAnswer': 'No respondió mi pregunta',\n 'feedback.quickResponses.negative.hardToUnderstand': 'Difícil de entender',\n 'feedback.quickResponses.negative.notHelpful': 'No fue útil',\n 'feedback.completion.title': 'Feedback enviado',\n 'feedback.completion.body':\n 'Hemos recibido tu respuesta. ¡Gracias por compartir tu feedback!',\n\n // Conversation categorization\n 'conversation.category.pinnedChats': 'Fijados',\n 'conversation.category.recent': 'Recientes',\n\n // lightspeed settings\n 'settings.pinned.enable': 'Habilitar chats fijados',\n 'settings.pinned.disable': 'Deshabilitar chats fijados',\n 'settings.pinned.enabled.description':\n 'Los chats fijados están actualmente habilitados',\n 'settings.pinned.disabled.description':\n 'Los chats fijados están actualmente deshabilitados',\n\n // Tool calling\n 'toolCall.header': 'Respuesta de herramienta: {{toolName}}',\n 'toolCall.thinking': 'Pensó durante {{seconds}} segundos',\n 'toolCall.executionTime': 'Tiempo de ejecución: ',\n 'toolCall.parameters': 'Parámetros',\n 'toolCall.response': 'Respuesta',\n 'toolCall.showMore': 'mostrar más',\n 'toolCall.showLess': 'mostrar menos',\n 'toolCall.loading': 'Ejecutando herramienta...',\n 'toolCall.executing': 'Ejecutando herramienta...',\n 'toolCall.copyResponse': 'Copiar respuesta',\n 'toolCall.summary': 'Aquí tienes un resumen de tu respuesta',\n 'toolCall.mcpServer': 'Servidor MCP',\n // Display modes\n 'settings.displayMode.label': 'Modo de visualización',\n 'settings.displayMode.overlay': 'Superposición',\n 'settings.displayMode.docked': 'Acoplar a ventana',\n 'settings.displayMode.fullscreen': 'Pantalla completa',\n\n // Sort options\n 'sort.label': 'Ordenar conversaciones',\n 'sort.newest': 'Fecha (más reciente primero)',\n 'sort.oldest': 'Fecha (más antiguo primero)',\n 'sort.alphabeticalAsc': 'Nombre (A-Z)',\n 'sort.alphabeticalDesc': 'Nombre (Z-A)',\n\n // Deep thinking\n 'reasoning.thinking': 'Mostrar razonamiento',\n },\n});\n\nexport default lightspeedTranslationEs;\n"],"names":[],"mappings":"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"}
|
|
@@ -36,17 +36,11 @@ const lightspeedTranslationFr = createTranslationMessages({
|
|
|
36
36
|
"conversation.rename.confirm.title": "Renommer la conversation ?",
|
|
37
37
|
"conversation.rename.confirm.action": "Renommer",
|
|
38
38
|
"conversation.rename.placeholder": "Nom de la conversation",
|
|
39
|
-
"conversation.action.error": "Erreur: {{error}}",
|
|
40
39
|
"permission.required.title": "Autorisations manquantes",
|
|
41
40
|
"permission.required.description": "Pour afficher le plugin lightspeed, veuillez contacter votre administrateur pour qu\u2019il vous donne les permissions<b>lightspeed.chat.read</b> et <b>lightspeed.chat.create</b> .",
|
|
42
41
|
"disclaimer.withValidation": "Cette fonctionnalit\xE9 utilise la technologie AI. Ne pas inclure d\u2019informations personnelles ou toute autre information sensible dans vos entr\xE9es de donn\xE9es. Des interactions pourront \xEAtre utilis\xE9es pour am\xE9liorer les produits ou services de Red Hat.",
|
|
43
42
|
"disclaimer.withoutValidation": "Cette fonctionnalit\xE9 utilise la technologie AI. Ne pas inclure d\u2019informations personnelles ou toute autre information sensible dans vos entr\xE9es de donn\xE9es. Des interactions pourront \xEAtre utilis\xE9es pour am\xE9liorer les produits ou services de Red Hat.",
|
|
44
43
|
"footer.accuracy.label": "Toujours v\xE9rifier le contenu AI g\xE9n\xE9r\xE9 avant utilisation.",
|
|
45
|
-
"footer.accuracy.popover.title": "V\xE9rifier l\u2019exactitude",
|
|
46
|
-
"footer.accuracy.popover.description": "Bien que Developer Lightspeed soit orient\xE9 sur l\u2019exactitude, il y a toujours possibilit\xE9 d\u2019erreurs. Il est toujours bon de v\xE9rifier les informations critiques \xE0 partir de sources de confiance, surtout si c\u2019est crucial pour prendre des d\xE9cisions ou entreprendre des actions.",
|
|
47
|
-
"footer.accuracy.popover.image.alt": "Exemple d\u2019image de note de bas de page popover",
|
|
48
|
-
"footer.accuracy.popover.cta.label": "J'ai compris!",
|
|
49
|
-
"footer.accuracy.popover.link.label": "En savoir plus",
|
|
50
44
|
"common.cancel": "Annuler",
|
|
51
45
|
"common.close": "Fermer",
|
|
52
46
|
"common.readMore": "En savoir plus",
|
|
@@ -61,7 +55,7 @@ const lightspeedTranslationFr = createTranslationMessages({
|
|
|
61
55
|
"chatbox.emptyState.noResults.body": "Ajuster votre recherche et essayer \xE0 nouveau. V\xE9rifier votre orthographe et essayez un terme plus g\xE9n\xE9ral.",
|
|
62
56
|
"chatbox.welcome.greeting": "Hello, {{userName}}",
|
|
63
57
|
"chatbox.welcome.description": "Comment puis-je vous aider ?",
|
|
64
|
-
"chatbox.message.placeholder": "
|
|
58
|
+
"chatbox.message.placeholder": "Entrez une invite pour Lightspeed",
|
|
65
59
|
"chatbox.fileUpload.failed": "Le chargement de fichiers a \xE9chou\xE9",
|
|
66
60
|
"chatbox.fileUpload.infoText": "Types de fichiers pris en charge: .txt, .yaml, and .json. La taille maximale est de 25 MB.",
|
|
67
61
|
"aria.chatbotSelector": "S\xE9lecteur Chatbot",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fr.esm.js","sources":["../../src/translations/fr.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 * fr translation for plugin.lightspeed.\n * @public\n */\nconst lightspeedTranslationFr = createTranslationMessages({\n ref: lightspeedTranslationRef,\n messages: {\n 'page.title': 'Lightspeed',\n 'page.subtitle': 'Assistant de développement AI-POWERED',\n 'prompts.codeReadability.title': 'Obtenir de l’aide pour Décrypter le Code',\n 'prompts.codeReadability.message':\n 'Pourriez-vous me suggérer des techniques qui puissent rendre mon code plus lisible et facile d’entretien?',\n 'prompts.debugging.title': 'Aide Débogage',\n 'prompts.debugging.message':\n 'Mon application me renvoie une erreur lorsque j’essaie de me connecter à la base de données. Pouvez-vous m’aider à identifier le problème?',\n 'prompts.developmentConcept.title': 'Expliquer un Concept de développement',\n 'prompts.developmentConcept.message':\n 'Pourriez-vous m’expliquer comment l’architecture des microservices fonctionne et quels sont ses avantages par rapport à un design monolithic ?',\n 'prompts.codeOptimization.title': 'Suggestions d’Optmisation de Code',\n 'prompts.codeOptimization.message':\n 'Pourriez-vous me suggérer les façons d’optimiser le code pour le rendre plus performant ?',\n 'prompts.documentation.title': 'Récapitulatif de la documentation',\n 'prompts.documentation.message':\n 'Pourriez-vous résumer la documentation d’implémentation de l’authentification 2.0 dans un app web ?',\n 'prompts.gitWorkflows.title': 'Flux de travail dans Git',\n 'prompts.gitWorkflows.message':\n 'Je souhaite changer le code sur une autre branche sans perdre mon travail existant. Quelle est la procédure pour ce faire sans utiliser Git ?',\n 'prompts.testingStrategies.title': 'Suggestions de Stratégies pour Tester',\n 'prompts.testingStrategies.message':\n 'Pourriez-vous me conseiller des stratégies communes pour tester qui puissent rendre mon application robuste et sans erreurs?',\n 'prompts.sortingAlgorithms.title':\n 'Démystification les Algorithmes de triage',\n 'prompts.sortingAlgorithms.message':\n 'Pourriez-vous m’expliquer quelle est la différence entre un triage rapide (quicksort) et un triage de regroupement (mergesort), et quand utiliser quoi?',\n 'prompts.eventDriven.title': 'Comprendre l’Architecture basée-événement',\n 'prompts.eventDriven.message':\n 'Pourriez-vous m’expliquer l’architecture basée-événement et quand il faut l’utiliser pour le développement des logiciels?',\n 'prompts.tekton.title': 'Déployer avec Tekton',\n 'prompts.tekton.message':\n 'Pourriez-vous m’aider à automatiser le déploiement de mon application en utilisant les pipelines Tekton ?',\n 'prompts.openshift.title': 'Créer un Déploiement Openshift',\n 'prompts.openshift.message':\n 'Pourriez-vous me guider sur la façon de créer un nouveau développement Openshift pour une application conteneurisée ?',\n 'prompts.rhdh.title': 'Guide de Démarrage de Red Hat Developer Hub',\n 'prompts.rhdh.message':\n 'Pourriez-vous me guider pour les premières étapes de démarrage avec Developer Hub en tant que développeur, comme explorer le Software Catalog et ajouter mon service ?',\n 'conversation.delete.confirm.title': 'Supprimer cette conversation ?',\n 'conversation.delete.confirm.message':\n 'Vous ne verrez plus cette conversation ici. Cela supprimera également les activités associées comme les prompts, réponses, et commentaires de votre activité Lightspeed.',\n 'conversation.delete.confirm.action': 'Supprimer',\n 'conversation.rename.confirm.title': 'Renommer la conversation ?',\n 'conversation.rename.confirm.action': 'Renommer',\n 'conversation.rename.placeholder': 'Nom de la conversation',\n 'conversation.action.error': 'Erreur: {{error}}',\n 'permission.required.title': 'Autorisations manquantes',\n 'permission.required.description':\n 'Pour afficher le plugin lightspeed, veuillez contacter votre administrateur pour qu’il vous donne les permissions<b>lightspeed.chat.read</b> et <b>lightspeed.chat.create</b> .',\n 'disclaimer.withValidation':\n 'Cette fonctionnalité utilise la technologie AI. Ne pas inclure d’informations personnelles ou toute autre information sensible dans vos entrées de données. Des interactions pourront être utilisées pour améliorer les produits ou services de Red Hat.',\n 'disclaimer.withoutValidation':\n 'Cette fonctionnalité utilise la technologie AI. Ne pas inclure d’informations personnelles ou toute autre information sensible dans vos entrées de données. Des interactions pourront être utilisées pour améliorer les produits ou services de Red Hat.',\n 'footer.accuracy.label':\n 'Toujours vérifier le contenu AI généré avant utilisation.',\n 'footer.accuracy.popover.title': 'Vérifier l’exactitude',\n 'footer.accuracy.popover.description':\n 'Bien que Developer Lightspeed soit orienté sur l’exactitude, il y a toujours possibilité d’erreurs. Il est toujours bon de vérifier les informations critiques à partir de sources de confiance, surtout si c’est crucial pour prendre des décisions ou entreprendre des actions.',\n 'footer.accuracy.popover.image.alt':\n 'Exemple d’image de note de bas de page popover',\n 'footer.accuracy.popover.cta.label': \"J'ai compris!\",\n 'footer.accuracy.popover.link.label': 'En savoir plus',\n 'common.cancel': 'Annuler',\n 'common.close': 'Fermer',\n 'common.readMore': 'En savoir plus',\n 'common.noSearchResults': 'Aucun résultat ne correspond à cette demande',\n 'menu.newConversation': 'Nouvelle Conversation',\n 'chatbox.header.title': 'Developer Lightspeed',\n 'chatbox.search.placeholder': 'Recherche',\n 'chatbox.provider.other': 'Autre',\n 'chatbox.emptyState.noPinnedChats': 'Aucune conversation épinglée',\n 'chatbox.emptyState.noRecentChats': 'Aucune conversation récente',\n 'chatbox.emptyState.noResults.title': 'Aucun résultat trouvé',\n 'chatbox.emptyState.noResults.body':\n 'Ajuster votre recherche et essayer à nouveau. Vérifier votre orthographe et essayez un terme plus général.',\n 'chatbox.welcome.greeting': 'Hello, {{userName}}',\n 'chatbox.welcome.description': 'Comment puis-je vous aider ?',\n 'chatbox.message.placeholder':\n 'Envoyer un message et télécharger un fichier JSON, YAML, ou TXT...',\n 'chatbox.fileUpload.failed': 'Le chargement de fichiers a échoué',\n 'chatbox.fileUpload.infoText':\n 'Types de fichiers pris en charge: .txt, .yaml, and .json. La taille maximale est de 25 MB.',\n 'aria.chatbotSelector': 'Sélecteur Chatbot',\n 'aria.important': 'Important',\n 'aria.chatHistoryMenu': 'Menu de l’historique de conversations',\n 'aria.closeDrawerPanel': 'Fermer le panneau de tiroirs',\n 'aria.search.placeholder': 'Recherche',\n 'aria.searchPreviousConversations': 'Recherche des anciennes conversations',\n 'aria.resize': 'Redimensionnement',\n 'aria.options.label': 'Options',\n 'aria.scroll.down': 'De haut en bas',\n 'aria.scroll.up': 'De bas en haut',\n 'aria.settings.label': 'Options Chatbot',\n 'aria.close': 'Fermer le chatbot',\n\n 'modal.edit': 'Modifier',\n 'modal.save': 'Sauvegarder',\n 'modal.close': 'Fermer',\n 'modal.cancel': 'Annuler',\n 'conversation.delete': 'Supprimer',\n 'conversation.rename': 'Renommer',\n 'conversation.addToPinnedChats': 'Épingler',\n 'conversation.removeFromPinnedChats': 'Détacher',\n 'conversation.announcement.userMessage':\n 'Message en provenance de l’utilisateur: {{prompt}}. Message en provenance du Bot en cours de chargement.',\n 'user.guest': 'Invité',\n 'user.loading': '...',\n 'tooltip.attach': 'Attacher',\n 'tooltip.send': 'Envoyer',\n 'tooltip.microphone.active': 'Cessez d’écouter',\n 'tooltip.microphone.inactive': 'Utilisez le micro',\n 'button.newChat': 'Nouvelle Conversation',\n 'tooltip.chatHistoryMenu': 'Menu de l’historique de conversations',\n 'tooltip.responseRecorded': 'Réponse enregistrée',\n 'tooltip.backToTop': 'De bas en haut',\n 'tooltip.backToBottom': 'De haut en bas',\n 'tooltip.settings': 'Options Chatbot',\n 'tooltip.close': 'Fermer',\n\n 'modal.title.preview': 'Aperçu de la pièce jointe',\n 'modal.title.edit': 'Modifier la pièce jointe',\n 'icon.lightspeed.alt': 'Icône Lightspeed',\n 'icon.permissionRequired.alt': 'icône d’autorisation requise',\n 'message.options.label': 'Options',\n 'file.upload.error.alreadyExists': 'Le fichier existe déjà',\n 'file.upload.error.multipleFiles': 'Télécharger plus d’un fichier.',\n 'file.upload.error.unsupportedType':\n 'Type de fichier non pris en charge. Types de fichiers pris en charge: .txt, .yaml, and .json.',\n 'file.upload.error.fileTooLarge':\n 'Votre taille de fichier est trop grande. Veuillez vous assurer que votre fichier soit inférieur à 25MB.',\n 'file.upload.error.readFailed':\n 'Impossible de lire le fichier : {{errorMessage}}',\n 'error.context.fileAttachment':\n 'useFileAttachmentContext doit être dans un FileAttachmentContextProvider',\n 'feedback.form.title': 'Pourquoi avez-vous sélectionnée cette estimation ?',\n 'feedback.form.textAreaPlaceholder':\n 'Veuillez-nous offrir des commentaires supplémentaires ?',\n 'feedback.form.submitWord': 'Soumettre',\n 'feedback.tooltips.goodResponse': 'Bonne réponse',\n 'feedback.tooltips.badResponse': 'Mauvaise réponse',\n 'feedback.tooltips.copied': 'Copié',\n 'feedback.tooltips.copy': 'Copier',\n 'feedback.tooltips.listening': 'En cours d’écoute',\n 'feedback.tooltips.listen': 'Écouter',\n 'feedback.quickResponses.positive.helpful': 'Information utile',\n 'feedback.quickResponses.positive.easyToUnderstand': 'Facile à comprendre',\n 'feedback.quickResponses.positive.resolvedIssue':\n 'A pu résoudre mon problème',\n 'feedback.quickResponses.negative.didntAnswer':\n 'N’a pas répondu à ma question',\n 'feedback.quickResponses.negative.hardToUnderstand':\n 'Difficile à comprendre',\n 'feedback.quickResponses.negative.notHelpful': 'Peu utile',\n 'feedback.completion.title': 'Commentaire soumis',\n 'feedback.completion.body':\n 'Nous avons reçu votre réponse. Merci de partager vos commentaires avec nous !',\n 'conversation.category.pinnedChats': 'Épinglé',\n 'conversation.category.recent': 'Récent',\n 'settings.pinned.enable': 'Activer les conversations épinglées',\n 'settings.pinned.disable': 'Désactiver les conversations épinglées',\n 'settings.pinned.enabled.description':\n 'Les conversation épinglées sont actuellement activées',\n 'settings.pinned.disabled.description':\n 'Les conversations épinglées sont actuellement désactivées',\n\n // Tool calling\n 'toolCall.header': \"Réponse de l'outil : {{toolName}}\",\n 'toolCall.thinking': 'A réfléchi pendant {{seconds}} secondes',\n 'toolCall.executionTime': \"Temps d'exécution : \",\n 'toolCall.parameters': 'Paramètres',\n 'toolCall.response': 'Réponse',\n 'toolCall.showMore': 'afficher plus',\n 'toolCall.showLess': 'afficher moins',\n 'toolCall.loading': \"Exécution de l'outil...\",\n 'toolCall.executing': \"Exécution de l'outil...\",\n 'toolCall.copyResponse': 'Copier la réponse',\n 'toolCall.summary': 'Voici un résumé de votre réponse',\n 'toolCall.mcpServer': 'Serveur MCP',\n // Display modes\n 'settings.displayMode.label': \"Mode d'affichage\",\n 'settings.displayMode.overlay': 'Superposition',\n 'settings.displayMode.docked': 'Ancrer à la fenêtre',\n 'settings.displayMode.fullscreen': 'Plein écran',\n\n // Sort options\n 'sort.label': 'Trier les conversations',\n 'sort.newest': 'Date (plus récent en premier)',\n 'sort.oldest': 'Date (plus ancien en premier)',\n 'sort.alphabeticalAsc': 'Nom (A-Z)',\n 'sort.alphabeticalDesc': 'Nom (Z-A)',\n\n // Deep thinking\n 'reasoning.thinking': 'Afficher la réflexion',\n },\n});\n\nexport default lightspeedTranslationFr;\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"fr.esm.js","sources":["../../src/translations/fr.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 * fr translation for plugin.lightspeed.\n * @public\n */\nconst lightspeedTranslationFr = createTranslationMessages({\n ref: lightspeedTranslationRef,\n messages: {\n 'page.title': 'Lightspeed',\n 'page.subtitle': 'Assistant de développement AI-POWERED',\n 'prompts.codeReadability.title': 'Obtenir de l’aide pour Décrypter le Code',\n 'prompts.codeReadability.message':\n 'Pourriez-vous me suggérer des techniques qui puissent rendre mon code plus lisible et facile d’entretien?',\n 'prompts.debugging.title': 'Aide Débogage',\n 'prompts.debugging.message':\n 'Mon application me renvoie une erreur lorsque j’essaie de me connecter à la base de données. Pouvez-vous m’aider à identifier le problème?',\n 'prompts.developmentConcept.title': 'Expliquer un Concept de développement',\n 'prompts.developmentConcept.message':\n 'Pourriez-vous m’expliquer comment l’architecture des microservices fonctionne et quels sont ses avantages par rapport à un design monolithic ?',\n 'prompts.codeOptimization.title': 'Suggestions d’Optmisation de Code',\n 'prompts.codeOptimization.message':\n 'Pourriez-vous me suggérer les façons d’optimiser le code pour le rendre plus performant ?',\n 'prompts.documentation.title': 'Récapitulatif de la documentation',\n 'prompts.documentation.message':\n 'Pourriez-vous résumer la documentation d’implémentation de l’authentification 2.0 dans un app web ?',\n 'prompts.gitWorkflows.title': 'Flux de travail dans Git',\n 'prompts.gitWorkflows.message':\n 'Je souhaite changer le code sur une autre branche sans perdre mon travail existant. Quelle est la procédure pour ce faire sans utiliser Git ?',\n 'prompts.testingStrategies.title': 'Suggestions de Stratégies pour Tester',\n 'prompts.testingStrategies.message':\n 'Pourriez-vous me conseiller des stratégies communes pour tester qui puissent rendre mon application robuste et sans erreurs?',\n 'prompts.sortingAlgorithms.title':\n 'Démystification les Algorithmes de triage',\n 'prompts.sortingAlgorithms.message':\n 'Pourriez-vous m’expliquer quelle est la différence entre un triage rapide (quicksort) et un triage de regroupement (mergesort), et quand utiliser quoi?',\n 'prompts.eventDriven.title': 'Comprendre l’Architecture basée-événement',\n 'prompts.eventDriven.message':\n 'Pourriez-vous m’expliquer l’architecture basée-événement et quand il faut l’utiliser pour le développement des logiciels?',\n 'prompts.tekton.title': 'Déployer avec Tekton',\n 'prompts.tekton.message':\n 'Pourriez-vous m’aider à automatiser le déploiement de mon application en utilisant les pipelines Tekton ?',\n 'prompts.openshift.title': 'Créer un Déploiement Openshift',\n 'prompts.openshift.message':\n 'Pourriez-vous me guider sur la façon de créer un nouveau développement Openshift pour une application conteneurisée ?',\n 'prompts.rhdh.title': 'Guide de Démarrage de Red Hat Developer Hub',\n 'prompts.rhdh.message':\n 'Pourriez-vous me guider pour les premières étapes de démarrage avec Developer Hub en tant que développeur, comme explorer le Software Catalog et ajouter mon service ?',\n 'conversation.delete.confirm.title': 'Supprimer cette conversation ?',\n 'conversation.delete.confirm.message':\n 'Vous ne verrez plus cette conversation ici. Cela supprimera également les activités associées comme les prompts, réponses, et commentaires de votre activité Lightspeed.',\n 'conversation.delete.confirm.action': 'Supprimer',\n 'conversation.rename.confirm.title': 'Renommer la conversation ?',\n 'conversation.rename.confirm.action': 'Renommer',\n 'conversation.rename.placeholder': 'Nom de la conversation',\n 'permission.required.title': 'Autorisations manquantes',\n 'permission.required.description':\n 'Pour afficher le plugin lightspeed, veuillez contacter votre administrateur pour qu’il vous donne les permissions<b>lightspeed.chat.read</b> et <b>lightspeed.chat.create</b> .',\n 'disclaimer.withValidation':\n 'Cette fonctionnalité utilise la technologie AI. Ne pas inclure d’informations personnelles ou toute autre information sensible dans vos entrées de données. Des interactions pourront être utilisées pour améliorer les produits ou services de Red Hat.',\n 'disclaimer.withoutValidation':\n 'Cette fonctionnalité utilise la technologie AI. Ne pas inclure d’informations personnelles ou toute autre information sensible dans vos entrées de données. Des interactions pourront être utilisées pour améliorer les produits ou services de Red Hat.',\n 'footer.accuracy.label':\n 'Toujours vérifier le contenu AI généré avant utilisation.',\n 'common.cancel': 'Annuler',\n 'common.close': 'Fermer',\n 'common.readMore': 'En savoir plus',\n 'common.noSearchResults': 'Aucun résultat ne correspond à cette demande',\n 'menu.newConversation': 'Nouvelle Conversation',\n 'chatbox.header.title': 'Developer Lightspeed',\n 'chatbox.search.placeholder': 'Recherche',\n 'chatbox.provider.other': 'Autre',\n 'chatbox.emptyState.noPinnedChats': 'Aucune conversation épinglée',\n 'chatbox.emptyState.noRecentChats': 'Aucune conversation récente',\n 'chatbox.emptyState.noResults.title': 'Aucun résultat trouvé',\n 'chatbox.emptyState.noResults.body':\n 'Ajuster votre recherche et essayer à nouveau. Vérifier votre orthographe et essayez un terme plus général.',\n 'chatbox.welcome.greeting': 'Hello, {{userName}}',\n 'chatbox.welcome.description': 'Comment puis-je vous aider ?',\n 'chatbox.message.placeholder': 'Entrez une invite pour Lightspeed',\n 'chatbox.fileUpload.failed': 'Le chargement de fichiers a échoué',\n 'chatbox.fileUpload.infoText':\n 'Types de fichiers pris en charge: .txt, .yaml, and .json. La taille maximale est de 25 MB.',\n 'aria.chatbotSelector': 'Sélecteur Chatbot',\n 'aria.important': 'Important',\n 'aria.chatHistoryMenu': 'Menu de l’historique de conversations',\n 'aria.closeDrawerPanel': 'Fermer le panneau de tiroirs',\n 'aria.search.placeholder': 'Recherche',\n 'aria.searchPreviousConversations': 'Recherche des anciennes conversations',\n 'aria.resize': 'Redimensionnement',\n 'aria.options.label': 'Options',\n 'aria.scroll.down': 'De haut en bas',\n 'aria.scroll.up': 'De bas en haut',\n 'aria.settings.label': 'Options Chatbot',\n 'aria.close': 'Fermer le chatbot',\n\n 'modal.edit': 'Modifier',\n 'modal.save': 'Sauvegarder',\n 'modal.close': 'Fermer',\n 'modal.cancel': 'Annuler',\n 'conversation.delete': 'Supprimer',\n 'conversation.rename': 'Renommer',\n 'conversation.addToPinnedChats': 'Épingler',\n 'conversation.removeFromPinnedChats': 'Détacher',\n 'conversation.announcement.userMessage':\n 'Message en provenance de l’utilisateur: {{prompt}}. Message en provenance du Bot en cours de chargement.',\n 'user.guest': 'Invité',\n 'user.loading': '...',\n 'tooltip.attach': 'Attacher',\n 'tooltip.send': 'Envoyer',\n 'tooltip.microphone.active': 'Cessez d’écouter',\n 'tooltip.microphone.inactive': 'Utilisez le micro',\n 'button.newChat': 'Nouvelle Conversation',\n 'tooltip.chatHistoryMenu': 'Menu de l’historique de conversations',\n 'tooltip.responseRecorded': 'Réponse enregistrée',\n 'tooltip.backToTop': 'De bas en haut',\n 'tooltip.backToBottom': 'De haut en bas',\n 'tooltip.settings': 'Options Chatbot',\n 'tooltip.close': 'Fermer',\n\n 'modal.title.preview': 'Aperçu de la pièce jointe',\n 'modal.title.edit': 'Modifier la pièce jointe',\n 'icon.lightspeed.alt': 'Icône Lightspeed',\n 'icon.permissionRequired.alt': 'icône d’autorisation requise',\n 'message.options.label': 'Options',\n 'file.upload.error.alreadyExists': 'Le fichier existe déjà',\n 'file.upload.error.multipleFiles': 'Télécharger plus d’un fichier.',\n 'file.upload.error.unsupportedType':\n 'Type de fichier non pris en charge. Types de fichiers pris en charge: .txt, .yaml, and .json.',\n 'file.upload.error.fileTooLarge':\n 'Votre taille de fichier est trop grande. Veuillez vous assurer que votre fichier soit inférieur à 25MB.',\n 'file.upload.error.readFailed':\n 'Impossible de lire le fichier : {{errorMessage}}',\n 'error.context.fileAttachment':\n 'useFileAttachmentContext doit être dans un FileAttachmentContextProvider',\n 'feedback.form.title': 'Pourquoi avez-vous sélectionnée cette estimation ?',\n 'feedback.form.textAreaPlaceholder':\n 'Veuillez-nous offrir des commentaires supplémentaires ?',\n 'feedback.form.submitWord': 'Soumettre',\n 'feedback.tooltips.goodResponse': 'Bonne réponse',\n 'feedback.tooltips.badResponse': 'Mauvaise réponse',\n 'feedback.tooltips.copied': 'Copié',\n 'feedback.tooltips.copy': 'Copier',\n 'feedback.tooltips.listening': 'En cours d’écoute',\n 'feedback.tooltips.listen': 'Écouter',\n 'feedback.quickResponses.positive.helpful': 'Information utile',\n 'feedback.quickResponses.positive.easyToUnderstand': 'Facile à comprendre',\n 'feedback.quickResponses.positive.resolvedIssue':\n 'A pu résoudre mon problème',\n 'feedback.quickResponses.negative.didntAnswer':\n 'N’a pas répondu à ma question',\n 'feedback.quickResponses.negative.hardToUnderstand':\n 'Difficile à comprendre',\n 'feedback.quickResponses.negative.notHelpful': 'Peu utile',\n 'feedback.completion.title': 'Commentaire soumis',\n 'feedback.completion.body':\n 'Nous avons reçu votre réponse. Merci de partager vos commentaires avec nous !',\n 'conversation.category.pinnedChats': 'Épinglé',\n 'conversation.category.recent': 'Récent',\n 'settings.pinned.enable': 'Activer les conversations épinglées',\n 'settings.pinned.disable': 'Désactiver les conversations épinglées',\n 'settings.pinned.enabled.description':\n 'Les conversation épinglées sont actuellement activées',\n 'settings.pinned.disabled.description':\n 'Les conversations épinglées sont actuellement désactivées',\n\n // Tool calling\n 'toolCall.header': \"Réponse de l'outil : {{toolName}}\",\n 'toolCall.thinking': 'A réfléchi pendant {{seconds}} secondes',\n 'toolCall.executionTime': \"Temps d'exécution : \",\n 'toolCall.parameters': 'Paramètres',\n 'toolCall.response': 'Réponse',\n 'toolCall.showMore': 'afficher plus',\n 'toolCall.showLess': 'afficher moins',\n 'toolCall.loading': \"Exécution de l'outil...\",\n 'toolCall.executing': \"Exécution de l'outil...\",\n 'toolCall.copyResponse': 'Copier la réponse',\n 'toolCall.summary': 'Voici un résumé de votre réponse',\n 'toolCall.mcpServer': 'Serveur MCP',\n // Display modes\n 'settings.displayMode.label': \"Mode d'affichage\",\n 'settings.displayMode.overlay': 'Superposition',\n 'settings.displayMode.docked': 'Ancrer à la fenêtre',\n 'settings.displayMode.fullscreen': 'Plein écran',\n\n // Sort options\n 'sort.label': 'Trier les conversations',\n 'sort.newest': 'Date (plus récent en premier)',\n 'sort.oldest': 'Date (plus ancien en premier)',\n 'sort.alphabeticalAsc': 'Nom (A-Z)',\n 'sort.alphabeticalDesc': 'Nom (Z-A)',\n\n // Deep thinking\n 'reasoning.thinking': 'Afficher la réflexion',\n },\n});\n\nexport default lightspeedTranslationFr;\n"],"names":[],"mappings":"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"}
|
|
@@ -36,17 +36,11 @@ const lightspeedTranslationIt = createTranslationMessages({
|
|
|
36
36
|
"conversation.rename.confirm.title": "Rinominare la chat?",
|
|
37
37
|
"conversation.rename.confirm.action": "Rinomina",
|
|
38
38
|
"conversation.rename.placeholder": "Nome della chat",
|
|
39
|
-
"conversation.action.error": "Si \xE8 verificato un errore: {{error}}",
|
|
40
39
|
"permission.required.title": "Autorizzazioni mancanti",
|
|
41
40
|
"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
41
|
"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
42
|
"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
43
|
"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
44
|
"common.cancel": "Cancella",
|
|
51
45
|
"common.close": "Chiudi",
|
|
52
46
|
"common.readMore": "Per saperne di pi\xF9",
|
|
@@ -61,7 +55,7 @@ const lightspeedTranslationIt = createTranslationMessages({
|
|
|
61
55
|
"chatbox.emptyState.noResults.body": "Modificare la query di ricerca e riprovare. Controllare l'ortografia o provare un termine pi\xF9 generico.",
|
|
62
56
|
"chatbox.welcome.greeting": "Ciao {{userName}},",
|
|
63
57
|
"chatbox.welcome.description": "come posso aiutarti oggi?",
|
|
64
|
-
"chatbox.message.placeholder": "
|
|
58
|
+
"chatbox.message.placeholder": "Inserisci un prompt per Lightspeed",
|
|
65
59
|
"chatbox.fileUpload.failed": "Caricamento del file non riuscito",
|
|
66
60
|
"chatbox.fileUpload.infoText": "I tipi di file supportati sono: .txt, .yaml e .json. La dimensione massima del file \xE8 25 MB.",
|
|
67
61
|
"aria.chatbotSelector": "Selettore di chatbot",
|
|
@@ -130,6 +124,11 @@ const lightspeedTranslationIt = createTranslationMessages({
|
|
|
130
124
|
"settings.pinned.disable": "Disattiva le chat bloccate",
|
|
131
125
|
"settings.pinned.enabled.description": "Le chat bloccate sono attualmente abilitate",
|
|
132
126
|
"settings.pinned.disabled.description": "Le chat bloccate sono attualmente disabilitate",
|
|
127
|
+
// Display modes
|
|
128
|
+
"settings.displayMode.label": "Modalit\xE0 di visualizzazione",
|
|
129
|
+
"settings.displayMode.overlay": "Sovrapposizione",
|
|
130
|
+
"settings.displayMode.docked": "Aggancia alla finestra",
|
|
131
|
+
"settings.displayMode.fullscreen": "Schermo intero",
|
|
133
132
|
// Tool calling
|
|
134
133
|
"toolCall.header": "Risposta dello strumento: {{toolName}}",
|
|
135
134
|
"toolCall.thinking": "Ha pensato per {{seconds}} secondi",
|
|
@@ -1 +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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"}
|
|
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 '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 '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': 'Inserisci un prompt per Lightspeed',\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 // Display modes\n 'settings.displayMode.label': 'Modalità di visualizzazione',\n 'settings.displayMode.overlay': 'Sovrapposizione',\n 'settings.displayMode.docked': 'Aggancia alla finestra',\n 'settings.displayMode.fullscreen': 'Schermo intero',\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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"}
|