Skip to content

Commit

Permalink
fix(i18n): add french translations for everything
Browse files Browse the repository at this point in the history
This commit brings the French translations up to date with the English
ones.  All new items have the correct translation now.
  • Loading branch information
Jonathan Niles authored and jniles committed Jan 6, 2017
1 parent 81b0335 commit 4b93519
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
20 changes: 13 additions & 7 deletions client/src/i18n/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,7 @@
"DEFINE_UNTIL_DATE" : "Définir une date limite",
"DESCRIPTION" : "Description",
"DETAILS" : "Details",
"DEFAULT_QUANTITY" : "Quantité par Défaut",
"DESIGNATION" : "Désignation",
"DISTRIBUTABLE" : "Distribuable",
"DISABLED" : "Désactivée",
Expand Down Expand Up @@ -662,6 +663,7 @@
"UNCONFIGURED" : "Non configuree",
"UNDEFINED" : "Non defini",
"UNIT" : "Forme galenique",
"UNIT_PRICE" : "Prix Unitaire",
"UNIT_WEIGHT" : "Poids",
"UNIT_VOLUME" : "Volume",
"UNTIL_DATE" : "jusqu'à la date",
Expand Down Expand Up @@ -724,7 +726,8 @@
"FILTER_NAME" : "Filtrer par Nom...",
"FILTER_BY" : "Filtrer par",
"SEARCH_NAME" : "Chercher Par Nom",
"SEARCH_PATIENT_ID" : "Chercher ID Patient"
"SEARCH_PATIENT_ID" : "Chercher ID Patient",
"QUANTITY" : "Entrer le Quantité"
},
"SELECT": {
"EMPTY" : "Vide",
Expand Down Expand Up @@ -826,17 +829,19 @@
}
},
"INVENTORY" : {
"ADD_GROUP" : "Ajouter Groupe d'inventaires",
"ADD_METADATA" : "Ajouter inventaire",
"ADD_TYPE" : "Ajouter Types d'inventaires",
"ADD_UNIT" : "Ajouter Forme d'inventaires",
"ADD_GROUP" : "Ajouter Groupe d'Inventaires",
"ADD_METADATA" : "Ajouter Inventaire",
"ADD_TYPE" : "Ajouter Types d'Inventaires",
"ADD_UNIT" : "Ajouter Forme d'Inventaires",
"CONFIGURATION" : "Configurations",
"CONTAINS" : "Contient",
"CREATE_ANOTHER" : "Ajouter une Autre Inventaires",
"DEFAULT_QUANTITY_DEFINITION" : "Ce champ suggérera le quantité par défaut dans le facture.",
"EDIT_GROUP" : "Modifier Groupe d'inventaires",
"EDIT_METADATA" : "Modifier inventaire",
"EDIT_METADATA" : "Modifier Inventaire",
"EDIT_TYPE" : "Modifier Types d'inventaires",
"EDIT_UNIT" : "Modifier Forme d'inventaires",
"ELEMENT" : "Elt",
"ELEMENT" : "Élément",
"LIST" : "Liste des données d'inventaire",
"LIST_METADATA" : "Inventaires",
"LIST_GROUP" : "Groupes d'inventaires",
Expand Down Expand Up @@ -917,6 +922,7 @@
},
"INVALID_DETAILS" : "Cette facture contient des détails invalides",
"INVALID_ITEMS" : "Cette facture contient des articles invalides",
"LABEL_PAID" : "Cette facture a été payé.",
"PAGE_TITLE" : "Facture des patients",
"STAT_TOTAL_INVOICE" : "Total factures",
"STAT_PAID" : "Payés",
Expand Down
2 changes: 1 addition & 1 deletion client/src/partials/patient_invoice/patientInvoice.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function PatientInvoiceController(Patients, PatientInvoices, PatientInvoiceForm,
{ field: 'code', displayName: 'TABLE.COLUMNS.CODE', headerCellFilter: 'translate', cellTemplate: 'partials/patient_invoice/templates/grid/code.tmpl.html' },
{ field: 'description', displayName: 'TABLE.COLUMNS.DESCRIPTION', headerCellFilter: 'translate' },
{ field: 'quantity', displayName: 'TABLE.COLUMNS.QUANTITY', headerCellFilter: 'translate', cellTemplate: 'partials/patient_invoice/templates/grid/quantity.tmpl.html' },
{ field: 'transaction_price', displayName: 'TABLE.COLUMNS.TRANSACTION_PRICE', headerCellFilter: 'translate', cellTemplate: 'partials/patient_invoice/templates/grid/unit.tmpl.html' },
{ field: 'transaction_price', displayName: 'FORM.LABELS.UNIT_PRICE', headerCellFilter: 'translate', cellTemplate: 'partials/patient_invoice/templates/grid/unit.tmpl.html' },
{ field: 'amount', displayName: 'TABLE.COLUMNS.AMOUNT', headerCellFilter: 'translate', cellTemplate: 'partials/patient_invoice/templates/grid/amount.tmpl.html' },
{ field: 'actions', width: 25, cellTemplate: 'partials/patient_invoice/templates/grid/actions.tmpl.html' }
],
Expand Down

0 comments on commit 4b93519

Please sign in to comment.