1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| 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.',
| },
| circularInvocationTip: 'C\'è una chiamata circolare di strumenti/nodi nel flusso di lavoro corrente.',
| actionLogs: 'Registri delle azioni',
| }
|
| export default translation
|
|