mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
fb113a9479
Some checks are pending
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/amd64, build-api-amd64) (push) Waiting to run
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/arm64, build-api-arm64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/amd64, build-web-amd64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/arm64, build-web-arm64) (push) Waiting to run
Build and Push API & Web / create-manifest (api, DIFY_API_IMAGE_NAME, merge-api-images) (push) Blocked by required conditions
Build and Push API & Web / create-manifest (web, DIFY_WEB_IMAGE_NAME, merge-web-images) (push) Blocked by required conditions
Co-authored-by: JohnJyong <76649700+JohnJyong@users.noreply.github.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: Hanqing Zhao <sherry9277@gmail.com> Co-authored-by: crazywoola <427733928@qq.com>
96 lines
3.2 KiB
TypeScript
96 lines
3.2 KiB
TypeScript
const translation = {
|
|
title: 'Protokolle',
|
|
description: 'Die Protokolle zeichnen den Betriebsstatus der Anwendung auf, einschließlich Benutzereingaben und KI-Antworten.',
|
|
dateTimeFormat: 'MM/DD/YYYY hh:mm A',
|
|
table: {
|
|
header: {
|
|
updatedTime: 'Aktualisierungszeit',
|
|
time: 'Erstellungszeit',
|
|
endUser: 'Endbenutzer oder Konto',
|
|
input: 'Eingabe',
|
|
output: 'Ausgabe',
|
|
summary: 'Titel',
|
|
messageCount: 'Nachrichtenzahl',
|
|
userRate: 'Benutzerbewertung',
|
|
adminRate: 'Op. Bewertung',
|
|
user: 'Endbenutzer oder Konto',
|
|
status: 'STATUS',
|
|
runtime: 'LAUFZEIT',
|
|
version: 'VERSION',
|
|
tokens: 'TOKEN',
|
|
startTime: 'STARTZEIT',
|
|
},
|
|
pagination: {
|
|
previous: 'Vorherige',
|
|
next: 'Nächste',
|
|
},
|
|
empty: {
|
|
noChat: 'Noch keine Konversation',
|
|
noOutput: 'Keine Ausgabe',
|
|
element: {
|
|
title: 'Ist da jemand?',
|
|
content: 'Beobachten und annotieren Sie hier die Interaktionen zwischen Endbenutzern und KI-Anwendungen, um die Genauigkeit der KI kontinuierlich zu verbessern. Sie können versuchen, die Web-App selbst <shareLink>zu teilen</shareLink> oder <testLink>zu testen</testLink>, und dann zu dieser Seite zurückkehren.',
|
|
},
|
|
},
|
|
},
|
|
detail: {
|
|
time: 'Zeit',
|
|
conversationId: 'Konversations-ID',
|
|
promptTemplate: 'Prompt-Vorlage',
|
|
promptTemplateBeforeChat: 'Prompt-Vorlage vor dem Chat · Als Systemnachricht',
|
|
annotationTip: 'Verbesserungen markiert von {{user}}',
|
|
timeConsuming: '',
|
|
second: 's',
|
|
tokenCost: 'Verbrauchte Token',
|
|
loading: 'lädt',
|
|
operation: {
|
|
like: 'gefällt mir',
|
|
dislike: 'gefällt mir nicht',
|
|
addAnnotation: 'Verbesserung hinzufügen',
|
|
editAnnotation: 'Verbesserung bearbeiten',
|
|
annotationPlaceholder: 'Geben Sie die erwartete Antwort ein, die Sie möchten, dass die KI antwortet, welche für die Feinabstimmung des Modells und die kontinuierliche Verbesserung der Qualität der Textgenerierung in Zukunft verwendet werden kann.',
|
|
},
|
|
variables: 'Variablen',
|
|
uploadImages: 'Hochgeladene Bilder',
|
|
},
|
|
filter: {
|
|
period: {
|
|
today: 'Heute',
|
|
last7days: 'Letzte 7 Tage',
|
|
last4weeks: 'Letzte 4 Wochen',
|
|
last3months: 'Letzte 3 Monate',
|
|
last12months: 'Letzte 12 Monate',
|
|
monthToDate: 'Monat bis heute',
|
|
quarterToDate: 'Quartal bis heute',
|
|
yearToDate: 'Jahr bis heute',
|
|
allTime: 'Gesamte Zeit',
|
|
},
|
|
annotation: {
|
|
all: 'Alle',
|
|
annotated: 'Markierte Verbesserungen ({{count}} Elemente)',
|
|
not_annotated: 'Nicht annotiert',
|
|
},
|
|
sortBy: 'Sortieren nach:',
|
|
descending: 'absteigend',
|
|
ascending: 'aufsteigend',
|
|
},
|
|
workflowTitle: 'Workflow-Protokolle',
|
|
workflowSubtitle: 'Das Protokoll hat den Vorgang von Automate aufgezeichnet.',
|
|
runDetail: {
|
|
title: 'Konversationsprotokoll',
|
|
workflowTitle: 'Protokolldetail',
|
|
},
|
|
promptLog: 'Prompt-Protokoll',
|
|
agentLog: 'Agentenprotokoll',
|
|
viewLog: 'Protokoll anzeigen',
|
|
agentLogDetail: {
|
|
agentMode: 'Agentenmodus',
|
|
toolUsed: 'Verwendetes Werkzeug',
|
|
iterations: 'Iterationen',
|
|
iteration: 'Iteration',
|
|
finalProcessing: 'Endverarbeitung',
|
|
},
|
|
}
|
|
|
|
export default translation
|