Rename "Download queue" desktop nav item to "Downloads"

"Download queue" is too long for the side nav menu
This commit is contained in:
schroda
2025-06-22 18:43:54 +02:00
parent 781d89a75a
commit 998400327f
5 changed files with 9 additions and 5 deletions

View File

@@ -65,7 +65,8 @@ const NAVIGATION_BAR_BASE_ITEMS = [
const NAVIGATION_BAR_DESKTOP_ITEMS = [
{
path: AppRoutes.downloads.path,
title: 'download.title.queue',
title: 'download.title.download',
moreTitle: 'download.title.queue',
SelectedIconComponent: GetAppIcon,
IconComponent: GetAppOutlinedIcon,
show: 'desktop',

View File

@@ -26,6 +26,7 @@ export enum NavBarItemMoreGroup {
export interface NavbarItem {
path: StaticAppRoute;
title: TranslationKey;
moreTitle?: TranslationKey;
SelectedIconComponent: OverridableComponent<SvgIconTypeMap<{}, 'svg'>>;
IconComponent: OverridableComponent<SvgIconTypeMap<{}, 'svg'>>;
show: 'mobile' | 'desktop' | 'both';