21 lines
618 B
TypeScript
21 lines
618 B
TypeScript
|
|
import { TEnumApi } from '../models';
|
||
|
|
|
||
|
|
export const apiEnumTranslates = {
|
||
|
|
goldKarat: '',
|
||
|
|
userStatus: 'وضعیت کاربر',
|
||
|
|
accountRole: 'نقش',
|
||
|
|
accountStatus: 'وضعیت',
|
||
|
|
posStatus: 'وضعیت',
|
||
|
|
posRole: 'نقش',
|
||
|
|
licenseType: 'نوع لایسنس',
|
||
|
|
licenseStatus: 'وضعیت لایسنس',
|
||
|
|
posType: 'نوع پایانه',
|
||
|
|
userType: 'نوع کاربر',
|
||
|
|
accountType: 'نوع کاربر',
|
||
|
|
partnerRole: 'نقش',
|
||
|
|
businessRole: 'نقش',
|
||
|
|
providerRole: 'نقش',
|
||
|
|
unitType: 'واحد اندازهگیری',
|
||
|
|
goodPricingModel: 'مدل محاسبه',
|
||
|
|
} as Record<TEnumApi, string>;
|