Skip to content

Commit

Permalink
portal/client: fixed missing translations
Browse files Browse the repository at this point in the history
  • Loading branch information
danigargar committed May 14, 2024
1 parent c80f891 commit 28f207e
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 20 deletions.
2 changes: 1 addition & 1 deletion web/portal/client/src/entities/ActiveCalls/ActiveCalls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { BillableCallProperties } from './ActiveCallsProperties';

const properties: BillableCallProperties = {
startTime: {
label: 'Start time',
label: _('Start time'),
},
};

Expand Down
32 changes: 16 additions & 16 deletions web/portal/client/src/entities/BillableCall/BillableCall.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,56 +11,56 @@ import { BillableCallProperties } from './BillableCallProperties';

const properties: BillableCallProperties = {
startTime: {
label: 'Start time',
label: _('Start time'),
},
callid: {
label: 'Call ID',
label: _('Call ID'),
},
caller: {
label: 'Caller',
label: _('Caller'),
},
callee: {
label: 'Callee',
label: _('Callee'),
},
destinationName: {
label: 'Destination',
label: _('Destination'),
},
direction: {
label: 'Direction',
label: _('Direction'),
enum: {
inbound: _('Inbound'),
outbound: _('Outbound'),
},
},
invoice: {
label: 'Invoice',
label: _('Invoice', { count: 1 }),
},
price: {
label: 'Price',
label: _('Price'),
},
duration: {
label: 'Duration',
label: _('Duration'),
},
cost: {
label: 'Cost',
label: _('Cost'),
},
carrierName: {
label: 'Carrier',
label: _('Carrier'),
},
ratingPlanName: {
label: 'Rating plan',
label: _('Rating plan', { count: 1 }),
},
endpointType: {
label: 'Endpoint type',
label: _('Endpoint type'),
},
endpointId: {
label: 'Endpoint id',
label: _('Endpoint id'),
},
endpointName: {
label: 'Endpoint name',
label: _('Endpoint name'),
},
ddiProvider: {
label: 'DDI Provider',
label: _('DDI Provider'),
},
};

Expand Down
2 changes: 1 addition & 1 deletion web/portal/client/src/entities/Calendar/Calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { CalendarProperties } from './CalendarProperties';

const properties: CalendarProperties = {
name: {
label: 'Name',
label: _('Name'),
},
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { CalendarPeriodsRelScheduleProperties } from './CalendarPeriodsRelSchedu

const properties: CalendarPeriodsRelScheduleProperties = {
condition: {
label: 'Condition',
label: _('Condition', { count: 1 }),
},
schedule: {
label: _('Schedule', { count: 1 }),
Expand Down
6 changes: 6 additions & 0 deletions web/portal/client/src/translations/ca.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
"Call CSV scheduler_many": "Planificadors de CSVs de trucades",
"Call CSV scheduler_one": "Planificador de CSV de trucades",
"Call CSV scheduler_other": "Planificadors de CSVs de trucades",
"Call ID": "ID de la trucada",
"Call date": "Data de la trucada",
"Call forward setting_many": "Configuracions de desviaments de trucada",
"Call forward setting_one": "Configuració desviament de trucada",
Expand All @@ -88,6 +89,7 @@
"Cancel": "Cancelar",
"Cancel call in all devices": "Cancelar llamada en todos los dispositivos",
"Cancel call only in current device": "Cancelar llamada solo en el dispositivo actual",
"Carrier": "Carrier",
"Client information": "Informació del client",
"Client's default": "Per defecte del client",
"Client_many": "Clients",
Expand All @@ -114,12 +116,14 @@
"Contact_many": "Contactos",
"Contact_one": "Contacto",
"Contact_other": "Contactos",
"Cost": "Cost",
"Country_many": "Països",
"Country_one": "País",
"Country_other": "Països",
"Created on": "Creat a",
"Customization": "Personalitzat",
"DDI In": "DDI entrada",
"DDI Provider": "Proveedor DDI",
"DDI_many": "DDIs",
"DDI_one": "DDI",
"DDI_other": "DDIs",
Expand Down Expand Up @@ -155,6 +159,8 @@
"Enabled": "Habilitat",
"Encoding": "Codificació",
"End date": "Data fi",
"Endpoint id": "ID dispositiu final",
"Endpoint name": "Nom dispositiu final",
"Endpoint type": "Tipus dispositiu final",
"Entry": "Entrada",
"Entry information": "Entrada d'informació",
Expand Down
6 changes: 6 additions & 0 deletions web/portal/client/src/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"Call CSV report_other": "Call CSV reports",
"Call CSV scheduler_one": "Call CSV scheduler",
"Call CSV scheduler_other": "Call CSV schedulers",
"Call ID": "Call ID",
"Call date": "Call date",
"Call forward setting_one": "Call forward setting",
"Call forward setting_other": "Call forward settings",
Expand All @@ -78,6 +79,7 @@
"Cancel": "Cancel",
"Cancel call in all devices": "Cancel call in all devices",
"Cancel call only in current device": "Cancel call only in current device",
"Carrier": "Carrier",
"Client information": "Client information",
"Client's default": "Client's default",
"Client_one": "Client",
Expand All @@ -99,11 +101,13 @@
"Contact Address": "Contact Address",
"Contact_one": "Contact",
"Contact_other": "Contacts",
"Cost": "Cost",
"Country_one": "Country",
"Country_other": "Countries",
"Created on": "Created on",
"Customization": "Customization",
"DDI In": "DDI In",
"DDI Provider": "DDI Provider",
"DDI_one": "DDI",
"DDI_other": "DDIs",
"Date": "Date",
Expand Down Expand Up @@ -138,6 +142,8 @@
"Enabled": "Enabled",
"Encoding": "Encoding",
"End date": "End date",
"Endpoint id": "Endpoint id",
"Endpoint name": "Endpoint name",
"Endpoint type": "Endpoint type",
"Entry": "Entry",
"Entry information": "Entry information",
Expand Down
8 changes: 7 additions & 1 deletion web/portal/client/src/translations/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
"Call CSV scheduler_many": "CSVs programados",
"Call CSV scheduler_one": "CSV programado",
"Call CSV scheduler_other": "CSVs programados",
"Call ID": "ID de llamada",
"Call date": "Fecha de llamada",
"Call forward setting_many": "Desvíos",
"Call forward setting_one": "Desvío",
Expand All @@ -88,6 +89,7 @@
"Cancel": "Cancelar",
"Cancel call in all devices": "Cancelar llamada en todos los dispositivos",
"Cancel call only in current device": "Cancelar llamada solo en el dispositivo actual",
"Carrier": "Carrier",
"Client information": "Información del cliente",
"Client's default": "Usar configuración cliente",
"Client_many": "Clientes",
Expand All @@ -114,12 +116,14 @@
"Contact_many": "Contactos",
"Contact_one": "Contacto",
"Contact_other": "Contactos",
"Cost": "Coste",
"Country_many": "Países",
"Country_one": "País",
"Country_other": "Países",
"Created on": "Fecha de creación",
"Customization": "Customizaciones",
"DDI In": "DDI In",
"DDI Provider": "Proveedor DDI",
"DDI_many": "DDIs",
"DDI_one": "DDI",
"DDI_other": "DDIs",
Expand Down Expand Up @@ -155,7 +159,9 @@
"Enabled": "Activado",
"Encoding": "Codificando",
"End date": "Fecha fin",
"Endpoint type": "Endpoint type",
"Endpoint id": "ID de dispositivo final",
"Endpoint name": "Nombre de dispositivo final",
"Endpoint type": "Tipo de dispositivo final",
"Entry": "Entrada",
"Entry information": "Información de registro",
"Error": "Error",
Expand Down
6 changes: 6 additions & 0 deletions web/portal/client/src/translations/it.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
"Call CSV scheduler_many": "Pianificazioni Tabulati",
"Call CSV scheduler_one": "Pianificazione Tabulati",
"Call CSV scheduler_other": "Pianificazioni Tabulati",
"Call ID": "Call ID",
"Call date": "Data chiamata",
"Call forward setting_many": "Impostazioni di inoltro chiamate",
"Call forward setting_one": "Impostazioni di inoltro chiamate",
Expand All @@ -88,6 +89,7 @@
"Cancel": "Annulla",
"Cancel call in all devices": "Cancel call in all devices",
"Cancel call only in current device": "Cancel call only in current device",
"Carrier": "Carrier",
"Client information": "Informazioni sul cliente",
"Client's default": "Impostazione predefinita del client",
"Client_many": "Clienti",
Expand All @@ -114,12 +116,14 @@
"Contact_many": "Contacts",
"Contact_one": "Contact",
"Contact_other": "Contacts",
"Cost": "Costo",
"Country_many": "Paesi",
"Country_one": "Paese",
"Country_other": "Paesi",
"Created on": "Creati il",
"Customization": "Personalizzato",
"DDI In": "DDI In",
"DDI Provider": "DDI Provider",
"DDI_many": "DDIs",
"DDI_one": "DDI",
"DDI_other": "DDIs",
Expand Down Expand Up @@ -155,6 +159,8 @@
"Enabled": "Abilitato",
"Encoding": "Codifica",
"End date": "Data Fine",
"Endpoint id": "ID Endpoint",
"Endpoint name": "Nome Endpoint",
"Endpoint type": "Tipo Endpoint",
"Entry": "Voce",
"Entry information": "Informazioni sulla voce",
Expand Down

0 comments on commit 28f207e

Please sign in to comment.