You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

app-log.ts 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. const translation = {
  2. title: '日志',
  3. description: '日志记录了应用的运行情况,包括用户的输入和 AI 的回复。',
  4. dateTimeFormat: 'YYYY-MM-DD HH:mm:ss',
  5. dateFormat: 'YYYY-MM-DD',
  6. table: {
  7. header: {
  8. updatedTime: '更新时间',
  9. time: '创建时间',
  10. endUser: '用户或账户',
  11. input: '输入',
  12. output: '输出',
  13. summary: '标题',
  14. messageCount: '消息数',
  15. userRate: '用户反馈',
  16. adminRate: '管理员反馈',
  17. startTime: '开始时间',
  18. status: '状态',
  19. runtime: '运行时间',
  20. tokens: 'TOKENS',
  21. user: '用户或账户',
  22. version: '版本',
  23. },
  24. pagination: {
  25. previous: '上一页',
  26. next: '下一页',
  27. },
  28. empty: {
  29. noChat: '未开始的对话',
  30. noOutput: '无输出',
  31. element: {
  32. title: '这里有人吗',
  33. content: '在这里观测和标注最终用户和 AI 应用程序之间的交互,以不断提高 AI 的准确性。您可以<testLink>试试</testLink> web app 或<shareLink>分享</shareLink>出去,然后返回此页面。',
  34. },
  35. },
  36. },
  37. detail: {
  38. time: '时间',
  39. conversationId: '对话 ID',
  40. promptTemplate: '前缀提示词',
  41. promptTemplateBeforeChat: '对话前提示词 · 以系统消息提交',
  42. annotationTip: '{{user}} 标记的改进回复',
  43. timeConsuming: '耗时',
  44. second: ' 秒',
  45. tokenCost: '花费 Token',
  46. loading: '加载中',
  47. operation: {
  48. like: '赞同',
  49. dislike: '反对',
  50. addAnnotation: '标记改进回复',
  51. editAnnotation: '编辑改进回复',
  52. annotationPlaceholder: '输入你希望 AI 回复的预期答案,这在今后可用于模型微调,持续改进文本生成质量。',
  53. },
  54. variables: '变量',
  55. uploadImages: '上传的图片',
  56. modelParams: '模型参数',
  57. },
  58. filter: {
  59. period: {
  60. today: '今天',
  61. last7days: '过去 7 天',
  62. last4weeks: '过去 4 周',
  63. last3months: '过去 3 月',
  64. last12months: '过去 12 月',
  65. monthToDate: '本月至今',
  66. quarterToDate: '本季度至今',
  67. yearToDate: '本年至今',
  68. allTime: '所有时间',
  69. },
  70. annotation: {
  71. all: '全部',
  72. annotated: '已标注改进({{count}} 项)',
  73. not_annotated: '未标注',
  74. },
  75. sortBy: '排序:',
  76. descending: '降序',
  77. ascending: '升序',
  78. },
  79. workflowTitle: '日志',
  80. workflowSubtitle: '日志记录了应用的执行情况',
  81. runDetail: {
  82. title: '对话日志',
  83. workflowTitle: '日志详情',
  84. fileListLabel: '文件详情',
  85. fileListDetail: '详情',
  86. },
  87. promptLog: 'Prompt 日志',
  88. agentLog: 'Agent 日志',
  89. viewLog: '查看日志',
  90. agentLogDetail: {
  91. agentMode: 'Agent 模式',
  92. toolUsed: '使用工具',
  93. iterations: '迭代次数',
  94. iteration: '迭代',
  95. finalProcessing: '最终处理',
  96. },
  97. }
  98. export default translation