run-log.ts 673 B

1234567891011121314151617181920212223242526272829
  1. const translation = {
  2. input: 'WEJŚCIE',
  3. result: 'WYNIK',
  4. detail: 'SZCZEGÓŁY',
  5. tracing: 'ŚLEDZENIE',
  6. resultPanel: {
  7. status: 'STATUS',
  8. time: 'CZAS WYKONANIA',
  9. tokens: 'CAŁKOWITA LICZBA TOKENÓW',
  10. },
  11. meta: {
  12. title: 'METADANE',
  13. status: 'Status',
  14. version: 'Wersja',
  15. executor: 'Wykonawca',
  16. startTime: 'Czas rozpoczęcia',
  17. time: 'Czas trwania',
  18. tokens: 'Liczba tokenów',
  19. steps: 'Kroki wykonania',
  20. },
  21. resultEmpty: {
  22. title: 'To wykonanie generuje tylko format JSON,',
  23. tipLeft: 'proszę przejdź do ',
  24. link: 'panelu szczegółów',
  25. tipRight: ' aby je zobaczyć.',
  26. },
  27. }
  28. export default translation