mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
24 lines
667 B
TypeScript
24 lines
667 B
TypeScript
const translation = {
|
||
input: 'ВВЕДЕННЯ',
|
||
result: 'РЕЗУЛЬТАТ',
|
||
detail: 'ДЕТАЛІ',
|
||
tracing: 'ВІДСЛІДКУВАННЯ',
|
||
resultPanel: {
|
||
status: 'СТАТУС',
|
||
time: 'ЧАС ВИКОНАННЯ',
|
||
tokens: 'ЗАГАЛЬНА КІЛЬКІСТЬ ТОКЕНІВ',
|
||
},
|
||
meta: {
|
||
title: 'МЕТАДАНІ',
|
||
status: 'Статус',
|
||
version: 'Версія',
|
||
executor: 'Виконавець',
|
||
startTime: 'Час початку',
|
||
time: 'Час виконання',
|
||
tokens: 'Загальна кількість токенів',
|
||
steps: 'Кроки виконання',
|
||
},
|
||
}
|
||
|
||
export default translation
|