From b4196d96ebf0a6b49f08dc0e85a25c4570ec5326 Mon Sep 17 00:00:00 2001 From: Foxster Date: Sat, 23 Dec 2023 20:17:18 -0800 Subject: [PATCH] Update Settings.xm --- Sources/Settings.xm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Settings.xm b/Sources/Settings.xm index 8f948a2..194eed1 100644 --- a/Sources/Settings.xm +++ b/Sources/Settings.xm @@ -52,7 +52,7 @@ extern NSBundle *uYouPlusBundle(); SECTION_HEADER(@"App theme"); YTSettingsSectionItem *themeGroup = [YTSettingsSectionItemClass - itemWithTitle:LOC(@"THEME_OPTIONS") + itemWithTitle:LOC(@"DARK_THEME") accessibilityIdentifier:nil detailTextBlock:^NSString *() { switch (APP_THEME_IDX) { @@ -96,7 +96,7 @@ extern NSBundle *uYouPlusBundle(); } settingItemId:0] ]; - YTSettingsPickerViewController *picker = [[%c(YTSettingsPickerViewController) alloc] initWithNavTitle:LOC(@"THEME_OPTIONS") pickerSectionTitle:nil rows:rows selectedItemIndex:APP_THEME_IDX parentResponder:[self parentResponder]]; + YTSettingsPickerViewController *picker = [[%c(YTSettingsPickerViewController) alloc] initWithNavTitle:LOC(@"DARK_THEME") pickerSectionTitle:[LOC(@"DARK_THEME") uppercaseString] rows:rows selectedItemIndex:APP_THEME_IDX parentResponder:[self parentResponder]]; [settingsViewController pushViewController:picker]; return YES; }