/* 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]: 'Int.', [phoneTypes.direct]: 'Diretto', [phoneTypes.mobile]: 'Cellulare', [phoneTypes.contact]: 'Telefono di contatto', [phoneTypes.home]: 'Home', [phoneTypes.business]: 'Lavoro', [phoneTypes.fax]: 'Fax', [phoneTypes.company]: 'Azienda', [phoneTypes.other]: 'Altro', emailLabel: 'E-mail', call: 'Chiamata', text: 'SMS', [presenceStatus.available]: 'Disponibile', [presenceStatus.offline]: 'Invisibile', [presenceStatus.busy]: 'Occupato', [dndStatus.doNotAcceptAnyCalls]: 'Non disturbare', notActivated: 'Inattivo', jobTitle: 'Ruolo', site: 'Sede', } 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"@#@