app-log.ts 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. viewLog: '查看日志',
  81. }
  82. export default translation