run-log.ts 675 B

1234567891011121314151617181920212223242526272829
  1. const translation = {
  2. input: '입력',
  3. result: '결과',
  4. detail: '상세정보',
  5. tracing: '트레이싱',
  6. resultPanel: {
  7. status: '상태',
  8. time: '소요 시간',
  9. tokens: '토큰 총합',
  10. },
  11. meta: {
  12. title: '메타데이터',
  13. status: '상태',
  14. version: '버전',
  15. executor: '실행자',
  16. startTime: '시작 시간',
  17. time: '소요 시간',
  18. tokens: '토큰 총합',
  19. steps: '실행 단계',
  20. },
  21. resultEmpty: {
  22. title: '이 실행에서는 JSON 형식만 출력됩니다',
  23. tipLeft: '를 방문해주세요',
  24. link: '상세 정보 패널',
  25. tipRight: '를 확인하세요.',
  26. },
  27. }
  28. export default translation