mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 00:03:56 +00:00
i18n support
added support for i18n
This commit is contained in:
committed by
Kyle Spearrin
parent
53af5e234b
commit
6d60eb621e
@@ -1,8 +1,11 @@
|
||||
angular
|
||||
.module('bit.accounts')
|
||||
|
||||
.controller('accountsRegisterController', function ($scope, $state, cryptoService, toastr, $q, apiService, utilsService,
|
||||
$analytics) {
|
||||
.controller(
|
||||
'accountsRegisterController',
|
||||
function ($scope, $state, cryptoService, toastr, $q, apiService, utilsService, $analytics, i18nService) {
|
||||
$scope.i18n = i18nService;
|
||||
|
||||
$scope.model = {};
|
||||
utilsService.initListSectionItemListeners($(document), angular);
|
||||
$('#email').focus();
|
||||
|
||||
Reference in New Issue
Block a user