From 573b0776aea4ca3b587a1d8aa033b8d08bb5bd78 Mon Sep 17 00:00:00 2001 From: Omar-Nabil Date: Wed, 31 Jul 2024 16:06:59 +0300 Subject: [PATCH] add missed trnaslation for client-stepper file inside clients modlue --- .../client-address-step.component.ts | 36 +++++++++++-------- ...client-family-member-dialog.component.html | 8 ++--- .../client-family-members-step.component.ts | 7 ++-- .../client-general-step.component.html | 6 ++-- .../client-preview-step.component.html | 2 +- src/assets/translations/cs-CS.json | 13 +++++++ src/assets/translations/de-DE.json | 13 +++++++ src/assets/translations/en-US.json | 13 +++++++ src/assets/translations/es-MX.json | 13 +++++++ src/assets/translations/fr-FR.json | 13 +++++++ src/assets/translations/it-IT.json | 13 +++++++ src/assets/translations/ko-KO.json | 13 +++++++ src/assets/translations/lt-LT.json | 13 +++++++ src/assets/translations/lv-LV.json | 13 +++++++ src/assets/translations/ne-NE.json | 13 +++++++ src/assets/translations/pt-PT.json | 13 +++++++ src/assets/translations/sw-SW.json | 13 +++++++ 17 files changed, 191 insertions(+), 24 deletions(-) diff --git a/src/app/clients/client-stepper/client-address-step/client-address-step.component.ts b/src/app/clients/client-stepper/client-address-step/client-address-step.component.ts index d1ae230f91..b1c2e63ddd 100644 --- a/src/app/clients/client-stepper/client-address-step/client-address-step.component.ts +++ b/src/app/clients/client-stepper/client-address-step/client-address-step.component.ts @@ -8,8 +8,9 @@ import { InputBase } from 'app/shared/form-dialog/formfield/model/input-base'; import { SelectBase } from 'app/shared/form-dialog/formfield/model/select-base'; /** Custom Dialogs */ -import { FormDialogComponent } from 'app/shared/form-dialog/form-dialog.component'; +import { TranslateService } from '@ngx-translate/core'; import { DeleteDialogComponent } from 'app/shared/delete-dialog/delete-dialog.component'; +import { FormDialogComponent } from 'app/shared/form-dialog/form-dialog.component'; /** * Client Address Step Component @@ -31,8 +32,10 @@ export class ClientAddressStepComponent { /** * @param {MatDialog} dialog Mat Dialog + * @param {TranslateService} translateService Translate Service. */ - constructor(private dialog: MatDialog) { + constructor(private dialog: MatDialog, + private translateService: TranslateService) { this.clientAddressData = []; } @@ -41,7 +44,7 @@ export class ClientAddressStepComponent { */ addAddress() { const data = { - title: 'Add Client Address', + title: this.translateService.instant('labels.buttons.Add') + ' ' + this.translateService.instant('labels.catalogs.Client') + ' ' + this.translateService.instant('labels.heading.Address'), formfields: this.getAddressFormFields() }; const addAddressDialogRef = this.dialog.open(FormDialogComponent, { data, width: '50rem' }); @@ -131,9 +134,14 @@ export class ClientAddressStepComponent { */ getAddressFormFields(address?: any) { let formfields: FormfieldBase[] = []; + + for (let index = 0; index < this.clientTemplate.address[0].addressTypeIdOptions.length; index++) { + this.clientTemplate.address[0].addressTypeIdOptions[index].name = this.translateService.instant(`labels.catalogs.${this.clientTemplate.address[0].addressTypeIdOptions[index].name}`) + } + formfields.push(this.isFieldEnabled('addressType') ? new SelectBase({ controlName: 'addressTypeId', - label: 'Address Type', + label: this.translateService.instant('labels.inputs.Address Type'), value: address ? address.addressTypeId : '', options: { label: 'name', value: 'id', data: this.clientTemplate.address[0].addressTypeIdOptions }, order: 1, @@ -141,7 +149,7 @@ export class ClientAddressStepComponent { }) : null); formfields.push(this.isFieldEnabled('street') ? new InputBase({ controlName: 'street', - label: 'Street', + label: this.translateService.instant('labels.inputs.Street'), value: address ? address.street : '', type: 'text', required: true, @@ -149,63 +157,63 @@ export class ClientAddressStepComponent { }) : null); formfields.push(this.isFieldEnabled('addressLine1') ? new InputBase({ controlName: 'addressLine1', - label: 'Address Line 1', + label: this.translateService.instant('labels.inputs.Address Line') + ' 1', value: address ? address.addressLine1 : '', type: 'text', order: 3 }) : null); formfields.push(this.isFieldEnabled('addressLine2') ? new InputBase({ controlName: 'addressLine2', - label: 'Address Line 2', + label: this.translateService.instant('labels.inputs.Address Line') + ' 2', value: address ? address.addressLine2 : '', type: 'text', order: 4 }) : null); formfields.push(this.isFieldEnabled('addressLine3') ? new InputBase({ controlName: 'addressLine3', - label: 'Address Line 3', + label: this.translateService.instant('labels.inputs.Address Line') + ' 3', value: address ? address.addressLine3 : '', type: 'text', order: 5 }) : null); formfields.push(this.isFieldEnabled('townVillage') ? new InputBase({ controlName: 'townVillage', - label: 'Town / Village', + label: this.translateService.instant('labels.inputs.Town / Village'), value: address ? address.townVillage : '', type: 'text', order: 6 }) : null); formfields.push(this.isFieldEnabled('city') ? new InputBase({ controlName: 'city', - label: 'City', + label: this.translateService.instant('labels.inputs.City'), value: address ? address.city : '', type: 'text', order: 7 }) : null); formfields.push(this.isFieldEnabled('stateProvinceId') ? new SelectBase({ controlName: 'stateProvinceId', - label: 'State / Province', + label: this.translateService.instant('labels.inputs.State / Province'), value: address ? address.stateProvinceId : '', options: { label: 'name', value: 'id', data: this.clientTemplate.address[0].stateProvinceIdOptions }, order: 8 }) : null); formfields.push(this.isFieldEnabled('countyDistrict') ? new InputBase({ controlName: 'countryDistrict', - label: 'Country District', + label: this.translateService.instant('labels.inputs.Country District'), value: address ? address.countyDistrict : '', type: 'text', order: 11 }) : null); formfields.push(this.isFieldEnabled('countryId') ? new SelectBase({ controlName: 'countryId', - label: 'Country', + label: this.translateService.instant('labels.inputs.Country'), value: address ? address.countryId : '', options: { label: 'name', value: 'id', data: this.clientTemplate.address[0].countryIdOptions }, order: 10 }) : null); formfields.push(this.isFieldEnabled('postalCode') ? new InputBase({ controlName: 'postalCode', - label: 'Postal Code', + label: this.translateService.instant('labels.inputs.Postal Code'), value: address ? address.postalCode : '', type: 'text', order: 11 diff --git a/src/app/clients/client-stepper/client-family-members-step/client-family-member-dialog/client-family-member-dialog.component.html b/src/app/clients/client-stepper/client-family-members-step/client-family-member-dialog/client-family-member-dialog.component.html index f08ee3d735..98659017f5 100644 --- a/src/app/clients/client-stepper/client-family-members-step/client-family-member-dialog/client-family-member-dialog.component.html +++ b/src/app/clients/client-stepper/client-family-members-step/client-family-member-dialog/client-family-member-dialog.component.html @@ -44,7 +44,7 @@

{{ data.context }} {{"labels.heading.Family Member" | trans {{"labels.inputs.Relationship" | translate}} - {{ relation.name }} + {{ relation.name | translateKey:'catalogs' }} @@ -56,7 +56,7 @@

{{ data.context }} {{"labels.heading.Family Member" | trans {{"labels.inputs.Gender" | translate}} - {{ gender.name }} + {{ gender.name | translateKey:'catalogs' }} @@ -68,7 +68,7 @@

{{ data.context }} {{"labels.heading.Family Member" | trans {{"labels.inputs.Profession" | translate}} - {{ profession.name }} + {{ profession.name | translateKey:'catalogs' }} @@ -78,7 +78,7 @@

{{ data.context }} {{"labels.heading.Family Member" | trans - {{ maritalStatus.name }} + {{ maritalStatus.name | translateKey:'catalogs' }} diff --git a/src/app/clients/client-stepper/client-family-members-step/client-family-members-step.component.ts b/src/app/clients/client-stepper/client-family-members-step/client-family-members-step.component.ts index e35ca35922..4e91e76a2b 100644 --- a/src/app/clients/client-stepper/client-family-members-step/client-family-members-step.component.ts +++ b/src/app/clients/client-stepper/client-family-members-step/client-family-members-step.component.ts @@ -3,6 +3,7 @@ import { Component, Input } from '@angular/core'; import { MatDialog } from '@angular/material/dialog'; /** Custom Components */ +import { TranslateService } from '@ngx-translate/core'; import { DeleteDialogComponent } from 'app/shared/delete-dialog/delete-dialog.component'; import { ClientFamilyMemberDialogComponent } from './client-family-member-dialog/client-family-member-dialog.component'; @@ -23,8 +24,10 @@ export class ClientFamilyMembersStepComponent { /** * @param {MatDialog} dialog Mat Dialog + * @param {TranslateService} translateService Translate Service. */ - constructor(public dialog: MatDialog) { } + constructor(public dialog: MatDialog, + private translateService: TranslateService) { } /** * Adds a family member. @@ -32,7 +35,7 @@ export class ClientFamilyMembersStepComponent { addFamilyMember() { const addFamilyMemberDialogRef = this.dialog.open(ClientFamilyMemberDialogComponent, { data: { - context: 'Add', + context: this.translateService.instant('labels.buttons.Add'), options: this.clientTemplate.familyMemberOptions, }, width: '50rem' diff --git a/src/app/clients/client-stepper/client-general-step/client-general-step.component.html b/src/app/clients/client-stepper/client-general-step/client-general-step.component.html index d249e71c97..c1a554a28b 100644 --- a/src/app/clients/client-stepper/client-general-step/client-general-step.component.html +++ b/src/app/clients/client-stepper/client-general-step/client-general-step.component.html @@ -18,7 +18,7 @@ {{"labels.inputs.Legal Form" | translate}} - {{ legalForm.value }} + {{ legalForm.value | translateKey:'inputs'}} @@ -122,7 +122,7 @@ {{"labels.inputs.Gender" | translate}} - {{ gender.name }} + {{ gender.name | translateKey:'catalogs' }} @@ -159,7 +159,7 @@ {{"labels.inputs.Client Type" | translate}} - {{ clientType.name }} + {{ clientType.name | translateKey:'catalogs' }} diff --git a/src/app/clients/client-stepper/client-preview-step/client-preview-step.component.html b/src/app/clients/client-stepper/client-preview-step/client-preview-step.component.html index 21f3ed0c3b..8a6108ebd7 100644 --- a/src/app/clients/client-stepper/client-preview-step/client-preview-step.component.html +++ b/src/app/clients/client-stepper/client-preview-step/client-preview-step.component.html @@ -85,7 +85,7 @@

{{"labels.heading.General" | translate}}

- {{"labels.inputs.Is Staff" | translate}}? + {{"labels.inputs.Is staff" | translate}}? {{ client.isStaff | yesNo }}
diff --git a/src/assets/translations/cs-CS.json b/src/assets/translations/cs-CS.json index abc0c6c1c0..684e77b67c 100644 --- a/src/assets/translations/cs-CS.json +++ b/src/assets/translations/cs-CS.json @@ -713,6 +713,17 @@ "Re-Invest Maturity Amount": "Částka splatnosti znovu investovat", "Re-Invest Principal Only": "Pouze reinvestice jistiny", "Interest refund": "Vrácení úroků", + "male": "mužský", + "female": "ženský", + "New": "Nový", + "spouse": "manžel", + "father": "otec", + "self employed": "na volné noze", + "salaried employ": "zaměstnávat na mzdu", + "married": "ženatý", + "unmarried": "svobodný", + "office address": "adresa kanceláře", + "residential address": "adresa bydliště", "Transfer to Savings": "Převod do Úspory" }, "commons": { @@ -1162,6 +1173,7 @@ "Added On": "Přidáno na", "Address": "Adresa", "Address Line": "Řádek adresy", + "Address Type": "Typ adresy", "Adjust advance payments toward future installments": "Upravte zálohové platby směrem k budoucím splátkám", "Adjust interest rates for remainder of loan": "Upravte úrokové sazby pro zbytek půjčky", "Advance payments adjustment type": "Typ úpravy záloh", @@ -1364,6 +1376,7 @@ "Core Report": "Základní zpráva", "Count": "Počet", "Country": "Země", + "Country District": "Country District", "Country Code": "Kód země", "Cover Image": "Titulní obrázek", "Create Fixed Deposit Product": "Vytvořte produkt s pevným vkladem", diff --git a/src/assets/translations/de-DE.json b/src/assets/translations/de-DE.json index fb0729725e..01648996bc 100644 --- a/src/assets/translations/de-DE.json +++ b/src/assets/translations/de-DE.json @@ -713,6 +713,17 @@ "Re-Invest Maturity Amount": "Fälligkeitsbetrag reinvestieren", "Re-Invest Principal Only": "Nur Kapital reinvestieren", "Interest refund": "Zinsrückerstattung", + "male": "männlich", + "female": "weiblich", + "New": "Neu", + "spouse": "Ehepartner", + "father": "Vater", + "self employed": "selbstständig", + "salaried employ": "Angestellter", + "married": "verheiratet", + "unmarried": "unverheiratet", + "office address": "Büro adresse", + "residential address": "Wohnadresse", "Transfer to Savings": "Übertragen auf Ersparnisse" }, "commons": { @@ -1162,6 +1173,7 @@ "Added On": "Hinzugefügt zu", "Address": "Adresse", "Address Line": "Adresszeile", + "Address Type": "Adresstyp", "Adjust advance payments toward future installments": "Passen Sie Vorauszahlungen an zukünftige Raten an", "Adjust interest rates for remainder of loan": "Passen Sie die Zinssätze für die Restlaufzeit des Darlehens an", "Advance payments adjustment type": "Art der Anpassung der Vorauszahlungen", @@ -1364,6 +1376,7 @@ "Core Report": "Kernbericht", "Count": "Zählen", "Country": "Land", + "Country District": "Landbezirk", "Country Code": "Landesvorwahl", "Cover Image": "Titelbild", "Create Fixed Deposit Product": "Erstellen Sie ein Festgeldprodukt", diff --git a/src/assets/translations/en-US.json b/src/assets/translations/en-US.json index 30f9e4a53b..e8b9913023 100644 --- a/src/assets/translations/en-US.json +++ b/src/assets/translations/en-US.json @@ -715,6 +715,17 @@ "Re-Invest Maturity Amount": "Re-Invest Maturity Amount", "Re-Invest Principal Only": "Re-Invest Principal Only", "Interest refund": "Interest refund", + "male": "male", + "female": "female", + "New": "New", + "spouse": "spouse", + "father": "father", + "self employed": "self employed", + "salaried employ": "salaried employ", + "married": "married", + "unmarried": "unmarried", + "office address": "office address", + "residential address": "residential address", "Transfer to Savings": "Transfer to Savings" }, "commons": { @@ -1163,6 +1174,7 @@ "Added On": "Added On", "Address": "Address", "Address Line": "Address Line", + "Address Type":"Address Type", "Adjust advance payments toward future installments": "Adjust advance payments toward future installments", "Adjust interest rates for remainder of loan": "Adjust interest rates for remainder of loan", "Advance payments adjustment type": "Advance payments adjustment type", @@ -1365,6 +1377,7 @@ "Core Report": "Core Report", "Count": "Count", "Country": "Country", + "Country District": "Country District", "Country Code": "Country Code", "Cover Image": "Cover Image", "Create Fixed Deposit Product": "Create Fixed Deposit Product", diff --git a/src/assets/translations/es-MX.json b/src/assets/translations/es-MX.json index 58b04d8c08..90ffcf3560 100644 --- a/src/assets/translations/es-MX.json +++ b/src/assets/translations/es-MX.json @@ -712,6 +712,17 @@ "Re-Invest Maturity Amount": "Reinvertir el monto al vencimiento", "Re-Invest Principal Only": "Reinvertir solo el capital", "Interest refund": "Reembolso de intereses", + "male": "masculino", + "female": "femenino", + "New": "Nuevo", + "spouse": "cónyuge", + "father": "padre", + "self employed": "Trabajadores por cuenta propia", + "salaried employ": "empleo asalariado", + "married": "casado", + "unmarried": "soltero", + "office address": "Dirección de la oficina", + "residential address": "dirección residencial", "Transfer to Savings": "Transferir a Ahorros" }, "commons": { @@ -1161,6 +1172,7 @@ "Added On": "Añadido", "Address": "Domicilio", "Address Line": "Dirección", + "Address Type": "Tipo de dirección", "Adjust advance payments toward future installments": "Ajustar los pagos por adelantado a cuotas futuras", "Adjust interest rates for remainder of loan": "Ajustar las tasas de interés para el resto del Crédito", "Advance payments adjustment type": "Tipo de ajuste de pagos anticipados", @@ -1363,6 +1375,7 @@ "Core Report": "Reporte base", "Count": "Contar", "Country": "País", + "Country District": "Distrito rural", "Country Code": "Código de país", "Cover Image": "Imagen principal", "Create Fixed Deposit Product": "Crear producto de Depósito Fijo", diff --git a/src/assets/translations/fr-FR.json b/src/assets/translations/fr-FR.json index 95e90c8907..b4bd5dc078 100644 --- a/src/assets/translations/fr-FR.json +++ b/src/assets/translations/fr-FR.json @@ -713,6 +713,17 @@ "Re-Invest Maturity Amount": "Réinvestir le montant à l’échéance", "Re-Invest Principal Only": "Réinvestir le capital uniquement", "Interest refund": "Remboursement des intérêts", + "male": "mâle", + "female": "femelle", + "New": "Nouveau", + "spouse": "conjoint", + "father": "père", + "self employed": "travailleur indépendant", + "salaried employ": "emploi salarié", + "married": "marié", + "unmarried": "célibataire", + "office address": "Adresse de bureau", + "residential address": "adresse résidentielle", "Transfer to Savings": "Transfert vers l'épargne" }, "commons": { @@ -1162,6 +1173,7 @@ "Added On": "Ajouté", "Address": "Adresse", "Address Line": "Ligne d'adresse", + "Address Type": "Type d'adresse", "Adjust advance payments toward future installments": "Ajuster les paiements anticipés aux versements futurs", "Adjust interest rates for remainder of loan": "Ajuster les taux d’intérêt pour le reste du prêt", "Advance payments adjustment type": "Type d'ajustement des acomptes", @@ -1364,6 +1376,7 @@ "Core Report": "Rapport de base", "Count": "Compter", "Country": "Pays", + "Country District": "Pays District", "Country Code": "Code postal", "Cover Image": "Image de couverture", "Create Fixed Deposit Product": "Créer un produit de dépôt fixe", diff --git a/src/assets/translations/it-IT.json b/src/assets/translations/it-IT.json index f9113ca126..87211037fd 100644 --- a/src/assets/translations/it-IT.json +++ b/src/assets/translations/it-IT.json @@ -713,6 +713,17 @@ "Re-Invest Maturity Amount": "Reinvestimento dell'importo a scadenza", "Re-Invest Principal Only": "Reinvestire solo il capitale", "Interest refund": "Rimborso degli interessi", + "male": "maschio", + "female": "femmina", + "New": "Nuovo", + "spouse": "Sposa", + "father": "padre", + "self employed": "lavoratore autonomo", + "salaried employ": "impiego salariato", + "married": "sposato", + "unmarried": "non sposato", + "office address": "indirizzo dell'ufficio", + "residential address": "indirizzo di residenza", "Transfer to Savings": "Trasferimento al risparmio" }, "commons": { @@ -1162,6 +1173,7 @@ "Added On": "Aggiunto a", "Address": "Indirizzo", "Address Line": "Linea indirizzo", + "Address Type": "Tipo di Indirizzo", "Adjust advance payments toward future installments": "Adeguare gli anticipi alle rate future", "Adjust interest rates for remainder of loan": "Adeguare i tassi di interesse per il resto del prestito", "Advance payments adjustment type": "Tipo di aggiustamento dei pagamenti anticipati", @@ -1364,6 +1376,7 @@ "Core Report": "Rapporto principale", "Count": "Contare", "Country": "Paese", + "Country District": "Distretto di campagna", "Country Code": "Prefisso internazionale", "Cover Image": "Immagine di copertina", "Create Fixed Deposit Product": "Creare un prodotto a deposito fisso", diff --git a/src/assets/translations/ko-KO.json b/src/assets/translations/ko-KO.json index 0e5a6606db..d89321d057 100644 --- a/src/assets/translations/ko-KO.json +++ b/src/assets/translations/ko-KO.json @@ -713,6 +713,17 @@ "Re-Invest Maturity Amount": "만기금액 재투자", "Re-Invest Principal Only": "본인만 재투자", "Interest refund": "이자환급", + "male": "남성", + "female": "여성", + "New": "새로운", + "spouse": "배우자", + "father": "아버지", + "self employed": "자영업자", + "salaried employ": "급여를 받는 고용인", + "married": "기혼", + "unmarried": "미혼", + "office address": "사무실 주소", + "residential address": "거주지 주소", "Transfer to Savings": "저축으로 이체" }, "commons": { @@ -1163,6 +1174,7 @@ "Added On": "추가된 날짜", "Address": "주소", "Address Line": "주소 라인", + "Address Type": "주소 유형", "Adjust advance payments toward future installments": "향후 할부에 대한 선불금 조정", "Adjust interest rates for remainder of loan": "남은 대출금에 대한 이자율 조정", "Advance payments adjustment type": "선지급 조정 유형", @@ -1365,6 +1377,7 @@ "Core Report": "핵심보고서", "Count": "세다", "Country": "국가", + "Country District": "국가 지구", "Country Code": "국가 코드", "Cover Image": "표지 이미지", "Create Fixed Deposit Product": "정기예금 상품 생성", diff --git a/src/assets/translations/lt-LT.json b/src/assets/translations/lt-LT.json index 80aeb92d7c..ef77b1a4eb 100644 --- a/src/assets/translations/lt-LT.json +++ b/src/assets/translations/lt-LT.json @@ -713,6 +713,17 @@ "Re-Invest Maturity Amount": "Iš naujo investuokite termino sumą", "Re-Invest Principal Only": "Iš naujo investuokite tik pagrindinę sumą", "Interest refund": "Palūkanų grąžinimas", + "male": "Patinas", + "female": "Moteris", + "New": "Nauja", + "spouse": "sutuoktinis", + "father": "tėvas", + "self employed": "dirbantis savo paties įmonėje", + "salaried employ": "samdomas darbuotojas", + "married": "Vedęs", + "unmarried": "nevedęs", + "office address": "biuro adresas", + "residential address": "gyvenamosios vietos adresas", "Transfer to Savings": "Perkėlimas į santaupas" }, "commons": { @@ -1162,6 +1173,7 @@ "Added On": "Pridėta", "Address": "Adresas", "Address Line": "Adreso eilutė", + "Address Type": "adreso tipas", "Adjust advance payments toward future installments": "Koreguokite išankstinius mokėjimus būsimoms įmokoms", "Adjust interest rates for remainder of loan": "Pakoreguokite palūkanų normas likusiai paskolos daliai", "Advance payments adjustment type": "Avansinių mokėjimų koregavimo tipas", @@ -1364,6 +1376,7 @@ "Core Report": "Pagrindinė ataskaita", "Count": "Suskaičiuoti", "Country": "Šalis", + "Country District": "Šalies rajonas", "Country Code": "Šalies kodas", "Cover Image": "Viršelio vaizdas", "Create Fixed Deposit Product": "Sukurkite fiksuoto indėlio produktą", diff --git a/src/assets/translations/lv-LV.json b/src/assets/translations/lv-LV.json index 322a0f162e..daccb11351 100644 --- a/src/assets/translations/lv-LV.json +++ b/src/assets/translations/lv-LV.json @@ -713,6 +713,17 @@ "Re-Invest Maturity Amount": "Atkārtoti ieguldīt termiņa summu", "Re-Invest Principal Only": "Reinvestēt tikai pamatsummu", "Interest refund": "Procentu atmaksa", + "male": "vīrietis", + "female": "sieviete", + "New": "Jauns", + "spouse": "laulātais", + "father": "tēvs", + "self employed": "pašnodarbināts", + "salaried employ": "algots darbinieks", + "married": "precējies", + "unmarried": "neprecējies", + "office address": "biroja adrese", + "residential address": "dzīvesvietas adrese", "Transfer to Savings": "Pārskaitījums uz uzkrājumiem" }, "commons": { @@ -1162,6 +1173,7 @@ "Added On": "Pievienots", "Address": "Adrese", "Address Line": "Adreses līnija", + "Address Type": "Adreses veids", "Adjust advance payments toward future installments": "Pielāgojiet avansa maksājumus turpmākajām iemaksām", "Adjust interest rates for remainder of loan": "Pielāgojiet procentu likmes atlikušajai aizdevuma daļai", "Advance payments adjustment type": "Avansa maksājumu korekcijas veids", @@ -1364,6 +1376,7 @@ "Core Report": "Pamatziņojums", "Count": "Skaitīt", "Country": "Valsts", + "Country District": "Lauku rajons", "Country Code": "Valsts kods", "Cover Image": "Vāka attēls", "Create Fixed Deposit Product": "Izveidojiet fiksētā depozīta produktu", diff --git a/src/assets/translations/ne-NE.json b/src/assets/translations/ne-NE.json index 4591c67790..a091350445 100644 --- a/src/assets/translations/ne-NE.json +++ b/src/assets/translations/ne-NE.json @@ -713,6 +713,17 @@ "Re-Invest Maturity Amount": "परिपक्वता रकम पुन: लगानी गर्नुहोस्", "Re-Invest Principal Only": "पुन: लगानी प्रिन्सिपल मात्र", "Interest refund": "ब्याज फिर्ता", + "male": "पुरुष", + "female": "महिला", + "New": "नयाँ", + "spouse": "पति/पत्नी", + "father": "बुबा", + "self employed": "स्वरोजगार", + "salaried employ": "तलब पाएको रोजगारी", + "married": "विवाहित", + "unmarried": "अविवाहित", + "office address": "कार्यालय ठेगाना", + "residential address": "आवासीय ठेगाना", "Transfer to Savings": "बचतमा स्थानान्तरण गर्नुहोस्" }, "commons": { @@ -1162,6 +1173,7 @@ "Added On": "मा थपियो", "Address": "ठेगाना", "Address Line": "ठेगाना लाइन", + "Address Type": "ठेगानाको प्रकार", "Adjust advance payments toward future installments": "भविष्यका किस्ताहरूमा अग्रिम भुक्तानीहरू समायोजन गर्नुहोस्", "Adjust interest rates for remainder of loan": "बाँकी ऋणको लागि ब्याज दर समायोजन गर्नुहोस्", "Advance payments adjustment type": "अग्रिम भुक्तानी समायोजन प्रकार", @@ -1364,6 +1376,7 @@ "Core Report": "कोर रिपोर्ट", "Count": "गणना गर्नुहोस्", "Country": "देश", + "Country District": "देश जिल्ला", "Country Code": "देश कोड", "Cover Image": "आवरण छवि", "Create Fixed Deposit Product": "फिक्स्ड डिपोजिट उत्पादन सिर्जना गर्नुहोस्", diff --git a/src/assets/translations/pt-PT.json b/src/assets/translations/pt-PT.json index cfd4439e10..fe59db5a73 100644 --- a/src/assets/translations/pt-PT.json +++ b/src/assets/translations/pt-PT.json @@ -713,6 +713,17 @@ "Re-Invest Maturity Amount": "Reinvestir o valor do vencimento", "Re-Invest Principal Only": "Reinvestir apenas o principal", "Interest refund": "Reembolso de juros", + "male": "macho", + "female": "fêmea", + "New": "Novo", + "spouse": "cônjuge", + "father": "pai", + "self employed": "trabalhadores por conta própria", + "salaried employ": "emprego assalariado", + "married": "casado", + "unmarried": "solteiro", + "office address": "Endereço do escritório", + "residential address": "endereço residencial", "Transfer to Savings": "Transferência para Poupança" }, "commons": { @@ -1162,6 +1173,7 @@ "Added On": "Adicionado", "Address": "Endereço", "Address Line": "Linha de endereço", + "Address Type": "tipo de endereço", "Adjust advance payments toward future installments": "Ajustar pagamentos antecipados para parcelas futuras", "Adjust interest rates for remainder of loan": "Ajustar as taxas de juros para o restante do empréstimo", "Advance payments adjustment type": "Tipo de ajuste de adiantamento", @@ -1364,6 +1376,7 @@ "Core Report": "Relatório principal", "Count": "Contar", "Country": "País", + "Country District": "Distrito rural", "Country Code": "Código do país", "Cover Image": "Imagem de capa", "Create Fixed Deposit Product": "Criar produto de depósito fixo", diff --git a/src/assets/translations/sw-SW.json b/src/assets/translations/sw-SW.json index a6e0e9a8cf..fb13e79ab6 100644 --- a/src/assets/translations/sw-SW.json +++ b/src/assets/translations/sw-SW.json @@ -713,6 +713,17 @@ "Re-Invest Maturity Amount": "Wekeza Tena Kiasi cha Ukomavu", "Re-Invest Principal Only": "Wekeza tena Mkuu Pekee", "Interest refund": "Urejeshaji wa riba", + "male": "kiume", + "female": "kike", + "New": "Mpya", + "spouse": "mwenzi", + "father": "baba", + "self employed": "kazi binafsi", + "salaried employ": "kuajiriwa", + "married": "ndoa", + "unmarried": "bila kuolewa", + "office address": "anwani ya ofisi", + "residential address": "anwani ya makazi", "Transfer to Savings": "Hamisha kwa Akiba" }, "commons": { @@ -1162,6 +1173,7 @@ "Added On": "Imeongezwa", "Address": "Anwani", "Address Line": "Mstari wa Anwani", + "Address Type": "Aina ya Anwani", "Adjust advance payments toward future installments": "Rekebisha malipo ya awali kwa awamu zijazo", "Adjust interest rates for remainder of loan": "Rekebisha viwango vya riba kwa salio la mkopo", "Advance payments adjustment type": "Aina ya marekebisho ya malipo ya mapema", @@ -1364,6 +1376,7 @@ "Core Report": "Ripoti ya Msingi", "Count": "Hesabu", "Country": "Nchi", + "Country District": "Wilaya ya Nchi", "Country Code": "Msimbo wa Nchi", "Cover Image": "Picha ya Jalada", "Create Fixed Deposit Product": "Unda Bidhaa ya Amana isiyobadilika",