This commit is contained in:
Gabriel Bazán 2017-03-10 11:42:34 -03:00
commit 6da9aa789f
2 changed files with 5 additions and 15 deletions

View file

@ -279,10 +279,6 @@ msgstr ""
msgid "Be sure to store your recovery phrase in a secure place. If this app is deleted, your money cannot be recovered without it." msgid "Be sure to store your recovery phrase in a secure place. If this app is deleted, your money cannot be recovered without it."
msgstr "" msgstr ""
#: src/js/controllers/tab-settings.js:45
msgid "BitPay Help Center"
msgstr ""
#: www/views/preferencesBitpayServices.html:9 #: www/views/preferencesBitpayServices.html:9
msgid "BitPay Visa® Cards" msgid "BitPay Visa® Cards"
msgstr "" msgstr ""
@ -474,10 +470,6 @@ msgstr ""
msgid "Contribute Translations" msgid "Contribute Translations"
msgstr "" msgstr ""
#: src/js/controllers/tab-settings.js:45
msgid "Copay Github Issues"
msgstr ""
#: src/js/services/bwcError.js:62 #: src/js/services/bwcError.js:62
msgid "Copayer already in this wallet" msgid "Copayer already in this wallet"
msgstr "" msgstr ""
@ -1036,7 +1028,7 @@ msgstr ""
#: src/js/controllers/preferencesAbout.js:16 #: src/js/controllers/preferencesAbout.js:16
#: src/js/controllers/preferencesLanguage.js:14 #: src/js/controllers/preferencesLanguage.js:14
#: src/js/controllers/tab-home.js:144 #: src/js/controllers/tab-home.js:144
#: src/js/controllers/tab-settings.js:50 #: src/js/controllers/tab-settings.js:48
#: src/js/controllers/tx-details.js:159 #: src/js/controllers/tx-details.js:159
msgid "Go Back" msgid "Go Back"
msgstr "" msgstr ""
@ -1067,7 +1059,7 @@ msgid "Help & Support"
msgstr "" msgstr ""
#: src/js/controllers/tab-settings.js:46 #: src/js/controllers/tab-settings.js:46
msgid "Help and support information is available at the {{msg}} website." msgid "Help and support information is available at the website."
msgstr "" msgstr ""
#: www/views/addresses.html:29 #: www/views/addresses.html:29
@ -1556,7 +1548,7 @@ msgstr ""
msgid "On this screen you can see all your wallets, accounts, and assets." msgid "On this screen you can see all your wallets, accounts, and assets."
msgstr "" msgstr ""
#: src/js/controllers/tab-settings.js:49 #: src/js/controllers/tab-settings.js:47
msgid "Open" msgid "Open"
msgstr "" msgstr ""

View file

@ -42,10 +42,8 @@ angular.module('copayApp.controllers').controller('tabSettingsController', funct
var appName = appConfigService.name; var appName = appConfigService.name;
var url = appName == 'copay' ? 'https://github.com/bitpay/copay/issues' : 'https://help.bitpay.com/bitpay-app'; var url = appName == 'copay' ? 'https://github.com/bitpay/copay/issues' : 'https://help.bitpay.com/bitpay-app';
var optIn = true; var optIn = true;
var title = appName == 'copay' ? gettextCatalog.getString('Copay Github Issues') : gettextCatalog.getString('BitPay Help Center'); var title = null;
var message = gettextCatalog.getString('Help and support information is available at the {{msg}} website.', { var message = gettextCatalog.getString('Help and support information is available at the website.');
msg: title
});
var okText = gettextCatalog.getString('Open'); var okText = gettextCatalog.getString('Open');
var cancelText = gettextCatalog.getString('Go Back'); var cancelText = gettextCatalog.getString('Go Back');
externalLinkService.open(url, optIn, title, message, okText, cancelText); externalLinkService.open(url, optIn, title, message, okText, cancelText);