You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

app-annotation.ts 3.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. const translation = {
  2. title: '어노테이션',
  3. name: '어노테이션 답변',
  4. editBy: '{{author}} 님이 편집한 답변',
  5. noData: {
  6. title: '어노테이션이 없습니다',
  7. description: '여기에서는 앱 디버깅 중에 어노테이션을 편집하거나 일괄적으로 어노테이션을 가져와 고품질의 응답을 생성할 수 있습니다.',
  8. },
  9. table: {
  10. header: {
  11. question: '질문',
  12. answer: '답변',
  13. createdAt: '생성 날짜',
  14. hits: '조회수',
  15. actions: '액션',
  16. addAnnotation: '어노테이션 추가',
  17. bulkImport: '일괄 가져오기',
  18. bulkExport: '일괄 내보내기',
  19. clearAll: '모든 어노테이션 지우기',
  20. clearAllConfirm: '모든 주석을 삭제하시겠습니까?',
  21. },
  22. },
  23. editModal: {
  24. title: '어노테이션 답변 편집',
  25. queryName: '사용자 쿼리',
  26. answerName: '스토리텔러 봇',
  27. yourAnswer: '당신의 답변',
  28. answerPlaceholder: '여기에 답변을 입력하세요',
  29. yourQuery: '당신의 쿼리',
  30. queryPlaceholder: '여기에 쿼리를 입력하세요',
  31. removeThisCache: '이 어노테이션 삭제',
  32. createdAt: '생성 날짜',
  33. },
  34. addModal: {
  35. title: '어노테이션 답변 추가',
  36. queryName: '질문',
  37. answerName: '답변',
  38. answerPlaceholder: '여기에 답변을 입력하세요',
  39. queryPlaceholder: '여기에 질문을 입력하세요',
  40. createNext: '다른 어노테이션이 달린 응답 추가',
  41. },
  42. batchModal: {
  43. title: '일괄 가져오기',
  44. csvUploadTitle: 'CSV 파일을 여기에 드래그 앤 드롭하거나,',
  45. browse: '찾아보기',
  46. tip: 'CSV 파일은 다음 구조를 따라야 합니다:',
  47. question: '질문',
  48. answer: '답변',
  49. contentTitle: '덩어리 내용',
  50. content: '내용',
  51. template: '여기서 템플릿 다운로드',
  52. cancel: '취소',
  53. run: '일괄 실행',
  54. runError: '일괄 실행 실패',
  55. processing: '일괄 처리 중',
  56. completed: '가져오기 완료',
  57. error: '가져오기 오류',
  58. ok: '확인',
  59. },
  60. errorMessage: {
  61. answerRequired: '답변은 필수입니다',
  62. queryRequired: '질문은 필수입니다',
  63. },
  64. viewModal: {
  65. annotatedResponse: '어노테이션 답변',
  66. hitHistory: '조회 기록',
  67. hit: '조회',
  68. hits: '조회수',
  69. noHitHistory: '조회 기록이 없습니다',
  70. },
  71. hitHistoryTable: {
  72. query: '쿼리',
  73. match: '일치',
  74. response: '응답',
  75. source: '소스',
  76. score: '점수',
  77. time: '시간',
  78. },
  79. initSetup: {
  80. title: '어노테이션 답변 초기 설정',
  81. configTitle: '어노테이션 답변 설정',
  82. confirmBtn: '저장하고 활성화하기',
  83. configConfirmBtn: '저장',
  84. },
  85. embeddingModelSwitchTip: '어노테이션 텍스트의 임베딩 모델입니다. 모델을 변경하면 다시 임베딩되며 추가 비용이 발생합니다.',
  86. list: {
  87. delete: {
  88. title: '삭제할 것인지 확실합니까?',
  89. },
  90. },
  91. batchAction: {
  92. cancel: '취소',
  93. delete: '삭제',
  94. selected: '선택됨',
  95. },
  96. }
  97. export default translation