feat(settings): updated language resources and sort alphabetically

This commit is contained in:
inotia00
2023-06-20 17:40:30 +09:00
parent 99733c92a7
commit 0f820822cf
6 changed files with 653 additions and 606 deletions

View File

@ -111,29 +111,6 @@ internal object MusicResourceHelper {
}
}
internal fun ResourceContext.addMusicPreferenceAlt(
category: String,
key: String,
defaultValue: String,
dependencyKey: String
) {
this.xmlEditor[YOUTUBE_MUSIC_SETTINGS_PATH].use { editor ->
val tags = editor.file.getElementsByTagName(YOUTUBE_MUSIC_CATEGORY_TAG_NAME)
List(tags.length) { tags.item(it) as Element }
.filter { it.getAttribute("android:key").contains("revanced_settings_$category") }
.forEach {
it.adoptChild(YOUTUBE_MUSIC_PREFERENCE_TAG_NAME) {
setAttribute("android:title", "@string/$key" + "_title")
setAttribute("android:summaryOn", "@string/$key" + "_summary_on")
setAttribute("android:summaryOff", "@string/$key" + "_summary_off")
setAttribute("android:key", key)
setAttribute("android:defaultValue", defaultValue)
setAttribute("android:dependency", dependencyKey)
}
}
}
}
internal fun ResourceContext.addMusicPreferenceWithIntent(
category: String,
key: String,

View File

@ -50,33 +50,6 @@ internal object ResourceHelper {
}
}
internal fun ResourceContext.addEntries(
path: String,
speedEntries: String,
attributeName: String
) {
xmlEditor[path].use {
with(it.file) {
val resourcesNode = getElementsByTagName("resources").item(0) as Element
val newElement: Element = createElement("item")
for (i in 0 until resourcesNode.childNodes.length) {
val node = resourcesNode.childNodes.item(i) as? Element ?: continue
if (node.getAttribute("name") == attributeName) {
newElement.appendChild(createTextNode(speedEntries))
node.appendChild(newElement)
}
}
}
}
this[path].writeText(
this[path].readText().replace("1.0x", "@string/shorts_speed_control_normal_label")
)
}
internal fun ResourceContext.addPreference(settingArray: Array<String>) {
val prefs = this[TARGET_PREFERENCE_PATH]

View File

@ -3,7 +3,7 @@
<string name="revanced_category_ads">Ads</string>
<string name="revanced_category_layout">Layout</string>
<string name="revanced_category_misc">Miscellaneous</string>
<string name="revanced_default_downloader_summary">Package name of the downloader app such as NewPipe\'s or PowerTube\'s.</string>
<string name="revanced_default_downloader_summary">Package name of the downloader app such as NewPipe\'s or Seal\'s.</string>
<string name="revanced_default_downloader_title">Package name of downloader</string>
<string name="revanced_disable_auto_captions_summary">Disable forced captions from automatically enabling in video player.</string>
<string name="revanced_disable_auto_captions_title">Disable auto captions</string>
@ -14,16 +14,24 @@
<string name="revanced_enable_color_match_player_title">Enable color match player</string>
<string name="revanced_enable_compact_dialog_summary">Enable compact dialog on phone.</string>
<string name="revanced_enable_compact_dialog_title">Enable compact dialog</string>
<string name="revanced_enable_dismiss_queue_summary">Add dismiss queue to flyout menu. (YT Music v6.04.51+)</string>
<string name="revanced_enable_dismiss_queue_title">Enable dismiss queue</string>
<string name="revanced_enable_force_minimized_player_summary">Keep player permanently minimized even if another track is played.</string>
<string name="revanced_enable_force_minimized_player_title">Enable force minimized player</string>
<string name="revanced_enable_force_shuffle_summary">Enable force shuffle even if another track is played.</string>
<string name="revanced_enable_force_shuffle_title">Enable force shuffle</string>
<string name="revanced_enable_landscape_mode_summary">Enables entry into landscape mode by screen rotation on the phone.</string>
<string name="revanced_enable_landscape_mode_title">Enable landscape mode</string>
<string name="revanced_enable_new_layout_summary">Enable new player layouts. (YT Music v5.47.51+)</string>
<string name="revanced_enable_new_layout_title">Enable new layout</string>
<string name="revanced_enable_old_style_mini_player_summary">Return the miniplayers to old style. (YT Music v5.55.53+)</string>
<string name="revanced_enable_old_style_mini_player_title">Enable old style miniplayer</string>
<string name="revanced_enable_opus_codec_summary">Enable 250/251 opus codec when playing audio.</string>
<string name="revanced_enable_opus_codec_title">Enable opus codec</string>
<string name="revanced_enable_save_video_quality_summary">Save the video quality value whenever you change the video quality.</string>
<string name="revanced_enable_save_video_quality_title">Enable save video quality</string>
<string name="revanced_enable_sleep_timer_summary">Add sleep timer to flyout menu.</string>
<string name="revanced_enable_sleep_timer_title">Enable sleep timer</string>
<string name="revanced_enable_zen_mode_summary">Adds a grey tint to the video player to reduce eye strain.</string>
<string name="revanced_enable_zen_mode_title">Enable zen mode</string>
<string name="revanced_extended_settings_title">ReVanced Extended</string>
@ -37,16 +45,16 @@
<string name="revanced_hide_category_bar_title">Hide category bar</string>
<string name="revanced_hide_music_ads_summary">Hide ads before playing a track.</string>
<string name="revanced_hide_music_ads_title">Hide music ads</string>
<string name="revanced_hide_navigation_label_summary">Hide labels in navigation bar.</string>
<string name="revanced_hide_navigation_label_title">Hide navigation bar labels</string>
<string name="revanced_hide_new_playlist_button_summary">Hide the New Playlist button in the Library tab.</string>
<string name="revanced_hide_new_playlist_button_title">Hide new playlist button</string>
<string name="revanced_hide_playlist_card_summary">Hides the playlist card from homepage.</string>
<string name="revanced_hide_playlist_card_title">Hide playlist card</string>
<string name="revanced_hook_share_button_summary">Replace share button with external download button or sleep timer dialog.</string>
<string name="revanced_hook_share_button_summary">Replace share button with external download button.</string>
<string name="revanced_hook_share_button_title">Hook share button (Experimental Flags)</string>
<string name="revanced_hook_type_summary_off">Open external downloader.</string>
<string name="revanced_hook_type_summary_on">Open sleep timer dialog.</string>
<string name="revanced_hook_type_title">Hook type</string>
<string name="revanced_reboot_message">Refresh and restart</string>
<string name="revanced_reset">Reset</string>
<string name="revanced_save_video_quality_mobile">Changing default mobile data quality to:</string>
<string name="revanced_save_video_quality_none">Failed to set quality</string>
<string name="revanced_save_video_quality_wifi">Changing default Wi-Fi quality to:</string>

View File

@ -6,7 +6,7 @@
<string name="microg_settings_summary">Enable cloud messaging settings to receive notifications</string>
<string name="microg_settings_title">Open MicroG</string>
<string name="revanced_ads">Ads</string>
<string name="revanced_ad_remover_custom_filter_summary">Filter components by their name separated by a comma</string>
<string name="revanced_ad_remover_custom_filter_summary">Filter components by line-separated names</string>
<string name="revanced_ad_remover_custom_filter_title">Custom filter</string>
<string name="revanced_ad_remover_general_ads_summary_off">General ads are shown</string>
<string name="revanced_ad_remover_general_ads_summary_on">General ads are hidden</string>
@ -36,6 +36,9 @@
<string name="revanced_copytimestamp_success">Time Stamp copied to clipboard</string>
<string name="revanced_custom_seekbar_color_value_summary">Type the hex code of the seekbar color</string>
<string name="revanced_custom_seekbar_color_value_title">Custom seekbar color value</string>
<string name="revanced_custom_speed_overlay_value_summary">Type the video speed to change when pressing and holding the player</string>
<string name="revanced_custom_speed_overlay_value_title">Custom speed overlay value</string>
<string name="revanced_custom_speed_overlay_text" formatted="false">Playing at %sx speed</string>
<string name="revanced_custom_video_speeds_summary">Add or change the video speeds available</string>
<string name="revanced_custom_video_speeds_title">Custom video speeds</string>
<string name="revanced_default_app_settings_summary">To open RVX in an external browser, turn on \'Open supported links\' and enable supported web addresses</string>
@ -58,6 +61,9 @@
<string name="revanced_disable_haptic_feedback_zoom_summary_off">Zoom haptic feedback is enabled</string>
<string name="revanced_disable_haptic_feedback_zoom_summary_on">Zoom haptic feedback is disabled</string>
<string name="revanced_disable_haptic_feedback_zoom_title">Disable zoom haptic feedback</string>
<string name="revanced_disable_hdr_auto_brightness_summary_off">Auto HDR brightness is enabled</string>
<string name="revanced_disable_hdr_auto_brightness_summary_on">Auto HDR brightness is disabled</string>
<string name="revanced_disable_hdr_auto_brightness_title">Disable auto HDR brightness</string>
<string name="revanced_disable_hdr_video_summary_off">HDR video is enabled</string>
<string name="revanced_disable_hdr_video_summary_on">HDR video is disabled</string>
<string name="revanced_disable_hdr_video_title">Disable HDR video</string>
@ -79,25 +85,30 @@
<string name="revanced_enable_always_auto_repeat_summary_off">Always auto repeat is disabled</string>
<string name="revanced_enable_always_auto_repeat_summary_on">Always auto repeat is enabled</string>
<string name="revanced_enable_always_auto_repeat_title">Always auto repeat</string>
<string name="revanced_enable_compact_controls_overlay_summary_off">Compact controls overlay is disabled</string>
<string name="revanced_enable_compact_controls_overlay_summary_on">Compact controls overlay is enabled</string>
<string name="revanced_enable_compact_controls_overlay_title">Enable compact controls overlay</string>
<string name="revanced_enable_custom_seekbar_color_summary_off">Custom seekbar color is disabled</string>
<string name="revanced_enable_custom_seekbar_color_summary_on">Custom seekbar color is enabled</string>
<string name="revanced_enable_custom_seekbar_color_title">Enable custom seekbar color</string>
<string name="revanced_enable_custom_video_speed_summary_off">Custom video speed is disabled</string>
<string name="revanced_enable_custom_video_speed_summary_on">Custom video speed is enabled</string>
<string name="revanced_enable_custom_video_speed_title">Enable custom video speed</string>
<string name="revanced_enable_debug_logging_summary_off">Debug logs are disabled</string>
<string name="revanced_enable_debug_logging_summary_on">Debug logs are enabled</string>
<string name="revanced_enable_debug_logging_title">Enable debug logging</string>
<string name="revanced_enable_external_browser_summary_off">External browser is disabled</string>
<string name="revanced_enable_external_browser_summary_on">External browser is enabled</string>
<string name="revanced_enable_external_browser_title">Enable external browser</string>
<string name="revanced_spoof_app_version_summary">"Spoofing the client version to the old version
This will change the appearance of the app, but unknown side effects may occur
If later turned off, the old UI may remain until clear the app data"</string>
<string name="revanced_spoof_app_version_title">Spoof app version</string>
<string name="revanced_spoof_app_version_target_entry_1">17.41.37 - Playlists shelf in library tab follows old layout</string>
<string name="revanced_spoof_app_version_target_entry_2">17.30.34 - Restore old UI layout</string>
<string name="revanced_spoof_app_version_target_entry_3">17.06.35 - Enable sorting videos by oldest</string>
<string name="revanced_spoof_app_version_target_entry_4">16.08.35 - Restore explore tab</string>
<string name="revanced_spoof_app_version_target_title">Spoof app version target</string>
<string name="revanced_enable_new_splash_animation_summary_off">New splash animation is disabled</string>
<string name="revanced_enable_new_splash_animation_summary_on">New splash animation is enabled</string>
<string name="revanced_enable_new_splash_animation_title">Enable new splash animation</string>
<string name="revanced_enable_new_splash_animation_warning">Only available on Android 12+</string>
<string name="revanced_enable_new_thumbnail_preview_summary_off">New thumbnail preview is disabled</string>
<string name="revanced_enable_new_thumbnail_preview_summary_on">New thumbnail preview is enabled</string>
<string name="revanced_enable_new_thumbnail_preview_title">Enable new thumbnail preview</string>
<string name="revanced_enable_opus_codec_summary">Apply opus audio codec instead of mp4a audio codec</string>
<string name="revanced_enable_opus_codec_title">Enable opus codec</string>
<string name="revanced_enable_old_quality_layout_summary_off">New style quality settings are shown</string>
<string name="revanced_enable_old_quality_layout_summary_on">Old style quality settings are shown</string>
<string name="revanced_enable_old_quality_layout_title">Enable old style quality layout</string>
@ -107,6 +118,7 @@ If later turned off, the old UI may remain until clear the app data"</string>
<string name="revanced_enable_phone_layout_summary">Tricks the dpi to use some phone layouts</string>
<string name="revanced_enable_phone_layout_title">Enable phone layout</string>
<string name="revanced_enable_protobuf_spoof_summary">"Spoofs the protobuf to prevent playback issues
Known issues
- End screen cards are always hidden
- Offline downloads may not work (YouTube Premium users)"</string>
@ -114,9 +126,9 @@ Known issues
<string name="revanced_enable_press_to_swipe_summary_off">Press-to-swipe is disabled</string>
<string name="revanced_enable_press_to_swipe_summary_on">Press-to-swipe is enabled</string>
<string name="revanced_enable_press_to_swipe_title">Enable press-to-swipe gesture</string>
<string name="revanced_enable_save_brightness_summary_off">When entering fullscreen after restarting the app, the saved brightness value is not overwritten</string>
<string name="revanced_enable_save_brightness_summary_on">When entering fullscreen after restarting the app, the saved brightness value is overwritten</string>
<string name="revanced_enable_save_brightness_title">Enable save brightness</string>
<string name="revanced_enable_save_brightness_summary_off">Don\'t save and restore brightness when exiting or entering fullscreen</string>
<string name="revanced_enable_save_brightness_summary_on">Save and restore brightness when exiting or entering fullscreen</string>
<string name="revanced_enable_save_brightness_title">Enable save and restore brightness</string>
<string name="revanced_enable_save_video_quality_summary_off">Does not save video quality values even when changing video quality</string>
<string name="revanced_enable_save_video_quality_summary_on">Save the video quality value whenever you change the video quality</string>
<string name="revanced_enable_save_video_quality_title">Enable save video quality</string>
@ -129,9 +141,6 @@ Known issues
<string name="revanced_enable_swipe_auto_brightness_summary_off">Even if the brightness is set to 0 by swiping, auto brightness is not activated</string>
<string name="revanced_enable_swipe_auto_brightness_summary_on">When brightness reaches 0 by swiping, auto brightness is activated</string>
<string name="revanced_enable_swipe_auto_brightness_title">Enable auto-brightness by swiping</string>
<string name="revanced_enable_swipe_brightness_in_hdr_summary_off">When playing HDR videos, brightness values specified by YouTube are applied</string>
<string name="revanced_enable_swipe_brightness_in_hdr_summary_on">When playing HDR video, swipe gesture brightness values are applied</string>
<string name="revanced_enable_swipe_brightness_in_hdr_title">Enable swipe gesture brightness values in HDR video</string>
<string name="revanced_enable_swipe_brightness_summary_off">Brightness swipe is disabled</string>
<string name="revanced_enable_swipe_brightness_summary_on">Brightness swipe is enabled</string>
<string name="revanced_enable_swipe_brightness_title">Enable brightness gesture</string>
@ -152,8 +161,8 @@ Known issues
<string name="revanced_enable_time_stamp_speed_summary_off">Append time stamp speed is disabled</string>
<string name="revanced_enable_time_stamp_speed_summary_on">Append time stamp speed is enabled</string>
<string name="revanced_enable_time_stamp_speed_title">Enable time stamp speed</string>
<string name="revanced_enable_vp9_codec_summary">Spoof device information to enable VP9 codec</string>
<string name="revanced_enable_vp9_codec_title">Enable VP9 codec</string>
<string name="revanced_enable_vp9_codec_summary">Spoof device information to enable vp9 codec</string>
<string name="revanced_enable_vp9_codec_title">Enable vp9 codec</string>
<string name="revanced_enable_wide_searchbar_summary_off">Wide search bar is disabled</string>
<string name="revanced_enable_wide_searchbar_summary_on">Wide search bar is enabled</string>
<string name="revanced_enable_wide_searchbar_title">Enable wide search bar</string>
@ -192,12 +201,6 @@ Please do not report any issues you encounter while using this feature."</string
<string name="revanced_hide_auto_player_popup_panels_summary_off">Auto player popup panels are shown</string>
<string name="revanced_hide_auto_player_popup_panels_summary_on">Auto player popup panels are hidden</string>
<string name="revanced_hide_auto_player_popup_panels_title">Hide auto player popup panels</string>
<string name="revanced_hide_breaking_news_shelf_summary_off">Breaking news shelves are shown</string>
<string name="revanced_hide_breaking_news_shelf_summary_on">Breaking news shelves are hidden</string>
<string name="revanced_hide_breaking_news_shelf_title">Hide breaking news shelf</string>
<string name="revanced_hide_browse_store_button_summary_off">Browse store button is shown</string>
<string name="revanced_hide_browse_store_button_summary_on">Browse store button is hidden</string>
<string name="revanced_hide_browse_store_button_title">Hide browse store button</string>
<string name="revanced_hide_button_create_clip_summary_off">Clip button is shown</string>
<string name="revanced_hide_button_create_clip_summary_on">Clip button is hidden</string>
<string name="revanced_hide_button_create_clip_title">Hide clip button</string>
@ -216,6 +219,9 @@ Please do not report any issues you encounter while using this feature."</string
<string name="revanced_hide_button_playlist_summary_off">Playlist button is shown</string>
<string name="revanced_hide_button_playlist_summary_on">Playlist button is hidden</string>
<string name="revanced_hide_button_playlist_title">Hide playlist button</string>
<string name="revanced_hide_button_rewards_summary_off">Rewards button is shown</string>
<string name="revanced_hide_button_rewards_summary_on">Rewards button is hidden</string>
<string name="revanced_hide_button_rewards_title">Hide rewards button</string>
<string name="revanced_hide_button_remix_summary_off">Remix button is shown</string>
<string name="revanced_hide_button_remix_summary_on">Remix button is hidden</string>
<string name="revanced_hide_button_remix_title">Hide remix button</string>
@ -296,6 +302,9 @@ Please do not report any issues you encounter while using this feature."</string
<string name="revanced_hide_fullscreen_panels_summary_off">Fullscreen panels are shown</string>
<string name="revanced_hide_fullscreen_panels_summary_on">Fullscreen panels are hidden</string>
<string name="revanced_hide_fullscreen_panels_title">Hide fullscreen panels</string>
<string name="revanced_hide_gray_description_summary_off">Gray description is shown</string>
<string name="revanced_hide_gray_description_summary_on">Gray description is hidden</string>
<string name="revanced_hide_gray_description_title">Hide gray description</string>
<string name="revanced_hide_home_button_summary_off">Home button is shown</string>
<string name="revanced_hide_home_button_summary_on">Home button is hidden</string>
<string name="revanced_hide_home_button_title">Hide home button</string>
@ -398,9 +407,12 @@ Please do not report any issues you encounter while using this feature."</string
<string name="revanced_hide_quick_actions_related_videos_summary_off">Related videos are shown</string>
<string name="revanced_hide_quick_actions_related_videos_summary_on">Related videos are hidden</string>
<string name="revanced_hide_quick_actions_related_videos_title">Hide related videos in quick actions</string>
<string name="revanced_hide_seekbar_summary_off">Seekbar is shown</string>
<string name="revanced_hide_seekbar_summary_on">Seekbar is hidden</string>
<string name="revanced_hide_seekbar_title">Hide seekbar</string>
<string name="revanced_hide_seekbar_summary_off">Video player seekbar is shown</string>
<string name="revanced_hide_seekbar_summary_on">Video player seekbar is hidden</string>
<string name="revanced_hide_seekbar_title">Hide seekbar in video player</string>
<string name="revanced_hide_seekbar_thumbnail_summary_off">Thumbnail seekbar is shown</string>
<string name="revanced_hide_seekbar_thumbnail_summary_on">Thumbnail seekbar is hidden</string>
<string name="revanced_hide_seekbar_thumbnail_title">Hide seekbar in video thumbnails</string>
<string name="revanced_hide_seek_message_summary_off">Seek message is shown</string>
<string name="revanced_hide_seek_message_summary_on">Seek message is hidden</string>
<string name="revanced_hide_seek_message_title">Hide seek message</string>
@ -430,6 +442,9 @@ Please do not report any issues you encounter while using this feature."</string
<string name="revanced_hide_snack_bar_summary_off">Snack bar is shown</string>
<string name="revanced_hide_snack_bar_summary_on">Snack bar is hidden</string>
<string name="revanced_hide_snack_bar_title">Hide snack bar</string>
<string name="revanced_hide_speed_overlay_summary_off">Speed overlay are shown</string>
<string name="revanced_hide_speed_overlay_summary_on">Speed overlay are hidden</string>
<string name="revanced_hide_speed_overlay_title">Hide speed overlay</string>
<string name="revanced_hide_stories_shelf_summary_off">Stories shelves are shown</string>
<string name="revanced_hide_stories_shelf_summary_on">Stories shelves are hidden</string>
<string name="revanced_hide_stories_shelf_title">Hide stories shelf</string>
@ -439,9 +454,9 @@ Please do not report any issues you encounter while using this feature."</string
<string name="revanced_hide_suggested_actions_summary_off">Suggested actions shown</string>
<string name="revanced_hide_suggested_actions_summary_on">Suggested actions hidden</string>
<string name="revanced_hide_suggested_actions_title">Hide suggested actions</string>
<string name="revanced_hide_suggestions_summary_off">Suggestions are shown</string>
<string name="revanced_hide_suggestions_summary_on">Suggestions are hidden</string>
<string name="revanced_hide_suggestions_title">Hide suggestions</string>
<string name="revanced_hide_suggestions_shelf_summary_off">Following shelves are shown: Breaking news, Explore more channels, Shopping</string>
<string name="revanced_hide_suggestions_shelf_summary_on">Following shelves are hidden: Breaking news, Explore more channels, Shopping</string>
<string name="revanced_hide_suggestions_shelf_title">Hide suggestions shelf</string>
<string name="revanced_hide_teaser_summary_off">Teasers are shown</string>
<string name="revanced_hide_teaser_summary_on">Teasers are hidden</string>
<string name="revanced_hide_teaser_title">Hide teaser under videos</string>
@ -499,7 +514,7 @@ Please do not report any issues you encounter while using this feature."</string
<string name="revanced_player_flyout_panel_title">Player flyout panel</string>
<string name="revanced_player">Player</string>
<string name="revanced_protobuf_spoof_notice">Spoofing protobuf to prevent playback issues</string>
<string name="revanced_quick_actions_components_title">Quick actions components (Experimental)</string>
<string name="revanced_quick_actions_components_title">Quick actions components</string>
<string name="revanced_reboot_first_run">Restart to load the layout normally</string>
<string name="revanced_reboot_warning_general">"As this is still an experimental feature, there may be other unknown issues.
Are you sure you want to continue though?"</string>
@ -527,6 +542,9 @@ Since these setting is quite outdated, it may not be valid"</string>
<string name="revanced_ryd_enable_summary_on">Dislikes are shown</string>
<string name="revanced_ryd_enable_title">Enable Return YouTube Dislike</string>
<string name="revanced_ryd_failure_client_rate_limit_requested">Dislikes not available (client API limit reached)</string>
<string name="revanced_ryd_shorts_summary_off">Dislikes hidden on Shorts</string>
<string name="revanced_ryd_shorts_summary_on">Dislikes shown on Shorts</string>
<string name="revanced_ryd_shorts_title">Show dislikes on Shorts</string>
<string name="revanced_ryd_video_likes_hidden_by_video_owner">Hidden</string>
<string name="revanced_save_video_quality_mobile">Changing default mobile data quality to:</string>
<string name="revanced_save_video_quality_none">Failed to set quality</string>
@ -538,6 +556,18 @@ Since these setting is quite outdated, it may not be valid"</string>
<string name="revanced_show_fullscreen_title_summary">Known issue: Title disappears when clicked</string>
<string name="revanced_show_fullscreen_title_title">Show fullscreen title</string>
<string name="revanced_sponsorblock_settings_summary">SponsorBlock related settings</string>
<string name="revanced_spoof_app_version_summary">"Spoofing the client version to the old version
This will change the appearance of the app, but unknown side effects may occur
If later turned off, the old UI may remain until clear the app data"</string>
<string name="revanced_spoof_app_version_title">Spoof app version</string>
<string name="revanced_spoof_app_version_target_entry_0">18.18.39 - Issue with old quality layout not working can be fixed</string>
<string name="revanced_spoof_app_version_target_entry_1">17.41.37 - Playlists shelf in library tab follows old layout</string>
<string name="revanced_spoof_app_version_target_entry_2">17.30.34 - Restore old UI layout</string>
<string name="revanced_spoof_app_version_target_entry_3">17.06.35 - Enable sorting videos by oldest</string>
<string name="revanced_spoof_app_version_target_entry_4">16.08.35 - Restore explore tab</string>
<string name="revanced_spoof_app_version_target_summary">Type the spoof app version target</string>
<string name="revanced_spoof_app_version_target_title">Spoof app version target</string>
<string name="revanced_swipe_controls">Swipe controls</string>
<string name="revanced_swipe_magnitude_threshold_summary">The amount of threshold for swipe to occur</string>
<string name="revanced_swipe_magnitude_threshold_title">Swipe magnitude threshold</string>
@ -547,9 +577,9 @@ Since these setting is quite outdated, it may not be valid"</string>
<string name="revanced_swipe_overlay_text_size_title">Swipe overlay text size</string>
<string name="revanced_swipe_overlay_timeout_summary">The amount of milliseconds the overlay is visible</string>
<string name="revanced_swipe_overlay_timeout_title">Swipe overlay timeout</string>
<string name="revanced_switching_create_notification_summary_off">Create button and notification button not switching</string>
<string name="revanced_switching_create_notification_summary_on">Create button and notification button are switched</string>
<string name="revanced_switching_create_notification_title">Switching the create button and notification button</string>
<string name="revanced_switching_create_notification_summary_off">Create button is not switched with notifications</string>
<string name="revanced_switching_create_notification_summary_on">Create button is switched with notifications</string>
<string name="revanced_switching_create_notification_title">Switch create with notifications button</string>
<string name="revanced_tool_used">Tool used</string>
<string name="revanced_video">Video</string>
<string name="revanced_video_ads_removal_summary_off">Video ads are shown</string>

View File

@ -3,6 +3,9 @@
<!-- Translation Exception -->
<string name="about">@string/pref_about_category</string>
<string name="pref_app_language_dialog_message">&lt;b>%1$s&lt;/b>&lt;br>&lt;br>This will change the language used on YouTube, including buttons, text and dialogs, but will not change the language of ReVanced Extended settings.</string>
<string name="pref_app_language_system_default">System default</string>
<string name="revanced_account_menu_custom_filter_summary">@string/revanced_ad_remover_custom_filter_summary</string>
<string name="revanced_account_menu_custom_filter_title">@string/revanced_ad_remover_custom_filter_title</string>
@ -51,8 +54,6 @@
<string name="revanced_hide_subscriptions_button_summary_on">@string/revanced_hide_shorts_player_subscriptions_button_summary_on</string>
<string name="revanced_hide_subscriptions_button_title">@string/revanced_hide_shorts_player_subscriptions_button_title</string>
<string name="revanced_icons_afn_blue">afn / blue</string>
<string name="revanced_icons_afn_red">afn / red</string>
<string name="revanced_icons_default">stock</string>
<string name="revanced_icons_mmt">mmt</string>
<string name="revanced_icons_revancify_blue">revancify / blue</string>

File diff suppressed because it is too large Load Diff