Update translations for controllers and services

This commit is contained in:
Gustavo Maximiliano Cortez 2015-04-29 19:19:10 -03:00
commit cbf3d7cceb
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
22 changed files with 564 additions and 195 deletions

View file

@ -1,6 +1,6 @@
'use strict';
angular.module('copayApp.controllers').controller('indexController', function($rootScope, $scope, $log, $filter, $timeout, lodash, go, profileService, configService, isCordova, rateService, storageService, gettextCatalog, amMoment) {
angular.module('copayApp.controllers').controller('indexController', function($rootScope, $scope, $log, $filter, $timeout, lodash, go, profileService, configService, isCordova, rateService, storageService, gettextCatalog, gettext, amMoment) {
var self = this;
self.isCordova = isCordova;
@ -12,19 +12,19 @@ angular.module('copayApp.controllers').controller('indexController', function($r
};
self.menu = [{
'title': 'Home',
'title': gettext('Home'),
'icon': 'icon-home',
'link': 'walletHome'
}, {
'title': 'Receive',
'title': gettext('Receive'),
'icon': 'icon-receive',
'link': 'receive'
}, {
'title': 'Send',
'title': gettext('Send'),
'icon': 'icon-paperplane',
'link': 'send'
}, {
'title': 'History',
'title': gettext('History'),
'icon': 'icon-history',
'link': 'history'
}];
@ -32,16 +32,16 @@ angular.module('copayApp.controllers').controller('indexController', function($r
self.tab = 'walletHome';
self.availableLanguages = [{
name: 'English',
name: gettext('English'),
isoCode: 'en',
}, {
name: 'Spanish',
name: gettext('Spanish'),
isoCode: 'es',
}, {
name: 'Français',
name: gettext('French'),
isoCode: 'fr',
}, {
name: '日本人',
name: gettext('Japanese'),
isoCode: 'ja',
}];