mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 03:32:23 +08:00
30 lines
673 B
TypeScript
30 lines
673 B
TypeScript
const translation = {
|
|
input: 'INPUT',
|
|
result: 'RISULTATO',
|
|
detail: 'DETTAGLIO',
|
|
tracing: 'TRACCIAMENTO',
|
|
resultPanel: {
|
|
status: 'STATO',
|
|
time: 'TEMPO TRASCORSO',
|
|
tokens: 'TOKEN TOTALI',
|
|
},
|
|
meta: {
|
|
title: 'METADATI',
|
|
status: 'Stato',
|
|
version: 'Versione',
|
|
executor: 'Esecutore',
|
|
startTime: 'Ora di Inizio',
|
|
time: 'Tempo Trascorso',
|
|
tokens: 'Token Totali',
|
|
steps: 'Fasi Eseguite',
|
|
},
|
|
resultEmpty: {
|
|
title: 'Questa esecuzione ha prodotto solo output in formato JSON,',
|
|
tipLeft: 'per favore vai al ',
|
|
link: 'pannello dei dettagli',
|
|
tipRight: ' per visualizzarlo.',
|
|
},
|
|
}
|
|
|
|
export default translation
|