mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
35f13c7327
Co-authored-by: d8rt8v <alex@ydertev.ru> Co-authored-by: crazywoola <427733928@qq.com>
30 lines
888 B
TypeScript
30 lines
888 B
TypeScript
const translation = {
|
||
input: 'ВВОД',
|
||
result: 'РЕЗУЛЬТАТ',
|
||
detail: 'ДЕТАЛИ',
|
||
tracing: 'ТРАССИРОВКА',
|
||
resultPanel: {
|
||
status: 'СТАТУС',
|
||
time: 'ПРОШЕДШЕЕ ВРЕМЯ',
|
||
tokens: 'ВСЕГО ТОКЕНОВ',
|
||
},
|
||
meta: {
|
||
title: 'МЕТАДАННЫЕ',
|
||
status: 'Статус',
|
||
version: 'Версия',
|
||
executor: 'Исполнитель',
|
||
startTime: 'Время начала',
|
||
time: 'Прошедшее время',
|
||
tokens: 'Всего токенов',
|
||
steps: 'Шаги выполнения',
|
||
},
|
||
resultEmpty: {
|
||
title: 'Этот запуск выводит только формат JSON,',
|
||
tipLeft: 'пожалуйста, перейдите на ',
|
||
link: 'панель деталей',
|
||
tipRight: ' чтобы просмотреть его.',
|
||
},
|
||
}
|
||
|
||
export default translation
|