Adds translated strings

This commit is contained in:
Gustavo Maximiliano Cortez 2015-06-22 17:12:54 -03:00
commit 56597ea65c
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
5 changed files with 187 additions and 97 deletions

View file

@ -1,17 +1,17 @@
'use strict';
angular.module('copayApp.controllers').controller('preferencesFeeController',
function($rootScope, $scope, configService, go) {
function($rootScope, $scope, configService, go, gettext) {
var config = configService.getSync();
this.feeName = config.wallet.settings.feeName || 'Priority';
this.feeOpts = [{
name: 'Priority',
name: gettext('Priority'),
value: 100,
}, {
name: 'Normal',
name: gettext('Normal'),
value: 50,
}, {
name: 'Economy',
name: gettext('Economy'),
value: 10,
}];