fix(YouTube - Translations): Update translations info
This commit is contained in:
parent
1c3731dc8c
commit
c30c031efe
24 changed files with 646 additions and 525 deletions
77
search_for_missing_strings.py
Normal file
77
search_for_missing_strings.py
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
import os
|
||||
import re
|
||||
|
||||
# Define source file path
|
||||
source_file = "src/main/resources/youtube/settings/host/values/strings.xml"
|
||||
|
||||
# Define destination directory path
|
||||
destination_directory = "src/main/resources/youtube/translations"
|
||||
|
||||
# Function to extract strings from a file
|
||||
def extract_strings(file_path):
|
||||
with open(file_path, 'r') as file:
|
||||
content = file.read()
|
||||
strings = re.findall(r'<string(?:\s+name="([^"]*)")?(.*?)>(.*?)</string>', content, re.DOTALL)
|
||||
return set(strings)
|
||||
|
||||
# Extract strings from source file
|
||||
source_strings = extract_strings(source_file)
|
||||
|
||||
# Loop through destination folders
|
||||
# If you want to search only one language folder add +"/your_lang" to destination_directory
|
||||
# like this => for root, dirs, files in os.walk(destination_directory+"/ar"):
|
||||
for root, dirs, files in os.walk(destination_directory):
|
||||
if "strings.xml" in files:
|
||||
# Get destination file path
|
||||
destination_file = os.path.join(root, "strings.xml")
|
||||
|
||||
# Get destination folder name (language code)
|
||||
destination_folder = os.path.dirname(destination_file)
|
||||
language_code = os.path.basename(destination_folder)
|
||||
|
||||
# Output file path
|
||||
output_file = os.path.join(destination_folder, "missing_strings.xml")
|
||||
|
||||
# Check if source and destination files exist
|
||||
if not os.path.isfile(source_file):
|
||||
print(f"Error: {source_file} not found.")
|
||||
exit(1)
|
||||
|
||||
if not os.path.isfile(destination_file):
|
||||
print(f"Error: {destination_file} not found.")
|
||||
exit(1)
|
||||
|
||||
# Extract strings from destination file
|
||||
destination_strings = extract_strings(destination_file)
|
||||
|
||||
# Find missing strings
|
||||
missing_strings = []
|
||||
|
||||
for name, attributes, content in source_strings:
|
||||
if name not in {name for name, _, _ in destination_strings}:
|
||||
string_tag = f'<string'
|
||||
if name:
|
||||
string_tag += f' name="{name}"'
|
||||
if attributes:
|
||||
string_tag += f' {attributes.strip()}'
|
||||
string_tag += f'>{content}</string>\n'
|
||||
missing_strings.append(string_tag)
|
||||
|
||||
# Sort missing strings by name attribute
|
||||
missing_strings.sort(key=lambda x: re.search(r'name="([^"]*)"', x).group(1))
|
||||
|
||||
# Check if missing strings exist
|
||||
if not missing_strings:
|
||||
# Delete output file if exists
|
||||
if os.path.isfile(output_file):
|
||||
os.remove(output_file)
|
||||
|
||||
print(f"No missing strings for {language_code}")
|
||||
else:
|
||||
# Save missing strings to output file
|
||||
with open(output_file, 'w') as file:
|
||||
for string_tag in missing_strings:
|
||||
file.write(string_tag)
|
||||
|
||||
num_missing = len(missing_strings)
|
||||
print(f"{language_code} - {num_missing} missing strings.")
|
||||
|
|
@ -1,66 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Define source file path
|
||||
source_file="src/main/resources/youtube/settings/host/values/strings.xml"
|
||||
|
||||
# Loop through destination folders
|
||||
# Replace * with language folder name to check only one language
|
||||
for destination_file in src/main/resources/youtube/translations/*/strings.xml; do
|
||||
# Get destination folder name
|
||||
destination_folder=$(dirname "$destination_file")
|
||||
|
||||
# Extract language code from destination folder
|
||||
language_code=$(basename "$destination_folder")
|
||||
|
||||
# Output file path
|
||||
output_file="$destination_folder/missing_strings.xml"
|
||||
|
||||
# Check if source and destination files exist
|
||||
if [ ! -f "$source_file" ]; then
|
||||
echo "Error: $source_file not found."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -f "$destination_file" ]; then
|
||||
echo "Error: $destination_file not found."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Extract strings from source file
|
||||
source_strings=$(grep '<string name=' "$source_file")
|
||||
|
||||
# Extract strings from destination file
|
||||
destination_strings=$(grep '<string name=' "$destination_file")
|
||||
|
||||
# Find missing strings
|
||||
missing_strings=""
|
||||
while IFS= read -r source_string; do
|
||||
name=$(echo "$source_string" | sed -n 's/.*name="\([^"]*\)".*/\1/p')
|
||||
if ! grep -qF "name=\"$name\"" "$destination_file"; then
|
||||
missing_strings+="$source_string\n"
|
||||
fi
|
||||
done <<< "$source_strings"
|
||||
|
||||
# Remove leading whitespace (including spaces and tabs) before each string in $missing_strings
|
||||
missing_strings=$(echo -e "$missing_strings" | sed 's/^[[:blank:]]*//')
|
||||
|
||||
# Escape percent signs
|
||||
missing_strings="${missing_strings//%/%%}"
|
||||
|
||||
# Check if missing strings exist
|
||||
if [ -z "$missing_strings" ]; then
|
||||
# Delete $output_file if exists
|
||||
if [ -f "$output_file" ]; then
|
||||
rm "$output_file"
|
||||
fi
|
||||
|
||||
echo "No missing strings for $language_code"
|
||||
else
|
||||
# Save missing strings to output file
|
||||
printf "$missing_strings" > "$output_file"
|
||||
|
||||
# echo "Missing strings saved to $output_file."
|
||||
num_missing=$(echo -e "$missing_strings" | grep -c '<string name=')
|
||||
echo "$language_code - $num_missing missing strings."
|
||||
fi
|
||||
done
|
||||
|
|
@ -5,6 +5,6 @@
|
|||
<string name="revanced_spoof_failure_connection_status_code" formatted="false">"Spoof storyboard not available: "</string>
|
||||
<string name="revanced_spoof_failure_connection_timeout">Spoof storyboard temporarily not available (API timed out).</string>
|
||||
<string name="revanced_spoof_failure_generic">"Spoof storyboard temporarily not available: "</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
|
|
|
|||
|
|
@ -5,53 +5,52 @@
|
|||
<string name="revanced_change_start_page_entry_music">Music</string>
|
||||
<string name="revanced_change_start_page_entry_sports">Sports</string>
|
||||
<string name="revanced_change_start_page_entry_watch_later">Watch later</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines
|
||||
|
||||
Words with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_disable_rolling_number_animations_summary_off">Rolling animations are enabled.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_summary_on">Rolling animations are disabled.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_title">Disable rolling number animations</string>
|
||||
<string name="revanced_hide_community_posts_related_video_summary_off">Community posts in related video are shown.</string>
|
||||
<string name="revanced_hide_community_posts_related_video_summary_on">Community posts in related video are hidden.</string>
|
||||
<string name="revanced_hide_community_posts_related_video_title">Hide community posts in related video</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with \"Only for Membership\" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_summary">When you finished a video, another play automatically</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_title">Auto play the next video</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with "Only for Membership" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines\n\nWords with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_summary">"Tap to generate a playlist of all videos from channel from oldest to newest.
|
||||
Tap and hold to undo."</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_title">Time-ordered playlist button</string>
|
||||
<string name="revanced_overlay_button_whitelisting_summary">Tap to launch add channel into Channel Whitelist.</string>
|
||||
<string name="revanced_overlay_button_whitelisting_title">Whitelist button</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Current Header: Default Header</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Current Header: Premium Header</string>
|
||||
<string name="revanced_override_premium_header_title">Premium Header</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_16_08_35">16.08.35 - Restore old explore tab</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_18_09_39">18.09.39 - Restore old library tab (Disable You Tab)</string>
|
||||
<string name="revanced_spoof_failure_connection_status_code" formatted="false">"Spoof storyboard not available: "</string>
|
||||
<string name="revanced_spoof_failure_connection_timeout">Spoof storyboard temporarily not available (API timed out).</string>
|
||||
<string name="revanced_spoof_failure_generic">"Spoof storyboard temporarily not available: "</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Failed to add channel %s to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_channel_name">Channel Name</string>
|
||||
<string name="revanced_whitelisting_empty">There are no whitelisted channels</string>
|
||||
<string name="revanced_whitelisting_excluded">Not added to whitelist</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Failed to retrieve channel details, received message %d</string>
|
||||
<string name="revanced_whitelisting_included">Added to whitelist</string>
|
||||
<string name="revanced_whitelisting_reboot">Reboot to apply channel whitelist settings</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Failed to remove channel %s from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Check or remove the list of channels added to the whitelist</string>
|
||||
<string name="revanced_whitelisting_speed">Video Speed</string>
|
||||
<string name="revanced_whitelisting_speed_button">Speed</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SB</string>
|
||||
<string name="revanced_whitelisting_title">Channel Whitelist</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_16_08_35">16.08.35 - Restore old explore tab</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_18_09_39">18.09.39 - Restore old library tab (Disable You Tab)</string>
|
||||
<string name="revanced_spoof_failure_connection_status_code" formatted="false">"Spoof storyboard not available: "</string>
|
||||
<string name="revanced_spoof_failure_connection_timeout">Spoof storyboard temporarily not available (API timed out).</string>
|
||||
<string name="revanced_spoof_failure_generic">"Spoof storyboard temporarily not available: "</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
|
|
@ -1,9 +1,13 @@
|
|||
<string name="revanced_alt_thumbnail_about_status_dearrow">"Showing DeArrow thumbnails.
|
||||
If a video has no DeArrow thumbnails then the original YouTube thumbnails are shown."</string>
|
||||
<string name="revanced_alt_thumbnail_about_status_dearrow_stills">"Showing DeArrow thumbnails.
|
||||
If a video has no DeArrow thumbnails then still video captures are shown."</string>
|
||||
<string name="revanced_alt_thumbnail_about_status_disabled">Showing original YouTube thumbnails.</string>
|
||||
<string name="revanced_alt_thumbnail_about_status_stills">Showing still video captures.</string>
|
||||
<string name="revanced_alt_thumbnail_about_title">Thumbnails in use</string>
|
||||
<string name="revanced_alt_thumbnail_dearrow_about_summary">"DeArrow provides crowd-sourced thumbnails for YouTube videos. These thumbnails are often more relevant than those provided by YouTube. If enabled, video URLs will be sent to the API server and no other data is sent.
|
||||
|
||||
Tap here to learn more about DeArrow."</string>
|
||||
<string name="revanced_alt_thumbnail_dearrow_about_title">About DeArrow</string>
|
||||
<string name="revanced_alt_thumbnail_dearrow_api_url_summary">"The URL of the DeArrow thumbnail cache endpoint. Do not change this unless you know what you're doing."</string>
|
||||
<string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
|
||||
|
|
@ -52,20 +56,13 @@
|
|||
<string name="revanced_change_start_page_title">Change start page</string>
|
||||
<string name="revanced_change_start_page_warning">Invalid start page, resetting to default.</string>
|
||||
<string name="revanced_close_interstitial_ads_summary">"Automatically close interstitial ads.
|
||||
|
||||
Note: This feature hasn't been tested."</string>
|
||||
<string name="revanced_close_interstitial_ads_title">Close interstitial ads</string>
|
||||
<string name="revanced_close_interstitial_ads_toast">Closing interstitial ads.</string>
|
||||
<string name="revanced_custom_filter_toast_invalid_characters" formated="false">Invalid custom filter (must be ASCII only): %s</string>
|
||||
<string name="revanced_custom_filter_toast_invalid_syntax" formated="false">Invalid custom filter: %s</string>
|
||||
<string name="revanced_custom_filter_toast_reset">Custom filter reset to default</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines
|
||||
|
||||
Words with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_custom_playback_speed_panel_type_summary_off">Old style flyout panel is used.</string>
|
||||
<string name="revanced_custom_playback_speed_panel_type_summary_on">Custom dialog is used.</string>
|
||||
<string name="revanced_custom_playback_speed_panel_type_title">Custom playback speed panel type</string>
|
||||
|
|
@ -73,8 +70,10 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_disable_rolling_number_animations_summary_on">Rolling animations are disabled.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_title">Disable rolling number animations</string>
|
||||
<string name="revanced_disable_speed_overlay_summary">"Disable 'Playing at 2x speed' while holding down.
|
||||
|
||||
Note: Disabling the speed overlay restores the 'Slide to seek' behavior of the old layout."</string>
|
||||
<string name="revanced_disable_speed_overlay_title">Disable speed overlay</string>
|
||||
<string name="revanced_disable_update_screen_summary">Disables the "Update your app" screen that appears when using an outdated client.</string>
|
||||
<string name="revanced_disable_update_screen_summary">Disables the \"Update your app\" screen that appears when using an outdated client.</string>
|
||||
<string name="revanced_disable_update_screen_title">Disable update screen</string>
|
||||
<string name="revanced_enable_bottom_player_gestures_summary_off">Entering fullscreen when swiping down below the video player is disabled.</string>
|
||||
<string name="revanced_enable_bottom_player_gestures_summary_on">Entering fullscreen when swiping down below the video player is enabled.</string>
|
||||
|
|
@ -113,8 +112,12 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_external_downloader_download">Download app</string>
|
||||
<string name="revanced_external_downloader_set">Set as default downloader</string>
|
||||
<string name="revanced_force_fullscreen_summary">"Videos will be switched to fullscreen in the following situations:
|
||||
|
||||
• When a timestamp in the comments is clicked on.
|
||||
• When a video is started."</string>
|
||||
<string name="revanced_force_fullscreen_title">Force fullscreen</string>
|
||||
<string name="revanced_hide_account_menu_summary">"Hide elements of the account menu and You tab.
|
||||
Some components may not be hidden."</string>
|
||||
<string name="revanced_hide_comments_by_members_summary_off">Comments by members banner is shown.</string>
|
||||
<string name="revanced_hide_comments_by_members_summary_on">Comments by members banner is hidden.</string>
|
||||
<string name="revanced_hide_comments_by_members_title">Hide comments by members banner</string>
|
||||
|
|
@ -127,6 +130,8 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_hide_for_you_shelf_summary_off">"'For You' shelves are shown."</string>
|
||||
<string name="revanced_hide_for_you_shelf_summary_on">"'For You' shelves are hidden."</string>
|
||||
<string name="revanced_hide_for_you_shelf_title">"Hide 'For You' shelf"</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with \"Only for Membership\" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_hide_notifications_button_summary_off">Notifications button in navigation bar is shown.</string>
|
||||
<string name="revanced_hide_notifications_button_summary_on">Notifications button in navigation bar is hidden.</string>
|
||||
<string name="revanced_hide_notifications_button_title">Hide notifications button</string>
|
||||
|
|
@ -146,48 +151,49 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_hide_shopping_links_summary_on">Shopping links are hidden.</string>
|
||||
<string name="revanced_hide_shopping_links_title">Hide shopping links</string>
|
||||
<string name="revanced_hide_shorts_shelf_summary">"Hides Shorts shelves.
|
||||
|
||||
Known issue: Official headers in search results will be hidden."</string>
|
||||
<string name="revanced_hide_store_tab_summary_off">Store tab is shown.</string>
|
||||
<string name="revanced_hide_store_tab_summary_on">Store tab is hidden.</string>
|
||||
<string name="revanced_hide_store_tab_title">Hide store tab</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_summary">When you finished a video, another play automatically</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_title">Auto play the next video</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_summary_off">"Identifies the suggestions shelf through the browse id.
|
||||
|
||||
Known issues:
|
||||
• When Browseid is not identified, suggestions shelf may not be hidden."</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_summary_on">"Identifies the suggestions shelf through the current tab.
|
||||
|
||||
Known issues:
|
||||
• More drawer shelves may be hidden.
|
||||
• Playlist shelves may be hidden."</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_title">Select method to hide shelves</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with "Only for Membership" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_hide_video_with_gray_description_summary">"Hide videos with gray description from search results.
|
||||
Videos with a gray description include videos that are not related to search terms."</string>
|
||||
<string name="revanced_hide_video_with_gray_description_title">Hide videos with gray description</string>
|
||||
<string name="revanced_hide_video_with_low_view_summary">"Hide videos with less than 1,000 views exposed to the home feed.
|
||||
Some videos, including those from channels you subscribe to, may not be hidden even if they have fewer than 1,000 views."</string>
|
||||
<string name="revanced_hide_video_with_low_view_title">Hide videos with low views</string>
|
||||
<string name="revanced_inform">Inform</string>
|
||||
<string name="revanced_keep_landscape_mode_summary">Keeps landscape mode when turning the screen off and on in fullscreen.</string>
|
||||
<string name="revanced_keep_landscape_mode_timeout_summary">The amount of milliseconds the landscape mode is forced.</string>
|
||||
<string name="revanced_keep_landscape_mode_timeout_title">Keep landscape mode timeout</string>
|
||||
<string name="revanced_keep_landscape_mode_title">Keep landscape mode</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines\n\nWords with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_summary">"Tap to generate a playlist of all videos from channel from oldest to newest.
|
||||
Tap and hold to undo."</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_title">Time-ordered playlist button</string>
|
||||
<string name="revanced_overlay_button_whitelisting_summary">Tap to launch add channel into Channel Whitelist.</string>
|
||||
<string name="revanced_overlay_button_whitelisting_title">Whitelist button</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Current Header: Default Header</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Current Header: Premium Header</string>
|
||||
<string name="revanced_override_premium_header_title">Premium Header</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Failed to add channel %s to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_channel_name">Channel Name</string>
|
||||
<string name="revanced_whitelisting_empty">There are no whitelisted channels</string>
|
||||
<string name="revanced_whitelisting_excluded">Not added to whitelist</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Failed to retrieve channel details, received message %d</string>
|
||||
<string name="revanced_whitelisting_included">Added to whitelist</string>
|
||||
<string name="revanced_whitelisting_reboot">Reboot to apply channel whitelist settings</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Failed to remove channel %s from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Check or remove the list of channels added to the whitelist</string>
|
||||
<string name="revanced_whitelisting_speed">Video Speed</string>
|
||||
<string name="revanced_whitelisting_speed_button">Speed</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SB</string>
|
||||
<string name="revanced_whitelisting_title">Channel Whitelist</string>
|
||||
<string name="revanced_playback_speed_normal">Normal</string>
|
||||
<string name="revanced_player_flyout_panel_additional_settings_summary">To hide the additional settings menu, hide all settings in the additional settings category.</string>
|
||||
<string name="revanced_player_flyout_panel_additional_settings_title">Player flyout panel (Additional settings)</string>
|
||||
|
|
@ -195,17 +201,18 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_quick_actions_margin_top_title">Quick actions top margin</string>
|
||||
<string name="revanced_quick_actions_margin_top_warning">Quick actions top margin must be between 0-64. Reset to default values.</string>
|
||||
<string name="revanced_remove_viewer_discretion_dialog_summary">"Remove viewer discretion dialog.
|
||||
This does not bypass the age restriction. It just accepts it automatically."</string>
|
||||
<string name="revanced_remove_viewer_discretion_dialog_title">Remove viewer discretion dialog</string>
|
||||
<string name="revanced_restart_first_run">Restart to load the layout normally</string>
|
||||
<string name="revanced_restart_message">Refresh and restart</string>
|
||||
<string name="revanced_ryd_failure_connection_timeout">Dislikes temporarily not available (API timed out).</string>
|
||||
<string name="revanced_ryd_failure_connection_status_code" formatted="false">Dislikes not available (status %d).</string>
|
||||
<string name="revanced_ryd_failure_connection_timeout">Dislikes temporarily not available (API timed out).</string>
|
||||
<string name="revanced_ryd_failure_generic">Dislikes not available (%s).</string>
|
||||
<string name="revanced_ryd_shorts_summary_disclaimer">Limitation: Dislikes may not appear in certain situations.</string>
|
||||
<string name="revanced_ryd_shorts_summary_on">Dislikes shown on Shorts. %s</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_summary_off">Toast is not shown if Return YouTube Dislike is not available.</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_summary_on">Toast is shown if Return YouTube Dislike is not available.</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="revanced_sanitize_sharing_links_summary">Removes tracking query parameters from the URLs when sharing links.</string>
|
||||
<string name="revanced_sanitize_sharing_links_title">Sanitize sharing links</string>
|
||||
<string name="revanced_save_playback_speed" formatted="false">Changing default speed to %s.</string>
|
||||
|
|
@ -227,25 +234,42 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_swipe_gestures_lock_mode_summary_off">"Swipe gestures are disabled in 'Lock screen' mode."</string>
|
||||
<string name="revanced_swipe_gestures_lock_mode_summary_on">"Swipe gestures are enabled in 'Lock screen' mode."</string>
|
||||
<string name="revanced_swipe_gestures_lock_mode_title">"Swipe gestures in 'Lock screen' mode"</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_switching_create_notification_summary">"Swap the positions of the create button and notification button by spoofing the device's information.
|
||||
<string name="sb_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="sb_toast_on_connection_error_summary_on">Toast is shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_summary_off">Toast is not shown if SponsorBlock is not available.</string>
|
||||
|
||||
• Even if you change this setting, it may not take effect until you reboot the device.
|
||||
• Disabling this setting loads more ads from the server side.
|
||||
• You should disable this setting to make video ads visible."</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Failed to add channel %s to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_channel_name">Channel Name</string>
|
||||
<string name="revanced_whitelisting_empty">There are no whitelisted channels</string>
|
||||
<string name="revanced_whitelisting_excluded">Not added to whitelist</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Failed to retrieve channel details, received message %d</string>
|
||||
<string name="revanced_whitelisting_included">Added to whitelist</string>
|
||||
<string name="revanced_whitelisting_reboot">Reboot to apply channel whitelist settings</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Failed to remove channel %s from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Check or remove the list of channels added to the whitelist</string>
|
||||
<string name="revanced_whitelisting_speed">Video Speed</string>
|
||||
<string name="revanced_whitelisting_speed_button">Speed</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SB</string>
|
||||
<string name="revanced_whitelisting_title">Channel Whitelist</string>
|
||||
<string name="sb_settings_ie">Import / Export settings</string>
|
||||
<string name="sb_settings_ie_sum">Your SponsorBlock JSON configuration that can be imported / exported to ReVanced Extended and other SponsorBlock platforms. %s</string>
|
||||
<string name="sb_settings_ie_sum_warning">This includes your private user id. Be sure to share this wisely.</string>
|
||||
<string name="sb_settings_ie">Import / Export settings</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning">Your settings contain a private SponsorBlock user id.
|
||||
|
||||
Your user id is like a password and it should never be shared.
|
||||
</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning">Your settings contain a private SponsorBlock user id.\n\nYour user id is like a password and it should never be shared.\n</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning_dismiss">Do not show again</string>
|
||||
<string name="sb_sponsorblock_connection_failure_generic">SponsorBlock temporarily not available.</string>
|
||||
<string name="sb_sponsorblock_connection_failure_status" formatted="false">SponsorBlock temporarily not available (status %d).</string>
|
||||
<string name="sb_sponsorblock_connection_failure_timeout">SponsorBlock temporarily not available (API timed out).</string>
|
||||
<string name="sb_vote_failed_timeout">Unable to vote for segment (API timed out).</string>
|
||||
<string name="sb_stats_saved_hour_format" formatted="false">%s hours %s minutes</string>
|
||||
<string name="sb_stats_saved_minute_format" formatted="false">%s minutes %s seconds</string>
|
||||
<string name="sb_stats_saved_second_format" formatted="false">%s seconds</string>
|
||||
<string name="sb_stats_saved_second_format" formatted="false">%s seconds</string>
|
||||
<string name="sb_toast_on_connection_error_summary_off">Toast is not shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_summary_on">Toast is shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="sb_vote_failed_timeout">Unable to vote for segment (API timed out).</string>
|
||||
|
|
|
|||
|
|
@ -5,15 +5,6 @@
|
|||
<string name="revanced_change_start_page_entry_music">Music</string>
|
||||
<string name="revanced_change_start_page_entry_sports">Sports</string>
|
||||
<string name="revanced_change_start_page_entry_watch_later">Watch later</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines
|
||||
|
||||
Words with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_disable_rolling_number_animations_summary_off">Rolling animations are enabled.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_summary_on">Rolling animations are disabled.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_title">Disable rolling number animations</string>
|
||||
|
|
@ -27,8 +18,12 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_external_downloader_download">Download app</string>
|
||||
<string name="revanced_external_downloader_set">Set as default downloader</string>
|
||||
<string name="revanced_force_fullscreen_summary">"Videos will be switched to fullscreen in the following situations:
|
||||
|
||||
• When a timestamp in the comments is clicked on.
|
||||
• When a video is started."</string>
|
||||
<string name="revanced_force_fullscreen_title">Force fullscreen</string>
|
||||
<string name="revanced_hide_account_menu_summary">"Hide elements of the account menu and You tab.
|
||||
Some components may not be hidden."</string>
|
||||
<string name="revanced_hide_button_open_mix_playlist_summary_off">Open mix playlist button is shown.</string>
|
||||
<string name="revanced_hide_button_open_mix_playlist_summary_on">Open mix playlist button is hidden.</string>
|
||||
<string name="revanced_hide_button_open_mix_playlist_title">Hide open mix playlist button</string>
|
||||
|
|
@ -55,6 +50,8 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_hide_handle_summary_off">Handle is shown.</string>
|
||||
<string name="revanced_hide_handle_summary_on">Handle is hidden.</string>
|
||||
<string name="revanced_hide_handle_title">Hide handle</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with \"Only for Membership\" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_hide_notifications_button_summary_off">Notifications button in navigation bar is shown.</string>
|
||||
<string name="revanced_hide_notifications_button_summary_on">Notifications button in navigation bar is hidden.</string>
|
||||
<string name="revanced_hide_notifications_button_title">Hide notifications button</string>
|
||||
|
|
@ -102,6 +99,8 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_hide_shorts_player_subscriptions_button_summary_on">Subscriptions button is hidden.</string>
|
||||
<string name="revanced_hide_shorts_player_subscriptions_button_title">Hide subscriptions button</string>
|
||||
<string name="revanced_hide_shorts_shelf_summary">"Hides Shorts shelves.
|
||||
|
||||
Known issue: Official headers in search results will be hidden."</string>
|
||||
<string name="revanced_hide_shorts_toolbar_banner_summary_off">Banner is shown.</string>
|
||||
<string name="revanced_hide_shorts_toolbar_banner_summary_on">Banner is hidden.</string>
|
||||
<string name="revanced_hide_start_trial_button_summary_off">Start trial button is shown.</string>
|
||||
|
|
@ -113,13 +112,20 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_hide_suggested_video_overlay_auto_play_summary">When you finished a video, another play automatically</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_title">Auto play the next video</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_summary_off">"Identifies the suggestions shelf through the browse id.
|
||||
|
||||
Known issues:
|
||||
• When Browseid is not identified, suggestions shelf may not be hidden."</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_summary_on">"Identifies the suggestions shelf through the current tab.
|
||||
|
||||
Known issues:
|
||||
• More drawer shelves may be hidden.
|
||||
• Playlist shelves may be hidden."</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_title">Select method to hide shelves</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with "Only for Membership" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_hide_video_with_gray_description_summary">"Hide videos with gray description from search results.
|
||||
Videos with a gray description include videos that are not related to search terms."</string>
|
||||
<string name="revanced_hide_video_with_gray_description_title">Hide videos with gray description</string>
|
||||
<string name="revanced_hide_video_with_low_view_summary">"Hide videos with less than 1,000 views exposed to the home feed.
|
||||
Some videos, including those from channels you subscribe to, may not be hidden even if they have fewer than 1,000 views."</string>
|
||||
<string name="revanced_hide_video_with_low_view_title">Hide videos with low views</string>
|
||||
<string name="revanced_hide_view_products_title">Hide view products banner</string>
|
||||
<string name="revanced_hide_web_search_results_summary_off">Web search results are shown.</string>
|
||||
|
|
@ -131,41 +137,37 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_keep_landscape_mode_timeout_summary">The amount of milliseconds the landscape mode is forced.</string>
|
||||
<string name="revanced_keep_landscape_mode_timeout_title">Keep landscape mode timeout</string>
|
||||
<string name="revanced_keep_landscape_mode_title">Keep landscape mode</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines\n\nWords with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_layout_title">Layout</string>
|
||||
<string name="revanced_overlay_button_always_repeat_summary">"Tap to toggle always repeat states.
|
||||
Tap and hold to toggle pause after repeat states."</string>
|
||||
<string name="revanced_overlay_button_always_repeat_title">Always repeat button</string>
|
||||
<string name="revanced_overlay_button_copy_video_url_summary">"Tap to copy video URL.
|
||||
Tap and hold to copy video URL with timestamp."</string>
|
||||
<string name="revanced_overlay_button_copy_video_url_timestamp_summary">"Tap to copy video URL with timestamp.
|
||||
Tap and hold to copy video timestamp."</string>
|
||||
<string name="revanced_overlay_button_copy_video_url_timestamp_title">Copy timestamp URL button</string>
|
||||
<string name="revanced_overlay_button_copy_video_url_title">Copy video URL button</string>
|
||||
<string name="revanced_overlay_button_external_downloader_summary">Tap to launch external downloader.</string>
|
||||
<string name="revanced_overlay_button_external_downloader_title">External download button</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_summary">"Tap to generate a playlist of all videos from channel from oldest to newest.
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_title">Time-ordered playlist button</string>
|
||||
<string name="revanced_overlay_button_speed_dialog_reset">Playback speed reset (1.0x).</string>
|
||||
<string name="revanced_overlay_button_speed_dialog_summary">"Tap to open speed dialog.
|
||||
Tap and hold to set playback speed to 1.0x."</string>
|
||||
<string name="revanced_overlay_button_speed_dialog_title">Speed dialog button</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_summary">"Tap to generate a playlist of all videos from channel from oldest to newest.
|
||||
Tap and hold to undo."</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_title">Time-ordered playlist button</string>
|
||||
<string name="revanced_overlay_button_whitelisting_summary">Tap to launch add channel into Channel Whitelist.</string>
|
||||
<string name="revanced_overlay_button_whitelisting_title">Whitelist button</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Current Header: Default Header</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Current Header: Premium Header</string>
|
||||
<string name="revanced_override_premium_header_title">Premium Header</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Failed to add channel %s to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_channel_name">Channel Name</string>
|
||||
<string name="revanced_whitelisting_empty">There are no whitelisted channels</string>
|
||||
<string name="revanced_whitelisting_excluded">Not added to whitelist</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Failed to retrieve channel details, received message %d</string>
|
||||
<string name="revanced_whitelisting_included">Added to whitelist</string>
|
||||
<string name="revanced_whitelisting_reboot">Reboot to apply channel whitelist settings</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Failed to remove channel %s from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Check or remove the list of channels added to the whitelist</string>
|
||||
<string name="revanced_whitelisting_speed">Video Speed</string>
|
||||
<string name="revanced_whitelisting_speed_button">Speed</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SB</string>
|
||||
<string name="revanced_whitelisting_title">Channel Whitelist</string>
|
||||
<string name="revanced_playback_speed_normal">Normal</string>
|
||||
<string name="revanced_player_flyout_panel_additional_settings_summary">To hide the additional settings menu, hide all settings in the additional settings category.</string>
|
||||
<string name="revanced_player_flyout_panel_additional_settings_title">Player flyout panel (Additional settings)</string>
|
||||
|
|
@ -174,20 +176,21 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_quick_actions_margin_top_warning">Quick actions top margin must be between 0-64. Reset to default values.</string>
|
||||
<string name="revanced_quick_actions_title">Quick actions</string>
|
||||
<string name="revanced_remove_viewer_discretion_dialog_summary">"Remove viewer discretion dialog.
|
||||
This does not bypass the age restriction. It just accepts it automatically."</string>
|
||||
<string name="revanced_remove_viewer_discretion_dialog_title">Remove viewer discretion dialog</string>
|
||||
<string name="revanced_restart_first_run">Restart to load the layout normally</string>
|
||||
<string name="revanced_restart_message">Refresh and restart</string>
|
||||
<string name="revanced_ryd_about">About</string>
|
||||
<string name="revanced_ryd_failure_connection_timeout">Dislikes temporarily not available (API timed out).</string>
|
||||
<string name="revanced_ryd_failure_connection_status_code" formatted="false">Dislikes not available (status %d).</string>
|
||||
<string name="revanced_ryd_failure_connection_timeout">Dislikes temporarily not available (API timed out).</string>
|
||||
<string name="revanced_ryd_failure_generic">Dislikes not available (%s).</string>
|
||||
<string name="revanced_ryd_shorts_summary_disclaimer">Limitation: Dislikes may not appear in certain situations.</string>
|
||||
<string name="revanced_ryd_shorts_summary_off">Dislikes hidden on Shorts.</string>
|
||||
<string name="revanced_ryd_shorts_summary_on">Dislikes shown on Shorts. %s</string>
|
||||
<string name="revanced_ryd_shorts_title">Show dislikes on Shorts</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_summary_off">Toast is not shown if Return YouTube Dislike is not available.</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_summary_on">Toast is shown if Return YouTube Dislike is not available.</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="revanced_sanitize_sharing_links_summary">Removes tracking query parameters from the URLs when sharing links.</string>
|
||||
<string name="revanced_sanitize_sharing_links_title">Sanitize sharing links</string>
|
||||
<string name="revanced_save_playback_speed" formatted="false">Changing default speed to %s.</string>
|
||||
|
|
@ -199,13 +202,19 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_share_copy_url_timestamp_success">URL with timestamp copied to clipboard.</string>
|
||||
<string name="revanced_shorts_toolbar_summary">Back button in the toolbar cannot be hidden.</string>
|
||||
<string name="revanced_shorts_toolbar_title">Shorts toolbar</string>
|
||||
<string name="revanced_skipped_preloaded_buffer">Skipped preloaded buffer.</string>
|
||||
<string name="revanced_skip_preloaded_buffer_summary">"Skip preloaded buffer at video start to bypass default video quality enforcement delay.
|
||||
|
||||
• When the video starts, there is a delay of approximately 0.7 seconds, but the default video quality is applied immediately.
|
||||
• Does not apply to HDR videos, live stream videos, videos shorter than 10 seconds."</string>
|
||||
<string name="revanced_skip_preloaded_buffer_title">Skip preloaded buffer</string>
|
||||
<string name="revanced_skip_preloaded_buffer_toast_summary_off">Toast is not shown.</string>
|
||||
<string name="revanced_skip_preloaded_buffer_toast_summary_on">Toast is shown.</string>
|
||||
<string name="revanced_skip_preloaded_buffer_toast_title">Show a toast when skipped</string>
|
||||
<string name="revanced_skipped_preloaded_buffer">Skipped preloaded buffer.</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_target_entry_16_08_35">16.08.35 - Restore old explore tab</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_17_08_35">17.08.35 - Restore old UI layout</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_17_41_37">17.41.37 - Restore old playlist shelf</string>
|
||||
|
|
@ -226,90 +235,115 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_spoof_failure_connection_timeout">Spoof storyboard temporarily not available (API timed out).</string>
|
||||
<string name="revanced_spoof_failure_generic">"Spoof storyboard temporarily not available: "</string>
|
||||
<string name="revanced_spoof_player_parameter_in_feed_summary_off">"Player parameter not spoofed for feed videos.
|
||||
|
||||
Known issue: Feed videos will play for less than 1 minute before encountering playback issues."</string>
|
||||
<string name="revanced_spoof_player_parameter_in_feed_summary_on">"Player parameter spoofed for feed videos.
|
||||
|
||||
Known issue: Automatically played feed videos will show up in your watch history."</string>
|
||||
<string name="revanced_spoof_player_parameter_in_feed_title">Spoof player parameter in feed</string>
|
||||
<string name="revanced_spoof_player_parameter_summary">"Spoofs player parameters to prevent playback issues.
|
||||
|
||||
Known issues:
|
||||
• Enhanced bitrate is not available.
|
||||
• No seekbar thumbnails for paid videos.
|
||||
• Offline downloads may not work.
|
||||
• Video may not start from the last watched time."</string>
|
||||
<string name="revanced_spoof_player_parameter_title">Spoof player parameter</string>
|
||||
<string name="revanced_swipe_gestures_lock_mode_summary_off">"Swipe gestures are disabled in 'Lock screen' mode."</string>
|
||||
<string name="revanced_swipe_gestures_lock_mode_summary_on">"Swipe gestures are enabled in 'Lock screen' mode."</string>
|
||||
<string name="revanced_swipe_gestures_lock_mode_title">"Swipe gestures in 'Lock screen' mode"</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_switching_create_notification_summary">"Swap the positions of the create button and notification button by spoofing the device's information.
|
||||
|
||||
• Even if you change this setting, it may not take effect until you reboot the device.
|
||||
• Disabling this setting loads more ads from the server side.
|
||||
• You should disable this setting to make video ads visible."</string>
|
||||
<string name="revanced_switching_create_notification_title">Switch create with notifications button</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Failed to add channel %s to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_channel_name">Channel Name</string>
|
||||
<string name="revanced_whitelisting_empty">There are no whitelisted channels</string>
|
||||
<string name="revanced_whitelisting_excluded">Not added to whitelist</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Failed to retrieve channel details, received message %d</string>
|
||||
<string name="revanced_whitelisting_included">Added to whitelist</string>
|
||||
<string name="revanced_whitelisting_reboot">Reboot to apply channel whitelist settings</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Failed to remove channel %s from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Check or remove the list of channels added to the whitelist</string>
|
||||
<string name="revanced_whitelisting_speed">Video Speed</string>
|
||||
<string name="revanced_whitelisting_speed_button">Speed</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SB</string>
|
||||
<string name="revanced_whitelisting_title">Channel Whitelist</string>
|
||||
<string name="sb_about">About</string>
|
||||
<string name="sb_diff_segments">Change segment behavior</string>
|
||||
<string name="sb_enable_auto_hide_skip_segment_button">Automatically hide skip button</string>
|
||||
<string name="sb_enable_auto_hide_skip_segment_button_sum_off">Skip button displayed for entire segment.</string>
|
||||
<string name="sb_enable_auto_hide_skip_segment_button_sum_on">Skip button hides after a few seconds.</string>
|
||||
<string name="sb_enable_compact_skip_button">Use compact skip button</string>
|
||||
<string name="sb_enable_compact_skip_button_sum_off">Skip button styled for best appearance.</string>
|
||||
<string name="sb_enable_compact_skip_button_sum_on">Skip button styled for minimum width.</string>
|
||||
<string name="sb_enable_create_segment">Show create new segment button</string>
|
||||
<string name="sb_enable_create_segment_sum_off">Create new segment button is not shown.</string>
|
||||
<string name="sb_enable_create_segment_sum_on">Create new segment button is shown.</string>
|
||||
<string name="sb_enable_sb_sum">SponsorBlock is a crowd-sourced system for skipping annoying parts of YouTube videos.</string>
|
||||
<string name="sb_enable_voting">Show voting button</string>
|
||||
<string name="sb_enable_voting_sum_on">Segment voting button is shown.</string>
|
||||
<string name="sb_enable_voting_sum_off">Segment voting button is not shown.</string>
|
||||
<string name="sb_enable_compact_skip_button">Use compact skip button</string>
|
||||
<string name="sb_enable_compact_skip_button_sum_on">Skip button styled for minimum width.</string>
|
||||
<string name="sb_enable_compact_skip_button_sum_off">Skip button styled for best appearance.</string>
|
||||
<string name="sb_enable_auto_hide_skip_segment_button">Automatically hide skip button</string>
|
||||
<string name="sb_enable_auto_hide_skip_segment_button_sum_on">Skip button hides after a few seconds.</string>
|
||||
<string name="sb_enable_auto_hide_skip_segment_button_sum_off">Skip button displayed for entire segment.</string>
|
||||
<string name="sb_general_skiptoast">Show a toast when skipping automatically</string>
|
||||
<string name="sb_general_skiptoast_sum_on">Toast is shown when a segment is automatically skipped. Tap here to see an example.</string>
|
||||
<string name="sb_general_skiptoast_sum_off">Toast is not shown. Tap here to see an example.</string>
|
||||
<string name="sb_general_time_without">Show video length without segments</string>
|
||||
<string name="sb_general_time_without_sum_on">Video length minus all segments, shown in parentheses next to the full video length.</string>
|
||||
<string name="sb_general_time_without_sum_off">Full video length shown.</string>
|
||||
<string name="sb_enable_create_segment">Show create new segment button</string>
|
||||
<string name="sb_enable_create_segment_sum_on">Create new segment button is shown.</string>
|
||||
<string name="sb_enable_create_segment_sum_off">Create new segment button is not shown.</string>
|
||||
<string name="sb_enable_voting_sum_on">Segment voting button is shown.</string>
|
||||
<string name="sb_general_adjusting">Adjust new segment step</string>
|
||||
<string name="sb_general_adjusting_sum">Number of milliseconds the time adjustment buttons move when creating new segments.</string>
|
||||
<string name="sb_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="sb_toast_on_connection_error_summary_on">Toast is shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_summary_off">Toast is not shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_general_skipcount">Enable skip count tracking</string>
|
||||
<string name="sb_general_skipcount_sum_on">Lets the SponsorBlock leaderboard know how much time is saved. A message is sent to the leaderboard each time a segment is skipped.</string>
|
||||
<string name="sb_general_skipcount_sum_off">Skip count tracking is not enabled.</string>
|
||||
<string name="sb_general_api_url_sum">The address SponsorBlock uses to make calls to the server. Do not change this unless you know what you\'re doing.</string>
|
||||
<string name="sb_general_min_duration">Minimum segment duration</string>
|
||||
<string name="sb_general_min_duration_sum">Segments shorter than this value (in seconds) will not be shown or skipped.</string>
|
||||
<string name="sb_general_api_url_sum">The address SponsorBlock uses to make calls to the server. Do not change this unless you know what you're doing.</string>
|
||||
<string name="sb_settings_copy">Copy</string>
|
||||
<string name="sb_settings_ie_sum">Your SponsorBlock JSON configuration that can be imported / exported to ReVanced Extended and other SponsorBlock platforms. %s</string>
|
||||
<string name="sb_settings_ie_sum_warning">This includes your private user id. Be sure to share this wisely.</string>
|
||||
<string name="sb_settings_ie">Import / Export settings</string>
|
||||
<string name="sb_settings_import_successful">Settings imported successfully.</string>
|
||||
<string name="sb_settings_import_failed">Failed to import: %s.</string>
|
||||
<string name="sb_settings_export_failed">Failed to export: %s.</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning">Your settings contain a private SponsorBlock user id.
|
||||
|
||||
Your user id is like a password and it should never be shared.
|
||||
</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning_dismiss">Do not show again</string>
|
||||
<string name="sb_diff_segments">Change segment behavior</string>
|
||||
<string name="sb_segments_sponsor_sum">Paid promotion, paid referrals and direct advertisements. Not for self-promotion or free shout-outs to causes / creators / websites / products they like.</string>
|
||||
<string name="sb_segments_selfpromo">Unpaid / Self Promotion</string>
|
||||
<string name="sb_segments_selfpromo_sum">Similar to 'Sponsor' except for unpaid or self promotion. Includes sections about merchandise, donations, or information about who they collaborated with.</string>
|
||||
<string name="sb_segments_interaction">Interaction Reminder (Subscribe)</string>
|
||||
<string name="sb_segments_interaction_sum">A short reminder to like, subscribe or follow them in the middle of content. If it is long or about something specific, it should instead be under self promotion.</string>
|
||||
<string name="sb_segments_highlight_sum">The part of the video that most people are looking for.</string>
|
||||
<string name="sb_segments_intro_sum">An interval without actual content. Could be a pause, static frame, or repeating animation. Does not include transitions containing information.</string>
|
||||
<string name="sb_segments_outro_sum">Credits or when the YouTube endcards appear. Not for conclusions with information.</string>
|
||||
<string name="sb_segments_preview_sum">Collection of clips that show what is coming up or what happened in the video or in other videos of a series, where all information is repeated elsewhere.</string>
|
||||
<string name="sb_general_skipcount">Enable skip count tracking</string>
|
||||
<string name="sb_general_skipcount_sum_off">Skip count tracking is not enabled.</string>
|
||||
<string name="sb_general_skipcount_sum_on">Lets the SponsorBlock leaderboard know how much time is saved. A message is sent to the leaderboard each time a segment is skipped.</string>
|
||||
<string name="sb_general_skiptoast">Show a toast when skipping automatically</string>
|
||||
<string name="sb_general_skiptoast_sum_off">Toast is not shown. Tap here to see an example.</string>
|
||||
<string name="sb_general_skiptoast_sum_on">Toast is shown when a segment is automatically skipped. Tap here to see an example.</string>
|
||||
<string name="sb_general_time_without">Show video length without segments</string>
|
||||
<string name="sb_general_time_without_sum_off">Full video length shown.</string>
|
||||
<string name="sb_general_time_without_sum_on">Video length minus all segments, shown in parentheses next to the full video length.</string>
|
||||
<string name="sb_new_segment_confirm_content" formatted="false">The segment lasts from %02d:%02d to %02d:%02d (%d minutes %02d seconds)\nIs it ready to submit?</string>
|
||||
<string name="sb_new_segment_disabled_category">Category is disabled in settings. Enable category to submit.</string>
|
||||
<string name="sb_new_segment_mark_locations_first">Mark two locations on the time bar first.</string>
|
||||
<string name="sb_new_segment_mark_time_as_question" formatted="false">Set %02d:%02d:%03d as the start or end of a new segment?</string>
|
||||
<string name="sb_new_segment_preview_segment_first">Preview the segment, and ensure it skips smoothly.</string>
|
||||
<string name="sb_new_segment_start_is_before_end">Start must be before the end.</string>
|
||||
<string name="sb_new_segment_time_end">Time the segment ends at</string>
|
||||
<string name="sb_new_segment_time_start">Time the segment begins at</string>
|
||||
<string name="sb_segments_filler">Filler Tangent / Jokes</string>
|
||||
<string name="sb_segments_filler_sum">Tangential scenes added only for filler or humor that are not required to understand the main content of the video. Does not include segments providing context or background details.</string>
|
||||
<string name="sb_segments_nomusic_sum">Only for use in music videos. Sections of music videos without music, that aren't already covered by another category.</string>
|
||||
<string name="sb_segments_highlight_sum">The part of the video that most people are looking for.</string>
|
||||
<string name="sb_segments_interaction">Interaction Reminder (Subscribe)</string>
|
||||
<string name="sb_segments_interaction_sum">A short reminder to like, subscribe or follow them in the middle of content. If it is long or about something specific, it should instead be under self promotion.</string>
|
||||
<string name="sb_segments_intro_sum">An interval without actual content. Could be a pause, static frame, or repeating animation. Does not include transitions containing information.</string>
|
||||
<string name="sb_segments_nomusic_sum">Only for use in music videos. Sections of music videos without music, that aren\'t already covered by another category.</string>
|
||||
<string name="sb_segments_outro_sum">Credits or when the YouTube endcards appear. Not for conclusions with information.</string>
|
||||
<string name="sb_segments_preview_sum">Collection of clips that show what is coming up or what happened in the video or in other videos of a series, where all information is repeated elsewhere.</string>
|
||||
<string name="sb_segments_selfpromo">Unpaid / Self Promotion</string>
|
||||
<string name="sb_segments_selfpromo_sum">Similar to \'Sponsor\' except for unpaid or self promotion. Includes sections about merchandise, donations, or information about who they collaborated with.</string>
|
||||
<string name="sb_segments_sponsor_sum">Paid promotion, paid referrals and direct advertisements. Not for self-promotion or free shout-outs to causes / creators / websites / products they like.</string>
|
||||
<string name="sb_settings_copy">Copy</string>
|
||||
<string name="sb_settings_export_failed">Failed to export: %s.</string>
|
||||
<string name="sb_settings_ie">Import / Export settings</string>
|
||||
<string name="sb_settings_ie_sum">Your SponsorBlock JSON configuration that can be imported / exported to ReVanced Extended and other SponsorBlock platforms. %s</string>
|
||||
<string name="sb_settings_ie_sum_warning">This includes your private user id. Be sure to share this wisely.</string>
|
||||
<string name="sb_settings_import_failed">Failed to import: %s.</string>
|
||||
<string name="sb_settings_import_successful">Settings imported successfully.</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning">Your settings contain a private SponsorBlock user id.\n\nYour user id is like a password and it should never be shared.\n</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning_dismiss">Do not show again</string>
|
||||
<string name="sb_sponsorblock_connection_failure_generic">SponsorBlock temporarily not available.</string>
|
||||
<string name="sb_sponsorblock_connection_failure_status" formatted="false">SponsorBlock temporarily not available (status %d).</string>
|
||||
<string name="sb_sponsorblock_connection_failure_timeout">SponsorBlock temporarily not available (API timed out).</string>
|
||||
<string name="sb_submit_failed_invalid" formatted="false">Can't submit the segment: %s.</string>
|
||||
<string name="sb_submit_failed_rate_limit">Can't submit the segment.
|
||||
Rate Limited (too many from the same user or IP).</string>
|
||||
<string name="sb_vote_failed_timeout">Unable to vote for segment (API timed out).</string>
|
||||
<string name="sb_new_segment_disabled_category">Category is disabled in settings. Enable category to submit.</string>
|
||||
<string name="sb_new_segment_mark_time_as_question" formatted="false">Set %02d:%02d:%03d as the start or end of a new segment?</string>
|
||||
<string name="sb_new_segment_time_start">Time the segment begins at</string>
|
||||
<string name="sb_new_segment_time_end">Time the segment ends at</string>
|
||||
<string name="sb_new_segment_confirm_content" formatted="false">The segment lasts from %02d:%02d to %02d:%02d (%d minutes %02d seconds)
|
||||
Is it ready to submit?</string>
|
||||
<string name="sb_new_segment_start_is_before_end">Start must be before the end.</string>
|
||||
<string name="sb_new_segment_mark_locations_first">Mark two locations on the time bar first.</string>
|
||||
<string name="sb_new_segment_preview_segment_first">Preview the segment, and ensure it skips smoothly.</string>
|
||||
<string name="sb_stats_saved_hour_format" formatted="false">%s hours %s minutes</string>
|
||||
<string name="sb_stats_saved_minute_format" formatted="false">%s minutes %s seconds</string>
|
||||
<string name="sb_stats_saved_second_format" formatted="false">%s seconds</string>
|
||||
<string name="sb_about">About</string>
|
||||
<string name="sb_submit_failed_invalid" formatted="false">Can\'t submit the segment: %s.</string>
|
||||
<string name="sb_submit_failed_rate_limit">Can\'t submit the segment.\nRate Limited (too many from the same user or IP).</string>
|
||||
<string name="sb_toast_on_connection_error_summary_off">Toast is not shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_summary_on">Toast is shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="sb_vote_failed_timeout">Unable to vote for segment (API timed out).</string>
|
||||
|
|
|
|||
|
|
@ -5,21 +5,19 @@
|
|||
<string name="revanced_change_start_page_entry_music">Music</string>
|
||||
<string name="revanced_change_start_page_entry_sports">Sports</string>
|
||||
<string name="revanced_change_start_page_entry_watch_later">Watch later</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines
|
||||
|
||||
Words with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines\n\nWords with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Current Header: Default Header</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Current Header: Premium Header</string>
|
||||
<string name="revanced_override_premium_header_title">Premium Header</string>
|
||||
<string name="revanced_spoof_failure_connection_status_code" formatted="false">"Spoof storyboard not available: "</string>
|
||||
<string name="revanced_spoof_failure_connection_timeout">Spoof storyboard temporarily not available (API timed out).</string>
|
||||
<string name="revanced_spoof_failure_generic">"Spoof storyboard temporarily not available: "</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
|
|
|
|||
|
|
@ -1,57 +0,0 @@
|
|||
<string name="revanced_change_start_page_entry_browse">Explorar canales</string>
|
||||
<string name="revanced_change_start_page_entry_gaming">Videojuegos</string>
|
||||
<string name="revanced_change_start_page_entry_live">En vivo</string>
|
||||
<string name="revanced_change_start_page_entry_movies">Películas</string>
|
||||
<string name="revanced_change_start_page_entry_music">Música</string>
|
||||
<string name="revanced_change_start_page_entry_sports">Deportes</string>
|
||||
<string name="revanced_change_start_page_entry_watch_later">Ver más tarde</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Longitud de palabra clave no válida (debe tener al menos %s caracteres): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configura las palabras y frases clave que quieres ocultar, separadas por nuevas líneas.
|
||||
|
||||
Las palabras con letras mayúsculas en el medio deben introducirse con las mayúsculas (p. ej.: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Editar filtro de palabras clave</string>
|
||||
<string name="revanced_keyword_filter_summary_off">El filtro de palabras clave está desactivado.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">El filtro de palabras clave está activado.</string>
|
||||
<string name="revanced_keyword_filter_summary">Oculta vídeos de feeds y resultados de búsqueda mediante filtros de palabras clave.</string>
|
||||
<string name="revanced_keyword_filter_title">Activar filtro de palabras clave</string>
|
||||
<string name="revanced_disable_rolling_number_animations_summary_off">Las animaciones rodantes están activadas.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_summary_on">Las animaciones rodantes están desactivadas.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_title">Desactivar animaciones de números rodantes</string>
|
||||
<string name="revanced_hide_community_posts_related_video_summary_off">Las publicaciones comunitarias en vídeos relacionados están visibles.</string>
|
||||
<string name="revanced_hide_community_posts_related_video_summary_on">Las publicaciones comunitarias en vídeos relacionados están ocultas.</string>
|
||||
<string name="revanced_hide_community_posts_related_video_title">Ocultar publicaciones comunitarias en vídeos relacionados</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_summary">Cuando termines un vídeo, se reproducirá otro automáticamente</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_title">Reproducir automáticamente el siguiente vídeo</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Oculta los vídeos con la etiqueta "Solo para miembros" en la página de inicio</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Ocultar vídeos para miembros en página de inicio</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_summary">"Pulsa para generar una lista de reproducción de todos los vídeos del canal de más antiguo a más reciente".</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_title">Botón de lista de reproducción ordenada por tiempo</string>
|
||||
<string name="revanced_overlay_button_whitelisting_summary">Pulsa para añadir un canal a excepciones de canales.</string>
|
||||
<string name="revanced_overlay_button_whitelisting_title">Botón de excepciones</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Cabecera actual: Cabecera predeterminada</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Cabecera actual: Cabecera Premium</string>
|
||||
<string name="revanced_override_premium_header_title">Cabecera Premium</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">El canal %s ha sido añadido a la lista %s</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Error al añadir el canal %s a la lista %s</string>
|
||||
<string name="revanced_whitelisting_channel_name">Nombre del canal</string>
|
||||
<string name="revanced_whitelisting_empty">No hay canales en esta lista</string>
|
||||
<string name="revanced_whitelisting_excluded">No añadido a esta lista</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Error al recuperar los detalles del canal, mensaje recibido %d</string>
|
||||
<string name="revanced_whitelisting_included">Añadido a esta lista</string>
|
||||
<string name="revanced_whitelisting_reboot">Reiniciar para aplicar los ajustes de excepciones de canales</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">El canal %s ha sido eliminado de la lista %s</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Error al eliminar el canal %s de la lista %s</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Comprobar o eliminar la lista de canales añadidos a excepciones</string>
|
||||
<string name="revanced_whitelisting_speed">Velocidad de vídeo</string>
|
||||
<string name="revanced_whitelisting_speed_button">Velocidad</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_title">Excepciones de canales</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_16_08_35">16.08.35 - Restaurar la antigua pestaña de explorar</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_18_09_39">18.09.39 - Restaurar la antigua pestaña de biblioteca (Desactivar la pestaña Tú)</string>
|
||||
<string name="revanced_spoof_failure_connection_status_code" formatted="false">"Modificar guión gráfico no disponible: "</string>
|
||||
<string name="revanced_spoof_failure_connection_timeout">Modificar guión gráfico temporalmente no disponible (la API no responde).</string>
|
||||
<string name="revanced_spoof_failure_generic">"Modificar guión gráfico temporalmente no disponible: "</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">El tamaño del área deslizable no puede ser mayor que %s%%. Restablecer al valor predeterminado.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Porcentaje del área de pantalla deslizable.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Tamaño de pantalla superpuesta deslizante</string>
|
||||
|
|
@ -1021,4 +1021,62 @@ Problemas conocidos
|
|||
<string name="sb_about">Información</string>
|
||||
<string name="sb_reset">Restablecer</string>
|
||||
<string name="sb_about_api_sum">Los datos son proporcionados por la API de SponsorBlock. Pulsa aquí para aprender más y ver las descargas para otras plataformas.</string>
|
||||
|
||||
<string name="revanced_change_start_page_entry_browse">Explorar canales</string>
|
||||
<string name="revanced_change_start_page_entry_gaming">Videojuegos</string>
|
||||
<string name="revanced_change_start_page_entry_live">En vivo</string>
|
||||
<string name="revanced_change_start_page_entry_movies">Películas</string>
|
||||
<string name="revanced_change_start_page_entry_music">Música</string>
|
||||
<string name="revanced_change_start_page_entry_sports">Deportes</string>
|
||||
<string name="revanced_change_start_page_entry_watch_later">Ver más tarde</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Longitud de palabra clave no válida (debe tener al menos %s caracteres): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">"Configura las palabras y frases clave que quieres ocultar, separadas por nuevas líneas.
|
||||
|
||||
Las palabras con letras mayúsculas en el medio deben introducirse con las mayúsculas (p. ej.: iPhone, TikTok, LeBlanc)."</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Editar filtro de palabras clave</string>
|
||||
<string name="revanced_keyword_filter_summary_off">El filtro de palabras clave está desactivado.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">El filtro de palabras clave está activado.</string>
|
||||
<string name="revanced_keyword_filter_summary">Oculta vídeos de feeds y resultados de búsqueda mediante filtros de palabras clave.</string>
|
||||
<string name="revanced_keyword_filter_title">Activar filtro de palabras clave</string>
|
||||
<string name="revanced_disable_rolling_number_animations_summary_off">Las animaciones rodantes están activadas.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_summary_on">Las animaciones rodantes están desactivadas.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_title">Desactivar animaciones de números rodantes</string>
|
||||
<string name="revanced_hide_community_posts_related_video_summary_off">Las publicaciones comunitarias en vídeos relacionados están visibles.</string>
|
||||
<string name="revanced_hide_community_posts_related_video_summary_on">Las publicaciones comunitarias en vídeos relacionados están ocultas.</string>
|
||||
<string name="revanced_hide_community_posts_related_video_title">Ocultar publicaciones comunitarias en vídeos relacionados</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_summary">Cuando termines un vídeo, se reproducirá otro automáticamente</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_title">Reproducir automáticamente el siguiente vídeo</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Oculta los vídeos con la etiqueta \"Solo para miembros\" en la página de inicio</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Ocultar vídeos para miembros en página de inicio</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_summary">"Pulsa para generar una lista de reproducción de todos los vídeos del canal de más antiguo a más reciente".</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_title">Botón de lista de reproducción ordenada por tiempo</string>
|
||||
<string name="revanced_overlay_button_whitelisting_summary">Pulsa para añadir un canal a excepciones de canales.</string>
|
||||
<string name="revanced_overlay_button_whitelisting_title">Botón de excepciones</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Cabecera actual: Cabecera predeterminada</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Cabecera actual: Cabecera Premium</string>
|
||||
<string name="revanced_override_premium_header_title">Cabecera Premium</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">El canal %s ha sido añadido a la lista %s</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Error al añadir el canal %s a la lista %s</string>
|
||||
<string name="revanced_whitelisting_channel_name">Nombre del canal</string>
|
||||
<string name="revanced_whitelisting_empty">No hay canales en esta lista</string>
|
||||
<string name="revanced_whitelisting_excluded">No añadido a esta lista</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Error al recuperar los detalles del canal, mensaje recibido %d</string>
|
||||
<string name="revanced_whitelisting_included">Añadido a esta lista</string>
|
||||
<string name="revanced_whitelisting_reboot">Reiniciar para aplicar los ajustes de excepciones de canales</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">El canal %s ha sido eliminado de la lista %s</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Error al eliminar el canal %s de la lista %s</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Comprobar o eliminar la lista de canales añadidos a excepciones</string>
|
||||
<string name="revanced_whitelisting_speed">Velocidad de vídeo</string>
|
||||
<string name="revanced_whitelisting_speed_button">Velocidad</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_title">Excepciones de canales</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_16_08_35">16.08.35 - Restaurar la antigua pestaña de explorar</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_18_09_39">18.09.39 - Restaurar la antigua pestaña de biblioteca (Desactivar la pestaña Tú)</string>
|
||||
<string name="revanced_spoof_failure_connection_status_code" formatted="false">"Modificar guión gráfico no disponible: "</string>
|
||||
<string name="revanced_spoof_failure_connection_timeout">Modificar guión gráfico temporalmente no disponible (la API no responde).</string>
|
||||
<string name="revanced_spoof_failure_generic">"Modificar guión gráfico temporalmente no disponible: "</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">El tamaño del área deslizable no puede ser mayor que %s%%. Restablecer al valor predeterminado.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Porcentaje del área de pantalla deslizable.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Tamaño de pantalla superpuesta deslizante</string>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -1,9 +1,13 @@
|
|||
<string name="revanced_alt_thumbnail_about_status_dearrow">"Showing DeArrow thumbnails.
|
||||
If a video has no DeArrow thumbnails then the original YouTube thumbnails are shown."</string>
|
||||
<string name="revanced_alt_thumbnail_about_status_dearrow_stills">"Showing DeArrow thumbnails.
|
||||
If a video has no DeArrow thumbnails then still video captures are shown."</string>
|
||||
<string name="revanced_alt_thumbnail_about_status_disabled">Showing original YouTube thumbnails.</string>
|
||||
<string name="revanced_alt_thumbnail_about_status_stills">Showing still video captures.</string>
|
||||
<string name="revanced_alt_thumbnail_about_title">Thumbnails in use</string>
|
||||
<string name="revanced_alt_thumbnail_dearrow_about_summary">"DeArrow provides crowd-sourced thumbnails for YouTube videos. These thumbnails are often more relevant than those provided by YouTube. If enabled, video URLs will be sent to the API server and no other data is sent.
|
||||
|
||||
Tap here to learn more about DeArrow."</string>
|
||||
<string name="revanced_alt_thumbnail_dearrow_about_title">About DeArrow</string>
|
||||
<string name="revanced_alt_thumbnail_dearrow_api_url_summary">"The URL of the DeArrow thumbnail cache endpoint. Do not change this unless you know what you're doing."</string>
|
||||
<string name="revanced_alt_thumbnail_dearrow_api_url_title">DeArrow API endpoint</string>
|
||||
|
|
@ -53,20 +57,13 @@
|
|||
<string name="revanced_change_start_page_warning">Invalid start page, resetting to default.</string>
|
||||
<string name="revanced_channel_profile_title">Channel profile</string>
|
||||
<string name="revanced_close_interstitial_ads_summary">"Automatically close interstitial ads.
|
||||
|
||||
Note: This feature hasn't been tested."</string>
|
||||
<string name="revanced_close_interstitial_ads_title">Close interstitial ads</string>
|
||||
<string name="revanced_close_interstitial_ads_toast">Closing interstitial ads.</string>
|
||||
<string name="revanced_custom_filter_toast_invalid_characters" formated="false">Invalid custom filter (must be ASCII only): %s</string>
|
||||
<string name="revanced_custom_filter_toast_invalid_syntax" formated="false">Invalid custom filter: %s</string>
|
||||
<string name="revanced_custom_filter_toast_reset">Custom filter reset to default</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines
|
||||
|
||||
Words with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_custom_playback_speed_panel_type_summary_off">Old style flyout panel is used.</string>
|
||||
<string name="revanced_custom_playback_speed_panel_type_summary_on">Custom dialog is used.</string>
|
||||
<string name="revanced_custom_playback_speed_panel_type_title">Custom playback speed panel type</string>
|
||||
|
|
@ -74,8 +71,10 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_disable_rolling_number_animations_summary_on">Rolling animations are disabled.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_title">Disable rolling number animations</string>
|
||||
<string name="revanced_disable_speed_overlay_summary">"Disable 'Playing at 2x speed' while holding down.
|
||||
|
||||
Note: Disabling the speed overlay restores the 'Slide to seek' behavior of the old layout."</string>
|
||||
<string name="revanced_disable_speed_overlay_title">Disable speed overlay</string>
|
||||
<string name="revanced_disable_update_screen_summary">Disables the "Update your app" screen that appears when using an outdated client.</string>
|
||||
<string name="revanced_disable_update_screen_summary">Disables the \"Update your app\" screen that appears when using an outdated client.</string>
|
||||
<string name="revanced_disable_update_screen_title">Disable update screen</string>
|
||||
<string name="revanced_enable_bottom_player_gestures_summary_off">Entering fullscreen when swiping down below the video player is disabled.</string>
|
||||
<string name="revanced_enable_bottom_player_gestures_summary_on">Entering fullscreen when swiping down below the video player is enabled.</string>
|
||||
|
|
@ -114,8 +113,12 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_external_downloader_download">Download app</string>
|
||||
<string name="revanced_external_downloader_set">Set as default downloader</string>
|
||||
<string name="revanced_force_fullscreen_summary">"Videos will be switched to fullscreen in the following situations:
|
||||
|
||||
• When a timestamp in the comments is clicked on.
|
||||
• When a video is started."</string>
|
||||
<string name="revanced_force_fullscreen_title">Force fullscreen</string>
|
||||
<string name="revanced_hide_account_menu_summary">"Hide elements of the account menu and You tab.
|
||||
Some components may not be hidden."</string>
|
||||
<string name="revanced_hide_comments_by_members_summary_off">Comments by members banner is shown.</string>
|
||||
<string name="revanced_hide_comments_by_members_summary_on">Comments by members banner is hidden.</string>
|
||||
<string name="revanced_hide_comments_by_members_title">Hide comments by members banner</string>
|
||||
|
|
@ -128,6 +131,8 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_hide_for_you_shelf_summary_off">"'For You' shelves are shown."</string>
|
||||
<string name="revanced_hide_for_you_shelf_summary_on">"'For You' shelves are hidden."</string>
|
||||
<string name="revanced_hide_for_you_shelf_title">"Hide 'For You' shelf"</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with \"Only for Membership\" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_hide_notifications_button_summary_off">Notifications button in navigation bar is shown.</string>
|
||||
<string name="revanced_hide_notifications_button_summary_on">Notifications button in navigation bar is hidden.</string>
|
||||
<string name="revanced_hide_notifications_button_title">Hide notifications button</string>
|
||||
|
|
@ -147,48 +152,49 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_hide_shopping_links_summary_on">Shopping links are hidden.</string>
|
||||
<string name="revanced_hide_shopping_links_title">Hide shopping links</string>
|
||||
<string name="revanced_hide_shorts_shelf_summary">"Hides Shorts shelves.
|
||||
|
||||
Known issue: Official headers in search results will be hidden."</string>
|
||||
<string name="revanced_hide_store_tab_summary_off">Store tab is shown.</string>
|
||||
<string name="revanced_hide_store_tab_summary_on">Store tab is hidden.</string>
|
||||
<string name="revanced_hide_store_tab_title">Hide store tab</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_summary">When you finished a video, another play automatically</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_title">Auto play the next video</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_summary_off">"Identifies the suggestions shelf through the browse id.
|
||||
|
||||
Known issues:
|
||||
• When Browseid is not identified, suggestions shelf may not be hidden."</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_summary_on">"Identifies the suggestions shelf through the current tab.
|
||||
|
||||
Known issues:
|
||||
• More drawer shelves may be hidden.
|
||||
• Playlist shelves may be hidden."</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_title">Select method to hide shelves</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with "Only for Membership" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_hide_video_with_gray_description_summary">"Hide videos with gray description from search results.
|
||||
Videos with a gray description include videos that are not related to search terms."</string>
|
||||
<string name="revanced_hide_video_with_gray_description_title">Hide videos with gray description</string>
|
||||
<string name="revanced_hide_video_with_low_view_summary">"Hide videos with less than 1,000 views exposed to the home feed.
|
||||
Some videos, including those from channels you subscribe to, may not be hidden even if they have fewer than 1,000 views."</string>
|
||||
<string name="revanced_hide_video_with_low_view_title">Hide videos with low views</string>
|
||||
<string name="revanced_inform">Inform</string>
|
||||
<string name="revanced_keep_landscape_mode_summary">Keeps landscape mode when turning the screen off and on in fullscreen.</string>
|
||||
<string name="revanced_keep_landscape_mode_timeout_summary">The amount of milliseconds the landscape mode is forced.</string>
|
||||
<string name="revanced_keep_landscape_mode_timeout_title">Keep landscape mode timeout</string>
|
||||
<string name="revanced_keep_landscape_mode_title">Keep landscape mode</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines\n\nWords with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_summary">"Tap to generate a playlist of all videos from channel from oldest to newest.
|
||||
Tap and hold to undo."</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_title">Time-ordered playlist button</string>
|
||||
<string name="revanced_overlay_button_whitelisting_summary">Tap to launch add channel into Channel Whitelist.</string>
|
||||
<string name="revanced_overlay_button_whitelisting_title">Whitelist button</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Current Header: Default Header</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Current Header: Premium Header</string>
|
||||
<string name="revanced_override_premium_header_title">Premium Header</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Failed to add channel %s to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_channel_name">Channel Name</string>
|
||||
<string name="revanced_whitelisting_empty">There are no whitelisted channels</string>
|
||||
<string name="revanced_whitelisting_excluded">Not added to whitelist</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Failed to retrieve channel details, received message %d</string>
|
||||
<string name="revanced_whitelisting_included">Added to whitelist</string>
|
||||
<string name="revanced_whitelisting_reboot">Reboot to apply channel whitelist settings</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Failed to remove channel %s from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Check or remove the list of channels added to the whitelist</string>
|
||||
<string name="revanced_whitelisting_speed">Video Speed</string>
|
||||
<string name="revanced_whitelisting_speed_button">Speed</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SB</string>
|
||||
<string name="revanced_whitelisting_title">Channel Whitelist</string>
|
||||
<string name="revanced_playback_speed_normal">Normal</string>
|
||||
<string name="revanced_player_flyout_panel_additional_settings_summary">To hide the additional settings menu, hide all settings in the additional settings category.</string>
|
||||
<string name="revanced_player_flyout_panel_additional_settings_title">Player flyout panel (Additional settings)</string>
|
||||
|
|
@ -196,17 +202,18 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_quick_actions_margin_top_title">Quick actions top margin</string>
|
||||
<string name="revanced_quick_actions_margin_top_warning">Quick actions top margin must be between 0-64. Reset to default values.</string>
|
||||
<string name="revanced_remove_viewer_discretion_dialog_summary">"Remove viewer discretion dialog.
|
||||
This does not bypass the age restriction. It just accepts it automatically."</string>
|
||||
<string name="revanced_remove_viewer_discretion_dialog_title">Remove viewer discretion dialog</string>
|
||||
<string name="revanced_restart_first_run">Restart to load the layout normally</string>
|
||||
<string name="revanced_restart_message">Refresh and restart</string>
|
||||
<string name="revanced_ryd_failure_connection_timeout">Dislikes temporarily not available (API timed out).</string>
|
||||
<string name="revanced_ryd_failure_connection_status_code" formatted="false">Dislikes not available (status %d).</string>
|
||||
<string name="revanced_ryd_failure_connection_timeout">Dislikes temporarily not available (API timed out).</string>
|
||||
<string name="revanced_ryd_failure_generic">Dislikes not available (%s).</string>
|
||||
<string name="revanced_ryd_shorts_summary_disclaimer">Limitation: Dislikes may not appear in certain situations.</string>
|
||||
<string name="revanced_ryd_shorts_summary_on">Dislikes shown on Shorts. %s</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_summary_off">Toast is not shown if Return YouTube Dislike is not available.</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_summary_on">Toast is shown if Return YouTube Dislike is not available.</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="revanced_sanitize_sharing_links_summary">Removes tracking query parameters from the URLs when sharing links.</string>
|
||||
<string name="revanced_sanitize_sharing_links_title">Sanitize sharing links</string>
|
||||
<string name="revanced_save_playback_speed" formatted="false">Changing default speed to %s.</string>
|
||||
|
|
@ -228,25 +235,42 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_swipe_gestures_lock_mode_summary_off">"Swipe gestures are disabled in 'Lock screen' mode."</string>
|
||||
<string name="revanced_swipe_gestures_lock_mode_summary_on">"Swipe gestures are enabled in 'Lock screen' mode."</string>
|
||||
<string name="revanced_swipe_gestures_lock_mode_title">"Swipe gestures in 'Lock screen' mode"</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_switching_create_notification_summary">"Swap the positions of the create button and notification button by spoofing the device's information.
|
||||
<string name="sb_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="sb_toast_on_connection_error_summary_on">Toast is shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_summary_off">Toast is not shown if SponsorBlock is not available.</string>
|
||||
|
||||
• Even if you change this setting, it may not take effect until you reboot the device.
|
||||
• Disabling this setting loads more ads from the server side.
|
||||
• You should disable this setting to make video ads visible."</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Failed to add channel %s to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_channel_name">Channel Name</string>
|
||||
<string name="revanced_whitelisting_empty">There are no whitelisted channels</string>
|
||||
<string name="revanced_whitelisting_excluded">Not added to whitelist</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Failed to retrieve channel details, received message %d</string>
|
||||
<string name="revanced_whitelisting_included">Added to whitelist</string>
|
||||
<string name="revanced_whitelisting_reboot">Reboot to apply channel whitelist settings</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Failed to remove channel %s from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Check or remove the list of channels added to the whitelist</string>
|
||||
<string name="revanced_whitelisting_speed">Video Speed</string>
|
||||
<string name="revanced_whitelisting_speed_button">Speed</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SB</string>
|
||||
<string name="revanced_whitelisting_title">Channel Whitelist</string>
|
||||
<string name="sb_settings_ie">Import / Export settings</string>
|
||||
<string name="sb_settings_ie_sum">Your SponsorBlock JSON configuration that can be imported / exported to ReVanced Extended and other SponsorBlock platforms. %s</string>
|
||||
<string name="sb_settings_ie_sum_warning">This includes your private user id. Be sure to share this wisely.</string>
|
||||
<string name="sb_settings_ie">Import / Export settings</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning">Your settings contain a private SponsorBlock user id.
|
||||
|
||||
Your user id is like a password and it should never be shared.
|
||||
</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning">Your settings contain a private SponsorBlock user id.\n\nYour user id is like a password and it should never be shared.\n</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning_dismiss">Do not show again</string>
|
||||
<string name="sb_sponsorblock_connection_failure_generic">SponsorBlock temporarily not available.</string>
|
||||
<string name="sb_sponsorblock_connection_failure_status" formatted="false">SponsorBlock temporarily not available (status %d).</string>
|
||||
<string name="sb_sponsorblock_connection_failure_timeout">SponsorBlock temporarily not available (API timed out).</string>
|
||||
<string name="sb_vote_failed_timeout">Unable to vote for segment (API timed out).</string>
|
||||
<string name="sb_stats_saved_hour_format" formatted="false">%s hours %s minutes</string>
|
||||
<string name="sb_stats_saved_minute_format" formatted="false">%s minutes %s seconds</string>
|
||||
<string name="sb_stats_saved_second_format" formatted="false">%s seconds</string>
|
||||
<string name="sb_stats_saved_second_format" formatted="false">%s seconds</string>
|
||||
<string name="sb_toast_on_connection_error_summary_off">Toast is not shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_summary_on">Toast is shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="sb_vote_failed_timeout">Unable to vote for segment (API timed out).</string>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
|
|
|
|||
|
|
@ -5,21 +5,19 @@
|
|||
<string name="revanced_change_start_page_entry_music">Music</string>
|
||||
<string name="revanced_change_start_page_entry_sports">Sports</string>
|
||||
<string name="revanced_change_start_page_entry_watch_later">Watch later</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines
|
||||
|
||||
Words with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines\n\nWords with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Current Header: Default Header</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Current Header: Premium Header</string>
|
||||
<string name="revanced_override_premium_header_title">Premium Header</string>
|
||||
<string name="revanced_spoof_failure_connection_status_code" formatted="false">"Spoof storyboard not available: "</string>
|
||||
<string name="revanced_spoof_failure_connection_timeout">Spoof storyboard temporarily not available (API timed out).</string>
|
||||
<string name="revanced_spoof_failure_generic">"Spoof storyboard temporarily not available: "</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
|
|
|
|||
|
|
@ -30,21 +30,14 @@
|
|||
<string name="revanced_change_start_page_title">Change start page</string>
|
||||
<string name="revanced_change_start_page_warning">Invalid start page, resetting to default.</string>
|
||||
<string name="revanced_close_interstitial_ads_summary">"Automatically close interstitial ads.
|
||||
|
||||
Note: This feature hasn't been tested."</string>
|
||||
<string name="revanced_close_interstitial_ads_title">Close interstitial ads</string>
|
||||
<string name="revanced_close_interstitial_ads_toast">Closing interstitial ads.</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines
|
||||
|
||||
Words with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_disable_rolling_number_animations_summary_off">Rolling animations are enabled.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_summary_on">Rolling animations are disabled.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_title">Disable rolling number animations</string>
|
||||
<string name="revanced_disable_update_screen_summary">Disables the "Update your app" screen that appears when using an outdated client.</string>
|
||||
<string name="revanced_disable_update_screen_summary">Disables the \"Update your app\" screen that appears when using an outdated client.</string>
|
||||
<string name="revanced_disable_update_screen_title">Disable update screen</string>
|
||||
<string name="revanced_enable_bottom_player_gestures_summary_off">Entering fullscreen when swiping down below the video player is disabled.</string>
|
||||
<string name="revanced_enable_bottom_player_gestures_summary_on">Entering fullscreen when swiping down below the video player is enabled.</string>
|
||||
|
|
@ -79,6 +72,9 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_external_downloader_download">Download app</string>
|
||||
<string name="revanced_external_downloader_set">Set as default downloader</string>
|
||||
<string name="revanced_force_fullscreen_summary">"Videos will be switched to fullscreen in the following situations:
|
||||
|
||||
• When a timestamp in the comments is clicked on.
|
||||
• When a video is started."</string>
|
||||
<string name="revanced_force_fullscreen_title">Force fullscreen</string>
|
||||
<string name="revanced_hide_comments_by_members_summary_off">Comments by members banner is shown.</string>
|
||||
<string name="revanced_hide_comments_by_members_summary_on">Comments by members banner is hidden.</string>
|
||||
|
|
@ -89,6 +85,8 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_hide_create_shorts_button_summary_off">Create shorts button is shown.</string>
|
||||
<string name="revanced_hide_create_shorts_button_summary_on">Create shorts button is hidden.</string>
|
||||
<string name="revanced_hide_create_shorts_button_title">Hide create shorts button</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with \"Only for Membership\" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_hide_notifications_button_summary_off">Notifications button in navigation bar is shown.</string>
|
||||
<string name="revanced_hide_notifications_button_summary_on">Notifications button in navigation bar is hidden.</string>
|
||||
<string name="revanced_hide_notifications_button_title">Hide notifications button</string>
|
||||
|
|
@ -104,51 +102,50 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_hide_suggested_video_overlay_auto_play_summary">When you finished a video, another play automatically</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_title">Auto play the next video</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_summary_off">"Identifies the suggestions shelf through the browse id.
|
||||
|
||||
Known issues:
|
||||
• When Browseid is not identified, suggestions shelf may not be hidden."</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_summary_on">"Identifies the suggestions shelf through the current tab.
|
||||
|
||||
Known issues:
|
||||
• More drawer shelves may be hidden.
|
||||
• Playlist shelves may be hidden."</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_title">Select method to hide shelves</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with "Only for Membership" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_hide_video_with_gray_description_summary">"Hide videos with gray description from search results.
|
||||
Videos with a gray description include videos that are not related to search terms."</string>
|
||||
<string name="revanced_hide_video_with_gray_description_title">Hide videos with gray description</string>
|
||||
<string name="revanced_keep_landscape_mode_summary">Keeps landscape mode when turning the screen off and on in fullscreen.</string>
|
||||
<string name="revanced_keep_landscape_mode_timeout_summary">The amount of milliseconds the landscape mode is forced.</string>
|
||||
<string name="revanced_keep_landscape_mode_timeout_title">Keep landscape mode timeout</string>
|
||||
<string name="revanced_keep_landscape_mode_title">Keep landscape mode</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines\n\nWords with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_summary">"Tap to generate a playlist of all videos from channel from oldest to newest.
|
||||
Tap and hold to undo."</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_title">Time-ordered playlist button</string>
|
||||
<string name="revanced_overlay_button_whitelisting_summary">Tap to launch add channel into Channel Whitelist.</string>
|
||||
<string name="revanced_overlay_button_whitelisting_title">Whitelist button</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Current Header: Default Header</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Current Header: Premium Header</string>
|
||||
<string name="revanced_override_premium_header_title">Premium Header</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Failed to add channel %s to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_channel_name">Channel Name</string>
|
||||
<string name="revanced_whitelisting_empty">There are no whitelisted channels</string>
|
||||
<string name="revanced_whitelisting_excluded">Not added to whitelist</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Failed to retrieve channel details, received message %d</string>
|
||||
<string name="revanced_whitelisting_included">Added to whitelist</string>
|
||||
<string name="revanced_whitelisting_reboot">Reboot to apply channel whitelist settings</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Failed to remove channel %s from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Check or remove the list of channels added to the whitelist</string>
|
||||
<string name="revanced_whitelisting_speed">Video Speed</string>
|
||||
<string name="revanced_whitelisting_speed_button">Speed</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SB</string>
|
||||
<string name="revanced_whitelisting_title">Channel Whitelist</string>
|
||||
<string name="revanced_remove_viewer_discretion_dialog_summary">"Remove viewer discretion dialog.
|
||||
This does not bypass the age restriction. It just accepts it automatically."</string>
|
||||
<string name="revanced_remove_viewer_discretion_dialog_title">Remove viewer discretion dialog</string>
|
||||
<string name="revanced_restart_first_run">Restart to load the layout normally</string>
|
||||
<string name="revanced_restart_message">Refresh and restart</string>
|
||||
<string name="revanced_ryd_failure_connection_timeout">Dislikes temporarily not available (API timed out).</string>
|
||||
<string name="revanced_ryd_failure_connection_status_code" formatted="false">Dislikes not available (status %d).</string>
|
||||
<string name="revanced_ryd_failure_connection_timeout">Dislikes temporarily not available (API timed out).</string>
|
||||
<string name="revanced_ryd_failure_generic">Dislikes not available (%s).</string>
|
||||
<string name="revanced_ryd_shorts_summary_disclaimer">Limitation: Dislikes may not appear in certain situations.</string>
|
||||
<string name="revanced_ryd_shorts_summary_on">Dislikes shown on Shorts. %s</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_summary_off">Toast is not shown if Return YouTube Dislike is not available.</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_summary_on">Toast is shown if Return YouTube Dislike is not available.</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="revanced_share_copy_settings_success">Settings copied to clipboard.</string>
|
||||
<string name="revanced_shorts_toolbar_summary">Back button in the toolbar cannot be hidden.</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_16_08_35">16.08.35 - Restore old explore tab</string>
|
||||
|
|
@ -160,25 +157,42 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_swipe_gestures_lock_mode_summary_off">"Swipe gestures are disabled in 'Lock screen' mode."</string>
|
||||
<string name="revanced_swipe_gestures_lock_mode_summary_on">"Swipe gestures are enabled in 'Lock screen' mode."</string>
|
||||
<string name="revanced_swipe_gestures_lock_mode_title">"Swipe gestures in 'Lock screen' mode"</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_switching_create_notification_summary">"Swap the positions of the create button and notification button by spoofing the device's information.
|
||||
<string name="sb_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="sb_toast_on_connection_error_summary_on">Toast is shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_summary_off">Toast is not shown if SponsorBlock is not available.</string>
|
||||
|
||||
• Even if you change this setting, it may not take effect until you reboot the device.
|
||||
• Disabling this setting loads more ads from the server side.
|
||||
• You should disable this setting to make video ads visible."</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Failed to add channel %s to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_channel_name">Channel Name</string>
|
||||
<string name="revanced_whitelisting_empty">There are no whitelisted channels</string>
|
||||
<string name="revanced_whitelisting_excluded">Not added to whitelist</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Failed to retrieve channel details, received message %d</string>
|
||||
<string name="revanced_whitelisting_included">Added to whitelist</string>
|
||||
<string name="revanced_whitelisting_reboot">Reboot to apply channel whitelist settings</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Failed to remove channel %s from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Check or remove the list of channels added to the whitelist</string>
|
||||
<string name="revanced_whitelisting_speed">Video Speed</string>
|
||||
<string name="revanced_whitelisting_speed_button">Speed</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SB</string>
|
||||
<string name="revanced_whitelisting_title">Channel Whitelist</string>
|
||||
<string name="sb_settings_ie">Import / Export settings</string>
|
||||
<string name="sb_settings_ie_sum">Your SponsorBlock JSON configuration that can be imported / exported to ReVanced Extended and other SponsorBlock platforms. %s</string>
|
||||
<string name="sb_settings_ie_sum_warning">This includes your private user id. Be sure to share this wisely.</string>
|
||||
<string name="sb_settings_ie">Import / Export settings</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning">Your settings contain a private SponsorBlock user id.
|
||||
|
||||
Your user id is like a password and it should never be shared.
|
||||
</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning">Your settings contain a private SponsorBlock user id.\n\nYour user id is like a password and it should never be shared.\n</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning_dismiss">Do not show again</string>
|
||||
<string name="sb_sponsorblock_connection_failure_generic">SponsorBlock temporarily not available.</string>
|
||||
<string name="sb_sponsorblock_connection_failure_status" formatted="false">SponsorBlock temporarily not available (status %d).</string>
|
||||
<string name="sb_sponsorblock_connection_failure_timeout">SponsorBlock temporarily not available (API timed out).</string>
|
||||
<string name="sb_vote_failed_timeout">Unable to vote for segment (API timed out).</string>
|
||||
<string name="sb_stats_saved_hour_format" formatted="false">%s hours %s minutes</string>
|
||||
<string name="sb_stats_saved_minute_format" formatted="false">%s minutes %s seconds</string>
|
||||
<string name="sb_stats_saved_second_format" formatted="false">%s seconds</string>
|
||||
<string name="sb_stats_saved_second_format" formatted="false">%s seconds</string>
|
||||
<string name="sb_toast_on_connection_error_summary_off">Toast is not shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_summary_on">Toast is shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="sb_vote_failed_timeout">Unable to vote for segment (API timed out).</string>
|
||||
|
|
|
|||
|
|
@ -30,21 +30,14 @@
|
|||
<string name="revanced_change_start_page_title">Change start page</string>
|
||||
<string name="revanced_change_start_page_warning">Invalid start page, resetting to default.</string>
|
||||
<string name="revanced_close_interstitial_ads_summary">"Automatically close interstitial ads.
|
||||
|
||||
Note: This feature hasn't been tested."</string>
|
||||
<string name="revanced_close_interstitial_ads_title">Close interstitial ads</string>
|
||||
<string name="revanced_close_interstitial_ads_toast">Closing interstitial ads.</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines
|
||||
|
||||
Words with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_disable_rolling_number_animations_summary_off">Rolling animations are enabled.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_summary_on">Rolling animations are disabled.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_title">Disable rolling number animations</string>
|
||||
<string name="revanced_disable_update_screen_summary">Disables the "Update your app" screen that appears when using an outdated client.</string>
|
||||
<string name="revanced_disable_update_screen_summary">Disables the \"Update your app\" screen that appears when using an outdated client.</string>
|
||||
<string name="revanced_disable_update_screen_title">Disable update screen</string>
|
||||
<string name="revanced_enable_bottom_player_gestures_summary_off">Entering fullscreen when swiping down below the video player is disabled.</string>
|
||||
<string name="revanced_enable_bottom_player_gestures_summary_on">Entering fullscreen when swiping down below the video player is enabled.</string>
|
||||
|
|
@ -79,6 +72,9 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_external_downloader_download">Download app</string>
|
||||
<string name="revanced_external_downloader_set">Set as default downloader</string>
|
||||
<string name="revanced_force_fullscreen_summary">"Videos will be switched to fullscreen in the following situations:
|
||||
|
||||
• When a timestamp in the comments is clicked on.
|
||||
• When a video is started."</string>
|
||||
<string name="revanced_force_fullscreen_title">Force fullscreen</string>
|
||||
<string name="revanced_hide_comments_by_members_summary_off">Comments by members banner is shown.</string>
|
||||
<string name="revanced_hide_comments_by_members_summary_on">Comments by members banner is hidden.</string>
|
||||
|
|
@ -89,6 +85,8 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_hide_create_shorts_button_summary_off">Create shorts button is shown.</string>
|
||||
<string name="revanced_hide_create_shorts_button_summary_on">Create shorts button is hidden.</string>
|
||||
<string name="revanced_hide_create_shorts_button_title">Hide create shorts button</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with \"Only for Membership\" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_hide_notifications_button_summary_off">Notifications button in navigation bar is shown.</string>
|
||||
<string name="revanced_hide_notifications_button_summary_on">Notifications button in navigation bar is hidden.</string>
|
||||
<string name="revanced_hide_notifications_button_title">Hide notifications button</string>
|
||||
|
|
@ -104,51 +102,50 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_hide_suggested_video_overlay_auto_play_summary">When you finished a video, another play automatically</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_title">Auto play the next video</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_summary_off">"Identifies the suggestions shelf through the browse id.
|
||||
|
||||
Known issues:
|
||||
• When Browseid is not identified, suggestions shelf may not be hidden."</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_summary_on">"Identifies the suggestions shelf through the current tab.
|
||||
|
||||
Known issues:
|
||||
• More drawer shelves may be hidden.
|
||||
• Playlist shelves may be hidden."</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_title">Select method to hide shelves</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with "Only for Membership" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_hide_video_with_gray_description_summary">"Hide videos with gray description from search results.
|
||||
Videos with a gray description include videos that are not related to search terms."</string>
|
||||
<string name="revanced_hide_video_with_gray_description_title">Hide videos with gray description</string>
|
||||
<string name="revanced_keep_landscape_mode_summary">Keeps landscape mode when turning the screen off and on in fullscreen.</string>
|
||||
<string name="revanced_keep_landscape_mode_timeout_summary">The amount of milliseconds the landscape mode is forced.</string>
|
||||
<string name="revanced_keep_landscape_mode_timeout_title">Keep landscape mode timeout</string>
|
||||
<string name="revanced_keep_landscape_mode_title">Keep landscape mode</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines\n\nWords with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_summary">"Tap to generate a playlist of all videos from channel from oldest to newest.
|
||||
Tap and hold to undo."</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_title">Time-ordered playlist button</string>
|
||||
<string name="revanced_overlay_button_whitelisting_summary">Tap to launch add channel into Channel Whitelist.</string>
|
||||
<string name="revanced_overlay_button_whitelisting_title">Whitelist button</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Current Header: Default Header</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Current Header: Premium Header</string>
|
||||
<string name="revanced_override_premium_header_title">Premium Header</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Failed to add channel %s to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_channel_name">Channel Name</string>
|
||||
<string name="revanced_whitelisting_empty">There are no whitelisted channels</string>
|
||||
<string name="revanced_whitelisting_excluded">Not added to whitelist</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Failed to retrieve channel details, received message %d</string>
|
||||
<string name="revanced_whitelisting_included">Added to whitelist</string>
|
||||
<string name="revanced_whitelisting_reboot">Reboot to apply channel whitelist settings</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Failed to remove channel %s from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Check or remove the list of channels added to the whitelist</string>
|
||||
<string name="revanced_whitelisting_speed">Video Speed</string>
|
||||
<string name="revanced_whitelisting_speed_button">Speed</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SB</string>
|
||||
<string name="revanced_whitelisting_title">Channel Whitelist</string>
|
||||
<string name="revanced_remove_viewer_discretion_dialog_summary">"Remove viewer discretion dialog.
|
||||
This does not bypass the age restriction. It just accepts it automatically."</string>
|
||||
<string name="revanced_remove_viewer_discretion_dialog_title">Remove viewer discretion dialog</string>
|
||||
<string name="revanced_restart_first_run">Restart to load the layout normally</string>
|
||||
<string name="revanced_restart_message">Refresh and restart</string>
|
||||
<string name="revanced_ryd_failure_connection_timeout">Dislikes temporarily not available (API timed out).</string>
|
||||
<string name="revanced_ryd_failure_connection_status_code" formatted="false">Dislikes not available (status %d).</string>
|
||||
<string name="revanced_ryd_failure_connection_timeout">Dislikes temporarily not available (API timed out).</string>
|
||||
<string name="revanced_ryd_failure_generic">Dislikes not available (%s).</string>
|
||||
<string name="revanced_ryd_shorts_summary_disclaimer">Limitation: Dislikes may not appear in certain situations.</string>
|
||||
<string name="revanced_ryd_shorts_summary_on">Dislikes shown on Shorts. %s</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_summary_off">Toast is not shown if Return YouTube Dislike is not available.</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_summary_on">Toast is shown if Return YouTube Dislike is not available.</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="revanced_share_copy_settings_success">Settings copied to clipboard.</string>
|
||||
<string name="revanced_shorts_toolbar_summary">Back button in the toolbar cannot be hidden.</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_16_08_35">16.08.35 - Restore old explore tab</string>
|
||||
|
|
@ -160,25 +157,42 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_swipe_gestures_lock_mode_summary_off">"Swipe gestures are disabled in 'Lock screen' mode."</string>
|
||||
<string name="revanced_swipe_gestures_lock_mode_summary_on">"Swipe gestures are enabled in 'Lock screen' mode."</string>
|
||||
<string name="revanced_swipe_gestures_lock_mode_title">"Swipe gestures in 'Lock screen' mode"</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_switching_create_notification_summary">"Swap the positions of the create button and notification button by spoofing the device's information.
|
||||
<string name="sb_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="sb_toast_on_connection_error_summary_on">Toast is shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_summary_off">Toast is not shown if SponsorBlock is not available.</string>
|
||||
|
||||
• Even if you change this setting, it may not take effect until you reboot the device.
|
||||
• Disabling this setting loads more ads from the server side.
|
||||
• You should disable this setting to make video ads visible."</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Failed to add channel %s to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_channel_name">Channel Name</string>
|
||||
<string name="revanced_whitelisting_empty">There are no whitelisted channels</string>
|
||||
<string name="revanced_whitelisting_excluded">Not added to whitelist</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Failed to retrieve channel details, received message %d</string>
|
||||
<string name="revanced_whitelisting_included">Added to whitelist</string>
|
||||
<string name="revanced_whitelisting_reboot">Reboot to apply channel whitelist settings</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Failed to remove channel %s from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Check or remove the list of channels added to the whitelist</string>
|
||||
<string name="revanced_whitelisting_speed">Video Speed</string>
|
||||
<string name="revanced_whitelisting_speed_button">Speed</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SB</string>
|
||||
<string name="revanced_whitelisting_title">Channel Whitelist</string>
|
||||
<string name="sb_settings_ie">Import / Export settings</string>
|
||||
<string name="sb_settings_ie_sum">Your SponsorBlock JSON configuration that can be imported / exported to ReVanced Extended and other SponsorBlock platforms. %s</string>
|
||||
<string name="sb_settings_ie_sum_warning">This includes your private user id. Be sure to share this wisely.</string>
|
||||
<string name="sb_settings_ie">Import / Export settings</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning">Your settings contain a private SponsorBlock user id.
|
||||
|
||||
Your user id is like a password and it should never be shared.
|
||||
</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning">Your settings contain a private SponsorBlock user id.\n\nYour user id is like a password and it should never be shared.\n</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning_dismiss">Do not show again</string>
|
||||
<string name="sb_sponsorblock_connection_failure_generic">SponsorBlock temporarily not available.</string>
|
||||
<string name="sb_sponsorblock_connection_failure_status" formatted="false">SponsorBlock temporarily not available (status %d).</string>
|
||||
<string name="sb_sponsorblock_connection_failure_timeout">SponsorBlock temporarily not available (API timed out).</string>
|
||||
<string name="sb_vote_failed_timeout">Unable to vote for segment (API timed out).</string>
|
||||
<string name="sb_stats_saved_hour_format" formatted="false">%s hours %s minutes</string>
|
||||
<string name="sb_stats_saved_minute_format" formatted="false">%s minutes %s seconds</string>
|
||||
<string name="sb_stats_saved_second_format" formatted="false">%s seconds</string>
|
||||
<string name="sb_stats_saved_second_format" formatted="false">%s seconds</string>
|
||||
<string name="sb_toast_on_connection_error_summary_off">Toast is not shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_summary_on">Toast is shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="sb_vote_failed_timeout">Unable to vote for segment (API timed out).</string>
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">スワイプ可能な領域のサイズは %s%% を超えることはできません。デフォルト値にリセットします。</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">スワイプ可能な画面領域の割合。</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">スワイプオーバーレイ画面サイズ</string>
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
|
|
@ -5,53 +5,52 @@
|
|||
<string name="revanced_change_start_page_entry_music">Music</string>
|
||||
<string name="revanced_change_start_page_entry_sports">Sports</string>
|
||||
<string name="revanced_change_start_page_entry_watch_later">Watch later</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines
|
||||
|
||||
Words with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_disable_rolling_number_animations_summary_off">Rolling animations are enabled.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_summary_on">Rolling animations are disabled.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_title">Disable rolling number animations</string>
|
||||
<string name="revanced_hide_community_posts_related_video_summary_off">Community posts in related video are shown.</string>
|
||||
<string name="revanced_hide_community_posts_related_video_summary_on">Community posts in related video are hidden.</string>
|
||||
<string name="revanced_hide_community_posts_related_video_title">Hide community posts in related video</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with \"Only for Membership\" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_summary">When you finished a video, another play automatically</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_title">Auto play the next video</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with "Only for Membership" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines\n\nWords with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_summary">"Tap to generate a playlist of all videos from channel from oldest to newest.
|
||||
Tap and hold to undo."</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_title">Time-ordered playlist button</string>
|
||||
<string name="revanced_overlay_button_whitelisting_summary">Tap to launch add channel into Channel Whitelist.</string>
|
||||
<string name="revanced_overlay_button_whitelisting_title">Whitelist button</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Current Header: Default Header</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Current Header: Premium Header</string>
|
||||
<string name="revanced_override_premium_header_title">Premium Header</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_16_08_35">16.08.35 - Restore old explore tab</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_18_09_39">18.09.39 - Restore old library tab (Disable You Tab)</string>
|
||||
<string name="revanced_spoof_failure_connection_status_code" formatted="false">"Spoof storyboard not available: "</string>
|
||||
<string name="revanced_spoof_failure_connection_timeout">Spoof storyboard temporarily not available (API timed out).</string>
|
||||
<string name="revanced_spoof_failure_generic">"Spoof storyboard temporarily not available: "</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Failed to add channel %s to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_channel_name">Channel Name</string>
|
||||
<string name="revanced_whitelisting_empty">There are no whitelisted channels</string>
|
||||
<string name="revanced_whitelisting_excluded">Not added to whitelist</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Failed to retrieve channel details, received message %d</string>
|
||||
<string name="revanced_whitelisting_included">Added to whitelist</string>
|
||||
<string name="revanced_whitelisting_reboot">Reboot to apply channel whitelist settings</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Failed to remove channel %s from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Check or remove the list of channels added to the whitelist</string>
|
||||
<string name="revanced_whitelisting_speed">Video Speed</string>
|
||||
<string name="revanced_whitelisting_speed_button">Speed</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SB</string>
|
||||
<string name="revanced_whitelisting_title">Channel Whitelist</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_16_08_35">16.08.35 - Restore old explore tab</string>
|
||||
<string name="revanced_spoof_app_version_target_entry_18_09_39">18.09.39 - Restore old library tab (Disable You Tab)</string>
|
||||
<string name="revanced_spoof_failure_connection_status_code" formatted="false">"Spoof storyboard not available: "</string>
|
||||
<string name="revanced_spoof_failure_connection_timeout">Spoof storyboard temporarily not available (API timed out).</string>
|
||||
<string name="revanced_spoof_failure_generic">"Spoof storyboard temporarily not available: "</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
|
|
|
|||
|
|
@ -5,21 +5,19 @@
|
|||
<string name="revanced_change_start_page_entry_music">Music</string>
|
||||
<string name="revanced_change_start_page_entry_sports">Sports</string>
|
||||
<string name="revanced_change_start_page_entry_watch_later">Watch later</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines
|
||||
|
||||
Words with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines\n\nWords with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Current Header: Default Header</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Current Header: Premium Header</string>
|
||||
<string name="revanced_override_premium_header_title">Premium Header</string>
|
||||
<string name="revanced_spoof_failure_connection_status_code" formatted="false">"Spoof storyboard not available: "</string>
|
||||
<string name="revanced_spoof_failure_connection_timeout">Spoof storyboard temporarily not available (API timed out).</string>
|
||||
<string name="revanced_spoof_failure_generic">"Spoof storyboard temporarily not available: "</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
|
|
|
|||
|
|
@ -5,23 +5,21 @@
|
|||
<string name="revanced_change_start_page_entry_music">Music</string>
|
||||
<string name="revanced_change_start_page_entry_sports">Sports</string>
|
||||
<string name="revanced_change_start_page_entry_watch_later">Watch later</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines
|
||||
|
||||
Words with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_summary">When you finished a video, another play automatically</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_title">Auto play the next video</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines\n\nWords with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Current Header: Default Header</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Current Header: Premium Header</string>
|
||||
<string name="revanced_override_premium_header_title">Premium Header</string>
|
||||
<string name="revanced_spoof_failure_connection_status_code" formatted="false">"Spoof storyboard not available: "</string>
|
||||
<string name="revanced_spoof_failure_connection_timeout">Spoof storyboard temporarily not available (API timed out).</string>
|
||||
<string name="revanced_spoof_failure_generic">"Spoof storyboard temporarily not available: "</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
|
|
|
|||
|
|
@ -5,21 +5,19 @@
|
|||
<string name="revanced_change_start_page_entry_music">Music</string>
|
||||
<string name="revanced_change_start_page_entry_sports">Sports</string>
|
||||
<string name="revanced_change_start_page_entry_watch_later">Watch later</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines
|
||||
|
||||
Words with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines\n\nWords with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Current Header: Default Header</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Current Header: Premium Header</string>
|
||||
<string name="revanced_override_premium_header_title">Premium Header</string>
|
||||
<string name="revanced_spoof_failure_connection_status_code" formatted="false">"Spoof storyboard not available: "</string>
|
||||
<string name="revanced_spoof_failure_connection_timeout">Spoof storyboard temporarily not available (API timed out).</string>
|
||||
<string name="revanced_spoof_failure_generic">"Spoof storyboard temporarily not available: "</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
|
|
|
|||
|
|
@ -36,17 +36,10 @@
|
|||
<string name="revanced_change_start_page_warning">Invalid start page, resetting to default.</string>
|
||||
<string name="revanced_channel_profile_title">Channel profile</string>
|
||||
<string name="revanced_close_interstitial_ads_summary">"Automatically close interstitial ads.
|
||||
|
||||
Note: This feature hasn't been tested."</string>
|
||||
<string name="revanced_close_interstitial_ads_title">Close interstitial ads</string>
|
||||
<string name="revanced_close_interstitial_ads_toast">Closing interstitial ads.</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines
|
||||
|
||||
Words with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_custom_playback_speed_panel_type_summary_off">Old style flyout panel is used.</string>
|
||||
<string name="revanced_custom_playback_speed_panel_type_summary_on">Custom dialog is used.</string>
|
||||
<string name="revanced_custom_playback_speed_panel_type_title">Custom playback speed panel type</string>
|
||||
|
|
@ -54,7 +47,9 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_disable_rolling_number_animations_summary_on">Rolling animations are disabled.</string>
|
||||
<string name="revanced_disable_rolling_number_animations_title">Disable rolling number animations</string>
|
||||
<string name="revanced_disable_speed_overlay_summary">"Disable 'Playing at 2x speed' while holding down.
|
||||
<string name="revanced_disable_update_screen_summary">Disables the "Update your app" screen that appears when using an outdated client.</string>
|
||||
|
||||
Note: Disabling the speed overlay restores the 'Slide to seek' behavior of the old layout."</string>
|
||||
<string name="revanced_disable_update_screen_summary">Disables the \"Update your app\" screen that appears when using an outdated client.</string>
|
||||
<string name="revanced_disable_update_screen_title">Disable update screen</string>
|
||||
<string name="revanced_enable_bottom_player_gestures_summary_off">Entering fullscreen when swiping down below the video player is disabled.</string>
|
||||
<string name="revanced_enable_bottom_player_gestures_summary_on">Entering fullscreen when swiping down below the video player is enabled.</string>
|
||||
|
|
@ -72,9 +67,14 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_enable_swipe_press_to_engage_summary_on">Touch and hold to activate swipe gesture.</string>
|
||||
<string name="revanced_enable_swipe_press_to_engage_title">Enable press-to-swipe gesture</string>
|
||||
<string name="revanced_force_fullscreen_summary">"Videos will be switched to fullscreen in the following situations:
|
||||
|
||||
• When a timestamp in the comments is clicked on.
|
||||
• When a video is started."</string>
|
||||
<string name="revanced_hide_community_posts_related_video_summary_off">Community posts in related video are shown.</string>
|
||||
<string name="revanced_hide_community_posts_related_video_summary_on">Community posts in related video are hidden.</string>
|
||||
<string name="revanced_hide_community_posts_related_video_title">Hide community posts in related video</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with \"Only for Membership\" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_hide_notifications_button_summary_off">Notifications button in navigation bar is shown.</string>
|
||||
<string name="revanced_hide_notifications_button_summary_on">Notifications button in navigation bar is hidden.</string>
|
||||
<string name="revanced_hide_notifications_button_title">Hide notifications button</string>
|
||||
|
|
@ -94,6 +94,8 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_hide_shopping_links_summary_on">Shopping links are hidden.</string>
|
||||
<string name="revanced_hide_shopping_links_title">Hide shopping links</string>
|
||||
<string name="revanced_hide_shorts_shelf_summary">"Hides Shorts shelves.
|
||||
|
||||
Known issue: Official headers in search results will be hidden."</string>
|
||||
<string name="revanced_hide_shorts_toolbar_banner_summary_off">Banner is shown.</string>
|
||||
<string name="revanced_hide_shorts_toolbar_banner_summary_on">Banner is hidden.</string>
|
||||
<string name="revanced_hide_shorts_toolbar_banner_title">Hide banner</string>
|
||||
|
|
@ -115,45 +117,44 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_hide_suggested_video_overlay_auto_play_summary">When you finished a video, another play automatically</string>
|
||||
<string name="revanced_hide_suggested_video_overlay_auto_play_title">Auto play the next video</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_summary_off">"Identifies the suggestions shelf through the browse id.
|
||||
|
||||
Known issues:
|
||||
• When Browseid is not identified, suggestions shelf may not be hidden."</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_summary_on">"Identifies the suggestions shelf through the current tab.
|
||||
|
||||
Known issues:
|
||||
• More drawer shelves may be hidden.
|
||||
• Playlist shelves may be hidden."</string>
|
||||
<string name="revanced_hide_suggestions_shelf_method_title">Select method to hide shelves</string>
|
||||
<string name="revanced_hide_toolbar_create_notification_button_summary_off">Create and Notification buttons are shown.</string>
|
||||
<string name="revanced_hide_toolbar_create_notification_button_summary_on">Create and Notification buttons are hidden.</string>
|
||||
<string name="revanced_hide_toolbar_create_notification_button_title">Hide buttons in toolbar</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_summary">Hide videos with "Only for Membership" tag in Home Feed</string>
|
||||
<string name="revanced_hide_home_feed_membership_video_title">Hide membership videos in Home Feed</string>
|
||||
<string name="revanced_hide_video_with_gray_description_summary">"Hide videos with gray description from search results.
|
||||
Videos with a gray description include videos that are not related to search terms."</string>
|
||||
<string name="revanced_hide_video_with_gray_description_title">Hide videos with gray description</string>
|
||||
<string name="revanced_hide_video_with_low_view_summary">"Hide videos with less than 1,000 views exposed to the home feed.
|
||||
Some videos, including those from channels you subscribe to, may not be hidden even if they have fewer than 1,000 views."</string>
|
||||
<string name="revanced_hide_video_with_low_view_title">Hide videos with low views</string>
|
||||
<string name="revanced_inform">Inform</string>
|
||||
<string name="revanced_keep_landscape_mode_summary">Keeps landscape mode when turning the screen off and on in fullscreen.</string>
|
||||
<string name="revanced_keep_landscape_mode_timeout_summary">The amount of milliseconds the landscape mode is forced.</string>
|
||||
<string name="revanced_keep_landscape_mode_timeout_title">Keep landscape mode timeout</string>
|
||||
<string name="revanced_keep_landscape_mode_title">Keep landscape mode</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines\n\nWords with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_summary">"Tap to generate a playlist of all videos from channel from oldest to newest.
|
||||
Tap and hold to undo."</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_title">Time-ordered playlist button</string>
|
||||
<string name="revanced_overlay_button_whitelisting_summary">Tap to launch add channel into Channel Whitelist.</string>
|
||||
<string name="revanced_overlay_button_whitelisting_title">Whitelist button</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Current Header: Default Header</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Current Header: Premium Header</string>
|
||||
<string name="revanced_override_premium_header_title">Premium Header</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Failed to add channel %s to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_channel_name">Channel Name</string>
|
||||
<string name="revanced_whitelisting_empty">There are no whitelisted channels</string>
|
||||
<string name="revanced_whitelisting_excluded">Not added to whitelist</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Failed to retrieve channel details, received message %d</string>
|
||||
<string name="revanced_whitelisting_included">Added to whitelist</string>
|
||||
<string name="revanced_whitelisting_reboot">Reboot to apply channel whitelist settings</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Failed to remove channel %s from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Check or remove the list of channels added to the whitelist</string>
|
||||
<string name="revanced_whitelisting_speed">Video Speed</string>
|
||||
<string name="revanced_whitelisting_speed_button">Speed</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SB</string>
|
||||
<string name="revanced_whitelisting_title">Channel Whitelist</string>
|
||||
<string name="revanced_playback_speed_normal">Normal</string>
|
||||
<string name="revanced_player_flyout_panel_additional_settings_summary">To hide the additional settings menu, hide all settings in the additional settings category.</string>
|
||||
<string name="revanced_player_flyout_panel_additional_settings_title">Player flyout panel (Additional settings)</string>
|
||||
|
|
@ -162,9 +163,9 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_quick_actions_margin_top_warning">Quick actions top margin must be between 0-64. Reset to default values.</string>
|
||||
<string name="revanced_ryd_shorts_summary_disclaimer">Limitation: Dislikes may not appear in certain situations.</string>
|
||||
<string name="revanced_ryd_shorts_summary_on">Dislikes shown on Shorts. %s</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_summary_off">Toast is not shown if Return YouTube Dislike is not available.</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_summary_on">Toast is shown if Return YouTube Dislike is not available.</string>
|
||||
<string name="revanced_ryd_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="revanced_sanitize_sharing_links_summary">Removes tracking query parameters from the URLs when sharing links.</string>
|
||||
<string name="revanced_sanitize_sharing_links_title">Sanitize sharing links</string>
|
||||
<string name="revanced_save_playback_speed" formatted="false">Changing default speed to %s.</string>
|
||||
|
|
@ -190,22 +191,39 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_swipe_gestures_lock_mode_summary_off">"Swipe gestures are disabled in 'Lock screen' mode."</string>
|
||||
<string name="revanced_swipe_gestures_lock_mode_summary_on">"Swipe gestures are enabled in 'Lock screen' mode."</string>
|
||||
<string name="revanced_swipe_gestures_lock_mode_title">"Swipe gestures in 'Lock screen' mode"</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_switching_create_notification_summary">"Swap the positions of the create button and notification button by spoofing the device's information.
|
||||
<string name="sb_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="sb_toast_on_connection_error_summary_on">Toast is shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_summary_off">Toast is not shown if SponsorBlock is not available.</string>
|
||||
|
||||
• Even if you change this setting, it may not take effect until you reboot the device.
|
||||
• Disabling this setting loads more ads from the server side.
|
||||
• You should disable this setting to make video ads visible."</string>
|
||||
<string name="revanced_whitelisting_add_failed" formatted="false">Failed to add channel %s to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_added" formatted="false">Channel %s was added to the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_channel_name">Channel Name</string>
|
||||
<string name="revanced_whitelisting_empty">There are no whitelisted channels</string>
|
||||
<string name="revanced_whitelisting_excluded">Not added to whitelist</string>
|
||||
<string name="revanced_whitelisting_fetch_failed" formated="false">Failed to retrieve channel details, received message %d</string>
|
||||
<string name="revanced_whitelisting_included">Added to whitelist</string>
|
||||
<string name="revanced_whitelisting_reboot">Reboot to apply channel whitelist settings</string>
|
||||
<string name="revanced_whitelisting_remove_failed" formatted="false">Failed to remove channel %s from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_removed" formatted="false">Channel %s was removed from the %s whitelist</string>
|
||||
<string name="revanced_whitelisting_settings_summary">Check or remove the list of channels added to the whitelist</string>
|
||||
<string name="revanced_whitelisting_speed">Video Speed</string>
|
||||
<string name="revanced_whitelisting_speed_button">Speed</string>
|
||||
<string name="revanced_whitelisting_sponsorblock">SponsorBlock</string>
|
||||
<string name="revanced_whitelisting_sponsorblock_button">SB</string>
|
||||
<string name="revanced_whitelisting_title">Channel Whitelist</string>
|
||||
<string name="sb_settings_ie">Import / Export settings</string>
|
||||
<string name="sb_settings_ie_sum">Your SponsorBlock JSON configuration that can be imported / exported to ReVanced Extended and other SponsorBlock platforms. %s</string>
|
||||
<string name="sb_settings_ie_sum_warning">This includes your private user id. Be sure to share this wisely.</string>
|
||||
<string name="sb_settings_ie">Import / Export settings</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning">Your settings contain a private SponsorBlock user id.
|
||||
|
||||
Your user id is like a password and it should never be shared.
|
||||
</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning">Your settings contain a private SponsorBlock user id.\n\nYour user id is like a password and it should never be shared.\n</string>
|
||||
<string name="sb_settings_revanced_export_user_id_warning_dismiss">Do not show again</string>
|
||||
<string name="sb_sponsorblock_connection_failure_generic">SponsorBlock temporarily not available.</string>
|
||||
<string name="sb_sponsorblock_connection_failure_status" formatted="false">SponsorBlock temporarily not available (status %d).</string>
|
||||
<string name="sb_sponsorblock_connection_failure_timeout">SponsorBlock temporarily not available (API timed out).</string>
|
||||
<string name="sb_vote_failed_timeout">Unable to vote for segment (API timed out).</string>
|
||||
<string name="sb_toast_on_connection_error_summary_off">Toast is not shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_summary_on">Toast is shown if SponsorBlock is not available.</string>
|
||||
<string name="sb_toast_on_connection_error_title">Show a toast if API is not available</string>
|
||||
<string name="sb_vote_failed_timeout">Unable to vote for segment (API timed out).</string>
|
||||
|
|
|
|||
|
|
@ -5,19 +5,18 @@
|
|||
<string name="revanced_change_start_page_entry_music">Music</string>
|
||||
<string name="revanced_change_start_page_entry_sports">Sports</string>
|
||||
<string name="revanced_change_start_page_entry_watch_later">Watch later</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines
|
||||
|
||||
Words with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_hide_community_posts_related_video_summary_off">Community posts in related video are shown.</string>
|
||||
<string name="revanced_hide_community_posts_related_video_summary_on">Community posts in related video are hidden.</string>
|
||||
<string name="revanced_hide_community_posts_related_video_title">Hide community posts in related video</string>
|
||||
<string name="revanced_keyword_filter_strings_summary">Configure keywords and phrases to hide, separated by new lines\n\nWords with uppercase letters in the middle must be entered with the casing (ie: iPhone, TikTok, LeBlanc).</string>
|
||||
<string name="revanced_keyword_filter_strings_title">Edit keyword filter</string>
|
||||
<string name="revanced_keyword_filter_summary">Hides feed and search result videos using keyword filters.</string>
|
||||
<string name="revanced_keyword_filter_summary_off">Keyword filter is disabled.</string>
|
||||
<string name="revanced_keyword_filter_summary_on">Keyword filter is enabled.</string>
|
||||
<string name="revanced_keyword_filter_title">Enable keyword filter</string>
|
||||
<string name="revanced_keyword_invalid_length" formatted="false">Invalid keyword length (must be at least %s characters): %s.</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_summary">"Tap to generate a playlist of all videos from channel from oldest to newest.
|
||||
Tap and hold to undo."</string>
|
||||
<string name="revanced_overlay_button_time_ordered_playlist_title">Time-ordered playlist button</string>
|
||||
<string name="revanced_override_premium_header_summary_off">Current Header: Default Header</string>
|
||||
<string name="revanced_override_premium_header_summary_on">Current Header: Premium Header</string>
|
||||
|
|
@ -25,6 +24,6 @@ Words with uppercase letters in the middle must be entered with the casing (ie:
|
|||
<string name="revanced_spoof_failure_connection_status_code" formatted="false">"Spoof storyboard not available: "</string>
|
||||
<string name="revanced_spoof_failure_connection_timeout">Spoof storyboard temporarily not available (API timed out).</string>
|
||||
<string name="revanced_spoof_failure_generic">"Spoof storyboard temporarily not available: "</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swiapeable area size can't be more than %s%%. Reset to default value.</string>
|
||||
<string name="revanced_swipe_overlay_rect_summary">Percentage of swipeable screen area.</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_title">Swipe overlay screen size</string>
|
||||
<string name="revanced_swipe_overlay_rect_warning" formatted="false">Swipeable area size can\'t be more than %s%%. Reset to default value.</string>
|
||||
|
|
|
|||
Loading…
Reference in a new issue