mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
30 lines
673 B
TypeScript
30 lines
673 B
TypeScript
|
const translation = {
|
||
|
input: 'WEJŚCIE',
|
||
|
result: 'WYNIK',
|
||
|
detail: 'SZCZEGÓŁY',
|
||
|
tracing: 'ŚLEDZENIE',
|
||
|
resultPanel: {
|
||
|
status: 'STATUS',
|
||
|
time: 'CZAS WYKONANIA',
|
||
|
tokens: 'CAŁKOWITA LICZBA TOKENÓW',
|
||
|
},
|
||
|
meta: {
|
||
|
title: 'METADANE',
|
||
|
status: 'Status',
|
||
|
version: 'Wersja',
|
||
|
executor: 'Wykonawca',
|
||
|
startTime: 'Czas rozpoczęcia',
|
||
|
time: 'Czas trwania',
|
||
|
tokens: 'Liczba tokenów',
|
||
|
steps: 'Kroki wykonania',
|
||
|
},
|
||
|
resultEmpty: {
|
||
|
title: 'To wykonanie generuje tylko format JSON,',
|
||
|
tipLeft: 'proszę przejdź do ',
|
||
|
link: 'panelu szczegółów',
|
||
|
tipRight: ' aby je zobaczyć.',
|
||
|
},
|
||
|
}
|
||
|
|
||
|
export default translation
|