Updates fee levels strings for translate
This commit is contained in:
parent
69852fe0ed
commit
aa3870a831
3 changed files with 10 additions and 3 deletions
|
|
@ -1,8 +1,15 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.services').factory('feeService', function($log, profileService, configService) {
|
||||
angular.module('copayApp.services').factory('feeService', function($log, profileService, configService, gettextCatalog) {
|
||||
var root = {};
|
||||
|
||||
// Constant fee options to translate
|
||||
var feeOpts = [
|
||||
gettextCatalog.getString('priority'),
|
||||
gettextCatalog.getString('normal'),
|
||||
gettextCatalog.getString('economy')
|
||||
];
|
||||
|
||||
root.getCurrentFeeValue = function(cb) {
|
||||
var fc = profileService.focusedClient;
|
||||
var config = configService.getSync().wallet.settings;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue