Fix translation of fee levels
This commit is contained in:
parent
a0c64ea88d
commit
2c0c8c2106
1 changed files with 5 additions and 5 deletions
|
|
@ -1,14 +1,14 @@
|
||||||
'use strict';
|
'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 = {};
|
var root = {};
|
||||||
|
|
||||||
// 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() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue