From 2c0c8c2106e747fa1f8dd59434862dfaa76aa9bf Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Thu, 9 Jun 2016 13:41:54 -0300 Subject: [PATCH] Fix translation of fee levels --- src/js/services/feeService.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/js/services/feeService.js b/src/js/services/feeService.js index 7a723ab32..c046c1829 100644 --- a/src/js/services/feeService.js +++ b/src/js/services/feeService.js @@ -1,14 +1,14 @@ 'use strict'; -angular.module('copayApp.services').factory('feeService', function($log, bwcService, profileService, configService, gettextCatalog, lodash) { +angular.module('copayApp.services').factory('feeService', function($log, bwcService, profileService, configService, gettext, lodash) { var root = {}; // Constant fee options to translate root.feeOpts = { - priority: gettextCatalog.getString('Priority'), - normal: gettextCatalog.getString('Normal'), - economy: gettextCatalog.getString('Economy'), - superEconomy: gettextCatalog.getString('Super Economy') + priority: gettext('Priority'), + normal: gettext('Normal'), + economy: gettext('Economy'), + superEconomy: gettext('Super Economy') }; root.getCurrentFeeLevel = function() {