Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

app-annotation.ts 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. const translation = {
  2. title: 'Annotations',
  3. name: 'Annotation Reply',
  4. editBy: 'Answer edited by {{author}}',
  5. noData: {
  6. title: 'No annotations',
  7. description: 'You can edit annotations during app debugging or import annotations in bulk here for a high-quality response.',
  8. },
  9. table: {
  10. header: {
  11. question: 'question',
  12. answer: 'answer',
  13. createdAt: 'created at',
  14. hits: 'hits',
  15. actions: 'actions',
  16. addAnnotation: 'Add Annotation',
  17. bulkImport: 'Bulk Import',
  18. bulkExport: 'Bulk Export',
  19. clearAll: 'Delete All',
  20. clearAllConfirm: 'Delete all annotations?',
  21. },
  22. },
  23. editModal: {
  24. title: 'Edit Annotation Reply',
  25. queryName: 'User Query',
  26. answerName: 'Storyteller Bot',
  27. yourAnswer: 'Your Answer',
  28. answerPlaceholder: 'Type your answer here',
  29. yourQuery: 'Your Query',
  30. queryPlaceholder: 'Type your query here',
  31. removeThisCache: 'Remove this Annotation',
  32. createdAt: 'Created At',
  33. },
  34. addModal: {
  35. title: 'Add Annotation Reply',
  36. queryName: 'Question',
  37. answerName: 'Answer',
  38. answerPlaceholder: 'Type answer here',
  39. queryPlaceholder: 'Type query here',
  40. createNext: 'Add another annotated response',
  41. },
  42. batchModal: {
  43. title: 'Bulk Import',
  44. csvUploadTitle: 'Drag and drop your CSV file here, or ',
  45. browse: 'browse',
  46. tip: 'The CSV file must conform to the following structure:',
  47. question: 'question',
  48. answer: 'answer',
  49. contentTitle: 'chunk content',
  50. content: 'content',
  51. template: 'Download the template here',
  52. cancel: 'Cancel',
  53. run: 'Run Batch',
  54. runError: 'Run batch failed',
  55. processing: 'In batch processing',
  56. completed: 'Import completed',
  57. error: 'Import Error',
  58. ok: 'OK',
  59. },
  60. errorMessage: {
  61. answerRequired: 'Answer is required',
  62. queryRequired: 'Question is required',
  63. },
  64. viewModal: {
  65. annotatedResponse: 'Annotation Reply',
  66. hitHistory: 'Hit History',
  67. hit: 'Hit',
  68. hits: 'Hits',
  69. noHitHistory: 'No hit history',
  70. },
  71. hitHistoryTable: {
  72. query: 'Query',
  73. match: 'Match',
  74. response: 'Response',
  75. source: 'Source',
  76. score: 'Score',
  77. time: 'Time',
  78. },
  79. initSetup: {
  80. title: 'Annotation Reply Initial Setup',
  81. configTitle: 'Annotation Reply Setup',
  82. confirmBtn: 'Save & Enable',
  83. configConfirmBtn: 'Save',
  84. },
  85. embeddingModelSwitchTip: 'Annotation text vectorization model, switching models will be re-embedded, resulting in additional costs.',
  86. }
  87. export default translation