copay/public/views/preferencesLanguage.html

25 lines
1.0 KiB
HTML
Raw Normal View History

2016-06-09 13:20:17 -07:00
<div class="topbar-container" ng-include="'views/includes/topbar.html'"
ng-init="titleSection='Language'; goBackToState = 'preferencesGlobal'; noColor = true">
2015-05-08 05:35:33 -07:00
</div>
2016-06-10 05:35:44 -07:00
<div class="content preferences" ng-controller="preferencesLanguageController">
2015-10-08 07:58:55 -07:00
<h4></h4>
2016-06-09 13:20:17 -07:00
2016-06-10 09:06:52 -07:00
<ion-radio class="line-b size-12 radio-label" ng-repeat="lang in availableLanguages" ng-value="lang.isoCode" ng-model="currentLanguage"
2016-06-10 05:35:44 -07:00
ng-click="save(lang.isoCode)">{{lang.name}}
2016-06-09 13:20:17 -07:00
</ion-radio>
2016-06-14 07:56:35 -07:00
<div class="row m20v">
<div class="columns text-center">
<p class="size-12 text-black">
<span translate>All contributions to Copay's translation are welcome. Sign up at crowdin.com and join the Copay project at</span>
<a href="https://crowdin.com/project/copay" target="_blank">https://crowdin.com/project/copay</a>.
</p>
<span class="size-12 text-gray" translate>
Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language.
</span>
</div>
</div>
2015-04-22 11:19:08 -07:00
</div>