-
Notifications
You must be signed in to change notification settings - Fork 0
/
CStringSet.en.ts
462 lines (455 loc) · 11.5 KB
/
CStringSet.en.ts
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
import type { Locale } from 'date-fns';
import en from 'date-fns/locale/en-US';
import type { StringSetContextType } from '../contexts';
import { messageTimestamp } from '../utils/format';
import type { CreateStringSet, StringSetOptions } from './CStringSet.type';
export type NotificationMessageDescriptionType =
| 'ContactInvitation'
| 'ContactInvitationAccepted'
| 'ContactInvitationDeclined'
| 'GroupInvitation'
| 'GroupInvitationAccepted'
| 'GroupInvitationDeclined'
| 'GroupRequestJoin'
| 'GroupRequestJoinAccepted'
| 'GroupRequestJoinDeclined';
export class UIKitStringSet implements StringSetContextType {
xxx: { yyy: string; zzz: (a: Date) => string };
ttt: { yyy: string };
header: {
groupInvite: string;
createConversation: string;
createGroup: string;
addMembers: string;
};
login: {
logo: string;
id: string;
pass: string;
button: string;
tip: string;
register: string;
};
register: {
id: string;
pass: string;
confirm: string;
button: string;
back: string;
comment: (code: number) => string;
};
search: {
placeholder: string;
};
searchServer: {
cancel: string;
contact: {
placeholder: string;
item: {
button: (type?: 'noAdded' | 'hadAdded' | 'adding') => string;
};
};
group: {
placeholder: string;
item: {
button: (type?: 'noJoined' | 'hadJoined' | 'applying') => string;
};
};
toast: {
contact: string[];
group: string[];
};
};
contactInfo: {
name: (name: string) => string;
chat: string;
mute: string;
block: string;
blockAlert: {
title: string;
message: string;
cancelButton: string;
confirmButton: string;
};
delete: string;
deleteAlert: {
title: string;
message: string;
cancelButton: string;
confirmButton: string;
};
toast: string[];
};
groupInfo: {
name: (name: string) => string;
groupDescription: string;
chat: string;
invite: string;
members: string;
members_1: {
owner: string;
admin: string;
};
actionToast: {
enum: (code: number) => string;
};
mute: string;
leave: string;
leaveAlert: {
title: string;
message: string;
cancelButton: string;
confirmButton: string;
};
destroy: string;
destroyAlert: {
title: string;
message: string;
cancelButton: string;
confirmButton: string;
};
modify: {
name: string;
namePrompt: {
placeholder: string;
cancel: string;
confirm: string;
};
description: string;
descriptionPrompt: {
placeholder: string;
cancel: string;
confirm: string;
};
groupId: string;
};
inviteAlert: {
title: string;
message: string;
cancelButton: string;
confirmButton: string;
};
toast: string[];
memberSheet: {
title: string;
add: string;
remove: string;
chat: string;
};
};
conversation: {
new: string;
createGroup: string;
addContact: string;
searchGroup: string;
joinPublicGroup: string;
};
settings: {
name: string;
id: string;
privacy: string;
blockedList: string;
about: string;
sdkVersion: string;
uiVersion: string;
policy: string;
more: string;
logins: string;
logout: string;
};
chat: {
voiceButton: string;
voiceState: string;
};
tabbar: {
request: string;
contact: string;
group: string;
};
contactList: {
groupSetting: {
groupSetting: string;
publicGroup: string;
memberInvite: string;
createGroup: string;
};
toast: string[];
};
requestList: {
button: string[];
description: (params: {
type: NotificationMessageDescriptionType;
user: string;
group?: string;
}) => string;
};
constructor(locate: Locale) {
this.xxx = {
yyy: 'zs',
zzz: (a) => messageTimestamp(a, locate),
};
this.ttt = {
yyy: 'ls',
};
this.header = {
groupInvite: 'Invite',
createConversation: 'Done',
createGroup: 'Done',
addMembers: 'Done',
};
this.login = {
logo: 'AgoraChat',
id: 'AgoraId',
pass: 'Password',
button: 'Log In',
tip: 'No account?',
register: 'Register',
};
this.register = {
id: 'Enter a AgoraId',
pass: 'Enter a Password',
confirm: 'Confirm Password',
button: 'Sign Up',
back: 'Back to Login',
comment: (code) => {
switch (code) {
case 1:
return 'Password do not match';
case 2:
return 'Username has already been taken';
case 3:
return 'Change a short one please';
case 4:
return 'Latin letters and numbers only';
case 5:
return 'Registration Success';
default:
return '';
}
},
};
this.search = {
placeholder: 'Search',
};
this.searchServer = {
cancel: 'Cancel',
contact: {
placeholder: 'Contact ID',
item: {
button: (type?: 'noAdded' | 'hadAdded' | 'adding') => {
switch (type) {
case 'noAdded':
return 'Add';
case 'hadAdded':
return 'Added';
case 'adding':
return 'Adding';
default:
return '';
}
},
},
},
group: {
placeholder: 'Group ID',
item: {
button: (type?: 'noJoined' | 'hadJoined' | 'applying') => {
switch (type) {
case 'noJoined':
return 'Apply';
case 'hadJoined':
return 'Joined';
case 'applying':
return 'Applying';
default:
return '';
}
},
},
},
toast: {
contact: ['Application Sent', 'Application Passed'],
group: ['Application Sent', 'Application Passed'],
},
};
this.contactInfo = {
name: (n: string) => n,
chat: 'Chat',
mute: 'Mute Notification',
block: 'Block Contact',
delete: 'Delete Contact',
blockAlert: {
title: 'Block NickName',
message:
'When you block this contact, you will not receive any messages from them.',
cancelButton: 'Cancel',
confirmButton: 'Confirm',
},
deleteAlert: {
title: 'Delete NickName',
message: 'Delte this contact and associated chat.',
cancelButton: 'Cancel',
confirmButton: 'Confirm',
},
toast: ['Contact Blocked', 'Contact Deleted'],
};
this.groupInfo = {
name: (n: string) => n,
groupDescription: 'Group description',
chat: 'Chat',
invite: 'Invite',
members: 'Members',
members_1: {
owner: 'Group Owner',
admin: 'Group Admin',
},
actionToast: {
enum: (code: number) => code.toString(),
},
mute: 'Mute Notification',
leave: 'Leave Group',
leaveAlert: {
title: 'Leave Group',
message:
'No prompt for other members and no group messages after you quit this group.',
cancelButton: 'Cancel',
confirmButton: 'Confirm',
},
destroy: 'Dismiss Group',
destroyAlert: {
title: 'Dismiss Group',
message:
'No prompt for other members and no group messages after you dismiss this group.',
cancelButton: 'Cancel',
confirmButton: 'Confirm',
},
modify: {
name: 'Change group name',
namePrompt: {
placeholder: 'Group name',
cancel: 'Cancel',
confirm: 'Confirm',
},
description: 'Change group description',
descriptionPrompt: {
placeholder: 'Group description',
cancel: 'Cancel',
confirm: 'Confirm',
},
groupId: 'Copy Group ID',
},
inviteAlert: {
title: 'Send group invitation',
message:
'You are about to invite nickname, nickname, nickname to the group that.',
cancelButton: 'Cancel',
confirmButton: 'Confirm',
},
toast: [
'Invitation Sent',
'Invitation failed',
'Setup failed',
'ID Copied',
'Application Sent',
],
memberSheet: {
title: '',
add: 'Add Contact',
remove: 'Remove from Group',
chat: 'Chat',
},
};
this.conversation = {
new: 'New Conversation',
createGroup: 'Create a group',
addContact: 'Search contacts',
searchGroup: 'Search groups',
joinPublicGroup: 'Join public groups',
};
this.settings = {
name: 'NickName',
id: 'AgoraId: xxx',
privacy: 'Privacy',
blockedList: 'Blocked List',
about: 'About',
sdkVersion: 'SDK version',
uiVersion: 'UI Library version',
policy: 'Legals Policies',
more: 'More',
logins: 'Logins',
logout: 'Logout',
};
this.chat = {
voiceButton: 'Hold to talk',
voiceState: 'Swipe up to cancel',
};
this.tabbar = {
request: 'Requests',
contact: 'Contacts',
group: 'Groups',
};
this.contactList = {
groupSetting: {
groupSetting: 'Group Settings',
publicGroup: 'Public Group',
memberInvite: 'Allow members to invite',
createGroup: 'Create New Group',
},
toast: ['1', '2', '3', '4'],
};
this.requestList = {
button: ['Accept', 'Accepted', 'Declined'],
description: (params: {
type: NotificationMessageDescriptionType;
user: string;
group?: string;
}) => {
switch (params.type) {
case 'ContactInvitation':
return `${params.user} wants to be your friend. Please accept the request.`;
case 'ContactInvitationAccepted':
return 'Your friend request has been accepted.';
case 'ContactInvitationDeclined':
return 'Your friend request has been declined.';
case 'GroupInvitation':
return `${params.user} invited you to join ${params.group}`;
case 'GroupInvitationAccepted':
return `You had been accepted to join ${params.group}.`;
case 'GroupInvitationDeclined':
return `You had been declined to join ${params.group}.`;
case 'GroupRequestJoin':
return `${params.user} request to join ${params.group}`;
case 'GroupRequestJoinAccepted':
return `You has been accepted to request from ${params.user}.`;
case 'GroupRequestJoinDeclined':
return `You has been declined to request from ${params.user}.`;
default:
return '';
}
},
};
}
}
/**
* Create the translation mapping table.
*
* @param param0 params
* @returns Returns the version of the specified language.
*/
export const createStringSet: CreateStringSet = ({
locate,
overrides,
}: StringSetOptions): StringSetContextType => {
if (overrides) {
return overrides;
}
return new UIKitStringSet(locate);
};
export function createStringSetFEn(
params?: StringSetContextType
): StringSetContextType {
return createStringSet({ locate: en, overrides: params });
}
export const createStringSetEn = (params?: StringSetContextType) => {
return createStringSet({ locate: en, overrides: params });
};