MT#62617 Add missing Italian translations

Using AI to quickly translate keys
to Italian.

Change-Id: I2a0352d06850a32dd8e13c21f7b6e3e111bd2c12
(cherry picked from commit 34bcb13de3)
(cherry picked from commit 289f2cdc4d)
mr13.3.1
Debora Crescenzo 2 weeks ago committed by Crescenzo Debora
parent 82af631437
commit 1fc24969da

@ -114,7 +114,7 @@ export default {
{ {
to: '/user/call-blocking/outgoing', to: '/user/call-blocking/outgoing',
icon: 'call_made', icon: 'call_made',
label: this.$t('Block outgoing'), label: this.$t('Block Outgoing'),
visible: this.hasSubscriberProfileAttributes(PROFILE_ATTRIBUTES_MAP.callBlockingOutgoing) visible: this.hasSubscriberProfileAttributes(PROFILE_ATTRIBUTES_MAP.callBlockingOutgoing)
}, },
{ {

@ -203,16 +203,16 @@ export default {
const errorsTab = this.v$.changes.queue_wrap_up_time.$errors const errorsTab = this.v$.changes.queue_wrap_up_time.$errors
if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'numeric') { if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'numeric') {
return this.$t('{field} must consist of numeric characters only', { return this.$t('{field} must consist of numeric characters only', {
field: this.$t('Wrap Up Time') field: this.$t('Wrap up time')
}) })
} else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'minValue') { } else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'minValue') {
return this.$t('{field} must be at least {minValue} second', { return this.$t('{field} must be at least {minValue} second', {
field: this.$t('Wrap Up Time'), field: this.$t('Wrap up time'),
minValue: this.v$.changes.queue_wrap_up_time.minValue.$params.min minValue: this.v$.changes.queue_wrap_up_time.minValue.$params.min
}) })
} else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'maxValue') { } else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'maxValue') {
return this.$t('{field} must be maximum of {maxValue} seconds', { return this.$t('{field} must be maximum of {maxValue} seconds', {
field: this.$t('Wrap Up Time'), field: this.$t('Wrap up time'),
maxValue: this.v$.changes.queue_wrap_up_time.maxValue.$params.max maxValue: this.v$.changes.queue_wrap_up_time.maxValue.$params.max
}) })
} }

@ -25,7 +25,7 @@
:error-message="wrapUpTimeErrorMessage" :error-message="wrapUpTimeErrorMessage"
:disable="loading" :disable="loading"
:readonly="loading" :readonly="loading"
:label="$t('Wrap Up Time')" :label="$t('Wrap up time')"
:suffix="$t('seconds')" :suffix="$t('seconds')"
@update:model-value="v$.data.queue_wrap_up_time.$touch()" @update:model-value="v$.data.queue_wrap_up_time.$touch()"
/> />
@ -146,16 +146,16 @@ export default {
const errorsTab = this.v$.data.queue_wrap_up_time.$errors const errorsTab = this.v$.data.queue_wrap_up_time.$errors
if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'numeric') { if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'numeric') {
return this.$t('{field} must consist of numeric characters only', { return this.$t('{field} must consist of numeric characters only', {
field: this.$t('Wrap Up Time') field: this.$t('Wrap up time')
}) })
} else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'minValue') { } else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'minValue') {
return this.$t('{field} must be at least {minValue} second', { return this.$t('{field} must be at least {minValue} second', {
field: this.$t('Wrap Up Time'), field: this.$t('Wrap up time'),
minValue: this.v$.data.queue_wrap_up_time.minValue.$params.min minValue: this.v$.data.queue_wrap_up_time.minValue.$params.min
}) })
} else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'maxValue') { } else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'maxValue') {
return this.$t('{field} must be maximum of {maxValue} seconds', { return this.$t('{field} must be maximum of {maxValue} seconds', {
field: this.$t('Wrap Up Time'), field: this.$t('Wrap up time'),
maxValue: this.v$.data.queue_wrap_up_time.maxValue.$params.max maxValue: this.v$.data.queue_wrap_up_time.maxValue.$params.max
}) })
} }

@ -264,20 +264,20 @@ export default {
const errorsTab = this.v$.data.huntTimeout.$errors const errorsTab = this.v$.data.huntTimeout.$errors
if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'required') { if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'required') {
return this.$t('{field} is required', { return this.$t('{field} is required', {
field: this.$t('Hunt timeout') field: this.$t('Hunt Timeout')
}) })
} else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'numeric') { } else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'numeric') {
return this.$t('{field} must consist of numeric characters only', { return this.$t('{field} must consist of numeric characters only', {
field: this.$t('Hunt timeout') field: this.$t('Hunt Timeout')
}) })
} else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'minValue') { } else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'minValue') {
return this.$t('{field} must be at least {minValue} second', { return this.$t('{field} must be at least {minValue} second', {
field: this.$t('Hunt timeout'), field: this.$t('Hunt Timeout'),
minValue: this.v$.data.huntTimeout.minValue.$params.min minValue: this.v$.data.huntTimeout.minValue.$params.min
}) })
} else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'maxValue') { } else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'maxValue') {
return this.$t('{field} must be maximum of {maxValue} seconds', { return this.$t('{field} must be maximum of {maxValue} seconds', {
field: this.$t('Hunt timeout'), field: this.$t('Hunt Timeout'),
maxValue: this.v$.data.huntTimeout.maxValue.$params.max maxValue: this.v$.data.huntTimeout.maxValue.$params.max
}) })
} }

@ -61,9 +61,8 @@
"Block List for outbounds calls": "Blockliste für ausgehende Anrufe", "Block List for outbounds calls": "Blockliste für ausgehende Anrufe",
"Block Mode for inbound calls": "Blockmodus für eingehende Anrufe", "Block Mode for inbound calls": "Blockmodus für eingehende Anrufe",
"Block Mode for outbounds calls": "Blockmodus für ausgehende Anrufe", "Block Mode for outbounds calls": "Blockmodus für ausgehende Anrufe",
"Block Outgoing": "Ausgehende Anrufe blockieren",
"Block anonymous inbound calls": "Anonyme eingehende Anrufe blockieren", "Block anonymous inbound calls": "Anonyme eingehende Anrufe blockieren",
"Block outgoing": "Block outgoing", "Block Outgoing": "Ausgehende Anrufe blockieren",
"Busy Greeting": "Begrüßung, wenn besetzt", "Busy Greeting": "Begrüßung, wenn besetzt",
"Busy Lamp Field": "Besetztlampenfeld", "Busy Lamp Field": "Besetztlampenfeld",
"CDR": "CDR", "CDR": "CDR",
@ -189,7 +188,7 @@
"Enable regex matching for \\\"Received from IP\\\" and \\\"Destination\\\" fields.": "Aktivieren Sie den RegEx-Abgleich für die Felder \\\"Received from IP\\\" und \\\"Destination\\\".", "Enable regex matching for \\\"Received from IP\\\" and \\\"Destination\\\" fields.": "Aktivieren Sie den RegEx-Abgleich für die Felder \\\"Received from IP\\\" und \\\"Destination\\\".",
"Enable strict mode that requires all mail2fax emails to have the secret key as the very first line of the email + an empty line. The key is removed from the email once matched.": "Aktivieren des strengen Modus, der verlangt, dass alle mail2fax-E-Mails in der ersten Zeile den Geheimschlüssel gefolgt von einer Leerzeile enthalten. Der Schlüssel wird nach dem Abgleich aus der E-Mail entfernt.", "Enable strict mode that requires all mail2fax emails to have the secret key as the very first line of the email + an empty line. The key is removed from the email once matched.": "Aktivieren des strengen Modus, der verlangt, dass alle mail2fax-E-Mails in der ersten Zeile den Geheimschlüssel gefolgt von einer Leerzeile enthalten. Der Schlüssel wird nach dem Abgleich aus der E-Mail entfernt.",
"End time": "Endzeit", "End time": "Endzeit",
"English": "Deutsch", "English": "English",
"Enter a number to dial": "Geben Sie eine Telefonnummer zum Anwählen an", "Enter a number to dial": "Geben Sie eine Telefonnummer zum Anwählen an",
"Entity belongs to admin": "Diese Einheit gehört dem Admin", "Entity belongs to admin": "Diese Einheit gehört dem Admin",
"Expires": "Läuft aus", "Expires": "Läuft aus",
@ -231,7 +230,7 @@
"Forwarding": "Rufumleitung", "Forwarding": "Rufumleitung",
"Fr": "Fr", "Fr": "Fr",
"Free": "Frei", "Free": "Frei",
"French": "Französisch", "French": "Français",
"Friday": "Freitag", "Friday": "Freitag",
"From": "Von", "From": "Von",
"From email": "Absender-E-Mail-Addresse", "From email": "Absender-E-Mail-Addresse",
@ -248,7 +247,6 @@
"Hunt Cancel Mode": "Hunting-Abbrechen Modus", "Hunt Cancel Mode": "Hunting-Abbrechen Modus",
"Hunt Policy": "Hunting-Regel", "Hunt Policy": "Hunting-Regel",
"Hunt Timeout": "Klingeldauer", "Hunt Timeout": "Klingeldauer",
"Hunt timeout": "Klingeldauer",
"Id": "ID", "Id": "ID",
"If busy": "Wenn besetzt", "If busy": "Wenn besetzt",
"If not available": "Wenn nicht verfügbar", "If not available": "Wenn nicht verfügbar",
@ -270,7 +268,7 @@
"Input is required": "Eingabe erforderlich", "Input is required": "Eingabe erforderlich",
"Input must be a valid number": "Eingabe muss eine gültige Nummer sein", "Input must be a valid number": "Eingabe muss eine gültige Nummer sein",
"Interval when the secret key is automatically renewed.": "Zeitraum, nach dem der Geheimschlüssel automatisch erneuert wird.", "Interval when the secret key is automatically renewed.": "Zeitraum, nach dem der Geheimschlüssel automatisch erneuert wird.",
"Italian": "Italienisch", "Italian": "Italiano",
"January": "Januar", "January": "Januar",
"Join conference": "Konferenz beitreten", "Join conference": "Konferenz beitreten",
"Join conference with name": "Konferenz beitreten mit Name", "Join conference with name": "Konferenz beitreten mit Name",
@ -511,7 +509,7 @@
"Something went wrong. Please retry later": "Etwas ist schiefgegangen. Bitte versuchen Sie es später erneut", "Something went wrong. Please retry later": "Etwas ist schiefgegangen. Bitte versuchen Sie es später erneut",
"Sound Set": "Sound-Set", "Sound Set": "Sound-Set",
"Sound Sets": "Sound-Sets", "Sound Sets": "Sound-Sets",
"Spanish": "Spanisch", "Spanish": "Español",
"Speed Dial": "Kurzwahl", "Speed Dial": "Kurzwahl",
"Start and End time should be set": "Start- und Endzeit müssen festgelegt werden", "Start and End time should be set": "Start- und Endzeit müssen festgelegt werden",
"Start new call": "Neuen Anruf starten", "Start new call": "Neuen Anruf starten",
@ -595,7 +593,6 @@
"Wednesday": "Mittwoch", "Wednesday": "Mittwoch",
"Weekly": "Wöchentlich", "Weekly": "Wöchentlich",
"When I dial {slot} ...": "Wenn ich {slot} wähle …", "When I dial {slot} ...": "Wenn ich {slot} wähle …",
"Wrap Up Time": "Nachbearbeitungszeit",
"Wrap up time": "Nachbearbeitungszeit", "Wrap up time": "Nachbearbeitungszeit",
"Wrong username or password": "Falscher Benutzername oder Passwort", "Wrong username or password": "Falscher Benutzername oder Passwort",
"Yesterday": "Gestern", "Yesterday": "Gestern",

@ -60,9 +60,8 @@
"Block List for outbounds calls": "Block List for outbounds calls", "Block List for outbounds calls": "Block List for outbounds calls",
"Block Mode for inbound calls": "Block Mode for inbound calls", "Block Mode for inbound calls": "Block Mode for inbound calls",
"Block Mode for outbounds calls": "Block Mode for outbounds calls", "Block Mode for outbounds calls": "Block Mode for outbounds calls",
"Block Outgoing": "Block Outgoing",
"Block anonymous inbound calls": "Block anonymous inbound calls", "Block anonymous inbound calls": "Block anonymous inbound calls",
"Block outgoing": "Block outgoing", "Block Outgoing": "Block Outgoing",
"Busy Greeting": "Busy Greeting", "Busy Greeting": "Busy Greeting",
"Busy Lamp Field": "Busy Lamp Field", "Busy Lamp Field": "Busy Lamp Field",
"CDR": "CDR", "CDR": "CDR",
@ -227,12 +226,12 @@
"Forwarding": "Forwarding", "Forwarding": "Forwarding",
"Fr": "Fr", "Fr": "Fr",
"Free": "Free", "Free": "Free",
"French": "French", "French": "Français",
"Friday": "Friday", "Friday": "Friday",
"From": "From", "From": "From",
"From email": "From email", "From email": "From email",
"General": "General", "General": "General",
"German": "German", "German": "Deutsch",
"Greet Greeting": "Greet Greeting", "Greet Greeting": "Greet Greeting",
"Group": "Group", "Group": "Group",
"Group Name": "Group Name", "Group Name": "Group Name",
@ -244,7 +243,6 @@
"Hunt Cancel Mode": "Hunt Cancel Mode", "Hunt Cancel Mode": "Hunt Cancel Mode",
"Hunt Policy": "Hunt Policy", "Hunt Policy": "Hunt Policy",
"Hunt Timeout": "Hunt Timeout", "Hunt Timeout": "Hunt Timeout",
"Hunt timeout": "Hunt timeout",
"Id": "Id", "Id": "Id",
"If busy": "If busy", "If busy": "If busy",
"If not available": "If not available", "If not available": "If not available",
@ -266,7 +264,7 @@
"Input is required": "Input is required", "Input is required": "Input is required",
"Input must be a valid number": "Input must be a valid number", "Input must be a valid number": "Input must be a valid number",
"Interval when the secret key is automatically renewed.": "Interval when the secret key is automatically renewed.", "Interval when the secret key is automatically renewed.": "Interval when the secret key is automatically renewed.",
"Italian": "Italian", "Italian": "Italiano",
"January": "January", "January": "January",
"July": "July", "July": "July",
"June": "June", "June": "June",
@ -494,7 +492,7 @@
"Something went wrong. Please retry later": "Something went wrong. Please retry later", "Something went wrong. Please retry later": "Something went wrong. Please retry later",
"Sound Set": "Sound Set", "Sound Set": "Sound Set",
"Sound Sets": "Sound Sets", "Sound Sets": "Sound Sets",
"Spanish": "Spanish", "Spanish": "Español",
"Speed Dial": "Speed Dial", "Speed Dial": "Speed Dial",
"Start and End time should be set": "Start and End time should be set", "Start and End time should be set": "Start and End time should be set",
"Start new call": "Start new call", "Start new call": "Start new call",
@ -576,7 +574,6 @@
"Wednesday": "Wednesday", "Wednesday": "Wednesday",
"Weekly": "Weekly", "Weekly": "Weekly",
"When I dial {slot} ...": "When I dial {slot} ...", "When I dial {slot} ...": "When I dial {slot} ...",
"Wrap Up Time": "Wrap Up Time",
"Wrap up time": "Wrap up time", "Wrap up time": "Wrap up time",
"Wrong username or password": "Wrong username or password", "Wrong username or password": "Wrong username or password",
"Xmpp": "Xmpp", "Xmpp": "Xmpp",

@ -61,9 +61,8 @@
"Block List for outbounds calls": "Block List for outbounds calls", "Block List for outbounds calls": "Block List for outbounds calls",
"Block Mode for inbound calls": "Block Mode for inbound calls", "Block Mode for inbound calls": "Block Mode for inbound calls",
"Block Mode for outbounds calls": "Block Mode for outbounds calls", "Block Mode for outbounds calls": "Block Mode for outbounds calls",
"Block Outgoing": "Bloquear Salientes",
"Block anonymous inbound calls": "Block anonymous inbound calls", "Block anonymous inbound calls": "Block anonymous inbound calls",
"Block outgoing": "Block outgoing", "Block Outgoing": "Bloquear Salientes",
"Busy Greeting": "Saludo de Ocupado", "Busy Greeting": "Saludo de Ocupado",
"Busy Lamp Field": "Campo de lámpara ocupado", "Busy Lamp Field": "Campo de lámpara ocupado",
"CDR": "CDR", "CDR": "CDR",
@ -189,7 +188,7 @@
"Enable regex matching for \\\"Received from IP\\\" and \\\"Destination\\\" fields.": "Enable regex matching for \\\"Received from IP\\\" and \\\"Destination\\\" fields.", "Enable regex matching for \\\"Received from IP\\\" and \\\"Destination\\\" fields.": "Enable regex matching for \\\"Received from IP\\\" and \\\"Destination\\\" fields.",
"Enable strict mode that requires all mail2fax emails to have the secret key as the very first line of the email + an empty line. The key is removed from the email once matched.": "Activar modo estricto requiere que todos los correos electrónicos de Correo a Fax tengan la clave secreta como la primera línea del correo electrónico y una línea vacía. La clave se elimina del correo electrónico una vez que coincide.", "Enable strict mode that requires all mail2fax emails to have the secret key as the very first line of the email + an empty line. The key is removed from the email once matched.": "Activar modo estricto requiere que todos los correos electrónicos de Correo a Fax tengan la clave secreta como la primera línea del correo electrónico y una línea vacía. La clave se elimina del correo electrónico una vez que coincide.",
"End time": "Hora de finalización", "End time": "Hora de finalización",
"English": "Español", "English": "English",
"Enter a number to dial": "Introduzca un número para marcar", "Enter a number to dial": "Introduzca un número para marcar",
"Entity belongs to admin": "Esta entidad pertenece a admin", "Entity belongs to admin": "Esta entidad pertenece a admin",
"Expires": "Expira", "Expires": "Expira",
@ -231,12 +230,12 @@
"Forwarding": "Reenvío", "Forwarding": "Reenvío",
"Fr": "Fr", "Fr": "Fr",
"Free": "Libre", "Free": "Libre",
"French": "Frans", "French": "Français",
"Friday": "Viernes", "Friday": "Viernes",
"From": "De", "From": "De",
"From email": "Del correo electrónico", "From email": "Del correo electrónico",
"General": "General", "General": "General",
"German": "Alemán", "German": "Deutsch",
"Greet Greeting": "Greet Greeting", "Greet Greeting": "Greet Greeting",
"Group": "Grupo", "Group": "Grupo",
"Group Name": "Nombre del grupo", "Group Name": "Nombre del grupo",
@ -248,7 +247,6 @@
"Hunt Cancel Mode": "Hunt Cancel Mode", "Hunt Cancel Mode": "Hunt Cancel Mode",
"Hunt Policy": "Política de búsqueda", "Hunt Policy": "Política de búsqueda",
"Hunt Timeout": "Tiempo de espera de grupo de búsqueda", "Hunt Timeout": "Tiempo de espera de grupo de búsqueda",
"Hunt timeout": "Tiempo de espera de grupo de búsqueda",
"Id": "Identificador", "Id": "Identificador",
"If busy": "Si está ocupado", "If busy": "Si está ocupado",
"If not available": "Si no está disponible", "If not available": "Si no está disponible",
@ -599,7 +597,6 @@
"Wednesday": "Miércoles", "Wednesday": "Miércoles",
"Weekly": "Semanalmente", "Weekly": "Semanalmente",
"When I dial {slot} ...": "Cuando marco {slot} ...", "When I dial {slot} ...": "Cuando marco {slot} ...",
"Wrap Up Time": "Tiempo de cierre",
"Wrap up time": "Tiempo de cierre", "Wrap up time": "Tiempo de cierre",
"Wrong username or password": "Nombre de usuario o contraseña incorrecta", "Wrong username or password": "Nombre de usuario o contraseña incorrecta",
"Yesterday": "Ayer", "Yesterday": "Ayer",

@ -61,9 +61,8 @@
"Block List for outbounds calls": "Liste de blocage pour les appels sortants", "Block List for outbounds calls": "Liste de blocage pour les appels sortants",
"Block Mode for inbound calls": "Mode blocage pour les appels entrants", "Block Mode for inbound calls": "Mode blocage pour les appels entrants",
"Block Mode for outbounds calls": "Mode blocage pour les appels sortants", "Block Mode for outbounds calls": "Mode blocage pour les appels sortants",
"Block Outgoing": "Bloquer les sortants",
"Block anonymous inbound calls": "Bloquer les appels entrants anonymes", "Block anonymous inbound calls": "Bloquer les appels entrants anonymes",
"Block outgoing": "Block outgoing", "Block Outgoing": "Bloquer les Sortants",
"Busy Greeting": "Message d'accueil en cas d'occupation", "Busy Greeting": "Message d'accueil en cas d'occupation",
"Busy Lamp Field": "Champ de la lampe occupée", "Busy Lamp Field": "Champ de la lampe occupée",
"CDR": "CDR", "CDR": "CDR",
@ -189,7 +188,7 @@
"Enable regex matching for \\\"Received from IP\\\" and \\\"Destination\\\" fields.": "Enable regex matching for \\\"Received from IP\\\" and \\\"Destination\\\" fields.", "Enable regex matching for \\\"Received from IP\\\" and \\\"Destination\\\" fields.": "Enable regex matching for \\\"Received from IP\\\" and \\\"Destination\\\" fields.",
"Enable strict mode that requires all mail2fax emails to have the secret key as the very first line of the email + an empty line. The key is removed from the email once matched.": "Activez le mode strict qui exige que tous les e-mails de mail2fax aient la clé secrète comme toute première ligne de l'e-mail + une ligne vide. La clé est supprimée de l'e-mail une fois qu'elle a été trouvée.", "Enable strict mode that requires all mail2fax emails to have the secret key as the very first line of the email + an empty line. The key is removed from the email once matched.": "Activez le mode strict qui exige que tous les e-mails de mail2fax aient la clé secrète comme toute première ligne de l'e-mail + une ligne vide. La clé est supprimée de l'e-mail une fois qu'elle a été trouvée.",
"End time": "Date de fin", "End time": "Date de fin",
"English": "Anglais", "English": "English",
"Enter a number to dial": "Enter a number to dial", "Enter a number to dial": "Enter a number to dial",
"Entity belongs to admin": "Cette entité appartient à ladministrateur", "Entity belongs to admin": "Cette entité appartient à ladministrateur",
"Expires": "Expire", "Expires": "Expire",
@ -236,7 +235,7 @@
"From": "De", "From": "De",
"From email": "De l'e-mail", "From email": "De l'e-mail",
"General": "Général", "General": "Général",
"German": "Allemand", "German": "Deutsch",
"Greet Greeting": "Greet Greeting", "Greet Greeting": "Greet Greeting",
"Group": "Groupe", "Group": "Groupe",
"Group Name": "Nom du groupe", "Group Name": "Nom du groupe",
@ -248,7 +247,6 @@
"Hunt Cancel Mode": "Hunt Cancel Mode", "Hunt Cancel Mode": "Hunt Cancel Mode",
"Hunt Policy": "Règlages des groupements d'appels", "Hunt Policy": "Règlages des groupements d'appels",
"Hunt Timeout": "Temporisation des groupements dappels", "Hunt Timeout": "Temporisation des groupements dappels",
"Hunt timeout": "Temporisation des groupements dappels",
"Id": "Id", "Id": "Id",
"If busy": "Si occupé", "If busy": "Si occupé",
"If not available": "Si non disponible", "If not available": "Si non disponible",
@ -270,7 +268,7 @@
"Input is required": "Le champ est obligatoire", "Input is required": "Le champ est obligatoire",
"Input must be a valid number": "Le champ doit être un nombre valide", "Input must be a valid number": "Le champ doit être un nombre valide",
"Interval when the secret key is automatically renewed.": "Intervalle où la clé secrète est automatiquement renouvelée.", "Interval when the secret key is automatically renewed.": "Intervalle où la clé secrète est automatiquement renouvelée.",
"Italian": "Italien", "Italian": "Italiano",
"January": "Janvier", "January": "Janvier",
"Join conference": "Rejoindre la conférence", "Join conference": "Rejoindre la conférence",
"Join conference with name": "Rejoindre la conférence avec le nom", "Join conference with name": "Rejoindre la conférence avec le nom",
@ -511,7 +509,7 @@
"Something went wrong. Please retry later": "Un problème est survenu. Veuillez réessayer plus tard", "Something went wrong. Please retry later": "Un problème est survenu. Veuillez réessayer plus tard",
"Sound Set": "Ensemble de sons", "Sound Set": "Ensemble de sons",
"Sound Sets": "Ensembles de sons", "Sound Sets": "Ensembles de sons",
"Spanish": "Espagnol", "Spanish": "Español",
"Speed Dial": "Numérotation abrégée", "Speed Dial": "Numérotation abrégée",
"Start and End time should be set": "Les heures de début et de fin doivent être définies", "Start and End time should be set": "Les heures de début et de fin doivent être définies",
"Start new call": "Démarrer un nouvel appel", "Start new call": "Démarrer un nouvel appel",
@ -595,7 +593,6 @@
"Wednesday": "Mercredi", "Wednesday": "Mercredi",
"Weekly": "Hebdomadaire", "Weekly": "Hebdomadaire",
"When I dial {slot} ...": "Lorsque je compose {slot}...", "When I dial {slot} ...": "Lorsque je compose {slot}...",
"Wrap Up Time": "Délai inter-appel",
"Wrap up time": "Temps de conclusion", "Wrap up time": "Temps de conclusion",
"Wrong username or password": "Identifiant ou mot de passe incorrect", "Wrong username or password": "Identifiant ou mot de passe incorrect",
"Yesterday": "Hier", "Yesterday": "Hier",

@ -1,10 +1,10 @@
{ {
"<{destination}> as {filetype}": "<{destination}> as {filetype}", "<{destination}> as {filetype}": "<{destination}> come {filetype}",
""Music on Hold" - if set to true and a music on hold file is provided, a calling party gets that file played when put on hold": ""Music on Hold" - if set to true and a music on hold file is provided, a calling party gets that file played when put on hold", ""Music on Hold" - if set to true and a music on hold file is provided, a calling party gets that file played when put on hold": ""Musica di attesa" - se attivato e se una musica di attesa e' stata caricata, il chiamate ascoltera' la musica quando viene messo in attesa",
"(empty)": "(empty)", "(empty)": "(vuoto)",
"404 Not Found": "404 Not Found", "404 Not Found": "404 Non trovato",
"ACL": "Restrizioni dell'accesso", "ACL": "Restrizioni dell'accesso",
"Accepted email address to allow mail2fax transmission.": "Accepted email address to allow mail2fax transmission.", "Accepted email address to allow mail2fax transmission.": "Indirizzo email accettato per consentire la trasmissione mail2fax.",
"Active": "Attivo", "Active": "Attivo",
"Add": "Aggiungi", "Add": "Aggiungi",
"Add ACL": "Aggiungi ACL", "Add ACL": "Aggiungi ACL",
@ -22,99 +22,98 @@
"Add number": "Aggiungi numero", "Add number": "Aggiungi numero",
"Add slot": "Aggiungi slot", "Add slot": "Aggiungi slot",
"Add time range": "Aggiungi intervallo di tempo", "Add time range": "Aggiungi intervallo di tempo",
"Added group {group}": "Aggiunto gruppo {group}", "Added group {group}": "Gruppo aggiunto {group}",
"Added seat {seat}": "Aggiunta postazione {seat}", "Added seat {seat}": "Postazione aggiunta {seat}",
"Admin name": "Nome dell'amministratore", "Admin name": "Nome dell'amministratore",
"Admin password": "Password amministratore", "Admin password": "Password amministratore",
"After": "After", "After": "Dopo",
"After Ring Timeout": "Timeout dopo lo squillo", "After Ring Timeout": "Timeout dopo lo squillo",
"Alias Number": "Numero Alias", "Alias Number": "Numero Alias",
"Alias Numbers": "Numeri Alias", "Alias Numbers": "Numeri Alias",
"All": "Tutto", "All": "Tutto",
"All anonymous incoming calls are blocked": "Tutte le chiamate anonime in ingresso vengono bloccate", "All anonymous incoming calls are blocked": "Tutte le chiamate anonime in ingresso vengono bloccate",
"All available speed dial slots have already been assigned. Please delete one first.": "Tutte gli slot disponibili per le chiamate rapide sono stati assegnato. Occorre prima cancellarne uno.", "All available speed dial slots have already been assigned. Please delete one first.": "Tutti gli slot disponibili per le chiamate rapide sono stati assegnati. Occorre prima cancellarne uno.",
"All incoming calls from listed numbers are blocked": "Tutte le chiamate provenienti dai numeri elencati vengono bloccate", "All incoming calls from listed numbers are blocked": "Tutte le chiamate provenienti dai numeri elencati vengono bloccate",
"All listed numbers are allowed": "Tutti i numeri elencati sono autorizzati", "All listed numbers are allowed": "Tutti i numeri elencati sono autorizzati",
"All listed numbers are blocked": "Tutte i numeri elencati sono bloccati", "All listed numbers are blocked": "Tutti i numeri elencati sono bloccati",
"All outgoing calls to listed numbers are blocked": "Tutte le chiamate verso i numeri elencati sono bloccate", "All outgoing calls to listed numbers are blocked": "Tutte le chiamate verso i numeri elencati sono bloccate",
"Allocated by {type} {name}": "Assegnato da {type} {name}", "Allocated by {type} {name}": "Assegnato da {type} {name}",
"Allow mail2fax destination only to this number.": "Allow mail2fax destination only to this number.", "Allow mail2fax destination only to this number.": "Consenti la destinazione mail2fax solo a questo numero.",
"Allow mail2fax emails only to this IP (the IP or hostname is present in the \\\"Received\\\" header).": "Allow mail2fax emails only to this IP (the IP or hostname is present in the \\\"Received\\\" header).", "Allow mail2fax emails only to this IP (the IP or hostname is present in the \\\"Received\\\" header).": "Consenti email mail2fax solo da questo IP (l'IP o il nome host è presente nell'intestazione \\\"Received\\\").",
"Allowed extensions are between {min} and {max}": "Allowed extensions are between {min} and {max}", "Allowed extensions are between {min} and {max}": "Le estensioni consentite sono tra {min} e {max}",
"Always": "Sempre", "Always": "Sempre",
"An error occured while trying to assign the speed dial slot. Please try again": "Si è verificato un errore durante l'assegnazione dello slot di chiamata rapida. Si prega di riprovare", "An error occured while trying to assign the speed dial slot. Please try again": "Si è verificato un errore durante l'assegnazione dello slot di chiamata rapida. Si prega di riprovare",
"An error occured while trying to load the speed dials. Please try again": "Si è verificato un errore durante il caricamento delle chiamate rapide. Si prega di riprovare", "An error occured while trying to load the speed dials. Please try again": "Si è verificato un errore durante il caricamento delle chiamate rapide. Si prega di riprovare",
"An error occured while trying to send the fax. Please try again": "Si è verificato un errore durante l'invio del fax. Si prega di riprovare", "An error occured while trying to send the fax. Please try again": "Si è verificato un errore durante l'invio del fax. Si prega di riprovare",
"An error occured while trying to unassign the speed dial slot. Please try again": "Si è verificato un errore nella cancellazione della selezione rapida. Si prega di riprovare", "An error occured while trying to unassign the speed dial slot. Please try again": "Si è verificato un errore nella cancellazione della selezione rapida. Si prega di riprovare",
"An error occurred:": "Si è verificato un errore:", "An error occurred:": "Si è verificato un errore:",
"Apps": "Apps", "Apps": "App",
"April": "Aprile", "April": "Aprile",
"Assigned slot {slot}": "Slot assegnato: {slot}", "Assigned slot {slot}": "Slot assegnato {slot}",
"Attach voicemail to email notification": "Allega messaggio vocale all'email di notifica", "Attach voicemail to email notification": "Allega messaggio vocale all'email di notifica",
"August": "Agosto", "August": "Agosto",
"Auto Attendant": "Risponditore Automatico", "Auto Attendant": "Risponditore Automatico",
"Block Incoming": "Blocca chiamate entranti", "Block Incoming": "Blocca Chiamate in Entrata",
"Block Incoming/Outgoing": "Blocca chiamate in entrata/uscita", "Block Incoming/Outgoing": "Blocca chiamate in entrata/uscita",
"Block List for inbound calls": "Lista numeri bloccati in entrata", "Block List for inbound calls": "Lista numeri bloccati in entrata",
"Block List for outbounds calls": "Lista numeri bloccati in uscita", "Block List for outbounds calls": "Lista numeri bloccati in uscita",
"Block Mode for inbound calls": "Modalità di blocco per le chiamate in entrata", "Block Mode for inbound calls": "Modalità di blocco per le chiamate in entrata",
"Block Mode for outbounds calls": "Modalità di blocco per le chiamate in uscita", "Block Mode for outbounds calls": "Modalità di blocco per le chiamate in uscita",
"Block Outgoing": "Blocca chiamate in uscita",
"Block anonymous inbound calls": "Blocca chiamate anonime in entrata", "Block anonymous inbound calls": "Blocca chiamate anonime in entrata",
"Block outgoing": "Block outgoing", "Block Outgoing": "Blocca Chiamate in Uscita",
"Busy Greeting": "Messaggio per numero occupato", "Busy Greeting": "Messaggio per numero occupato",
"Busy Lamp Field": "Busy Lamp Field", "Busy Lamp Field": "Busy Lamp Field",
"CDR": "CDR", "CDR": "CDR",
"CLI": "CLI", "CLI": "CLI",
"CSTA Client": "Cliente del CSTA", "CSTA Client": "Cliente del CSTA",
"CSTA Controller": "CSTA Controller", "CSTA Controller": "Controllore CSTA",
"Call": "Chiama", "Call": "Chiamata",
"Call Blocking": "Blocco chiamate", "Call Blocking": "Blocco chiamate",
"Call Forwarding": "Inoltro di chiamata", "Call Forwarding": "Inoltro di chiamata",
"Call Forwards": "Call Forwards", "Call Forwards": "Inoltri di chiamata",
"Call List": "Elenco chiamate", "Call List": "Elenco chiamate",
"Call Queue": "Coda chiamate", "Call Queue": "Coda chiamate",
"Call Queue feature": "Call Queue feature", "Call Queue feature": "Funzionalità coda chiamate",
"Call Queues": "Code chiamate", "Call Queues": "Code chiamate",
"Call Settings": "Configurazioni Chiamata", "Call Settings": "Impostazioni chiamata",
"Call Through": "Call Through", "Call Through": "Chiamata passante",
"Call back": "Richiama", "Call back": "Richiama",
"Call ended": "Chiamata terminata", "Call ended": "Chiamata terminata",
"Call forwarded": "Chiamata inoltrata", "Call forwarded": "Chiamata inoltrata",
"Call holded": "Chiamata trattenuta", "Call holded": "Chiamata in attesa",
"Call recordings": "Call recordings", "Call recordings": "Registrazioni chiamate",
"CallID": "CallID", "CallID": "CallID",
"Callee": "Chiamato", "Callee": "Chiamato",
"Caller": "Chiamante", "Caller": "Chiamante",
"Calling": "Chiamata in corso", "Calling": "Chiamata in corso",
"Calling Card": "Calling Card", "Calling Card": "Scheda telefonica",
"Calling {number}...": "Stai chiamando {number}...", "Calling {number}...": "Chiamata in corso a {number}...",
"Calls": "Chiamate", "Calls": "Chiamate",
"Calls, Faxes, VoiceMails": "Chiamate, fax, messaggi vocali", "Calls, Faxes, VoiceMails": "Chiamate, Fax, Messaggi Vocali",
"Cancel": "Annulla", "Cancel": "Annulla",
"Cancel Mode": "Cancel Mode", "Cancel Mode": "Cancel Mode",
"Cdr": "Cdr", "Cdr": "Cdr",
"Change Email": "Modifica email", "Change Email": "Cambia email",
"Change PIN": "Modifica PIN", "Change PIN": "Cambia PIN",
"Change Password": "Modifica password", "Change Password": "Cambia password",
"Change SIP Password": "Modifica SIP Password", "Change SIP Password": "Cambia password SIP",
"Change Web Password": "Modifica Web Password", "Change Web Password": "Cambia password web",
"Change login password": "Modifica password di accesso", "Change login password": "Cambia password di accesso",
"Change password": "Modifica password", "Change password": "Cambia password",
"Changed PIN successfully.": "PIN modificato.", "Changed PIN successfully.": "PIN cambiato con successo.",
"Changed email successfully": "Email modificata", "Changed email successfully": "Email cambiata con successo",
"Changed {field} successfully": "{field} modificato", "Changed {field} successfully": "{field} cambiato con successo",
"Circular Ringing": "Squillo a rotazione", "Circular Ringing": "Squillo circolare",
"Close": "Chiudi", "Close": "Chiudi",
"Close filters": "Chiudi filtri", "Close filters": "Chiudi filtri",
"Conference": "Conference", "Conference": "Conferenza",
"Conference name": "Nome conferenza", "Conference name": "Nome conferenza",
"Confirm": "Conferma", "Confirm": "Conferma",
"Contact": "Contatto", "Contact": "Contatto",
"Contact your administrator to activate this functionality": "Contatta l'amministratore per attivare questa funzionalità", "Contact your administrator to activate this functionality": "Contatta l'amministratore per attivare questa funzionalità",
"Content": "Contenuto", "Content": "Contenuto",
"Conversations": "Conversazioni", "Conversations": "Conversazioni",
"Copy link": "Copia il link", "Copy link": "Copia link",
"Cost": "Costo", "Cost": "Costo",
"Could not enable incoming call notifications.": "Impossibile abilitare le notifiche per le chiamate in ingresso.", "Could not enable incoming call notifications.": "Impossibile abilitare le notifiche per le chiamate in ingresso.",
"Could not find any device matching any of the filter criteria": "Nessun dispositivo trovato che corrisponda ai criteri di filtro selezionati", "Could not find any device matching any of the filter criteria": "Nessun dispositivo trovato che corrisponda ai criteri di filtro selezionati",
@ -122,25 +121,25 @@
"Create ACL": "Crea ACL", "Create ACL": "Crea ACL",
"Create Call Queue": "Crea coda chiamate", "Create Call Queue": "Crea coda chiamate",
"Create Config": "Crea configurazione", "Create Config": "Crea configurazione",
"Create List": "Crea lista", "Create List": "Crea elenco",
"Create New Password": "Create New Password", "Create New Password": "Crea nuova password",
"Create destination": "Crea destinazione", "Create destination": "Crea destinazione",
"Create device": "Crea dispositivo", "Create device": "Crea dispositivo",
"Create group": "Crea gruppo", "Create group": "Crea gruppo",
"Create seat": "Crea postazione", "Create seat": "Crea postazione",
"Create sound set": "Crea set di suoni", "Create sound set": "Crea set audio",
"Created call queue for {callQueue} successfully": "Coda chiamate per {callQueue} creata correttamente", "Created call queue for {callQueue} successfully": "Coda chiamate per {callQueue} creata con successo",
"Created device {device} successfully": "Dispositivo {device} creato correttamente", "Created device {device} successfully": "Dispositivo {device} creato con successo",
"Created manager secretary config for {msConfig} successfully": "Configurazione segreteria per {msConfig} creata correttamente", "Created manager secretary config for {msConfig} successfully": "Configurazione segreteria manager per {msConfig} creata con successo",
"Created sound set {soundSet} successfully": "Set di messaggi audio {soundSet} creato correttamente", "Created sound set {soundSet} successfully": "Set audio {soundSet} creato con successo",
"Current Password": "Password Corrente", "Current Password": "Password attuale",
"Custom Announcement": "Annuncio Personalizzato", "Custom Announcement": "Annuncio personalizzato",
"Custom Announcements": "Annunci Personalizzati", "Custom Announcements": "Annunci personalizzati",
"Custom sound": "Audio personalizzato", "Custom sound": "Audio personalizzato",
"Custom time set": "Intervallo di tempo personalizzato", "Custom time set": "Intervallo di tempo personalizzato",
"Customer Details": "Dettagli cliente", "Customer Details": "Dettagli cliente",
"Customer Phonebook": "Rubrica cliente", "Customer Phonebook": "Rubrica cliente",
"Customer Preferences": "Customer Preferences", "Customer Preferences": "Preferenze cliente",
"Daily": "Giornaliero", "Daily": "Giornaliero",
"Dashboard": "Dashboard", "Dashboard": "Dashboard",
"Data is in the clipboard": "I dati sono negli appunti", "Data is in the clipboard": "I dati sono negli appunti",
@ -148,50 +147,50 @@
"December": "Dicembre", "December": "Dicembre",
"Default": "Predefinito", "Default": "Predefinito",
"Default sound": "Audio predefinito", "Default sound": "Audio predefinito",
"Default sound set for all seats and groups": "Set di suoni predefinito per tutte le postazioni e i gruppi", "Default sound set for all seats and groups": "Set audio predefinito per tutte le postazioni e i gruppi",
"Delete": "Elimina", "Delete": "Elimina",
"Delete customer phonebook": "Elimina rubrica", "Delete customer phonebook": "Elimina rubrica cliente",
"Delete destination": "Elimina destination", "Delete destination": "Elimina destinazione",
"Delete forwarding": "Elimina inoltro", "Delete forwarding": "Elimina inoltro",
"Delete recording": "Elimina recording", "Delete recording": "Elimina registrazione",
"Delete registered device": "Elimina il dispositivo registrato", "Delete registered device": "Elimina dispositivo registrato",
"Delete slot?": "Eliminare slot?", "Delete slot?": "Eliminare slot?",
"Delete subscriber phonebook": "Elimina la rubrica dell'abbonato", "Delete subscriber phonebook": "Elimina rubrica abbonato",
"Delete voicemail after email notification is delivered": "Cancella il messaggio vocale dopo che l'email di notifica è stata inviata", "Delete voicemail after email notification is delivered": "Cancella il messaggio vocale dopo l'invio della notifica email",
"Deliver Incoming Faxes": "Consegna dei fax in arrivo", "Deliver Incoming Faxes": "Consegna fax in arrivo",
"Deliver Outgoing Faxes": "Consegna dei fax in uscita", "Deliver Outgoing Faxes": "Consegna fax in uscita",
"Description": "Descrizione", "Description": "Descrizione",
"Destination": "Destinazione", "Destination": "Destinazione",
"Destination Email": "Email di destinazione", "Destination Email": "Email di destinazione",
"Destination Number": "Numero di destinazione", "Destination Number": "Numero di destinazione",
"Destination email to send the secret key renew notification to.": "E-mail di destinazione a cui inviare la notifica di rinnovo della chiave segreta.", "Destination email to send the secret key renew notification to.": "Email di destinazione a cui inviare la notifica di rinnovo della chiave segreta.",
"Destination must not be empty": "La destinazione non può essere vuota", "Destination must not be empty": "La destinazione non può essere vuota",
"Destinations": "Destinazioni", "Destinations": "Destinazioni",
"Devices": "Dispositivi", "Devices": "Dispositivi",
"Direction": "Direction", "Direction": "Direzione",
"Disable": "Disabilita", "Disable": "Disabilita",
"Disable phone web interface": "Disabilitare l'interfaccia web del telefono", "Disable phone web interface": "Disabilita interfaccia web del telefono",
"Display Name": "Display Name", "Display Name": "Nome visualizzato",
"Do not ring primary number": "Do not ring primary number", "Do not ring primary number": "Non squillare sul numero principale",
"Download CSV": "Scarica CSV", "Download CSV": "Scarica CSV",
"Download fax": "Scarica fax", "Download fax": "Scarica fax",
"Download voicemail": "Scarica messaggio vocale", "Download voicemail": "Scarica messaggio vocale",
"Duration": "Durata", "Duration": "Durata",
"ECM": "ECM", "ECM": "ECM",
"Edit": "Modifica", "Edit": "Modifica",
"Edit List": "Modifica Lista", "Edit List": "Modifica elenco",
"Email": "Email", "Email": "Email",
"Enable": "Abilita", "Enable": "Abilita",
"Enable regex matching for "Received from IP" and "Destination" fields.": "Enable regex matching for "Received from IP" and "Destination" fields.", "Enable regex matching for "Received from IP" and "Destination" fields.": "Abilita corrispondenza regex per i campi "Received from IP" e "Destination".",
"Enable regex matching for \\\"Received from IP\\\" and \\\"Destination\\\" fields.": "Enable regex matching for \\\"Received from IP\\\" and \\\"Destination\\\" fields.", "Enable regex matching for \\\"Received from IP\\\" and \\\"Destination\\\" fields.": "Abilita corrispondenza regex per i campi \\\"Received from IP\\\" e \\\"Destination\\\".",
"Enable strict mode that requires all mail2fax emails to have the secret key as the very first line of the email + an empty line. The key is removed from the email once matched.": "Enable strict mode that requires all mail2fax emails to have the secret key as the very first line of the email + an empty line. The key is removed from the email once matched.", "Enable strict mode that requires all mail2fax emails to have the secret key as the very first line of the email + an empty line. The key is removed from the email once matched.": "Abilita la modalità rigorosa che richiede che tutte le email mail2fax contengano la chiave segreta come prima riga + una riga vuota. La chiave viene rimossa una volta riconosciuta.",
"End time": "End time", "End time": "Orario di fine",
"English": "Italiano", "English": "English",
"Enter a number to dial": "Inserisci un numero per chiamare", "Enter a number to dial": "Inserisci un numero da chiamare",
"Entity belongs to admin": "Questa entità appartiene ad admin", "Entity belongs to admin": "L'entità appartiene all'amministratore",
"Expires": "Scade", "Expires": "Scade",
"Extension": "Interno", "Extension": "Interno",
"Extension Settings": "Impostazioni dell'Estensione", "Extension Settings": "Impostazioni interno",
"Fax": "Fax", "Fax": "Fax",
"Fax Settings": "Imposazioni Fax", "Fax Settings": "Imposazioni Fax",
"Fax to mail and sendfax": "Fax to mail and sendfax", "Fax to mail and sendfax": "Fax to mail and sendfax",
@ -209,8 +208,8 @@
"Folder : ": "Folder : ", "Folder : ": "Folder : ",
"Force CLI": "Forza CLI", "Force CLI": "Forza CLI",
"Forgot password?": "Password dimenticata?", "Forgot password?": "Password dimenticata?",
"Format": "Format", "Format": "Formato",
"Forward": "Forward", "Forward": "Inoltra",
"Forward call after this timeout (applies only when user is available).": "Inoltra la chiamata dopo questo timeout (si applica solo se l'utente è disponibile).", "Forward call after this timeout (applies only when user is available).": "Inoltra la chiamata dopo questo timeout (si applica solo se l'utente è disponibile).",
"Forward to Auto Attendant": "Inoltra all'Operatore Automatico", "Forward to Auto Attendant": "Inoltra all'Operatore Automatico",
"Forward to Call Through": "Inoltra al Call Through", "Forward to Call Through": "Inoltra al Call Through",
@ -227,12 +226,12 @@
"Forwarding": "Forwarding", "Forwarding": "Forwarding",
"Fr": "Fr", "Fr": "Fr",
"Free": "Libero", "Free": "Libero",
"French": "Francese", "French": "Français",
"Friday": "Venerdì", "Friday": "Venerdì",
"From": "Da", "From": "Da",
"From email": "From email", "From email": "Da email",
"General": "General", "General": "General",
"German": "Tedesco", "German": "Deutsch",
"Greet Greeting": "Greet Greeting", "Greet Greeting": "Greet Greeting",
"Group": "Gruppo", "Group": "Gruppo",
"Group Name": "Nome del gruppo", "Group Name": "Nome del gruppo",
@ -240,8 +239,8 @@
"Groups": "Gruppi", "Groups": "Gruppi",
"Hide number to the callee within own PBX": "Nascondi il numero al destinatario all'interno della propria PBX", "Hide number to the callee within own PBX": "Nascondi il numero al destinatario all'interno della propria PBX",
"Hide number within own PBX": "Nascondere il numero all'interno della propria PBX", "Hide number within own PBX": "Nascondere il numero all'interno della propria PBX",
"Hide your number to the callee": "Hide your number to the callee", "Hide your number to the callee": "Nascondi il tuo numero al destinatario",
"Hunt Cancel Mode": "Hunt Cancel Mode", "Hunt Cancel Mode": "Modalità di annullamento ricerca",
"Hunt Policy": "Modalità di ricerca", "Hunt Policy": "Modalità di ricerca",
"Hunt Timeout": "Timeout ricerca", "Hunt Timeout": "Timeout ricerca",
"Hunt timeout": "Timeout ricerca", "Hunt timeout": "Timeout ricerca",
@ -265,8 +264,8 @@
"Input a valid phone number": "Inserire un numero di telefono valido", "Input a valid phone number": "Inserire un numero di telefono valido",
"Input is required": "Il campo è obbligatorio", "Input is required": "Il campo è obbligatorio",
"Input must be a valid number": "Il campo deve essere un numero valido", "Input must be a valid number": "Il campo deve essere un numero valido",
"Interval when the secret key is automatically renewed.": "Interval when the secret key is automatically renewed.", "Interval when the secret key is automatically renewed.": "Intervallo di rinnovo automatico della chiave segreta.",
"Italian": "Italian", "Italian": "Italiano",
"January": "Gennaio", "January": "Gennaio",
"Join conference with name": "Partecipa alla conferenza con nome", "Join conference with name": "Partecipa alla conferenza con nome",
"July": "Luglio", "July": "Luglio",
@ -274,46 +273,46 @@
"Lamp/Key": "Lampada/Tasto", "Lamp/Key": "Lampada/Tasto",
"Lamps/Keys": "Lampade/Tasti", "Lamps/Keys": "Lampade/Tasti",
"Language": "Lingua", "Language": "Lingua",
"Language changed successfully": "Language changed successfully", "Language changed successfully": "Lingua cambiata con successo",
"Language for voicemail and app server": "Lingua per casella vocale e per application server", "Language for voicemail and app server": "Lingua per casella vocale e application server",
"Last Modify Time": "Last Modify Time", "Last Modify Time": "Ultima modifica",
"Leave conference": "Esci dalla conferenza", "Leave conference": "Esci dalla conferenza",
"Leave current conference now!": "Esci subito dalla conferenza!", "Leave current conference now!": "Esci subito dalla conferenza!",
"List of registered devices for the subscriber": "List of registered devices for the subscriber", "List of registered devices for the subscriber": "Elenco dei dispositivi registrati per labbonato",
"Local Subscriber": "Local Subscriber", "Local Subscriber": "Abbonato locale",
"Login": "Accesso", "Login": "Accesso",
"Logout": "Esci", "Logout": "Esci",
"Loop": "Loop", "Loop": "Ciclo",
"MAC address": "Indirizzo MAC", "MAC address": "Indirizzo MAC",
"Mail To Fax feature is not active": "La funzione Mail To Fax non è attiva", "Mail To Fax feature is not active": "La funzione Mail To Fax non è attiva",
"Mail to Fax": "Mail to Fax", "Mail to Fax": "Mail to Fax",
"Manager Secretary": "Segreteria", "Manager Secretary": "Segreteria",
"Manager Secretary feature": "Manager Secretary feature", "Manager Secretary feature": "Funzione Segreteria",
"March": "Marzo", "March": "Marzo",
"Maximum allowed extension is {max}": "Maximum allowed extension is {max}", "Maximum allowed extension is {max}": "L'interno massimo consentito è {max}",
"Maximum calls in queue": "Numero massimo di chiamate in coda", "Maximum calls in queue": "Numero massimo di chiamate in coda",
"May": "Maggio", "May": "Maggio",
"Me": "Me", "Me": "Me",
"Messages": "Messages", "Messages": "Messaggi",
"Minimum allowed extension is {min}": "Minimum allowed extension is {min}", "Minimum allowed extension is {min}": "L'interno minimo consentito è {min}",
"Mo": "Mo", "Mo": "Lu",
"Monday": "Lunedì", "Monday": "Lunedì",
"Monthly": "Monthly", "Monthly": "Mensile",
"Music on Hold": "Musica di attesa", "Music on Hold": "Musica di attesa",
"MyNumberList": "MyNumberList", "MyNumberList": "LaMiaListaNumeri",
"N/A": "N/A", "N/A": "N/A",
"Name": "Nome", "Name": "Nome",
"Name in Fax Header for Sendfax": "Nome nell'intestazione Fax per Sendfax", "Name in Fax Header for Sendfax": "Nome nell'intestazione Fax per Sendfax",
"Ncos": "Ncos", "Ncos": "Ncos",
"Ncos Set": "Ncos Set", "Ncos Set": "Set Ncos",
"Never": "Never", "Never": "Mai",
"New Messages": "Nuovi messaggi", "New Messages": "Nuovi messaggi",
"New Password": "New Password", "New Password": "Nuova password",
"New SIP Password": "New SIP Password", "New SIP Password": "Nuova password SIP",
"New SIP Password confirm": "New SIP Password confirm", "New SIP Password confirm": "Conferma nuova password SIP",
"New Web Password": "New Web Password", "New Web Password": "Nuova password Web",
"New Web Password confirm": "New Web Password confirm", "New Web Password confirm": "Conferma nuova password Web",
"New features": "New features", "New features": "Nuove funzionalità",
"New password": "Nuova password", "New password": "Nuova password",
"New password retyped": "Ripeti la nuova password", "New password retyped": "Ripeti la nuova password",
"No Calls found": "Non è stata trovata alcuna chiamata", "No Calls found": "Non è stata trovata alcuna chiamata",
@ -321,307 +320,306 @@
"No Faxes found": "Non è stato trovato alcun fax", "No Faxes found": "Non è stato trovato alcun fax",
"No Voicemails found": "Non è stato trovato alcun messaggio vocale", "No Voicemails found": "Non è stato trovato alcun messaggio vocale",
"No call queues created yet": "Non sono ancora state create code di chiamate", "No call queues created yet": "Non sono ancora state create code di chiamate",
"No calls": "No calls", "No calls": "Nessuna chiamata",
"No calls yet": "Ancora nessuna chiamata", "No calls yet": "Ancora nessuna chiamata",
"No data found": "No data found", "No data found": "Nessun dato trovato",
"No data to save. Please provide at least one time range.": "No data to save. Please provide at least one time range.", "No data to save. Please provide at least one time range.": "Nessun dato da salvare. Si prega di fornire almeno un intervallo di tempo.",
"No destinations created yet": "No destinations created yet", "No destinations created yet": "Nessuna destinazione creata",
"No devices created yet": "Non è stato ancora creato alcun dispositivo", "No devices created yet": "Non è stato ancora creato alcun dispositivo",
"No devices registered": "Nessun dispositivo registrato", "No devices registered": "Nessun dispositivo registrato",
"No file": "No file", "No file": "Nessun file",
"No groups": "Nessun gruppo", "No groups": "Nessun gruppo",
"No groups created yet": "Non è stato ancora creato alcun gruppo", "No groups created yet": "Non è stato ancora creato alcun gruppo",
"No manager secretary configuration created yet": "Non è ancora stata creata alcuna configurazione di segreteria", "No manager secretary configuration created yet": "Non è ancora stata creata alcuna configurazione di segreteria",
"No messages": "No messages", "No messages": "Nessun messaggio",
"No microphone authorized.": "No microphone authorized.", "No microphone authorized.": "Nessun microfono autorizzato.",
"No new messages": "Nessun nuovo messaggio", "No new messages": "Nessun nuovo messaggio",
"No numbers assigned": "Nessuno numero assegnato", "No numbers assigned": "Nessun numero assegnato",
"No numbers found": "Nessun numero trovato", "No numbers found": "Nessun numero trovato",
"No parents assigned": "No parents assigned", "No parents assigned": "Nessun parente assegnato",
"No seats": "Nessuna postazione", "No seats": "Nessuna postazione",
"No seats created yet": "Nessuna postazione creata", "No seats created yet": "Nessuna postazione creata",
"No sound sets created yet": "Non è stato creato alcun set di suoni", "No sound sets created yet": "Non è stato creato alcun set di suoni",
"No speed dials found": "Nessuna impostazione di chiamata rapida", "No speed dials found": "Nessuna impostazione di chiamata rapida",
"Normal": "Normale", "Normal": "Normale",
"Not modified yet": "Not modified yet", "Not modified yet": "Non ancora modificato",
"November": "Novembre", "November": "Novembre",
"Number": "Numero", "Number": "Numero",
"Number list": "Number list", "Number list": "Lista numeri",
"Number list name": "Number list name", "Number list name": "Nome della lista numeri",
"Numbers": "Numeri", "Numbers": "Numeri",
"October": "Ottobre", "October": "Ottobre",
"Office Hours Announcement": "Annuncio degli Orari di Ufficio", "Office Hours Announcement": "Annuncio degli Orari di Ufficio",
"On weekdays": "Nei giorni feriali", "On weekdays": "Nei giorni feriali",
"Only incoming calls from listed numbers are allowed": "Solo ammesse solo chiamate dai numeri in elenco", "Only incoming calls from listed numbers are allowed": "Sono ammesse solo le chiamate in ingresso dai numeri elencati",
"Only none decimal numbers are allowed": "Sono ammessi solo numeri non decimali", "Only none decimal numbers are allowed": "Sono ammessi solo numeri non decimali",
"Only once": "Solo una volta", "Only once": "Solo una volta",
"Only outgoing calls to listed numbers are allowed": "Solo ammesse solo le chiamate ai numeri in elenco", "Only outgoing calls to listed numbers are allowed": "Sono ammesse solo le chiamate in uscita verso i numeri elencati",
"Out": "Out", "Out": "Out",
"Outgoing": "In uscita", "Outgoing": "In uscita",
"PBX Configuration": "Configurazione PBX", "PBX Configuration": "Configurazione PBX",
"PBX Statistics": "Statistiche PBX", "PBX Statistics": "Statistiche PBX",
"PIN": "PIN", "PIN": "PIN",
"PIN to bypass outbound Block List": "PIN to bypass outbound Block List", "PIN to bypass outbound Block List": "PIN per evitare la lista di blocco in uscita",
"Page Header": "Intestazione di pagina", "Page Header": "Intestazione di pagina",
"Page not found": "Page not found", "Page not found": "Pagina non trovata",
"Parallel Ringing": "Squilli in parallelo", "Parallel Ringing": "Squilli in parallelo",
"Parent": "Parent", "Parent": "Parente",
"Password": "Password", "Password": "Password",
"Password Expired": "Password Expired", "Password Expired": "Password scaduta",
"Password Retype": "Password Retype", "Password Retype": "Ripeti password",
"Password changed successfully": "Password changed successfully", "Password changed successfully": "Password cambiata con successo",
"Password confirm": "Password confirm", "Password confirm": "Conferma password",
"Password is considered weak": "Password is considered weak", "Password is considered weak": "La password è considerata debole",
"Password is not strong enough": "Password is not strong enough", "Password is not strong enough": "La password non è abbastanza sicura",
"Password is not strong enough, add more digits": "Password is not strong enough, add more digits", "Password is not strong enough, add more digits": "La password non è abbastanza sicura, aggiungi più numeri",
"Password is not strong enough, add more lowercase letters": "Password is not strong enough, add more lowercase letters", "Password is not strong enough, add more lowercase letters": "La password non è abbastanza sicura, aggiungi più lettere minuscole",
"Password is not strong enough, add more special characters": "Password is not strong enough, add more special characters", "Password is not strong enough, add more special characters": "La password non è abbastanza sicura, aggiungi più caratteri speciali",
"Password is not strong enough, add more uppercase letters": "Password is not strong enough, add more uppercase letters", "Password is not strong enough, add more uppercase letters": "La password non è abbastanza sicura, aggiungi più lettere maiuscole",
"Password must be at least {max} characters long": "Password must be at least {max} characters long", "Password must be at least {max} characters long": "La password deve contenere almeno {max} caratteri",
"Password must be at least {min} characters long": "Password must be at least {min} characters long", "Password must be at least {min} characters long": "La password deve contenere almeno {min} caratteri",
"Passwords must be equal": "Le passwords devono essere identiche", "Passwords must be equal": "Le password devono essere identiche",
"Period": "Period", "Period": "Periodo",
"Phone model": "Modello telefono", "Phone model": "Modello telefono",
"Phone number": "Numero di telefono", "Phone number": "Numero di telefono",
"Pilot": "Pilota", "Pilot": "Pilota",
"Play all files in loop": "Riproduci tutti i file a ripetizione", "Play all files in loop": "Riproduci tutti i file a ripetizione",
"Play announcement before call setup": "Riproduci l'annuncio prima della configurazione della chiamata", "Play announcement before call setup": "Riproduci l'annuncio prima della configurazione della chiamata",
"Play announcement before routing to CFU/CFNA": "Riproduci l'annuncio prima di instradare a CFU/CFNAA", "Play announcement before routing to CFU/CFNA": "Riproduci l'annuncio prima di instradare a CFU/CFNA",
"Play announcement to callee after answer": " Riproduci l'annuncio al destinatario dopo la risposta", "Play announcement to callee after answer": "Riproduci l'annuncio al destinatario dopo la risposta",
"Please fill or remove the empty slots": "Per favore, compila o rimuovi gli spazi vuoti", "Please fill or remove the empty slots": "Per favore, compila o rimuovi gli spazi vuoti",
"Please select an option": "Per favore, seleziona un'opzione", "Please select an option": "Per favore, seleziona un'opzione",
"Powered by": "Powered by", "Powered by": "Powered by",
"Preferences": "Preferences", "Preferences": "Preferenze",
"Primary Number": "Numero primario", "Primary Number": "Numero primario",
"Privacy": "Privacy", "Privacy": "Privacy",
"Private": "Riservato", "Private": "Riservato",
"Purge existing": "Purge existing", "Purge existing": "Elimina esistenti",
"Q-Value": "Q-Value", "Q-Value": "Valore Q",
"QR code unavailable. Please retry later": "QR code unavailable. Please retry later", "QR code unavailable. Please retry later": "QR code non disponibile. Riprova più tardi",
"Quality": "Qualità", "Quality": "Qualità",
"Queue Length": "Lunghezza coda", "Queue Length": "Lunghezza coda",
"Random Ringing": "Squilli in ordine casuale", "Random Ringing": "Squilli in ordine casuale",
"Receive Reports": "Receive Reports", "Receive Reports": "Ricevi rapporti",
"Received from IP": "Received from IP", "Received from IP": "Ricevuto da IP",
"Recent Calls": "Chiamate recenti", "Recent Calls": "Chiamate recenti",
"Recording successfully deleted": "Recording successfully deleted", "Recording successfully deleted": "Registrazione eliminata con successo",
"Recordings": "Recordings", "Recordings": "Registrazioni",
"Recover password": "Recover password", "Recover password": "Recupera password",
"Refresh": "Refresh", "Refresh": "Aggiorna",
"Registered Devices": "Dispositivi registrati", "Registered Devices": "Dispositivi registrati",
"Reloading conversation items failed": "Caricamento dell'elenco conversazioni fallito", "Reloading conversation items failed": "Caricamento degli elementi della conversazione fallito",
"Reminder": "Promemoria", "Reminder": "Promemoria",
"Reminder is disabled": "Promemoria disabilitato", "Reminder is disabled": "Promemoria disabilitato",
"Reminder is enabled": "Promemoria abilitato", "Reminder is enabled": "Promemoria abilitato",
"Reminder: Disabled successfully": "Il promemoria è stato disattivato", "Reminder: Disabled successfully": "Promemoria disattivato con successo",
"Reminder: Enabled successfully": "Il promemoria è stato attivato", "Reminder: Enabled successfully": "Promemoria attivato con successo",
"Reminder: Recurrence changed to \"{recurrence}\"": "Reminder: Recurrence changed to \"{recurrence}\"", "Reminder: Recurrence changed to \"{recurrence}\"": "Promemoria: Ricorrenza cambiata in \"{recurrence}\"",
"Reminder: Time changed to {time}": "Promemoria: impostato nuovo orario {time}", "Reminder: Time changed to {time}": "Promemoria: orario cambiato in {time}",
"Remove": "Elimina", "Remove": "Rimuovi",
"Remove ACL": "Remove ACL", "Remove ACL": "Rimuovi ACL",
"Remove Destination": "Remove Destination", "Remove Destination": "Rimuovi destinazione",
"Remove Fax": "Remove Fax", "Remove Fax": "Rimuovi fax",
"Remove Voicemail": "Remove Voicemail", "Remove Voicemail": "Rimuovi messaggio vocale",
"Remove all": "Remove all", "Remove all": "Rimuovi tutto",
"Remove call queue": "Elimina coda chiamate", "Remove call queue": "Rimuovi coda chiamate",
"Remove device": "Elimina dispositivo", "Remove device": "Rimuovi dispositivo",
"Remove file": "Elimina file", "Remove file": "Rimuovi file",
"Remove group": "Elimina gruppo", "Remove group": "Rimuovi gruppo",
"Remove manager secretary config": "Elimina configurazione segreteria", "Remove manager secretary config": "Rimuovi configurazione manager/segreteria",
"Remove number": "Elimina numero", "Remove number": "Rimuovi numero",
"Remove seat": "Elimina postazione", "Remove seat": "Rimuovi postazione",
"Remove secret key renew notify email": "Remove secret key renew notify email", "Remove secret key renew notify email": "Rimuovi email di notifica rinnovo chiave segreta",
"Remove sound set": "Elimina set di suoni", "Remove sound set": "Rimuovi set di suoni",
"Remove speed dial": "Elimina chiamata rapida", "Remove speed dial": "Rimuovi chiamata rapida",
"Remove time range": "Remove time range", "Remove time range": "Rimuovi intervallo di tempo",
"Removed call queue for {callQueue} successfully": "Coda chiamata per {callQueue} eliminata", "Removed call queue for {callQueue} successfully": "Coda chiamate per {callQueue} rimossa con successo",
"Removed device {device} successfully": "Dispositivo {device} eliminato", "Removed device {device} successfully": "Dispositivo {device} rimosso con successo",
"Removed group {group}": "Gruppo {group} eliminato", "Removed group {group}": "Gruppo {group} rimosso",
"Removed manager secretary config for {msConfig} successfully": "Configurazione segreteria {msConfig} eliminata", "Removed manager secretary config for {msConfig} successfully": "Configurazione manager/segreteria per {msConfig} rimossa con successo",
"Removed seat {seat}": "Postazione {seat} eliminata", "Removed seat {seat}": "Postazione {seat} rimossa",
"Removed sound set {soundSet} successfully": "Set di suoni {soundSet} eliminato", "Removed sound set {soundSet} successfully": "Set di suoni {soundSet} rimosso con successo",
"Renew Notify Email": "Renew Notify Email", "Renew Notify Email": "Rinnovo email di notifica",
"Reset": "Ripristina", "Reset": "Ripristina",
"Reset Password": "Reimposta password", "Reset Password": "Reimposta password",
"Reset greeting sound": "Reimposta messaggio audio", "Reset greeting sound": "Reimposta messaggio audio",
"Reset to defaults": "Ripristina predefiniti", "Reset to defaults": "Ripristina impostazioni predefinite",
"Ring at": "Ring at", "Ring at": "Squilla a",
"Ring primary number": "Ring primary number", "Ring primary number": "Squilla al numero primario",
"Ringing at": "Chiamata in corso a", "Ringing at": "Squillo in corso a",
"Ringing at {number}...": "Chiamata in corso a {number}...", "Ringing at {number}...": "Squillo in corso a {number}...",
"SIP Password": "Password SIP", "SIP Password": "Password SIP",
"SIP Password confirm": "SIP Password confirm", "SIP Password confirm": "Conferma password SIP",
"SIP URI": "URI SIP", "SIP URI": "URI SIP",
"SIP Username": "SIP Username", "SIP Username": "Nome utente SIP",
"SIP Username is required": "SIP Username is required", "SIP Username is required": "Il nome utente SIP è obbligatorio",
"SIP Username must have at most {maxLength} letters": "SIP Username must have at most {maxLength} letters", "SIP Username must have at most {maxLength} letters": "Il nome utente SIP deve avere al massimo {maxLength} caratteri",
"SIP Username must not contain any space character": "SIP Username must not contain any space character", "SIP Username must not contain any space character": "Il nome utente SIP non deve contenere spazi",
"Sa": "Sa", "Sa": "Sa",
"Same time for selected days": "Same time for selected days", "Same time for selected days": "Stesso orario per i giorni selezionati",
"Saturday": "Sabato", "Saturday": "Sabato",
"Save": "Salva", "Save": "Salva",
"Save new password": "Salva nuova password", "Save new password": "Salva nuova password",
"Scan to login sip:phone": "Scan to login sip:phone", "Scan to login sip:phone": "Scansiona per accedere sip:phone",
"Seat": "Postazione", "Seat": "Postazione",
"Seat Display Name": "Seat Display Name", "Seat Display Name": "Nome visualizzato postazione",
"Seat SIP Username": "Seat SIP Username", "Seat SIP Username": "Nome utente SIP postazione",
"Seat Web Username": "Seat Web Username", "Seat Web Username": "Nome utente web postazione",
"Seat displayName": "Seat displayName", "Seat displayName": "Nome visualizzato postazione",
"Seat name": "Nome postazione", "Seat name": "Nome postazione",
"Seats": "Postazioni", "Seats": "Postazioni",
"Secret Key (empty=disabled)": "Chiave segreta (campo vuoto = disabilitata)", "Secret Key (empty=disabled)": "Chiave segreta (vuota = disabilitata)",
"Secret Key Renew": "Rinnovo chiave segreta", "Secret Key Renew": "Rinnovo chiave segreta",
"Secret Key Renew Notify": "Notifica rinnovo chiave segreta", "Secret Key Renew Notify": "Notifica rinnovo chiave segreta",
"Secretary numbers": "Numeri segreteria", "Secretary numbers": "Numeri segreteria",
"Select": "Seleziona", "Select": "Seleziona",
"Select a manager": "Seleziona direttore", "Select a manager": "Seleziona un direttore",
"Select secretary numbers": "Seleziona numeri segreteria", "Select secretary numbers": "Seleziona numeri segreteria",
"Send": "Invia", "Send": "Invia",
"Send Fax": "Invia fax", "Send Fax": "Invia fax",
"Sending fax completed successfully.": "Fax inviato correttamente.", "Sending fax completed successfully.": "Fax inviato con successo.",
"September": "Settembre", "September": "Settembre",
"Serial Ringing": "Chiamata in sequenza", "Serial Ringing": "Squillo in sequenza",
"Session expired, please login again": "Session expired, please login again", "Session expired, please login again": "Sessione scaduta, accedi di nuovo",
"Set your fax settings": "Set your fax settings", "Set your fax settings": "Configura le impostazioni fax",
"Set your personal alarm": "Configura senale di avviso personale", "Set your personal alarm": "Configura allarme personale",
"Set your speed dials": "Configura le tue chiamate rapide", "Set your speed dials": "Configura le chiamate rapide",
"Set your voicebox settings": "Configura la tua casella vocale", "Set your voicebox settings": "Configura la tua casella vocale",
"Settings": "Impostazioni", "Settings": "Impostazioni",
"Share": "Condividi", "Share": "Condividi",
"Share conference": "Condividi la conferenza", "Share conference": "Condividi conferenza",
"Shared": "Condiviso", "Shared": "Condiviso",
"Show all calls": "Show all calls", "Show all calls": "Mostra tutte le chiamate",
"Show incoming calls only": "Show incoming calls only", "Show incoming calls only": "Mostra solo chiamate in entrata",
"Show outgoing calls only": "Show outgoing calls only", "Show outgoing calls only": "Mostra solo chiamate in uscita",
"Sign In": "Accedi", "Sign In": "Accedi",
"Slot": "Slot", "Slot": "Slot",
"Slot {number}": "Slot {number}", "Slot {number}": "Slot {number}",
"Slots saved successfully": "Slots saved successfully", "Slots saved successfully": "Slot salvati con successo",
"Slots successfully added": "Slots successfully added", "Slots successfully added": "Slot aggiunti con successo",
"Sms": "Sms", "Sms": "Sms",
"Something went wrong. Please retry later": "Something went wrong. Please retry later", "Something went wrong. Please retry later": "Qualcosa è andato storto. Riprova più tardi",
"Sound Set": "Set di suoni", "Sound Set": "Set di suoni",
"Sound Sets": "Sets di suoni", "Sound Sets": "Set di suoni",
"Spanish": "Spanish", "Spanish": "Español",
"Speed Dial": "Chiamata rapida", "Speed Dial": "Chiamata rapida",
"Start and End time should be set": "Start and End time should be set", "Start and End time should be set": "Imposta orario di inizio e fine",
"Start new call": "Inizia nuova chiamata", "Start new call": "Avvia nuova chiamata",
"Start time": "Start time", "Start time": "Orario di inizio",
"Start time should be less than End time": "Start time should be less than End time", "Start time should be less than End time": "L'orario di inizio deve essere precedente a quello di fine",
"Station name": "Nome stazione", "Station name": "Nome stazione",
"Status": "Status", "Status": "Stato",
"Su": "Su", "Su": "Do",
"Subscriber": "Abbonato", "Subscriber": "Abbonato",
"Subscriber Phonebook": "Rubrica Abbonato", "Subscriber Phonebook": "Rubrica abbonato",
"Subscriber Sign In": "Accesso abbonato", "Subscriber Sign In": "Accesso abbonato",
"Sunday": "Domenica", "Sunday": "Domenica",
"Super": "Super", "Super": "Super",
"T38": "T38", "T38": "T38",
"Target number": "Target number", "Target number": "Numero di destinazione",
"Temp Greeting": "Temp Greeting", "Temp Greeting": "Messaggio temporaneo",
"Th": "Th", "Th": "Gi",
"The \"{timeset}\" timeset contains incompatible values. You can resolve this by deleting it and recreating from the scratch.": "The \"{timeset}\" timeset contains incompatible values. You can resolve this by deleting it and recreating from the scratch.", "The \"{timeset}\" timeset contains incompatible values. You can resolve this by deleting it and recreating from the scratch.": "Il timeset \"{timeset}\" contiene valori incompatibili. Puoi risolvere cancellandolo e ricreandolo da zero.",
"The Destination Email is already used": "The Destination Email is already used", "The Destination Email is already used": "L'email di destinazione è già in uso",
"The Notify Email is already used": "The Notify Email is already used", "The Notify Email is already used": "L'email di notifica è già in uso",
"There are no ACLs yet": "There are no ACLs yet", "There are no ACLs yet": "Non ci sono ancora ACL",
"There are no Key Renew Notify Emails yet": "There are no Key Renew Notify Emails yet", "There are no Key Renew Notify Emails yet": "Ancora non ci sono email di notifica per il rinnovo delle chiavi",
"There is a problem with your account, please contact support": "C'è un problema con il tuo account, contatta l'assistenza", "There is a problem with your account, please contact support": "C'è un problema con il tuo account, contatta l'assistenza",
"There was an error, please retry later": "There was an error, please retry later", "There was an error, please retry later": "Si è verificato un errore, riprova più tardi",
"This number is already in use.": "Questo numero è già in uso.", "This number is already in use.": "Questo numero è già in uso.",
"This setting is synced with \"After Ring Timeout\", which can be edited above.": "Questa impostazione è sincronizzata con \"Timeout dopo lo squillo\", che può essere modificato sopra.", "This setting is synced with \"After Ring Timeout\", which can be edited above.": "Questa impostazione è sincronizzata con \"Timeout dopo squillo\", modificabile sopra.",
"Thursday": "Giovedì", "Thursday": "Giovedì",
"Time": "Orario", "Time": "Orario",
"Time is invalid": "Orario non valido", "Time is invalid": "Orario non valido",
"Timerange": "Timerange", "Timerange": "Intervallo di tempo",
"To": "A", "To": "A",
"Today": "Oggi", "Today": "Oggi",
"Transfer": "Transfer", "Transfer": "Trasferisci",
"Tu": "Tu", "Tu": "Ma",
"Tuesday": "Martedì", "Tuesday": "Martedì",
"Type": "Tipo", "Type": "Tipo",
"Type something": "Scrivi qualcosa", "Type something": "Scrivi qualcosa",
"Unable to copy data to clipboard": "Impossibile copiare i dati negli appunti", "Unable to copy data to clipboard": "Impossibile copiare i dati negli appunti",
"Unassign": "Rimuovere assegnazione", "Unassign": "Rimuovi assegnazione",
"Unassigned": "Non assegnato", "Unassigned": "Non assegnato",
"Unavailable Greeting": "Messaggio per numero non disponibile", "Unavailable Greeting": "Messaggio per numero non disponibile",
"Unblock Incoming": "Sblocca entranti", "Unblock Incoming": "Sblocca chiamate in entrata",
"Unblock Incoming/Outgoing": "Sblocca entranti/uscenti", "Unblock Incoming/Outgoing": "Sblocca entrata/uscita",
"Unblock Outgoing": "Sblocca uscenti", "Unblock Outgoing": "Sblocca chiamate in uscita",
"Undo": "Undo", "Undo": "Annulla",
"Unknown error": "Errore sconosciuto", "Unknown error": "Errore sconosciuto",
"Unknown name": "Nome sconosciuto", "Unknown name": "Nome sconosciuto",
"Updated {field} for call queue {callQueue} successfully": "Aggiornato campo {field} per la coda {callQueue}", "Updated {field} for call queue {callQueue} successfully": "Aggiornato {field} per la coda chiamate {callQueue}",
"Updated {field} for device {device} successfully": "Aggiornato campo {field} per il dispositivo {device}", "Updated {field} for device {device} successfully": "Aggiornato {field} per il dispositivo {device}",
"Updated {field} for manager secretary config {msConfig} successfully": "Aggiornato campo {field} per configurazione segreteria {msConfig}", "Updated {field} for manager secretary config {msConfig} successfully": "Aggiornato {field} per configurazione segreteria {msConfig}",
"Updated {field} for sound set {soundSet} successfully": "Aggiornato campo {field} per il set di suoni {soundSet}", "Updated {field} for sound set {soundSet} successfully": "Aggiornato {field} per il set di suoni {soundSet}",
"Updated {field} successfully": "Aggiornato {field} con successo", "Updated {field} successfully": "{field} aggiornato con successo",
"Upload": "Carica", "Upload": "Carica",
"Upload CSV": "Upload CSV", "Upload CSV": "Carica CSV",
"Use Parent": "Use Parent", "Use Parent": "Usa parente",
"Use RegExp": "Use RegExp", "Use RegExp": "Usa RegExp",
"Use as default for all seats and groups": "Utilizza come predefinito per tutte le postazioni e i gruppi", "Use as default for all seats and groups": "Usa come predefinito per tutte le postazioni e i gruppi",
"Use custom number": "Use custom number", "Use custom number": "Usa numero personalizzato",
"Use language specific preset": "Usa i valori preimpostati per la lingua", "Use language specific preset": "Usa predefiniti per la lingua",
"User Agent": "User Agent", "User Agent": "User Agent",
"User config priority over provisioning": "Priorità di configurazione utente sul provisioning", "User config priority over provisioning": "Priorità della configurazione utente sul provisioning",
"User settings": "Impostazioni utente", "User settings": "Impostazioni utente",
"Username": "Nome utente", "Username": "Nome utente",
"Using Bye": "Using Bye", "Using Bye": "Usando Bye",
"Using Cancel": "Using Cancel", "Using Cancel": "Usando Cancel",
"View All Registered Devices": "Visualizza tutti i dispositivi registrati", "View All Registered Devices": "Visualizza tutti i dispositivi registrati",
"View Call List": "Visualizza elenco chiamate", "View Call List": "Visualizza elenco chiamate",
"View Voicebox Messages": "Visualizza messaggi casella vocale", "View Voicebox Messages": "Visualizza messaggi casella vocale",
"Voice prompts language for voicemail, conference and application server": "Prompt vocali per la casella vocale, conferenza e SEMS", "Voice prompts language for voicemail, conference and application server": "Lingua dei prompt vocali per casella vocale, conferenze e server applicazioni",
"Voicebox": "Casella vocale", "Voicebox": "Casella vocale",
"Voicebox Messages": "Messaggi casella vocale", "Voicebox Messages": "Messaggi casella vocale",
"Voicemail": "Messaggio vocale", "Voicemail": "Messaggio vocale",
"Voicemails": "Messaggi vocali", "Voicemails": "Messaggi vocali",
"We": "We", "We": "Mer",
"Web Password": "Password web", "Web Password": "Password web",
"Web Password confirm": "Web Password confirm", "Web Password confirm": "Conferma password web",
"Web Username": "Web Username", "Web Username": "Nome utente web",
"WebSocket connection to kamailio lb failed with code {code}": "WebSocket connection to kamailio lb failed with code {code}", "WebSocket connection to kamailio lb failed with code {code}": "Connessione WebSocket a kamailio lb fallita con codice {code}",
"Wednesday": "Mercoledì", "Wednesday": "Mercoledì",
"Weekly": "Weekly", "Weekly": "Settimanale",
"When I dial {slot} ...": "Quando chiamo {slot} ...", "When I dial {slot} ...": "Quando chiamo {slot}...",
"Wrap Up Time": "Pausa tra le chiamate in coda", "Wrap up time": "Tempo pausa tra chiamate",
"Wrap up time": "Pausa tra le chiamate in coda", "Wrong username or password": "Nome utente o password errati",
"Wrong username or password": "Nome utente o password errato",
"Yesterday": "Ieri", "Yesterday": "Ieri",
"You are about to change your login password. After the password was changed successfully, you get automatically logged out to authenticate with the new password. ": "Stai per modificare la tua password di accesso. Una volta cambiata la password, verrai automaticamente disconnesso e dovrai accedere con la nuova password. ", "You are about to change your login password. After the password was changed successfully, you get automatically logged out to authenticate with the new password.": "Stai per modificare la tua password di accesso. Una volta cambiata la password, verrai automaticamente disconnesso e dovrai accedere con la nuova password.",
"You are about to delete recording #{id}": "You are about to delete recording #{id}", "You are about to delete recording #{id}": "Stai per eliminare la registrazione #{id}",
"You are about to delete slot {slot}": "You are about to delete slot {slot}", "You are about to delete slot {slot}": "Stai per eliminare la postazione {slot}",
"You are about to delete this destination": "You are about to delete this destination", "You are about to delete this destination": "Stai per eliminare questa destinazione",
"You are about to delete this forwarding": "You are about to delete this forwarding", "You are about to delete this forwarding": "Stai per eliminare questo inoltro",
"You are about to delete this phonebook": "You are about to delete this phonebook", "You are about to delete this phonebook": "Stai per eliminare questa rubrica",
"You are about to delete this registered device": "You are about to delete this registered device", "You are about to delete this registered device": "Stai per eliminare questo dispositivo registrato",
"You are about to delete time range \"{from} - {to}\"": "You are about to delete time range \"{from} - {to}\"", "You are about to delete time range \"{from} - {to}\"": "Stai per eliminare l'intervallo di tempo \"{from} - {to}\"",
"You are about to remove ACL: From email <{from_email}>": "You are about to remove ACL: From email <{from_email}>", "You are about to remove ACL: From email <{from_email}>": "Stai per rimuovere ACL: Dall'email <{from_email}>",
"You are about to remove call queue for {subscriber}": "Stai per eliminare la coda per {subscriber}", "You are about to remove call queue for {subscriber}": "Stai per eliminare la coda per {subscriber}",
"You are about to remove config for {msConfig}": "Stai per eliminare la configurazione per {msConfig}", "You are about to remove config for {msConfig}": "Stai per eliminare la configurazione per {msConfig}",
"You are about to remove destination {destination}": "You are about to remove destination {destination}", "You are about to remove destination {destination}": "Stai per rimuovere la destinazione {destination}",
"You are about to remove device {device}": "Stai per eliminare il dispositivo {device}", "You are about to remove device {device}": "Stai per eliminare il dispositivo {device}",
"You are about to remove group {group}": "Stai per eliminare il gruppo {group}", "You are about to remove group {group}": "Stai per eliminare il gruppo {group}",
"You are about to remove seat {seat}": "Stai per eliminare la postazione {seat}", "You are about to remove seat {seat}": "Stai per eliminare la postazione {seat}",
"You are about to remove secret key renew notify email: {email}": "You are about to remove secret key renew notify email: {email}", "You are about to remove secret key renew notify email: {email}": "Stai per rimuovere l'email di notifica di rinnovo della chiave segreta: {email}",
"You are about to remove sound set {soundSetName}": "Stai per eliminare il set di suoni {soundSetName}", "You are about to remove sound set {soundSetName}": "Stai per eliminare il set di suoni {soundSetName}",
"You are about to remove the number {number}": "Stai per eliminare il numero {number}", "You are about to remove the number {number}": "Stai per eliminare il numero {number}",
"You are about to remove the speed dial {slot}": "Stai per eliminare la chiamata rapida {slot}", "You are about to remove the speed dial {slot}": "Stai per eliminare la chiamata rapida {slot}",
"You are about to remove this Fax": "You are about to remove this Fax", "You are about to remove this Fax": "Stai per eliminare questo fax",
"You are about to remove this Voicemail": "You are about to remove this Voicemail", "You are about to remove this Voicemail": "Stai per eliminare questa casella vocale",
"You are about to reset the custom {type} greeting sound to defaults": "Stai per sostituire il messaggio di benvenuto {type} con quello predefinito", "You are about to reset the custom {type} greeting sound to defaults": "Stai per ripristinare il suono del messaggio di benvenuto personalizzato {type} ai valori predefiniti",
"You are now able to start and receive calls": "Ora sei in grado di fare e ricevere chiamate", "You are now able to start and receive calls": "Ora sei in grado di fare e ricevere chiamate",
"You can neither make a call nor receive one, since the RTC:engine is not active. If you operate a C5 CE then first upgrade to a C5 PRO to be able to use the RTC:engine.": "Non puoi chiamare né ricevere chiamate, perché RTC:engine non è attivo. Se utilizzi un C5 CE passa alla versione C5 PRO per poter usare RTC:engine.", "You can neither make a call nor receive one, since the RTC:engine is not active. If you operate a C5 CE then first upgrade to a C5 PRO to be able to use the RTC:engine.": "Non puoi chiamare né ricevere chiamate, perché RTC:engine non è attivo. Se utilizzi un C5 CE passa alla versione C5 PRO per poter usare RTC:engine.",
"You have blocked incoming call notifications.": "Hai bloccato la notifica per le chiamate in ingresso.", "You have blocked incoming call notifications.": "Hai bloccato la notifica per le chiamate in ingresso.",
"You have invalid form input. Please check and try again.": "Valore inserito non valido. Controlla e riprova.", "You have invalid form input. Please check and try again.": "Valore inserito non valido. Controlla e riprova.",
"Your SIP password has been changed successfully": "Your SIP password has been changed successfully", "Your SIP password has been changed successfully": "La tua password SIP è stata cambiata con successo",
"Your Web password has been changed successfully": "Your Web password has been changed successfully", "Your Web password has been changed successfully": "La tua password Web è stata cambiata con successo",
"Your number is hidden to the callee": "Il tuo numero non è visibile al chiamato", "Your number is hidden to the callee": "Il tuo numero non è visibile al chiamato",
"Your number is hidden to the callee within own PBX": " Il tuo numero è nascosto al destinatario all'interno della propria PBX", "Your number is hidden to the callee within own PBX": "Il tuo numero è nascosto al destinatario all'interno della propria PBX",
"Your number is visible to the callee": "Il tuo numero è visible al chiamato", "Your number is visible to the callee": "Il tuo numero è visibile al chiamato",
"Your number is visible to the callee within own PBX": "Il tuo numero è visibile al destinatario all'interno della propria PBX", "Your number is visible to the callee within own PBX": "Il tuo numero è visibile al destinatario all'interno della propria PBX",
"Your password has been changed successfully": "Password modificata", "Your password has been changed successfully": "Password modificata",
"Your password has expired": "Your password has expired", "Your password has expired": "La tua password è scaduta",
"ago": "fa", "ago": "fa",
"and": "e", "and": "e",
"and call from": "e la chiamata proviene da", "and call from": "e la chiamata proviene da",
@ -629,53 +627,53 @@
"busy": "occupato", "busy": "occupato",
"call from ...": "e la chiamata proviene da ...", "call from ...": "e la chiamata proviene da ...",
"call not from ...": "e la chiamata non proviene da ...", "call not from ...": "e la chiamata non proviene da ...",
"call not to": "il destinatario della chiamata non é", "call not to": "il destinatario della chiamata non è",
"call not to ...": "il destinatario della chiamata non é ...", "call not to ...": "il destinatario della chiamata non è ...",
"call to": "il destinatario della chiamata é", "call to": "il destinatario della chiamata è",
"call to ...": "il destinatario della chiamata é ...", "call to ...": "il destinatario della chiamata è ...",
"cli of the seat": "cli of the seat", "cli of the seat": "cli della postazione",
"condition": "condizione", "condition": "condizione",
"data error": "data error", "data error": "errore nei dati",
"date is": "la data é", "date is": "la data è",
"date is ...": "la data é ...", "date is ...": "la data è ...",
"date range is": "l'intervallo di date é", "date range is": "l'intervallo di date è",
"date range is ...": "l'intervallo di date é ...", "date range is ...": "l'intervallo di date è ...",
"default option": "opzione predefinita", "default option": "opzione predefinita",
"description": "descrizione", "description": "descrizione",
"empty": "empty", "empty": "vuoto",
"forwarded to": "inoltrato a", "forwarded to": "inoltrato a",
"from": "da", "from": "da",
"greet": "greet", "greet": "saluto",
"minutes": "minuti", "minutes": "minuti",
"music on hold of the seat": "music on hold of the seat", "music on hold of the seat": "musica in attesa della postazione",
"name": "nome", "name": "nome",
"office hours are": "gli orari di ufficio sono", "office hours are": "gli orari di ufficio sono",
"office hours are ...": "gli orari di ufficio sono ...", "office hours are ...": "gli orari di ufficio sono ...",
"or": "o", "or": "o",
"page": "pagina", "page": "pagina",
"pages": "pagine", "pages": "pagine",
"parent": "parent", "parent": "parente",
"ring": "squilla", "ring": "squilla",
"second": "secondo", "second": "secondo",
"seconds": "secondi", "seconds": "secondi",
"temp": "temp", "temp": "temporaneo",
"the behavior of the members call forwards from a Cloud PBX subscriber when it is called within a huntgroup": "il comportamento delle chiamate inoltrate dei membri da un abbonato Cloud PBX quando vengono chiamati all'interno di un gruppo di ricerca.", "the behavior of the members call forwards from a Cloud PBX subscriber when it is called within a huntgroup": "il comportamento delle chiamate inoltrate dei membri da un abbonato Cloud PBX quando vengono chiamati all'interno di un gruppo di ricerca.",
"the playback announcement as early media before Call Forward Unconditional or Unavailable": "la riproduzione dell'annuncio come media anticipato prima dell'Inoltro di chiamata incondizionato o non disponibile.", "the playback announcement as early media before Call Forward Unconditional or Unavailable": "l'annuncio di riproduzione come media anticipato prima dell'Inoltro di chiamata incondizionato o non disponibile.",
"the playback announcement as early media before send the call to callee": "la riproduzione dell'annuncio come media anticipato prima di inviare la chiamata al destinatario", "the playback announcement as early media before send the call to callee": "l'annuncio di riproduzione come media anticipato prima di inviare la chiamata al destinatario",
"the playback announcement to callee after he answered the call": "la riproduzione dell'annuncio al destinatario dopo che ha risposto alla chiamata", "the playback announcement to callee after he answered the call": "l'annuncio di riproduzione al destinatario dopo che ha risposto alla chiamata",
"the right of this subscriber to be controlled by a CTI subscriber within the same customer using uaCSTA via SIP": "the right of this subscriber to be controlled by a CTI subscriber within the same customer using uaCSTA via SIP", "the right of this subscriber to be controlled by a CTI subscriber within the same customer using uaCSTA via SIP": "il diritto di questo abbonato di essere controllato da un abbonato CTI all'interno dello stesso cliente utilizzando uaCSTA tramite SIP",
"the right this subscriber to initiate CTI sessions to other subscribers within the same customer using uaCSTA via SIP": "the right this subscriber to initiate CTI sessions to other subscribers within the same customer using uaCSTA via SIP", "the right this subscriber to initiate CTI sessions to other subscribers within the same customer using uaCSTA via SIP": "il diritto di questo abbonato di avviare sessioni CTI con altri abbonati all'interno dello stesso cliente utilizzando uaCSTA tramite SIP",
"the visibility of the number within own PBX": "la visibilità del numero all'interno della propria PBX", "the visibility of the number within own PBX": "la visibilità del numero all'interno della propria PBX",
"to": "a", "to": "a",
"unavailable": "non disponibile", "unavailable": "non disponibile",
"validators.": "validators.", "validators.": "validatori.",
"weekdays are": "i giorni della settimana sono", "weekdays are": "i giorni della settimana sono",
"weekdays are ...": "i giorni della settimana sono ...", "weekdays are ...": "i giorni della settimana sono ...",
"{fieldOne} or {fieldTwo} is required": "Necessario compilare il campo {fieldOne} o il campo {fieldTwo}", "{fieldOne} or {fieldTwo} is required": "Necessario compilare il campo {fieldOne} o il campo {fieldTwo}",
"{field} is required": "Il campo {field} è richiesto", "{field} is required": "Il campo {field} è richiesto",
"{field} must be at least {minValue} second": "Il valore minimo del campo {field} è {minValue} secondi", "{field} must be at least {minValue} second": "Il valore minimo del campo {field} è {minValue} secondi",
"{field} must be maximum of {maxValue} seconds": "Il valore massimo del campo {field} è di {maxValue} secondi", "{field} must be maximum of {maxValue} seconds": "Il valore massimo del campo {field} è di {maxValue} secondi",
"{field} must consist of numeric characters only": "Il campo {field} deve contene sono caratteri numerici", "{field} must consist of numeric characters only": "Il campo {field} deve contenere solo caratteri numerici",
"{field} must consist only of numeric characters or the symbols +, * or #.": "{field} must consist only of numeric characters or the symbols +, * or #.", "{field} must consist only of numeric characters or the symbols +, * or #.": "{field} deve contenere solo caratteri numerici o i simboli +, * o #.",
"{field} must have at most {maxLength} letters": "Il campo {field} può contenere al massimo {maxLength} lettere" "{field} must have at most {maxLength} letters": "Il campo {field} può contenere al massimo {maxLength} lettere"
} }

@ -144,16 +144,16 @@ export default {
const errorsTab = this.v$.changes.queue_wrap_up_time.$errors const errorsTab = this.v$.changes.queue_wrap_up_time.$errors
if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'numeric') { if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'numeric') {
return this.$t('{field} must consist of numeric characters only', { return this.$t('{field} must consist of numeric characters only', {
field: this.$t('Wrap Up Time') field: this.$t('Wrap up time')
}) })
} else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'minValue') { } else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'minValue') {
return this.$t('{field} must be at least {minValue} second', { return this.$t('{field} must be at least {minValue} second', {
field: this.$t('Wrap Up Time'), field: this.$t('Wrap up time'),
minValue: this.v$.changes.queue_wrap_up_time.minValue.$params.min minValue: this.v$.changes.queue_wrap_up_time.minValue.$params.min
}) })
} else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'maxValue') { } else if (errorsTab && errorsTab.length > 0 && errorsTab[0].$validator === 'maxValue') {
return this.$t('{field} must be maximum of {maxValue} seconds', { return this.$t('{field} must be maximum of {maxValue} seconds', {
field: this.$t('Wrap Up Time'), field: this.$t('Wrap up time'),
maxValue: this.v$.changes.queue_wrap_up_time.maxValue.$params.max maxValue: this.v$.changes.queue_wrap_up_time.maxValue.$params.max
}) })
} }

@ -125,7 +125,7 @@ class testrun(unittest.TestCase):
"Number was not deleted") "Number was not deleted")
""" """
print("Go to 'Block Outgoing' page...", end="") print("Go to 'Block Outgoing' page...", end="")
driver.find_element(By.XPATH, '//*[@id="csc-main-menu-top"]//div/a[contains(., "Block outgoing")]').click() driver.find_element(By.XPATH, '//*[@id="csc-main-menu-top"]//div/a[contains(., "Block Outgoing")]').click()
self.assertTrue( self.assertTrue(
len(driver.find_elements(By.XPATH, '//*[@id="csc-page-call-blocking-outgoing"]')) > 0, "'Block Outgoing' page wasnt opened") len(driver.find_elements(By.XPATH, '//*[@id="csc-page-call-blocking-outgoing"]')) > 0, "'Block Outgoing' page wasnt opened")
print("OK") print("OK")

Loading…
Cancel
Save