1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00
This commit is contained in:
addison
2021-02-05 12:44:45 -05:00
parent ec933025f3
commit f537a8a601
3 changed files with 14 additions and 5 deletions

View File

@@ -1,4 +1,5 @@
import { Component, OnInit } from '@angular/core';
import { Component } from '@angular/core';
import { I18nService } from 'jslib/abstractions/i18n.service';
@Component({
selector: 'app-nav',
@@ -9,7 +10,7 @@ export class NavComponent {
{
link: '/vault',
icon: 'fa-lock',
label: 'My Vault',
label: this.i18nService.translate('myVault'),
},
{
link: '/send',
@@ -17,4 +18,6 @@ export class NavComponent {
label: 'Send',
},
];
constructor(private i18nService: I18nService) {}
}