app-log.zh.ts 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. },
  16. pagination: {
  17. previous: '上一页',
  18. next: '下一页',
  19. },
  20. empty: {
  21. noChat: '未开始的对话',
  22. noOutput: '无输出',
  23. element: {
  24. title: '这里有人吗',
  25. content: '在这里观测和标注最终用户和 AI 应用程序之间的交互,以不断提高 AI 的准确性。您可以<testLink>试试</testLink> WebApp 或<shareLink>分享</shareLink>出去,然后返回此页面。',
  26. },
  27. },
  28. },
  29. detail: {
  30. time: '时间',
  31. conversationId: '对话 ID',
  32. promptTemplate: '前缀提示词',
  33. promptTemplateBeforeChat: '对话前提示词 · 以系统消息提交',
  34. annotationTip: '{{user}} 标记的改进回复',
  35. timeConsuming: '耗时',
  36. second: ' 秒',
  37. tokenCost: '花费 Token',
  38. loading: '加载中',
  39. operation: {
  40. like: '赞同',
  41. dislike: '反对',
  42. addAnnotation: '标记改进回复',
  43. editAnnotation: '编辑改进回复',
  44. annotationPlaceholder: '输入你希望 AI 回复的预期答案,这在今后可用于模型微调,持续改进文本生成质量。',
  45. },
  46. },
  47. filter: {
  48. period: {
  49. today: '今天',
  50. last7days: '过去 7 天',
  51. last4weeks: '过去 4 周',
  52. last3months: '过去 3 月',
  53. last12months: '过去 12 月',
  54. monthToDate: '本月至今',
  55. quarterToDate: '本季度至今',
  56. yearToDate: '本年至今',
  57. allTime: '所有时间',
  58. },
  59. annotation: {
  60. all: '全部',
  61. annotated: '已标注改进({{count}} 项)',
  62. not_annotated: '未标注',
  63. },
  64. },
  65. }
  66. export default translation