Merge pull request #126 from Bitcoin-com/wallet/task/332

Wallet/task/332
This commit is contained in:
Jean-Baptiste Dominguez 2018-05-22 18:30:52 +09:00 committed by GitHub
commit faa4038f9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 16160 additions and 1653 deletions

View file

@ -6,7 +6,7 @@ angular.module('copayApp.controllers').controller('preferencesLanguageController
$scope.availableLanguages = uxLanguage.getLanguages();
$scope.openExternalLink = function() {
var url = 'https://crowdin.com/project/copay';
var url = 'https://crowdin.com/project/bitcoincom-wallet';
var optIn = true;
var title = gettextCatalog.getString('Open Translation Community');
var message = gettextCatalog.getString('You can make contributions by signing up on our Crowdin community translation website. Were looking forward to hearing from you!');

View file

@ -9,6 +9,14 @@ angular.module('copayApp.services')
name: 'English',
isoCode: 'en',
rateCode: 'USD'
}, {
name: 'Čeština',
isoCode: 'cs',
rateCode: 'EUR'
}, {
name: 'Deutsch',
isoCode: 'de',
rateCode: 'EUR'
}, {
name: 'Español',
isoCode: 'es',
@ -29,10 +37,6 @@ angular.module('copayApp.services')
name: 'Polski',
isoCode: 'pl',
rateCode: 'EUR'
}, {
name: 'Deutsch',
isoCode: 'de',
rateCode: 'EUR'
}, {
name: '日本語',
isoCode: 'ja',
@ -55,13 +59,12 @@ angular.module('copayApp.services')
name: '한국어',
isoCode: 'ko',
rateCode: 'KRW'
}, {
name: 'فارسی',
isoCode: 'fa',
rateCode: 'IRR'
}];
// }, {
// name: 'Český',
// isoCode: 'cs',
// }
root._detect = function(cb) {
var userLang, androidLang;
if (navigator && navigator.globalization) {