copay-crown
Version:
A Secure Crown Wallet
29 lines (25 loc) • 971 B
HTML
<ion-header>
<ion-navbar>
<ion-title>{{'Language'|translate}}</ion-title>
</ion-navbar>
</ion-header>
<ion-content>
<ion-list radio-group [(ngModel)]="currentLanguage">
<ion-item *ngFor="let language of languages">
<ion-label>
{{ language.name }}
</ion-label>
<ion-radio (click)="save(language.isoCode)" [value]="language.isoCode"></ion-radio>
</ion-item>
<ion-item-divider text-wrap>
<div translate>
We’re always looking for translation contributions! You can make corrections or help to make this app available in your native
language by joining our community on Crowdin.
</div>
<div translate>
Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language.
</div>
</ion-item-divider>
</ion-list>
<button ion-button block clear (click)="openExternalLink()">{{'Contribute Translations'|translate}}</button>
</ion-content>