/* eslint-disable */ import { phoneTypes } from '@ringcentral-integration/commons/enums/phoneTypes'; import { presenceStatus } from '@ringcentral-integration/commons/enums/presenceStatus.enum'; import { dndStatus } from '@ringcentral-integration/commons/modules/Presence'; export default { [phoneTypes.extension]: '내선 번호', [phoneTypes.direct]: '직접', [phoneTypes.mobile]: '모바일', [phoneTypes.contact]: '연락처 전화번호', [phoneTypes.home]: '홈', [phoneTypes.business]: '비즈니스', [phoneTypes.fax]: '팩스', [phoneTypes.company]: '회사', [phoneTypes.other]: '기타', emailLabel: '전자 메일', call: '전화', text: '문자', [presenceStatus.available]: '사용 가능', [presenceStatus.offline]: '오프라인으로 표시', [presenceStatus.busy]: '통화 중', [dndStatus.doNotAcceptAnyCalls]: '방해 금지', notActivated: '비활성', jobTitle: '직함', site: '사이트', } as const; // @key: @#@"[phoneTypes.extension]"@#@ @source: @#@"Ext."@#@ // @key: @#@"[phoneTypes.direct]"@#@ @source: @#@"Direct"@#@ // @key: @#@"[phoneTypes.mobile]"@#@ @source: @#@"Mobile"@#@ // @key: @#@"[phoneTypes.contact]"@#@ @source: @#@"Contact phone"@#@ // @key: @#@"[phoneTypes.home]"@#@ @source: @#@"Home"@#@ // @key: @#@"[phoneTypes.business]"@#@ @source: @#@"Business"@#@ // @key: @#@"[phoneTypes.fax]"@#@ @source: @#@"Fax"@#@ // @key: @#@"[phoneTypes.company]"@#@ @source: @#@"Company"@#@ // @key: @#@"[phoneTypes.other]"@#@ @source: @#@"Other"@#@ // @key: @#@"emailLabel"@#@ @source: @#@"Email"@#@ // @key: @#@"call"@#@ @source: @#@"Call"@#@ // @key: @#@"text"@#@ @source: @#@"Text"@#@ // @key: @#@"[presenceStatus.available]"@#@ @source: @#@"Available"@#@ // @key: @#@"[presenceStatus.offline]"@#@ @source: @#@"Invisible"@#@ // @key: @#@"[presenceStatus.busy]"@#@ @source: @#@"Busy"@#@ // @key: @#@"[dndStatus.doNotAcceptAnyCalls]"@#@ @source: @#@"Do not Disturb"@#@ // @key: @#@"notActivated"@#@ @source: @#@"Inactive"@#@ // @key: @#@"jobTitle"@#@ @source: @#@"Title"@#@ // @key: @#@"site"@#@ @source: @#@"Site"@#@