您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

app-annotation.ts 2.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. selected: '選擇的',
  93. delete: '刪除',
  94. },
  95. }
  96. export default translation