app-log.ts 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. const translation = {
  2. title: 'ログ',
  3. description: 'ログは、アプリケーションの実行状態を記録します。ユーザーの入力やAIの応答などが含まれます。',
  4. dateTimeFormat: 'MM/DD/YYYY hh:mm A',
  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: 'トークン',
  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の精度を継続的に向上させます。Webアプリを<shareLink>共有</shareLink>または<testLink>テスト</testLink>してみて、このページに戻ってください。',
  33. },
  34. },
  35. },
  36. detail: {
  37. time: '時間',
  38. conversationId: '会話ID',
  39. promptTemplate: 'プロンプトテンプレート',
  40. promptTemplateBeforeChat: 'チャット前のプロンプトテンプレート・システムメッセージとして',
  41. annotationTip: '{{user}} によってマークされた改善',
  42. timeConsuming: '',
  43. second: '秒',
  44. tokenCost: 'トークン消費',
  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: 'このログは Automate の操作を記録しました。',
  79. runDetail: {
  80. title: '会話ログ',
  81. workflowTitle: 'ログの詳細',
  82. fileListLabel: 'ファイルの詳細',
  83. fileListDetail: '詳細',
  84. },
  85. promptLog: 'プロンプトログ',
  86. agentLog: 'エージェントログ',
  87. viewLog: 'ログを表示',
  88. agentLogDetail: {
  89. agentMode: 'エージェントモード',
  90. toolUsed: '使用したツール',
  91. iterations: '反復',
  92. iteration: '反復',
  93. finalProcessing: '最終処理',
  94. },
  95. }
  96. export default translation