app-log.ts 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. const translation = {
  2. title: '로그',
  3. description: '로그는 애플리케이션 실행 상태를 기록합니다. 사용자 입력 및 AI 응답이 포함됩니다.',
  4. dateTimeFormat: 'YYYY/MM/DD HH:mm',
  5. table: {
  6. header: {
  7. time: '시간',
  8. endUser: '엔드 유저',
  9. input: '입력',
  10. output: '출력',
  11. summary: '요약',
  12. messageCount: '메시지 수',
  13. userRate: '사용자 비율',
  14. adminRate: '관리자 비율',
  15. startTime: '시작 시간',
  16. status: '상태',
  17. runtime: '실행 시간',
  18. tokens: '토큰',
  19. user: '엔드 유저',
  20. version: '버전',
  21. },
  22. pagination: {
  23. previous: '이전',
  24. next: '다음',
  25. },
  26. empty: {
  27. noChat: '아직 대화가 없습니다',
  28. noOutput: '출력이 없습니다',
  29. element: {
  30. title: '여기 누구 있어요?',
  31. content:
  32. '여기에서 엔드 유저와 AI 애플리케이션 간 상호 작용을 관찰하고 주석을 달아 AI 정확도를 계속 향상시킵니다. 웹 앱을 <shareLink>공유</shareLink>하거나 <testLink>테스트</testLink>하고 다시 이 페이지로 돌아오세요.',
  33. },
  34. },
  35. },
  36. detail: {
  37. time: '시간',
  38. conversationId: '대화 ID',
  39. promptTemplate: '프롬프트 템플릿',
  40. promptTemplateBeforeChat: '채팅 전 프롬프트 템플릿 - 시스템 메시지로',
  41. annotationTip: '{{user}}에 의해 향상됨',
  42. timeConsuming: '시간 소요',
  43. second: '초',
  44. tokenCost: '토큰 비용',
  45. loading: '로드 중',
  46. operation: {
  47. like: '좋아요',
  48. dislike: '좋아요 취소',
  49. addAnnotation: '향상 추가',
  50. editAnnotation: '향상 편집',
  51. annotationPlaceholder: 'AI가 응답할 것으로 예상하는 답변을 입력하여 향후 모델 세부 조정 및 텍스트 생성 품질 지속적 향상을 위해 개선할 수 있습니다.',
  52. },
  53. variables: '변수',
  54. uploadImages: '업로드된 이미지',
  55. },
  56. filter: {
  57. period: {
  58. today: '오늘',
  59. last7days: '지난 7일',
  60. last4weeks: '지난 4주',
  61. last3months: '지난 3개월',
  62. last12months: '지난 12개월',
  63. monthToDate: '월 초부터 오늘까지',
  64. quarterToDate: '분기 초부터 오늘까지',
  65. yearToDate: '연 초부터 오늘까지',
  66. allTime: '모든 기간',
  67. },
  68. annotation: {
  69. all: '모두',
  70. annotated: '향상 주석 ({{count}} 개 항목)',
  71. not_annotated: '주석 없음',
  72. },
  73. },
  74. workflowTitle: '워크플로우 로그',
  75. workflowSubtitle: '이 로그는 Automate의 작업을 기록했습니다.',
  76. runDetail: {
  77. title: '대화 로그',
  78. workflowTitle: '로그 세부 정보',
  79. },
  80. promptLog: '프롬프트 로그',
  81. agentLog: '에이전트 로그',
  82. viewLog: '로그 보기',
  83. agentLogDetail: {
  84. agentMode: '에이전트 모드',
  85. toolUsed: '사용된 도구',
  86. iterations: '반복',
  87. iteration: '반복',
  88. finalProcessing: '최종 처리',
  89. },
  90. }
  91. export default translation