aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+accounts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-08-17 10:30:59 +0200
committerChocobozzz <me@florianbigard.com>2020-08-17 10:30:59 +0200
commitf29f487ef8892453a481628a6a3cff802dc89213 (patch)
treeba334a3a3ee5bfb9961683debb7f144e204c9872 /client/src/app/+accounts
parent1bfc7b737975201645f43e58b485e864b3589bb3 (diff)
downloadPeerTube-f29f487ef8892453a481628a6a3cff802dc89213.tar.gz
PeerTube-f29f487ef8892453a481628a6a3cff802dc89213.tar.zst
PeerTube-f29f487ef8892453a481628a6a3cff802dc89213.zip
Use localize for page titles
Diffstat (limited to 'client/src/app/+accounts')
-rw-r--r--client/src/app/+accounts/accounts-routing.module.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/+accounts/accounts-routing.module.ts b/client/src/app/+accounts/accounts-routing.module.ts
index 45b24eb55..d2ca784b0 100644
--- a/client/src/app/+accounts/accounts-routing.module.ts
+++ b/client/src/app/+accounts/accounts-routing.module.ts
@@ -26,7 +26,7 @@ const accountsRoutes: Routes = [
26 component: AccountVideosComponent, 26 component: AccountVideosComponent,
27 data: { 27 data: {
28 meta: { 28 meta: {
29 title: 'Account videos' 29 title: $localize`Account videos`
30 }, 30 },
31 reuse: { 31 reuse: {
32 enabled: true, 32 enabled: true,
@@ -39,7 +39,7 @@ const accountsRoutes: Routes = [
39 component: AccountVideoChannelsComponent, 39 component: AccountVideoChannelsComponent,
40 data: { 40 data: {
41 meta: { 41 meta: {
42 title: 'Account video channels' 42 title: $localize`Account video channels`
43 } 43 }
44 } 44 }
45 }, 45 },
@@ -48,7 +48,7 @@ const accountsRoutes: Routes = [
48 component: AccountAboutComponent, 48 component: AccountAboutComponent,
49 data: { 49 data: {
50 meta: { 50 meta: {
51 title: 'About account' 51 title: $localize`About account`
52 } 52 }
53 } 53 }
54 } 54 }