mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
ff67a6d338
Co-authored-by: JzoNg <jzongcode@gmail.com>
30 lines
652 B
TypeScript
30 lines
652 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',
|
|
},
|
|
resultEmpty: {
|
|
title: 'Dieser Lauf gibt nur das JSON-Format aus',
|
|
tipLeft: 'Bitte gehen Sie zum ',
|
|
Link: 'Detailpanel',
|
|
tipRight: 'ansehen.',
|
|
},
|
|
}
|
|
|
|
export default translation
|