You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
446 B

  1. <ion-view view-title="{{'Settings' | translate}}">
  2. <ion-content>
  3. <h1>{{'Settings' | translate}}</h1>
  4. <label class="item item-input item-select">
  5. <div class="input-label">
  6. {{'Actual_language' | translate}}
  7. </div>
  8. <select ng-model="lang" ng-change="langChange(this.lang)">
  9. <option value="english">english</option>
  10. <option value="catala">català</option>
  11. </select>
  12. </label>
  13. </ion-content>
  14. </ion-view>