選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

app-annotation.ts 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. const translation = {
  2. title: '標註',
  3. name: '標註回覆',
  4. editBy: '{{author}}編輯的答案',
  5. noData: {
  6. title: '沒有標註',
  7. description: '你可以在應用會話除錯中編輯標註,也可以在此批次匯入標註用於高質量回復。',
  8. },
  9. table: {
  10. header: {
  11. question: '提問',
  12. match: '匹配',
  13. response: '回覆',
  14. answer: '答案',
  15. createdAt: '建立時間',
  16. hits: '命中次數',
  17. actions: '操作',
  18. addAnnotation: '新增標註',
  19. bulkImport: '批次匯入',
  20. bulkExport: '批次匯出',
  21. clearAll: '刪除所有標註',
  22. clearAllConfirm: '要刪除所有標註嗎?',
  23. },
  24. },
  25. editModal: {
  26. title: '編輯標註回覆',
  27. queryName: '使用者提問',
  28. answerName: '機器回覆',
  29. yourAnswer: '您的回覆',
  30. answerPlaceholder: '在這裡輸入您的回覆',
  31. yourQuery: '您的提問',
  32. queryPlaceholder: '在這裡輸入您的提問',
  33. removeThisCache: '刪除此標註',
  34. createdAt: '創建於',
  35. },
  36. addModal: {
  37. title: '新增標註回覆',
  38. queryName: '提問',
  39. answerName: '回覆',
  40. answerPlaceholder: '輸入回覆',
  41. queryPlaceholder: '輸入提問',
  42. createNext: '新增下一個標註回覆',
  43. },
  44. batchModal: {
  45. title: '批次匯入',
  46. csvUploadTitle: '將您的 CSV 檔案拖放到此處,或',
  47. browse: '選擇檔案',
  48. tip: 'CSV 檔案必須符合以下結構:',
  49. question: '問題',
  50. answer: '回答',
  51. contentTitle: '分段內容',
  52. content: '內容',
  53. template: '下載模板',
  54. cancel: '取消',
  55. run: '匯入',
  56. runError: '批次匯入失敗',
  57. processing: '批次處理中',
  58. completed: '匯入完成',
  59. error: '匯入出錯',
  60. ok: '確定',
  61. },
  62. errorMessage: {
  63. answerRequired: '回覆不能為空',
  64. queryRequired: '提問不能為空',
  65. },
  66. viewModal: {
  67. annotatedResponse: '標註回覆',
  68. hitHistory: '命中歷史',
  69. hit: '次命中',
  70. hits: '次命中',
  71. noHitHistory: '沒有命中歷史',
  72. },
  73. hitHistoryTable: {
  74. question: '問題',
  75. query: '提問',
  76. match: '匹配',
  77. response: '回覆',
  78. source: '來源',
  79. score: '分數',
  80. time: '時間',
  81. },
  82. initSetup: {
  83. title: '標註回覆初始設定',
  84. configTitle: '標註回覆設定',
  85. confirmBtn: '儲存並啟用',
  86. configConfirmBtn: '儲存',
  87. },
  88. embeddingModelSwitchTip: '標註文字向量化模型,切換模型會重新嵌入,產生額外費用消耗',
  89. }
  90. export default translation