From c6c4a7167e835f62248f95d57e0d7ffd1c7ffad0 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 27 Nov 2024 10:31:17 +0100 Subject: [PATCH] Fix title inconsistencies --- client/src/app/+accounts/accounts.component.ts | 4 ++-- client/src/app/+video-channels/video-channels.component.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/app/+accounts/accounts.component.ts b/client/src/app/+accounts/accounts.component.ts index b2fbcad02..88a900c1a 100644 --- a/client/src/app/+accounts/accounts.component.ts +++ b/client/src/app/+accounts/accounts.component.ts @@ -104,8 +104,8 @@ export class AccountsComponent implements OnInit, OnDestroy { }) this.links = [ - { label: $localize`CHANNELS`, routerLink: 'video-channels' }, - { label: $localize`VIDEOS`, routerLink: 'videos' } + { label: $localize`Channels`, routerLink: 'video-channels' }, + { label: $localize`Videos`, routerLink: 'videos' } ] } diff --git a/client/src/app/+video-channels/video-channels.component.ts b/client/src/app/+video-channels/video-channels.component.ts index d12c9a95b..53020b0e1 100644 --- a/client/src/app/+video-channels/video-channels.component.ts +++ b/client/src/app/+video-channels/video-channels.component.ts @@ -113,8 +113,8 @@ export class VideoChannelsComponent implements OnInit, OnDestroy { if (this.isUserLoggedIn()) this.hotkeysService.add(this.hotkeys) this.links = [ - { label: $localize`VIDEOS`, routerLink: 'videos' }, - { label: $localize`PLAYLISTS`, routerLink: 'video-playlists' } + { label: $localize`Videos`, routerLink: 'videos' }, + { label: $localize`Playlists`, routerLink: 'video-playlists' } ] }