mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-08-21 18:48:45 -04:00
Localizations for Gestures
This commit is contained in:
@@ -74,7 +74,7 @@ static const NSInteger YTLiteSection = 789;
|
|||||||
%end
|
%end
|
||||||
|
|
||||||
|
|
||||||
// Settings
|
// Add YTLitePlus to the settings list
|
||||||
%hook YTAppSettingsPresentationData
|
%hook YTAppSettingsPresentationData
|
||||||
+ (NSArray *)settingsCategoryOrder {
|
+ (NSArray *)settingsCategoryOrder {
|
||||||
NSArray *order = %orig;
|
NSArray *order = %orig;
|
||||||
@@ -102,14 +102,15 @@ static const NSInteger YTLiteSection = 789;
|
|||||||
Class YTSettingsSectionItemClass = %c(YTSettingsSectionItem);
|
Class YTSettingsSectionItemClass = %c(YTSettingsSectionItem);
|
||||||
YTSettingsViewController *settingsViewController = [self valueForKey:@"_settingsViewControllerDelegate"];
|
YTSettingsViewController *settingsViewController = [self valueForKey:@"_settingsViewControllerDelegate"];
|
||||||
|
|
||||||
|
// Add item for going to the YTLitePlus GitHub page
|
||||||
YTSettingsSectionItem *main = [%c(YTSettingsSectionItem)
|
YTSettingsSectionItem *main = [%c(YTSettingsSectionItem)
|
||||||
itemWithTitle:[NSString stringWithFormat:LOC(@"VERSION"), @(OS_STRINGIFY(TWEAK_VERSION))]
|
itemWithTitle:[NSString stringWithFormat:LOC(@"VERSION"), @(OS_STRINGIFY(TWEAK_VERSION))]
|
||||||
titleDescription:LOC(@"VERSION_CHECK")
|
titleDescription:LOC(@"VERSION_CHECK")
|
||||||
accessibilityIdentifier:nil
|
accessibilityIdentifier:nil
|
||||||
detailTextBlock:nil
|
detailTextBlock:nil
|
||||||
selectBlock:^BOOL (YTSettingsCell *cell, NSUInteger arg1) {
|
selectBlock:^BOOL (YTSettingsCell *cell, NSUInteger arg1) {
|
||||||
return [%c(YTUIUtils) openURL:[NSURL URLWithString:@"https://github.com/YTLitePlus/YTLitePlus/releases/latest"]];
|
return [%c(YTUIUtils) openURL:[NSURL URLWithString:@"https://github.com/YTLitePlus/YTLitePlus/releases/latest"]];
|
||||||
}];
|
}];
|
||||||
[sectionItems addObject:main];
|
[sectionItems addObject:main];
|
||||||
|
|
||||||
YTSettingsSectionItem *copySettings = [%c(YTSettingsSectionItem)
|
YTSettingsSectionItem *copySettings = [%c(YTSettingsSectionItem)
|
||||||
@@ -211,13 +212,13 @@ static const NSInteger YTLiteSection = 789;
|
|||||||
static NSString* (^sectionGestureSelectedModeToString)(GestureMode) = ^(GestureMode sectionIndex) {
|
static NSString* (^sectionGestureSelectedModeToString)(GestureMode) = ^(GestureMode sectionIndex) {
|
||||||
switch (sectionIndex) {
|
switch (sectionIndex) {
|
||||||
case GestureModeVolume:
|
case GestureModeVolume:
|
||||||
return LOC(@"Volume");
|
return LOC(@"VOLUME");
|
||||||
case GestureModeBrightness:
|
case GestureModeBrightness:
|
||||||
return LOC(@"Brightness");
|
return LOC(@"BRIGHTNESS");
|
||||||
case GestureModeSeek:
|
case GestureModeSeek:
|
||||||
return LOC(@"Seek");
|
return LOC(@"SEEK");
|
||||||
case GestureModeDisabled:
|
case GestureModeDisabled:
|
||||||
return LOC(@"Disabled");
|
return LOC(@"DISABLED");
|
||||||
default:
|
default:
|
||||||
return @"Invalid index - Report bug";
|
return @"Invalid index - Report bug";
|
||||||
}
|
}
|
||||||
@@ -268,8 +269,8 @@ static const NSInteger YTLiteSection = 789;
|
|||||||
[deadzoneValues addObject:@(value)];
|
[deadzoneValues addObject:@(value)];
|
||||||
}
|
}
|
||||||
YTSettingsSectionItem *deadzonePicker = [YTSettingsSectionItemClass
|
YTSettingsSectionItem *deadzonePicker = [YTSettingsSectionItemClass
|
||||||
itemWithTitle:LOC(@"Deadzone")
|
itemWithTitle:LOC(@"DEADZONE")
|
||||||
titleDescription:LOC(@"Minimum distance to move before a gesture is recognized")
|
titleDescription:LOC(@"DEADZONE_DESC")
|
||||||
accessibilityIdentifier:nil
|
accessibilityIdentifier:nil
|
||||||
detailTextBlock:^NSString *() {
|
detailTextBlock:^NSString *() {
|
||||||
return [NSString stringWithFormat:@"%ld px", (long)GetFloat(@"playerGesturesDeadzone")];
|
return [NSString stringWithFormat:@"%ld px", (long)GetFloat(@"playerGesturesDeadzone")];
|
||||||
@@ -296,7 +297,7 @@ static const NSInteger YTLiteSection = 789;
|
|||||||
}
|
}
|
||||||
// Present deadzone picker when selecting this settings item
|
// Present deadzone picker when selecting this settings item
|
||||||
YTSettingsPickerViewController *picker = [[%c(YTSettingsPickerViewController) alloc]
|
YTSettingsPickerViewController *picker = [[%c(YTSettingsPickerViewController) alloc]
|
||||||
initWithNavTitle:LOC(@"Deadzone")
|
initWithNavTitle:LOC(@"DEADZONE")
|
||||||
pickerSectionTitle:nil
|
pickerSectionTitle:nil
|
||||||
rows:deadzoneRows
|
rows:deadzoneRows
|
||||||
selectedItemIndex:selectedIndex
|
selectedItemIndex:selectedIndex
|
||||||
@@ -313,8 +314,8 @@ static const NSInteger YTLiteSection = 789;
|
|||||||
[sensitivityValues addObject:@(value)];
|
[sensitivityValues addObject:@(value)];
|
||||||
}
|
}
|
||||||
YTSettingsSectionItem *sensitivityPicker = [YTSettingsSectionItemClass
|
YTSettingsSectionItem *sensitivityPicker = [YTSettingsSectionItemClass
|
||||||
itemWithTitle:LOC(@"Sensitivity")
|
itemWithTitle:LOC(@"SENSITIVITY")
|
||||||
titleDescription:LOC(@"Multiplier on volume and brightness gestures")
|
titleDescription:LOC(@"SENSITIVITY_DESC")
|
||||||
accessibilityIdentifier:nil
|
accessibilityIdentifier:nil
|
||||||
detailTextBlock:^NSString *() {
|
detailTextBlock:^NSString *() {
|
||||||
return [NSString stringWithFormat:@"%.1f", GetFloat(@"playerGesturesSensitivity")];
|
return [NSString stringWithFormat:@"%.1f", GetFloat(@"playerGesturesSensitivity")];
|
||||||
@@ -341,7 +342,7 @@ static const NSInteger YTLiteSection = 789;
|
|||||||
}
|
}
|
||||||
// Present sensitivity picker
|
// Present sensitivity picker
|
||||||
YTSettingsPickerViewController *picker = [[%c(YTSettingsPickerViewController) alloc]
|
YTSettingsPickerViewController *picker = [[%c(YTSettingsPickerViewController) alloc]
|
||||||
initWithNavTitle:LOC(@"Sensitivity")
|
initWithNavTitle:LOC(@"SENSITIVITY")
|
||||||
pickerSectionTitle:nil
|
pickerSectionTitle:nil
|
||||||
rows:sensitivityRows
|
rows:sensitivityRows
|
||||||
selectedItemIndex:selectedIndex
|
selectedItemIndex:selectedIndex
|
||||||
@@ -352,13 +353,13 @@ static const NSInteger YTLiteSection = 789;
|
|||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
// High level gestures menu
|
// Create and add items to the high level gestures menu
|
||||||
YTSettingsSectionItem *playerGesturesGroup = [YTSettingsSectionItemClass itemWithTitle:LOC(@"Player Gestures (Beta)") accessibilityIdentifier:nil detailTextBlock:nil selectBlock:^BOOL (YTSettingsCell *cell, NSUInteger arg1) {
|
YTSettingsSectionItem *playerGesturesGroup = [YTSettingsSectionItemClass itemWithTitle:LOC(@"PLAYER_GESTURES_TITLE") accessibilityIdentifier:nil detailTextBlock:nil selectBlock:^BOOL (YTSettingsCell *cell, NSUInteger arg1) {
|
||||||
NSArray <YTSettingsSectionItem *> *rows = @[
|
NSArray <YTSettingsSectionItem *> *rows = @[
|
||||||
// Description header item
|
// Description header item
|
||||||
[YTSettingsSectionItemClass
|
[YTSettingsSectionItemClass
|
||||||
itemWithTitle:nil
|
itemWithTitle:nil
|
||||||
titleDescription:LOC(@"Configure horizontal pan gestures for the player.")
|
titleDescription:LOC(@"PLAYER_GESTURES_DESC")
|
||||||
accessibilityIdentifier:nil
|
accessibilityIdentifier:nil
|
||||||
detailTextBlock:nil
|
detailTextBlock:nil
|
||||||
selectBlock:nil
|
selectBlock:nil
|
||||||
@@ -366,9 +367,9 @@ static const NSInteger YTLiteSection = 789;
|
|||||||
// Toggle for enabling gestures
|
// Toggle for enabling gestures
|
||||||
BASIC_SWITCH(LOC(@"PLAYER_GESTURES_TOGGLE"), nil, @"playerGestures_enabled"),
|
BASIC_SWITCH(LOC(@"PLAYER_GESTURES_TOGGLE"), nil, @"playerGestures_enabled"),
|
||||||
// Pickers for each gesture section
|
// Pickers for each gesture section
|
||||||
createSectionGestureSelector(@"Top Section", @"playerGestureTopSelection"),
|
createSectionGestureSelector(@"TOP_SECTION", @"playerGestureTopSelection"),
|
||||||
createSectionGestureSelector(@"Middle Section", @"playerGestureMiddleSelection"),
|
createSectionGestureSelector(@"MIDDLE_SECTION", @"playerGestureMiddleSelection"),
|
||||||
createSectionGestureSelector(@"Bottom Section", @"playerGestureBottomSelection"),
|
createSectionGestureSelector(@"BOTTOM_SECTION", @"playerGestureBottomSelection"),
|
||||||
// Pickers for configuration settings
|
// Pickers for configuration settings
|
||||||
deadzonePicker,
|
deadzonePicker,
|
||||||
sensitivityPicker
|
sensitivityPicker
|
||||||
|
@@ -15,6 +15,19 @@
|
|||||||
|
|
||||||
// Player Gestures
|
// Player Gestures
|
||||||
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
||||||
|
"VOLUME" = "Volume";
|
||||||
|
"BRIGHTNESS" = "Brightness";
|
||||||
|
"SEEK" = "Seek";
|
||||||
|
"DISABLED" = "Disabled";
|
||||||
|
"DEADZONE" = "Deadzone";
|
||||||
|
"DEADZONE_DESC" = "Minimum distance to move before a gesture is recognized";
|
||||||
|
"SENSITIVITY" = "Sensitivity";
|
||||||
|
"SENSITIVITY_DESC" = "Multiplier on volume and brightness gestures";
|
||||||
|
"PLAYER_GESTURES_TITLE" = "Player Gestures";
|
||||||
|
"PLAYER_GESTURES_DESC" = "Configure horizontal pan gestures for the player";
|
||||||
|
"TOP_SECTION" = "Top Section";
|
||||||
|
"MIDDLE_SECTION" = "Middle Section";
|
||||||
|
"BOTTOM_SECTION" = "Bottom Section";
|
||||||
|
|
||||||
// Video controls overlay options
|
// Video controls overlay options
|
||||||
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "خيارات تراكب ضوابط الفيديو";
|
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "خيارات تراكب ضوابط الفيديو";
|
||||||
|
@@ -15,6 +15,19 @@
|
|||||||
|
|
||||||
// Player Gestures
|
// Player Gestures
|
||||||
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
||||||
|
"VOLUME" = "Volume";
|
||||||
|
"BRIGHTNESS" = "Brightness";
|
||||||
|
"SEEK" = "Seek";
|
||||||
|
"DISABLED" = "Disabled";
|
||||||
|
"DEADZONE" = "Deadzone";
|
||||||
|
"DEADZONE_DESC" = "Minimum distance to move before a gesture is recognized";
|
||||||
|
"SENSITIVITY" = "Sensitivity";
|
||||||
|
"SENSITIVITY_DESC" = "Multiplier on volume and brightness gestures";
|
||||||
|
"PLAYER_GESTURES_TITLE" = "Player Gestures";
|
||||||
|
"PLAYER_GESTURES_DESC" = "Configure horizontal pan gestures for the player";
|
||||||
|
"TOP_SECTION" = "Top Section";
|
||||||
|
"MIDDLE_SECTION" = "Middle Section";
|
||||||
|
"BOTTOM_SECTION" = "Bottom Section";
|
||||||
|
|
||||||
// Video controls overlay options
|
// Video controls overlay options
|
||||||
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Опции за контрол на видеото";
|
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Опции за контрол на видеото";
|
||||||
|
@@ -15,6 +15,19 @@
|
|||||||
|
|
||||||
// Player Gestures
|
// Player Gestures
|
||||||
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
||||||
|
"VOLUME" = "Volume";
|
||||||
|
"BRIGHTNESS" = "Brightness";
|
||||||
|
"SEEK" = "Seek";
|
||||||
|
"DISABLED" = "Disabled";
|
||||||
|
"DEADZONE" = "Deadzone";
|
||||||
|
"DEADZONE_DESC" = "Minimum distance to move before a gesture is recognized";
|
||||||
|
"SENSITIVITY" = "Sensitivity";
|
||||||
|
"SENSITIVITY_DESC" = "Multiplier on volume and brightness gestures";
|
||||||
|
"PLAYER_GESTURES_TITLE" = "Player Gestures";
|
||||||
|
"PLAYER_GESTURES_DESC" = "Configure horizontal pan gestures for the player";
|
||||||
|
"TOP_SECTION" = "Top Section";
|
||||||
|
"MIDDLE_SECTION" = "Middle Section";
|
||||||
|
"BOTTOM_SECTION" = "Bottom Section";
|
||||||
|
|
||||||
// Video controls overlay options
|
// Video controls overlay options
|
||||||
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Overlay-Optionen für Videosteuerungen";
|
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Overlay-Optionen für Videosteuerungen";
|
||||||
|
@@ -15,6 +15,19 @@
|
|||||||
|
|
||||||
// Player Gestures
|
// Player Gestures
|
||||||
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
||||||
|
"VOLUME" = "Volume";
|
||||||
|
"BRIGHTNESS" = "Brightness";
|
||||||
|
"SEEK" = "Seek";
|
||||||
|
"DISABLED" = "Disabled";
|
||||||
|
"DEADZONE" = "Deadzone";
|
||||||
|
"DEADZONE_DESC" = "Minimum distance to move before a gesture is recognized";
|
||||||
|
"SENSITIVITY" = "Sensitivity";
|
||||||
|
"SENSITIVITY_DESC" = "Multiplier on volume and brightness gestures";
|
||||||
|
"PLAYER_GESTURES_TITLE" = "Player Gestures";
|
||||||
|
"PLAYER_GESTURES_DESC" = "Configure horizontal pan gestures for the player";
|
||||||
|
"TOP_SECTION" = "Top Section";
|
||||||
|
"MIDDLE_SECTION" = "Middle Section";
|
||||||
|
"BOTTOM_SECTION" = "Bottom Section";
|
||||||
|
|
||||||
// Video controls overlay options
|
// Video controls overlay options
|
||||||
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Video Controls Overlay Options";
|
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Video Controls Overlay Options";
|
||||||
|
@@ -15,6 +15,19 @@
|
|||||||
|
|
||||||
// Player Gestures
|
// Player Gestures
|
||||||
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
||||||
|
"VOLUME" = "Volume";
|
||||||
|
"BRIGHTNESS" = "Brightness";
|
||||||
|
"SEEK" = "Seek";
|
||||||
|
"DISABLED" = "Disabled";
|
||||||
|
"DEADZONE" = "Deadzone";
|
||||||
|
"DEADZONE_DESC" = "Minimum distance to move before a gesture is recognized";
|
||||||
|
"SENSITIVITY" = "Sensitivity";
|
||||||
|
"SENSITIVITY_DESC" = "Multiplier on volume and brightness gestures";
|
||||||
|
"PLAYER_GESTURES_TITLE" = "Player Gestures";
|
||||||
|
"PLAYER_GESTURES_DESC" = "Configure horizontal pan gestures for the player";
|
||||||
|
"TOP_SECTION" = "Top Section";
|
||||||
|
"MIDDLE_SECTION" = "Middle Section";
|
||||||
|
"BOTTOM_SECTION" = "Bottom Section";
|
||||||
|
|
||||||
// Video controls overlay options
|
// Video controls overlay options
|
||||||
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Opciones de superposición de controles de vídeo";
|
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Opciones de superposición de controles de vídeo";
|
||||||
|
@@ -15,6 +15,19 @@
|
|||||||
|
|
||||||
// Player Gestures
|
// Player Gestures
|
||||||
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
||||||
|
"VOLUME" = "Volume";
|
||||||
|
"BRIGHTNESS" = "Brightness";
|
||||||
|
"SEEK" = "Seek";
|
||||||
|
"DISABLED" = "Disabled";
|
||||||
|
"DEADZONE" = "Deadzone";
|
||||||
|
"DEADZONE_DESC" = "Minimum distance to move before a gesture is recognized";
|
||||||
|
"SENSITIVITY" = "Sensitivity";
|
||||||
|
"SENSITIVITY_DESC" = "Multiplier on volume and brightness gestures";
|
||||||
|
"PLAYER_GESTURES_TITLE" = "Player Gestures";
|
||||||
|
"PLAYER_GESTURES_DESC" = "Configure horizontal pan gestures for the player";
|
||||||
|
"TOP_SECTION" = "Top Section";
|
||||||
|
"MIDDLE_SECTION" = "Middle Section";
|
||||||
|
"BOTTOM_SECTION" = "Bottom Section";
|
||||||
|
|
||||||
// Video controls overlay options
|
// Video controls overlay options
|
||||||
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Options de l'overlay des contrôles vidéo";
|
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Options de l'overlay des contrôles vidéo";
|
||||||
|
@@ -15,6 +15,19 @@
|
|||||||
|
|
||||||
// Player Gestures
|
// Player Gestures
|
||||||
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
||||||
|
"VOLUME" = "Volume";
|
||||||
|
"BRIGHTNESS" = "Brightness";
|
||||||
|
"SEEK" = "Seek";
|
||||||
|
"DISABLED" = "Disabled";
|
||||||
|
"DEADZONE" = "Deadzone";
|
||||||
|
"DEADZONE_DESC" = "Minimum distance to move before a gesture is recognized";
|
||||||
|
"SENSITIVITY" = "Sensitivity";
|
||||||
|
"SENSITIVITY_DESC" = "Multiplier on volume and brightness gestures";
|
||||||
|
"PLAYER_GESTURES_TITLE" = "Player Gestures";
|
||||||
|
"PLAYER_GESTURES_DESC" = "Configure horizontal pan gestures for the player";
|
||||||
|
"TOP_SECTION" = "Top Section";
|
||||||
|
"MIDDLE_SECTION" = "Middle Section";
|
||||||
|
"BOTTOM_SECTION" = "Bottom Section";
|
||||||
|
|
||||||
// Video controls overlay options
|
// Video controls overlay options
|
||||||
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "動画コントロールオーバーレイの設定";
|
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "動画コントロールオーバーレイの設定";
|
||||||
|
@@ -15,6 +15,19 @@
|
|||||||
|
|
||||||
// Player Gestures
|
// Player Gestures
|
||||||
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
||||||
|
"VOLUME" = "Volume";
|
||||||
|
"BRIGHTNESS" = "Brightness";
|
||||||
|
"SEEK" = "Seek";
|
||||||
|
"DISABLED" = "Disabled";
|
||||||
|
"DEADZONE" = "Deadzone";
|
||||||
|
"DEADZONE_DESC" = "Minimum distance to move before a gesture is recognized";
|
||||||
|
"SENSITIVITY" = "Sensitivity";
|
||||||
|
"SENSITIVITY_DESC" = "Multiplier on volume and brightness gestures";
|
||||||
|
"PLAYER_GESTURES_TITLE" = "Player Gestures";
|
||||||
|
"PLAYER_GESTURES_DESC" = "Configure horizontal pan gestures for the player";
|
||||||
|
"TOP_SECTION" = "Top Section";
|
||||||
|
"MIDDLE_SECTION" = "Middle Section";
|
||||||
|
"BOTTOM_SECTION" = "Bottom Section";
|
||||||
|
|
||||||
// Video controls overlay options
|
// Video controls overlay options
|
||||||
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Opções de Sobreposição de Controles de Vídeo";
|
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Opções de Sobreposição de Controles de Vídeo";
|
||||||
|
@@ -15,6 +15,19 @@
|
|||||||
|
|
||||||
// Player Gestures
|
// Player Gestures
|
||||||
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
||||||
|
"VOLUME" = "Volume";
|
||||||
|
"BRIGHTNESS" = "Brightness";
|
||||||
|
"SEEK" = "Seek";
|
||||||
|
"DISABLED" = "Disabled";
|
||||||
|
"DEADZONE" = "Deadzone";
|
||||||
|
"DEADZONE_DESC" = "Minimum distance to move before a gesture is recognized";
|
||||||
|
"SENSITIVITY" = "Sensitivity";
|
||||||
|
"SENSITIVITY_DESC" = "Multiplier on volume and brightness gestures";
|
||||||
|
"PLAYER_GESTURES_TITLE" = "Player Gestures";
|
||||||
|
"PLAYER_GESTURES_DESC" = "Configure horizontal pan gestures for the player";
|
||||||
|
"TOP_SECTION" = "Top Section";
|
||||||
|
"MIDDLE_SECTION" = "Middle Section";
|
||||||
|
"BOTTOM_SECTION" = "Bottom Section";
|
||||||
|
|
||||||
// Video controls overlay options
|
// Video controls overlay options
|
||||||
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Opțiuni Overlay Controale Video";
|
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Opțiuni Overlay Controale Video";
|
||||||
|
@@ -15,6 +15,19 @@
|
|||||||
|
|
||||||
// Player Gestures
|
// Player Gestures
|
||||||
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
||||||
|
"VOLUME" = "Volume";
|
||||||
|
"BRIGHTNESS" = "Brightness";
|
||||||
|
"SEEK" = "Seek";
|
||||||
|
"DISABLED" = "Disabled";
|
||||||
|
"DEADZONE" = "Deadzone";
|
||||||
|
"DEADZONE_DESC" = "Minimum distance to move before a gesture is recognized";
|
||||||
|
"SENSITIVITY" = "Sensitivity";
|
||||||
|
"SENSITIVITY_DESC" = "Multiplier on volume and brightness gestures";
|
||||||
|
"PLAYER_GESTURES_TITLE" = "Player Gestures";
|
||||||
|
"PLAYER_GESTURES_DESC" = "Configure horizontal pan gestures for the player";
|
||||||
|
"TOP_SECTION" = "Top Section";
|
||||||
|
"MIDDLE_SECTION" = "Middle Section";
|
||||||
|
"BOTTOM_SECTION" = "Bottom Section";
|
||||||
|
|
||||||
// Video controls overlay options
|
// Video controls overlay options
|
||||||
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Video Controls Overlay Options";
|
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Video Controls Overlay Options";
|
||||||
|
@@ -30,6 +30,19 @@ https://github.com/PoomSmart/Return-YouTube-Dislikes/tree/main/layout/Library/Ap
|
|||||||
|
|
||||||
// Player Gestures
|
// Player Gestures
|
||||||
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
||||||
|
"VOLUME" = "Volume";
|
||||||
|
"BRIGHTNESS" = "Brightness";
|
||||||
|
"SEEK" = "Seek";
|
||||||
|
"DISABLED" = "Disabled";
|
||||||
|
"DEADZONE" = "Deadzone";
|
||||||
|
"DEADZONE_DESC" = "Minimum distance to move before a gesture is recognized";
|
||||||
|
"SENSITIVITY" = "Sensitivity";
|
||||||
|
"SENSITIVITY_DESC" = "Multiplier on volume and brightness gestures";
|
||||||
|
"PLAYER_GESTURES_TITLE" = "Player Gestures";
|
||||||
|
"PLAYER_GESTURES_DESC" = "Configure horizontal pan gestures for the player";
|
||||||
|
"TOP_SECTION" = "Top Section";
|
||||||
|
"MIDDLE_SECTION" = "Middle Section";
|
||||||
|
"BOTTOM_SECTION" = "Bottom Section";
|
||||||
|
|
||||||
// Video controls overlay options
|
// Video controls overlay options
|
||||||
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Video Controls Overlay Options";
|
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Video Controls Overlay Options";
|
||||||
|
@@ -15,6 +15,19 @@
|
|||||||
|
|
||||||
// Player Gestures
|
// Player Gestures
|
||||||
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
||||||
|
"VOLUME" = "Volume";
|
||||||
|
"BRIGHTNESS" = "Brightness";
|
||||||
|
"SEEK" = "Seek";
|
||||||
|
"DISABLED" = "Disabled";
|
||||||
|
"DEADZONE" = "Deadzone";
|
||||||
|
"DEADZONE_DESC" = "Minimum distance to move before a gesture is recognized";
|
||||||
|
"SENSITIVITY" = "Sensitivity";
|
||||||
|
"SENSITIVITY_DESC" = "Multiplier on volume and brightness gestures";
|
||||||
|
"PLAYER_GESTURES_TITLE" = "Player Gestures";
|
||||||
|
"PLAYER_GESTURES_DESC" = "Configure horizontal pan gestures for the player";
|
||||||
|
"TOP_SECTION" = "Top Section";
|
||||||
|
"MIDDLE_SECTION" = "Middle Section";
|
||||||
|
"BOTTOM_SECTION" = "Bottom Section";
|
||||||
|
|
||||||
// Video controls overlay options
|
// Video controls overlay options
|
||||||
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Video Kontrol Seç.";
|
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "Video Kontrol Seç.";
|
||||||
|
@@ -15,6 +15,19 @@
|
|||||||
|
|
||||||
// Player Gestures
|
// Player Gestures
|
||||||
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
||||||
|
"VOLUME" = "Volume";
|
||||||
|
"BRIGHTNESS" = "Brightness";
|
||||||
|
"SEEK" = "Seek";
|
||||||
|
"DISABLED" = "Disabled";
|
||||||
|
"DEADZONE" = "Deadzone";
|
||||||
|
"DEADZONE_DESC" = "Minimum distance to move before a gesture is recognized";
|
||||||
|
"SENSITIVITY" = "Sensitivity";
|
||||||
|
"SENSITIVITY_DESC" = "Multiplier on volume and brightness gestures";
|
||||||
|
"PLAYER_GESTURES_TITLE" = "Player Gestures";
|
||||||
|
"PLAYER_GESTURES_DESC" = "Configure horizontal pan gestures for the player";
|
||||||
|
"TOP_SECTION" = "Top Section";
|
||||||
|
"MIDDLE_SECTION" = "Middle Section";
|
||||||
|
"BOTTOM_SECTION" = "Bottom Section";
|
||||||
|
|
||||||
// Video player options
|
// Video player options
|
||||||
"VIDEO_PLAYER_OPTIONS" = "Tùy chọn trình phát video";
|
"VIDEO_PLAYER_OPTIONS" = "Tùy chọn trình phát video";
|
||||||
|
@@ -16,6 +16,19 @@
|
|||||||
|
|
||||||
// Player Gestures
|
// Player Gestures
|
||||||
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
"PLAYER_GESTURES_TOGGLE" = "Enable Player Gestures";
|
||||||
|
"VOLUME" = "Volume";
|
||||||
|
"BRIGHTNESS" = "Brightness";
|
||||||
|
"SEEK" = "Seek";
|
||||||
|
"DISABLED" = "Disabled";
|
||||||
|
"DEADZONE" = "Deadzone";
|
||||||
|
"DEADZONE_DESC" = "Minimum distance to move before a gesture is recognized";
|
||||||
|
"SENSITIVITY" = "Sensitivity";
|
||||||
|
"SENSITIVITY_DESC" = "Multiplier on volume and brightness gestures";
|
||||||
|
"PLAYER_GESTURES_TITLE" = "Player Gestures";
|
||||||
|
"PLAYER_GESTURES_DESC" = "Configure horizontal pan gestures for the player";
|
||||||
|
"TOP_SECTION" = "Top Section";
|
||||||
|
"MIDDLE_SECTION" = "Middle Section";
|
||||||
|
"BOTTOM_SECTION" = "Bottom Section";
|
||||||
|
|
||||||
// Video controls overlay options
|
// Video controls overlay options
|
||||||
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "影片區覆蓋按鈕設定";
|
"VIDEO_CONTROLS_OVERLAY_OPTIONS" = "影片區覆蓋按鈕設定";
|
||||||
|
Reference in New Issue
Block a user