50 lines
1.6 KiB
TypeScript
50 lines
1.6 KiB
TypeScript
import { TUIStore } from '../CallService/index';
|
|
import { NAME, StoreName } from '../const/index';
|
|
import { zh } from './zh-cn';
|
|
import { interpolate, isString, isPlainObject } from '../utils/common-utils';
|
|
|
|
export const CallTips: any = {
|
|
OTHER_SIDE_REJECT_CALL: 'other side reject call',
|
|
REJECT_CALL: 'reject call',
|
|
OTHER_SIDE_LINE_BUSY: 'other side line busy',
|
|
IN_BUSY: 'in busy',
|
|
CALL_TIMEOUT: 'call timeout',
|
|
END_CALL: 'end call',
|
|
TIMEOUT: 'timeout',
|
|
KICK_OUT: 'kick out',
|
|
CALLER_CALLING_MSG: 'caller calling message',
|
|
CALLER_GROUP_CALLING_MSG: 'wait to be called',
|
|
CALLEE_CALLING_VIDEO_MSG: 'callee calling video message',
|
|
CALLEE_CALLING_AUDIO_MSG: 'callee calling audio message',
|
|
NO_MICROPHONE_DEVICE_PERMISSION: 'no microphone access',
|
|
NO_CAMERA_DEVICE_PERMISSION: 'no camera access',
|
|
LOCAL_NETWORK_IS_POOR: 'The network is poor during your current call',
|
|
REMOTE_NETWORK_IS_POOR: 'The other user network is poor during the current call',
|
|
};
|
|
|
|
export const languageData: languageDataType = {
|
|
'zh-cn': zh,
|
|
};
|
|
|
|
// language translate
|
|
export function t(args): string {
|
|
const language = 'zh-cn';
|
|
let translationContent = '';
|
|
if (isString(args)) {
|
|
translationContent = languageData?.[language]?.[args] || '';
|
|
} else if (isPlainObject(args)) {
|
|
const { key, options } = args;
|
|
translationContent = languageData?.[language]?.[key] || '';
|
|
translationContent = interpolate(translationContent, options);
|
|
}
|
|
|
|
return translationContent;
|
|
}
|
|
|
|
interface languageItemType {
|
|
[key: string]: string;
|
|
}
|
|
interface languageDataType {
|
|
[key: string]: languageItemType;
|
|
}
|