openMF / community-app

This was the former default web application built on top of the Apache Fineract platform. It's now deprecated and replaced by the the Mifos X Web App (https://github.com/openMF/web-app maintained by the Mifos Initiative as a reference solution for financial inclusion. It is a Single-Page App (SPA) written in web standard technologies.
http://openmf.github.io/community-app/
Mozilla Public License 2.0
313 stars 1.02k forks source link

Dropdowns are using values directly from API instead of using translation #3103

Open santoshconflux opened 5 years ago

santoshconflux commented 5 years ago

Reported by Chandrika at https://mifosforge.jira.com/browse/MIFOSX-2081

Original Description: For example, the below dropdown uses documenttype.name from API (which is by default in English language).Instead we should use translate(documenttype.name) so that the values will be in sync with the respective language selected by user. <select id="documentTypeId" ng-model="formData.documentTypeId" ng-options="documenttype.id as documenttype.name for documenttype in documenttypes" value="documenttype.id" required="required" class="form-control">

santoshconflux commented 5 years ago

Fineract side ticket : https://issues.apache.org/jira/browse/FINERACT-305