app-log.ts 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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: '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: '在這裡觀測和標註終端使用者和 AI 應用程式之間的互動,以不斷提高 AI 的準確性。您可以<testLink>試試</testLink> WebApp 或<shareLink>分享</shareLink>出去,然後返回此頁面。',
  32. },
  33. },
  34. },
  35. detail: {
  36. time: '時間',
  37. conversationId: '對話 ID',
  38. promptTemplate: '字首提示詞',
  39. promptTemplateBeforeChat: '對話前提示詞 · 以系統訊息提交',
  40. annotationTip: '{{user}} 標記的改進回覆',
  41. timeConsuming: '耗時',
  42. second: ' 秒',
  43. tokenCost: '花費 Token',
  44. loading: '載入中',
  45. operation: {
  46. like: '贊同',
  47. dislike: '反對',
  48. addAnnotation: '標記改進回覆',
  49. editAnnotation: '編輯改進回覆',
  50. annotationPlaceholder: '輸入你希望 AI 回覆的預期答案,這在今後可用於模型微調,持續改進文字生成質量。',
  51. },
  52. variables: '變數',
  53. uploadImages: '上傳的圖片',
  54. },
  55. filter: {
  56. period: {
  57. today: '今天',
  58. last7days: '過去 7 天',
  59. last4weeks: '過去 4 周',
  60. last3months: '過去 3 月',
  61. last12months: '過去 12 月',
  62. monthToDate: '本月至今',
  63. quarterToDate: '本季度至今',
  64. yearToDate: '本年至今',
  65. allTime: '所有時間',
  66. },
  67. annotation: {
  68. all: '全部',
  69. annotated: '已標註改進({{count}} 項)',
  70. not_annotated: '未標註',
  71. },
  72. },
  73. workflowTitle: '日誌',
  74. workflowSubtitle: '日誌記錄了應用的執行情況',
  75. runDetail: {
  76. title: '對話日誌',
  77. workflowTitle: '日誌詳情',
  78. },
  79. promptLog: 'Prompt 日誌',
  80. agentLog: 'Agent 日誌',
  81. viewLog: '檢視日誌',
  82. agentLogDetail: {
  83. agentMode: 'Agent 模式',
  84. toolUsed: '使用工具',
  85. iterations: '迭代次數',
  86. iteration: '迭代',
  87. finalProcessing: '最終處理',
  88. },
  89. }
  90. export default translation