Skip to content

Commit

Permalink
fix(fiscal): add missing i18n translations
Browse files Browse the repository at this point in the history
This commit fixes a few keys in the fiscal year module that were
untranslated.
  • Loading branch information
jniles committed Jul 28, 2017
1 parent 5a04825 commit c86997b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion client/src/i18n/en/form.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@
"UNPOSTED_TRANSACTION": "Unposted Transactions",
"UPDATE_SUCCESS": "Updated successfully",
"UPLOAD_PICTURE_FAILED": "The selected file is not an picture",
"VIEW_BEGINNING_BALACE": "View Beginning Balance"
"VIEW_BEGINNING_BALANCE": "View Beginning Balance",
"VIEW_CLOSING_BALANCE": "View Closing Balance"
},
"LABELS": {
"ABBREVIATION": "Abbreviation",
Expand Down
3 changes: 2 additions & 1 deletion client/src/i18n/fr/form.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@
"UNPOSTED_TRANSACTION": "Transactions non postées",
"UPDATE_SUCCESS": "Mise à jour avec succès",
"UPLOAD_PICTURE_FAILED": "Le fichier selectionné n'est pas une image",
"VIEW_BEGINNING_BALACE": "Aperçue de la balance d'ouverture"
"VIEW_BEGINNING_BALANCE": "Aperçue de la balance d'ouverture",
"VIEW_CLOSING_BALANCE": "Aperçue de la balance de cloture"
},
"LABELS": {
"ABBREVIATION": "Abbreviation",
Expand Down
2 changes: 1 addition & 1 deletion client/src/modules/fiscal/fiscal.manage.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<!-- opening balance -->
<button type="button" class="btn btn-default" data-action="opening-balance" ui-sref="fiscal.openingBalance({ id: FiscalManageCtrl.fiscal.id })">
<i class="fa fa-balance-scale"></i>
<span translate>FORM.INFO.VIEW_BEGINING_BALANCE</span>
<span translate>FORM.INFO.VIEW_BEGINNING_BALANCE</span>
</button>

<!-- closing balance -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ <h4 style="border-top: 1px dashed #ccc; margin-top: 10px;" class="text-bold">
<bh-account-select
account-id="$ctrl.resultAccount.id"
on-select-callback="$ctrl.onSelectAccount(account)"
label="FORM.SELECT.RESULT_ACCOUNT"
label="FORM.SELECT.RESULT_ACCOUNT_SCT"
excludeTitleAccounts="true">
</bh-account-select>
</div>
Expand Down

0 comments on commit c86997b

Please sign in to comment.