Merge remote-tracking branch 'upstream/dev' into feat/patcher_instruction_filters

# Conflicts:
#	extensions/music/src/main/java/app/revanced/extension/music/settings/GoogleApiActivityHook.java
#	extensions/shared/library/src/main/java/app/revanced/extension/shared/Utils.java
#	extensions/shared/library/src/main/java/app/revanced/extension/shared/checks/Check.java
#	extensions/shared/library/src/main/java/app/revanced/extension/shared/settings/BaseActivityHook.java
#	extensions/shared/library/src/main/java/app/revanced/extension/shared/settings/preference/ColorPickerPreference.java
#	extensions/shared/library/src/main/java/app/revanced/extension/shared/settings/preference/CustomDialogListPreference.java
#	extensions/shared/library/src/main/java/app/revanced/extension/shared/settings/preference/ToolbarPreferenceFragment.java
#	extensions/twitch/src/main/java/app/revanced/extension/twitch/settings/TwitchActivityHook.java
#	extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/AlternativeThumbnailsPatch.java
#	extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/HidePlayerOverlayButtonsPatch.java
#	extensions/youtube/src/main/java/app/revanced/extension/youtube/patches/theme/SeekbarColorPatch.java
#	extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/SearchViewController.java
#	extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/Settings.java
#	extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/YouTubeActivityHook.java
#	extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/preference/ExternalDownloaderPreference.java
#	extensions/youtube/src/main/java/app/revanced/extension/youtube/settings/preference/ReVancedPreferenceFragment.java
#	extensions/youtube/src/main/java/app/revanced/extension/youtube/sponsorblock/objects/SegmentCategoryListPreference.java
#	extensions/youtube/src/main/java/app/revanced/extension/youtube/sponsorblock/ui/NewSegmentLayout.java
#	extensions/youtube/src/main/java/app/revanced/extension/youtube/sponsorblock/ui/SkipSponsorButton.java
#	extensions/youtube/src/main/java/app/revanced/extension/youtube/sponsorblock/ui/SponsorBlockViewController.java
#	extensions/youtube/src/main/java/app/revanced/extension/youtube/videoplayer/VideoQualityDialogButton.java
#	patches/src/main/kotlin/app/revanced/patches/music/interaction/permanentshuffle/PermanentShufflePatch.kt
#	patches/src/main/kotlin/app/revanced/patches/music/layout/upgradebutton/Fingerprints.kt
#	patches/src/main/kotlin/app/revanced/patches/music/layout/upgradebutton/HideUpgradeButtonPatch.kt
#	patches/src/main/kotlin/app/revanced/patches/music/misc/settings/SettingsPatch.kt
#	patches/src/main/kotlin/app/revanced/patches/youtube/misc/settings/SettingsPatch.kt
This commit is contained in:
LisoUseInAIKyrios 2025-09-21 17:36:40 +04:00
commit c2a099d1f4
202 changed files with 7481 additions and 4440 deletions

View file

@ -24,7 +24,8 @@ val hideVideoAdsPatch = bytecodePatch(
compatibleWith(
"com.google.android.apps.youtube.music"(
"7.29.52"
"7.29.52",
"8.10.52"
)
)

View file

@ -17,7 +17,8 @@ val enableExclusiveAudioPlaybackPatch = bytecodePatch(
compatibleWith(
"com.google.android.apps.youtube.music"(
"7.29.52"
"7.29.52",
"8.10.52"
)
)

View file

@ -27,7 +27,8 @@ val permanentRepeatPatch = bytecodePatch(
compatibleWith(
"com.google.android.apps.youtube.music"(
"7.29.52"
"7.29.52",
"8.10.52"
)
)

View file

@ -33,7 +33,8 @@ val hideCastButton = bytecodePatch(
compatibleWith(
"com.google.android.apps.youtube.music"(
"7.29.52"
"7.29.52",
"8.10.52"
)
)

View file

@ -1,6 +1,5 @@
package app.revanced.patches.music.layout.compactheader
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.bytecodePatch
@ -10,7 +9,6 @@ import app.revanced.patches.music.misc.extension.sharedExtensionPatch
import app.revanced.patches.music.misc.settings.PreferenceScreen
import app.revanced.patches.music.misc.settings.settingsPatch
import app.revanced.patches.shared.misc.settings.preference.SwitchPreference
import app.revanced.util.addInstructionsAtControlFlowLabel
import app.revanced.util.findFreeRegister
import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@ -29,7 +27,8 @@ val hideCategoryBar = bytecodePatch(
compatibleWith(
"com.google.android.apps.youtube.music"(
"7.29.52"
"7.29.52",
"8.10.52"
)
)

View file

@ -40,7 +40,8 @@ val navigationBarPatch = bytecodePatch(
compatibleWith(
"com.google.android.apps.youtube.music"(
"7.29.52"
"7.29.52",
"8.10.52"
)
)

View file

@ -28,7 +28,8 @@ val hideGetPremiumPatch = bytecodePatch(
compatibleWith(
"com.google.android.apps.youtube.music"(
"7.29.52"
"7.29.52",
"8.10.52"
)
)

View file

@ -1,17 +0,0 @@
package app.revanced.patches.music.layout.upgradebutton
import com.android.tools.smali.dexlib2.Opcode
import com.android.tools.smali.dexlib2.AccessFlags
import app.revanced.patcher.fingerprint
internal val pivotBarConstructorFingerprint by fingerprint {
accessFlags(AccessFlags.PUBLIC, AccessFlags.CONSTRUCTOR)
parameters("L", "Z")
opcodes(
Opcode.CHECK_CAST,
Opcode.INVOKE_INTERFACE,
Opcode.GOTO,
Opcode.IPUT_OBJECT,
Opcode.RETURN_VOID
)
}

View file

@ -1,104 +1,12 @@
package app.revanced.patches.music.layout.upgradebutton
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
import app.revanced.patcher.extensions.newLabel
import app.revanced.patcher.patch.bytecodePatch
import app.revanced.patcher.util.smali.toInstructions
import app.revanced.patches.all.misc.resources.addResources
import app.revanced.patches.all.misc.resources.addResourcesPatch
import app.revanced.patches.music.misc.extension.sharedExtensionPatch
import app.revanced.patches.music.misc.settings.PreferenceScreen
import app.revanced.patches.music.misc.settings.settingsPatch
import app.revanced.patches.shared.misc.settings.preference.SwitchPreference
import app.revanced.util.getReference
import com.android.tools.smali.dexlib2.Opcode
import com.android.tools.smali.dexlib2.builder.instruction.BuilderInstruction22t
import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
import com.android.tools.smali.dexlib2.iface.reference.FieldReference
import app.revanced.patches.music.layout.navigationbar.navigationBarPatch
private const val EXTENSION_CLASS_DESCRIPTOR = "Lapp/revanced/extension/music/patches/HideUpgradeButtonPatch;"
@Deprecated("This patch will be removed in the future.")
@Deprecated("Patch is obsolete and was replaced by navigation bar patch", ReplaceWith("navigationBarPatch"))
@Suppress("unused")
val hideUpgradeButton = bytecodePatch(
description = "Hides the upgrade tab from the pivot bar.",
) {
dependsOn(
sharedExtensionPatch,
settingsPatch,
addResourcesPatch,
)
compatibleWith(
"com.google.android.apps.youtube.music"(
"7.29.52"
)
)
execute {
addResources("music", "layout.upgradebutton.hideUpgradeButtonPatch")
// TODO: Add an extension patch to allow this to be enabled/disabled in app.
if (false) {
PreferenceScreen.ADS.addPreferences(
SwitchPreference("revanced_music_hide_upgrade_button")
)
}
pivotBarConstructorFingerprint.method.apply {
val pivotBarElementFieldReference =
getInstruction(pivotBarConstructorFingerprint.instructionMatches.last().index - 1)
.getReference<FieldReference>()
val register = getInstruction<FiveRegisterInstruction>(0).registerC
// First compile all the needed instructions.
val instructionList = """
invoke-interface { v0 }, Ljava/util/List;->size()I
move-result v1
const/4 v2, 0x4
invoke-interface {v0, v2}, Ljava/util/List;->remove(I)Ljava/lang/Object;
iput-object v0, v$register, $pivotBarElementFieldReference
""".toInstructions().toMutableList()
val endIndex = pivotBarConstructorFingerprint.instructionMatches.last().index
// Replace the instruction to retain the label at given index.
replaceInstruction(
endIndex - 1,
instructionList[0], // invoke-interface.
)
// Do not forget to remove this instruction since we added it already.
instructionList.removeFirst()
val exitInstruction = instructionList.last() // iput-object
addInstruction(
endIndex,
exitInstruction,
)
// Do not forget to remove this instruction since we added it already.
instructionList.removeLast()
// Add the necessary if statement to remove the upgrade tab button in case it exists.
instructionList.add(
2, // if-le.
BuilderInstruction22t(
Opcode.IF_LE,
1,
2,
newLabel(endIndex),
),
)
addInstructions(
endIndex,
instructionList,
)
}
}
val hideUpgradeButton = bytecodePatch{
dependsOn(navigationBarPatch)
}
@Deprecated("Patch was renamed", ReplaceWith("hideUpgradeButton"))

View file

@ -17,7 +17,8 @@ val bypassCertificateChecksPatch = bytecodePatch(
compatibleWith(
"com.google.android.apps.youtube.music"(
"7.29.52"
"7.29.52",
"8.10.52"
)
)

View file

@ -17,7 +17,8 @@ val backgroundPlaybackPatch = bytecodePatch(
compatibleWith(
"com.google.android.apps.youtube.music"(
"7.29.52"
"7.29.52",
"8.10.52"
)
)

View file

@ -15,7 +15,8 @@ val enableDebuggingPatch = enableDebuggingPatch(
compatibleWith(
"com.google.android.apps.youtube.music"(
"7.29.52"
"7.29.52",
"8.10.52"
)
)
},

View file

@ -1,6 +1,5 @@
package app.revanced.patches.music.misc.settings
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.patch.bytecodePatch
import app.revanced.patcher.patch.resourcePatch
import app.revanced.patches.all.misc.packagename.setOrGetFallbackPackageName
@ -10,20 +9,19 @@ import app.revanced.patches.music.misc.extension.sharedExtensionPatch
import app.revanced.patches.shared.misc.mapping.resourceMappingPatch
import app.revanced.patches.shared.misc.settings.preference.BasePreference
import app.revanced.patches.shared.misc.settings.preference.BasePreferenceScreen
import app.revanced.patches.shared.misc.settings.preference.InputType
import app.revanced.patches.shared.misc.settings.preference.IntentPreference
import app.revanced.patches.shared.misc.settings.preference.NonInteractivePreference
import app.revanced.patches.shared.misc.settings.preference.PreferenceScreenPreference
import app.revanced.patches.shared.misc.settings.preference.SwitchPreference
import app.revanced.patches.shared.misc.settings.preference.TextPreference
import app.revanced.patches.shared.misc.settings.settingsPatch
import app.revanced.util.ResourceGroup
import app.revanced.util.copyResources
import app.revanced.patches.youtube.misc.settings.modifyActivityForSettingsInjection
import app.revanced.util.copyXmlNode
import app.revanced.util.inputStreamFromBundledResource
import com.android.tools.smali.dexlib2.util.MethodUtil
private const val BASE_ACTIVITY_HOOK_CLASS_DESCRIPTOR =
"Lapp/revanced/extension/shared/settings/BaseActivityHook;"
private const val GOOGLE_API_ACTIVITY_HOOK_CLASS_DESCRIPTOR =
"Lapp/revanced/extension/music/settings/GoogleApiActivityHook;"
"Lapp/revanced/extension/music/settings/MusicActivityHook;"
private val preferences = mutableSetOf<BasePreference>()
@ -31,28 +29,19 @@ private val settingsResourcePatch = resourcePatch {
dependsOn(
resourceMappingPatch,
settingsPatch(
listOf(
rootPreferences = listOf(
IntentPreference(
titleKey = "revanced_settings_title",
summaryKey = null,
intent = newIntent("revanced_settings_intent"),
) to "settings_headers"
),
preferences
preferences = preferences
)
)
execute {
// TODO: Remove this when search will be abstract.
copyResources(
"settings",
ResourceGroup(
"layout",
"revanced_music_settings_with_toolbar.xml"
)
)
val targetResource = "values/styles.xml"
inputStreamFromBundledResource(
"settings/music",
@ -100,24 +89,25 @@ val settingsPatch = bytecodePatch(
selectable = true,
)
// Modify GoogleApiActivity and remove all existing layout code.
// Must modify an existing activity and cannot add a new activity to the manifest,
// as that fails for root installations.
googleApiActivityFingerprint.method.addInstructions(
1,
"""
invoke-static { }, $GOOGLE_API_ACTIVITY_HOOK_CLASS_DESCRIPTOR->createInstance()Lapp/revanced/extension/music/settings/GoogleApiActivityHook;
move-result-object v0
invoke-static { v0, p0 }, $BASE_ACTIVITY_HOOK_CLASS_DESCRIPTOR->initialize(Lapp/revanced/extension/shared/settings/BaseActivityHook;Landroid/app/Activity;)V
return-void
"""
PreferenceScreen.GENERAL.addPreferences(
SwitchPreference("revanced_settings_search_history")
)
// Remove other methods as they will break as the onCreate method is modified above.
googleApiActivityFingerprint.classDef.apply {
methods.removeIf { it.name != "onCreate" && !MethodUtil.isConstructor(it) }
}
PreferenceScreen.MISC.addPreferences(
TextPreference(
key = null,
titleKey = "revanced_pref_import_export_title",
summaryKey = "revanced_pref_import_export_summary",
inputType = InputType.TEXT_MULTI_LINE,
tag = "app.revanced.extension.shared.settings.preference.ImportExportPreference",
)
)
modifyActivityForSettingsInjection(
googleApiActivityFingerprint.classDef,
googleApiActivityFingerprint.method,
GOOGLE_API_ACTIVITY_HOOK_CLASS_DESCRIPTOR
)
}
finalize {

View file

@ -33,7 +33,8 @@ val spoofVideoStreamsPatch = spoofVideoStreamsPatch(
compatibleWith(
"com.google.android.apps.youtube.music"(
"7.29.52"
"7.29.52",
"8.10.52"
)
)
},

View file

@ -57,14 +57,15 @@ fun settingsPatch (
copyResources(
"settings",
ResourceGroup("xml", "revanced_prefs.xml", "revanced_prefs_icons.xml"),
ResourceGroup("menu", "revanced_search_menu.xml"),
ResourceGroup("drawable",
// CustomListPreference resources.
"revanced_ic_dialog_alert.xml",
"revanced_settings_arrow_time.xml",
"revanced_settings_circle_background.xml",
"revanced_settings_cursor.xml",
"revanced_settings_custom_checkmark.xml",
"revanced_settings_search_icon.xml",
"revanced_settings_search_remove.xml",
"revanced_settings_toolbar_arrow_left.xml",
),
ResourceGroup("layout",
@ -72,6 +73,16 @@ fun settingsPatch (
// Color picker.
"revanced_color_dot_widget.xml",
"revanced_color_picker.xml",
// Search.
"revanced_preference_search_history_item.xml",
"revanced_preference_search_history_screen.xml",
"revanced_preference_search_no_result.xml",
"revanced_preference_search_result_color.xml",
"revanced_preference_search_result_group_header.xml",
"revanced_preference_search_result_list.xml",
"revanced_preference_search_result_regular.xml",
"revanced_preference_search_result_switch.xml",
"revanced_settings_with_toolbar.xml"
)
)

View file

@ -12,7 +12,7 @@ import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction35c
import com.android.tools.smali.dexlib2.iface.reference.FieldReference
private const val EXTENSION_CLASS_DESCRIPTOR =
"Lapp/revanced/extension/tiktok/settings/AdPersonalizationActivityHook;"
"Lapp/revanced/extension/tiktok/settings/TikTokActivityHook;"
val settingsPatch = bytecodePatch(
name = "Settings",

View file

@ -29,7 +29,7 @@ private const val MENU_DISMISS_EVENT_CLASS_DESCRIPTOR =
"Ltv/twitch/android/feature/settings/menu/SettingsMenuViewDelegate\$Event\$OnDismissClicked;"
private const val EXTENSION_PACKAGE = "app/revanced/extension/twitch"
private const val ACTIVITY_HOOKS_CLASS_DESCRIPTOR = "L$EXTENSION_PACKAGE/settings/AppCompatActivityHook;"
private const val ACTIVITY_HOOKS_CLASS_DESCRIPTOR = "L$EXTENSION_PACKAGE/settings/TwitchActivityHook;"
private const val UTILS_CLASS_DESCRIPTOR = "L$EXTENSION_PACKAGE/Utils;"
private val preferences = mutableSetOf<BasePreference>()

View file

@ -53,10 +53,10 @@ private val swipeControlsResourcePatch = resourcePatch {
ListPreference("revanced_swipe_overlay_style"),
TextPreference("revanced_swipe_overlay_background_opacity", inputType = InputType.NUMBER),
TextPreference("revanced_swipe_overlay_progress_brightness_color",
tag = "app.revanced.extension.shared.settings.preference.ColorPickerPreference",
tag = "app.revanced.extension.shared.settings.preference.ColorPickerWithOpacitySliderPreference",
inputType = InputType.TEXT_CAP_CHARACTERS),
TextPreference("revanced_swipe_overlay_progress_volume_color",
tag = "app.revanced.extension.shared.settings.preference.ColorPickerPreference",
tag = "app.revanced.extension.shared.settings.preference.ColorPickerWithOpacitySliderPreference",
inputType = InputType.TEXT_CAP_CHARACTERS),
TextPreference("revanced_swipe_text_overlay_size", inputType = InputType.NUMBER),
TextPreference("revanced_swipe_overlay_timeout", inputType = InputType.NUMBER),

View file

@ -172,7 +172,10 @@ val hideLayoutComponentsPatch = bytecodePatch(
SwitchPreference("revanced_hide_keyword_content_subscriptions"),
SwitchPreference("revanced_hide_keyword_content_search"),
TextPreference("revanced_hide_keyword_content_phrases", inputType = InputType.TEXT_MULTI_LINE),
NonInteractivePreference("revanced_hide_keyword_content_about"),
NonInteractivePreference(
key = "revanced_hide_keyword_content_about",
tag = "app.revanced.extension.shared.settings.preference.BulletPointPreference"
),
NonInteractivePreference(
key = "revanced_hide_keyword_content_about_whole_words",
tag = "app.revanced.extension.youtube.settings.preference.HtmlPreference",
@ -206,7 +209,10 @@ val hideLayoutComponentsPatch = bytecodePatch(
SwitchPreference("revanced_hide_chips_shelf"),
SwitchPreference("revanced_hide_expandable_card"),
SwitchPreference("revanced_hide_floating_microphone_button"),
SwitchPreference("revanced_hide_horizontal_shelves"),
SwitchPreference(
key = "revanced_hide_horizontal_shelves",
tag = "app.revanced.extension.shared.settings.preference.BulletPointSwitchPreference"
),
SwitchPreference("revanced_hide_image_shelf"),
SwitchPreference("revanced_hide_latest_posts"),
SwitchPreference("revanced_hide_mix_playlists"),

View file

@ -4,6 +4,8 @@ import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
import app.revanced.patcher.patch.bytecodePatch
import app.revanced.patcher.patch.resourcePatch
import app.revanced.patcher.util.proxy.mutableTypes.MutableClass
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod.Companion.toMutable
import app.revanced.patches.all.misc.packagename.setOrGetFallbackPackageName
import app.revanced.patches.all.misc.resources.addResources
@ -29,8 +31,8 @@ import com.android.tools.smali.dexlib2.util.MethodUtil
private const val BASE_ACTIVITY_HOOK_CLASS_DESCRIPTOR =
"Lapp/revanced/extension/shared/settings/BaseActivityHook;"
private const val LICENSE_ACTIVITY_HOOK_CLASS_DESCRIPTOR =
"Lapp/revanced/extension/youtube/settings/LicenseActivityHook;"
private const val YOUTUBE_ACTIVITY_HOOK_CLASS_DESCRIPTOR =
"Lapp/revanced/extension/youtube/settings/YouTubeActivityHook;"
private val preferences = mutableSetOf<BasePreference>()
@ -38,7 +40,7 @@ private val settingsResourcePatch = resourcePatch {
dependsOn(
resourceMappingPatch,
settingsPatch(
listOf(
rootPreferences = listOf(
IntentPreference(
titleKey = "revanced_settings_title",
summaryKey = null,
@ -58,7 +60,7 @@ private val settingsResourcePatch = resourcePatch {
)
) to "settings_fragment_cairo",
),
preferences
preferences = preferences
)
)
@ -66,7 +68,8 @@ private val settingsResourcePatch = resourcePatch {
// Use same colors as stock YouTube.
overrideThemeColors("@color/yt_white1", "@color/yt_black3")
arrayOf(
copyResources(
"settings",
ResourceGroup("drawable",
"revanced_settings_icon.xml",
"revanced_settings_screen_00_about.xml",
@ -82,23 +85,15 @@ private val settingsResourcePatch = resourcePatch {
"revanced_settings_screen_10_sponsorblock.xml",
"revanced_settings_screen_11_misc.xml",
"revanced_settings_screen_12_video.xml",
),
ResourceGroup("layout",
"revanced_preference_with_icon_no_search_result.xml",
"revanced_search_suggestion_item.xml",
"revanced_settings_with_toolbar.xml"
),
ResourceGroup("menu", "revanced_search_menu.xml")
).forEach { resourceGroup ->
copyResources("settings", resourceGroup)
}
)
)
// Copy style properties used to fix over-sized copy menu that appear in EditTextPreference.
// For a full explanation of how this fixes the issue, see the comments in this style file
// and the comments in the extension code.
val targetResource = "values/styles.xml"
inputStreamFromBundledResource(
"settings/host",
"settings/youtube",
targetResource,
)!!.let { inputStream ->
"resources".copyXmlNode(
@ -208,97 +203,6 @@ val settingsPatch = bytecodePatch(
)
)
// Modify the license activity and remove all existing layout code.
// Must modify an existing activity and cannot add a new activity to the manifest,
// as that fails for root installations.
licenseActivityOnCreateFingerprint.let {
val superClass = it.classDef.superclass
it.method.addInstructions(
0,
"""
# Some targets have extra instructions before the call to super method.
invoke-super { p0, p1 }, $superClass->onCreate(Landroid/os/Bundle;)V
invoke-static {}, $LICENSE_ACTIVITY_HOOK_CLASS_DESCRIPTOR->createInstance()Lapp/revanced/extension/youtube/settings/LicenseActivityHook;
move-result-object v0
invoke-static { v0, p0 }, $BASE_ACTIVITY_HOOK_CLASS_DESCRIPTOR->initialize(Lapp/revanced/extension/shared/settings/BaseActivityHook;Landroid/app/Activity;)V
return-void
"""
)
}
// Remove other methods as they will break as the onCreate method is modified above.
licenseActivityOnCreateFingerprint.classDef.apply {
methods.removeIf { it.name != "onCreate" && !MethodUtil.isConstructor(it) }
}
licenseActivityOnCreateFingerprint.classDef.apply {
// Add attachBaseContext method to override the context for setting a specific language.
ImmutableMethod(
type,
"attachBaseContext",
listOf(ImmutableMethodParameter("Landroid/content/Context;", null, null)),
"V",
AccessFlags.PROTECTED.value,
null,
null,
MutableMethodImplementation(3),
).toMutable().apply {
addInstructions(
"""
invoke-static { p1 }, $LICENSE_ACTIVITY_HOOK_CLASS_DESCRIPTOR->getAttachBaseContext(Landroid/content/Context;)Landroid/content/Context;
move-result-object p1
invoke-super { p0, p1 }, $superclass->attachBaseContext(Landroid/content/Context;)V
return-void
"""
)
}.let(methods::add)
// Add onBackPressed method to handle back button presses, delegating to SearchViewController.
ImmutableMethod(
type,
"onBackPressed",
emptyList(),
"V",
AccessFlags.PUBLIC.value,
null,
null,
MutableMethodImplementation(3),
).toMutable().apply {
addInstructions(
"""
invoke-static {}, Lapp/revanced/extension/youtube/settings/SearchViewController;->handleBackPress()Z
move-result v0
if-nez v0, :search_handled
invoke-virtual { p0 }, Landroid/app/Activity;->finish()V
:search_handled
return-void
"""
)
}.let(methods::add)
// Add onConfigurationChanged method to handle configuration changes (e.g., screen orientation).
ImmutableMethod(
type,
"onConfigurationChanged",
listOf(ImmutableMethodParameter("Landroid/content/res/Configuration;", null, null)),
"V",
AccessFlags.PUBLIC.value,
null,
null,
MutableMethodImplementation(3)
).toMutable().apply {
addInstructions(
"""
invoke-super { p0, p1 }, Landroid/app/Activity;->onConfigurationChanged(Landroid/content/res/Configuration;)V
invoke-static { p0, p1 }, $LICENSE_ACTIVITY_HOOK_CLASS_DESCRIPTOR->handleConfigurationChanged(Landroid/app/Activity;Landroid/content/res/Configuration;)V
return-void
"""
)
}.let(methods::add)
}
// Update shared dark mode status based on YT theme.
// This is needed because YT allows forcing light/dark mode
// which then differs from the system dark mode status.
@ -307,25 +211,108 @@ val settingsPatch = bytecodePatch(
val register = getInstruction<OneRegisterInstruction>(index).registerA
addInstructionsAtControlFlowLabel(
index,
"invoke-static { v$register }, ${LICENSE_ACTIVITY_HOOK_CLASS_DESCRIPTOR}->updateLightDarkModeStatus(Ljava/lang/Enum;)V",
"invoke-static { v$register }, ${YOUTUBE_ACTIVITY_HOOK_CLASS_DESCRIPTOR}->updateLightDarkModeStatus(Ljava/lang/Enum;)V",
)
}
}
// // Add setting to force Cairo settings fragment on/off.
// cairoFragmentConfigFingerprint.let {
// it.method.insertLiteralOverride(
// it.instructionMatches.last().index,
// "$LICENSE_ACTIVITY_HOOK_CLASS_DESCRIPTOR->useCairoSettingsFragment(Z)Z"
// )
// }
// }
// Add setting to force Cairo settings fragment on/off.
cairoFragmentConfigFingerprint.let {
it.method.insertLiteralOverride(
it.instructionMatches.last().index,
"$LICENSE_ACTIVITY_HOOK_CLASS_DESCRIPTOR->useCairoSettingsFragment(Z)Z"
)
}
}
cairoFragmentConfigFingerprint.method.insertLiteralOverride(
cairoFragmentConfigFingerprint.instructionMatches.first().index,
"$YOUTUBE_ACTIVITY_HOOK_CLASS_DESCRIPTOR->useCairoSettingsFragment(Z)Z"
)
modifyActivityForSettingsInjection(
licenseActivityOnCreateFingerprint.classDef,
licenseActivityOnCreateFingerprint.method,
YOUTUBE_ACTIVITY_HOOK_CLASS_DESCRIPTOR
)
}
finalize {
PreferenceScreen.close()
}
}
/**
* Modifies the activity to show ReVanced settings instead of it's original purpose.
*/
internal fun modifyActivityForSettingsInjection(
activityOnCreateClass: MutableClass,
activityOnCreateMethod: MutableMethod,
extensionClassType: String
) {
// Modify Activity and remove all existing layout code.
// Must modify an existing activity and cannot add a new activity to the manifest,
// as that fails for root installations.
activityOnCreateMethod.addInstructions(
1,
"""
invoke-static { p0 }, $extensionClassType->initialize(Landroid/app/Activity;)V
return-void
"""
)
// Remove other methods as they will break as the onCreate method is modified above.
activityOnCreateClass.apply {
methods.removeIf { it != activityOnCreateMethod && !MethodUtil.isConstructor(it) }
}
// Override base context to allow using ReVanced specific settings.
ImmutableMethod(
activityOnCreateClass.type,
"attachBaseContext",
listOf(ImmutableMethodParameter("Landroid/content/Context;", null, null)),
"V",
AccessFlags.PROTECTED.value,
null,
null,
MutableMethodImplementation(3),
).toMutable().apply {
addInstructions(
"""
invoke-static { p1 }, $BASE_ACTIVITY_HOOK_CLASS_DESCRIPTOR->getAttachBaseContext(Landroid/content/Context;)Landroid/content/Context;
move-result-object p1
invoke-super { p0, p1 }, ${activityOnCreateClass.superclass}->attachBaseContext(Landroid/content/Context;)V
return-void
"""
)
}.let(activityOnCreateClass.methods::add)
// Override finish() to intercept back gesture.
ImmutableMethod(
activityOnCreateClass.type,
"finish",
emptyList(),
"V",
AccessFlags.PUBLIC.value,
null,
null,
MutableMethodImplementation(3),
).toMutable().apply {
addInstructions(
"""
invoke-static {}, $extensionClassType->handleFinish()Z
move-result v0
if-nez v0, :search_handled
invoke-super { p0 }, Landroid/app/Activity;->finish()V
return-void
:search_handled
return-void
"""
)
}.let(activityOnCreateClass.methods::add)
}
/**
* Creates an intent to open ReVanced settings.
*/

View file

@ -17,7 +17,7 @@ internal val settingsMenuVideoSpeedGroup = mutableSetOf<BasePreference>()
@Suppress("unused")
val playbackSpeedPatch = bytecodePatch(
name = "Playback speed",
description = "Adds options to customize available playback speeds, set default a playback speed, " +
description = "Adds options to customize available playback speeds, set a default playback speed, " +
"and show a speed dialog button in the video player.",
) {
dependsOn(

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -107,6 +107,15 @@ Second \"item\" text"</string>
<string name="revanced_debug_title">تسجيل تصحيح الأخطاء</string>
<string name="revanced_debug_summary_on">تم تمكين تسجيلات تصحيح الأخطاء</string>
<string name="revanced_debug_summary_off">تم تعطيل تسجيلات تصحيح الأخطاء</string>
<string name="revanced_debug_stacktrace_title">سجل تتبع المكدس</string>
<string name="revanced_debug_stacktrace_summary_on">تتضمن سجلات التصحيح سجل تتبع المكدس</string>
<string name="revanced_debug_stacktrace_summary_off">لا تتضمن سجلات التصحيح سجل تتبع المكدس</string>
<string name="revanced_debug_toast_on_error_title">عرض ملاحظة عند وجود خطأ في ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">يتم عرض ملاحظة في حالة حدوث خطأ</string>
<string name="revanced_debug_toast_on_error_summary_off">لا يتم عرض ملاحظة في حالة حدوث خطأ</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"يؤدي إيقاف تشغيل ملاحظات الأخطاء إلى إخفاء كافة إشعارات أخطاء ReVanced.
لن يتم إعلامك بأي أخطاء غير متوقعة."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">تصدير سجلات تصحيح الأخطاء</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">نسخ سجلات تصحيح أخطاء ReVanced إلى الحافظة</string>
<string name="revanced_debug_logs_disabled">تم تعطيل تسجيلات تصحيح الأخطاء</string>
@ -151,15 +160,6 @@ Second \"item\" text"</string>
يمكن أن يساعد هذا في تحديد المكونات عند إنشاء عوامل تصفية مخصصة.
ومع ذلك، سيؤدي تمكين هذا أيضًا إلى تسجيل بعض بيانات المستخدم مثل عنوان IP الخاص بك."</string>
<string name="revanced_debug_stacktrace_title">سجل تتبع المكدس</string>
<string name="revanced_debug_stacktrace_summary_on">تتضمن سجلات التصحيح سجل تتبع المكدس</string>
<string name="revanced_debug_stacktrace_summary_off">لا تتضمن سجلات التصحيح سجل تتبع المكدس</string>
<string name="revanced_debug_toast_on_error_title">عرض ملاحظة عند وجود خطأ في ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">يتم عرض ملاحظة في حالة حدوث خطأ</string>
<string name="revanced_debug_toast_on_error_summary_off">لا يتم عرض ملاحظة في حالة حدوث خطأ</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"يؤدي إيقاف تشغيل ملاحظات الأخطاء إلى إخفاء كافة إشعارات أخطاء ReVanced.
لن يتم إعلامك بأي أخطاء غير متوقعة."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">إخفاء بطاقات الألبوم</string>
@ -586,6 +586,10 @@ Second \"item\" text"</string>
<string name="revanced_hide_stop_ads_button_title">إخفاء إيقاف الإعلانات</string>
<string name="revanced_hide_stop_ads_button_summary_on">زر إيقاف الإعلانات مخفي</string>
<string name="revanced_hide_stop_ads_button_summary_off">زر إيقاف الإعلانات معروض</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">إخفاء التعليقات</string>
<string name="revanced_hide_comments_button_summary_on">زر التعليقات مخفي</string>
<string name="revanced_hide_comments_button_summary_off">زر التعليقات ظاهر</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">إخفاء الإبلاغ</string>
@ -1242,8 +1246,9 @@ Second \"item\" text"</string>
إذا تم إيقاف تشغيله لاحقًا، من المستحسن مسح بيانات التطبيق لمنع حدوث أخطاء في واجهة المستخدم."</string>
<string name="revanced_spoof_app_version_target_title">الهدف من تغيير إصدار التطبيق</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - استعادة أيقونات مشغل Shorts القديمة</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - استعادة أيقونات التنقل القديمة</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - استعادة شريط إجراءات الفيديو غير المطوي</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - استعادة أيقونات مشغل Shorts القديمة</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - استعادة أيقونات التنقل القديمة</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">تغيير صفحة البداية</string>
@ -1559,12 +1564,15 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_about_experimental">• عميل تجريبي وقد يتوقف عن العمل في أي وقت</string>
<string name="revanced_spoof_video_streams_about_no_av1">• لا يوجد ترميز الفيديو AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• قد لا يتم تشغيل الفيديوهات المخصصة للأطفال عند تسجيل الخروج أو عند استخدام وضع التصفح المتخفي</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• فرض الصوت الأصلي غير متاح</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">عرض في إحصاءات تقنية</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">يتم عرض نوع العميل في إحصاءات تقنية</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">تم إخفاء نوع العميل في إحصاءات تقنية</string>
<string name="revanced_spoof_video_streams_language_title">لغة بث الصوت</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">لتحديد لغة صوتية معينة، قم بإيقاف تشغيل \"فرض لغة الصوت الأصلية\"</string>
<string name="revanced_spoof_video_streams_language_android_studio">اختيار لغة البث غير متاح مع Android Studio</string>
</patch>
</app>
<app id="music">
@ -1599,23 +1607,23 @@ Second \"item\" text"</string>
<string name="revanced_music_navigation_bar_screen_title">شريط التنقل</string>
<string name="revanced_music_navigation_bar_screen_summary">إخفاء أزرار شريط التنقل أو تغييرها</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">إخفاء زر \"الرئيسية\"</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">إخفاء الرئيسية</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">زر \"الرئيسية\" مخفي</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">زر \"الرئيسية\" ظاهر</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">إخفاء زر \"المقتطفات\"</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">إخفاء المقاطع</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">زر \"المقتطفات\" مخفي</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">زر \"المقتطفات\" ظاهر</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">إخفاء زر \"استكشاف\"</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">إخفاء استكشاف</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">زر \"استكشاف\" مخفي</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">زر \"استكشاف\" ظاهر</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">إخفاء زر \"المكتبة\"</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">إخفاء المكتبة</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">زر \"المكتبة\" مخفي</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">زر \"المكتبة\" ظاهر</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">إخفاء زر \"الترقية\"</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">إخفاء ترقية</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">زر \"الترقية\" مخفي</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">زر \"الترقية\" ظاهر</string>
<string name="revanced_music_hide_navigation_bar_title">إخفاء شريط التنقل</string>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -245,6 +246,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -107,6 +107,15 @@ Oynatma işləməyə bilər"</string>
<string name="revanced_debug_title">Sazlama jurnalı</string>
<string name="revanced_debug_summary_on">Sazlama jurnalı işləkdir</string>
<string name="revanced_debug_summary_off">Sazlama jurnalı qeyri-aktivdir</string>
<string name="revanced_debug_stacktrace_title">Yığın izləri jurnalı</string>
<string name="revanced_debug_stacktrace_summary_on">Sazlama jurnalına yığın izləri daxildir</string>
<string name="revanced_debug_stacktrace_summary_off">Sazlama jurnalına yığın izləri daxil deyil</string>
<string name="revanced_debug_toast_on_error_title">ReVanced xətasında ani bildiriş göstər</string>
<string name="revanced_debug_toast_on_error_summary_on">Xəta baş verərsə ani bildiriş görünür</string>
<string name="revanced_debug_toast_on_error_summary_off">Xəta baş verərsə ani bildiriş görünmür</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Xəta ani bildirişlərin qapatmaq, bütün ReVanced xəta bildirişlərin gizlədir.
Gözlənilməz hallardan xəbərdar olmayacaqsınız."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Sazlama qeydlərini ixrac edin</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">ReVanced sazlama qeydlərini buferə köçürür</string>
<string name="revanced_debug_logs_disabled">Sazlama qeydi qapalıdır</string>
@ -151,15 +160,6 @@ Oynatma işləməyə bilər"</string>
Bu, xüsusi filtrlər yaradarkən quruluşları müəyyən etməyə kömək edə bilər.
Hər halda, bunu aktivləşdirmə IP ünvanınız kimi bəzi istifadəçi məlumatın da daxil edəcək."</string>
<string name="revanced_debug_stacktrace_title">Yığın izləri jurnalı</string>
<string name="revanced_debug_stacktrace_summary_on">Sazlama jurnalına yığın izləri daxildir</string>
<string name="revanced_debug_stacktrace_summary_off">Sazlama jurnalına yığın izləri daxil deyil</string>
<string name="revanced_debug_toast_on_error_title">ReVanced xətasında ani bildiriş göstər</string>
<string name="revanced_debug_toast_on_error_summary_on">Xəta baş verərsə ani bildiriş görünür</string>
<string name="revanced_debug_toast_on_error_summary_off">Xəta baş verərsə ani bildiriş görünmür</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Xəta ani bildirişlərin qapatmaq, bütün ReVanced xəta bildirişlərin gizlədir.
Gözlənilməz hallardan xəbərdar olmayacaqsınız."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Albom kartlarını gizlət</string>
@ -586,6 +586,10 @@ Ekranın sağ tərəfində düzünə sürüşdürərək səs səviyyəsini tənz
<string name="revanced_hide_stop_ads_button_title">Reklamları Dayandırın-ı gizlət</string>
<string name="revanced_hide_stop_ads_button_summary_on">Reklamları dayandır düyməsi gizlidir</string>
<string name="revanced_hide_stop_ads_button_summary_off">Reklamları dayandır düyməsi görünür</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Şərhləri Gizlət</string>
<string name="revanced_hide_comments_button_summary_on">Şərhlər düyməsi gizlidir</string>
<string name="revanced_hide_comments_button_summary_off">Şərhlər düyməsi görünür</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">\"Xəbər verin\"i gizlət</string>
@ -1241,8 +1245,9 @@ Bu tətbiqin görünüşün və xüsusiyyətlərin dəyişdirəcək, lakin bilin
Sonradan qapadılarsa, UI səhvlərin önləmək üçün tətbiq məlumatların silmək tövsiyə olunur."</string>
<string name="revanced_spoof_app_version_target_title">Saxta tətbiq versiyası hədəfi</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Köhnə Shorts oynadıcı işarələrin bərpa et</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Köhnə fəaliyyət simvolların bərpa et</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Yığılmayan video fəaliyyət cizgisin bərpa et</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Köhnə Shorts oynadıcı işarələrin bərpa et</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Köhnə fəaliyyət simvolların bərpa et</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Başlatma səhifəsini dəyişdir</string>
@ -1558,12 +1563,15 @@ Bunu aktivləşdirmə daha yüksək video keyfiyyətləri əngəlin silə bilər
<string name="revanced_spoof_video_streams_about_experimental">• Təcrübi qəbuledici və hər vaxt işləməyi dayandıra bilər</string>
<string name="revanced_spoof_video_streams_about_no_av1">• AV1 video kodlayıcı yoxdur</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Giriş edilməyəndə və ya gizli rejimdə uşaq videoları oynadıla bilməz</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• \"Orijinal səsi zorla\" əlçatmazdır</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">İstək üçün Statistikada göstər</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Qəbuledici növü İstək üçün statistikada göstərilir</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Qəbuledici nerd üçün Statistikada gizlidir</string>
<string name="revanced_spoof_video_streams_language_title">Səs yayım dili</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Xüsusi səs dilini seçmək üçün \"Orijinal səs dilini zorlanı\" qapat</string>
<string name="revanced_spoof_video_streams_language_android_studio">Yayım dili seçimi Android Studio ilə əlçatmazdır</string>
</patch>
</app>
<app id="music">
@ -1585,6 +1593,9 @@ Bunu aktivləşdirmə daha yüksək video keyfiyyətləri əngəlin silə bilər
<string name="revanced_music_play_permanent_repeat_summary_off">Kəsintisiz təkrarlama qapalıdır</string>
</patch>
<patch id="layout.castbutton.hideCastButton">
<string name="revanced_music_hide_cast_button_title">Yayım düyməsini gizlət</string>
<string name="revanced_music_hide_cast_button_summary_on">Yayım düyməsi gizlidir</string>
<string name="revanced_music_hide_cast_button_summary_off">Yayım düyməsi göstərilir</string>
</patch>
<patch id="layout.compactheader.hideCategoryBar">
<string name="revanced_music_hide_category_bar_title">Kateqoriya cizgisin gizlət</string>
@ -1592,11 +1603,34 @@ Bunu aktivləşdirmə daha yüksək video keyfiyyətləri əngəlin silə bilər
<string name="revanced_music_hide_category_bar_summary_off">Kateqoriya cizgisi görünür</string>
</patch>
<patch id="layout.navigationbar.navigationBarPatch">
<string name="revanced_music_navigation_bar_screen_title">Fəaliyyət cizgisi</string>
<string name="revanced_music_navigation_bar_screen_summary">Fəaliyyət cizgisi düymələrini gizlət və ya dəyiş</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Ev-i Gizlət</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Ev düyməsi gizlidir</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Ev düyməsi görünür</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Nümunələri Gizlət</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Nümunələr düyməsi gizlidir</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Nümunələr düyməsi görünür</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Kəşf edin-i gizlət</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Kəşf et düyməsi gizlidir</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Kəşf et düyməsi görünür</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Kitabxananı gizlət</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Kitabxana düyməsi gizlidir</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Kitabxana düyməsi görünür</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Təkmilləşdirməni Gizlət</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Təkmilləşdirmə düyməsi gizlidir</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Təkmilləşdirmə düyməsi görünür</string>
<string name="revanced_music_hide_navigation_bar_title">Fəaliyyət cizgisin gizlət</string>
<string name="revanced_music_hide_navigation_bar_summary_on">Fəaliyyət cizgisi gizlidir</string>
<string name="revanced_music_hide_navigation_bar_summary_off">Fəaliyyət cizgisi görünür</string>
<string name="revanced_music_hide_navigation_bar_labels_title">Fəaliyyət düyməsi etiketlərini gizlət</string>
<string name="revanced_music_hide_navigation_bar_labels_summary_on">Etiketlər gizlidir</string>
<string name="revanced_music_hide_navigation_bar_labels_summary_off">Etiketlər görünür</string>
</patch>
<patch id="layout.premium.hideGetPremiumPatch">
<string name="revanced_music_hide_get_premium_label_title"> \'Musiqi Premiumu Əldə et\' etiketini gizlət</string>

View file

@ -107,6 +107,15 @@ Second \"item\" text"</string>
<string name="revanced_debug_title">Запіс адладкі</string>
<string name="revanced_debug_summary_on">Журналы адладкі ўключаны</string>
<string name="revanced_debug_summary_off">Журналы адладкі адключаны</string>
<string name="revanced_debug_stacktrace_title">Сляды стэка журнала</string>
<string name="revanced_debug_stacktrace_summary_on">Журналы адладкі ўключаюць трасіроўку стэка</string>
<string name="revanced_debug_stacktrace_summary_off">Журналы адладкі не ўключаюць трасіроўку стэка</string>
<string name="revanced_debug_toast_on_error_title">Паказаць тост пры памылцы ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Паказваць toast у выпадку памылкі</string>
<string name="revanced_debug_toast_on_error_summary_off">Не паказваць toast у выпадку памылкі</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Адключэнне паведамленняў пра памылкі схавае ўсе апавяшчэнні ReVanced пра памылкі.
Вы не будзеце атрымліваць апавяшчэнні пра нечаканыя падзеі."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Экспартаваць адладачныя лагі</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Капіруе адладачныя лагі ReVanced у буфер абмену</string>
<string name="revanced_debug_logs_disabled">Адладачнае лагаванне адключана</string>
@ -151,15 +160,6 @@ Second \"item\" text"</string>
Гэта можа дапамагчы ідэнтыфікаваць кампаненты пры стварэнні карыстацкіх фільтраў.
Аднак уключэнне гэтага параметра таксама будзе запісваць некаторыя даныя карыстальніка, такія як ваш IP-адрас."</string>
<string name="revanced_debug_stacktrace_title">Сляды стэка журнала</string>
<string name="revanced_debug_stacktrace_summary_on">Журналы адладкі ўключаюць трасіроўку стэка</string>
<string name="revanced_debug_stacktrace_summary_off">Журналы адладкі не ўключаюць трасіроўку стэка</string>
<string name="revanced_debug_toast_on_error_title">Паказаць тост пры памылцы ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Паказваць toast у выпадку памылкі</string>
<string name="revanced_debug_toast_on_error_summary_off">Не паказваць toast у выпадку памылкі</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Адключэнне паведамленняў пра памылкі схавае ўсе апавяшчэнні ReVanced пра памылкі.
Вы не будзеце атрымліваць апавяшчэнні пра нечаканыя падзеі."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Схаваць карты альбома</string>
@ -586,6 +586,10 @@ Second \"item\" text"</string>
<string name="revanced_hide_stop_ads_button_title">Схаваць Спыніць рэкламу</string>
<string name="revanced_hide_stop_ads_button_summary_on">Кнопка \"Спыніць рэкламу\" схавана</string>
<string name="revanced_hide_stop_ads_button_summary_off">Кнопка \"Спыніць рэкламу\" паказана</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Схаваць каментарыі</string>
<string name="revanced_hide_comments_button_summary_on">Кнопка каментарыяў схавана</string>
<string name="revanced_hide_comments_button_summary_off">Кнопка каментарыяў паказана</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Схаваць справаздачу</string>
@ -1243,8 +1247,9 @@ Second \"item\" text"</string>
Калі пазней будзе адключана, рэкамендуецца ачысціць даныя прыкладання, каб пазбегнуць памылак у інтэрфейсе."</string>
<string name="revanced_spoof_app_version_target_title">Падробка мэтавай версіі праграмы</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 — Восстановить старые значки плеера Shorts</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Аднаўленне старых значкоў навігацыі</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Аднавіць не згорнуты радок дзеянняў відэа</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 — Восстановить старые значки плеера Shorts</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Аднаўленне старых значкоў навігацыі</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Змяніць стартавую старонку</string>
@ -1560,12 +1565,15 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Эксперыментальны кліент і можа спыніць працу ў любы час</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Няма відэакідавання AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Дзіцячыя відэа могуць не прайгравацца ў стане выхаду з акаўнта або ў рэжыме інкогніта</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Прымусовы арыгінальны аўдыё недаступны</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Паказаць у статыстыцы для спецыялістаў</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Тып кліента адлюстроўваецца ў статыстыцы для спецыялістаў</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Кліент схаваны ў статыстыцы для спецыялістаў</string>
<string name="revanced_spoof_video_streams_language_title">Мова аўдыяпатоку</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Каб выбраць пэўную мову аўдыё, адключыце \'Прымусовая арыгінальная мова аўдыё\'</string>
<string name="revanced_spoof_video_streams_language_android_studio">Выбар мовы трансляцыі недаступны ў Android Studio</string>
</patch>
</app>
<app id="music">
@ -1600,23 +1608,23 @@ Second \"item\" text"</string>
<string name="revanced_music_navigation_bar_screen_title">Панэль навігацыі</string>
<string name="revanced_music_navigation_bar_screen_summary">Схаваць або змяніць кнопкі панэлі навігацыі</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Схаваць кнопку \"Галоўная\"</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Схаваць Галоўную</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Кнопка \"Галоўная\" схавана</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Кнопка \"Галоўная\" паказана</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Схаваць кнопку \"Узоры\"</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Схаваць Узоры</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Кнопка \"Узоры\" схавана</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Кнопка \"Узоры\" паказана</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Схаваць кнопку \"Агляд\"</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Схаваць Агляд</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Кнопка \"Агляд\" схавана</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Кнопка \"Агляд\" паказана</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Схаваць кнопку \"Бібліятэка\"</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Схаваць Бібліятэку</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Кнопка \"Бібліятэка\" схавана</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Кнопка \"Бібліятэка\" паказана</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Схаваць кнопку \"Абнавіць\"</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Схаваць Прэміум</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Кнопка \"Абнавіць\" схавана</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Кнопка \"Абнавіць\" паказана</string>
<string name="revanced_music_hide_navigation_bar_title">Схаваць панэль навігацыі</string>

View file

@ -107,6 +107,15 @@ Second \"item\" text"</string>
<string name="revanced_debug_title">Дневник на отстраняването на грешки</string>
<string name="revanced_debug_summary_on">Дневникът за остраняване на грешки е активиран</string>
<string name="revanced_debug_summary_off">Дневникът за остраняване на грешки е деактивиран</string>
<string name="revanced_debug_stacktrace_title">Следи от стека на дневника</string>
<string name="revanced_debug_stacktrace_summary_on">Дневникът за отстраняване на грешки съдържа следи от стека</string>
<string name="revanced_debug_stacktrace_summary_off">Дневникът за отстраняване на грешки не съдържа следи от стека</string>
<string name="revanced_debug_toast_on_error_title">Покажи системно съобщение при ReVanced грешка</string>
<string name="revanced_debug_toast_on_error_summary_on">Показва се toast, ако възникне грешка</string>
<string name="revanced_debug_toast_on_error_summary_off">Не се показва toast, ако възникне грешка</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Изключването на изскачащи съобщения за грешки крие всички известия за грешки на ReVanced.
Няма да бъдете уведомени за неочаквани събития."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Експортиране на логове за отстраняване на грешки</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Копира логовете за отстраняване на грешки на ReVanced в клипборда</string>
<string name="revanced_debug_logs_disabled">Отстраняването на грешки е деактивирано</string>
@ -151,15 +160,6 @@ Second \"item\" text"</string>
Това може да помогне за идентифициране на компоненти при създаване на персонализирани филтри.
Активирането на тази настройка обаче ще регистрира и някои потребителски данни, като например вашия IP адрес."</string>
<string name="revanced_debug_stacktrace_title">Следи от стека на дневника</string>
<string name="revanced_debug_stacktrace_summary_on">Дневникът за отстраняване на грешки съдържа следи от стека</string>
<string name="revanced_debug_stacktrace_summary_off">Дневникът за отстраняване на грешки не съдържа следи от стека</string>
<string name="revanced_debug_toast_on_error_title">Покажи системно съобщение при ReVanced грешка</string>
<string name="revanced_debug_toast_on_error_summary_on">Показва се toast, ако възникне грешка</string>
<string name="revanced_debug_toast_on_error_summary_off">Не се показва toast, ако възникне грешка</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Изключването на изскачащи съобщения за грешки крие всички известия за грешки на ReVanced.
Няма да бъдете уведомени за неочаквани събития."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">\"Карти на албумите\"</string>
@ -586,6 +586,10 @@ Second \"item\" text"</string>
<string name="revanced_hide_stop_ads_button_title">Скриване на „Спиране на реклами“</string>
<string name="revanced_hide_stop_ads_button_summary_on">Бутонът за спиране на реклами е скрит</string>
<string name="revanced_hide_stop_ads_button_summary_off">Бутонът за спиране на реклами е показан</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Скрий коментари</string>
<string name="revanced_hide_comments_button_summary_on">Бутонът за коментари е скрит</string>
<string name="revanced_hide_comments_button_summary_off">Бутонът за коментари е показан</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Бутон за доклади</string>
@ -1242,8 +1246,9 @@ Second \"item\" text"</string>
Ако по-късно бъде изключено, препоръчително е да изчистите данните на приложението, за да предотвратите грешки в потребителския интерфейс."</string>
<string name="revanced_spoof_app_version_target_title">Подлъгване за версията на</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Възстановете старите икони на Shorts в плейъра</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Възстановяване на стари икони за навигация</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Възстановяване на несгъваема лента с действия за видео</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Възстановете старите икони на Shorts в плейъра</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Възстановяване на стари икони за навигация</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Промяна на началната страница</string>
@ -1559,12 +1564,15 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Експериментален клиент и може да спре да работи по всяко време</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Без AV1 видео кодек</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Детските видеоклипове може да не се възпроизвеждат, когато сте излезли от профила си или в режим \"инкогнито\"</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Принудителният оригинален звук не е наличен</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Poka6i v Statistiki za nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Tipът na klienta se poka6va v Statistiki za nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Klientът e skriт v Statistiki za nerds</string>
<string name="revanced_spoof_video_streams_language_title">Език на аудио потока</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">За да изберете конкретен аудио език, изключете \'Принудително оригинален аудио език\'</string>
<string name="revanced_spoof_video_streams_language_android_studio">Изборът на език на потока не е наличен с Android Studio</string>
</patch>
</app>
<app id="music">
@ -1599,23 +1607,23 @@ Second \"item\" text"</string>
<string name="revanced_music_navigation_bar_screen_title">Навигационна лента</string>
<string name="revanced_music_navigation_bar_screen_summary">Скриване или промяна на бутоните на навигационната лента</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Скриване на бутона Начало</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Скриване на Начало</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Бутонът Начало е скрит</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Бутонът Начало е показан</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Скриване на бутона Мостри</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Скриване на Мостри</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Бутонът Мостри е скрит</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Бутонът Мостри е показан</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Скриване на бутона Проучване</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Скриване на Разглеждане</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Бутонът Проучване е скрит</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Бутонът Проучване е показан</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Скриване на бутона Библиотека</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Скриване на Библиотека</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Бутонът Библиотека е скрит</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Бутонът Библиотека е показан</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Скриване на бутона Надграждане</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Скриване на Надстройка</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Бутонът Надграждане е скрит</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Бутонът Надграждане е показан</string>
<string name="revanced_music_hide_navigation_bar_title">Скриване на навигационната лента</string>

View file

@ -107,6 +107,15 @@ MicroG-এর জন্য ব্যাটারি অপ্টিমাইজ
<string name="revanced_debug_title">ডিবাগ লগিং</string>
<string name="revanced_debug_summary_on">ডিবাগ লগ সক্রিয় হয়েছে</string>
<string name="revanced_debug_summary_off">ডিবাগ লগ নিষ্ক্রিয় হয়েছে</string>
<string name="revanced_debug_stacktrace_title">স্টেক ট্রেস লগ</string>
<string name="revanced_debug_stacktrace_summary_on">ডিবাগ লগ স্টেক ট্রেস সংযুক্ত করবে</string>
<string name="revanced_debug_stacktrace_summary_off">ডিবাগ লগ স্টেক ট্রেস সংযুক্ত করবে না</string>
<string name="revanced_debug_toast_on_error_title">ReVanced এর ত্রুটির ক্ষেত্রে টোস্ট দেখান</string>
<string name="revanced_debug_toast_on_error_summary_on">যদি ত্রুটি ঘটে তবে toast দেখানো হবে</string>
<string name="revanced_debug_toast_on_error_summary_off">যদি ত্রুটি ঘটে তবে toast দেখানো হবে না</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"ত্রুটি \"toast\" বন্ধ করে ReVanced ত্রুটি বিজ্ঞপ্তিগুলি লুকানো হয়।
আপনি কোনও অপ্রত্যাশিত ঘটনার বিষয়ে অবহিত হবেন না।"</string>
<string name="revanced_debug_export_logs_to_clipboard_title">ডিবাগ লগগুলি রফতানি করুন</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">ক্লিপবোর্ডে ReVanced ডিবাগ লগগুলি অনুলিপি করে</string>
<string name="revanced_debug_logs_disabled">ডিবাগ লগিং নিষ্ক্রিয় করা হয়েছে</string>
@ -147,15 +156,6 @@ MicroG-এর জন্য ব্যাটারি অপ্টিমাইজ
<string name="revanced_debug_protobuffer_summary_on">ডিবাগ লগ প্রটোকল বাফার সংযুক্ত করবে</string>
<string name="revanced_debug_protobuffer_summary_off">ডিবাগ লগ প্রটোকল বাফার সংযুক্ত করবে না</string>
<string name="revanced_debug_protobuffer_user_dialog_message">"এই সেটিংস সক্ষম করলে কিছু UI উপাদানের জন্য অন-স্ক্রীন পাঠ্য সহ অতিরিক্ত লেআউট ডেটা লগ করা হবে।\n\nএটি কাস্টম ফিল্টার তৈরি করার সময় উপাদান সনাক্ত করতে সাহায্য করতে পারে।\n\nতবে, এটি সক্রিয় করলে আপনার আইপি ঠিকানার মতো কিছু ব্যবহারকারীর ডেটাও লগ করা হবে।"</string>
<string name="revanced_debug_stacktrace_title">স্টেক ট্রেস লগ</string>
<string name="revanced_debug_stacktrace_summary_on">ডিবাগ লগ স্টেক ট্রেস সংযুক্ত করবে</string>
<string name="revanced_debug_stacktrace_summary_off">ডিবাগ লগ স্টেক ট্রেস সংযুক্ত করবে না</string>
<string name="revanced_debug_toast_on_error_title">ReVanced এর ত্রুটির ক্ষেত্রে টোস্ট দেখান</string>
<string name="revanced_debug_toast_on_error_summary_on">যদি ত্রুটি ঘটে তবে toast দেখানো হবে</string>
<string name="revanced_debug_toast_on_error_summary_off">যদি ত্রুটি ঘটে তবে toast দেখানো হবে না</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"ত্রুটি \"toast\" বন্ধ করে ReVanced ত্রুটি বিজ্ঞপ্তিগুলি লুকানো হয়।
আপনি কোনও অপ্রত্যাশিত ঘটনার বিষয়ে অবহিত হবেন না।"</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">অ্যালবাম কার্ড লুকান</string>
@ -582,6 +582,10 @@ MicroG-এর জন্য ব্যাটারি অপ্টিমাইজ
<string name="revanced_hide_stop_ads_button_title">বিজ্ঞাপন বন্ধ করুন লুকান</string>
<string name="revanced_hide_stop_ads_button_summary_on">বিজ্ঞাপন বন্ধ করুন বোতামটি লুকানো আছে</string>
<string name="revanced_hide_stop_ads_button_summary_off">বিজ্ঞাপন বন্ধ করুন বোতামটি দেখানো হচ্ছে</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">মন্তব্য লুকান</string>
<string name="revanced_hide_comments_button_summary_on">মন্তব্য বোতাম লুকানো আছে</string>
<string name="revanced_hide_comments_button_summary_off">মন্তব্য বোতাম দেখানো আছে</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Report লুকান</string>
@ -1238,8 +1242,9 @@ YouTube সেটিংসে অটো প্লে পরিবর্তন
পরে যদি বন্ধ করা হয়, UI বাগ এড়াতে অ্যাপ্লিকেশন ডেটা পরিষ্কার করার পরামর্শ দেওয়া হয়।"</string>
<string name="revanced_spoof_app_version_target_title">স্পুফ অ্যাপ সংস্করণ লক্ষ্য</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - পুরনো Shorts প্লেয়ার আইকন পুনরুদ্ধার করুন</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - পুরনো নেভিগেশন আইকন পুনরুদ্ধার করুন</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - প্রসারিত নয় এমন ভিডিও অ্যাকশন বার পুনরুদ্ধার করুন</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - পুরনো Shorts প্লেয়ার আইকন পুনরুদ্ধার করুন</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - পুরনো নেভিগেশন আইকন পুনরুদ্ধার করুন</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">শুরুর পৃষ্ঠা পরিবর্তন করুন</string>
@ -1555,12 +1560,15 @@ DeArrow সম্পর্কে আরও জানতে এখানে ট
<string name="revanced_spoof_video_streams_about_experimental">• পরীক্ষামূলক ক্লায়েন্ট এবং যেকোনো সময় কাজ করা বন্ধ করতে পারে</string>
<string name="revanced_spoof_video_streams_about_no_av1">• কোনো AV1 ভিডিও কোডেক নেই</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• লগআউট করা হলে বা ছদ্মবেশী মোডে বাচ্চাদের ভিডিও চলতে নাও পারে</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• মূল অডিও জোরপূর্বক উপলব্ধ নেই</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">স্ট্যাটস ফর নার্ডসে দেখান</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">স্ট্যাটস ফর নার্ডসে ক্লায়েন্ট প্রকার দেখানো হবে</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">স্ট্যাটস ফর নার্ডসে ক্লায়েন্ট লুকানো হবে</string>
<string name="revanced_spoof_video_streams_language_title">অডিও স্ট্রিম ভাষা</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">একটি নির্দিষ্ট অডিও ভাষা নির্বাচন করতে, \'মূল অডিও ভাষা জোর করে চালু রাখুন\' বন্ধ করুন</string>
<string name="revanced_spoof_video_streams_language_android_studio">অ্যান্ড্রয়েড স্টুডিও সহ স্ট্রিম ভাষার নির্বাচন উপলব্ধ নেই</string>
</patch>
</app>
<app id="music">
@ -1595,23 +1603,23 @@ DeArrow সম্পর্কে আরও জানতে এখানে ট
<string name="revanced_music_navigation_bar_screen_title">নেভিগেশন বার</string>
<string name="revanced_music_navigation_bar_screen_summary">নেভিগেশন বারের বোতামগুলি লুকান বা পরিবর্তন করুন</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">হোম বোতাম লুকান</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">হোম লুকান</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">হোম বোতাম লুকানো আছে</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">হোম বোতাম দেখানো আছে</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">স্যাম্পল বোতাম লুকান</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">স্যাম্পল লুকান</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">স্যাম্পল বোতাম লুকানো আছে</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">স্যাম্পল বোতাম দেখানো আছে</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">অনুসন্ধান বোতাম লুকান</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">এক্সপ্লোর লুকান</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">অনুসন্ধান বোতাম লুকানো আছে</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">অনুসন্ধান বোতাম দেখানো আছে</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">লাইব্রেরি বোতাম লুকান</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">লাইব্রেরি লুকান</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">লাইব্রেরি বোতাম লুকানো আছে</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">লাইব্রেরি বোতাম দেখানো আছে</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">আপগ্রেড বোতাম লুকান</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">আপগ্রেড লুকান</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">আপগ্রেড বোতাম লুকানো আছে</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">আপগ্রেড বোতাম দেখানো আছে</string>
<string name="revanced_music_hide_navigation_bar_title">নেভিগেশন বার লুকান</string>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -107,6 +107,15 @@ Přehrávání nemusí fungovat"</string>
<string name="revanced_debug_title">Debugovací záznamy</string>
<string name="revanced_debug_summary_on">Debugovací záznamy jsou zapnuty</string>
<string name="revanced_debug_summary_off">Debugovací záznamy jsou vypnuty</string>
<string name="revanced_debug_stacktrace_title">Protokolovat trasování zásobníku</string>
<string name="revanced_debug_stacktrace_summary_on">Protokoly ladění obsahují trasování zásobníku</string>
<string name="revanced_debug_stacktrace_summary_off">Ladící protokoly nezahrnují sledování zásobníku</string>
<string name="revanced_debug_toast_on_error_title">Zobrazit oznámení v případě chyby ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Zobrazí se toast, pokud dojde k chybě</string>
<string name="revanced_debug_toast_on_error_summary_off">Toast se nezobrazí, pokud dojde k chybě</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Vypnutí chybových toastů skryje všechna chybová oznámení ReVanced.
Nebudete informováni o žádné neočekávané události."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Exportovat ladicí protokoly</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Zkopíruje ladicí protokoly ReVanced do schránky</string>
<string name="revanced_debug_logs_disabled">Ladění je vypnuto</string>
@ -151,15 +160,6 @@ Přehrávání nemusí fungovat"</string>
To může pomoci identifikovat komponenty při vytváření vlastních filtrů.
Povolením této možnosti se však budou zaznamenávat i některá uživatelská data, jako je vaše IP adresa."</string>
<string name="revanced_debug_stacktrace_title">Protokolovat trasování zásobníku</string>
<string name="revanced_debug_stacktrace_summary_on">Protokoly ladění obsahují trasování zásobníku</string>
<string name="revanced_debug_stacktrace_summary_off">Ladící protokoly nezahrnují sledování zásobníku</string>
<string name="revanced_debug_toast_on_error_title">Zobrazit oznámení v případě chyby ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Zobrazí se toast, pokud dojde k chybě</string>
<string name="revanced_debug_toast_on_error_summary_off">Toast se nezobrazí, pokud dojde k chybě</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Vypnutí chybových toastů skryje všechna chybová oznámení ReVanced.
Nebudete informováni o žádné neočekávané události."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Skrýt karty alb</string>
@ -586,6 +586,10 @@ Hlasitost se upravuje svislým přejetím po pravé straně obrazovky"</string>
<string name="revanced_hide_stop_ads_button_title">Skrýt Zastavit reklamy</string>
<string name="revanced_hide_stop_ads_button_summary_on">Tlačítko pro zastavení reklam je skryté</string>
<string name="revanced_hide_stop_ads_button_summary_off">Tlačítko pro zastavení reklam je zobrazeno</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Skrýt komentáře</string>
<string name="revanced_hide_comments_button_summary_on">Tlačítko komentářů je skryto</string>
<string name="revanced_hide_comments_button_summary_off">Tlačítko komentářů je zobrazeno</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Skrýt Nahlásit</string>
@ -1242,8 +1246,9 @@ To změní vzhled a funkce aplikace, ale mohou se objevit neznámé vedlejší e
Pokud bude později vypnuta, doporučujeme vymazat data aplikace, aby se zabránilo chybám uživatelského rozhraní."</string>
<string name="revanced_spoof_app_version_target_title">Cíl napodobení verze aplikace</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Obnovuje staré ikony Shorts přehrávače</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 Obnovit staré ikony navigace</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Obnovit nerozbalený panel akcí videa</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Obnovuje staré ikony Shorts přehrávače</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 Obnovit staré ikony navigace</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Změnit úvodní stránku</string>
@ -1559,12 +1564,15 @@ Povolením této funkce lze odemknout vyšší kvality videa"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Experimentální klient a může kdykoli přestat fungovat</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Žádný video kodek AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Dětská videa se nemusí přehrávat, když jste odhlášení nebo v anonymním režimu</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Vynutit původní zvuk není k dispozici</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Zobrazit ve statistikách pro nadšence</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Typ klienta se zobrazuje ve statistikách pro nadšence</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Klient je skrytý ve statistikách pro nadšence</string>
<string name="revanced_spoof_video_streams_language_title">Jazyk zvukového streamu</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Chcete-li vybrat konkrétní zvukový jazyk, vypněte „Vynutit původní zvukový jazyk“</string>
<string name="revanced_spoof_video_streams_language_android_studio">Volba jazyka streamu není k dispozici s Android Studiem</string>
</patch>
</app>
<app id="music">
@ -1599,23 +1607,23 @@ Povolením této funkce lze odemknout vyšší kvality videa"</string>
<string name="revanced_music_navigation_bar_screen_title">Navigační panel</string>
<string name="revanced_music_navigation_bar_screen_summary">Skrýt nebo změnit tlačítka navigačního panelu</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Skrýt tlačítko Domů</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Skrýt Domů</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Tlačítko Domů je skryté</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Tlačítko Domů je zobrazeno</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Skrýt tlačítko Ukázky</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Skrýt Ukázky</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Tlačítko Ukázky je skryté</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Tlačítko Ukázky je zobrazeno</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Skrýt tlačítko Prozkoumat</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Skrýt Prozkoumat</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Tlačítko Prozkoumat je skryté</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Tlačítko Prozkoumat je zobrazeno</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Skrýt tlačítko Knihovna</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Skrýt Knihovnu</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Tlačítko Knihovna je skryté</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Tlačítko Knihovna je zobrazeno</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Skrýt tlačítko Vylepšit</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Skrýt Upgradovat</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Tlačítko Vylepšit je skryté</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Tlačítko Vylepšit je zobrazeno</string>
<string name="revanced_music_hide_navigation_bar_title">Skrýt navigační panel</string>

View file

@ -107,6 +107,15 @@ Afspilning fungerer muligvis ikke"</string>
<string name="revanced_debug_title">Fejlfindingslogning</string>
<string name="revanced_debug_summary_on">Fejlfindingslogge er aktiveret</string>
<string name="revanced_debug_summary_off">Fejlfindingslogge er deaktiveret</string>
<string name="revanced_debug_stacktrace_title">Logstakspor</string>
<string name="revanced_debug_stacktrace_summary_on">Fejlfindingslogge inkluderer stakspor</string>
<string name="revanced_debug_stacktrace_summary_off">Fejlfindingslogge inkluderer ikke stakspor</string>
<string name="revanced_debug_toast_on_error_title">Vis toastbesked ved ReVanced-fejl</string>
<string name="revanced_debug_toast_on_error_summary_on">Toast vises, hvis der opstår en fejl</string>
<string name="revanced_debug_toast_on_error_summary_off">Toast vises ikke, hvis der opstår en fejl</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Hvis du deaktiverer fejl-toasts, skjules alle ReVanced-fejlmeddelelser.
Du modtager ikke notifikationer om uventede hændelser."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Eksportér fejlsøgningslogfiler</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Kopierer ReVanced-fejlsøgningslogfiler til udklipsholderen</string>
<string name="revanced_debug_logs_disabled">Fejlsøgningslogning er deaktiveret</string>
@ -151,15 +160,6 @@ Afspilning fungerer muligvis ikke"</string>
Dette kan hjælpe med at identificere komponenter, når der oprettes brugerdefinerede filtre.
Aktivering af dette vil dog også logge nogle brugerdata, såsom din IP-adresse."</string>
<string name="revanced_debug_stacktrace_title">Logstakspor</string>
<string name="revanced_debug_stacktrace_summary_on">Fejlfindingslogge inkluderer stakspor</string>
<string name="revanced_debug_stacktrace_summary_off">Fejlfindingslogge inkluderer ikke stakspor</string>
<string name="revanced_debug_toast_on_error_title">Vis toastbesked ved ReVanced-fejl</string>
<string name="revanced_debug_toast_on_error_summary_on">Toast vises, hvis der opstår en fejl</string>
<string name="revanced_debug_toast_on_error_summary_off">Toast vises ikke, hvis der opstår en fejl</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Hvis du deaktiverer fejl-toasts, skjules alle ReVanced-fejlmeddelelser.
Du modtager ikke notifikationer om uventede hændelser."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Skjul albumkort</string>
@ -586,6 +586,10 @@ Juster lydstyrken ved at swipe lodret i højre side af skærmen"</string>
<string name="revanced_hide_stop_ads_button_title">Skjul Stop reklamer</string>
<string name="revanced_hide_stop_ads_button_summary_on">Knappen \"Stop annoncer\" er skjult</string>
<string name="revanced_hide_stop_ads_button_summary_off">Knappen \"Stop annoncer\" vises</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Skjul kommentarer</string>
<string name="revanced_hide_comments_button_summary_on">Kommentarknappen er skjult</string>
<string name="revanced_hide_comments_button_summary_off">Kommentarknappen vises</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Skjul Rapport</string>
@ -1244,8 +1248,9 @@ Dette ændrer appens udseende og funktioner, men ukendte bivirkninger kan foreko
Hvis det senere slås fra, anbefales det at rydde app-dataene for at forhindre UI-fejl."</string>
<string name="revanced_spoof_app_version_target_title">Spoof app version mål</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Gendan gamle Shorts player ikoner</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Gendan gamle navigationsikoner</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Gendan ikke-kollapset videohandlingslinje</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Gendan gamle Shorts player ikoner</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Gendan gamle navigationsikoner</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Skift startside</string>
@ -1561,12 +1566,15 @@ Aktivering af dette kan låse op for højere videokvalitet"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Eksperimentel klient og kan stoppe med at fungere når som helst</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Intet AV1-videokodek</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Videoer til børn afspilles muligvis ikke, når du er logget ud eller i inkognitotilstand</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Tving original lyd er ikke tilgængelig</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Vis i Statistik for nørder</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Klienttypen vises i Statistik for nørder</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Klienten er skjult i Statistik for nørder</string>
<string name="revanced_spoof_video_streams_language_title">Lydstreamsprog</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">For at vælge et specifikt lydsprog, slå \'Gennemtving originalt lydsprog\' fra</string>
<string name="revanced_spoof_video_streams_language_android_studio">Valg af streaming-sprog er ikke tilgængeligt med Android Studio</string>
</patch>
</app>
<app id="music">
@ -1601,23 +1609,23 @@ Aktivering af dette kan låse op for højere videokvalitet"</string>
<string name="revanced_music_navigation_bar_screen_title">Navigationslinje</string>
<string name="revanced_music_navigation_bar_screen_summary">Skjul eller skift navigationslinjeknapper</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Skjul Startside-knap</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Skjul Startside</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Startside-knappen er skjult</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Startside-knappen vises</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Skjul Kortklip-knap</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Skjul Uddrag</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Kortklip-knappen er skjult</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Kortklip-knappen vises</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Skjul Udforsk-knap</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Skjul Udforsk</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Udforsk-knappen er skjult</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Udforsk-knappen vises</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Skjul Bibliotek-knap</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Skjul Bibliotek</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Bibliotek-knappen er skjult</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Bibliotek-knappen vises</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Skjul Opgrader-knap</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Skjul Opgrader</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Opgrader-knappen er skjult</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Opgrader-knappen vises</string>
<string name="revanced_music_hide_navigation_bar_title">Skjul navigationslinje</string>

View file

@ -107,6 +107,15 @@ Die Wiedergabe funktioniert möglicherweise nicht"</string>
<string name="revanced_debug_title">Debug-Protokollierung</string>
<string name="revanced_debug_summary_on">Debug-Protokolle sind aktiviert</string>
<string name="revanced_debug_summary_off">Debug-Protokolle sind deaktiviert</string>
<string name="revanced_debug_stacktrace_title">Stacktraces protokollieren</string>
<string name="revanced_debug_stacktrace_summary_on">Debug-Protokolle enthalten Stacktrace</string>
<string name="revanced_debug_stacktrace_summary_off">Debug-Logs enthalten keine Stack-Traces</string>
<string name="revanced_debug_toast_on_error_title">Toast bei ReVanced Fehler anzeigen</string>
<string name="revanced_debug_toast_on_error_summary_on">Ein Toast wird angezeigt, wenn ein Fehler auftritt</string>
<string name="revanced_debug_toast_on_error_summary_off">Es wird keine Toast-Nachricht angezeigt, wenn ein Fehler auftritt</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Das Ausschalten von Fehler-Toasts blendet alle Benachrichtigungen über Fehler in ReVanced aus.
Sie werden nicht über unerwartete Ereignisse informiert."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Debug-Protokolle exportieren</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Kopiert ReVanced-Debug-Protokolle in die Zwischenablage</string>
<string name="revanced_debug_logs_disabled">Debug-Protokollierung ist deaktiviert</string>
@ -151,15 +160,6 @@ Die Wiedergabe funktioniert möglicherweise nicht"</string>
Dies kann helfen, Komponenten bei der Erstellung benutzerdefinierter Filter zu identifizieren.
Wenn Sie dies aktivieren, werden jedoch auch einige Benutzerdaten wie Ihre IP-Adresse protokolliert."</string>
<string name="revanced_debug_stacktrace_title">Stacktraces protokollieren</string>
<string name="revanced_debug_stacktrace_summary_on">Debug-Protokolle enthalten Stacktrace</string>
<string name="revanced_debug_stacktrace_summary_off">Debug-Logs enthalten keine Stack-Traces</string>
<string name="revanced_debug_toast_on_error_title">Toast bei ReVanced Fehler anzeigen</string>
<string name="revanced_debug_toast_on_error_summary_on">Ein Toast wird angezeigt, wenn ein Fehler auftritt</string>
<string name="revanced_debug_toast_on_error_summary_off">Es wird keine Toast-Nachricht angezeigt, wenn ein Fehler auftritt</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Das Ausschalten von Fehler-Toasts blendet alle Benachrichtigungen über Fehler in ReVanced aus.
Sie werden nicht über unerwartete Ereignisse informiert."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Albumkarten ausblenden</string>
@ -583,6 +583,10 @@ Passen Sie die Helligkeit an, indem Sie auf der linken Seite des Bildschirms ver
<string name="revanced_hide_stop_ads_button_title">Werbung stoppen ausblenden</string>
<string name="revanced_hide_stop_ads_button_summary_on">Schaltfläche \"Werbung stoppen\" ist ausgeblendet</string>
<string name="revanced_hide_stop_ads_button_summary_off">Schaltfläche \"Werbung stoppen\" ist sichtbar</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Kommentare ausblenden</string>
<string name="revanced_hide_comments_button_summary_on">Kommentare-Schaltfläche ist ausgeblendet</string>
<string name="revanced_hide_comments_button_summary_off">Kommentare-Schaltfläche wird angezeigt</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Bericht ausblenden</string>
@ -1239,8 +1243,9 @@ Dadurch ändert sich das Erscheinungsbild und die Funktionen der App, es können
Wenn Sie die Funktion später deaktivieren, wird empfohlen, die App-Daten zu löschen, um UI-Fehler zu vermeiden."</string>
<string name="revanced_spoof_app_version_target_title">Spoof-App-Versionsziel</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Alte Shorts Spielersymbole wiederherstellen</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Alte Navigations-Symbole wiederherstellen</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Nicht eingeklappte Video-Aktionsleiste wiederherstellen</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Alte Shorts Spielersymbole wiederherstellen</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Alte Navigations-Symbole wiederherstellen</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Startseite ändern</string>
@ -1556,12 +1561,15 @@ Durch Aktivieren dieser Option können höhere Videoqualitäten freigeschaltet w
<string name="revanced_spoof_video_streams_about_experimental">• Experimenteller Client und kann jederzeit aufhören zu funktionieren</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Kein AV1-Videocodec</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Kinder-Videos werden möglicherweise nicht abgespielt, wenn du abgemeldet bist oder den Inkognito-Modus verwendest.</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Originalton erzwingen ist nicht verfügbar</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">In Statistiken für Nerds anzeigen</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Der Client-Typ wird in den Statistiken für Nerds angezeigt</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Der Client wird in den Statistiken für Nerds ausgeblendet</string>
<string name="revanced_spoof_video_streams_language_title">Audiodatenstromsprache</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Um eine bestimmte Audiosprache auszuwählen, deaktivieren Sie „Original-Audiosprache erzwingen“</string>
<string name="revanced_spoof_video_streams_language_android_studio">Die Auswahl der Stream-Sprache ist mit Android Studio nicht verfügbar.</string>
</patch>
</app>
<app id="music">
@ -1596,23 +1604,23 @@ Durch Aktivieren dieser Option können höhere Videoqualitäten freigeschaltet w
<string name="revanced_music_navigation_bar_screen_title">Navigationsleiste</string>
<string name="revanced_music_navigation_bar_screen_summary">Navigationsleisten-Schaltflächen ausblenden oder ändern</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Start-Schaltfläche ausblenden</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Startseite ausblenden</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Start-Schaltfläche ist ausgeblendet</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Start-Schaltfläche wird angezeigt</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Samples-Schaltfläche ausblenden</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Kurzvideos ausblenden</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Samples-Schaltfläche ist ausgeblendet</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Samples-Schaltfläche wird angezeigt</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Entdecken-Schaltfläche ausblenden</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Erkunden ausblenden</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Entdecken-Schaltfläche ist ausgeblendet</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Entdecken-Schaltfläche wird angezeigt</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Mediathek-Schaltfläche ausblenden</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Mediathek ausblenden</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Mediathek-Schaltfläche ist ausgeblendet</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Mediathek-Schaltfläche wird angezeigt</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Upgrade-Schaltfläche ausblenden</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Upgrade ausblenden</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Upgrade-Schaltfläche ist ausgeblendet</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Upgrade-Schaltfläche wird angezeigt</string>
<string name="revanced_music_hide_navigation_bar_title">Navigationsleiste ausblenden</string>

View file

@ -107,6 +107,15 @@ Second \"item\" text"</string>
<string name="revanced_debug_title">Καταγραφή εντοπισμού σφαλμάτων</string>
<string name="revanced_debug_summary_on">Η καταγραφή εντοπισμού σφαλμάτων είναι ενεργοποιημένη</string>
<string name="revanced_debug_summary_off">Η καταγραφή εντοπισμού σφαλμάτων είναι απενεργοποιημένη</string>
<string name="revanced_debug_stacktrace_title">Καταγραφή ιχνών στοίβας</string>
<string name="revanced_debug_stacktrace_summary_on">Τα αρχεία καταγραφής σφαλμάτων περιλαμβάνουν ίχνη στοίβας</string>
<string name="revanced_debug_stacktrace_summary_off">Τα αρχεία καταγραφής σφαλμάτων δεν περιλαμβάνουν ίχνη στοίβας</string>
<string name="revanced_debug_toast_on_error_title">Εμφάνιση μηνυμάτων σφαλμάτων ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Εμφανίζεται μήνυμα στο κάτω μέρος της οθόνης αν προκύψει σφάλμα</string>
<string name="revanced_debug_toast_on_error_summary_off">Δεν εμφανίζεται μήνυμα στο κάτω μέρος της οθόνης αν προκύψει σφάλμα</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Η απενεργοποίηση των μηνυμάτων σφαλμάτων κρύβει όλες τις ειδοποιήσεις σφαλμάτων που αφορούν το ReVanced.
Δεν θα ειδοποιηθείτε για τυχόν απρόβλεπτα γεγονότα."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Εξαγωγή αρχείων καταγραφής εντοπισμού σφαλμάτων</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Αντιγραφή των αρχείων καταγραφής εντοπισμού σφαλμάτων ReVanced στο πρόχειρο</string>
<string name="revanced_debug_logs_disabled">Η καταγραφή εντοπισμού σφαλμάτων είναι απενεργοποιημένη</string>
@ -151,15 +160,6 @@ Second \"item\" text"</string>
Αυτό μπορεί να βοηθήσει στον εντοπισμό στοιχείων κατά τη δημιουργία προσαρμοσμένων φίλτρων.
Ωστόσο, η ενεργοποίηση αυτής της ρύθμισης θα καταγράψει επίσης ορισμένα δεδομένα χρήστη, όπως τη διεύθυνση IP σας."</string>
<string name="revanced_debug_stacktrace_title">Καταγραφή ιχνών στοίβας</string>
<string name="revanced_debug_stacktrace_summary_on">Τα αρχεία καταγραφής σφαλμάτων περιλαμβάνουν ίχνη στοίβας</string>
<string name="revanced_debug_stacktrace_summary_off">Τα αρχεία καταγραφής σφαλμάτων δεν περιλαμβάνουν ίχνη στοίβας</string>
<string name="revanced_debug_toast_on_error_title">Εμφάνιση μηνυμάτων σφαλμάτων ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Εμφανίζεται μήνυμα στο κάτω μέρος της οθόνης αν προκύψει σφάλμα</string>
<string name="revanced_debug_toast_on_error_summary_off">Δεν εμφανίζεται μήνυμα στο κάτω μέρος της οθόνης αν προκύψει σφάλμα</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Η απενεργοποίηση των μηνυμάτων σφαλμάτων κρύβει όλες τις ειδοποιήσεις σφαλμάτων που αφορούν το ReVanced.
Δεν θα ειδοποιηθείτε για τυχόν απρόβλεπτα γεγονότα."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Κάρτες άλμπουμ</string>
@ -588,6 +588,10 @@ Second \"item\" text"</string>
<string name="revanced_hide_stop_ads_button_title">Κουμπί «Διακοπή διαφημίσεων»</string>
<string name="revanced_hide_stop_ads_button_summary_on">Κρυμμένο</string>
<string name="revanced_hide_stop_ads_button_summary_off">Εμφανίζεται</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Απόκρυψη σχολίων</string>
<string name="revanced_hide_comments_button_summary_on">Κρυμμένο</string>
<string name="revanced_hide_comments_button_summary_off">Εμφανίζεται</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Μενού «Αναφορά»</string>
@ -1243,8 +1247,9 @@ Second \"item\" text"</string>
Αν αργότερα απενεργοποιηθεί, συνιστάται η εκκαθάριση δεδομένων της εφαρμογής για την αποφυγή σφαλμάτων UI."</string>
<string name="revanced_spoof_app_version_target_title">Έκδοση παραποίησης της εφαρμογής</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Επαναφορά των παλιών εικονιδίων της οθόνης αναπαραγωγής Shorts</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Επαναφορά παλιών εικονιδίων γραμμής πλοήγησης</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Επαναφορά της μη συμπτυγμένης γραμμής ενεργειών βίντεο</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Επαναφορά των παλιών εικονιδίων της οθόνης αναπαραγωγής Shorts</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Επαναφορά παλιών εικονιδίων γραμμής πλοήγησης</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Αλλαγή αρχικής σελίδας</string>
@ -1558,12 +1563,15 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Πειραματικός πελάτης και μπορεί να σταματήσει να λειτουργεί ανά πάσα στιγμή</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Δεν υπάρχει ο κωδικοποιητής βίντεο AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">Τα βίντεο για παιδιά ενδέχεται να μην αναπαράγονται αν είστε αποσυνδεδεμένοι ή σε λειτουργία ανώνυμης περιήγησης</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">Ο εξαναγκασμός αρχικής γλώσσας ήχου δεν είναι διαθέσιμος</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Εμφάνιση στο μενού «Στατιστικά για σπασίκλες»</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Το πρόγραμμα πελάτη εμφανίζεται στο μενού «Στατιστικά για σπασίκλες»</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Το πρόγραμμα πελάτη δεν εμφανίζεται στο μενού «Στατιστικά για σπασίκλες»</string>
<string name="revanced_spoof_video_streams_language_title">Γλώσσα ροής ήχου</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Για να επιλέξετε μια συγκεκριμένη γλώσσα ήχου, απενεργοποιήστε το «Εξαναγκασμός αρχικής γλώσσας ήχου»</string>
<string name="revanced_spoof_video_streams_language_android_studio">Η επιλογή γλώσσας ροής δεν είναι διαθέσιμη με το Android Studio</string>
</patch>
</app>
<app id="music">
@ -1585,7 +1593,7 @@ Second \"item\" text"</string>
<string name="revanced_music_play_permanent_repeat_summary_off">Η μόνιμη επανάληψη είναι απενεργοποιημένη</string>
</patch>
<patch id="layout.castbutton.hideCastButton">
<string name="revanced_music_hide_cast_button_title">Απόκρυψη κουμπιού μετάδοσης</string>
<string name="revanced_music_hide_cast_button_title">Κουμπί μετάδοσης</string>
<string name="revanced_music_hide_cast_button_summary_on">Κρυμμένο</string>
<string name="revanced_music_hide_cast_button_summary_off">Εμφανίζεται</string>
</patch>
@ -1596,30 +1604,30 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.navigationbar.navigationBarPatch">
<string name="revanced_music_navigation_bar_screen_title">Γραμμή πλοήγησης</string>
<string name="revanced_music_navigation_bar_screen_summary">Απόκρυψη ή αλλαγή κουμπιών γραμμής πλοήγησης</string>
<string name="revanced_music_navigation_bar_screen_summary">Απόκρυψη ή αλλαγή κουμπιών της γραμμής πλοήγησης</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Απόκρυψη κουμπιού Αρχικής οθόνης</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Κουμπί «Αρχική»</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Κρυμμένο</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Εμφανίζεται</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Απόκρυψη κουμπιού Δειγμάτων</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Το κουμπί «Δείγματα» είναι κρυμμένο</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Το κουμπί «Δείγματα» εμφανίζεται</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Απόκρυψη δειγμάτων</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Κρυμμένο</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Εμφανίζεται</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Απόκρυψη κουμπιού Εξερεύνησης</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Το κουμπί «Εξερεύνηση» είναι κρυμμένο</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Το κουμπί «Εξερεύνηση» εμφανίζεται</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Απόκρυψη «Εξερεύνηση»</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Κρυμμένο</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Εμφανίζεται</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Απόκρυψη κουμπιού Βιβλιοθήκης</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Το κουμπί «Βιβλιοθήκη» είναι κρυμμένο</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Το κουμπί «Βιβλιοθήκη» εμφανίζεται</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Απόκρυψη «Βιβλιοθήκη»</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Κρυμμένο</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Εμφανίζεται</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Απόκρυψη κουμπιού «Αναβάθμιση»</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Το κουμπί «Αναβάθμιση» είναι κρυμμένο</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Το κουμπί «Αναβάθμιση» εμφανίζεται</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Απόκρυψη «Αναβάθμιση»</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Κρυμμένο</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Εμφανίζεται</string>
<string name="revanced_music_hide_navigation_bar_title">Γραμμή πλοήγησης</string>
<string name="revanced_music_hide_navigation_bar_summary_on">Η γραμμή πλοήγησης θα είναι κρυμμένη κατά την αναπαραγωγή Shorts</string>
<string name="revanced_music_hide_navigation_bar_summary_off">Η γραμμή πλοήγησης εμφανίζεται κατά την αναπαραγωγή Shorts</string>
<string name="revanced_music_hide_navigation_bar_summary_on">Κρυμμένη</string>
<string name="revanced_music_hide_navigation_bar_summary_off">Εμφανίζεται</string>
<string name="revanced_music_hide_navigation_bar_labels_title">Ονομασίες κουμπιών γραμμής πλοήγησης</string>
<string name="revanced_music_hide_navigation_bar_labels_summary_on">Κρυμμένες</string>
<string name="revanced_music_hide_navigation_bar_labels_summary_off">Εμφανίζονται</string>

View file

@ -107,6 +107,15 @@ La reproducción podría no funcionar"</string>
<string name="revanced_debug_title">Registro de depuración</string>
<string name="revanced_debug_summary_on">Los registros de depuración están habilitados</string>
<string name="revanced_debug_summary_off">Los registros de depuración están desactivados</string>
<string name="revanced_debug_stacktrace_title">Registrar stack traces</string>
<string name="revanced_debug_stacktrace_summary_on">Los registros de depuración incluyen stack trace</string>
<string name="revanced_debug_stacktrace_summary_off">Los registros de depuración no incluyen stack trace</string>
<string name="revanced_debug_toast_on_error_title">Mostrar aviso de error en ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Se mostrará un aviso si se produce un error</string>
<string name="revanced_debug_toast_on_error_summary_off">No se mostrará un aviso si se produce un error</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Desactivar los avisos de error oculta todas las notificaciones de error de ReVanced.
No se le notificará de ningún evento inesperado."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Exportar registros de depuración</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Copia los registros de depuración de ReVanced al portapapeles</string>
<string name="revanced_debug_logs_disabled">El registro de depuración está desactivado</string>
@ -151,15 +160,6 @@ La reproducción podría no funcionar"</string>
Esto puede ayudar a identificar componentes al crear filtros personalizados.
Sin embargo, si activas esto, también se registrarán algunos datos del usuario, como tu dirección IP."</string>
<string name="revanced_debug_stacktrace_title">Registrar stack traces</string>
<string name="revanced_debug_stacktrace_summary_on">Los registros de depuración incluyen stack trace</string>
<string name="revanced_debug_stacktrace_summary_off">Los registros de depuración no incluyen stack trace</string>
<string name="revanced_debug_toast_on_error_title">Mostrar aviso de error en ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Se mostrará un aviso si se produce un error</string>
<string name="revanced_debug_toast_on_error_summary_off">No se mostrará un aviso si se produce un error</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Desactivar los avisos de error oculta todas las notificaciones de error de ReVanced.
No se le notificará de ningún evento inesperado."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Ocultar tarjetas de álbum</string>
@ -586,6 +586,10 @@ Ajusta el volumen deslizando verticalmente en el lado derecho de la pantalla"</s
<string name="revanced_hide_stop_ads_button_title">Ocultar Detener anuncios</string>
<string name="revanced_hide_stop_ads_button_summary_on">El botón de detener anuncios está oculto</string>
<string name="revanced_hide_stop_ads_button_summary_off">El botón de detener anuncios está mostrado</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Ocultar comentarios</string>
<string name="revanced_hide_comments_button_summary_on">El botón de comentarios está oculto</string>
<string name="revanced_hide_comments_button_summary_off">El botón de comentarios es visible</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Ocultar informe</string>
@ -1233,8 +1237,9 @@ Esto cambiará la apariencia y las características de la aplicación, pero pued
Si se desactiva posteriormente, se recomienda borrar los datos de la aplicación para evitar errores en la interfaz de usuario."</string>
<string name="revanced_spoof_app_version_target_title">Versión objetiva de aplicación falsificada</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Restaurar iconos antiguos del reproductor de Shorts</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Restaurar iconos de navegación antiguos</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Restaurar barra de acciones de vídeo no colapsada</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Restaurar iconos antiguos del reproductor de Shorts</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Restaurar iconos de navegación antiguos</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Cambiar página de inicio</string>
@ -1550,12 +1555,15 @@ Habilitar esto puede desbloquear calidades de vídeo más altas"</string>
<string name="revanced_spoof_video_streams_about_experimental">• El cliente es experimental y puede dejar de funcionar en cualquier momento</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Sin códec de vídeo AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Es posible que los vídeos infantiles no se reproduzcan cuando se cierra la sesión o se está en modo incógnito</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Forzar audio original no está disponible</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Mostrar en Estadísticas para nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">El tipo de cliente se muestra en Estadísticas para nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">El cliente está oculto en Estadísticas para nerds</string>
<string name="revanced_spoof_video_streams_language_title">Idioma de la transmisión de audio</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Para seleccionar un idioma de audio específico, desactiva \"Forzar idioma de audio original\"</string>
<string name="revanced_spoof_video_streams_language_android_studio">La selección de idioma de transmisión no está disponible con Android Studio</string>
</patch>
</app>
<app id="music">
@ -1590,23 +1598,23 @@ Habilitar esto puede desbloquear calidades de vídeo más altas"</string>
<string name="revanced_music_navigation_bar_screen_title">Barra de navegación</string>
<string name="revanced_music_navigation_bar_screen_summary">Ocultar o cambiar los botones de la barra de navegación</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Ocultar el botón Inicio</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Ocultar pestaña \'Inicio\'</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">El botón Inicio está oculto</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">El botón Inicio es visible</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Ocultar el botón Muestras</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Ocultar muestras</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">El botón Muestras está oculto</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">El botón Muestras es visible</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Ocultar el botón Explorar</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Ocultar Explorar</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">El botón Explorar está oculto</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">El botón Explorar es visible</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Ocultar el botón Biblioteca</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Ocultar Biblioteca</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">El botón Biblioteca está oculto</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">El botón Biblioteca es visible</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Ocultar el botón Actualizar</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Ocultar Premium</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">El botón Actualizar está oculto</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">El botón Actualizar es visible</string>
<string name="revanced_music_hide_navigation_bar_title">Ocultar la barra de navegación</string>

View file

@ -107,6 +107,15 @@ Taasesitus ei pruugi töötada"</string>
<string name="revanced_debug_title">Veaotsingulogimine</string>
<string name="revanced_debug_summary_on">Veaotsingulogimine on lubatud</string>
<string name="revanced_debug_summary_off">Vea logid on keelatud</string>
<string name="revanced_debug_stacktrace_title">Logi stekira jäljed</string>
<string name="revanced_debug_stacktrace_summary_on">Silumispäevikud sisaldavad virna jäljendamise</string>
<string name="revanced_debug_stacktrace_summary_off">Silumispäevikud ei sisalda virna jäljendamise</string>
<string name="revanced_debug_toast_on_error_title">ReVanced veaga ilmumisel kuvag</string>
<string name="revanced_debug_toast_on_error_summary_on">Toast kuvatakse, kui ilmneb tõrge</string>
<string name="revanced_debug_toast_on_error_summary_off">Toast ei kuvata, kui ilmneb tõrge</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Vea teadete väljalülitamine peidab kõik ReVanced i veateadete märguanded.
Teid ei teavitata ühestki ootamatust sündmusest."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Ekspordi silumislogid</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Kopeerib ReVanced silumislogid lõikelauale</string>
<string name="revanced_debug_logs_disabled">Silumislogimine on keelatud</string>
@ -151,15 +160,6 @@ Taasesitus ei pruugi töötada"</string>
See võib aidata komponente tuvastada kohandatud filtrite loomisel.
Selle lubamine logib aga ka mõningaid kasutajaandmeid, näiteks teie IP-aadressi."</string>
<string name="revanced_debug_stacktrace_title">Logi stekira jäljed</string>
<string name="revanced_debug_stacktrace_summary_on">Silumispäevikud sisaldavad virna jäljendamise</string>
<string name="revanced_debug_stacktrace_summary_off">Silumispäevikud ei sisalda virna jäljendamise</string>
<string name="revanced_debug_toast_on_error_title">ReVanced veaga ilmumisel kuvag</string>
<string name="revanced_debug_toast_on_error_summary_on">Toast kuvatakse, kui ilmneb tõrge</string>
<string name="revanced_debug_toast_on_error_summary_off">Toast ei kuvata, kui ilmneb tõrge</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Vea teadete väljalülitamine peidab kõik ReVanced i veateadete märguanded.
Teid ei teavitata ühestki ootamatust sündmusest."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Peida albumikaardid</string>
@ -586,6 +586,10 @@ Helitugevuse reguleerimiseks pühkige ekraani paremal küljel vertikaalselt"</st
<string name="revanced_hide_stop_ads_button_title">Peida reklaamide peatamine</string>
<string name="revanced_hide_stop_ads_button_summary_on">Peata reklaamide nupp on peidetud</string>
<string name="revanced_hide_stop_ads_button_summary_off">Peata reklaamide nupp on nähtav</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Peida kommentaarid</string>
<string name="revanced_hide_comments_button_summary_on">Kommentaaride nupp on peidetud</string>
<string name="revanced_hide_comments_button_summary_off">Kommentaaride nupp on nähtav</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Peida Teata</string>
@ -1242,8 +1246,9 @@ See muudab rakenduse välimust ja funktsioone, kuid võivad esineda tundmatud k
Kui see hiljem välja lülitatakse, on soovitatav rakenduse andmed kustutada, et vältida kasutajaliidese vigu."</string>
<string name="revanced_spoof_app_version_target_title">Võltsitud rakenduse versiooni siht</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Taastage vanad Shortsi esitajaikoonid</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 Taasta vanad navigeerimisikoonid</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Taasta mittekokkuvarisenud video tegevusriba</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Taastage vanad Shortsi esitajaikoonid</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 Taasta vanad navigeerimisikoonid</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Muuda alguslehte</string>
@ -1559,12 +1564,15 @@ Selle lubamine võib avada kõrgema video kvaliteedi"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Eksperimentaalne klient ja võib igal ajal töötamast lakata</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Puuduv AV1 videokoodek</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Video lastele ei pruugi taasesitada, kui olete välja logitud või inkognito režiimis</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Sunni algne heli pole saadaval</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Kuva statistikas \"Nerdide jaoks\"</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Klienditüüp on statistikas \"Nerdide jaoks\" nähtav</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Klient on statistikas \"Nerdide jaoks\" peidetud</string>
<string name="revanced_spoof_video_streams_language_title">Helivoo keel</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Konkreetse helikeele valimiseks lülita välja \"Sunni algne helikeel\"</string>
<string name="revanced_spoof_video_streams_language_android_studio">Voogedastuse keelevalik ei ole Android Studioga saadaval</string>
</patch>
</app>
<app id="music">
@ -1599,23 +1607,23 @@ Selle lubamine võib avada kõrgema video kvaliteedi"</string>
<string name="revanced_music_navigation_bar_screen_title">Navigeerimisriba</string>
<string name="revanced_music_navigation_bar_screen_summary">Peida või muuda navigeerimisriba nuppe</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Peida Avalehe nupp</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Peida Avaleht</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Avalehe nupp on peidetud</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Avalehe nupp on nähtav</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Peida Näidiste nupp</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Peida Näidised</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Näidiste nupp on peidetud</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Näidiste nupp on nähtav</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Peida Avasta nupp</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Peida Avasta</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Avasta nupp on peidetud</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Avasta nupp on nähtav</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Peida Kogu nupp</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Peida Kogu</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Kogu nupp on peidetud</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Kogu nupp on nähtav</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Peida Uuenda nupp</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Peida Uuenda</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Uuenda nupp on peidetud</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Uuenda nupp on nähtav</string>
<string name="revanced_music_hide_navigation_bar_title">Peida navigeerimisriba</string>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -136,6 +136,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -293,6 +294,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -107,6 +107,15 @@ Toisto ei ehkä toimi"</string>
<string name="revanced_debug_title">Virheenkorjauksen kirjaaminen</string>
<string name="revanced_debug_summary_on">Virheenkorjauslokit ovat käytössä</string>
<string name="revanced_debug_summary_off">Virheenkorjauslokit eivät ole käytössä</string>
<string name="revanced_debug_stacktrace_title">Loki pinojäljet</string>
<string name="revanced_debug_stacktrace_summary_on">Vianetsintälokit sisältävät pinojäljet</string>
<string name="revanced_debug_stacktrace_summary_off">Vianetsintälokit eivät sisällä pinojälkiä</string>
<string name="revanced_debug_toast_on_error_title">Näytä ponnahdusilmoitus ReVanced-virheen tapahtuessa</string>
<string name="revanced_debug_toast_on_error_summary_on">Ponnahdusilmoitus näytetään virheen tapahtuessa</string>
<string name="revanced_debug_toast_on_error_summary_off">Ponnahdusilmoitusta ei näytetä virheen tapahtuessa</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Virheilmoitusten poistaminen käytöstä piilottaa kaikki ReVancedin virheilmoitukset.
Et saa ilmoituksia odottamattomista tapahtumista."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Vie virheenkorjauslokit</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Kopioi ReVancedin virheenkorjauslokit leikepöydälle</string>
<string name="revanced_debug_logs_disabled">Virheenkorjausloki ei ole käytössä</string>
@ -151,15 +160,6 @@ Toisto ei ehkä toimi"</string>
Tämä voi auttaa komponenttien tunnistamisessa, kun luot mukautettuja suodattimia.
Tämän käyttöönotto kirjaa myös joitakin käyttäjätietoja, kuten IP-osoitteesi."</string>
<string name="revanced_debug_stacktrace_title">Loki pinojäljet</string>
<string name="revanced_debug_stacktrace_summary_on">Vianetsintälokit sisältävät pinojäljet</string>
<string name="revanced_debug_stacktrace_summary_off">Vianetsintälokit eivät sisällä pinojälkiä</string>
<string name="revanced_debug_toast_on_error_title">Näytä ponnahdusilmoitus ReVanced-virheen tapahtuessa</string>
<string name="revanced_debug_toast_on_error_summary_on">Ponnahdusilmoitus näytetään virheen tapahtuessa</string>
<string name="revanced_debug_toast_on_error_summary_off">Ponnahdusilmoitusta ei näytetä virheen tapahtuessa</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Virheilmoitusten poistaminen käytöstä piilottaa kaikki ReVancedin virheilmoitukset.
Et saa ilmoituksia odottamattomista tapahtumista."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Piilota albumikortit</string>
@ -586,6 +586,10 @@ Säädä äänenvoimakkuutta pyyhkäisemällä pystysuoraan näytön oikealta pu
<string name="revanced_hide_stop_ads_button_title">Piilota \"Estä mainokset\"</string>
<string name="revanced_hide_stop_ads_button_summary_on">Estä mainokset -painike on piilotettu</string>
<string name="revanced_hide_stop_ads_button_summary_off">Estä mainokset -painike näytetään</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Piilota kommentit</string>
<string name="revanced_hide_comments_button_summary_on">Kommenttipainike on piilotettu</string>
<string name="revanced_hide_comments_button_summary_off">Kommenttipainike näytetään</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Piilota Tee ilmoitus</string>
@ -1242,8 +1246,9 @@ Tämä muuttaa sovelluksen ulkoasua ja ominaisuuksia, mutta tuntemattomia sivuva
Jos tämä poistetaan myöhemmin käytöstä, on suositeltavaa tyhjentää sovelluksen tiedot käyttöliittymävirheiden välttämiseksi."</string>
<string name="revanced_spoof_app_version_target_title">Naamioitava kohdeversio</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Palauta vanhat Shorts-soittimen kuvakkeet</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Palauta vanhat navigointikuvakkeet</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Palauta laajennettu videon toimintopalkki</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Palauta vanhat Shorts-soittimen kuvakkeet</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Palauta vanhat navigointikuvakkeet</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Vaihda aloitussivua</string>
@ -1559,12 +1564,15 @@ Tämä voi avata korkealaatuisemmat videot"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Kokeellinen asiakasohjelma, joka saattaa lakata toimimasta milloin tahansa</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Ei AV1-videokoodekkia</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Lasten videot eivät ehkä toistu, kun olet kirjautunut ulos tai incognito-tilassa</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Pakota alkuperäinen ääni ei ole käytettävissä</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Näytä teknisissä tiedoissa</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Asiakastyyppi näytetään teknisissä tiedoissa</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Asiakastyyppi on piilotettu teknisissä tiedoissa</string>
<string name="revanced_spoof_video_streams_language_title">Äänivirran kieli</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Valitaksesi tietyn äänikielen, poista käytöstä \'Pakota alkuperäinen äänikieli\'</string>
<string name="revanced_spoof_video_streams_language_android_studio">Striimin kielivalinta ei ole käytettävissä Android Studion kanssa</string>
</patch>
</app>
<app id="music">
@ -1599,23 +1607,23 @@ Tämä voi avata korkealaatuisemmat videot"</string>
<string name="revanced_music_navigation_bar_screen_title">Navigointipalkki</string>
<string name="revanced_music_navigation_bar_screen_summary">Piilota tai muuta navigointipalkin painikkeita</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Piilota Etusivu-painike</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Piilota Koti</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Etusivu-painike on piilotettu</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Etusivu-painike näytetään</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Piilota Näytteet-painike</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Piilota Näytteet</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Näytteet-painike on piilotettu</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Näytteet-painike näytetään</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Piilota Tutustu-painike</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Piilota Tutki</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Tutustu-painike on piilotettu</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Tutustu-painike näytetään</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Piilota Kirjasto-painike</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Piilota kirjasto</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Kirjasto-painike on piilotettu</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Kirjasto-painike näytetään</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Piilota Päivitä-painike</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Piilota Päivitä</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Päivitä-painike on piilotettu</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Päivitä-painike näytetään</string>
<string name="revanced_music_hide_navigation_bar_title">Piilota navigointipalkki</string>

View file

@ -107,6 +107,15 @@ Maaaring hindi gumana ang pag-playback"</string>
<string name="revanced_debug_title">Pag-log sa pag-debug</string>
<string name="revanced_debug_summary_on">Ang mga debug log ay pinagana</string>
<string name="revanced_debug_summary_off">Ang mga debug log ay hindi pinagana</string>
<string name="revanced_debug_stacktrace_title">Mga bakas ng stack ng log</string>
<string name="revanced_debug_stacktrace_summary_on">Kasama sa mga debug log ang stack trace</string>
<string name="revanced_debug_stacktrace_summary_off">Hindi kasama sa mga debug log ang stack trace</string>
<string name="revanced_debug_toast_on_error_title">Ipakita ang toast sa ReVanced error</string>
<string name="revanced_debug_toast_on_error_summary_on">Ipinapakita ang Toast kung may naganap na error</string>
<string name="revanced_debug_toast_on_error_summary_off">Hindi ipinapakita ang Toast kung may naganap na error</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Ang pag-off ng mga toast ng error ay nagtatago ng lahat ng mga abiso ng error ng ReVanced.
Hindi ka aabisuhan ng anumang hindi inaasahang mga kaganapan."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">I-export ang mga debug log</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Kinokopya ang mga ReVanced debug log sa clipboard</string>
<string name="revanced_debug_logs_disabled">Hindi pinagana ang pag-log ng debug</string>
@ -151,15 +160,6 @@ Maaaring hindi gumana ang pag-playback"</string>
Maaaring makatulong ito na matukoy ang mga bahagi kapag lumilikha ng mga custom na filter.
Gayunpaman, ang pagpapagana nito ay magtatala rin ng ilang data ng user gaya ng iyong IP address."</string>
<string name="revanced_debug_stacktrace_title">Mga bakas ng stack ng log</string>
<string name="revanced_debug_stacktrace_summary_on">Kasama sa mga debug log ang stack trace</string>
<string name="revanced_debug_stacktrace_summary_off">Hindi kasama sa mga debug log ang stack trace</string>
<string name="revanced_debug_toast_on_error_title">Ipakita ang toast sa ReVanced error</string>
<string name="revanced_debug_toast_on_error_summary_on">Ipinapakita ang Toast kung may naganap na error</string>
<string name="revanced_debug_toast_on_error_summary_off">Hindi ipinapakita ang Toast kung may naganap na error</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Ang pag-off ng mga toast ng error ay nagtatago ng lahat ng mga abiso ng error ng ReVanced.
Hindi ka aabisuhan ng anumang hindi inaasahang mga kaganapan."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Itago ang mga album card</string>
@ -586,6 +586,10 @@ Ayusin ang volume sa pamamagitan ng pag-swipe nang patayo sa kanang bahagi ng sc
<string name="revanced_hide_stop_ads_button_title">Itago ang Ihinto ang mga ad</string>
<string name="revanced_hide_stop_ads_button_summary_on">Nakatago ang button ng pagtigil sa mga ad</string>
<string name="revanced_hide_stop_ads_button_summary_off">Napakita ang button ng pagtigil sa mga ad</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Itago ang mga Komento</string>
<string name="revanced_hide_comments_button_summary_on">Nakatago ang pindutan ng Mga Komento</string>
<string name="revanced_hide_comments_button_summary_off">Ipinapakita ang pindutan ng Mga Komento</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Itago ang Ulat</string>
@ -1240,8 +1244,9 @@ Ito ay magbabago sa hitsura at mga tampok ng app, ngunit maaaring mangyari ang m
Kung mamaya ay patayin, inirerekumenda na i-clear ang data ng app upang maiwasan ang mga bug ng UI."</string>
<string name="revanced_spoof_app_version_target_title">Target na bersyon ng Spoof app</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Ibalik ang mga lumang icon ng Shorts player</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Ibalik ang mga lumang icon ng navigation</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Ibalik ang hindi nakatiklop na video action bar</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Ibalik ang mga lumang icon ng Shorts player</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Ibalik ang mga lumang icon ng navigation</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Baguhin ang panimulang pahina</string>
@ -1557,12 +1562,15 @@ Ang pagpapagana nito ay maaaring magbukas ng mas mataas na kalidad ng video"</st
<string name="revanced_spoof_video_streams_about_experimental">• Pang-eksperimentong kliyente at maaaring huminto sa paggana anumang oras</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Walang AV1 video codec</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Mga video ng mga bata ay maaaring hindi ma-play kapag naka-log out o nasa incognito mode</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Ang Pilitin ang orihinal na audio ay hindi magagamit</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Ipakita sa Mga Istatistika para sa mga nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Ipinapakita ang uri ng kliyente sa Mga Istatistika para sa mga nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Nakatago ang kliyente sa Mga Istatistika para sa mga nerds</string>
<string name="revanced_spoof_video_streams_language_title">Wika ng audio stream</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Upang pumili ng isang partikular na wika ng audio, i-off ang \'Puwersahin ang orihinal na wika ng audio\'</string>
<string name="revanced_spoof_video_streams_language_android_studio">Hindi available ang pagpili ng wika ng stream sa Android Studio</string>
</patch>
</app>
<app id="music">
@ -1597,23 +1605,23 @@ Ang pagpapagana nito ay maaaring magbukas ng mas mataas na kalidad ng video"</st
<string name="revanced_music_navigation_bar_screen_title">Navigation bar</string>
<string name="revanced_music_navigation_bar_screen_summary">Itago o baguhin ang mga pindutan ng navigation bar</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Itago ang pindutan ng Home</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Itago ang Tahanan</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Nakatago ang pindutan ng Home</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Nakalabas ang pindutan ng Home</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Itago ang pindutan ng Samples</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Itago ang Mga Sample</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Nakatago ang pindutan ng Samples</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Nakalabas ang pindutan ng Samples</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Itago ang pindutan ng Explore</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Itago ang Galugarin</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Nakatago ang pindutan ng Explore</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Nakalabas ang pindutan ng Explore</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Itago ang pindutan ng Library</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Itago ang Aklatan</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Nakatago ang pindutan ng Library</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Nakalabas ang pindutan ng Library</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Itago ang pindutan ng Upgrade</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Itago ang I-upgrade</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Nakatago ang pindutan ng Upgrade</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Nakalabas ang pindutan ng Upgrade</string>
<string name="revanced_music_hide_navigation_bar_title">Itago ang navigation bar</string>

View file

@ -107,6 +107,15 @@ Il est possible que la lecture ne fonctionne pas"</string>
<string name="revanced_debug_title">Journalisation de débogage</string>
<string name="revanced_debug_summary_on">Les journaux de débogage sont activés</string>
<string name="revanced_debug_summary_off">Les journaux de débogage sont désactivés</string>
<string name="revanced_debug_stacktrace_title">Journaliser les stack traces</string>
<string name="revanced_debug_stacktrace_summary_on">Les journaux de débogage incluent les stack traces</string>
<string name="revanced_debug_stacktrace_summary_off">Les journaux de débogage n\'incluent pas les stack traces</string>
<string name="revanced_debug_toast_on_error_title">Afficher un message toast en cas d\'erreur ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Un message toast est affiché en cas d\'erreur</string>
<string name="revanced_debug_toast_on_error_summary_off">Aucun message toast n\'est affiché en cas d\'erreur</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"La désactivation des messages toasts d'erreur masque toutes les notifications d'erreur ReVanced.
Vous ne serez pas informé des événements inattendus."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Exporter les journaux de débogage</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Copie les journaux de débogage ReVanced dans le presse-papiers</string>
<string name="revanced_debug_logs_disabled">La journalisation de débogage est désactivée</string>
@ -151,15 +160,6 @@ Il est possible que la lecture ne fonctionne pas"</string>
Cela peut aider à identifier les composants lors de la création de filtres personnalisés.
Toutefois, l'activation de cette option entraînera également l'enregistrement de certaines données utilisateur, telles que votre adresse IP."</string>
<string name="revanced_debug_stacktrace_title">Journaliser les stack traces</string>
<string name="revanced_debug_stacktrace_summary_on">Les journaux de débogage incluent les stack traces</string>
<string name="revanced_debug_stacktrace_summary_off">Les journaux de débogage n\'incluent pas les stack traces</string>
<string name="revanced_debug_toast_on_error_title">Afficher un message toast en cas d\'erreur ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Un message toast est affiché en cas d\'erreur</string>
<string name="revanced_debug_toast_on_error_summary_off">Aucun message toast n\'est affiché en cas d\'erreur</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"La désactivation des messages toasts d'erreur masque toutes les notifications d'erreur ReVanced.
Vous ne serez pas informé des événements inattendus."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Masquer les fiches d\'album</string>
@ -586,6 +586,10 @@ Réglez le volume en balayant verticalement sur le côté droit de l'écran"</st
<string name="revanced_hide_stop_ads_button_title">Masquer \"Zéro annonce\"</string>
<string name="revanced_hide_stop_ads_button_summary_on">Le bouton Zéro annonce est masqué</string>
<string name="revanced_hide_stop_ads_button_summary_off">Le bouton Zéro annonce est affiché</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Masquer les commentaires</string>
<string name="revanced_hide_comments_button_summary_on">Le bouton Commentaires est masqué</string>
<string name="revanced_hide_comments_button_summary_off">Le bouton Commentaires est affiché</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Masquer \"Signaler\"</string>
@ -1243,8 +1247,9 @@ Cela modifiera l'apparence et les fonctionnalités de l'application, mais il peu
Si désactivé ultérieurement, il est recommandé d'effacer les données de l'application pour éviter des bugs d'interface."</string>
<string name="revanced_spoof_app_version_target_title">Version cible</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Restaurer les anciennes icônes du lecteur Shorts </string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Restaurer les anciennes icônes de navigation</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Restaurer la barre d\'action vidéo non réduite</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Restaurer les anciennes icônes du lecteur Shorts </string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Restaurer les anciennes icônes de navigation</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Modifier la page de démarrage</string>
@ -1560,12 +1565,15 @@ Activer cette option peut déverrouiller des qualités vidéo supérieures"</str
<string name="revanced_spoof_video_streams_about_experimental">• Client expérimental, peut cesser de fonctionner à tout moment</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Codec vidéo AV1 indisponible</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• La lecture des vidéos pour enfants peut ne pas fonctionner lorsque vous êtes déconnecté ou en mode navigation privée</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Forcer l\'audio original n\'est pas disponible</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Afficher dans les Statistiques avancées</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Le type de client est affiché dans les Statistiques avancées</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Le client est caché dans les Statistiques avancées</string>
<string name="revanced_spoof_video_streams_language_title">Langue du flux audio</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Pour sélectionner une langue audio spécifique, désactivez \"Forcer la langue audio d\'origine\"</string>
<string name="revanced_spoof_video_streams_language_android_studio">La sélection de la langue du flux n\'est pas disponible avec Android Studio</string>
</patch>
</app>
<app id="music">
@ -1600,23 +1608,23 @@ Activer cette option peut déverrouiller des qualités vidéo supérieures"</str
<string name="revanced_music_navigation_bar_screen_title">Barre de navigation</string>
<string name="revanced_music_navigation_bar_screen_summary">Masquer ou modifier les boutons de la barre de navigation</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Masquer le bouton Accueil</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Masquer Accueil</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Le bouton Accueil est masqué</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Le bouton Accueil est affiché</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Masquer le bouton Extraits</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Masquer Extraits</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Le bouton Extraits est masqué</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Le bouton Extraits est affiché</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Masquer le bouton Explorer</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Masquer Explorer</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Le bouton Explorer est masqué</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Le bouton Explorer est affiché</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Masquer le bouton Bibliothèque</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Masquer Bibliothèque</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Le bouton Bibliothèque est masqué</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Le bouton Bibliothèque est affiché</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Masquer le bouton S\'abonner</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Masquer Premium</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Le bouton S\'abonner est masqué</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Le bouton S\'abonner est affiché</string>
<string name="revanced_music_hide_navigation_bar_title">Masquer la barre de navigation</string>

View file

@ -107,6 +107,15 @@ Seans nach n-oibreoidh an t-athsheinm"</string>
<string name="revanced_debug_title">Dífhabhtú logáil</string>
<string name="revanced_debug_summary_on">Tá logaí dífhabhtaithe cumasaithe</string>
<string name="revanced_debug_summary_off">Tá logaí dífhabhtaithe díchumasaithe</string>
<string name="revanced_debug_stacktrace_title">Rianta cruach logála</string>
<string name="revanced_debug_stacktrace_summary_on">Cuimsíonn logaí dífhabhtaithe rian cruach</string>
<string name="revanced_debug_stacktrace_summary_off">Ní chuimsíonn logaí dífhabhtaithe rian cruach</string>
<string name="revanced_debug_toast_on_error_title">Taispeáin tósta ar earráid ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Taispeántar tósta má tharlaíonn earráid</string>
<string name="revanced_debug_toast_on_error_summary_off">Ní thaispeántar tósta má tharlaíonn earráid</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Má mhúchtar tóstaí earráide, folaítear gach fógra earráide ReVanced.
Ní chuirfear ar an eolas thú faoi aon imeachtaí gan choinne."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Easpórtáil logaí dífhabhtaithe</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Cóipeálann sé logaí dífhabhtaithe ReVanced chuig an gearrthaisce</string>
<string name="revanced_debug_logs_disabled">Tá logáil dífhabhtaithe díchumasaithe</string>
@ -151,15 +160,6 @@ Seans nach n-oibreoidh an t-athsheinm"</string>
Is féidir leis seo cabhrú le comhpháirteanna a aithint agus scagairí saincheaptha á gcruthú.
Mar sin féin, logálfaidh sé seo roinnt sonraí úsáideora freisin, mar shampla do sheoladh IP."</string>
<string name="revanced_debug_stacktrace_title">Rianta cruach logála</string>
<string name="revanced_debug_stacktrace_summary_on">Cuimsíonn logaí dífhabhtaithe rian cruach</string>
<string name="revanced_debug_stacktrace_summary_off">Ní chuimsíonn logaí dífhabhtaithe rian cruach</string>
<string name="revanced_debug_toast_on_error_title">Taispeáin tósta ar earráid ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Taispeántar tósta má tharlaíonn earráid</string>
<string name="revanced_debug_toast_on_error_summary_off">Ní thaispeántar tósta má tharlaíonn earráid</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Má mhúchtar tóstaí earráide, folaítear gach fógra earráide ReVanced.
Ní chuirfear ar an eolas thú faoi aon imeachtaí gan choinne."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Folaigh cártaí albam</string>
@ -586,6 +586,10 @@ Coigeartaigh an toirt trí haisceartán go hingearach ar thaobh deas an scáile
<string name="revanced_hide_stop_ads_button_title">Folaigh Stad fógraí</string>
<string name="revanced_hide_stop_ads_button_summary_on">Tá cnaipe stad fógraí i bhfolach</string>
<string name="revanced_hide_stop_ads_button_summary_off">Tá cnaipe stad fógraí taispeánta</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Folaigh Tuairimí</string>
<string name="revanced_hide_comments_button_summary_on">Tá cnaipe na dTuairimí folaithe</string>
<string name="revanced_hide_comments_button_summary_off">Tá cnaipe na dTuairimí taispeánta</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Folaigh Tuairisc</string>
@ -1242,8 +1246,9 @@ Athróidh sé seo cuma agus gnéithe an aip, ach d'fhéadfadh fo-iarsmaí anaith
Má dhiúltaítear é níos déanaí, moltar sonraí an aip a ghlanadh chun buganna UI a chosc."</string>
<string name="revanced_spoof_app_version_target_title">Sprioc leagan aip spoof</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Athchóirigh sean-deilbhíní imreoir Shorts</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Athchóiriú Sean Icóin Treorach</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Cuir an barra gníomhaíochta físe neamhchomhbhrúite ar ais</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Athchóirigh sean-deilbhíní imreoir Shorts</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Athchóiriú Sean Icóin Treorach</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Athraigh an leathanach tosaigh</string>
@ -1559,12 +1564,15 @@ Is féidir le seo caighdeáin físeáin níos airde a dhíghlasáil"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Cliant turgnamhach é seo agus féadfaidh sé stop a chur ag obair ag am ar bith</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Níl aon chóidéir físe AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Videos faoi phaistí uaireanta nach imreoidh nuair a bhíonn tú logáilte amach nó i mod incognito</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Níl Éigean fuaime bunaidh ar fáil</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Taispeáin i Staitisticí do nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Taispeántar cineál an chliaint i Staitisticí do nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Tá an cliant curtha i bhfolach i Staitisticí do nerds</string>
<string name="revanced_spoof_video_streams_language_title">Teanga an tsrutha fuaime</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Chun teanga fuaime shonrach a roghnú, múch \'Cuir iallach ar bhunteanga fuaime\'</string>
<string name="revanced_spoof_video_streams_language_android_studio">Níl roghnú theanga an tsrutha ar fáil le Android Studio</string>
</patch>
</app>
<app id="music">
@ -1599,23 +1607,23 @@ Is féidir le seo caighdeáin físeáin níos airde a dhíghlasáil"</string>
<string name="revanced_music_navigation_bar_screen_title">Barra nascleanúna</string>
<string name="revanced_music_navigation_bar_screen_summary">Folaigh nó athraigh cnaipí an bharra nascleanúna</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Folaigh cnaipe Baile</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Folaigh Baile</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Tá cnaipe Baile folaithe</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Tá cnaipe Baile taispeánta</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Folaigh cnaipe Samplaí</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Folaigh Samplaí</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Tá cnaipe Samplaí folaithe</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Tá cnaipe Samplaí taispeánta</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Folaigh cnaipe Fionnachtana</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Folaigh Scrúdaigh</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Tá cnaipe Fionnachtana folaithe</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Tá cnaipe Fionnachtana taispeánta</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Folaigh cnaipe Leabharlann</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Folaigh Leabharlann</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Tá cnaipe Leabharlann folaithe</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Tá cnaipe Leabharlann taispeánta</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Folaigh cnaipe Uasghrádú</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Folaigh Uasghrádaigh</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Tá cnaipe Uasghrádú folaithe</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Tá cnaipe Uasghrádú taispeánta</string>
<string name="revanced_music_hide_navigation_bar_title">Folaigh barra nascleanúna</string>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -31,6 +31,8 @@ Second \"item\" text"</string>
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<string name="revanced_spoof_video_streams_screen_summary">प्लेबैक समस्याओं को रोकने के लिए क्लाइंट वीडियो स्ट्रीम को स्पूफ करें</string>
<string name="revanced_spoof_video_streams_screen_summary">प्लेबैक समस्याओं को रोकने के लिए क्लाइंट वीडियो स्ट्रीम को स्पूफ करें</string>
</patch>
<patch id="misc.debugging.enableDebuggingPatch">
</patch>
@ -89,6 +91,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +246,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -21,6 +21,7 @@ Second \"item\" text"</string>
<resources>
<app id="shared">
<patch id="misc.checks.checkEnvironmentPatch">
<string name="revanced_check_environment_failed_title">Provjere nisu uspjele</string>
</patch>
<patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. -->
@ -89,6 +90,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +245,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -107,6 +107,15 @@ A lejátszás nem működhet"</string>
<string name="revanced_debug_title">Hibakeresési naplózás</string>
<string name="revanced_debug_summary_on">A hibakeresési naplók engedélyezve vannak</string>
<string name="revanced_debug_summary_off">A hibakeresési naplók le vannak tiltva</string>
<string name="revanced_debug_stacktrace_title">Naplóverem nyomai</string>
<string name="revanced_debug_stacktrace_summary_on">A hibakeresési naplók tartalmazzák a verem nyomkövetését</string>
<string name="revanced_debug_stacktrace_summary_off">A hibakeresési naplók nem tartalmazzák a verem nyomkövetését</string>
<string name="revanced_debug_toast_on_error_title">Üzenet megjelenítése ReVanced hiba esetén</string>
<string name="revanced_debug_toast_on_error_summary_on">A \"toast\" üzenet jelenik meg, ha hiba történik</string>
<string name="revanced_debug_toast_on_error_summary_off">Nem jelenik meg \"toast\" üzenet, ha hiba történik</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"A hibaüzenetek kikapcsolása elrejti az összes ReVanced hibaértesítést.
Nem fog értesülni semmilyen váratlan eseményről."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Hibakeresési naplók exportálása</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">A ReVanced hibakeresési naplóit a vágólapra másolja</string>
<string name="revanced_debug_logs_disabled">A hibakeresési naplózás ki van kapcsolva</string>
@ -151,15 +160,6 @@ A lejátszás nem működhet"</string>
Ez segíthet azonosítani az összetevőket egyedi szűrők létrehozásakor.
Ez a funkció azonban néhány felhasználói adatot is naplóz, például az IP-címét."</string>
<string name="revanced_debug_stacktrace_title">Naplóverem nyomai</string>
<string name="revanced_debug_stacktrace_summary_on">A hibakeresési naplók tartalmazzák a verem nyomkövetését</string>
<string name="revanced_debug_stacktrace_summary_off">A hibakeresési naplók nem tartalmazzák a verem nyomkövetését</string>
<string name="revanced_debug_toast_on_error_title">Üzenet megjelenítése ReVanced hiba esetén</string>
<string name="revanced_debug_toast_on_error_summary_on">A \"toast\" üzenet jelenik meg, ha hiba történik</string>
<string name="revanced_debug_toast_on_error_summary_off">Nem jelenik meg \"toast\" üzenet, ha hiba történik</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"A hibaüzenetek kikapcsolása elrejti az összes ReVanced hibaértesítést.
Nem fog értesülni semmilyen váratlan eseményről."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Album kártyák elrejtése</string>
@ -586,6 +586,10 @@ A hangerő a képernyő jobb oldalán függőlegesen húzva állítható be"</st
<string name="revanced_hide_stop_ads_button_title">Hirdetések leállítása elrejtése</string>
<string name="revanced_hide_stop_ads_button_summary_on">A hirdetésleállítás gomb rejtett</string>
<string name="revanced_hide_stop_ads_button_summary_off">A hirdetésleállítás gomb látható</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Hozzászólások elrejtése</string>
<string name="revanced_hide_comments_button_summary_on">A hozzászólások gomb rejtve van</string>
<string name="revanced_hide_comments_button_summary_off">A hozzászólások gomb látható</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Bejelentés elrejtése</string>
@ -1241,8 +1245,9 @@ Ez megváltoztatja az alkalmazás megjelenését és funkcióit, de előfordulha
Ha később kikapcsolja, akkor ajánlott az alkalmazás adatait törölni, hogy megakadályozza a felhasználói felület hibáit."</string>
<string name="revanced_spoof_app_version_target_title">Hamisított alkalmazásverzió célja</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - A régi Shorts lejátszó ikonok visszaállítása</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Állítsa vissza a régi navigációs ikonokat</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Nem összecsukott videó műveletsáv visszaállítása</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - A régi Shorts lejátszó ikonok visszaállítása</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Állítsa vissza a régi navigációs ikonokat</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Kezdőlap módosítása</string>
@ -1556,12 +1561,15 @@ Ez a beállítás lehetővé teszi a magasabb videóminőségek feloldását"</s
<string name="revanced_spoof_video_streams_about_experimental">• Kísérleti kliens, és bármikor leállhat</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Nincs AV1 videokodek</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• A gyermekeknek szóló videók nem játszódnak le, ha a felhasználó kijelentkezett, vagy inkognitómódban van.</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Eredeti hang kényszerítése nem érhető el</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Megjelenítés a Statisztikákban</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">A kliens típusa a Statisztikákban látható</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">A kliens el van rejtve a Statisztikákban</string>
<string name="revanced_spoof_video_streams_language_title">Hangfolyam nyelve</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Egy adott hangsáv nyelv kiválasztásához kapcsold ki az \"Eredeti hangsáv nyelv kikényszerítése\" opciót</string>
<string name="revanced_spoof_video_streams_language_android_studio">Az Android Studio-val nem érhető el a stream nyelvének kiválasztása</string>
</patch>
</app>
<app id="music">
@ -1596,23 +1604,23 @@ Ez a beállítás lehetővé teszi a magasabb videóminőségek feloldását"</s
<string name="revanced_music_navigation_bar_screen_title">Navigációs sáv</string>
<string name="revanced_music_navigation_bar_screen_summary">Navigációs sáv gombjainak elrejtése vagy módosítása</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Kezdőlap gomb elrejtése</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Főoldal elrejtése</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">A Kezdőlap gomb elrejtve</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">A Kezdőlap gomb látható</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Minták gomb elrejtése</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Minták elrejtése</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">A Minták gomb elrejtve</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">A Minták gomb látható</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Felfedezés gomb elrejtése</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Felfedezés elrejtése</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">A Felfedezés gomb elrejtve</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">A Felfedezés gomb látható</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Könyvtár gomb elrejtése</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Könyvtár elrejtése</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">A Könyvtár gomb elrejtve</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">A Könyvtár gomb látható</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Frissítés gomb elrejtése</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Frissítés elrejtése</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">A Frissítés gomb elrejtve</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">A Frissítés gomb látható</string>
<string name="revanced_music_hide_navigation_bar_title">Navigációs sáv elrejtése</string>

View file

@ -107,6 +107,15 @@ MicroG-ի համար մարտկոցի օպտիմալացումը անջատել
<string name="revanced_debug_title">Առաջնորդման մատնանշում</string>
<string name="revanced_debug_summary_on">Մարմնացման առաջնորդման մատնանշումները ակտիվացված են</string>
<string name="revanced_debug_summary_off">Մարմնացման առաջնորդման մատնանշումները անջատված են</string>
<string name="revanced_debug_stacktrace_title">Մուտքագրել կուտակային կետերի հետքեր</string>
<string name="revanced_debug_stacktrace_summary_on">Մարմնացման առաջնորդման մատնանշումները պարունակում են կուտակային կետի հետք</string>
<string name="revanced_debug_stacktrace_summary_off">Մարմնացման առաջնորդման մատնանշումները չեն պարունակում կուտակային կետի հետք</string>
<string name="revanced_debug_toast_on_error_title">Ցույց տալ toast ReVanced սխալի դեպքում</string>
<string name="revanced_debug_toast_on_error_summary_on">\"Toast\"-ը ցուցադրվում է, եթե սխալ է առաջանում</string>
<string name="revanced_debug_toast_on_error_summary_off">\"Toast\"-ը չի ցուցադրվում, եթե սխալ է առաջանում</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Սխալների տոաստի անջատումը թաքցնում է ReVanced-ի բոլոր սխալների ծանուցումները։
Դուք չեք ստանա ան予期した出来事ի մասին ծանուցում։"</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Արտահանել վրեժխնդրության կարգաբերման մատյանները</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Պատճենում է ReVanced-ի կարգաբերման մատյանները սեղմատախտակին</string>
<string name="revanced_debug_logs_disabled">Վրեժխնդրության մատյանների գրանցումն անջատված է</string>
@ -151,15 +160,6 @@ MicroG-ի համար մարտկոցի օպտիմալացումը անջատել
Սա կարող է օգնել բացահայտել բաղադրիչները՝ հատուկ զտիչներ ստեղծելիս։
Այնուամենայնիվ, սա միացնելը կգրանցի նաև օգտատիրոջ որոշ տվյալներ, ինչպիսիք են ձեր IP հասցեն:"</string>
<string name="revanced_debug_stacktrace_title">Մուտքագրել կուտակային կետերի հետքեր</string>
<string name="revanced_debug_stacktrace_summary_on">Մարմնացման առաջնորդման մատնանշումները պարունակում են կուտակային կետի հետք</string>
<string name="revanced_debug_stacktrace_summary_off">Մարմնացման առաջնորդման մատնանշումները չեն պարունակում կուտակային կետի հետք</string>
<string name="revanced_debug_toast_on_error_title">Ցույց տալ toast ReVanced սխալի դեպքում</string>
<string name="revanced_debug_toast_on_error_summary_on">\"Toast\"-ը ցուցադրվում է, եթե սխալ է առաջանում</string>
<string name="revanced_debug_toast_on_error_summary_off">\"Toast\"-ը չի ցուցադրվում, եթե սխալ է առաջանում</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Սխալների տոաստի անջատումը թաքցնում է ReVanced-ի բոլոր սխալների ծանուցումները։
Դուք չեք ստանա ան予期した出来事ի մասին ծանուցում։"</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Թաքցնել ալբոմի քարտերը</string>
@ -586,6 +586,10 @@ MicroG-ի համար մարտկոցի օպտիմալացումը անջատել
<string name="revanced_hide_stop_ads_button_title">Թաքցնել \"Դադարեցնել գովազդները\"</string>
<string name="revanced_hide_stop_ads_button_summary_on">Գովազդները դադարեցնելու կոճակը թաքցված է</string>
<string name="revanced_hide_stop_ads_button_summary_off">Գովազդները դադարեցնելու կոճակը ցուցադրված է</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Թաքցնել մեկնաբանությունները</string>
<string name="revanced_hide_comments_button_summary_on">Մեկնաբանությունների կոճակը թաքնված է</string>
<string name="revanced_hide_comments_button_summary_off">Մեկնաբանությունների կոճակը ցուցադրված է</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Թաքցնել Report</string>
@ -1243,8 +1247,9 @@ Seekbar thumbnails-ները կօգտագործեն նույն որակը, ինչ
Եթե հետագայում անջատվի, խորհուրդ է տրվում մաքրել հավելվածի տվյալները՝ UI սխալներից խուսափելու համար։"</string>
<string name="revanced_spoof_app_version_target_title">Spoof-ի կիրառության տարբերակի նպատակ</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Վերականգնել հին Shorts պլեյերի պատկերակները</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Վերականգնել հին նավիգացիոն պատկերակները</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Վերականգնել չծալված տեսանյութի գործողությունների տողը</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Վերականգնել հին Shorts պլեյերի պատկերակները</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Վերականգնել հին նավիգացիոն պատկերակները</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Փոխել մեկնարկային էջը</string>
@ -1560,12 +1565,15 @@ Mini-player-ը կարող է գրավվել էկրանից դուրս՝ դեպի
<string name="revanced_spoof_video_streams_about_experimental">• Փորձնական հաճախորդ է և կարող է ցանկացած պահի դադարել աշխատել</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Հեռացված բոլոր AV1 վիդեո կոդեկները</string>
<string name="revanced_spoof_video_streams_about_kids_videos">Երեխաների տեսանյութերը կարող են չհամապատասխանել հետևյալ պահանջներին՝ եթե արտոնագրման խախտումներ կան։</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Բնօրինակ ձայնի պարտադրումը հասանելի չէ</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Ցուցադրել վիճակագրության ակնոցներում</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Հաճախորդի տեսակը ցուցադրվում է վիճակագրության ակնոցներում</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Հաճախորդը թաքնված է վիճակագրության ակնոցներում</string>
<string name="revanced_spoof_video_streams_language_title">Ձայնային հոսքի լեզուն</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Որոշակի ձայնային լեզու ընտրելու համար անջատեք \'Պարտադրել բնօրինակ ձայնային լեզուն\'</string>
<string name="revanced_spoof_video_streams_language_android_studio">Հոսքի լեզվի ընտրությունը հասանելի չէ Android Studio-ի հետ</string>
</patch>
</app>
<app id="music">
@ -1600,23 +1608,23 @@ Mini-player-ը կարող է գրավվել էկրանից դուրս՝ դեպի
<string name="revanced_music_navigation_bar_screen_title">Նավիգացիոն գիծ</string>
<string name="revanced_music_navigation_bar_screen_summary">Թաքցնել կամ փոխել նավիգացիոն գծի կոճակները</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Թաքցնել «Գլխավոր» կոճակը</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Թաքցնել Գլխավորը</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">«Գլխավոր» կոճակը թաքնված է</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">«Գլխավոր» կոճակը ցուցադրված է</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Թաքցնել «Նմուշներ» կոճակը</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Թաքցնել Նմուշները</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">«Նմուշներ» կոճակը թաքնված է</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">«Նմուշներ» կոճակը ցուցադրված է</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Թաքցնել «Բացահայտել» կոճակը</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Թաքցնել Ուսումնասիրելը</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">«Բացահայտել» կոճակը թաքնված է</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">«Բացահայտել» կոճակը ցուցադրված է</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Թաքցնել «Գրադարան» կոճակը</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Թաքցնել Գրադարանը</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">«Գրադարան» կոճակը թաքնված է</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">«Գրադարան» կոճակը ցուցադրված է</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Թաքցնել «Արդիականացնել» կոճակը</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Թաքցնել Թարմացումը</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">«Արդիականացնել» կոճակը թաքնված է</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">«Արդիականացնել» կոճակը ցուցադրված է</string>
<string name="revanced_music_hide_navigation_bar_title">Թաքցնել նավիգացիոն գիծը</string>

View file

@ -98,7 +98,7 @@ Jika Anda adalah pengguna YouTube Premium, setelan ini mungkin tidak diperlukan"
<string name="revanced_spoof_video_streams_summary_off">"Aliran video tidak dipalsukan
Pemutaran mungkin tidak berfungsi"</string>
<string name="revanced_spoof_video_streams_user_dialog_message">Menonaktifkan pengaturan ini mungkin menyebabkan masalah pemutaran.</string>
<string name="revanced_spoof_video_streams_user_dialog_message">Mematikan pengaturan ini dapat menyebabkan masalah pemutaran.</string>
<string name="revanced_spoof_video_streams_client_type_title">Klien bawaan</string>
</patch>
<patch id="misc.debugging.enableDebuggingPatch">
@ -107,6 +107,15 @@ Pemutaran mungkin tidak berfungsi"</string>
<string name="revanced_debug_title">Pencatatan debug</string>
<string name="revanced_debug_summary_on">Pencatatan debug diaktifkan</string>
<string name="revanced_debug_summary_off">Pencatatan debug dinonaktifkan</string>
<string name="revanced_debug_stacktrace_title">Jejak catatan stack</string>
<string name="revanced_debug_stacktrace_summary_on">Pencatatan debug menyertakan jejak stack</string>
<string name="revanced_debug_stacktrace_summary_off">Pencatatan debug tidak menyertakan jejak stack</string>
<string name="revanced_debug_toast_on_error_title">Tampilkan pesan timbul pada kesalahan ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Pesan timbul ditampilkan jika terjadi kesalahan</string>
<string name="revanced_debug_toast_on_error_summary_off">Pesan timbul tidak ditampilkan jika terjadi kesalahan</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Mematikan notifikasi kesalahan menyembunyikan semua notifikasi kesalahan ReVanced.
Anda tidak akan diberi tahu tentang kejadian yang tidak terduga."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Ekspor catatan debug</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Salin catatan debug ReVanced ke papan klip</string>
<string name="revanced_debug_logs_disabled">Pencatatan debug dinonaktifkan</string>
@ -151,15 +160,6 @@ Pemutaran mungkin tidak berfungsi"</string>
Ini dapat membantu mengidentifikasi komponen saat membuat filter khusus.
Namun, mengaktifkan ini juga akan mencatat beberapa data pengguna seperti alamat IP Anda."</string>
<string name="revanced_debug_stacktrace_title">Jejak catatan stack</string>
<string name="revanced_debug_stacktrace_summary_on">Pencatatan debug menyertakan jejak stack</string>
<string name="revanced_debug_stacktrace_summary_off">Pencatatan debug tidak menyertakan jejak stack</string>
<string name="revanced_debug_toast_on_error_title">Tampilkan pesan timbul pada kesalahan ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Pesan timbul ditampilkan jika terjadi kesalahan</string>
<string name="revanced_debug_toast_on_error_summary_off">Pesan timbul tidak ditampilkan jika terjadi kesalahan</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Mematikan notifikasi kesalahan menyembunyikan semua notifikasi kesalahan ReVanced.
Anda tidak akan diberi tahu tentang kejadian yang tidak terduga."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Sembunyikan kartu album</string>
@ -586,6 +586,10 @@ Menyesuaikan volume dengan mengusap secara vertikal di sisi kanan layar"</string
<string name="revanced_hide_stop_ads_button_title">Sembunyikan Hentikan iklan</string>
<string name="revanced_hide_stop_ads_button_summary_on">Tombol hentikan iklan disembunyikan</string>
<string name="revanced_hide_stop_ads_button_summary_off">Tombol hentikan iklan ditampilkan</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Sembunyikan Komentar</string>
<string name="revanced_hide_comments_button_summary_on">Tombol Komentar disembunyikan</string>
<string name="revanced_hide_comments_button_summary_off">Tombol Komentar ditampilkan</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Sembunyikan Laporkan</string>
@ -1241,8 +1245,9 @@ Ini akan mengubah tampilan dan fitur aplikasi, tetapi efek samping yang tidak di
Jika kemudian dimatikan, disarankan untuk menghapus data aplikasi untuk mencegah bug UI."</string>
<string name="revanced_spoof_app_version_target_title">Target versi app yang dipalsukan</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Pulihkan ikon pemutar Shorts lama</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Pulihkan ikon navigasi lama</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Pulihkan bilah tindakan video yang tidak diciutkan</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Pulihkan ikon pemutar Shorts lama</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Pulihkan ikon navigasi lama</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Ubah halaman awal</string>
@ -1476,7 +1481,7 @@ Mengaktifkan ini dapat membuka kualitas video yang lebih tinggi"</string>
<string name="revanced_force_original_audio_summary_on">Menggunakan bahasa audio asli</string>
<string name="revanced_force_original_audio_summary_off">Menggunakan audio bawaan</string>
<!-- 'Spoof video streams' should be the same translation used for 'revanced_spoof_video_streams_screen_title'. -->
<string name="revanced_force_original_audio_not_available">Untuk menggunakan fitur ini, ubah \'Spoof aliran video\' ke klien apa pun kecuali Android Studio</string>
<string name="revanced_force_original_audio_not_available">Untuk menggunakan fitur ini, ubah \'Palsukan aliran video\' ke klien apa pun kecuali Android Studio</string>
</patch>
<patch id="video.quality.rememberVideoQualityPatch">
<!-- Translations should use the same text as 'revanced_custom_playback_speeds_auto'. -->
@ -1554,16 +1559,19 @@ Mengaktifkan ini dapat membuka kualitas video yang lebih tinggi"</string>
<string name="revanced_spoof_video_streams_about_android_title">Efek samping pemalsuan Android</string>
<string name="revanced_spoof_video_streams_about_android_summary">"• Menu trek audio hilang
• Volume stabil tidak tersedia"</string>
<string name="revanced_spoof_video_streams_about_ipados_summary">• Video mungkin berhenti pada menit 1:00, atau mungkin tidak tersedia di beberapa wilayah</string>
<string name="revanced_spoof_video_streams_about_ipados_summary">• Video mungkin berhenti pada 1:00, atau mungkin tidak tersedia di beberapa wilayah</string>
<string name="revanced_spoof_video_streams_about_experimental">• Klien eksperimental dan dapat berhenti berfungsi kapan saja</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Tidak ada codec video AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Video anak-anak mungkin tidak dapat diputar saat keluar atau dalam mode penyamaran</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Paksa audio asli tidak tersedia</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Tampilkan di Statistik untuk nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Jenis klien ditampilkan di Statistik untuk nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Klien disembunyikan di Statistik untuk nerds</string>
<string name="revanced_spoof_video_streams_language_title">Bahasa aliran audio</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Untuk memilih bahasa audio tertentu, matikan \'Paksa bahasa audio asli\'</string>
<string name="revanced_spoof_video_streams_language_android_studio">Pilihan bahasa streaming tidak tersedia dengan Android Studio</string>
</patch>
</app>
<app id="music">
@ -1585,9 +1593,9 @@ Mengaktifkan ini dapat membuka kualitas video yang lebih tinggi"</string>
<string name="revanced_music_play_permanent_repeat_summary_off">Pengulangan permanen dinonaktifkan</string>
</patch>
<patch id="layout.castbutton.hideCastButton">
<string name="revanced_music_hide_cast_button_title">Sembunyikan tombol Transmisi</string>
<string name="revanced_music_hide_cast_button_summary_on">Tombol Transmisi disembunyikan</string>
<string name="revanced_music_hide_cast_button_summary_off">Tombol Transmisi ditampilkan</string>
<string name="revanced_music_hide_cast_button_title">Sembunyikan tombol transmisi</string>
<string name="revanced_music_hide_cast_button_summary_on">Tombol transmisi disembunyikan</string>
<string name="revanced_music_hide_cast_button_summary_off">Tombol transmisi ditampilkan</string>
</patch>
<patch id="layout.compactheader.hideCategoryBar">
<string name="revanced_music_hide_category_bar_title">Sembunyikan bilah kategori</string>
@ -1598,25 +1606,25 @@ Mengaktifkan ini dapat membuka kualitas video yang lebih tinggi"</string>
<string name="revanced_music_navigation_bar_screen_title">Bilah navigasi</string>
<string name="revanced_music_navigation_bar_screen_summary">Sembunyikan atau ubah tombol bilah navigasi</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Sembunyikan tombol Beranda</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Sembunyikan Beranda</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Tombol Beranda disembunyikan</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Tombol Beranda ditampilkan</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Sembunyikan tombol Cuplikan</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Sembunyikan Cuplikan</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Tombol Cuplikan disembunyikan</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Tombol Cuplikan ditampilkan</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Sembunyikan tombol Jelajahi</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Sembunyikan Jelajahi</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Tombol Jelajahi disembunyikan</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Tombol Jelajahi ditampilkan</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Sembunyikan tombol Koleksi</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Tombol Koleksi disembunyikan</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Tombol Koleksi ditampilkan</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Sembunyikan Pustaka</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Tombol Pustaka disembunyikan</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Tombol Pustaka ditampilkan</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Sembunyikan tombol upgrade</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Tombol upgrade disembunyikan</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Tombol upgrade ditampilkan</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Sembunyikan Upgrade</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Tombol Upgrade disembunyikan</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Tombol Upgrade ditampilkan</string>
<string name="revanced_music_hide_navigation_bar_title">Sembunyikan bilah navigasi</string>
<string name="revanced_music_hide_navigation_bar_summary_on">Bilah navigasi disembunyikan</string>
<string name="revanced_music_hide_navigation_bar_summary_off">Bilah navigasi ditampilkan</string>
@ -1630,7 +1638,7 @@ Mengaktifkan ini dapat membuka kualitas video yang lebih tinggi"</string>
<string name="revanced_music_hide_get_premium_label_summary_off">Label ditampilkan</string>
</patch>
<patch id="layout.upgradebutton.hideUpgradeButtonPatch">
<string name="revanced_music_hide_upgrade_button_title">Sembunyikan tombol upgrade</string>
<string name="revanced_music_hide_upgrade_button_title">Sembunyikan tombol Upgrade</string>
<string name="revanced_music_hide_upgrade_button_summary_on">Tombol disembunyikan</string>
<string name="revanced_music_hide_upgrade_button_summary_off">Tombol ditampilkan</string>
</patch>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -107,6 +107,15 @@ La riproduzione potrebbe non funzionare"</string>
<string name="revanced_debug_title">Log di debug</string>
<string name="revanced_debug_summary_on">I log di debug sono abilitati</string>
<string name="revanced_debug_summary_off">I log di debug sono disabilitati</string>
<string name="revanced_debug_stacktrace_title">Registra stack trace</string>
<string name="revanced_debug_stacktrace_summary_on">I log di debug includono lo stack trace</string>
<string name="revanced_debug_stacktrace_summary_off">I log di debug non includono lo stack trace</string>
<string name="revanced_debug_toast_on_error_title">Mostra notifica per errore di ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Il toast viene mostrato se si verifica un errore</string>
<string name="revanced_debug_toast_on_error_summary_off">Il toast non viene mostrato se si verifica un errore</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Disabilitare i toast di errore nasconde tutte le notifiche di errore di ReVanced.
Non sarai notificato di eventi imprevisti."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Esporta i log di debug</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Copia i log di debug di ReVanced negli Appunti</string>
<string name="revanced_debug_logs_disabled">La registrazione di debug è disabilitata</string>
@ -151,15 +160,6 @@ La riproduzione potrebbe non funzionare"</string>
Questo può aiutare a identificare i componenti durante la creazione di filtri personalizzati.
Tuttavia, l'abilitazione di questa opzione registrerà anche alcuni dati dell'utente come il tuo indirizzo IP."</string>
<string name="revanced_debug_stacktrace_title">Registra stack trace</string>
<string name="revanced_debug_stacktrace_summary_on">I log di debug includono lo stack trace</string>
<string name="revanced_debug_stacktrace_summary_off">I log di debug non includono lo stack trace</string>
<string name="revanced_debug_toast_on_error_title">Mostra notifica per errore di ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Il toast viene mostrato se si verifica un errore</string>
<string name="revanced_debug_toast_on_error_summary_off">Il toast non viene mostrato se si verifica un errore</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Disabilitare i toast di errore nasconde tutte le notifiche di errore di ReVanced.
Non sarai notificato di eventi imprevisti."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Nascondi le schede degli album</string>
@ -586,6 +586,10 @@ Regola il volume scorrendo verticalmente sul lato destro dello schermo"</string>
<string name="revanced_hide_stop_ads_button_title">Nascondi Interrompi annunci</string>
<string name="revanced_hide_stop_ads_button_summary_on">Il pulsante per interrompere gli annunci è nascosto</string>
<string name="revanced_hide_stop_ads_button_summary_off">Il pulsante per interrompere gli annunci è mostrato</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Nascondi commenti</string>
<string name="revanced_hide_comments_button_summary_on">Il pulsante Commenti è nascosto</string>
<string name="revanced_hide_comments_button_summary_off">Il pulsante Commenti è mostrato</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Nascondi Segnala</string>
@ -1241,8 +1245,9 @@ Questo cambierà l'aspetto e le funzionalità dell'app, ma potrebbero verificars
Se in seguito verrà disattivato, si consiglia di cancellare i dati dell'app per evitare bug dell'interfaccia."</string>
<string name="revanced_spoof_app_version_target_title">Target della versione dell\'app desiderata</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Ripristinare le vecchie icone del player Shorts</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Ripristina le vecchie icone di navigazione</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Ripristina la barra delle azioni video non compressa</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Ripristinare le vecchie icone del player Shorts</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Ripristina le vecchie icone di navigazione</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Cambia pagina iniziale</string>
@ -1558,12 +1563,15 @@ Abilitare questa opzione può sbloccare qualità video più elevate"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Client sperimentale e potrebbe smettere di funzionare in qualsiasi momento</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Nessun codec video AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• I video dei bambini potrebbero non essere riprodotti quando si è disconnessi o in modalità di navigazione in incognito</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• L\'audio originale forzato non è disponibile</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Mostra nelle statistiche per nerd</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Il tipo di client è mostrato nelle statistiche per nerd</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Il client è nascosto nelle statistiche per nerd</string>
<string name="revanced_spoof_video_streams_language_title">Lingua del flusso audio</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Per selezionare una lingua audio specifica, disattiva \'Forza lingua audio originale\'</string>
<string name="revanced_spoof_video_streams_language_android_studio">La selezione della lingua dello stream non è disponibile con Android Studio</string>
</patch>
</app>
<app id="music">
@ -1598,23 +1606,23 @@ Abilitare questa opzione può sbloccare qualità video più elevate"</string>
<string name="revanced_music_navigation_bar_screen_title">Barra di navigazione</string>
<string name="revanced_music_navigation_bar_screen_summary">Nascondi o modifica i pulsanti della barra di navigazione</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Nascondi il pulsante Home</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Nascondi Home</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Il pulsante Home è nascosto</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Il pulsante Home è mostrato</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Nascondi il pulsante Campioni</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Nascondi Esempi</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Il pulsante Campioni è nascosto</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Il pulsante Campioni è mostrato</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Nascondi il pulsante Esplora</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Nascondi Esplora</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Il pulsante Esplora è nascosto</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Il pulsante Esplora è mostrato</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Nascondi il pulsante Libreria</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Nascondi Libreria</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Il pulsante Libreria è nascosto</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Il pulsante Libreria è mostrato</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Nascondi il pulsante Aggiorna</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Nascondi Aggiorna</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Il pulsante Aggiorna è nascosto</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Il pulsante Aggiorna è mostrato</string>
<string name="revanced_music_hide_navigation_bar_title">Nascondi la barra di navigazione</string>

View file

@ -107,6 +107,15 @@ Second \"item\" text"</string>
<string name="revanced_debug_title">רישום איתור באגים</string>
<string name="revanced_debug_summary_on">יומני איתור באגים מופעלים</string>
<string name="revanced_debug_summary_off">יומני איתור באגים מושבתים</string>
<string name="revanced_debug_stacktrace_title">רשום עקבות מחסנית</string>
<string name="revanced_debug_stacktrace_summary_on">יומני איתור באגים כוללים עקבות מחסנית</string>
<string name="revanced_debug_stacktrace_summary_off">יומני איתור באגים אינם כוללים עקבות מחסנית</string>
<string name="revanced_debug_toast_on_error_title">הצג הודעה קופצת בעת שגיאת ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">הודעה קופצת מוצגת אם מתרחשת שגיאה</string>
<string name="revanced_debug_toast_on_error_summary_off">הודעה קופצת אינה מוצגת אם מתרחשת שגיאה</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"השבתת הודעות שגיאה קופצות מסתירה את כל הודעות השגיאה של ReVanced.
לא תקבל הודעה על אירועים בלתי צפויים."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">ייצוא יומני איתור באגים</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">מעתיק יומנים לאיתור באגים של Revanced ללוח ההעתקה</string>
<string name="revanced_debug_logs_disabled">תיעוד איתור באגים מושבת</string>
@ -151,15 +160,6 @@ Second \"item\" text"</string>
זה יכול לעזור לזהות רכיבים בעת יצירת מסננים מותאמים אישית.
עם זאת, הפעלת הגדרה זו תתעד גם כמה נתוני משתמש כמו כתובת ה-IP שלך."</string>
<string name="revanced_debug_stacktrace_title">רשום עקבות מחסנית</string>
<string name="revanced_debug_stacktrace_summary_on">יומני איתור באגים כוללים עקבות מחסנית</string>
<string name="revanced_debug_stacktrace_summary_off">יומני איתור באגים אינם כוללים עקבות מחסנית</string>
<string name="revanced_debug_toast_on_error_title">הצג הודעה קופצת בעת שגיאת ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">הודעה קופצת מוצגת אם מתרחשת שגיאה</string>
<string name="revanced_debug_toast_on_error_summary_off">הודעה קופצת אינה מוצגת אם מתרחשת שגיאה</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"השבתת הודעות שגיאה קופצות מסתירה את כל הודעות השגיאה של ReVanced.
לא תקבל הודעה על אירועים בלתי צפויים."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">הסתר כרטיסי אלבום</string>
@ -586,6 +586,10 @@ Second \"item\" text"</string>
<string name="revanced_hide_stop_ads_button_title">הסתר עצירת מודעות</string>
<string name="revanced_hide_stop_ads_button_summary_on">לחצן עצירת מודעות מוסתר</string>
<string name="revanced_hide_stop_ads_button_summary_off">לחצן עצירת מודעות מוצג</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">הסתר תגובות</string>
<string name="revanced_hide_comments_button_summary_on">הלחצן \'תגובות\' מוסתר</string>
<string name="revanced_hide_comments_button_summary_off">הלחצן \'תגובות\' מוצג</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">הסתר דיווח</string>
@ -1244,8 +1248,9 @@ Second \"item\" text"</string>
אם נכבה מאוחר יותר, מומלץ לנקות את נתוני היישום כדי למנוע באגים של ממשק המשתמש."</string>
<string name="revanced_spoof_app_version_target_title">יעד גרסת יישום מזויפת</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - שחזר סמלי נגן Shorts ישנים</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - שחזר סמלי ניווט ישנים</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - שחזור סרגל פעולות וידאו לא מכווץ</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - שחזר סמלי נגן Shorts ישנים</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - שחזר סמלי ניווט ישנים</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">שנה את דף ההתחלה</string>
@ -1561,12 +1566,15 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_about_experimental">• לקוח ניסיוני ועשוי להפסיק לפעול בכל עת</string>
<string name="revanced_spoof_video_streams_about_no_av1">• אין קודק וידאו מסוג AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• ייתכן שסרטוני Kids לא יופעלו כשאתה מנותק או במצב פרטי</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• כפיית שמע מקורי אינה זמינה</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">הצג בנתונים לגיקים</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">סוג הלקוח מוצג בנתונים לגיקים</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">הלקוח מוסתר בנתונים לגיקים</string>
<string name="revanced_spoof_video_streams_language_title">שפת זרם השמע</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">כדי לבחור שפת שמע ספציפית, כבה את \'אכוף שפת שמע מקורית\'</string>
<string name="revanced_spoof_video_streams_language_android_studio">בחירת שפת הזרם אינה זמינה עם אנדרואיד סטודיו</string>
</patch>
</app>
<app id="music">
@ -1601,23 +1609,23 @@ Second \"item\" text"</string>
<string name="revanced_music_navigation_bar_screen_title">סרגל ניווט</string>
<string name="revanced_music_navigation_bar_screen_summary">הסתר או שנה לחצני סרגל ניווט</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">הסתר לחצן \'דף הבית\'</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">הסתר דף הבית</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">לחצן \'דף הבית\' מוסתר</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">לחצן \'דף הבית\' מוצג</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">הסתר לחצן \'דוגמיות\'</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">הסתר דוגמאות</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">לחצן \'דוגמיות\' מוסתר</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">לחצן \'דוגמיות\' מוצג</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">הסתר לחצן \'גלו\'</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">הסתר גלו</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">לחצן \'גלו\' מוסתר</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">לחצן \'גלו\' מוצג</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">הסתר לחצן \'ספרייה\'</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">הסתר ספרייה</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">לחצן \'ספרייה\' מוסתר</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">לחצן \'ספרייה\' מוצג</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">הסתר לחצן \'שדרוג\'</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">הסתר שדרוג</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">לחצן \'שדרוג\' מוסתר</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">לחצן \'שדרוג\' מוצג</string>
<string name="revanced_music_hide_navigation_bar_title">הסתר סרגל ניווט</string>

View file

@ -107,6 +107,15 @@ YouTube Premium ユーザーの場合、この設定は必要ない可能性が
<string name="revanced_debug_title">デバッグログを有効化</string>
<string name="revanced_debug_summary_on">デバッグログは有効です</string>
<string name="revanced_debug_summary_off">デバッグログは無効です</string>
<string name="revanced_debug_stacktrace_title">スタック トレースをログに記録</string>
<string name="revanced_debug_stacktrace_summary_on">デバッグログにスタック トレースが含まれます</string>
<string name="revanced_debug_stacktrace_summary_off">デバッグログにスタック トレースは含まれません</string>
<string name="revanced_debug_toast_on_error_title">ReVanced のエラー時にトーストを表示</string>
<string name="revanced_debug_toast_on_error_summary_on">エラーが発生した場合にトーストが表示されます</string>
<string name="revanced_debug_toast_on_error_summary_off">エラーが発生してもトーストは表示されません</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"エラートーストをオフにすると、ReVanced のすべてのエラー通知が非表示になります。
予期しないイベントが発生した場合でも通知されなくなります。"</string>
<string name="revanced_debug_export_logs_to_clipboard_title">デバッグログのエクスポート</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">ReVanced のデバッグログをクリップボードにコピーします</string>
<string name="revanced_debug_logs_disabled">デバッグログは無効です</string>
@ -152,15 +161,6 @@ YouTube Premium ユーザーの場合、この設定は必要ない可能性が
これは、カスタムフィルターを作成する際にコンポーネントを識別するのに役立ちます。
ただし、これを有効にすると、IP アドレスなどの一部のユーザーデータもログに記録されます。"</string>
<string name="revanced_debug_stacktrace_title">スタック トレースをログに記録</string>
<string name="revanced_debug_stacktrace_summary_on">デバッグログにスタック トレースが含まれます</string>
<string name="revanced_debug_stacktrace_summary_off">デバッグログにスタック トレースは含まれません</string>
<string name="revanced_debug_toast_on_error_title">ReVanced のエラー時にトーストを表示</string>
<string name="revanced_debug_toast_on_error_summary_on">エラーが発生した場合にトーストが表示されます</string>
<string name="revanced_debug_toast_on_error_summary_off">エラーが発生してもトーストは表示されません</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"エラートーストをオフにすると、ReVanced のすべてのエラー通知が非表示になります。
予期しないイベントが発生した場合でも通知されなくなります。"</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">アルバムカードを非表示</string>
@ -588,6 +588,10 @@ YouTube Premium ユーザーの場合、この設定は必要ない可能性が
<string name="revanced_hide_stop_ads_button_title">「広告を停止」を非表示</string>
<string name="revanced_hide_stop_ads_button_summary_on">「広告を停止」ボタンは表示されません</string>
<string name="revanced_hide_stop_ads_button_summary_off">「広告を停止」ボタンは表示されます</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">コメントボタンを非表示</string>
<string name="revanced_hide_comments_button_summary_on">コメントボタンは表示されません</string>
<string name="revanced_hide_comments_button_summary_off">コメントボタンは表示されます</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">報告ボタンを非表示</string>
@ -741,15 +745,15 @@ YouTube Premium ユーザーの場合、この設定は必要ない可能性が
</patch>
<patch id="layout.buttons.overlay.hidePlayerOverlayButtonsPatch">
<string name="revanced_hide_autoplay_button_title">自動再生ボタンを非表示</string>
<string name="revanced_hide_autoplay_button_summary_on">プレーヤー オーバーレイの自動再生ボタンは表示されません</string>
<string name="revanced_hide_autoplay_button_summary_off">プレーヤー オーバーレイの自動再生ボタンは表示されます</string>
<string name="revanced_hide_autoplay_button_summary_on">自動再生ボタンはプレーヤー オーバーレイに表示されません</string>
<string name="revanced_hide_autoplay_button_summary_off">自動再生ボタンはプレーヤー オーバーレイに表示されます</string>
<!-- This button does not display any text, but 'Captions' should be translated using the same wording used as the translation of 'revanced_hide_player_flyout_captions_title'. -->
<string name="revanced_hide_captions_button_title">字幕ボタンを非表示</string>
<string name="revanced_hide_captions_button_summary_on">プレーヤー オーバーレイの字幕ボタンは表示されません</string>
<string name="revanced_hide_captions_button_summary_off">プレーヤー オーバーレイの字幕ボタンは表示されます</string>
<string name="revanced_hide_captions_button_summary_on">字幕ボタンはプレーヤー オーバーレイに表示されません</string>
<string name="revanced_hide_captions_button_summary_off">字幕ボタンはプレーヤー オーバーレイに表示されます</string>
<string name="revanced_hide_cast_button_title">キャストボタンを非表示</string>
<string name="revanced_hide_cast_button_summary_on">プレーヤー オーバーレイのキャストボタンは表示されません</string>
<string name="revanced_hide_cast_button_summary_off">プレーヤー オーバーレイのキャストボタンは表示されます</string>
<string name="revanced_hide_cast_button_summary_on">キャストボタンはプレーヤー オーバーレイに表示されません</string>
<string name="revanced_hide_cast_button_summary_off">キャストボタンはプレーヤー オーバーレイに表示されます</string>
<string name="revanced_hide_player_control_buttons_background_title">プレーヤー コントロールの背景を非表示</string>
<string name="revanced_hide_player_control_buttons_background_summary_on">プレーヤー コントロールの背景は表示されません</string>
<string name="revanced_hide_player_control_buttons_background_summary_off">プレーヤー コントロールの背景は表示されます</string>
@ -1245,8 +1249,9 @@ Automotive レイアウト
再び偽装を無効にする場合は、UI のバグを防ぐためにアプリデータを消去することをお勧めします。"</string>
<string name="revanced_spoof_app_version_target_title">アプリバージョンの偽装先</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - 古いショート プレーヤーのアイコンを復元</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - 古いナビゲーション アイコンを復元</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - アクション ボタンの文字表示を復元</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - 古いショート プレーヤーのアイコンを復元</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - 古いナビゲーション アイコンを復元</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">スタート画面を変更</string>
@ -1561,12 +1566,15 @@ Automotive レイアウト
<string name="revanced_spoof_video_streams_about_experimental">• 実験的なクライアントであり、いつでも動作しなくなる可能性がある</string>
<string name="revanced_spoof_video_streams_about_no_av1">• AV1 コーデックが利用できない</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• ログアウト時またはシークレット モード時に、子ども向け動画が再生されない可能性がある</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">•「オリジナルの音声を強制的に使用」が利用できない</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">統計情報に表示する</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">統計情報に現在のクライアントが表示されます</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">統計情報に現在のクライアントは表示されません</string>
<string name="revanced_spoof_video_streams_language_title">音声ストリームの言語</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">特定の音声言語を選択するには、「オリジナルの音声を強制的に使用」を無効にしてください</string>
<string name="revanced_spoof_video_streams_language_android_studio">Android Studio では、ストリームの言語を選択できません</string>
</patch>
</app>
<app id="music">
@ -1589,8 +1597,8 @@ Automotive レイアウト
</patch>
<patch id="layout.castbutton.hideCastButton">
<string name="revanced_music_hide_cast_button_title">キャストボタンを非表示</string>
<string name="revanced_music_hide_cast_button_summary_on">プレーヤー オーバーレイのキャストボタンは表示されません</string>
<string name="revanced_music_hide_cast_button_summary_off">プレーヤー オーバーレイのキャストボタンは表示されます</string>
<string name="revanced_music_hide_cast_button_summary_on">キャストボタンはプレーヤー オーバーレイに表示されません</string>
<string name="revanced_music_hide_cast_button_summary_off">キャストボタンはプレーヤー オーバーレイに表示されます</string>
</patch>
<patch id="layout.compactheader.hideCategoryBar">
<string name="revanced_music_hide_category_bar_title">カテゴリバーを非表示</string>
@ -1598,31 +1606,31 @@ Automotive レイアウト
<string name="revanced_music_hide_category_bar_summary_off">カテゴリバーは表示されます</string>
</patch>
<patch id="layout.navigationbar.navigationBarPatch">
<string name="revanced_music_navigation_bar_screen_title">ナビゲーションバー</string>
<string name="revanced_music_navigation_bar_screen_summary">ナビゲーションバーのボタンを非表示または変更</string>
<string name="revanced_music_navigation_bar_screen_title">ナビゲーション バー</string>
<string name="revanced_music_navigation_bar_screen_summary">ナビゲーション バーのボタンを変更または非表示にします</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">ホームボタンを非表示</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">「ホーム」を非表示</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">ホームボタンは表示されません</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">ホームボタンは表示されます</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">サンプルボタンを非表示</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">「サンプル」を非表示</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">サンプルボタンは表示されません</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">サンプルボタンは表示されます</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">探索ボタンを非表示</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">「探索」を非表示</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">探索ボタンは表示されません</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">探索ボタンは表示されます</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">ライブラリボタンを非表示</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">ライブラリボタンは表示されません</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">ライブラリボタンは表示されます</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">「ライブラリ」を非表示</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">ライブラリ ボタンは表示されません</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">ライブラリ ボタンは表示されます</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">アップグレード ボタンを非表示</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">「アップグレード」を非表示</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">アップグレード ボタンは表示されません</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">アップグレード ボタンは表示されます</string>
<string name="revanced_music_hide_navigation_bar_title">ナビゲーションバーを非表示</string>
<string name="revanced_music_hide_navigation_bar_summary_on">ナビゲーションバーは表示されません</string>
<string name="revanced_music_hide_navigation_bar_summary_off">ナビゲーションバーは表示されます</string>
<string name="revanced_music_hide_navigation_bar_title">ナビゲーション バーを非表示</string>
<string name="revanced_music_hide_navigation_bar_summary_on">ナビゲーション バーは表示されません</string>
<string name="revanced_music_hide_navigation_bar_summary_off">ナビゲーション バーは表示されます</string>
<string name="revanced_music_hide_navigation_bar_labels_title">ボタンをアイコンのみで表示</string>
<string name="revanced_music_hide_navigation_bar_labels_summary_on">ナビゲーション ボタンはアイコンのみで表示されます</string>
<string name="revanced_music_hide_navigation_bar_labels_summary_off">ナビゲーション ボタンはアイコンと文字で表示されます</string>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -104,6 +104,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -258,6 +259,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -107,6 +107,15 @@ YouTube Premium 사용자라면 이 설정은 필요하지 않을 수 있습니
<string name="revanced_debug_title">디버그 로깅</string>
<string name="revanced_debug_summary_on">디버그 로깅을 활성화합니다</string>
<string name="revanced_debug_summary_off">디버그 로깅을 비활성화합니다</string>
<string name="revanced_debug_stacktrace_title">로그 스택 트레이스</string>
<string name="revanced_debug_stacktrace_summary_on">디버그 로그에 로그 스택 트레이스를 포함합니다</string>
<string name="revanced_debug_stacktrace_summary_off">디버그 로그에 로그 스택 트레이스를 포함하지 않습니다</string>
<string name="revanced_debug_toast_on_error_title">ReVanced 오류 메시지 표시하기</string>
<string name="revanced_debug_toast_on_error_summary_on">오류가 발생하면 팝업 메시지를 표시합니다</string>
<string name="revanced_debug_toast_on_error_summary_off">오류가 발생하면 팝업 메시지를 표시하지 않습니다</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"오류 메시지를 비활성화하면 모든 ReVanced 오류 알림이 숨겨집니다.
예상되지 않은 이벤트에 대한 알림을 받지 못할 수 있습니다."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">디버그 로그 내보내기</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">ReVanced 디버그 로그를 클립보드에 복사할 수 있습니다</string>
<string name="revanced_debug_logs_disabled">디버그 로깅이 비활성화되어 있습니다</string>
@ -151,15 +160,6 @@ YouTube Premium 사용자라면 이 설정은 필요하지 않을 수 있습니
이 설정은 사용자 정의 필터를 만들 경우에 구성 요소를 식별하는 데 도움이 될 수 있습니다.
그러나 이 설정을 활성화하면 IP 주소와 같은 일부 사용자 데이터도 기록됩니다."</string>
<string name="revanced_debug_stacktrace_title">로그 스택 트레이스</string>
<string name="revanced_debug_stacktrace_summary_on">디버그 로그에 로그 스택 트레이스를 포함합니다</string>
<string name="revanced_debug_stacktrace_summary_off">디버그 로그에 로그 스택 트레이스를 포함하지 않습니다</string>
<string name="revanced_debug_toast_on_error_title">ReVanced 오류 메시지 표시하기</string>
<string name="revanced_debug_toast_on_error_summary_on">오류가 발생하면 팝업 메시지를 표시합니다</string>
<string name="revanced_debug_toast_on_error_summary_off">오류가 발생하면 팝업 메시지를 표시하지 않습니다</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"오류 메시지를 비활성화하면 모든 ReVanced 오류 알림이 숨겨집니다.
예상되지 않은 이벤트에 대한 알림을 받지 못할 수 있습니다."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">음악 앨범 카드 숨기기</string>
@ -584,6 +584,10 @@ YouTube Premium 사용자라면 이 설정은 필요하지 않을 수 있습니
<string name="revanced_hide_stop_ads_button_title">광고 중지 버튼 숨기기</string>
<string name="revanced_hide_stop_ads_button_summary_on">광고 중지 버튼이 숨겨집니다</string>
<string name="revanced_hide_stop_ads_button_summary_off">광고 중지 버튼이 표시됩니다</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">댓글 버튼 숨기기</string>
<string name="revanced_hide_comments_button_summary_on">댓글 버튼이 숨겨집니다</string>
<string name="revanced_hide_comments_button_summary_off">댓글 버튼이 표시됩니다</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">신고 버튼 숨기기</string>
@ -656,7 +660,7 @@ YouTube Premium 사용자라면 이 설정은 필요하지 않을 수 있습니
알려진 문제점:
• 동영상 광고가 강제로 숨겨집니다"</string>
<string name="revanced_switch_create_with_notifications_button_summary_off">만들기 버튼과 알림 버튼의 위치를 교환하지 않습니다\n\n알려진 문제점:\n• 서버에서 더 많은 광고가 로드될 수 있습니다\n• Shorts 광고가 더 이상 숨겨지지 않습니다</string>
<string name="revanced_switch_create_with_notifications_button_summary_off">만들기 버튼과 알림 버튼의 위치를 교환하지 않습니다</string>
<string name="revanced_switch_create_with_notifications_button_user_dialog_message">"이 설정을 비활성화하면 Shorts 광고가 차단되지 않습니다.
이 설정을 변경해도 적용되지 않는다면 시크릿 모드로 전환해 보세요."</string>
@ -944,7 +948,7 @@ YouTube Premium 사용자라면 이 설정은 필요하지 않을 수 있습니
<string name="revanced_ryd_failure_client_rate_limit_requested">싫어요 수를 표시할 수 없습니다 (클라이언트 API 제한 도달)</string>
<string name="revanced_ryd_failure_generic">싫어요 수를 표시할 수 없습니다 (%s)</string>
<!-- Toast shown if the user enables RYD while a video is opened, and then tries to vote for the video. -->
<string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">ReturnYouTubeDislike를 사용하여 투표하려면 동영상을 다시 로드하세요</string>
<string name="revanced_ryd_failure_ryd_enabled_while_playing_video_then_user_voted">ReturnYouTubeDislike를 사용하여 투표하려면 동영상을 다시 불러오세요</string>
<!-- Video likes have been set to hidden by the video uploader. -->
<string name="revanced_ryd_video_likes_hidden_by_video_owner">소유자에 의해 숨겨짐</string>
<string name="revanced_ryd_enabled_summary_on">싫어요 수를 표시합니다</string>
@ -1243,8 +1247,9 @@ YouTube Premium 사용자라면 이 설정은 필요하지 않을 수 있습니
나중에 이 기능을 비활성화하면 앱 레이아웃 버그를 방지하기 위해 앱 데이터를 지우는 것이 좋습니다."</string>
<string name="revanced_spoof_app_version_target_title">변경할 앱 버전</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - 이전 Shorts 플레이어 아이콘을 복원합니다</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - 이전 하단바 아이콘을 복원합니다</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - 접히지 않은 동영상 동작바를 복원합니다</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - 이전 Shorts 플레이어 아이콘을 복원합니다</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - 이전 하단바 아이콘을 복원합니다</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">앱 시작 페이지 변경하기</string>
@ -1480,9 +1485,9 @@ DeArrow에 대해 자세히 알아보려면 여기를 탭하세요"</string>
<string name="revanced_remove_tracking_query_parameter_summary_off">링크를 공유할 경우에 URL에서 추적 쿼리 매개변수를 삭제하지 않습니다</string>
</patch>
<patch id="video.audio.forceOriginalAudioPatch">
<string name="revanced_force_original_audio_title">원본 오디오 스트림 언어 강제로 활성화하기</string>
<string name="revanced_force_original_audio_summary_on">원본 오디오 스트림 언어를 사용 중입니다</string>
<string name="revanced_force_original_audio_summary_off">기본 오디오 스트림 언어를 사용 중입니다</string>
<string name="revanced_force_original_audio_title">원본 오디오 언어 강제로 활성화하기</string>
<string name="revanced_force_original_audio_summary_on">원본 오디오 언어를 사용 중입니다</string>
<string name="revanced_force_original_audio_summary_off">기본 오디오 언어를 사용 중입니다</string>
<!-- 'Spoof video streams' should be the same translation used for 'revanced_spoof_video_streams_screen_title'. -->
<string name="revanced_force_original_audio_not_available">이 기능을 사용하려면, \'동영상 스트림 변경하기\'에서 기본 클라이언트를 Android Studio를 제외한 다른 클라이언트로 변경하세요</string>
</patch>
@ -1566,12 +1571,15 @@ DeArrow에 대해 자세히 알아보려면 여기를 탭하세요"</string>
<string name="revanced_spoof_video_streams_about_experimental">• 실험용 클라이언트이며 언제든지 작동이 중단될 수 있습니다</string>
<string name="revanced_spoof_video_streams_about_no_av1">• AV1 코덱이 지원되지 않습니다</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Kids 동영상은 로그인을 하지 않았거나 시크릿 모드에서는 재생되지 않을 수 있습니다</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• 원본 오디오를 강제로 활성화할 수 없습니다</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">전문 통계에서 표시하기</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">동영상 스트림을 가져오는 데 사용되는 클라이언트가 전문 통계에서 표시됩니다</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">동영상 스트림을 가져오는 데 사용되는 클라이언트가 전문 통계에서 표시되지 않습니다</string>
<string name="revanced_spoof_video_streams_language_title">오디오 스트림 언어</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">특정 오디오 스트림 언어를 선택하려면, \'원본 오디오 스트림 언어 강제로 활성화하기\'를 끄세요</string>
<string name="revanced_spoof_video_streams_language_not_available">특정 오디오 언어를 선택하려면, \'원본 오디오 언어 강제로 활성화하기\'를 끄세요</string>
<string name="revanced_spoof_video_streams_language_android_studio">Android Studio에서는 스트림 언어를 선택할 수 없습니다</string>
</patch>
</app>
<app id="music">

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -107,6 +107,15 @@ Grojimas gali neveikti"</string>
<string name="revanced_debug_title">Debugavimo žurnalas</string>
<string name="revanced_debug_summary_on">Debugavimo žurnalai yra įgalinti</string>
<string name="revanced_debug_summary_off">Debugavimo žurnalai yra išjungti</string>
<string name="revanced_debug_stacktrace_title">Žurnalų steko pėdsakai</string>
<string name="revanced_debug_stacktrace_summary_on">Debugavimo žurnalai apima steko pėdsaką</string>
<string name="revanced_debug_stacktrace_summary_off">Debugavimo žurnalai neapima steko pėdsako</string>
<string name="revanced_debug_toast_on_error_title">Rodyti \"toast\" apie ReVanced klaidą</string>
<string name="revanced_debug_toast_on_error_summary_on">Jei įvyksta klaida, rodomas pranešimas „toast“</string>
<string name="revanced_debug_toast_on_error_summary_off">Jei įvyksta klaida, pranešimas „toast“ nerodomas</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Klaidos isjungimas paslepia visus „ReVanced“ klaidu pranesimus.
Apie netikėtus įvykius nebus pranešta."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Eksportuoti derinimo žurnalus</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Nukopijuoja „ReVanced“ derinimo žurnalus į mainų sritį</string>
<string name="revanced_debug_logs_disabled">Derinimo žurnalų registravimas išjungtas</string>
@ -151,15 +160,6 @@ Grojimas gali neveikti"</string>
Tai gali padėti identifikuoti komponentus kuriant pasirinktinius filtrus.
Tačiau įjungus šį nustatymą taip pat bus registruojami kai kurie vartotojo duomenys, pvz., jūsų IP adresas."</string>
<string name="revanced_debug_stacktrace_title">Žurnalų steko pėdsakai</string>
<string name="revanced_debug_stacktrace_summary_on">Debugavimo žurnalai apima steko pėdsaką</string>
<string name="revanced_debug_stacktrace_summary_off">Debugavimo žurnalai neapima steko pėdsako</string>
<string name="revanced_debug_toast_on_error_title">Rodyti \"toast\" apie ReVanced klaidą</string>
<string name="revanced_debug_toast_on_error_summary_on">Jei įvyksta klaida, rodomas pranešimas „toast“</string>
<string name="revanced_debug_toast_on_error_summary_off">Jei įvyksta klaida, pranešimas „toast“ nerodomas</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Klaidos isjungimas paslepia visus „ReVanced“ klaidu pranesimus.
Apie netikėtus įvykius nebus pranešta."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Slėpti albumo korteles</string>
@ -586,6 +586,10 @@ Reguliuokite garsumą braukdami vertikaliai dešinėje ekrano pusėje"</string>
<string name="revanced_hide_stop_ads_button_title">Slėpti \"Stabdyti reklamą\"</string>
<string name="revanced_hide_stop_ads_button_summary_on">Skelbimų stabdymo mygtukas paslėptas</string>
<string name="revanced_hide_stop_ads_button_summary_off">Skelbimų stabdymo mygtukas rodomas</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Slėpti komentarus</string>
<string name="revanced_hide_comments_button_summary_on">Komentarų mygtukas paslėptas</string>
<string name="revanced_hide_comments_button_summary_off">Komentarų mygtukas rodomas</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Slėpti Pranešti</string>
@ -1243,8 +1247,9 @@ Tai pakeis programos išvaizdą ir funkcijas, bet gali atsirasti nežinomų šal
Jei vėliau išjungta, rekomenduojama išvalyti programos duomenis, kad būtų išvengta vartotojo sąsajos klaidų."</string>
<string name="revanced_spoof_app_version_target_title">Programėlės versijos apsimetinėjimo tikslas</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Atkurti senus \"Shorts\" grotuvo piktogramas</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 Atkurti senas naršymo piktogramas</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 Atkurti neišskleistą vaizdo veiksmų juostą</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Atkurti senus \"Shorts\" grotuvo piktogramas</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 Atkurti senas naršymo piktogramas</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Keisti pradžios puslapį</string>
@ -1560,12 +1565,15 @@ Gali būti atrakinta aukštesnės vaizdo įrašų kokybės, bet galite patirti v
<string name="revanced_spoof_video_streams_about_experimental">• Eksperimentinis klientas ir bet kada gali nustoti veikti</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Nėra AV1 vaizdo kodeko</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Vaikų vaizdo įrašai gali būti neatkuriami, kai atsijungiama arba naudojamas inkognito režimas</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Priverstinai naudoti originalų garsą nepasiekiama</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Rodyti statistinėje informacijoje \"tik profesionalams\"</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Kliento tipas rodomas statistinėje informacijoje \"tik profesionalams\"</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Klientas paslėptas statistinėje informacijoje \"tik profesionalams\"</string>
<string name="revanced_spoof_video_streams_language_title">Garso srauto kalba</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Norėdami pasirinkti konkrečią garso kalbą, išjunkite „Priverstinė originali garso kalba“.</string>
<string name="revanced_spoof_video_streams_language_android_studio">Transliacijos kalbos pasirinkimas nepasiekiamas naudojant „Android Studio“</string>
</patch>
</app>
<app id="music">
@ -1600,23 +1608,23 @@ Gali būti atrakinta aukštesnės vaizdo įrašų kokybės, bet galite patirti v
<string name="revanced_music_navigation_bar_screen_title">Naršymo juosta</string>
<string name="revanced_music_navigation_bar_screen_summary">Slėpti arba keisti naršymo juostos mygtukus</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Slėpti mygtuką „Pagrindinis“</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Slėpti Pagrindinį</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Mygtukas „Pagrindinis“ yra paslėptas</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Mygtukas „Pagrindinis“ yra rodomas</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Slėpti mygtuką „Pavyzdžiai“</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Slėpti Pavyzdžius</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Mygtukas „Pavyzdžiai“ yra paslėptas</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Mygtukas „Pavyzdžiai“ yra rodomas</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Slėpti mygtuką „Naršyti</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Slėpti Naršyti</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Mygtukas „Naršyti“ yra paslėptas</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Mygtukas „Naršyti“ yra rodomas</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Slėpti mygtuką „Biblioteka“</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Slėpti Biblioteką</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Mygtukas „Biblioteka“ yra paslėptas</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Mygtukas „Biblioteka“ yra rodomas</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Slėpti mygtuką „Naujinti“</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Slėpti Atnaujinti</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Mygtukas „Naujinti“ yra paslėptas</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Mygtukas „Naujinti“ yra rodomas</string>
<string name="revanced_music_hide_navigation_bar_title">Slėpti naršymo juostą</string>

View file

@ -107,6 +107,15 @@ Atskaņošana var nedarboties"</string>
<string name="revanced_debug_title">Atkļūdošanas žurnāls</string>
<string name="revanced_debug_summary_on">Atkļūdošanas žurnāli ir iespējoti</string>
<string name="revanced_debug_summary_off">Atkļūdošanas žurnāli ir atspējoti</string>
<string name="revanced_debug_stacktrace_title">Reģistrēt steka izsekošanu</string>
<string name="revanced_debug_stacktrace_summary_on">Atkļūdošanas žurnāli ietver steka izsekošanu</string>
<string name="revanced_debug_stacktrace_summary_off">Atkļūdošanas žurnāli neietver steka izsekošanu</string>
<string name="revanced_debug_toast_on_error_title">Rādīt paziņojumu par ReVanced kļūdu</string>
<string name="revanced_debug_toast_on_error_summary_on">Ja rodas kļūda, tiek rādīts toast</string>
<string name="revanced_debug_toast_on_error_summary_off">Ja rodas kļūda, toast netiek rādīts</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Kļūdu paziņojumu izslēgšana paslēpj visus ReVanced kļūdu paziņojumus.
Jūs netiksit informēts par neparedzētiem notikumiem."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Eksportēt atkļūdošanas žurnālus</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Kopē ReVanced atkļūdošanas žurnālus starpliktuvē</string>
<string name="revanced_debug_logs_disabled">Atkļūdošanas žurnālu reģistrēšana ir atspējota</string>
@ -151,15 +160,6 @@ Atskaņošana var nedarboties"</string>
Tas var palīdzēt identificēt komponentus, veidojot pielāgotus filtrus.
Tomēr, iespējojot šo iestatījumu, tiks reģistrēti arī daži lietotāja dati, piemēram, jūsu IP adrese."</string>
<string name="revanced_debug_stacktrace_title">Reģistrēt steka izsekošanu</string>
<string name="revanced_debug_stacktrace_summary_on">Atkļūdošanas žurnāli ietver steka izsekošanu</string>
<string name="revanced_debug_stacktrace_summary_off">Atkļūdošanas žurnāli neietver steka izsekošanu</string>
<string name="revanced_debug_toast_on_error_title">Rādīt paziņojumu par ReVanced kļūdu</string>
<string name="revanced_debug_toast_on_error_summary_on">Ja rodas kļūda, tiek rādīts toast</string>
<string name="revanced_debug_toast_on_error_summary_off">Ja rodas kļūda, toast netiek rādīts</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Kļūdu paziņojumu izslēgšana paslēpj visus ReVanced kļūdu paziņojumus.
Jūs netiksit informēts par neparedzētiem notikumiem."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Paslēpt albumu kartītes</string>
@ -586,6 +586,10 @@ Regulējiet skaļumu, velkot vertikāli ekrāna labajā pusē"</string>
<string name="revanced_hide_stop_ads_button_title">Slēpt Pārtraukt reklāmas</string>
<string name="revanced_hide_stop_ads_button_summary_on">Apturēt reklāmas poga ir paslēpta</string>
<string name="revanced_hide_stop_ads_button_summary_off">Apturēt reklāmas poga ir redzama</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Slēpt komentārus</string>
<string name="revanced_hide_comments_button_summary_on">Komentāru poga ir paslēpta</string>
<string name="revanced_hide_comments_button_summary_off">Komentāru poga ir redzama</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Paslēpt Ziņot</string>
@ -1243,8 +1247,9 @@ Tas mainīs lietotnes izskatu un funkcijas, taču var rasties nezināmas blakusp
Ja vēlāk tiks izslēgts, ieteicams notīrīt lietotnes datus, lai novērstu lietotāja saskarnes kļūdas."</string>
<string name="revanced_spoof_app_version_target_title">Viltot lietotnes versijas mērķis</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Atjaunot vecās Shorts spēlētāja ikonas</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Atjaunot vecās navigācijas ikonas</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Atjaunot nesaspiestu video darbību joslu</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Atjaunot vecās Shorts spēlētāja ikonas</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Atjaunot vecās navigācijas ikonas</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Mainīt sākuma lapu</string>
@ -1560,12 +1565,15 @@ Var tikt atbloķētas augstākas video kvalitātes, taču var rasties video atsk
<string name="revanced_spoof_video_streams_about_experimental">• Eksperimentāls klients un jebkurā brīdī var pārtraukt darbu</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Nav pieejams AV1 video kodeks</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Bērnu videoklipi var netikt atskaņoti, kad esat izrakstījies vai inkognito režīmā.</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Piespiest oriģinālo skaņu nav pieejams</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Rādīt statistiskos datos entuziastiem</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Klienta tips tiek rādīts statistiskos datos entuziastiem</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Klients ir paslēpts statistiskos datos entuziastiem</string>
<string name="revanced_spoof_video_streams_language_title">Audio straumes valoda</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Lai atlasītu konkrētu audio valodu, izslēdziet “Piespiest oriģinālo audio valodu”</string>
<string name="revanced_spoof_video_streams_language_android_studio">Straumju valodas izvēle nav pieejama ar Android Studio</string>
</patch>
</app>
<app id="music">
@ -1600,23 +1608,23 @@ Var tikt atbloķētas augstākas video kvalitātes, taču var rasties video atsk
<string name="revanced_music_navigation_bar_screen_title">Navigācijas josla</string>
<string name="revanced_music_navigation_bar_screen_summary">Slēpt vai mainīt navigācijas joslas pogas</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Slēpt pogu Sākums</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Paslēpt Sākumlapu</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Poga Sākums ir paslēpta</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Poga Sākums ir redzama</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Slēpt pogu Paraugi</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Paslēpt Īsos klipus</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Poga Paraugi ir paslēpta</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Poga Paraugi ir redzama</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Slēpt pogu Izpētīt</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Slēpt Izpētīt</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Poga Izpētīt ir paslēpta</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Poga Izpētīt ir redzama</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Slēpt pogu Bibliotēka</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Slēpt bibliotēku</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Poga Bibliotēka ir paslēpta</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Poga Bibliotēka ir redzama</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Slēpt pogu Jaunināt</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Slēpt jaunināšanu</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Poga Jaunināt ir paslēpta</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Poga Jaunināt ir redzama</string>
<string name="revanced_music_hide_navigation_bar_title">Slēpt navigācijas joslu</string>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -244,6 +245,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -91,6 +91,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -245,6 +246,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -107,6 +107,15 @@ Afspeelproblemen kunnen optreden"</string>
<string name="revanced_debug_title">Debuglogboek</string>
<string name="revanced_debug_summary_on">Debuglogboeken zijn ingeschakeld</string>
<string name="revanced_debug_summary_off">Debuglogboeken zijn uitgeschakeld</string>
<string name="revanced_debug_stacktrace_title">Stacktraces loggen</string>
<string name="revanced_debug_stacktrace_summary_on">Debuglogboeken bevatten stacktrace</string>
<string name="revanced_debug_stacktrace_summary_off">Debuglogs bevatten geen stacktrace</string>
<string name="revanced_debug_toast_on_error_title">Toon toastmelding bij ReVanced error</string>
<string name="revanced_debug_toast_on_error_summary_on">Toastmelding wordt weergegeven als er een fout optreedt</string>
<string name="revanced_debug_toast_on_error_summary_off">Toastmelding wordt niet weergegeven als er een fout optreedt</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Het uitschakelen van foutmeldingen verbergt alle ReVanced-foutmeldingen.
U wordt niet op de hoogte gesteld van onverwachte gebeurtenissen."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Foutopsporingslogboeken exporteren</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Kopieert ReVanced-foutopsporingslogboeken naar het klembord</string>
<string name="revanced_debug_logs_disabled">Foutopsporing is uitgeschakeld</string>
@ -151,15 +160,6 @@ Afspeelproblemen kunnen optreden"</string>
Dit kan helpen bij het identificeren van componenten bij het maken van aangepaste filters.
Als u dit inschakelt, worden echter ook bepaalde gebruikersgegevens, zoals uw IP-adres, vastgelegd."</string>
<string name="revanced_debug_stacktrace_title">Stacktraces loggen</string>
<string name="revanced_debug_stacktrace_summary_on">Debuglogboeken bevatten stacktrace</string>
<string name="revanced_debug_stacktrace_summary_off">Debuglogs bevatten geen stacktrace</string>
<string name="revanced_debug_toast_on_error_title">Toon toastmelding bij ReVanced error</string>
<string name="revanced_debug_toast_on_error_summary_on">Toastmelding wordt weergegeven als er een fout optreedt</string>
<string name="revanced_debug_toast_on_error_summary_off">Toastmelding wordt niet weergegeven als er een fout optreedt</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Het uitschakelen van foutmeldingen verbergt alle ReVanced-foutmeldingen.
U wordt niet op de hoogte gesteld van onverwachte gebeurtenissen."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Verberg albumkaarten</string>
@ -586,6 +586,10 @@ Pas het volume aan door verticaal over de rechterkant van het scherm te vegen"</
<string name="revanced_hide_stop_ads_button_title">Advertenties stoppen verbergen</string>
<string name="revanced_hide_stop_ads_button_summary_on">Knop \"Advertenties stoppen\" is verborgen</string>
<string name="revanced_hide_stop_ads_button_summary_off">Knop \"Advertenties stoppen\" is zichtbaar</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Reacties verbergen</string>
<string name="revanced_hide_comments_button_summary_on">De reactieknop is verborgen</string>
<string name="revanced_hide_comments_button_summary_off">De reactieknop wordt weergegeven</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Melden verbergen</string>
@ -1242,8 +1246,9 @@ Dit zal het uiterlijk en de functies van de app veranderen, maar er kunnen onbek
Als het later wordt uitgeschakeld, wordt aanbevolen om de app-gegevens te wissen om UI-fouten te voorkomen."</string>
<string name="revanced_spoof_app_version_target_title">Doel voor vervalsen app-versie</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Herstel oude pictogrammen voor Shorts-speler</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Herstel oude navigatie-iconen</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Herstel niet-ingeklapte videobalk</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Herstel oude pictogrammen voor Shorts-speler</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Herstel oude navigatie-iconen</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Startpagina wijzigen</string>
@ -1557,12 +1562,15 @@ Het inschakelen hiervan kan hogere videokwaliteiten ontgrendelen"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Experimentele client en kan elk moment stoppen met werken</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Geen AV1-videocodec</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• \"Kinder\"-Videos worden mogelijk niet afgespeeld wanneer u bent uitgelogd of de incognitomodus gebruikt</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Oorspronkelijke audio forceren is niet beschikbaar</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Weergeven in Stats for nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Het clienttype wordt getoond in Stats for nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Client is verborgen in Stats for nerds</string>
<string name="revanced_spoof_video_streams_language_title">Audiostreamtaal</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Om een specifieke audiotaal te selecteren, schakel \"Oorspronkelijke audiotaal forceren\" uit</string>
<string name="revanced_spoof_video_streams_language_android_studio">Streamtaalselectie is niet beschikbaar met Android Studio</string>
</patch>
</app>
<app id="music">
@ -1597,23 +1605,23 @@ Het inschakelen hiervan kan hogere videokwaliteiten ontgrendelen"</string>
<string name="revanced_music_navigation_bar_screen_title">Navigatiebalk</string>
<string name="revanced_music_navigation_bar_screen_summary">Navigatiebalkknoppen verbergen of wijzigen</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Startknop verbergen</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Startpagina verbergen</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Startknop is verborgen</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Startknop wordt weergegeven</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Knop Voorbeelden verbergen</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Fragmenten verbergen</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Knop Voorbeelden is verborgen</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Knop Voorbeelden wordt weergegeven</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Knop Ontdekken verbergen</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Verberg Ontdekken</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Knop Ontdekken is verborgen</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Knop Ontdekken wordt weergegeven</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Knop Bibliotheek verbergen</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Verberg Bibliotheek</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Knop Bibliotheek is verborgen</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Knop Bibliotheek wordt weergegeven</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Upgrade-knop verbergen</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Verberg Upgraden</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Upgrade-knop is verborgen</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Upgrade-knop wordt weergegeven</string>
<string name="revanced_music_hide_navigation_bar_title">Navigatiebalk verbergen</string>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -107,6 +107,15 @@ Odtwarzanie może nie działać"</string>
<string name="revanced_debug_title">Logi do debugowania</string>
<string name="revanced_debug_summary_on">Logi debugowania są włączone</string>
<string name="revanced_debug_summary_off">Logi debugowania są wyłączone</string>
<string name="revanced_debug_stacktrace_title">Logi śladów stosów</string>
<string name="revanced_debug_stacktrace_summary_on">Logi do debugowania zawierają ślady stosów</string>
<string name="revanced_debug_stacktrace_summary_off">Logi do debugowania nie zawierają śladów stosów</string>
<string name="revanced_debug_toast_on_error_title">Komunikaty o błędach ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Wyświetlany jest toast, jeśli wystąpi błąd</string>
<string name="revanced_debug_toast_on_error_summary_off">Toast nie jest wyświetlany, jeśli wystąpi błąd</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Wyłączenie notyfikacji błędów ukrywa wszystkie powiadomienia o błędach ReVanced.
Nie będziesz informowany o żadnych nieoczekiwanych zdarzeniach."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Eksportuj dzienniki debugowania</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Kopiuje dzienniki debugowania ReVanced do schowka</string>
<string name="revanced_debug_logs_disabled">Rejestrowanie debugowania jest wyłączone</string>
@ -147,15 +156,6 @@ Odtwarzanie może nie działać"</string>
<string name="revanced_debug_protobuffer_summary_on">Logi do debugowania zawierają bufory</string>
<string name="revanced_debug_protobuffer_summary_off">Logi do debugowania nie zawierają buforów</string>
<string name="revanced_debug_protobuffer_user_dialog_message">"Włączenie tego ustawienia spowoduje rejestrowanie dodatkowych danych układu, w tym tekstu na ekranie dla niektórych komponentów interfejsu użytkownika.\n\nMoże to pomóc w identyfikacji komponentów podczas tworzenia filtrów niestandardowych.\n\nWłączenie tej opcji spowoduje jednak również rejestrowanie niektórych danych użytkownika, takich jak adres IP."</string>
<string name="revanced_debug_stacktrace_title">Logi śladów stosów</string>
<string name="revanced_debug_stacktrace_summary_on">Logi do debugowania zawierają ślady stosów</string>
<string name="revanced_debug_stacktrace_summary_off">Logi do debugowania nie zawierają śladów stosów</string>
<string name="revanced_debug_toast_on_error_title">Komunikaty o błędach ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Wyświetlany jest toast, jeśli wystąpi błąd</string>
<string name="revanced_debug_toast_on_error_summary_off">Toast nie jest wyświetlany, jeśli wystąpi błąd</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Wyłączenie notyfikacji błędów ukrywa wszystkie powiadomienia o błędach ReVanced.
Nie będziesz informowany o żadnych nieoczekiwanych zdarzeniach."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Ukryj karty albumów</string>
@ -582,6 +582,10 @@ Dostosuj głośność, przesuwając pionowo po prawej stronie ekranu"</string>
<string name="revanced_hide_stop_ads_button_title">Ukryj \"Zatrzymaj reklamy\"</string>
<string name="revanced_hide_stop_ads_button_summary_on">Przycisk zatrzymania reklam jest ukryty</string>
<string name="revanced_hide_stop_ads_button_summary_off">Przycisk zatrzymania reklam jest widoczny</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Ukryj komentarze</string>
<string name="revanced_hide_comments_button_summary_on">Przycisk komentarzy jest ukryty</string>
<string name="revanced_hide_comments_button_summary_off">Przycisk komentarzy jest widoczny</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Przycisk od zgłaszania</string>
@ -1238,8 +1242,9 @@ Spowoduje to zmianę wyglądu i funkcjonalności aplikacji, ale mogą wystąpić
Jeśli później zostanie wyłączony, zaleca się wyczyszczenie danych aplikacji, aby zapobiec błędom interfejsu użytkownika."</string>
<string name="revanced_spoof_app_version_target_title">Docelowa oszukiwana wersja aplikacji</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Przywraca stare ikony odtwarzacza Shortsów</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 Przywróć stare ikony nawigacji</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Przywróć niezwinięty pasek akcji wideo</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Przywraca stare ikony odtwarzacza Shortsów</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 Przywróć stare ikony nawigacji</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Zmień stronę startową</string>
@ -1555,12 +1560,15 @@ Włączenie tego może odblokować wyższe jakości wideo"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Eksperymentalny klient i może przestać działać w każdej chwili</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Žádný video kodek AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Filmy dla dzieci mogą nie być odtwarzane po wylogowaniu lub w trybie incognito</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Wymuś oryginalny dźwięk jest niedostępny</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Pokaż w statystykach dla nerdów</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Typ klienta jest wyświetlany w Statystykach dla nerdów</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Klient jest ukryty w statystykach dla nerdów</string>
<string name="revanced_spoof_video_streams_language_title">Język strumienia audio</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Aby wybrać konkretny język audio, wyłącz \"Wymuś oryginalny język audio\"</string>
<string name="revanced_spoof_video_streams_language_android_studio">Wybór języka strumienia nie jest dostępny w przypadku Android Studio</string>
</patch>
</app>
<app id="music">
@ -1595,23 +1603,23 @@ Włączenie tego może odblokować wyższe jakości wideo"</string>
<string name="revanced_music_navigation_bar_screen_title">Pasek nawigacji</string>
<string name="revanced_music_navigation_bar_screen_summary">Ukryj lub zmień przyciski paska nawigacji</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Ukryj przycisk Główna</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Ukryj Główną</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Przycisk Główna jest ukryty</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Przycisk Główna jest pokazany</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Ukryj przycisk Wycinki</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Ukryj Fragmenty</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Przycisk Wycinki jest ukryty</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Przycisk Wycinki jest pokazany</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Ukryj przycisk Przeglądaj</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Ukryj Odkrywaj</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Przycisk Przeglądaj jest ukryty</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Przycisk Przeglądaj jest pokazany</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Ukryj przycisk Biblioteka</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Ukryj Bibliotekę</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Przycisk Biblioteka jest ukryty</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Przycisk Biblioteka jest pokazany</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Ukryj przycisk Ulepsz</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Ukryj Ulepsz</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Przycisk Ulepsz jest ukryty</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Przycisk Ulepsz jest pokazany</string>
<string name="revanced_music_hide_navigation_bar_title">Ukryj pasek nawigacji</string>

View file

@ -107,6 +107,15 @@ A reprodução pode não funcionar"</string>
<string name="revanced_debug_title">Registro de depuração</string>
<string name="revanced_debug_summary_on">Registro de depuração está ativado</string>
<string name="revanced_debug_summary_off">Registro de depuração está desativado</string>
<string name="revanced_debug_stacktrace_title">Registro de rastreamento em pilha</string>
<string name="revanced_debug_stacktrace_summary_on">Registro de depuração incluem rastreamento em pilha</string>
<string name="revanced_debug_stacktrace_summary_off">Registro de depuração não incluem rastreamento em pilha</string>
<string name="revanced_debug_toast_on_error_title">Mostrar notificação flutuante de erro do ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">O toast é exibido se ocorrer um erro</string>
<string name="revanced_debug_toast_on_error_summary_off">O toast não é exibido se ocorrer um erro</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Desligar as notificações de erro oculta todas as notificações de erro do ReVanced.
Você não será notificado sobre nenhum evento inesperado."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Exportar registros de depuração</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Copia os registros de depuração do ReVanced para a área de transferência</string>
<string name="revanced_debug_logs_disabled">O registro de depuração está desativado</string>
@ -151,15 +160,6 @@ A reprodução pode não funcionar"</string>
Isso pode ajudar a identificar componentes ao criar filtros personalizados.
No entanto, ativar isso também registrará alguns dados do usuário, como seu endereço IP."</string>
<string name="revanced_debug_stacktrace_title">Registro de rastreamento em pilha</string>
<string name="revanced_debug_stacktrace_summary_on">Registro de depuração incluem rastreamento em pilha</string>
<string name="revanced_debug_stacktrace_summary_off">Registro de depuração não incluem rastreamento em pilha</string>
<string name="revanced_debug_toast_on_error_title">Mostrar notificação flutuante de erro do ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">O toast é exibido se ocorrer um erro</string>
<string name="revanced_debug_toast_on_error_summary_off">O toast não é exibido se ocorrer um erro</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Desligar as notificações de erro oculta todas as notificações de erro do ReVanced.
Você não será notificado sobre nenhum evento inesperado."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Ocultar cartões de álbum</string>
@ -586,6 +586,10 @@ Ajuste o volume deslizando verticalmente no lado direito da tela"</string>
<string name="revanced_hide_stop_ads_button_title">Ocultar \"Parar anúncios\"</string>
<string name="revanced_hide_stop_ads_button_summary_on">O botão Parar anúncios está oculto</string>
<string name="revanced_hide_stop_ads_button_summary_off">O botão Parar anúncios é exibido</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Ocultar Comentários</string>
<string name="revanced_hide_comments_button_summary_on">Botão de comentários está oculto</string>
<string name="revanced_hide_comments_button_summary_off">Botão de comentários está visível</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Ocultar Denúncia</string>
@ -1239,8 +1243,9 @@ Isso mudará a aparência e os recursos do aplicativo, mas podem ocorrer efeitos
Se posteriormente desativado, é recomendável limpar os dados do aplicativo para evitar bugs na IU."</string>
<string name="revanced_spoof_app_version_target_title">Versão de spoofing alvo</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Restaurar ícones antigos do player dos Shorts</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Restaurar ícones de navegação antigos</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Restaurar barra de ações de vídeo não recolhida</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Restaurar ícones antigos do player dos Shorts</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Restaurar ícones de navegação antigos</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Alterar página inicial</string>
@ -1556,12 +1561,15 @@ Habilitar isso pode desbloquear qualidades de vídeo mais altas"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Cliente experimental e pode parar de funcionar a qualquer momento</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Sem codec de vídeo AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Vídeos infantis podem não ser reproduzidos quando estiver desconectado ou no modo de navegação anônima</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Forçar áudio original não está disponível</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Mostrar em Estatísticas para nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">O tipo de cliente é mostrado em Estatísticas para nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">O cliente está oculto em Estatísticas para nerds</string>
<string name="revanced_spoof_video_streams_language_title">Idioma do fluxo de áudio</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Para selecionar um idioma de áudio específico, desative \"Forçar idioma de áudio original\"</string>
<string name="revanced_spoof_video_streams_language_android_studio">A seleção de idioma do stream não está disponível com o Android Studio</string>
</patch>
</app>
<app id="music">
@ -1596,23 +1604,23 @@ Habilitar isso pode desbloquear qualidades de vídeo mais altas"</string>
<string name="revanced_music_navigation_bar_screen_title">Barra de navegação</string>
<string name="revanced_music_navigation_bar_screen_summary">Ocultar ou alterar botões da barra de navegação</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Ocultar botão Início</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Ocultar Início</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Botão Início oculto</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Botão Início visível</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Ocultar botão Amostras</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Ocultar Amostras</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Botão Amostras oculto</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Botão Amostras visível</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Ocultar botão Explorar</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Ocultar Explorar</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Botão Explorar oculto</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Botão Explorar visível</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Ocultar botão Biblioteca</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Ocultar Biblioteca</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Botão Biblioteca oculto</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Botão Biblioteca visível</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Ocultar botão Fazer upgrade</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Ocultar Atualizar</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Botão Fazer upgrade oculto</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Botão Fazer upgrade visível</string>
<string name="revanced_music_hide_navigation_bar_title">Ocultar barra de navegação</string>

View file

@ -107,6 +107,15 @@ A reprodução pode não funcionar"</string>
<string name="revanced_debug_title">Registo da depuração</string>
<string name="revanced_debug_summary_on">Os registos da depuração estão ativados</string>
<string name="revanced_debug_summary_off">Os registos da depuração estão desativados</string>
<string name="revanced_debug_stacktrace_title">Pilha de registos</string>
<string name="revanced_debug_stacktrace_summary_on">Os registos da depuração incluem stack trace</string>
<string name="revanced_debug_stacktrace_summary_off">Os registos da depuração não incluem stack trace</string>
<string name="revanced_debug_toast_on_error_title">Mostrar toast com erro de ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">O toast é exibido se ocorrer um erro</string>
<string name="revanced_debug_toast_on_error_summary_off">O toast não é exibido se ocorrer um erro</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"A desativação dos erros toasts oculta todas as notificações de erro do ReVanced.
Não será notificado de quaisquer eventos inesperados."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Exportar registos de depuração</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Copia os registos de depuração do ReVanced para a área de transferência</string>
<string name="revanced_debug_logs_disabled">O registo de depuração está desativado</string>
@ -151,15 +160,6 @@ A reprodução pode não funcionar"</string>
Isto pode ajudar a identificar componentes ao criar filtros personalizados.
No entanto, ativar isto também irá registar alguns dados do utilizador, como o seu endereço IP."</string>
<string name="revanced_debug_stacktrace_title">Pilha de registos</string>
<string name="revanced_debug_stacktrace_summary_on">Os registos da depuração incluem stack trace</string>
<string name="revanced_debug_stacktrace_summary_off">Os registos da depuração não incluem stack trace</string>
<string name="revanced_debug_toast_on_error_title">Mostrar toast com erro de ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">O toast é exibido se ocorrer um erro</string>
<string name="revanced_debug_toast_on_error_summary_off">O toast não é exibido se ocorrer um erro</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"A desativação dos erros toasts oculta todas as notificações de erro do ReVanced.
Não será notificado de quaisquer eventos inesperados."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Esconder cartões de álbuns</string>
@ -586,6 +586,10 @@ Ajuste o volume deslizando verticalmente no lado direito da tela"</string>
<string name="revanced_hide_stop_ads_button_title">Ocultar Parar anúncios</string>
<string name="revanced_hide_stop_ads_button_summary_on">O botão Parar anúncios está oculto</string>
<string name="revanced_hide_stop_ads_button_summary_off">O botão Parar anúncios está exibido</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Ocultar Comentários</string>
<string name="revanced_hide_comments_button_summary_on">O botão de comentários está oculto</string>
<string name="revanced_hide_comments_button_summary_off">O botão de comentários está exibido</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Esconder relatório</string>
@ -1242,8 +1246,9 @@ Layout automotivo
Nếu sau này tắt, bạn nên xóa dữ liệu ứng dụng để tránh lỗi UI."</string>
<string name="revanced_spoof_app_version_target_title">Destaque de versão do app</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Restaurar os icones antigos do reprodutor dos Shorts</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Restaurar ícones antigos de navegação</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Restaurar barra de ação de vídeo não recolhida</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Restaurar os icones antigos do reprodutor dos Shorts</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Restaurar ícones antigos de navegação</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Alterar página inicial</string>
@ -1559,12 +1564,15 @@ Bật tính năng này có thể mở khóa chất lượng video cao hơn"</str
<string name="revanced_spoof_video_streams_about_experimental">• Cliente experimental e pode parar de funcionar a qualquer momento</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Nenhum codec de vídeo AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Vídeos infantis podem não ser reproduzidos quando desconectado ou no modo anônimo</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Forçar áudio original não está disponível</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Mostrar em Estatísticas para nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">O tipo de cliente é mostrado em Estatísticas para nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">O cliente está oculto em Estatísticas para nerds</string>
<string name="revanced_spoof_video_streams_language_title">Idioma do fluxo de áudio</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Para selecionar um idioma de áudio específico, desative \'Forçar idioma de áudio original\'</string>
<string name="revanced_spoof_video_streams_language_android_studio">A seleção do idioma do stream não está disponível com o Android Studio</string>
</patch>
</app>
<app id="music">
@ -1599,23 +1607,23 @@ Bật tính năng này có thể mở khóa chất lượng video cao hơn"</str
<string name="revanced_music_navigation_bar_screen_title">Barra de navegação</string>
<string name="revanced_music_navigation_bar_screen_summary">Ocultar ou alterar botões da barra de navegação</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Ocultar botão Início</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Ocultar Início</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Botão Início está oculto</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Botão Início está exibido</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Ocultar botão Amostras</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Ocultar Curtos</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Botão Amostras está oculto</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Botão Amostras está exibido</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Ocultar botão Explorar</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Ocultar Explorar</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Botão Explorar está oculto</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Botão Explorar está exibido</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Ocultar botão Biblioteca</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Ocultar Biblioteca</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Botão Biblioteca está oculto</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Botão Biblioteca está exibido</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Ocultar botão Fazer upgrade</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Ocultar Premium</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Botão Fazer upgrade está oculto</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Botão Fazer upgrade está exibido</string>
<string name="revanced_music_hide_navigation_bar_title">Ocultar barra de navegação</string>

View file

@ -107,6 +107,15 @@ Redarea poate să nu funcționeze"</string>
<string name="revanced_debug_title">Jurnal depanare</string>
<string name="revanced_debug_summary_on">Jurnalele de depanare sunt activate</string>
<string name="revanced_debug_summary_off">Jurnalele de depanare sunt dezactivate</string>
<string name="revanced_debug_stacktrace_title">Urme stive de jurnal</string>
<string name="revanced_debug_stacktrace_summary_on">Jurnalele depanării includ urmărirea stivelor</string>
<string name="revanced_debug_stacktrace_summary_off">Jurnalele de depanare nu includ urmărirea stivelor</string>
<string name="revanced_debug_toast_on_error_title">Arată toast la eroare ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Se afișează un toast dacă apare o eroare</string>
<string name="revanced_debug_toast_on_error_summary_off">Nu se afișează un toast dacă apare o eroare</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Oprirea toasturilor de eroare ascunde toate notificările de eroare ReVanced.
Nu veți fi notificat de niciun eveniment neașteptat."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Exportare jurnale de depanare</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Copiază jurnalele de depanare ReVanced în clipboard</string>
<string name="revanced_debug_logs_disabled">Înregistrarea în jurnal de depanare este dezactivată</string>
@ -151,15 +160,6 @@ Redarea poate să nu funcționeze"</string>
Acest lucru poate ajuta la identificarea componentelor atunci când creați filtre personalizate.
Cu toate acestea, activarea acestei opțiuni va înregistra și unele date ale utilizatorului, cum ar fi adresa dvs. IP."</string>
<string name="revanced_debug_stacktrace_title">Urme stive de jurnal</string>
<string name="revanced_debug_stacktrace_summary_on">Jurnalele depanării includ urmărirea stivelor</string>
<string name="revanced_debug_stacktrace_summary_off">Jurnalele de depanare nu includ urmărirea stivelor</string>
<string name="revanced_debug_toast_on_error_title">Arată toast la eroare ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Se afișează un toast dacă apare o eroare</string>
<string name="revanced_debug_toast_on_error_summary_off">Nu se afișează un toast dacă apare o eroare</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Oprirea toasturilor de eroare ascunde toate notificările de eroare ReVanced.
Nu veți fi notificat de niciun eveniment neașteptat."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Ascundeți cardurile de album</string>
@ -586,6 +586,10 @@ Reglați volumul glisând vertical pe partea dreaptă a ecranului"</string>
<string name="revanced_hide_stop_ads_button_title">Ascunde \'Oprește anunțurile\'</string>
<string name="revanced_hide_stop_ads_button_summary_on">Butonul de oprire a reclamelor este ascuns</string>
<string name="revanced_hide_stop_ads_button_summary_off">Butonul de oprire a reclamelor este afișat</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Ascunde comentariile</string>
<string name="revanced_hide_comments_button_summary_on">Butonul de comentarii este ascuns</string>
<string name="revanced_hide_comments_button_summary_off">Butonul de comentarii este afișat</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Ascunde raportul</string>
@ -1241,8 +1245,9 @@ Acest lucru va schimba aspectul și caracteristicile aplicației, dar pot apăre
Dacă este dezactivat ulterior, se recomandă să ștergeți datele aplicației pentru a preveni erorile UI."</string>
<string name="revanced_spoof_app_version_target_title">Țintă versiune falsificată a aplicației</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Restaurează pictogramele vechi ale playerului Shorts</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Restaurați pictogramele de navigare vechi</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Restabiliți bara de acțiune video necolapsată</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Restaurează pictogramele vechi ale playerului Shorts</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Restaurați pictogramele de navigare vechi</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Schimbă pagina de start</string>
@ -1558,12 +1563,15 @@ Activarea acestei opțiuni poate debloca calități video mai mari"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Client experimental și se poate opri din funcționare oricând</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Fara codec video AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Copiii nu pot urmări videoclipuri atunci când sunt deconectați sau în modul incognito</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Forțarea sunetului original nu este disponibilă</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Afișează în Statistici pentru pasionați</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Tipul clientului este afișat în Statistici pentru pasionați</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Clientul este ascuns în Statistici pentru pasionați</string>
<string name="revanced_spoof_video_streams_language_title">Limba fluxului audio</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Pentru a selecta o limbă audio specifică, dezactivați „Forțează limba audio originală”</string>
<string name="revanced_spoof_video_streams_language_android_studio">Selecția limbii fluxului nu este disponibilă cu Android Studio</string>
</patch>
</app>
<app id="music">
@ -1598,23 +1606,23 @@ Activarea acestei opțiuni poate debloca calități video mai mari"</string>
<string name="revanced_music_navigation_bar_screen_title">Bară de navigare</string>
<string name="revanced_music_navigation_bar_screen_summary">Ascundeți sau modificați butoanele barei de navigare</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Ascundeți butonul Acasă</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Ascunde Acasă</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Butonul Acasă este ascuns</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Butonul Acasă este afișat</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Ascundeți butonul Mostre</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Ascunde Mostre</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Butonul Mostre este ascuns</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Butonul Mostre este afișat</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Ascundeți butonul Explorare</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Ascundeți Explorare</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Butonul Explorare este ascuns</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Butonul Explorare este afișat</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Ascundeți butonul Bibliotecă</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Ascundeți Bibliotecă</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Butonul Bibliotecă este ascuns</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Butonul Bibliotecă este afișat</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Ascundeți butonul Upgrade</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Ascundeți Upgrade</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Butonul Upgrade este ascuns</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Butonul Upgrade este afișat</string>
<string name="revanced_music_hide_navigation_bar_title">Ascundeți bara de navigare</string>

View file

@ -107,6 +107,15 @@ Second \"item\" text"</string>
<string name="revanced_debug_title">Включить журналы отладки</string>
<string name="revanced_debug_summary_on">Журналы отладки включены</string>
<string name="revanced_debug_summary_off">Журналы отладки отключены</string>
<string name="revanced_debug_stacktrace_title">Журнал трассировки стека</string>
<string name="revanced_debug_stacktrace_summary_on">В журналы отладки включена трассировка стека</string>
<string name="revanced_debug_stacktrace_summary_off">В журналы отладки не включена трассировка стека</string>
<string name="revanced_debug_toast_on_error_title">Показать всплывающее уведомление при ошибке Revanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Всплывающее уведомление при возникновении ошибки Revanced показано</string>
<string name="revanced_debug_toast_on_error_summary_off">Всплывающее уведомление при возникновении ошибки Revanced скрыто</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Отключение всплывающих уведомлений об ошибках скроет все сообщения об ошибках ReVanced.
Вы не будете уведомлены о каких-либо непредвиденных событиях."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Экспортировать журналы отладки</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Копирует журналы отладки ReVanced в буфер обмена</string>
<string name="revanced_debug_logs_disabled">Журналы отладки отключены</string>
@ -151,15 +160,6 @@ Second \"item\" text"</string>
Это может помочь определить компоненты при создании пользовательских фильтров.
Однако включение этой функции также приведет к регистрации некоторых пользовательских данных, таких как ваш IP-адрес."</string>
<string name="revanced_debug_stacktrace_title">Журнал трассировки стека</string>
<string name="revanced_debug_stacktrace_summary_on">В журналы отладки включена трассировка стека</string>
<string name="revanced_debug_stacktrace_summary_off">В журналы отладки не включена трассировка стека</string>
<string name="revanced_debug_toast_on_error_title">Показать всплывающее уведомление при ошибке Revanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Всплывающее уведомление при возникновении ошибки Revanced показано</string>
<string name="revanced_debug_toast_on_error_summary_off">Всплывающее уведомление при возникновении ошибки Revanced скрыто</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Отключение всплывающих уведомлений об ошибках скроет все сообщения об ошибках ReVanced.
Вы не будете уведомлены о каких-либо непредвиденных событиях."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Скрыть карточки альбомов</string>
@ -586,6 +586,10 @@ Second \"item\" text"</string>
<string name="revanced_hide_stop_ads_button_title">Скрыть кнопку \"Не показывать рекламу\"</string>
<string name="revanced_hide_stop_ads_button_summary_on">Кнопка \"Не показывать рекламу\" скрыта</string>
<string name="revanced_hide_stop_ads_button_summary_off">Кнопка \"Не показывать рекламу\" показана</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Скрыть комментарии</string>
<string name="revanced_hide_comments_button_summary_on">Кнопка \"Комментарии\" в Shorts скрыта</string>
<string name="revanced_hide_comments_button_summary_off">Кнопка \"Комментарии\" в Shorts показана</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Скрыть кнопку \"Пожаловаться\"</string>
@ -1244,8 +1248,9 @@ Second \"item\" text"</string>
Если позже данный параметр будет отключен, рекомендуется очистить данные приложения для предотвращения проблем с пользовательским интерфейсом."</string>
<string name="revanced_spoof_app_version_target_title">Подменить версию приложения на</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Восстановление старых иконок плеера Shorts</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Восстановление старых иконок панели навигации</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Восстановить не свернутую панель действий видео</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Восстановление старых иконок плеера Shorts</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Восстановление старых иконок панели навигации</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Изменить начальную страницу</string>
@ -1566,12 +1571,15 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Экспериментальный клиент и может перестать работать в любое время</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Отсутствует видеокодек AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Видео для детей могут не воспроизводиться при выходе из системы или в режиме инкогнито</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Принудительная оригинальная звуковая дорожка недоступна</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Показать в \"Статистике для сисадминов\"</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Тип клиента в \"Статистике для сисадминов\" показан</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Тип клиента в \"Статистике для сисадминов\" скрыт</string>
<string name="revanced_spoof_video_streams_language_title">Язык аудиопотока</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Чтобы выбрать определенный язык аудио, отключите \"Принудительный язык оригинального аудио\"</string>
<string name="revanced_spoof_video_streams_language_android_studio">Выбор языка трансляции недоступен в Android Studio</string>
</patch>
</app>
<app id="music">
@ -1610,19 +1618,19 @@ Second \"item\" text"</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Кнопка \"Главная\" в панели навигации скрыта</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Кнопка \"Главная\" в панели навигации показана</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Скрыть кнопку \"Семплы\"</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Скрыть Сэмплы</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Кнопка \"Семплы\" скрыта</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Кнопка \"Семплы\" показана</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Скрыть кнопку \"Обзор\"</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Скрыть Обзор</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Кнопка \"Обзор\" скрыта</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Кнопка \"Обзор\" показана</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Скрыть кнопку \"Библиотека\"</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Скрыть Библиотеку</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Кнопка \"Библиотека\" скрыта</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Кнопка \"Библиотека\" показана</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Скрыть кнопку \"Премиум\"</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Скрыть Премиум</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Кнопка \"Премиум\" скрыта</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Кнопка \"Премиум\" показана</string>
<string name="revanced_music_hide_navigation_bar_title">Скрыть панель навигации</string>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -105,6 +105,15 @@ Prehrávanie nemusí fungovať"</string>
<string name="revanced_debug_title">Debug logovanie</string>
<string name="revanced_debug_summary_on">Denníky ladenia sú povolené</string>
<string name="revanced_debug_summary_off">Denníky ladenia sú zakázané</string>
<string name="revanced_debug_stacktrace_title">Zaznamenať stopy zásobníka</string>
<string name="revanced_debug_stacktrace_summary_on">Denníky ladenia obsahujú sledovanie zásobníka</string>
<string name="revanced_debug_stacktrace_summary_off">Denníky ladenia neobsahujú sledovanie zásobníka</string>
<string name="revanced_debug_toast_on_error_title">Zobraziť toast pri chybe ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Ak sa vyskytne chyba, zobrazí sa upozornenie toast</string>
<string name="revanced_debug_toast_on_error_summary_off">Ak sa vyskytne chyba, nezobrazí sa upozornenie toast</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Vypnutie upozornení o chybách skryje všetky upozornenia o chybách v ReVanced.
Nebudete informovaní o žiadnych nepredvídaných udalostiach."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Exportovať protokoly ladenia</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Skopíruje protokoly ladenia ReVanced do schránky</string>
<string name="revanced_debug_logs_disabled">Protokolovanie ladenia je vypnuté</string>
@ -149,15 +158,6 @@ Prehrávanie nemusí fungovať"</string>
Toto môže pomôcť identifikovať komponenty pri vytváraní vlastných filtrov.
Povolením tejto funkcie sa však budú zaznamenávať aj niektoré používateľské údaje, ako napríklad vaša IP adresa."</string>
<string name="revanced_debug_stacktrace_title">Zaznamenať stopy zásobníka</string>
<string name="revanced_debug_stacktrace_summary_on">Denníky ladenia obsahujú sledovanie zásobníka</string>
<string name="revanced_debug_stacktrace_summary_off">Denníky ladenia neobsahujú sledovanie zásobníka</string>
<string name="revanced_debug_toast_on_error_title">Zobraziť toast pri chybe ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Ak sa vyskytne chyba, zobrazí sa upozornenie toast</string>
<string name="revanced_debug_toast_on_error_summary_off">Ak sa vyskytne chyba, nezobrazí sa upozornenie toast</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Vypnutie upozornení o chybách skryje všetky upozornenia o chybách v ReVanced.
Nebudete informovaní o žiadnych nepredvídaných udalostiach."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Skryť karty albumov</string>
@ -584,6 +584,10 @@ Upravte hlasitosť posúvaním vertikálne na pravej strane obrazovky"</string>
<string name="revanced_hide_stop_ads_button_title">Skryť Zastaviť reklamy</string>
<string name="revanced_hide_stop_ads_button_summary_on">Tlačidlo Zastaviť reklamy je skryté</string>
<string name="revanced_hide_stop_ads_button_summary_off">Tlačidlo Zastaviť reklamy je zobrazené</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Skryť komentáre</string>
<string name="revanced_hide_comments_button_summary_on">Tlačidlo komentárov je skryté</string>
<string name="revanced_hide_comments_button_summary_off">Tlačidlo komentárov je zobrazené</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Skryť prehľad</string>
@ -1237,8 +1241,9 @@ Zmení sa vzhľad a funkcie aplikácie, ale môžu sa vyskytnúť neznáme vedľ
Ak sa neskôr vypne, odporúča sa vymazať údaje aplikácie, aby sa zabránilo chybám používateľského rozhrania."</string>
<string name="revanced_spoof_app_version_target_title">Falošná cieľová verzia aplikácie</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Obnoviť staré ikony Shorts prehrávača</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 Obnoviť staré ikony navigácie</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Obnoviť nerozbalený panel akcií videa</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Obnoviť staré ikony Shorts prehrávača</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 Obnoviť staré ikony navigácie</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Zmeniť úvodnú stránku</string>
@ -1552,12 +1557,15 @@ Povolením tejto možnosti môžete odomknúť vyššie kvality videa"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Experimentálny klient a môže kedykoľvek prestať fungovať</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Žiadny video kodek AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Videá pre deti sa nemusia prehrávať, keď ste odhlásení alebo v režime inkognito</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Vynútenie pôvodného zvuku nie je k dispozícii</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Zobraziť v štatistike pre expertov</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Typ klienta sa zobrazuje v štatistikách pre expertov</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Klient je skrytý v štatistikách pre expertov</string>
<string name="revanced_spoof_video_streams_language_title">Jazyk zvukového streamu</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Ak chcete vybrať konkrétny jazyk zvuku, vypnite „Vynútiť pôvodný jazyk zvuku“</string>
<string name="revanced_spoof_video_streams_language_android_studio">Výber jazyka streamu nie je k dispozícii v aplikácii Android Studio</string>
</patch>
</app>
<app id="music">
@ -1592,23 +1600,23 @@ Povolením tejto možnosti môžete odomknúť vyššie kvality videa"</string>
<string name="revanced_music_navigation_bar_screen_title">Navigačný panel</string>
<string name="revanced_music_navigation_bar_screen_summary">Skryť alebo zmeniť tlačidlá navigačného panela</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Skryť tlačidlo Domov</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Skryť Domov</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Tlačidlo Domov je skryté</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Tlačidlo Domov je zobrazené</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Skryť tlačidlo Ukážky</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Skryť Ukážky</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Tlačidlo Ukážky je skryté</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Tlačidlo Ukážky je zobrazené</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Skryť tlačidlo Preskúmať</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Skryť Preskúmať</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Tlačidlo Preskúmať je skryté</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Tlačidlo Preskúmať je zobrazené</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Skryť tlačidlo Knižnica</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Skryť Knižnicu</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Tlačidlo Knižnica je skryté</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Tlačidlo Knižnica je zobrazené</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Skryť tlačidlo Inovovať</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Skryť Vylepšiť</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Tlačidlo Inovovať je skryté</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Tlačidlo Inovovať je zobrazené</string>
<string name="revanced_music_hide_navigation_bar_title">Skryť navigačný panel</string>

View file

@ -107,6 +107,15 @@ Predvajanje morda ne bo delovalo"</string>
<string name="revanced_debug_title">Dnevnik napak</string>
<string name="revanced_debug_summary_on">Dnevniki napak so omogočeni</string>
<string name="revanced_debug_summary_off">Dnevniki napak so onemogočeni</string>
<string name="revanced_debug_stacktrace_title">Dnevnik sledov steka</string>
<string name="revanced_debug_stacktrace_summary_on">Dnevniki napak vključujejo sled sledov</string>
<string name="revanced_debug_stacktrace_summary_off">Dnevniki napak ne vključujejo sledi sledov</string>
<string name="revanced_debug_toast_on_error_title">Prikaži obvestilo pri napaki ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Če pride do napake, se prikaže toast</string>
<string name="revanced_debug_toast_on_error_summary_off">Če pride do napake, se toast ne prikaže</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Onemogočanje obvestil o napakah skrije vsa obvestila o napakah v ReVancedu.
Ne boste obveščeni o nobenih nepričakovanih dogodkih."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Izvozi dnevnike napak</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Kopira dnevnike napak ReVanced v odložišče</string>
<string name="revanced_debug_logs_disabled">Beleženje napak je onemogočeno</string>
@ -151,15 +160,6 @@ Predvajanje morda ne bo delovalo"</string>
To lahko pomaga prepoznati komponente pri ustvarjanju filtrov po meri.
Vendar pa bo omogočitev tega beležila tudi nekatere uporabniške podatke, kot je vaš naslov IP."</string>
<string name="revanced_debug_stacktrace_title">Dnevnik sledov steka</string>
<string name="revanced_debug_stacktrace_summary_on">Dnevniki napak vključujejo sled sledov</string>
<string name="revanced_debug_stacktrace_summary_off">Dnevniki napak ne vključujejo sledi sledov</string>
<string name="revanced_debug_toast_on_error_title">Prikaži obvestilo pri napaki ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Če pride do napake, se prikaže toast</string>
<string name="revanced_debug_toast_on_error_summary_off">Če pride do napake, se toast ne prikaže</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Onemogočanje obvestil o napakah skrije vsa obvestila o napakah v ReVancedu.
Ne boste obveščeni o nobenih nepričakovanih dogodkih."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Skrij kartice albuma</string>
@ -586,6 +586,10 @@ Prilagodite glasnost s potegom navpično na desni strani zaslona"</string>
<string name="revanced_hide_stop_ads_button_title">Skrij Ustavi oglase</string>
<string name="revanced_hide_stop_ads_button_summary_on">Gumb za zaustavitev oglasov je skrit</string>
<string name="revanced_hide_stop_ads_button_summary_off">Gumb za zaustavitev oglasov je prikazan</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Skrij komentarje</string>
<string name="revanced_hide_comments_button_summary_on">Gumb za komentarje je skrit</string>
<string name="revanced_hide_comments_button_summary_off">Gumb za komentarje je prikazan</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Skrij Prijavi</string>
@ -1241,8 +1245,9 @@ To bo spremenilo videz in funkcije aplikacije, vendar se lahko pojavijo neznani
Če ga kasneje izklopite, je priporočljivo počistiti podatke aplikacije, da preprečite napake uporabniškega vmesnika."</string>
<string name="revanced_spoof_app_version_target_title">Cilj spoofa različice aplikacije</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Obnovi stare ikone predvajalnika Shorts</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 Obnovi stare ikone za krmarjenje</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Obnovi nezloženo video akcijsko vrstico</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Obnovi stare ikone predvajalnika Shorts</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 Obnovi stare ikone za krmarjenje</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Spremeni začetno stran</string>
@ -1559,12 +1564,15 @@ Omogočanje tega lahko odklene višje kakovosti videa"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Eksperimentalni odjemalec in lahko kadar koli preneha delovati</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Brez kodeka videa AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Posnetki za otroke se mogoče ne bodo predvajali, ko ste odjavljeni ali v načinu brez beleženja zgodovine</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Vsili izvirni zvok ni na voljo</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Pokaži v statistiki za piflarje</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Vrsta odjemalca je prikazana v statistiki za piflarje</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Odjemalec je skrit v statistiki za piflarje</string>
<string name="revanced_spoof_video_streams_language_title">Jezik zvočnega toka</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Za izbiro določenega zvočnega jezika izklopite \'Vsili izvirni zvočni jezik\'</string>
<string name="revanced_spoof_video_streams_language_android_studio">Izbira jezika pretakanja ni na voljo z Android Studio</string>
</patch>
</app>
<app id="music">
@ -1599,23 +1607,23 @@ Omogočanje tega lahko odklene višje kakovosti videa"</string>
<string name="revanced_music_navigation_bar_screen_title">Navigacijska vrstica</string>
<string name="revanced_music_navigation_bar_screen_summary">Skrij ali spremeni gumbe navigacijske vrstice</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Skrij gumb Domov</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Skrij Domov</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Gumb Domov je skrit</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Gumb Domov je prikazan</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Skrij gumb Vzorci</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Skrij Vzorci</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Gumb Vzorci je skrit</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Gumb Vzorci je prikazan</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Skrij gumb Raziskovanje</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Skrij Raziskovanje</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Gumb Raziskovanje je skrit</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Gumb Raziskovanje je prikazan</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Skrij gumb Knjižnica</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Skrij Knjižnico</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Gumb Knjižnica je skrit</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Gumb Knjižnica je prikazan</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Skrij gumb Nadgradi</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Skrij Nadgradnjo</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Gumb Nadgradi je skrit</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Gumb Nadgradi je prikazan</string>
<string name="revanced_music_hide_navigation_bar_title">Skrij navigacijsko vrstico</string>

View file

@ -107,6 +107,15 @@ Riprodhimi mund të mos funksionojë"</string>
<string name="revanced_debug_title">Regjistrimi i depurimit</string>
<string name="revanced_debug_summary_on">Regjistrimet e depurimit janë të aktivizuara</string>
<string name="revanced_debug_summary_off">Regjistrimet e depurimit janë të çaktivizuara</string>
<string name="revanced_debug_stacktrace_title">Regjistro gjurmët e grumbullimit</string>
<string name="revanced_debug_stacktrace_summary_on">Regjistrimet e depurimit përfshijnë gjurmë grumbullimi</string>
<string name="revanced_debug_stacktrace_summary_off">Regjistrimet e depurimit nuk përfshijnë gjurmë grumbullimi</string>
<string name="revanced_debug_toast_on_error_title">Shfaqni toast për gabimet e ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Shfaqet një toast nëse ndodh një gabim</string>
<string name="revanced_debug_toast_on_error_summary_off">Nuk shfaqet toast nëse ndodh një gabim</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Fshirja e toast-eve të gabimit fsheh të gjitha njoftimet e gabimeve të ReVanced.
Ju nuk do të njoftoheni për ndonjë ngjarje të papritur."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Eksporto regjistrat e korrigjimit</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Kopjon regjistrat e korrigjimit të ReVanced në kujtesën e shkurtër</string>
<string name="revanced_debug_logs_disabled">Regjistrimi i korrigjimeve është çaktivizuar</string>
@ -151,15 +160,6 @@ Riprodhimi mund të mos funksionojë"</string>
Kjo mund të ndihmojë në identifikimin e komponentëve kur krijoni filtra të personalizuar.
Gjithsesi, aktivizimi i këtij opsioni do të regjistrojë edhe disa të dhëna të përdoruesit, siç është adresa juaj IP."</string>
<string name="revanced_debug_stacktrace_title">Regjistro gjurmët e grumbullimit</string>
<string name="revanced_debug_stacktrace_summary_on">Regjistrimet e depurimit përfshijnë gjurmë grumbullimi</string>
<string name="revanced_debug_stacktrace_summary_off">Regjistrimet e depurimit nuk përfshijnë gjurmë grumbullimi</string>
<string name="revanced_debug_toast_on_error_title">Shfaqni toast për gabimet e ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Shfaqet një toast nëse ndodh një gabim</string>
<string name="revanced_debug_toast_on_error_summary_off">Nuk shfaqet toast nëse ndodh një gabim</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Fshirja e toast-eve të gabimit fsheh të gjitha njoftimet e gabimeve të ReVanced.
Ju nuk do të njoftoheni për ndonjë ngjarje të papritur."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Fshih kartat e albumit</string>
@ -586,6 +586,10 @@ Përshtate shkëlqimin duke rrëshqitur vertikalisht në anën e majtë të ekra
<string name="revanced_hide_stop_ads_button_title">Fshih \"Ndalo reklamat\"</string>
<string name="revanced_hide_stop_ads_button_summary_on">Butoni Ndalo reklamat është i fshehur</string>
<string name="revanced_hide_stop_ads_button_summary_off">Butoni Ndalo reklamat është i shfaqur</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Fshih Komentet</string>
<string name="revanced_hide_comments_button_summary_on">Butoni i komenteve është i fshehur</string>
<string name="revanced_hide_comments_button_summary_off">Butoni i komenteve është shfaqur</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Fsheh \"Raporton\"</string>
@ -1240,8 +1244,9 @@ Kjo do të ndryshojë pamjen dhe veçoritë e aplikacionit, por mund të ndodhin
Nëse më vonë është çaktivizuar, është e rekomanduar të fshiheni të dhënat e aplikacionit për të parandaluar gabimet e UI."</string>
<string name="revanced_spoof_app_version_target_title">Shënjestër e versionit të aplikacionit të mashtuar</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Rikthe ikonat e vjetra të lojtarit Shorts</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Ristauro ikonave te vjetra te navigimit</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Rivendos shiritin e veprimeve të videos jo të palosur</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Rikthe ikonat e vjetra të lojtarit Shorts</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Ristauro ikonave te vjetra te navigimit</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Ndrysho faqen e fillimit</string>
@ -1557,12 +1562,15 @@ Aktivizimi i kësaj mund të zhbllokojë cilësi më të larta video"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Klient eksperimental dhe mund të ndalojë së funksionuari në çdo kohë</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Nuk ka codec video AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Video për fëmijë mund të mos luajnë kur jeni jashtë llogarisë ose në modalitetin incognito</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Detyro audio origjinale nuk është i disponueshëm</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Shfaqni në Statistikat për nerdës</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Lloji i klientit shfaqet në Statistikat për nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Klienti është fshehur në statistikat për nerds</string>
<string name="revanced_spoof_video_streams_language_title">Gjuha e transmetimit audio</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Për të zgjedhur një gjuhë specifike audio, çaktivizoni \"Detyro gjuhën origjinale audio\"</string>
<string name="revanced_spoof_video_streams_language_android_studio">Zgjedhja e gjuhës së transmetimit nuk është e disponueshme me Android Studio</string>
</patch>
</app>
<app id="music">
@ -1597,23 +1605,23 @@ Aktivizimi i kësaj mund të zhbllokojë cilësi më të larta video"</string>
<string name="revanced_music_navigation_bar_screen_title">Shiriti i navigimit</string>
<string name="revanced_music_navigation_bar_screen_summary">Fshih ose ndrysho butonat e shiritit të navigimit</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Fshih butonin Kryesore</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Fshih Kreun</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Butoni Kryesore është fshehur</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Butoni Kryesore është shfaqur</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Fshih butonin Mostra</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Fshih Mostrat</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Butoni Mostra është fshehur</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Butoni Mostra është shfaqur</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Fshih butonin Eksploro</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Fshih Eksplorimin</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Butoni Eksploro është fshehur</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Butoni Eksploro është shfaqur</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Fshih butonin Biblioteka</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Fshih Bibliotekën</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Butoni Biblioteka është fshehur</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Butoni Biblioteka është shfaqur</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Fshih butonin Azhorno</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Fshih përmirësimin</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Butoni Azhorno është fshehur</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Butoni Azhorno është shfaqur</string>
<string name="revanced_music_hide_navigation_bar_title">Fshih shiritin e navigimit</string>

View file

@ -107,6 +107,15 @@ Reprodukcija možda neće raditi"</string>
<string name="revanced_debug_title">Evidentiranje otklanjanja grešaka</string>
<string name="revanced_debug_summary_on">Evidencije otklanjanja grešaka su omogućene</string>
<string name="revanced_debug_summary_off">Evidencije otklanjanja grešaka su onemogućene</string>
<string name="revanced_debug_stacktrace_title">Evidentiranje praćenja steka</string>
<string name="revanced_debug_stacktrace_summary_on">Evidencije otklanjanja grešaka sadrže praćenje steka</string>
<string name="revanced_debug_stacktrace_summary_off">Evidencije otklanjanja grešaka ne sadrže praćenje steka</string>
<string name="revanced_debug_toast_on_error_title">Prikaži iskačuće obaveštenje pri grešci s ReVancedom</string>
<string name="revanced_debug_toast_on_error_summary_on">Iskačuće obaveštenje je prikazano, ako dođe do greške</string>
<string name="revanced_debug_toast_on_error_summary_off">Iskačuće obaveštenje nije prikazano, ako dođe do greške</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Isključivanje iskačućih obaveštenja o greškama sakriva sve obaveštenja o greškama u ReVancedu.
Nećete biti obavešteni ni o kakvim neočekivanim događajima."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Izvezi evidencije otklanjanja grešaka</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Kopira evidencije otklanjanja grešaka ReVanceda u privremenu memoriju</string>
<string name="revanced_debug_logs_disabled">Evidentiranje otklanjanja grešaka je onemogućeno</string>
@ -151,15 +160,6 @@ Reprodukcija možda neće raditi"</string>
Ovo može pomoći u identifikaciji komponenti prilikom pravljenja prilagođenih filtera.
Međutim, omogućavanje ovoga će takođe evidentirati neke korisničke podatke, kao što je vaša IP adresa."</string>
<string name="revanced_debug_stacktrace_title">Evidentiranje praćenja steka</string>
<string name="revanced_debug_stacktrace_summary_on">Evidencije otklanjanja grešaka sadrže praćenje steka</string>
<string name="revanced_debug_stacktrace_summary_off">Evidencije otklanjanja grešaka ne sadrže praćenje steka</string>
<string name="revanced_debug_toast_on_error_title">Prikaži iskačuće obaveštenje pri grešci s ReVancedom</string>
<string name="revanced_debug_toast_on_error_summary_on">Iskačuće obaveštenje je prikazano, ako dođe do greške</string>
<string name="revanced_debug_toast_on_error_summary_off">Iskačuće obaveštenje nije prikazano, ako dođe do greške</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Isključivanje iskačućih obaveštenja o greškama sakriva sve obaveštenja o greškama u ReVancedu.
Nećete biti obavešteni ni o kakvim neočekivanim događajima."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Sakrij kartice albuma</string>
@ -586,6 +586,10 @@ Podesite jačinu zvuka prevlačenjem vertikalno na desnoj strani ekrana"</string
<string name="revanced_hide_stop_ads_button_title">Sakrij dugme „Zaustavi oglase”</string>
<string name="revanced_hide_stop_ads_button_summary_on">Dugme „Zaustavi oglase” je skriveno</string>
<string name="revanced_hide_stop_ads_button_summary_off">Dugme „Zaustavi oglase” je prikazano</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Sakrij komentare</string>
<string name="revanced_hide_comments_button_summary_on">Dugme za komentare je skriveno</string>
<string name="revanced_hide_comments_button_summary_off">Dugme za komentare je prikazano</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Sakrij dugme „Prijavi”</string>
@ -1241,8 +1245,9 @@ Ovo će promeniti izgled i funkcije aplikacije, ali se mogu pojaviti i nepoznati
Ako se kasnije isključi, preporučuje se da izbrišete podatke aplikacije da biste sprečili greške u korisničkom interfejsu."</string>
<string name="revanced_spoof_app_version_target_title">Ciljna verzija aplikacije za lažiranje</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Vraća stare ikonice Shorts plejera</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Vraća stare ikonice navigacije</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Vrati nesakupljenu akcionu traku za video</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Vraća stare ikonice Shorts plejera</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Vraća stare ikonice navigacije</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Promena polazne stranice</string>
@ -1558,12 +1563,15 @@ Ako ovo omogućite, mogu biti otključani viši kvaliteti videa"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Eksperimentalni klijent i može prestati da radi bilo kada</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Nema video kodeka AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Videi za decu se možda neće puštati kada ste odjavljeni ili u režimu bez arhiviranja</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Forsiranje originalnog zvuka nije dostupno</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Prikaži u „Statistici za znalce”</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Tip klijenta je prikazan u „Statistici za znalce”</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Tip klijenta je skriven u „Statistici za znalce”</string>
<string name="revanced_spoof_video_streams_language_title">Jezik audio strima</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Da biste izabrali određeni jezik zvuka, isključite opciju „Prisili originalni jezik zvuka”</string>
<string name="revanced_spoof_video_streams_language_android_studio">Izbor jezika strima nije dostupan sa Android Studijem</string>
</patch>
</app>
<app id="music">
@ -1598,23 +1606,23 @@ Ako ovo omogućite, mogu biti otključani viši kvaliteti videa"</string>
<string name="revanced_music_navigation_bar_screen_title">Traka za navigaciju</string>
<string name="revanced_music_navigation_bar_screen_summary">Sakrijte ili promenite dugmad trake za navigaciju</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Sakrij dugme „Početna”</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Sakrij Početnu</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Dugme „Početna” je skriveno</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Dugme „Početna” je prikazano</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Sakrij dugme „Uzorci”</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Sakrij Uzorke</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Dugme „Uzorci” je skriveno</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Dugme „Uzorci” je prikazano</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Sakrij dugme „Istražite</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Sakrij Istražite</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Dugme „Istražite” je skriveno</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Dugme „Istražite” je prikazano</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Sakrij dugme „Biblioteka”</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Sakrij Biblioteku</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Dugme „Biblioteka” je skriveno</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Dugme „Biblioteka” je prikazano</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Sakrij dugme „Nadogradite”</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Sakrij Nadogradi</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Dugme „Nadogradite” je skriveno</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Dugme „Nadogradite” je prikazano</string>
<string name="revanced_music_hide_navigation_bar_title">Sakrij traku za navigaciju</string>

View file

@ -107,6 +107,15 @@ Second \"item\" text"</string>
<string name="revanced_debug_title">Евидентирање отклањања грешака</string>
<string name="revanced_debug_summary_on">Евиденције отклањања грешака су омогућене</string>
<string name="revanced_debug_summary_off">Евиденције отклањања грешака су онемогућене</string>
<string name="revanced_debug_stacktrace_title">Евидентирање праћења стека</string>
<string name="revanced_debug_stacktrace_summary_on">Евиденције отклањања грешака садрже праћење стека</string>
<string name="revanced_debug_stacktrace_summary_off">Евиденције отклањања грешака не садрже праћење стека</string>
<string name="revanced_debug_toast_on_error_title">Прикажи искачуће обавештење при грешци с ReVanced-ом</string>
<string name="revanced_debug_toast_on_error_summary_on">Искачуће обавештење је приказано, ако дође до грешке</string>
<string name="revanced_debug_toast_on_error_summary_off">Искачуће обавештење није приказано, ако дође до грешке</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Искључивање искачућих обавештења о грешкама сакрива сва обавештења о грешкама у ReVanced-у.
Нећете бити обавештени ни о каквим неочекиваним догађајима."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Извези евиденције отклањања грешака</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Копира евиденције отклањања грешака ReVanced-а у привремену меморију</string>
<string name="revanced_debug_logs_disabled">Евидентирање отклањања грешака је онемогућено</string>
@ -151,15 +160,6 @@ Second \"item\" text"</string>
Ово може помоћи у идентификацији компоненти приликом прављења прилагођених филтера.
Међутим, омогућавање овога ће такође евидентирати неке корисничке податке, као што је ваша IP адреса."</string>
<string name="revanced_debug_stacktrace_title">Евидентирање праћења стека</string>
<string name="revanced_debug_stacktrace_summary_on">Евиденције отклањања грешака садрже праћење стека</string>
<string name="revanced_debug_stacktrace_summary_off">Евиденције отклањања грешака не садрже праћење стека</string>
<string name="revanced_debug_toast_on_error_title">Прикажи искачуће обавештење при грешци с ReVanced-ом</string>
<string name="revanced_debug_toast_on_error_summary_on">Искачуће обавештење је приказано, ако дође до грешке</string>
<string name="revanced_debug_toast_on_error_summary_off">Искачуће обавештење није приказано, ако дође до грешке</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Искључивање искачућих обавештења о грешкама сакрива сва обавештења о грешкама у ReVanced-у.
Нећете бити обавештени ни о каквим неочекиваним догађајима."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Сакриј картице албума</string>
@ -586,6 +586,10 @@ Second \"item\" text"</string>
<string name="revanced_hide_stop_ads_button_title">Сакриј дугме „Заустави огласе”</string>
<string name="revanced_hide_stop_ads_button_summary_on">Дугме „Заустави огласе” је скривено</string>
<string name="revanced_hide_stop_ads_button_summary_off">Дугме „Заустави огласе” је приказано</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Сакриј коментаре</string>
<string name="revanced_hide_comments_button_summary_on">Дугме „Коментари” је скривено</string>
<string name="revanced_hide_comments_button_summary_off">Дугме „Коментари” је приказано</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Сакриј дугме „Пријави”</string>
@ -1241,8 +1245,9 @@ Second \"item\" text"</string>
Ако се касније искључи, препоручује се да избришете податке апликације да бисте спречили грешке у корисничком интерфејсу."</string>
<string name="revanced_spoof_app_version_target_title">Циљна верзија апликације за лажирање</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Враћа старе иконице Shorts плејера</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Враћа старе иконице навигације</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Врати нескупљену траку радњи видеа</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Враћа старе иконице Shorts плејера</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Враћа старе иконице навигације</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Промена полазне странице</string>
@ -1561,12 +1566,15 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Експериментални клијент и може престати да ради било када</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Нема видео кодека AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Видеи за децу се можда неће пуштати када сте одјављени или у режиму без архивирања</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Форсирање оригиналног звука није доступно</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Прикажи у „Статистици за зналце”</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Тип клијента је приказан у „Статистици за зналце”</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Тип клијента је скривен у „Статистици за зналце”</string>
<string name="revanced_spoof_video_streams_language_title">Језик аудио стрима</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Да бисте изабрали одређени језик звука, искључите опцију „Присили оригинални језик звука”</string>
<string name="revanced_spoof_video_streams_language_android_studio">Избор језика стрима није доступан са Android Studio</string>
</patch>
</app>
<app id="music">
@ -1601,23 +1609,23 @@ Second \"item\" text"</string>
<string name="revanced_music_navigation_bar_screen_title">Трака за навигацију</string>
<string name="revanced_music_navigation_bar_screen_summary">Сакријте или промените дугмад траке за навигацију</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Сакриј дугме „Почетна”</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Сакриј Почетну</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Дугме „Почетна” је скривено</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Дугме „Почетна” је приказано</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Сакриј дугме „Узорци”</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Сакриј Узорке</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Дугме „Узорци” је скривено</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Дугме „Узорци” је приказано</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Сакриј дугме „Истражи</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Сакриј Истражи</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Дугме „Истражи” је скривено</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Дугме „Истражи” је приказано</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Сакриј дугме „Библиотека”</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Сакриј Библиотеку</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Дугме „Библиотека” је скривено</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Дугме „Библиотека” је приказано</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Сакриј дугме „Надогради</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Сакриј Надогради</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Дугме „Надогради” је скривено</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Дугме „Надогради” је приказано</string>
<string name="revanced_music_hide_navigation_bar_title">Сакриј траку за навигацију</string>

View file

@ -107,6 +107,15 @@ Uppspelning kanske inte fungerar"</string>
<string name="revanced_debug_title">Felsökningsloggning</string>
<string name="revanced_debug_summary_on">Felsökningsloggar är aktiverade</string>
<string name="revanced_debug_summary_off">Felsökningsloggar är inaktiverade</string>
<string name="revanced_debug_stacktrace_title">Logga stackspårning</string>
<string name="revanced_debug_stacktrace_summary_on">Felsökningsloggar inkluderar stackspårning</string>
<string name="revanced_debug_stacktrace_summary_off">Felsökningsloggar inkluderar inte stackspårning</string>
<string name="revanced_debug_toast_on_error_title">Visa ett popup-meddelande om det uppstår fel med ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Popup-meddelande visas om det uppstår fel</string>
<string name="revanced_debug_toast_on_error_summary_off">Popup-meddelande visas inte om det uppstår fel</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Om du stänger av popup-felmeddelanden döljs alla ReVanced-felmeddelanden.
Du kommer inte att bli meddelad om oväntade händelser."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Exportera felsökningsloggar</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Kopierar ReVanced-felsökningsloggar till urklipp</string>
<string name="revanced_debug_logs_disabled">Felsökningsloggar är inaktiverade</string>
@ -151,15 +160,6 @@ Uppspelning kanske inte fungerar"</string>
Detta kan hjälpa till att identifiera komponenter när du skapar anpassade filter.
Men om du aktiverar detta kommer även vissa användardata, t.ex. din IP-adress, att loggas."</string>
<string name="revanced_debug_stacktrace_title">Logga stackspårning</string>
<string name="revanced_debug_stacktrace_summary_on">Felsökningsloggar inkluderar stackspårning</string>
<string name="revanced_debug_stacktrace_summary_off">Felsökningsloggar inkluderar inte stackspårning</string>
<string name="revanced_debug_toast_on_error_title">Visa ett popup-meddelande om det uppstår fel med ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Popup-meddelande visas om det uppstår fel</string>
<string name="revanced_debug_toast_on_error_summary_off">Popup-meddelande visas inte om det uppstår fel</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Om du stänger av popup-felmeddelanden döljs alla ReVanced-felmeddelanden.
Du kommer inte att bli meddelad om oväntade händelser."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Dölj albumkort</string>
@ -586,6 +586,10 @@ Justera volymen genom att svepa vertikalt till höger på skärmen"</string>
<string name="revanced_hide_stop_ads_button_title">Dölj Stoppa annonser</string>
<string name="revanced_hide_stop_ads_button_summary_on">Knappen Stoppa annonser är dold</string>
<string name="revanced_hide_stop_ads_button_summary_off">Knappen Stoppa annonser visas</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Dölj kommentarer</string>
<string name="revanced_hide_comments_button_summary_on">Knappen Kommentarer är dold</string>
<string name="revanced_hide_comments_button_summary_off">Knappen Kommentarer visas</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Dölj Rapportera</string>
@ -1241,8 +1245,9 @@ Detta kommer att ändra utseendet och funktionerna i appen, men okända bieffekt
Om du senare inaktiverar det rekommenderar vi att rensa appens data för att förhindra fel i användargränssnittet."</string>
<string name="revanced_spoof_app_version_target_title">Mål för Förfalska appversionen</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 Återställ gamla ikoner i Shorts-spelaren</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 Återställ gamla navigeringsikoner</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Återställ icke-komprimerad handlingsfält för video</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 Återställ gamla ikoner i Shorts-spelaren</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 Återställ gamla navigeringsikoner</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Byt startsida</string>
@ -1558,12 +1563,15 @@ Om du aktiverar detta kan högre videokvaliteter låsas upp"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Experimentell klient och kan sluta fungera när som helst</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Ingen AV1-videokodek</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Videor för barn kanske inte spelas upp när du är utloggad eller i inkognitoläge</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Tvinga ursprungligt ljud är inte tillgängligt</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Visa i Statistik för nördar</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Klienttypen visas i Statistik för nördar</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Klienten är dold i Statistik för nördar</string>
<string name="revanced_spoof_video_streams_language_title">Ljudströmmens språk</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">För att välja ett specifikt ljudspråk, inaktivera \"Tvinga originalspråk för ljud\"</string>
<string name="revanced_spoof_video_streams_language_android_studio">Val av strömspråk är inte tillgängligt med Android Studio</string>
</patch>
</app>
<app id="music">
@ -1598,23 +1606,23 @@ Om du aktiverar detta kan högre videokvaliteter låsas upp"</string>
<string name="revanced_music_navigation_bar_screen_title">Navigationsfältet</string>
<string name="revanced_music_navigation_bar_screen_summary">Dölj eller ändra knappar i navigeringsfältet</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Dölj Hem-knappen</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Dölj Hem</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Knappen Hem är dold</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Knappen Hem visas</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Dölj Klipp-knappen</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Dölj Kortfilmer</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Klipp-knappen är dold</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Klipp-knappen visas</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Dölj Utforska-knappen</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Dölj Utforska</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Utforska-knappen är dold</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Utforska-knappen visas</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Dölj Bibliotek-knappen</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Dölj Bibliotek</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Bibliotek-knappen är dold</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Bibliotek-knappen visas</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Dölj Uppgradera-knappen</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Dölj Uppgradera</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Uppgradera-knappen är dold</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Uppgradera-knappen visas</string>
<string name="revanced_music_hide_navigation_bar_title">Dölj navigeringsfältet</string>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -107,6 +107,15 @@ Second \"item\" text"</string>
<string name="revanced_debug_title">การบันทึกการแก้ไขข้อบกพร่อง</string>
<string name="revanced_debug_summary_on">การบันทึกการแก้ไขข้อบกพร่องถูกเปิดใช้งาน</string>
<string name="revanced_debug_summary_off">การบันทึกการแก้ไขข้อบกพร่องถูกปิดใช้งาน</string>
<string name="revanced_debug_stacktrace_title">บันทึกการติดตามสแต็ก</string>
<string name="revanced_debug_stacktrace_summary_on">การบันทึกการแก้ไขข้อบกพร่องรวมถึงการติดตามสแต็ก</string>
<string name="revanced_debug_stacktrace_summary_off">การบันทึกการแก้ไขข้อบกพร่องไม่รวมการติดตามสแต็ก</string>
<string name="revanced_debug_toast_on_error_title">แสดง toast เมื่อเกิดข้อผิดพลาดของ ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Toast จะปรากฏขึ้นหากเกิดข้อผิดพลาด</string>
<string name="revanced_debug_toast_on_error_summary_off">Toast จะไม่ปรากฏขึ้นหากเกิดข้อผิดพลาด</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"การปิดการแจ้งเตือนข้อผิดพลาดจะซ่อนการแจ้งเตือนข้อผิดพลาดของ ReVanced ทั้งหมด
คุณจะไม่ได้รับแจ้งเกี่ยวกับเหตุการณ์ที่ไม่คาดคิดใดๆ"</string>
<string name="revanced_debug_export_logs_to_clipboard_title">ส่งออกบันทึกการแก้ไขข้อบกพร่อง</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">คัดลอกบันทึกการแก้ไขข้อบกพร่องของ ReVanced ไปยังคลิปบอร์ด</string>
<string name="revanced_debug_logs_disabled">ปิดใช้งานการบันทึกการแก้ไขข้อบกพร่อง</string>
@ -151,15 +160,6 @@ Second \"item\" text"</string>
ซึ่งจะช่วยระบุส่วนประกอบเมื่อสร้างตัวกรองที่กำหนดเองได้
อย่างไรก็ตาม การเปิดใช้งานนี้จะบันทึกข้อมูลผู้ใช้บางอย่าง เช่น ที่อยู่ IP ของคุณด้วย"</string>
<string name="revanced_debug_stacktrace_title">บันทึกการติดตามสแต็ก</string>
<string name="revanced_debug_stacktrace_summary_on">การบันทึกการแก้ไขข้อบกพร่องรวมถึงการติดตามสแต็ก</string>
<string name="revanced_debug_stacktrace_summary_off">การบันทึกการแก้ไขข้อบกพร่องไม่รวมการติดตามสแต็ก</string>
<string name="revanced_debug_toast_on_error_title">แสดง toast เมื่อเกิดข้อผิดพลาดของ ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Toast จะปรากฏขึ้นหากเกิดข้อผิดพลาด</string>
<string name="revanced_debug_toast_on_error_summary_off">Toast จะไม่ปรากฏขึ้นหากเกิดข้อผิดพลาด</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"การปิดการแจ้งเตือนข้อผิดพลาดจะซ่อนการแจ้งเตือนข้อผิดพลาดของ ReVanced ทั้งหมด
คุณจะไม่ได้รับแจ้งเกี่ยวกับเหตุการณ์ที่ไม่คาดคิดใดๆ"</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">ซ่อนการ์ดอัลบั้ม</string>
@ -584,6 +584,10 @@ Second \"item\" text"</string>
<string name="revanced_hide_stop_ads_button_title">ซ่อนหยุดโฆษณา</string>
<string name="revanced_hide_stop_ads_button_summary_on">ปุ่มหยุดโฆษณาถูกซ่อน</string>
<string name="revanced_hide_stop_ads_button_summary_off">ปุ่มหยุดโฆษณาถูกแสดง</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">ซ่อนความคิดเห็น</string>
<string name="revanced_hide_comments_button_summary_on">ปุ่มความคิดเห็นถูกซ่อน</string>
<string name="revanced_hide_comments_button_summary_off">ปุ่มความคิดเห็นแสดงอยู่</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">ซ่อนรายงาน</string>
@ -1241,8 +1245,9 @@ User id ของคุณเหมือนกับรหัสผ่าน
ถ้าปิดในภายหลัง ขอแนะนําให้ล้างข้อมูลแอปเพื่อป้องกันข้อผิดพลาดของ UI"</string>
<string name="revanced_spoof_app_version_target_title">เป้าหมายการปลอมแปลงเวอร์ชันแอป</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - คืนค่าไอคอนเครื่องเล่น Shorts เก่า</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - กู้คืนไอคอนการนำทางแบบเก่า</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - กู้คืนแถบการทำงานของวิดีโอที่ไม่ได้ยุบ</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - คืนค่าไอคอนเครื่องเล่น Shorts เก่า</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - กู้คืนไอคอนการนำทางแบบเก่า</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">เปลี่ยนหน้าเริ่มต้น</string>
@ -1561,12 +1566,15 @@ User id ของคุณเหมือนกับรหัสผ่าน
<string name="revanced_spoof_video_streams_about_experimental">• ไคลเอนต์ทดลองและอาจหยุดทำงานได้ตลอดเวลา</string>
<string name="revanced_spoof_video_streams_about_no_av1">• ไม่มีตัวแปลงสัญญาณวิดีโอ AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• วิดีโอเด็กอาจไม่เล่นเมื่อลงชื่อออกหรืออยู่ในโหมดไม่ระบุตัวตน</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• บังคับใช้เสียงต้นฉบับไม่พร้อมใช้งาน</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">แสดงในสถิติสำหรับพวกเนิร์ด</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">แสดงชนิดไคลเอ็นต์ในสถิติสำหรับพวกเนิร์ด</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">ซ่อนไคลเอ็นต์ในสถิติสำหรับพวกเนิร์ด</string>
<string name="revanced_spoof_video_streams_language_title">ภาษาของสตรีมเสียง</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">หากต้องการเลือกภาษาเสียงที่ต้องการ ให้ปิด \'บังคับใช้ภาษาเสียงต้นฉบับ\'</string>
<string name="revanced_spoof_video_streams_language_android_studio">การเลือกภาษาของสตรีมไม่พร้อมใช้งานกับ Android Studio</string>
</patch>
</app>
<app id="music">
@ -1601,23 +1609,23 @@ User id ของคุณเหมือนกับรหัสผ่าน
<string name="revanced_music_navigation_bar_screen_title">แถบนำทาง</string>
<string name="revanced_music_navigation_bar_screen_summary">ซ่อนหรือเปลี่ยนปุ่มแถบนำทาง</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">ซ่อนปุ่มหน้าแรก</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">ซ่อนหน้าแรก</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">ซ่อนปุ่มหน้าแรกแล้ว</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">แสดงปุ่มหน้าแรกแล้ว</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">ซ่อนปุ่มตัวอย่าง</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">ซ่อนตัวอย่าง</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">ซ่อนปุ่มตัวอย่างแล้ว</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">แสดงปุ่มตัวอย่างแล้ว</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">ซ่อนปุ่มสำรวจ</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">ซ่อนสำรวจ</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">ซ่อนปุ่มสำรวจแล้ว</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">แสดงปุ่มสำรวจแล้ว</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">ซ่อนปุ่มคลัง</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">ซ่อนคลัง</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">ซ่อนปุ่มคลังแล้ว</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">แสดงปุ่มคลังแล้ว</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">ซ่อนปุ่มอัปเกรด</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">ซ่อนอัปเกรด</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">ซ่อนปุ่มอัปเกรดแล้ว</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">แสดงปุ่มอัปเกรดแล้ว</string>
<string name="revanced_music_hide_navigation_bar_title">ซ่อนแถบนำทาง</string>

View file

@ -107,6 +107,15 @@ Oynatma çalışmayabilir"</string>
<string name="revanced_debug_title">Hata ayıklama kayıtları</string>
<string name="revanced_debug_summary_on">Hata ayıklama kayıtları etkin</string>
<string name="revanced_debug_summary_off">Hata ayıklama kayıtları devre dışı</string>
<string name="revanced_debug_stacktrace_title">Stack traces\'in kaydını tut</string>
<string name="revanced_debug_stacktrace_summary_on">Hata ayıklama kayıtları stack traces\'i içerir</string>
<string name="revanced_debug_stacktrace_summary_off">Hata ayıklama kayıtları stack traces\'i içermez</string>
<string name="revanced_debug_toast_on_error_title">ReVanced hatası durumunda uyarı göster</string>
<string name="revanced_debug_toast_on_error_summary_on">Hata oluşursa uyarı gösterilir</string>
<string name="revanced_debug_toast_on_error_summary_off">Hata oluşursa uyarı gösterilmez</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Hata bildirimlerini kapatmak, tüm ReVanced hata bildirimlerini gizler.
Beklenmedik olaylar hakkında bilgilendirilmeyeceksiniz."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Hata ayıklama kayıtlarını dışa aktar</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">ReVanced hata ayıklama kayıtlarını panoya kopyalar</string>
<string name="revanced_debug_logs_disabled">Hata ayıklama kayıtları devre dışı</string>
@ -151,15 +160,6 @@ Oynatma çalışmayabilir"</string>
Bu, özel filtreler oluştururken bileşenlerin belirlenmesine yardımcı olabilir.
Ancak, bunun etkinleştirilmesi IP adresiniz gibi bazı kullanıcı verilerini de günlüğe kaydeder."</string>
<string name="revanced_debug_stacktrace_title">Stack traces\'in kaydını tut</string>
<string name="revanced_debug_stacktrace_summary_on">Hata ayıklama kayıtları stack traces\'i içerir</string>
<string name="revanced_debug_stacktrace_summary_off">Hata ayıklama kayıtları stack traces\'i içermez</string>
<string name="revanced_debug_toast_on_error_title">ReVanced hatası durumunda uyarı göster</string>
<string name="revanced_debug_toast_on_error_summary_on">Hata oluşursa uyarı gösterilir</string>
<string name="revanced_debug_toast_on_error_summary_off">Hata oluşursa uyarı gösterilmez</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Hata bildirimlerini kapatmak, tüm ReVanced hata bildirimlerini gizler.
Beklenmedik olaylar hakkında bilgilendirilmeyeceksiniz."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Albüm kartlarını gizle</string>
@ -586,6 +586,10 @@ Ekranın sağ tarafında dikey olarak kaydırarak sesi ayarlayın"</string>
<string name="revanced_hide_stop_ads_button_title">Reklamları durdur\'u Gizle</string>
<string name="revanced_hide_stop_ads_button_summary_on">Reklamları durdur düğmesi gizli</string>
<string name="revanced_hide_stop_ads_button_summary_off">Reklamları durdur düğmesi görünür</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Yorumları gizle</string>
<string name="revanced_hide_comments_button_summary_on">Yorumlar düğmesi gizli</string>
<string name="revanced_hide_comments_button_summary_off">Yorumlar düğmesi görünür</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Bildir\'i gizle</string>
@ -1244,8 +1248,9 @@ Bu, uygulamanın görünümünü ve özelliklerini değiştirecektir, ancak bili
Daha sonra kapatılırsa, arayüz hatalarını önlemek için uygulama verilerinin temizlenmesi önerilir."</string>
<string name="revanced_spoof_app_version_target_title">Uygulama sürümü taklidi hedefi</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Eski Shorts oynatıcı simgelerini geri getir</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Eski gezinti simgelerini geri getir</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Daraltılmamış video eylem çubuğunu geri getir</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Eski Shorts oynatıcı simgelerini geri getir</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Eski gezinti simgelerini geri getir</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Başlangıç sayfasını değiştir</string>
@ -1566,12 +1571,15 @@ Bunu etkinleştirmek daha yüksek video kalitelerini açabilir"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Deneysel istemci ve her an çalışmayı durdurabilir</string>
<string name="revanced_spoof_video_streams_about_no_av1">• AV1 video kodeği yok</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Çocuk videoları oturum açılmadığında veya gizli modda oynatılamayabilir</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Orijinal sesi zorlama mevcut değil</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Meraklısı için istatistiklerde göster</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">İstemci tipi meraklısı için istatistiklerde gösterilir</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">İstemci, meraklısı için istatistiklerde gizli</string>
<string name="revanced_spoof_video_streams_language_title">Ses akışı dili</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Belirli bir ses dilini seçmek için \'Orijinal ses dilini zorla\' seçeneğini kapatın</string>
<string name="revanced_spoof_video_streams_language_android_studio">Yayın dili seçimi Android Studio ile kullanılamıyor</string>
</patch>
</app>
<app id="music">
@ -1606,23 +1614,23 @@ Bunu etkinleştirmek daha yüksek video kalitelerini açabilir"</string>
<string name="revanced_music_navigation_bar_screen_title">Gezinme çubuğu</string>
<string name="revanced_music_navigation_bar_screen_summary">Gezinme çubuğundaki düğmeleri gizle veya değiştir</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Ana Sayfa düğmesini gizle</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Ana Sayfa\'yı gizle</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Ana Sayfa düğmesi gizli</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Ana Sayfa düğmesi görünür</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Sana Özel düğmesini gizle</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Örnekleri Gizle</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Sana Özel düğmesi gizli</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Sana Özel düğmesi görünür</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Keşfet düğmesini gizle</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Keşfet\'i Gizle</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Keşfet düğmesi gizli</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Keşfet düğmesi görünür</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Kitaplık düğmesini gizle</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Kitaplık\'ı Gizle</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Kitaplık düğmesi gizli</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Kitaplık düğmesi görünür</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Yükselt düğmesini gizle</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Yükselt\'i Gizle</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Yükselt düğmesi gizli</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Yükselt düğmesi görünür</string>
<string name="revanced_music_hide_navigation_bar_title">Gezinme çubuğunu gizle</string>

View file

@ -107,6 +107,15 @@ Second \"item\" text"</string>
<string name="revanced_debug_title">Журнал налагодження</string>
<string name="revanced_debug_summary_on">Журнали налагодження ввімкнено</string>
<string name="revanced_debug_summary_off">Журнали налагодження вимкнено</string>
<string name="revanced_debug_stacktrace_title">Реєструвати трасування стека</string>
<string name="revanced_debug_stacktrace_summary_on">Журнали налагодження містять трасування стека</string>
<string name="revanced_debug_stacktrace_summary_off">Журнали налагодження не містять трасування стека</string>
<string name="revanced_debug_toast_on_error_title">Показувати тост при помилці ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Тост показується, якщо сталася помилка</string>
<string name="revanced_debug_toast_on_error_summary_off">Тост не показується, якщо сталася помилка</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Вимкнення сповіщень про помилки приховує всі сповіщення про помилки ReVanced.
Ви не будете отримувати сповіщення про будь-які непередбачувані події."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Експортувати журнали налагодження</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Копіює журнали налагодження ReVanced до буфера обміну</string>
<string name="revanced_debug_logs_disabled">Журнали налагодження вимкнено</string>
@ -151,15 +160,6 @@ Second \"item\" text"</string>
Це може допомогти визначити компоненти під час створення користувацьких фільтрів.
Однак, увімкнувши це, також буде записано деякі дані користувача, наприклад Вашу IP-адресу."</string>
<string name="revanced_debug_stacktrace_title">Реєструвати трасування стека</string>
<string name="revanced_debug_stacktrace_summary_on">Журнали налагодження містять трасування стека</string>
<string name="revanced_debug_stacktrace_summary_off">Журнали налагодження не містять трасування стека</string>
<string name="revanced_debug_toast_on_error_title">Показувати тост при помилці ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Тост показується, якщо сталася помилка</string>
<string name="revanced_debug_toast_on_error_summary_off">Тост не показується, якщо сталася помилка</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Вимкнення сповіщень про помилки приховує всі сповіщення про помилки ReVanced.
Ви не будете отримувати сповіщення про будь-які непередбачувані події."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Приховати картки альбому</string>
@ -586,6 +586,10 @@ Second \"item\" text"</string>
<string name="revanced_hide_stop_ads_button_title">Приховати \"Зупинити показ оголошень\"</string>
<string name="revanced_hide_stop_ads_button_summary_on">Кнопку \"Зупинити показ оголошень\" приховано</string>
<string name="revanced_hide_stop_ads_button_summary_off">Кнопка \"Зупинити показ оголошень\" показується</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Приховати \"Коментарі\"</string>
<string name="revanced_hide_comments_button_summary_on">Кнопку \"Коментарі\" приховано</string>
<string name="revanced_hide_comments_button_summary_off">Кнопка \"Коментарі\" показується</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Приховати \"Поскаржитися\"</string>
@ -1241,8 +1245,9 @@ Second \"item\" text"</string>
Якщо пізніше вимкнути, рекомендується очистити дані застосунку, щоб запобігти помилкам інтерфейсу."</string>
<string name="revanced_spoof_app_version_target_title">Підробити версію програми на</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Відновлення старих іконок плеєра Shorts</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Відновлення старих іконок панелі навігації</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Відновити незгорнуту панель дій відео</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Відновлення старих іконок плеєра Shorts</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Відновлення старих іконок панелі навігації</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Змінити початкову сторінку</string>
@ -1558,12 +1563,15 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Експериментальний клієнт, який може припинити працювати будь-якої миті</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Відсутній відеокодек AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Відео для дітей можуть не відтворюватися, якщо вийти з облікового запису або перейти в анонімний режим</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• \"Примусово оригінальна мова звукової доріжки\" недоступна</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Показувати у \"Статистиці для сисадмінів\"</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Тип клієнта відображається у вікні \"Статистика для сисадмінів\"</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Тип клієнта приховано у вікні \"Статистика для сисадмінів\"</string>
<string name="revanced_spoof_video_streams_language_title">Мова звукової доріжки</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Щоб вибрати певну звукову доріжку, вимкніть \"Примусово оригінальна мова звукової доріжки\"</string>
<string name="revanced_spoof_video_streams_language_android_studio">Вибір мови потоку недоступний з Android Studio</string>
</patch>
</app>
<app id="music">
@ -1586,8 +1594,8 @@ Second \"item\" text"</string>
</patch>
<patch id="layout.castbutton.hideCastButton">
<string name="revanced_music_hide_cast_button_title">Приховати кнопку трансляції</string>
<string name="revanced_music_hide_cast_button_summary_on">Кнопку \"Трансляція\" у відеоплеєрі приховано</string>
<string name="revanced_music_hide_cast_button_summary_off">Кнопка \"Трансляція\" у відеоплеєрі показується</string>
<string name="revanced_music_hide_cast_button_summary_on">Кнопку трансляції приховано</string>
<string name="revanced_music_hide_cast_button_summary_off">Кнопка трансляції показується</string>
</patch>
<patch id="layout.compactheader.hideCategoryBar">
<string name="revanced_music_hide_category_bar_title">Приховати панель категорій</string>
@ -1598,23 +1606,23 @@ Second \"item\" text"</string>
<string name="revanced_music_navigation_bar_screen_title">Панель навігації</string>
<string name="revanced_music_navigation_bar_screen_summary">Приховати або змінити кнопки панелі навігації</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Приховати кнопку \"Головна\"</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Кнопку \"Головна\" приховано на панелі навігації</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Кнопка \"Головна\" показується на панелі навігації</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Приховати \"Головна\"</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Кнопку \"Головна\" приховано</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Кнопка \"Головна\" показується</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Приховати кнопку \"Зразки\"</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Кнопку \"Зразки\" приховано</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Кнопка \"Зразки\" показується</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Приховати Семпли</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Кнопку \"Семпли\" приховано</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Кнопка \"Семпли\" показується</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Приховати кнопку \"Огляд\"</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Кнопку \"Огляд\" приховано</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Кнопка \"Огляд\" показується</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Приховати Огляд</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Кнопку \"Навігація\" приховано</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Кнопка \"Навігація\" показується</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Приховати кнопку \"Бібліотека\"</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Приховати Бібліотеку</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Кнопку \"Бібліотека\" приховано</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Кнопка \"Бібліотека\" показується</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Приховати кнопку \"Підписка\"</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Приховати Підписку</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Кнопку \"Підписка\" приховано</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Кнопка \"Підписка\" показується</string>
<string name="revanced_music_hide_navigation_bar_title">Приховати панель навігації</string>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -37,7 +37,7 @@ Second \"item\" text"</string>
<string name="revanced_settings_reset">Đặt lại</string>
<string name="revanced_settings_reset_color">Đặt lại màu</string>
<string name="revanced_settings_color_invalid">Màu không hợp lệ</string>
<string name="revanced_settings_restart_title">Cần khởi động lại</string>
<string name="revanced_settings_restart_title">Yêu cầu khởi động lại</string>
<string name="revanced_settings_restart_dialog_message">Khởi động lại ứng dụng để thay đổi này có hiệu lực.</string>
<string name="revanced_settings_restart">Khởi động lại</string>
<string name="revanced_settings_import">Nhập</string>
@ -68,29 +68,29 @@ Second \"item\" text"</string>
and changes made here must also be made there. -->
</patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch">
<string name="microg_settings_title">Cài đặt GmsCore</string>
<string name="microg_settings_summary">Các cài đặt cho GmsCore</string>
<string name="microg_settings_title">GmsCore</string>
<string name="microg_settings_summary">Chuyển hướng tới GmsCore và thiết lập</string>
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
<string name="gms_core_toast_not_installed_message">MicroG GmsCore chưa được cài đặt. Hãy cài đặt ngay.</string>
<string name="gms_core_dialog_title">Cần thực hiện</string>
<string name="gms_core_dialog_title">Yêu cầu thực hiện</string>
<string name="gms_core_dialog_not_whitelisted_not_allowed_in_background_message">"MicroG GmsCore không có quyền chạy nền.
Hãy làm theo hướng dẫn \"Don't kill my app\" dành cho điện thoại của bạn và áp dụng các bước đó để cài đặt MicroG.
Cấp quyền chạy nền là bắt buộc để ứng dụng hoạt động."</string>
<string name="gms_core_dialog_open_website_text">Mở trang web</string>
<string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">"Cần phải tắt tối ưu hóa pin cho MicroG GmsCore để tránh sự cố.
<string name="gms_core_dialog_not_whitelisted_using_battery_optimizations_message">"Để microG GmsCore hoạt động ổn định, bạn cần phải tắt tối ưu hoá pin cho ứng dụng này.
Tắt tối ưu hóa pin cho MicroG sẽ không ảnh hưởng đáng kể đến hiệu suất sử dụng pin.
Đừng lo, tắt tối ưu hóa pin cho microG sẽ không làm hao pin hơn.
Nhấn nút tiếp tục và cho phép thay đổi lựa chọn tối ưu hóa."</string>
Nhấn tiếp tục để thay đổi lựa chọn tối ưu hóa."</string>
<string name="gms_core_dialog_continue_text">Tiếp tục</string>
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<string name="revanced_spoof_video_streams_screen_title">Giả mạo luồng video</string>
<string name="revanced_spoof_video_streams_screen_summary">Giả mạo luồng video của thiết bị nhằm ngăn chặn lỗi khi phát</string>
<string name="revanced_spoof_video_streams_screen_summary">Giả mạo luồng video của ứng dụng khách nhằm ngăn chặn lỗi khi phát</string>
<string name="revanced_spoof_video_streams_screen_title">Giả mạo luồng video</string>
<string name="revanced_spoof_video_streams_screen_summary">Giả mạo luồng video của thiết bị nhằm ngăn chặn lỗi khi phát</string>
<string name="revanced_spoof_video_streams_screen_summary">Giả mạo luồng video của ứng dụng khách nhằm ngăn chặn lỗi khi phát</string>
<string name="revanced_spoof_video_streams_title">Giả mạo luồng video</string>
<string name="revanced_spoof_video_streams_summary_on">"Luồng video đã được giả mạo
@ -99,7 +99,7 @@ Nếu bạn là người dùng YouTube Premium, thì cài đặt này có thể
Có thể gặp lỗi khi phát."</string>
<string name="revanced_spoof_video_streams_user_dialog_message">Tắt cài đặt này có thể gây ra lỗi khi phát.</string>
<string name="revanced_spoof_video_streams_client_type_title">Loại thiết bị mặc định</string>
<string name="revanced_spoof_video_streams_client_type_title">Ứng dụng khách mặc định</string>
</patch>
<patch id="misc.debugging.enableDebuggingPatch">
<string name="revanced_debug_screen_title">Gỡ lỗi</string>
@ -107,6 +107,15 @@ Có thể gặp lỗi khi phát."</string>
<string name="revanced_debug_title">Nhật ký gỡ lỗi</string>
<string name="revanced_debug_summary_on">Nhật ký gỡ lỗi đã bật</string>
<string name="revanced_debug_summary_off">Nhật ký gỡ lỗi đã tắt</string>
<string name="revanced_debug_stacktrace_title">Ghi nhật ký truy vết ngăn xếp</string>
<string name="revanced_debug_stacktrace_summary_on">Nhật ký gỡ lỗi bao gồm truy vết ngăn xếp</string>
<string name="revanced_debug_stacktrace_summary_off">Nhật ký gỡ lỗi không bao gồm truy vết ngăn xếp</string>
<string name="revanced_debug_toast_on_error_title">Hiện thông báo ngắn về lỗi ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Thông báo ngắn sẽ hiện nếu xảy ra lỗi</string>
<string name="revanced_debug_toast_on_error_summary_off">Thông báo ngắn không hiện nếu xảy ra lỗi</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Tắt thông báo lỗi sẽ ẩn mọi thông báo lỗi từ ReVanced.
Bạn sẽ không được thông báo khi xẩy ra lỗi bất ngờ."</string>
<string name="revanced_debug_export_logs_to_clipboard_title">Xuất nhật ký gỡ lỗi</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">Sao chép nhật ký gỡ lỗi ReVanced vào bảng nhớ tạm</string>
<string name="revanced_debug_logs_disabled">Tính năng ghi nhật ký gỡ lỗi đã tắt</string>
@ -151,15 +160,6 @@ Có thể gặp lỗi khi phát."</string>
Điều này có thể giúp xác định các thành phần khi tạo bộ lọc tùy chỉnh.
Tuy nhiên, bật tính năng này cũng sẽ ghi lại một số dữ liệu người dùng, chẳng hạn như địa chỉ IP của bạn."</string>
<string name="revanced_debug_stacktrace_title">Ghi nhật ký truy vết ngăn xếp</string>
<string name="revanced_debug_stacktrace_summary_on">Nhật ký gỡ lỗi bao gồm truy vết ngăn xếp</string>
<string name="revanced_debug_stacktrace_summary_off">Nhật ký gỡ lỗi không bao gồm truy vết ngăn xếp</string>
<string name="revanced_debug_toast_on_error_title">Hiện thông báo ngắn về lỗi ReVanced</string>
<string name="revanced_debug_toast_on_error_summary_on">Thông báo ngắn sẽ hiện nếu xảy ra lỗi</string>
<string name="revanced_debug_toast_on_error_summary_off">Thông báo ngắn không hiện nếu xảy ra lỗi</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"Tắt thông báo lỗi sẽ ẩn mọi thông báo lỗi từ ReVanced.
Bạn sẽ không được thông báo khi xẩy ra lỗi bất ngờ."</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">Ẩn thẻ đĩa nhạc</string>
@ -186,15 +186,15 @@ Bạn sẽ không được thông báo khi xẩy ra lỗi bất ngờ."</string>
<string name="revanced_hide_floating_microphone_button_title">Ẩn nút micrô nổi</string>
<string name="revanced_hide_floating_microphone_button_summary_on">Nút micro nổi trong tìm kiếm bị ẩn</string>
<string name="revanced_hide_floating_microphone_button_summary_off">Nút micro nổi trong tìm kiếm đang hiển thị</string>
<string name="revanced_hide_horizontal_shelves_title">Ẩn kệ ngang</string>
<string name="revanced_hide_horizontal_shelves_summary_on">"Các kệ ngang đã bị ẩn, chẳng hạn như:
<string name="revanced_hide_horizontal_shelves_title">Ẩn kệ cá nhân hoá</string>
<string name="revanced_hide_horizontal_shelves_summary_on">"Các kệ cá nhân hoá đã bị ẩn, chẳng hạn như:
• Tin nổi bật
• Tiếp tục xem
• Khám phá các chủ đề khác
• Phù hợp nhất
• Mua sắm
• Xem lại"</string>
<string name="revanced_hide_horizontal_shelves_summary_off">Kệ ngang được hiển thị</string>
<string name="revanced_hide_horizontal_shelves_summary_off">Kệ cá nhân hoá được hiển thị</string>
<string name="revanced_hide_image_shelf_title">Ẩn kệ hình ảnh</string>
<string name="revanced_hide_image_shelf_summary_on">Kệ hình ảnh trong kết quả tìm kiếm đã bị ẩn</string>
<string name="revanced_hide_image_shelf_summary_off">Kệ hình ảnh trong kết quả tìm kiếm được hiển thị</string>
@ -586,6 +586,10 @@ Vui lòng kiểm tra lại tên gói và đảm bảo ứng dụng đã được
<string name="revanced_hide_stop_ads_button_title">Ẩn Ngừng quảng cáo</string>
<string name="revanced_hide_stop_ads_button_summary_on">Nút ngừng quảng cáo đã bị ẩn</string>
<string name="revanced_hide_stop_ads_button_summary_off">Nút ngừng quảng cáo được hiển thị</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">Ẩn bình luận</string>
<string name="revanced_hide_comments_button_summary_on">Nút bình luận đã bị ẩn</string>
<string name="revanced_hide_comments_button_summary_off">Nút bình luận được hiển thị</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">Ẩn Báo cáo</string>
@ -622,9 +626,9 @@ Vui lòng kiểm tra lại tên gói và đảm bảo ứng dụng đã được
<string name="revanced_hide_clip_button_summary_on">Nút tạo đoạn video đã bị ẩn</string>
<string name="revanced_hide_clip_button_summary_off">Nút tạo đoạn video được hiển thị</string>
<!-- 'Shop' should be translated with the same localized wording that YouTube displays. -->
<string name="revanced_hide_shop_button_title">Ẩn Cửa hàng</string>
<string name="revanced_hide_shop_button_summary_on">Nút Cửa hàng đã bị ẩn</string>
<string name="revanced_hide_shop_button_summary_off">Nút Cửa hàng được hiển thị</string>
<string name="revanced_hide_shop_button_title">Ẩn Mua sắm</string>
<string name="revanced_hide_shop_button_summary_on">Nút Mua sắm đã bị ẩn</string>
<string name="revanced_hide_shop_button_summary_off">Nút Mua sắm được hiển thị</string>
<!-- 'Save' should be translated with the same localized wording that YouTube displays. -->
<string name="revanced_hide_save_button_title">Ẩn Lưu</string>
<string name="revanced_hide_save_button_summary_on">Nút Lưu đã bị ẩn</string>
@ -835,7 +839,7 @@ Nếu thay đổi cài đặt này không có hiệu lực, hãy thử chuyển
<string name="revanced_hide_shorts_search_suggestions_title">Ẩn đề xuất tìm kiếm</string>
<string name="revanced_hide_shorts_search_suggestions_summary_on">Đề xuất tìm kiếm đã bị ẩn</string>
<string name="revanced_hide_shorts_search_suggestions_summary_off">Đề xuất tìm kiếm được hiển thị</string>
<string name="revanced_hide_shorts_shop_button_title">Ẩn nút Cửa hàng</string>
<string name="revanced_hide_shorts_shop_button_title">Ẩn nút Mua sắm</string>
<string name="revanced_hide_shorts_shop_button_summary_on">Nút mua sắm đã bị ẩn</string>
<string name="revanced_hide_shorts_shop_button_summary_off">Nút mua sắm được hiển thị</string>
<string name="revanced_hide_shorts_stickers_title">Ẩn nhãn dán</string>
@ -1243,8 +1247,9 @@ Bố cục màn hình ô tô
Nếu tắt đi sau đó, bạn nên xóa dữ liệu ứng dụng để tránh phát sinh lỗi giao diện."</string>
<string name="revanced_spoof_app_version_target_title">Mục tiêu phiên bản giả mạo</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - Khôi phục biểu tượng trình phát Shorts cũ</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - Khôi phục biểu tượng điều hướng cũ</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - Khôi phục thanh thao tác video mở rộng</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - Khôi phục biểu tượng trình phát Shorts cũ</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - Khôi phục biểu tượng điều hướng cũ</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">Thay đổi trang bắt đầu</string>
@ -1562,15 +1567,18 @@ Bật tính năng này có thể mở khóa chất lượng video cao hơn"</str
<string name="revanced_spoof_video_streams_about_android_summary">"• Trình đơn bản âm thanh bị thiếu
• Âm lượng ổn định không khả dụng"</string>
<string name="revanced_spoof_video_streams_about_ipados_summary">• Video có thể dừng ở 1:00, hoặc có thể không khả dụng ở một số khu vực</string>
<string name="revanced_spoof_video_streams_about_experimental">• Ứng dụng thử nghiệm và có thể ngừng hoạt động bất cứ lúc nào</string>
<string name="revanced_spoof_video_streams_about_experimental">• Ứng dụng khách đang trong giai đoạn thử nghiệm và có thể ngừng hoạt động bất cứ lúc nào</string>
<string name="revanced_spoof_video_streams_about_no_av1">• Không có codec video AV1</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Video dành cho trẻ em có thể không phát được khi đăng xuất hoặc ở chế độ ẩn danh</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Buộc âm thanh gốc không khả dụng</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Hiện trong Thống kê chi tiết</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Loại máy khách đã được hiển thị trong Thống kê chi tiết</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Loại thiết bị đã ẩn trong Thống kê chi tiết</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Ứng dụng khách đã được hiển thị trong Thống kê chi tiết</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Ứng dụng khách đã ẩn trong Thống kê chi tiết</string>
<string name="revanced_spoof_video_streams_language_title">Ngôn ngữ luồng âm thanh</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">Để chọn ngôn ngữ âm thanh cụ thể, hãy tắt \'Buộc ngôn ngữ âm thanh gốc\'</string>
<string name="revanced_spoof_video_streams_language_android_studio">Chọn ngôn ngữ luồng không khả dụng với Android Studio</string>
</patch>
</app>
<app id="music">
@ -1589,7 +1597,7 @@ Bật tính năng này có thể mở khóa chất lượng video cao hơn"</str
<patch id="interaction.permanentrepeat.permanentRepeatPatch">
<string name="revanced_music_play_permanent_repeat_title">Bật lặp lại vĩnh viễn</string>
<string name="revanced_music_play_permanent_repeat_summary_on">Lặp lại vĩnh viễn đã được bật</string>
<string name="revanced_music_play_permanent_repeat_summary_off">Lặp lại vĩnh viễn đã bị tắt</string>
<string name="revanced_music_play_permanent_repeat_summary_off">Lặp lại vĩnh viễn đã tắt</string>
</patch>
<patch id="layout.castbutton.hideCastButton">
<string name="revanced_music_hide_cast_button_title">Ẩn nút truyền</string>
@ -1605,36 +1613,36 @@ Bật tính năng này có thể mở khóa chất lượng video cao hơn"</str
<string name="revanced_music_navigation_bar_screen_title">Thanh điều hướng</string>
<string name="revanced_music_navigation_bar_screen_summary">Ẩn hoặc thay đổi các nút trên thanh điều hướng</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Ẩn nút Trang chủ</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Ẩn Trang chủ</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Nút Trang chủ đã bị ẩn</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Nút Trang chủ được hiển thị</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Ẩn nút Mẫu</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Nút Mẫu đã bị ẩn</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Nút Mẫu được hiển thị</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Ẩn Đoạn nhạc</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Nút Đoạn nhạc đã bị ẩn</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Nút Đoạn nhạc được hiển thị</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Ẩn nút Khám phá</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Ẩn Khám phá</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Nút Khám phá đã bị ẩn</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Nút Khám phá được hiển thị</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Ẩn nút Thư viện</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Ẩn Thư viện</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Nút Thư viện đã bị ẩn</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Nút Thư viện được hiển thị</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Ẩn nút Nâng cấp</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Ẩn Nâng cấp</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Nút Nâng cấp đã bị ẩn</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Nút Nâng cấp được hiển thị</string>
<string name="revanced_music_hide_navigation_bar_title">Ẩn thanh điều hướng</string>
<string name="revanced_music_hide_navigation_bar_summary_on">Thanh điều hướng đã bị ẩn</string>
<string name="revanced_music_hide_navigation_bar_summary_off">Thanh điều hướng được hiển thị</string>
<string name="revanced_music_hide_navigation_bar_labels_title">Ẩn nhãn nút điều hướng</string>
<string name="revanced_music_hide_navigation_bar_labels_summary_on">Nhãn đã bị ẩn</string>
<string name="revanced_music_hide_navigation_bar_labels_summary_off">Nhãn được hiển thị</string>
<string name="revanced_music_hide_navigation_bar_labels_title">Ẩn n nút điều hướng</string>
<string name="revanced_music_hide_navigation_bar_labels_summary_on">Tên nút đã bị ẩn</string>
<string name="revanced_music_hide_navigation_bar_labels_summary_off">Tên nút được hiển thị</string>
</patch>
<patch id="layout.premium.hideGetPremiumPatch">
<string name="revanced_music_hide_get_premium_label_title">Ẩn nhãn \'Nhận Music Premium\'</string>
<string name="revanced_music_hide_get_premium_label_summary_on">Nhãn đã bị ẩn</string>
<string name="revanced_music_hide_get_premium_label_summary_off">Nhãn được hiển thị</string>
<string name="revanced_music_hide_get_premium_label_title">Ẩn trình đơn \'Mua Music Premium\'</string>
<string name="revanced_music_hide_get_premium_label_summary_on">Trình đơn này đã bị ẩn</string>
<string name="revanced_music_hide_get_premium_label_summary_off">Trình đơn này được hiển thị</string>
</patch>
<patch id="layout.upgradebutton.hideUpgradeButtonPatch">
<string name="revanced_music_hide_upgrade_button_title">Ẩn nút nâng cấp</string>
@ -1691,7 +1699,7 @@ Bật tính năng này có thể mở khóa chất lượng video cao hơn"</str
<string name="revanced_misc_screen_summary">Cài đặt linh tinh</string>
<string name="revanced_general_category_title">Cài đặt chung</string>
<string name="revanced_other_category_title">Cài đặt khác</string>
<string name="revanced_client_ads_category_title">Quảng cáo phía máy khách</string>
<string name="revanced_client_ads_category_title">Quảng cáo phía ứng dụng</string>
<string name="revanced_surestream_ads_category_title">Quảng cáo luồng đảm bảo phía máy khách</string>
<string name="revanced_twitch_debug_title">Nhật ký gỡ lỗi</string>
<string name="revanced_twitch_debug_summary_on">Nhật ký gỡ lỗi đã bật</string>

View file

@ -107,6 +107,15 @@ Second \"item\" text"</string>
<string name="revanced_debug_title">调试日志</string>
<string name="revanced_debug_summary_on">已启用调试日志记录</string>
<string name="revanced_debug_summary_off">已禁用调试日志记录</string>
<string name="revanced_debug_stacktrace_title">记录堆栈跟踪</string>
<string name="revanced_debug_stacktrace_summary_on">调试日志包括堆栈跟踪</string>
<string name="revanced_debug_stacktrace_summary_off">调试日志不包括堆栈跟踪</string>
<string name="revanced_debug_toast_on_error_title">在发生 ReVanced 错误时显示 Toast</string>
<string name="revanced_debug_toast_on_error_summary_on">发生错误时显示Toast</string>
<string name="revanced_debug_toast_on_error_summary_off">发生错误时不显示Toast</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"关闭错误 Toast 会隐藏所有 ReVanced 错误通知。
您不会收到任何意外事件的通知。"</string>
<string name="revanced_debug_export_logs_to_clipboard_title">导出调试日志</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">将 ReVanced 调试日志复制到剪贴板</string>
<string name="revanced_debug_logs_disabled">调试日志记录已禁用</string>
@ -151,15 +160,6 @@ Second \"item\" text"</string>
这有助于在创建自定义过滤器时识别组件。
但是,启用此设置也会记录一些用户数据,例如您的 IP 地址。"</string>
<string name="revanced_debug_stacktrace_title">记录堆栈跟踪</string>
<string name="revanced_debug_stacktrace_summary_on">调试日志包括堆栈跟踪</string>
<string name="revanced_debug_stacktrace_summary_off">调试日志不包括堆栈跟踪</string>
<string name="revanced_debug_toast_on_error_title">在发生 ReVanced 错误时显示 Toast</string>
<string name="revanced_debug_toast_on_error_summary_on">发生错误时显示Toast</string>
<string name="revanced_debug_toast_on_error_summary_off">发生错误时不显示Toast</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"关闭错误 Toast 会隐藏所有 ReVanced 错误通知。
您不会收到任何意外事件的通知。"</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">隐藏专辑卡片</string>
@ -586,6 +586,10 @@ Second \"item\" text"</string>
<string name="revanced_hide_stop_ads_button_title">隐藏停止广告</string>
<string name="revanced_hide_stop_ads_button_summary_on">停止广告按钮已隐藏</string>
<string name="revanced_hide_stop_ads_button_summary_off">停止广告按钮已显示</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">隐藏评论</string>
<string name="revanced_hide_comments_button_summary_on">评论按钮已隐藏</string>
<string name="revanced_hide_comments_button_summary_off">评论按钮已显示</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">隐藏「举报」</string>
@ -1247,8 +1251,9 @@ Second \"item\" text"</string>
如果稍后关闭,建议清除应用程序数据以防止 UI 错误。"</string>
<string name="revanced_spoof_app_version_target_title">伪装应用程序版本为</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - 恢复旧的 Shorts 播放器图标</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - 还原旧的导航图标</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - 恢复未折叠的视频操作栏</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - 恢复旧的 Shorts 播放器图标</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - 还原旧的导航图标</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">更改起始页</string>
@ -1564,12 +1569,15 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_about_experimental">• 实验性客户端,可能随时停止工作</string>
<string name="revanced_spoof_video_streams_about_no_av1">• 不支持 AV1 视频编解码器</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• 注销或使用无痕模式时,儿童视频可能无法播放</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• 强制原始音频不可用</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">显示在 Stats for nerds 中</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">客户端类型显示在 Stats for nerds 中</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">客户端隐藏在 Stats for nerds 中</string>
<string name="revanced_spoof_video_streams_language_title">音频流语言</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">要选择特定的音频语言,请关闭“强制原始音频语言”</string>
<string name="revanced_spoof_video_streams_language_android_studio">Android Studio 不支持选择流语言</string>
</patch>
</app>
<app id="music">
@ -1604,23 +1612,23 @@ Second \"item\" text"</string>
<string name="revanced_music_navigation_bar_screen_title">导航栏</string>
<string name="revanced_music_navigation_bar_screen_summary">隐藏或更改导航栏按钮</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">隐藏主页按钮</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">隐藏主页</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">主页按钮已隐藏</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">主页按钮已显示</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">隐藏精选按钮</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">隐藏短片</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">精选按钮已隐藏</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">精选按钮已显示</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">隐藏探索按钮</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">隐藏探索</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">探索按钮已隐藏</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">探索按钮已显示</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">隐藏媒体库按钮</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">隐藏媒体库</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">媒体库按钮已隐藏</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">媒体库按钮已显示</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">隐藏升级按钮</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">隐藏升级</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">升级按钮已隐藏</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">升级按钮已显示</string>
<string name="revanced_music_hide_navigation_bar_title">隐藏导航栏</string>

View file

@ -107,6 +107,15 @@ Second \"item\" text"</string>
<string name="revanced_debug_title">偵錯記錄</string>
<string name="revanced_debug_summary_on">已啟用偵錯記錄檔</string>
<string name="revanced_debug_summary_off">已停用偵錯記錄檔</string>
<string name="revanced_debug_stacktrace_title">記錄檔堆疊追蹤</string>
<string name="revanced_debug_stacktrace_summary_on">除錯記錄檔會包含堆疊追蹤</string>
<string name="revanced_debug_stacktrace_summary_off">除錯記錄檔不會包含堆疊追蹤</string>
<string name="revanced_debug_toast_on_error_title">在 ReVanced 發生錯誤時顯示提示訊息</string>
<string name="revanced_debug_toast_on_error_summary_on">如果發生錯誤,則顯示提示訊息</string>
<string name="revanced_debug_toast_on_error_summary_off">如果發生錯誤,則不會顯示提示訊息</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"關閉錯誤提示訊息會隱藏所有 ReVanced 的錯誤通知。
你將不會收到任何非預期的事件通知。"</string>
<string name="revanced_debug_export_logs_to_clipboard_title">匯出偵錯記錄</string>
<string name="revanced_debug_export_logs_to_clipboard_summary">將 ReVanced 偵錯記錄複製到剪貼簿</string>
<string name="revanced_debug_logs_disabled">偵錯記錄已停用</string>
@ -151,15 +160,6 @@ Second \"item\" text"</string>
這有助於在建立自訂過濾器時識別元件。
不過,啟用此功能也會記錄部分使用者資料,例如您的 IP 位址。"</string>
<string name="revanced_debug_stacktrace_title">記錄檔堆疊追蹤</string>
<string name="revanced_debug_stacktrace_summary_on">除錯記錄檔會包含堆疊追蹤</string>
<string name="revanced_debug_stacktrace_summary_off">除錯記錄檔不會包含堆疊追蹤</string>
<string name="revanced_debug_toast_on_error_title">在 ReVanced 發生錯誤時顯示提示訊息</string>
<string name="revanced_debug_toast_on_error_summary_on">如果發生錯誤,則顯示提示訊息</string>
<string name="revanced_debug_toast_on_error_summary_off">如果發生錯誤,則不會顯示提示訊息</string>
<string name="revanced_debug_toast_on_error_user_dialog_message">"關閉錯誤提示訊息會隱藏所有 ReVanced 的錯誤通知。
你將不會收到任何非預期的事件通知。"</string>
</patch>
<patch id="layout.hide.general.hideLayoutComponentsPatch">
<string name="revanced_hide_album_cards_title">隱藏專輯資訊卡</string>
@ -376,13 +376,13 @@ Second \"item\" text"</string>
<string name="revanced_hide_keyword_content_screen_title">隱藏關鍵字內容</string>
<string name="revanced_hide_keyword_content_screen_summary">透過關鍵字篩選,隱藏搜尋結果與推薦內容中的影片</string>
<string name="revanced_hide_keyword_content_home_title">依關鍵字隱藏首頁影片</string>
<string name="revanced_hide_keyword_content_home_summary_on">首頁影片會被關鍵字篩選</string>
<string name="revanced_hide_keyword_content_home_summary_on">首頁分頁的影片會被關鍵字篩選</string>
<string name="revanced_hide_keyword_content_home_summary_off">首頁影片將不會被關鍵字篩選</string>
<string name="revanced_hide_keyword_content_search_title">依關鍵字隱藏搜尋結果</string>
<string name="revanced_hide_keyword_content_search_summary_on">搜尋結果將會被關鍵字篩選</string>
<string name="revanced_hide_keyword_content_search_summary_off">搜尋結果將不會被關鍵字篩選</string>
<string name="revanced_hide_keyword_content_subscriptions_title">依關鍵字隱藏訂閱內容影片</string>
<string name="revanced_hide_keyword_content_subscriptions_summary_on">訂閱內容分頁的影片會被關鍵字篩選</string>
<string name="revanced_hide_keyword_content_subscriptions_summary_on">訂閱內容分頁的影片會被關鍵字篩選</string>
<string name="revanced_hide_keyword_content_subscriptions_summary_off">訂閱內容分頁的影片將不會被關鍵字篩選</string>
<string name="revanced_hide_keyword_content_phrases_title">要隱藏的關鍵字</string>
<!-- For localization, it is preferred, but not required, if 'LeBlanc' is replaced with a localized name or a familiar word that has upper case letters in the middle of the word.
@ -472,9 +472,9 @@ Second \"item\" text"</string>
<string name="revanced_remove_viewer_discretion_dialog_user_dialog_message">這不會繞過年齡限制,只會自動按下同意。</string>
</patch>
<patch id="layout.hide.signintotv.disableSignInToTvPopupPatch">
<string name="revanced_disable_signin_to_tv_popup_title">停用「登入電視」彈出視窗 </string>
<string name="revanced_disable_signin_to_tv_popup_summary_on">「登入電視」彈出視窗已停用 </string>
<string name="revanced_disable_signin_to_tv_popup_summary_off">「登入電視」彈出視窗已啟用 </string>
<string name="revanced_disable_signin_to_tv_popup_title">停用「登入電視」彈出視窗</string>
<string name="revanced_disable_signin_to_tv_popup_summary_on">「登入電視」彈出視窗已停用</string>
<string name="revanced_disable_signin_to_tv_popup_summary_off">「登入電視」彈出視窗已啟用</string>
</patch>
<patch id="interaction.doubletap.disableDoubleTapActionsPatch">
<string name="revanced_disable_chapter_skip_double_tap_title">停用按兩下跳過章節功能</string>
@ -586,6 +586,10 @@ Second \"item\" text"</string>
<string name="revanced_hide_stop_ads_button_title">隱藏「停止廣告」</string>
<string name="revanced_hide_stop_ads_button_summary_on">「停止廣告」按鈕已隱藏</string>
<string name="revanced_hide_stop_ads_button_summary_off">「停止廣告」按鈕已顯示</string>
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<string name="revanced_hide_comments_button_title">隱藏留言</string>
<string name="revanced_hide_comments_button_summary_on">留言按鈕已隱藏</string>
<string name="revanced_hide_comments_button_summary_off">留言按鈕已顯示</string>
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<string name="revanced_hide_report_button_title">隱藏檢舉</string>
@ -658,7 +662,7 @@ Second \"item\" text"</string>
注意:啟用此功能也會強制隱藏影片廣告"</string>
<string name="revanced_switch_create_with_notifications_button_summary_off">「建立」按鈕不與「通知」按鈕對調</string>
<string name="revanced_switch_create_with_notifications_button_user_dialog_message">"停用此設定也會停用Shorts 的廣告攔截功能。
<string name="revanced_switch_create_with_notifications_button_user_dialog_message">"停用此設定也會停用 Shorts 的廣告攔截功能。
如果變更此設定沒有生效,請試試看切換到無痕模式。"</string>
<string name="revanced_hide_navigation_button_labels_title">隱藏導覽列按鈕標籤</string>
@ -684,23 +688,23 @@ Second \"item\" text"</string>
<string name="revanced_hide_player_flyout_captions_summary_off">已顯示「字幕」選單</string>
<!-- 'Additional settings' should be translated using the same localized wording YouTube displays for the menu item. -->
<string name="revanced_hide_player_flyout_additional_settings_title">隱藏「其他設定」</string>
<string name="revanced_hide_player_flyout_additional_settings_summary_on">已隱藏「其他設定」</string>
<string name="revanced_hide_player_flyout_additional_settings_summary_off">已顯示「其他設定」</string>
<string name="revanced_hide_player_flyout_additional_settings_summary_on">已隱藏「其他設定」選單</string>
<string name="revanced_hide_player_flyout_additional_settings_summary_off">已顯示「其他設定」選單</string>
<!-- 'Sleep timer' should be translated using the same localized wording YouTube displays for the menu item. -->
<string name="revanced_hide_player_flyout_sleep_timer_title">隱藏「睡眠計時器」</string>
<string name="revanced_hide_player_flyout_sleep_timer_summary_on">已隱藏「睡眠計時器」</string>
<string name="revanced_hide_player_flyout_sleep_timer_summary_off">已顯示「睡眠計時器」</string>
<string name="revanced_hide_player_flyout_sleep_timer_summary_on">已隱藏「睡眠計時器」選單</string>
<string name="revanced_hide_player_flyout_sleep_timer_summary_off">已顯示「睡眠計時器」選單</string>
<!-- 'Loop video' should be translated using the same localized wording YouTube displays for the menu item. -->
<string name="revanced_hide_player_flyout_loop_video_title">隱藏「循環播放影片」</string>
<string name="revanced_hide_player_flyout_loop_video_summary_on">已隱藏「循環播放」選單</string>
<string name="revanced_hide_player_flyout_loop_video_summary_off">已顯示「循環播放」選單</string>
<string name="revanced_hide_player_flyout_loop_video_summary_on">已隱藏「循環播放影片」選單</string>
<string name="revanced_hide_player_flyout_loop_video_summary_off">已顯示「循環播放影片」選單</string>
<!-- 'Ambient mode' should be translated using the same localized wording YouTube displays for the menu item. -->
<string name="revanced_hide_player_flyout_ambient_mode_title">隱藏「微光效果」</string>
<string name="revanced_hide_player_flyout_ambient_mode_summary_on">已隱藏「微光模式」選單</string>
<string name="revanced_hide_player_flyout_ambient_mode_summary_on">已隱藏「微光效果」選單</string>
<string name="revanced_hide_player_flyout_ambient_mode_summary_off">已顯示「微光效果」選單</string>
<string name="revanced_hide_player_flyout_stable_volume_title">隱藏「平衡音量」</string>
<string name="revanced_hide_player_flyout_stable_volume_summary_off">已顯示「平衡音量」</string>
<string name="revanced_hide_player_flyout_stable_volume_summary_on">已隱藏「平衡音量」</string>
<string name="revanced_hide_player_flyout_stable_volume_summary_off">已顯示「平衡音量」選單</string>
<string name="revanced_hide_player_flyout_stable_volume_summary_on">已隱藏「平衡音量」選單</string>
<!-- 'Help & feedback' should be translated using the same localized wording YouTube displays for the menu item. -->
<string name="revanced_hide_player_flyout_help_title">隱藏「說明和意見回饋」</string>
<string name="revanced_hide_player_flyout_help_summary_on">已隱藏「說明和意見回饋」選單</string>
@ -761,7 +765,7 @@ Second \"item\" text"</string>
<string name="revanced_hide_endscreen_cards_summary_off">已顯示片尾資訊卡</string>
</patch>
<patch id="layout.hide.fullscreenambientmode.disableFullscreenAmbientModePatch">
<string name="revanced_disable_fullscreen_ambient_mode_title">在全螢幕狀態下停用微光模式</string>
<string name="revanced_disable_fullscreen_ambient_mode_title">在全螢幕狀態下停用微光效果</string>
<string name="revanced_disable_fullscreen_ambient_mode_summary_on">已停用微光效果</string>
<string name="revanced_disable_fullscreen_ambient_mode_summary_off">已啟用微光效果</string>
</patch>
@ -1028,7 +1032,7 @@ Second \"item\" text"</string>
<string name="revanced_sb_general_skiptoast">顯示「取消跳過」提示</string>
<string name="revanced_sb_general_skiptoast_sum_on">當片段自動跳過時會顯示提示。點擊提示通知可取消跳過</string>
<string name="revanced_sb_general_skiptoast_sum_off">不顯示提示</string>
<string name="revanced_sb_toast_on_skip_duration">「取消跳過」提示顯示時間</string>
<string name="revanced_sb_toast_on_skip_duration">跳過提示時長</string>
<string name="revanced_sb_toast_on_skip_duration_sum">「取消跳過」提示顯示多久</string>
<string name="revanced_sb_duration_1s">1 秒</string>
<string name="revanced_sb_duration_2s">2 秒</string>
@ -1243,8 +1247,9 @@ Second \"item\" text"</string>
如果之後關閉此設定,建議清除應用程式資料以避免 UI 錯誤。"</string>
<string name="revanced_spoof_app_version_target_title">應用程式偽裝目標版本</string>
<string name="revanced_spoof_app_version_target_entry_1">19.35.36 - 還原舊版 Shorts 播放圖示</string>
<string name="revanced_spoof_app_version_target_entry_2">19.01.34 - 還原舊版導覽圖示</string>
<string name="revanced_spoof_app_version_target_entry_1">20.13.41 - 還原未收合的影片操作列</string>
<string name="revanced_spoof_app_version_target_entry_2">19.35.36 - 還原舊版 Shorts 播放圖示</string>
<string name="revanced_spoof_app_version_target_entry_3">19.01.34 - 還原舊版導覽圖示</string>
</patch>
<patch id="layout.startpage.changeStartPagePatch">
<string name="revanced_change_start_page_title">變更起始頁面</string>
@ -1273,9 +1278,9 @@ Second \"item\" text"</string>
<string name="revanced_change_start_page_entry_watch_later">稍後觀看</string>
<string name="revanced_change_start_page_entry_your_clips">你的剪輯</string>
<string name="revanced_change_start_page_always_title">一律變更起始頁面</string>
<string name="revanced_change_start_page_always_summary_on">"開始頁面總是變更
<string name="revanced_change_start_page_always_summary_on">"開始頁面一律變更
限制: 使用工具列上的返回按鈕可能無法運作"</string>
限制:工具列上的返回按鈕可能無法運作"</string>
<string name="revanced_change_start_page_always_summary_off">起始頁面僅在應用程式啟動時變更</string>
</patch>
<patch id="layout.startupshortsreset.disableResumingShortsOnStartupPatch">
@ -1569,12 +1574,15 @@ Second \"item\" text"</string>
<string name="revanced_spoof_video_streams_about_experimental">• 實驗性用戶端,隨時可能停止運作</string>
<string name="revanced_spoof_video_streams_about_no_av1">• 沒有 AV1 影片解碼器</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• 在登出或無痕模式下,兒童影片可能無法播放</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• 強制原始音訊不可用</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">顯示統計資料</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">已在統計資料中顯示用戶端類型</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">已在統計資料中隱藏用戶端類型</string>
<string name="revanced_spoof_video_streams_language_title">音訊串流語言</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">若要選擇特定的音訊語言,請關閉「強制使用原始音訊語言」</string>
<string name="revanced_spoof_video_streams_language_android_studio">無法使用 Android Studio 選擇串流語言</string>
</patch>
</app>
<app id="music">
@ -1596,9 +1604,9 @@ Second \"item\" text"</string>
<string name="revanced_music_play_permanent_repeat_summary_off">永久重複播放已停用</string>
</patch>
<patch id="layout.castbutton.hideCastButton">
<string name="revanced_music_hide_cast_button_title">隱藏投放按鈕</string>
<string name="revanced_music_hide_cast_button_summary_on">投放按鈕已隱藏</string>
<string name="revanced_music_hide_cast_button_summary_off">投放按鈕已顯示</string>
<string name="revanced_music_hide_cast_button_title">隱藏投放按鈕</string>
<string name="revanced_music_hide_cast_button_summary_on">投放按鈕已隱藏</string>
<string name="revanced_music_hide_cast_button_summary_off">投放按鈕已顯示</string>
</patch>
<patch id="layout.compactheader.hideCategoryBar">
<string name="revanced_music_hide_category_bar_title">隱藏類別列</string>
@ -1609,23 +1617,23 @@ Second \"item\" text"</string>
<string name="revanced_music_navigation_bar_screen_title">導覽列</string>
<string name="revanced_music_navigation_bar_screen_summary">隱藏或變更導覽列按鈕</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">隱藏「首頁」按鈕</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">隱藏「首頁」</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">「首頁」按鈕已隱藏</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">「首頁」按鈕已顯示</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">隱藏「取樣」按鈕</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">隱藏「取樣」</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">「取樣」按鈕已隱藏</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">「取樣」按鈕已顯示</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">隱藏探索」按鈕</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">隱藏探索</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">「探索」按鈕已隱藏</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">「探索」按鈕已顯示</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">隱藏媒體庫」按鈕</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">隱藏媒體庫</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">「媒體庫」按鈕已隱藏</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">「媒體庫」按鈕已顯示</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">隱藏升級」按鈕</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">隱藏升級</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">「升級」按鈕已隱藏</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">「升級」按鈕已顯示</string>
<string name="revanced_music_hide_navigation_bar_title">隱藏導覽列</string>

View file

@ -89,6 +89,7 @@ Second \"item\" text"</string>
<patch id="layout.buttons.action.hideButtonsPatch">
<!-- 'Share' should be translated with the same localized wording that YouTube displays. -->
<!-- 'Stop ads' should be translated with the same localized wording that YouTube displays. -->
<!-- Button does not have any text and is only shown as an icon, and only when the video information area is collapsed to a compact state. -->
<!-- 'Report' should be translated with the same localized wording that YouTube displays.
This button usually only shows on live streams. -->
<!-- 'Remix' should be translated with the same localized wording that YouTube displays. -->
@ -243,6 +244,7 @@ Second \"item\" text"</string>
<patch id="interaction.seekbar.enableSlideToSeekPatch">
</patch>
<patch id="misc.fix.playback.spoofVideoStreamsPatch">
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
</patch>
</app>

View file

@ -401,7 +401,7 @@
</string-array>
</patch>
<patch id="layout.sponsorblock.sponsorBlockResourcePatch">
<string-array name="revanced_sb_duration_entries">
<string-array name="revanced_sb_auto_hide_skip_button_duration_entries">
<item>@string/revanced_sb_duration_1s</item>
<item>@string/revanced_sb_duration_2s</item>
<item>@string/revanced_sb_duration_3s</item>
@ -413,7 +413,7 @@
<item>@string/revanced_sb_duration_9s</item>
<item>@string/revanced_sb_duration_10s</item>
</string-array>
<string-array name="revanced_sb_duration_entry_values">
<string-array name="revanced_sb_auto_hide_skip_button_duration_entry_values">
<item>ONE_SECOND</item>
<item>TWO_SECONDS</item>
<item>THREE_SECONDS</item>
@ -425,6 +425,32 @@
<item>NINE_SECONDS</item>
<item>TEN_SECONDS</item>
</string-array>
<!-- No easy way to make an alias to another array declaration, so copy it again here. -->
<string-array name="revanced_sb_toast_on_skip_duration_entries">
<item>@string/revanced_sb_duration_1s</item>
<item>@string/revanced_sb_duration_2s</item>
<item>@string/revanced_sb_duration_3s</item>
<item>@string/revanced_sb_duration_4s</item>
<item>@string/revanced_sb_duration_5s</item>
<item>@string/revanced_sb_duration_6s</item>
<item>@string/revanced_sb_duration_7s</item>
<item>@string/revanced_sb_duration_8s</item>
<item>@string/revanced_sb_duration_9s</item>
<item>@string/revanced_sb_duration_10s</item>
</string-array>
<string-array name="revanced_sb_toast_on_skip_duration_entry_values">
<item>ONE_SECOND</item>
<item>TWO_SECONDS</item>
<item>THREE_SECONDS</item>
<item>FOUR_SECONDS</item>
<item>FIVE_SECONDS</item>
<item>SIX_SECONDS</item>
<item>SEVEN_SECONDS</item>
<item>EIGHT_SECONDS</item>
<item>NINE_SECONDS</item>
<item>TEN_SECONDS</item>
</string-array>
</patch>
<patch id="layout.shortsplayer.shortsPlayerTypePatch">
<string-array name="revanced_shorts_player_type_entries">

View file

@ -48,14 +48,28 @@ Second \"item\" text"</string>
<string name="revanced_settings_search_hint">Search settings</string>
<string name="revanced_settings_search_no_results_title">No results found for \'%s\'</string>
<string name="revanced_settings_search_no_results_summary">Try another keyword</string>
<string name="revanced_settings_search_recent_searches">Recent searches</string>
<string name="revanced_settings_search_remove_message">Remove from search history?</string>
<string name="revanced_settings_search_clear_history">Clear search history</string>
<string name="revanced_settings_search_clear_history_message">Are you sure you want to clear all search history?</string>
<string name="revanced_settings_search_tips_title">Search Tips</string>
<string name="revanced_settings_search_tips_summary">"• Tap a path to navigate to it
• Long-press a setting to navigate to it
• Press Enter to save a search query to history
• Search ignores casing and punctuation
• Parent settings appear above disabled child settings"</string>
<string name="revanced_settings_search_empty_history_title">Search history is empty</string>
<string name="revanced_settings_search_empty_history_summary">To save search history, type a search query and press Enter</string>
<string name="revanced_settings_search_history_title">Show settings search history</string>
<string name="revanced_settings_search_history_summary_on">Settings search history is shown</string>
<string name="revanced_settings_search_history_summary_off">Settings search history is not shown</string>
<string name="revanced_show_menu_icons_title">Show ReVanced setting icons</string>
<string name="revanced_show_menu_icons_summary_on">Setting icons are shown</string>
<string name="revanced_show_menu_icons_summary_off">Setting icons are not shown</string>
<string name="revanced_language_title">ReVanced language</string>
<string name="revanced_language_user_dialog_message">"Translations for some languages may be missing or incomplete.
To translate new languages visit translate.revanced.app"</string>
To translate new languages or improve the existing translations, visit translate.revanced.app"</string>
<string name="revanced_language_DEFAULT">App language</string>
<string name="revanced_language_AM" translatable="false">አማርኛ</string>
<string name="revanced_language_AR" translatable="false">العربية</string>
@ -200,9 +214,6 @@ You will not be notified of any unexpected events."</string>
<string name="revanced_restore_old_settings_menus_title">Restore old settings menus</string>
<string name="revanced_restore_old_settings_menus_summary_on">Old settings menus are shown</string>
<string name="revanced_restore_old_settings_menus_summary_off">Old settings menus are not shown</string>
<string name="revanced_settings_search_history_title">Show settings search history</string>
<string name="revanced_settings_search_history_summary_on">Settings search history is shown</string>
<string name="revanced_settings_search_history_summary_off">Settings search history is not shown</string>
</patch>
<patch id="misc.backgroundplayback.backgroundPlaybackPatch">
<string name="revanced_shorts_disable_background_playback_title">Disable Shorts background play</string>
@ -246,6 +257,7 @@ However, enabling this will also log some user data such as your IP address."</s
<string name="revanced_hide_floating_microphone_button_summary_off">Floating microphone button in search is shown</string>
<string name="revanced_hide_horizontal_shelves_title">Hide horizontal shelves</string>
<string name="revanced_hide_horizontal_shelves_summary_on">"Horizontal shelves are hidden, such as:
• Breaking news
• Continue watching
• Explore more channels
@ -1134,9 +1146,9 @@ This feature works best with a video quality of 720p or lower and when using a v
<string name="revanced_sb_guidelines_popup_already_read">Already read</string>
<string name="revanced_sb_guidelines_popup_open">Show me</string>
<string name="revanced_sb_general">General</string>
<string name="revanced_sb_toast_on_connection_error_title">Show a toast if API is not available</string>
<string name="revanced_sb_toast_on_connection_error_summary_on">Toast is shown if SponsorBlock is not available</string>
<string name="revanced_sb_toast_on_connection_error_summary_off">Toast is not shown if SponsorBlock is not available</string>
<string name="revanced_sb_toast_on_connection_error">Show a toast if API is not available</string>
<string name="revanced_sb_toast_on_connection_error_sum_on">Toast is shown if SponsorBlock is not available</string>
<string name="revanced_sb_toast_on_connection_error_sum_off">Toast is not shown if SponsorBlock is not available</string>
<string name="revanced_sb_general_skipcount">Enable skip count tracking</string>
<string name="revanced_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="revanced_sb_general_skipcount_sum_off">Skip count tracking is not enabled</string>
@ -1648,12 +1660,15 @@ Enabling this can unlock higher video qualities"</string>
<string name="revanced_spoof_video_streams_about_experimental">• Experimental client and may stop working anytime</string>
<string name="revanced_spoof_video_streams_about_no_av1">• No AV1 video codec</string>
<string name="revanced_spoof_video_streams_about_kids_videos">• Kids videos may not play when logged out or in incognito mode</string>
<!-- "Force original audio" should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_about_no_force_original_audio">• Force original audio is not available</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_title">Show in Stats for nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_on">Client type is shown in Stats for nerds</string>
<string name="revanced_spoof_streaming_data_stats_for_nerds_summary_off">Client is hidden in Stats for nerds</string>
<string name="revanced_spoof_video_streams_language_title">Audio stream language</string>
<!-- 'Force original audio language' should use the same text as revanced_force_original_audio_title -->
<string name="revanced_spoof_video_streams_language_not_available">To select a specific audio language, turn off \'Force original audio language\'</string>
<string name="revanced_spoof_video_streams_language_android_studio">Stream language selection is not available with Android Studio</string>
</patch>
</app>
<app id="music">
@ -1688,23 +1703,23 @@ Enabling this can unlock higher video qualities"</string>
<string name="revanced_music_navigation_bar_screen_title">Navigation bar</string>
<string name="revanced_music_navigation_bar_screen_summary">Hide or change navigation bar buttons</string>
<!-- 'Home' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_home_button_title">Hide Home button</string>
<string name="revanced_music_hide_navigation_bar_home_button_title">Hide Home</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_on">Home button is hidden</string>
<string name="revanced_music_hide_navigation_bar_home_button_summary_off">Home button is shown</string>
<!-- 'Samples' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_samples_button_title">Hide Samples button</string>
<string name="revanced_music_hide_navigation_bar_samples_button_title">Hide Samples</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_on">Samples button is hidden</string>
<string name="revanced_music_hide_navigation_bar_samples_button_summary_off">Samples button is shown</string>
<!-- 'Explore' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_explore_button_title">Hide Explore button</string>
<string name="revanced_music_hide_navigation_bar_explore_button_title">Hide Explore</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_on">Explore button is hidden</string>
<string name="revanced_music_hide_navigation_bar_explore_button_summary_off">Explore button is shown</string>
<!-- 'Library' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_library_button_title">Hide Library button</string>
<string name="revanced_music_hide_navigation_bar_library_button_title">Hide Library</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_on">Library button is hidden</string>
<string name="revanced_music_hide_navigation_bar_library_button_summary_off">Library button is shown</string>
<!-- 'Upgrade' should be translated using the same localized wording YouTube Music displays for the tab. -->
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Hide Upgrade button</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_title">Hide Upgrade</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_on">Upgrade button is hidden</string>
<string name="revanced_music_hide_navigation_bar_upgrade_button_summary_off">Upgrade button is shown</string>
<string name="revanced_music_hide_navigation_bar_title">Hide navigation bar</string>

Some files were not shown because too many files have changed in this diff Show more