1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
| const translation = {
| title: 'Annotations',
| name: 'Annotation Reply',
| editBy: 'Answer edited by {{author}}',
| noData: {
| title: 'No annotations',
| description: 'You can edit annotations during app debugging or import annotations in bulk here for a high-quality response.',
| },
| table: {
| header: {
| question: 'question',
| answer: 'answer',
| createdAt: 'created at',
| hits: 'hits',
| actions: 'actions',
| addAnnotation: 'Add Annotation',
| bulkImport: 'Bulk Import',
| bulkExport: 'Bulk Export',
| clearAll: 'Clear All Annotation',
| },
| },
| editModal: {
| title: 'Edit Annotation Reply',
| queryName: 'User Query',
| answerName: 'Storyteller Bot',
| yourAnswer: 'Your Answer',
| answerPlaceholder: 'Type your answer here',
| yourQuery: 'Your Query',
| queryPlaceholder: 'Type your query here',
| removeThisCache: 'Remove this Annotation',
| createdAt: 'Created At',
| },
| addModal: {
| title: 'Add Annotation Reply',
| queryName: 'Question',
| answerName: 'Answer',
| answerPlaceholder: 'Type answer here',
| queryPlaceholder: 'Type query here',
| createNext: 'Add another annotated response',
| },
| batchModal: {
| title: 'Bulk Import',
| csvUploadTitle: 'Drag and drop your CSV file here, or ',
| browse: 'browse',
| tip: 'The CSV file must conform to the following structure:',
| question: 'question',
| answer: 'answer',
| contentTitle: 'chunk content',
| content: 'content',
| template: 'Download the template here',
| cancel: 'Cancel',
| run: 'Run Batch',
| runError: 'Run batch failed',
| processing: 'In batch processing',
| completed: 'Import completed',
| error: 'Import Error',
| ok: 'OK',
| },
| errorMessage: {
| answerRequired: 'Answer is required',
| queryRequired: 'Question is required',
| },
| viewModal: {
| annotatedResponse: 'Annotation Reply',
| hitHistory: 'Hit History',
| hit: 'Hit',
| hits: 'Hits',
| noHitHistory: 'No hit history',
| },
| hitHistoryTable: {
| query: 'Query',
| match: 'Match',
| response: 'Response',
| source: 'Source',
| score: 'Score',
| time: 'Time',
| },
| initSetup: {
| title: 'Annotation Reply Initial Setup',
| configTitle: 'Annotation Reply Setup',
| confirmBtn: 'Save & Enable',
| configConfirmBtn: 'Save',
| },
| embeddingModelSwitchTip: 'Annotation text vectorization model, switching models will be re-embedded, resulting in additional costs.',
| }
|
| export default translation
|
|