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