/* 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]: 'FAX', [phoneTypes.company]: '会社', [phoneTypes.other]: 'その他', emailLabel: 'Eメール', 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"@#@