app-log.ts 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. const translation = {
  2. title: '日誌',
  3. description: '日誌記錄了應用的執行情況,包括使用者的輸入和 AI 的回覆。',
  4. dateTimeFormat: 'YYYY-MM-DD HH:mm',
  5. table: {
  6. header: {
  7. updatedTime: '更新時間',
  8. time: '創建時間',
  9. endUser: '使用者或賬戶',
  10. input: '輸入',
  11. output: '輸出',
  12. summary: '標題',
  13. messageCount: '訊息數',
  14. userRate: '使用者反饋',
  15. adminRate: '管理員反饋',
  16. startTime: '開始時間',
  17. status: '狀態',
  18. runtime: '執行時間',
  19. tokens: 'TOKENS',
  20. user: '使用者或賬戶',
  21. version: '版本',
  22. },
  23. pagination: {
  24. previous: '上一頁',
  25. next: '下一頁',
  26. },
  27. empty: {
  28. noChat: '未開始的對話',
  29. noOutput: '無輸出',
  30. element: {
  31. title: '這裡有人嗎',
  32. content: '在這裡觀測和標註終端使用者和 AI 應用程式之間的互動,以不斷提高 AI 的準確性。您可以<testLink>試試</testLink> WebApp 或<shareLink>分享</shareLink>出去,然後返回此頁面。',
  33. },
  34. },
  35. },
  36. detail: {
  37. time: '時間',
  38. conversationId: '對話 ID',
  39. promptTemplate: '字首提示詞',
  40. promptTemplateBeforeChat: '對話前提示詞 · 以系統訊息提交',
  41. annotationTip: '{{user}} 標記的改進回覆',
  42. timeConsuming: '耗時',
  43. second: ' 秒',
  44. tokenCost: '花費 Token',
  45. loading: '載入中',
  46. operation: {
  47. like: '贊同',
  48. dislike: '反對',
  49. addAnnotation: '標記改進回覆',
  50. editAnnotation: '編輯改進回覆',
  51. annotationPlaceholder: '輸入你希望 AI 回覆的預期答案,這在今後可用於模型微調,持續改進文字生成質量。',
  52. },
  53. variables: '變數',
  54. uploadImages: '上傳的圖片',
  55. },
  56. filter: {
  57. period: {
  58. today: '今天',
  59. last7days: '過去 7 天',
  60. last4weeks: '過去 4 周',
  61. last3months: '過去 3 月',
  62. last12months: '過去 12 月',
  63. monthToDate: '本月至今',
  64. quarterToDate: '本季度至今',
  65. yearToDate: '本年至今',
  66. allTime: '所有時間',
  67. },
  68. annotation: {
  69. all: '全部',
  70. annotated: '已標註改進({{count}} 項)',
  71. not_annotated: '未標註',
  72. },
  73. sortBy: '排序方式:',
  74. descending: '降序',
  75. ascending: '升序',
  76. },
  77. workflowTitle: '日誌',
  78. workflowSubtitle: '日誌記錄了應用的執行情況',
  79. runDetail: {
  80. title: '對話日誌',
  81. workflowTitle: '日誌詳情',
  82. },
  83. promptLog: 'Prompt 日誌',
  84. agentLog: 'Agent 日誌',
  85. viewLog: '檢視日誌',
  86. agentLogDetail: {
  87. agentMode: 'Agent 模式',
  88. toolUsed: '使用工具',
  89. iterations: '迭代次數',
  90. iteration: '迭代',
  91. finalProcessing: '最終處理',
  92. },
  93. }
  94. export default translation