aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/+my-account-video-channels
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/+my-account/+my-account-video-channels
parent1bfc7b737975201645f43e58b485e864b3589bb3 (diff)
downloadPeerTube-f29f487ef8892453a481628a6a3cff802dc89213.tar.gz
PeerTube-f29f487ef8892453a481628a6a3cff802dc89213.tar.zst
PeerTube-f29f487ef8892453a481628a6a3cff802dc89213.zip
Use localize for page titles
Diffstat (limited to 'client/src/app/+my-account/+my-account-video-channels')
-rw-r--r--client/src/app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts b/client/src/app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts
index 94037e18f..3aa3e360f 100644
--- a/client/src/app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts
+++ b/client/src/app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts
@@ -10,7 +10,7 @@ const myAccountVideoChannelsRoutes: Routes = [
10 component: MyAccountVideoChannelsComponent, 10 component: MyAccountVideoChannelsComponent,
11 data: { 11 data: {
12 meta: { 12 meta: {
13 title: 'Account video channels' 13 title: $localize`Account video channels`
14 } 14 }
15 } 15 }
16 }, 16 },
@@ -19,7 +19,7 @@ const myAccountVideoChannelsRoutes: Routes = [
19 component: MyAccountVideoChannelCreateComponent, 19 component: MyAccountVideoChannelCreateComponent,
20 data: { 20 data: {
21 meta: { 21 meta: {
22 title: 'Create new video channel' 22 title: $localize`Create new video channel`
23 } 23 }
24 } 24 }
25 }, 25 },
@@ -28,7 +28,7 @@ const myAccountVideoChannelsRoutes: Routes = [
28 component: MyAccountVideoChannelUpdateComponent, 28 component: MyAccountVideoChannelUpdateComponent,
29 data: { 29 data: {
30 meta: { 30 meta: {
31 title: 'Update video channel' 31 title: $localize`Update video channel`
32 } 32 }
33 } 33 }
34 } 34 }