mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-12-05 04:38:37 +08:00
24 lines
487 B
TypeScript
24 lines
487 B
TypeScript
const translation = {
|
|
input: 'EINGABE',
|
|
result: 'ERGEBNIS',
|
|
detail: 'DETAILS',
|
|
tracing: 'NACHVERFOLGUNG',
|
|
resultPanel: {
|
|
status: 'STATUS',
|
|
time: 'VERSTRICHENE ZEIT',
|
|
tokens: 'GESAMTZEICHEN',
|
|
},
|
|
meta: {
|
|
title: 'METADATEN',
|
|
status: 'Status',
|
|
version: 'Version',
|
|
executor: 'Ausführender',
|
|
startTime: 'Startzeit',
|
|
time: 'Verstrichene Zeit',
|
|
tokens: 'Gesamtzeichen',
|
|
steps: 'Ausführungsschritte',
|
|
},
|
|
}
|
|
|
|
export default translation
|