mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-27 12:36:14 +01:00
cleanup
This commit is contained in:
parent
ec933025f3
commit
f537a8a601
@ -14,9 +14,10 @@ import { SetPasswordComponent } from './accounts/set-password.component';
|
||||
import { SsoComponent } from './accounts/sso.component';
|
||||
import { TwoFactorComponent } from './accounts/two-factor.component';
|
||||
|
||||
import { VaultComponent } from './vault/vault.component';
|
||||
import { SendComponent } from './send/send.component';
|
||||
|
||||
import { VaultComponent } from './vault/vault.component';
|
||||
|
||||
const routes: Routes = [
|
||||
{ path: '', redirectTo: '/vault', pathMatch: 'full' },
|
||||
{ path: 'lock', component: LockComponent },
|
||||
|
@ -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) {}
|
||||
}
|
||||
|
@ -1499,7 +1499,8 @@
|
||||
"message": "An organization policy is affecting your ownership options."
|
||||
},
|
||||
"allSends": {
|
||||
"message": "All Sends"
|
||||
"message": "All Sends",
|
||||
"description": "'Sends' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
|
||||
},
|
||||
"sendTypeFile": {
|
||||
"message": "File"
|
||||
@ -1512,6 +1513,10 @@
|
||||
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
|
||||
},
|
||||
"sendInformation": {
|
||||
"message": "Send Information"
|
||||
"message": "Send Information",
|
||||
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
|
||||
},
|
||||
"myVault": {
|
||||
"message": "My Vault"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user