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
| const translation = {
| common: {
| welcome: '',
| appUnavailable: 'App is unavailable',
| appUnknownError: 'App is unavailable',
| },
| chat: {
| newChat: 'Start New chat',
| newChatTip: 'Already in a new chat',
| chatSettingsTitle: 'New chat setup',
| chatFormTip: 'Chat settings cannot be modified after the chat has started.',
| pinnedTitle: 'Pinned',
| unpinnedTitle: 'Recent',
| newChatDefaultName: 'New conversation',
| resetChat: 'Reset conversation',
| viewChatSettings: 'View chat settings',
| poweredBy: 'Powered by',
| prompt: 'Prompt',
| privatePromptConfigTitle: 'Conversation settings',
| publicPromptConfigTitle: 'Initial Prompt',
| configStatusDes: 'Before starting, you can modify the conversation settings',
| configDisabled:
| 'Previous session settings have been used for this session.',
| startChat: 'Start Chat',
| privacyPolicyLeft:
| 'Please read the ',
| privacyPolicyMiddle:
| 'privacy policy',
| privacyPolicyRight:
| ' provided by the app developer.',
| deleteConversation: {
| title: 'Delete conversation',
| content: 'Are you sure you want to delete this conversation?',
| },
| tryToSolve: 'Try to solve',
| temporarySystemIssue: 'Sorry, temporary system issue.',
| expand: 'Expand',
| collapse: 'Collapse',
| },
| generation: {
| tabs: {
| create: 'Run Once',
| batch: 'Run Batch',
| saved: 'Saved',
| },
| savedNoData: {
| title: 'You haven\'t saved a result yet!',
| description: 'Start generating content, and find your saved results here.',
| startCreateContent: 'Start create content',
| },
| title: 'AI Completion',
| queryTitle: 'Query content',
| completionResult: 'Completion result',
| queryPlaceholder: 'Write your query content...',
| run: 'Execute',
| execution: 'EXECUTION',
| executions: '{{num}} EXECUTIONS',
| copy: 'Copy',
| resultTitle: 'AI Completion',
| noData: 'AI will give you what you want here.',
| csvUploadTitle: 'Drag and drop your CSV file here, or ',
| browse: 'browse',
| csvStructureTitle: 'The CSV file must conform to the following structure:',
| downloadTemplate: 'Download the template here',
| field: 'Field',
| batchFailed: {
| info: '{{num}} failed executions',
| retry: 'Retry',
| outputPlaceholder: 'No output content',
| },
| errorMsg: {
| empty: 'Please input content in the uploaded file.',
| fileStructNotMatch: 'The uploaded CSV file not match the struct.',
| emptyLine: 'Row {{rowIndex}} is empty',
| invalidLine: 'Row {{rowIndex}}: {{varName}} value can not be empty',
| moreThanMaxLengthLine: 'Row {{rowIndex}}: {{varName}} value can not be more than {{maxLength}} characters',
| atLeastOne: 'Please input at least one row in the uploaded file.',
| },
| },
| }
|
| export default translation
|
|