mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
104c797dd0
Co-authored-by: hursit <hursit.topal@enuygun.com>
30 lines
664 B
TypeScript
30 lines
664 B
TypeScript
const translation = {
|
||
input: 'GİRİŞ',
|
||
result: 'SONUÇ',
|
||
detail: 'DETAY',
|
||
tracing: 'İZLEME',
|
||
resultPanel: {
|
||
status: 'DURUM',
|
||
time: 'GEÇEN ZAMAN',
|
||
tokens: 'TOPLAM TOKEN',
|
||
},
|
||
meta: {
|
||
title: 'METADATA',
|
||
status: 'Durum',
|
||
version: 'Sürüm',
|
||
executor: 'Yürütücü',
|
||
startTime: 'Başlama Zamanı',
|
||
time: 'Geçen Zaman',
|
||
tokens: 'Toplam Token',
|
||
steps: 'Çalıştırma Adımları',
|
||
},
|
||
resultEmpty: {
|
||
title: 'Bu çalıştırma sadece JSON formatında çıktı verdi,',
|
||
tipLeft: 'lütfen ',
|
||
link: 'detay paneli',
|
||
tipRight: 'ne gidin ve görüntüleyin.',
|
||
},
|
||
}
|
||
|
||
export default translation
|