aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/system/system.routes.ts
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/+admin/system/system.routes.ts
parent1bfc7b737975201645f43e58b485e864b3589bb3 (diff)
downloadPeerTube-f29f487ef8892453a481628a6a3cff802dc89213.tar.gz
PeerTube-f29f487ef8892453a481628a6a3cff802dc89213.tar.zst
PeerTube-f29f487ef8892453a481628a6a3cff802dc89213.zip
Use localize for page titles
Diffstat (limited to 'client/src/app/+admin/system/system.routes.ts')
-rw-r--r--client/src/app/+admin/system/system.routes.ts8
1 files changed, 3 insertions, 5 deletions
diff --git a/client/src/app/+admin/system/system.routes.ts b/client/src/app/+admin/system/system.routes.ts
index 0e8d98519..72ab6705a 100644
--- a/client/src/app/+admin/system/system.routes.ts
+++ b/client/src/app/+admin/system/system.routes.ts
@@ -10,8 +10,6 @@ export const SystemRoutes: Routes = [
10 { 10 {
11 path: 'system', 11 path: 'system',
12 component: SystemComponent, 12 component: SystemComponent,
13 data: {
14 },
15 children: [ 13 children: [
16 { 14 {
17 path: '', 15 path: '',
@@ -25,7 +23,7 @@ export const SystemRoutes: Routes = [
25 data: { 23 data: {
26 meta: { 24 meta: {
27 userRight: UserRight.MANAGE_JOBS, 25 userRight: UserRight.MANAGE_JOBS,
28 title: 'Jobs' 26 title: $localize`Jobs`
29 } 27 }
30 } 28 }
31 }, 29 },
@@ -36,7 +34,7 @@ export const SystemRoutes: Routes = [
36 data: { 34 data: {
37 meta: { 35 meta: {
38 userRight: UserRight.MANAGE_LOGS, 36 userRight: UserRight.MANAGE_LOGS,
39 title: 'Logs' 37 title: $localize`Logs`
40 } 38 }
41 } 39 }
42 }, 40 },
@@ -47,7 +45,7 @@ export const SystemRoutes: Routes = [
47 data: { 45 data: {
48 meta: { 46 meta: {
49 userRight: UserRight.MANAGE_DEBUG, 47 userRight: UserRight.MANAGE_DEBUG,
50 title: 'Debug' 48 title: $localize`Debug`
51 } 49 }
52 } 50 }
53 } 51 }