mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 13:53:34 +00:00
PM-13318 - Fix missed page titles which didn't get converted to the new translation interface (#11572)
This commit is contained in:
@@ -422,8 +422,12 @@ const routes: Routes = [
|
|||||||
path: "hint",
|
path: "hint",
|
||||||
canActivate: [unauthGuardFn(unauthRouteOverrides)],
|
canActivate: [unauthGuardFn(unauthRouteOverrides)],
|
||||||
data: {
|
data: {
|
||||||
pageTitle: "requestPasswordHint",
|
pageTitle: {
|
||||||
pageSubtitle: "enterYourAccountEmailAddressAndYourPasswordHintWillBeSentToYou",
|
key: "requestPasswordHint",
|
||||||
|
},
|
||||||
|
pageSubtitle: {
|
||||||
|
key: "enterYourAccountEmailAddressAndYourPasswordHintWillBeSentToYou",
|
||||||
|
},
|
||||||
pageIcon: UserLockIcon,
|
pageIcon: UserLockIcon,
|
||||||
showBackButton: true,
|
showBackButton: true,
|
||||||
state: "hint",
|
state: "hint",
|
||||||
|
|||||||
@@ -184,7 +184,9 @@ const routes: Routes = [
|
|||||||
path: "hint",
|
path: "hint",
|
||||||
canActivate: [unauthGuardFn()],
|
canActivate: [unauthGuardFn()],
|
||||||
data: {
|
data: {
|
||||||
pageTitle: "passwordHint",
|
pageTitle: {
|
||||||
|
key: "passwordHint",
|
||||||
|
},
|
||||||
titleId: "passwordHint",
|
titleId: "passwordHint",
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
@@ -203,8 +205,12 @@ const routes: Routes = [
|
|||||||
path: "hint",
|
path: "hint",
|
||||||
canActivate: [unauthGuardFn()],
|
canActivate: [unauthGuardFn()],
|
||||||
data: {
|
data: {
|
||||||
pageTitle: "requestPasswordHint",
|
pageTitle: {
|
||||||
pageSubtitle: "enterYourAccountEmailAddressAndYourPasswordHintWillBeSentToYou",
|
key: "requestPasswordHint",
|
||||||
|
},
|
||||||
|
pageSubtitle: {
|
||||||
|
key: "enterYourAccountEmailAddressAndYourPasswordHintWillBeSentToYou",
|
||||||
|
},
|
||||||
pageIcon: UserLockIcon,
|
pageIcon: UserLockIcon,
|
||||||
state: "hint",
|
state: "hint",
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -62,7 +62,9 @@ const routes: Routes = [
|
|||||||
path: "accept-provider",
|
path: "accept-provider",
|
||||||
component: AcceptProviderComponent,
|
component: AcceptProviderComponent,
|
||||||
data: {
|
data: {
|
||||||
pageTitle: "joinProvider",
|
pageTitle: {
|
||||||
|
key: "joinProvider",
|
||||||
|
},
|
||||||
titleId: "acceptProvider",
|
titleId: "acceptProvider",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user