Updates fee levels strings for translate

This commit is contained in:
Gustavo Maximiliano Cortez 2015-07-29 13:07:35 -03:00
commit aa3870a831
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
3 changed files with 10 additions and 3 deletions

View file

@ -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;