use gettext

This commit is contained in:
Gabriel Bazán 2016-12-13 14:42:28 -03:00
commit 867d315ad4

View file

@ -5,10 +5,10 @@ angular.module('copayApp.services').factory('feeService', function($log, $stateP
// Constant fee options to translate // Constant fee options to translate
root.feeOpts = { root.feeOpts = {
priority: gettextCatalog.getString('Priority'), priority: gettext('Priority'),
normal: gettextCatalog.getString('Normal'), normal: gettext('Normal'),
economy: gettextCatalog.getString('Economy'), economy: gettext('Economy'),
superEconomy: gettextCatalog.getString('Super Economy') superEconomy: gettext('Super Economy')
}; };
root.getCurrentFeeLevel = function() { root.getCurrentFeeLevel = function() {