Adds translated strings
This commit is contained in:
parent
f6c396d541
commit
56597ea65c
5 changed files with 187 additions and 97 deletions
|
|
@ -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,
|
||||
}];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue