Compare commits

...

5 Commits

Author SHA1 Message Date
semantic-release-bot
ca4a16dbd8 chore: Release v5.2.0-dev.7 [skip ci]
# [5.2.0-dev.7](https://github.com/ReVanced/revanced-patches/compare/v5.2.0-dev.6...v5.2.0-dev.7) (2024-11-27)

### Bug Fixes

* **YouTube - Settings:** Do not clip settings menus when using an Android 15 device ([#3999](https://github.com/ReVanced/revanced-patches/issues/3999)) ([e33082f](e33082f765))
2024-11-27 13:46:42 +00:00
LisoUseInAIKyrios
e33082f765 fix(YouTube - Settings): Do not clip settings menus when using an Android 15 device (#3999) 2024-11-27 17:43:29 +04:00
github-actions[bot]
18360464a9 chore: Sync translations (#4011) 2024-11-27 17:40:12 +04:00
semantic-release-bot
968e6e9b69 chore: Release v5.2.0-dev.6 [skip ci]
# [5.2.0-dev.6](https://github.com/ReVanced/revanced-patches/compare/v5.2.0-dev.5...v5.2.0-dev.6) (2024-11-27)

### Features

* **YouTube:** Support version `19.46.42` ([#4010](https://github.com/ReVanced/revanced-patches/issues/4010)) ([02732ab](02732ab432))
2024-11-27 13:39:40 +00:00
LisoUseInAIKyrios
02732ab432 feat(YouTube): Support version 19.46.42 (#4010) 2024-11-27 17:35:59 +04:00
137 changed files with 298 additions and 120 deletions

View File

@@ -1,3 +1,17 @@
# [5.2.0-dev.7](https://github.com/ReVanced/revanced-patches/compare/v5.2.0-dev.6...v5.2.0-dev.7) (2024-11-27)
### Bug Fixes
* **YouTube - Settings:** Do not clip settings menus when using an Android 15 device ([#3999](https://github.com/ReVanced/revanced-patches/issues/3999)) ([7382a02](https://github.com/ReVanced/revanced-patches/commit/7382a020b8322a7abc016a4569bc15f9caf05546))
# [5.2.0-dev.6](https://github.com/ReVanced/revanced-patches/compare/v5.2.0-dev.5...v5.2.0-dev.6) (2024-11-27)
### Features
* **YouTube:** Support version `19.46.42` ([#4010](https://github.com/ReVanced/revanced-patches/issues/4010)) ([122aac6](https://github.com/ReVanced/revanced-patches/commit/122aac6aee8ef0737f18564f11bbc2a6addf4a6b))
# [5.2.0-dev.5](https://github.com/ReVanced/revanced-patches/compare/v5.2.0-dev.4...v5.2.0-dev.5) (2024-11-27) # [5.2.0-dev.5](https://github.com/ReVanced/revanced-patches/compare/v5.2.0-dev.4...v5.2.0-dev.5) (2024-11-27)

View File

@@ -8,12 +8,14 @@ import android.app.AlertDialog;
import android.app.Dialog; import android.app.Dialog;
import android.content.Context; import android.content.Context;
import android.content.SharedPreferences; import android.content.SharedPreferences;
import android.graphics.Insets;
import android.graphics.drawable.Drawable; import android.graphics.drawable.Drawable;
import android.os.Build; import android.os.Build;
import android.os.Bundle; import android.os.Bundle;
import android.preference.*; import android.preference.*;
import android.util.TypedValue; import android.util.TypedValue;
import android.view.ViewGroup; import android.view.ViewGroup;
import android.view.WindowInsets;
import android.widget.TextView; import android.widget.TextView;
import android.widget.Toolbar; import android.widget.Toolbar;
@@ -310,6 +312,18 @@ public abstract class AbstractPreferenceFragment extends PreferenceFragment {
.findViewById(android.R.id.content) .findViewById(android.R.id.content)
.getParent(); .getParent();
// Fix required for Android 15 and YT 19.45+
// FIXME:
// On Android 15 the text layout is not aligned the same as the parent
// screen and it looks a little off. Otherwise this works.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
rootView.setOnApplyWindowInsetsListener((v, insets) -> {
Insets statusInsets = insets.getInsets(WindowInsets.Type.statusBars());
v.setPadding(0, statusInsets.top, 0, 0);
return insets;
});
}
Toolbar toolbar = new Toolbar(childScreen.getContext()); Toolbar toolbar = new Toolbar(childScreen.getContext());
toolbar.setTitle(childScreen.getTitle()); toolbar.setTitle(childScreen.getTitle());
toolbar.setNavigationIcon(getBackButtonDrawable()); toolbar.setNavigationIcon(getBackButtonDrawable());

View File

@@ -3,4 +3,4 @@ org.gradle.jvmargs = -Xms512M -Xmx2048M
org.gradle.parallel = true org.gradle.parallel = true
android.useAndroidX = true android.useAndroidX = true
kotlin.code.style = official kotlin.code.style = official
version = 5.2.0-dev.5 version = 5.2.0-dev.7

View File

@@ -76,6 +76,7 @@ val hideAdsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -32,6 +32,7 @@ val hideGetPremiumPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -30,6 +30,7 @@ val videoAdsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -60,6 +60,7 @@ val copyVideoUrlPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -31,6 +31,7 @@ val removeViewerDiscretionDialogPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -75,6 +75,7 @@ val downloadsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -30,6 +30,7 @@ val disablePreciseSeekingGesturePatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -33,6 +33,7 @@ val enableSeekbarTappingPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -43,6 +43,7 @@ val enableSlideToSeekPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -36,6 +36,7 @@ val seekbarThumbnailsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
) )
) )

View File

@@ -72,6 +72,7 @@ val swipeControlsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -29,6 +29,7 @@ val autoCaptionsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -50,6 +50,7 @@ val customBrandingPatch = resourcePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -48,6 +48,7 @@ val changeHeaderPatch = resourcePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
) )
) )

View File

@@ -29,6 +29,7 @@ val hideButtonsPatch = resourcePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -43,6 +43,7 @@ val navigationButtonsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -61,6 +61,7 @@ val hidePlayerOverlayButtonsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -63,6 +63,7 @@ val hideEndscreenCardsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -36,6 +36,7 @@ val disableFullscreenAmbientModePatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -129,6 +129,7 @@ val hideLayoutComponentsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -64,6 +64,7 @@ val hideInfoCardsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -31,6 +31,7 @@ val hidePlayerFlyoutMenuPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -36,6 +36,7 @@ val disableRollingNumberAnimationPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -32,6 +32,7 @@ val hideSeekbarPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -189,6 +189,7 @@ val hideShortsComponentsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -61,6 +61,7 @@ val disableSuggestedVideoEndScreenPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -28,6 +28,7 @@ val hideTimestampPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -169,6 +169,7 @@ val miniplayerPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -28,6 +28,7 @@ val playerPopupPanelsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -19,6 +19,7 @@ val playerControlsBackgroundPatch = resourcePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -59,6 +59,7 @@ val customPlayerOverlayOpacityPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -60,6 +60,7 @@ val returnYouTubeDislikePatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -36,6 +36,7 @@ val wideSearchbarPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -38,6 +38,7 @@ val shortsAutoplayPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -118,6 +118,7 @@ val sponsorBlockPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -39,6 +39,7 @@ val spoofAppVersionPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -36,6 +36,7 @@ val changeStartPagePatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -38,6 +38,7 @@ val disableResumingShortsOnStartupPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -33,6 +33,7 @@ val enableTabletLayoutPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -201,6 +201,7 @@ val themePatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -40,6 +40,7 @@ val alternativeThumbnailsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -34,6 +34,7 @@ val bypassImageRegionRestrictionsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -30,6 +30,7 @@ val announcementsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -31,6 +31,7 @@ val autoRepeatPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -55,6 +55,7 @@ val backgroundPlaybackPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -36,6 +36,7 @@ val enableDebuggingPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -31,6 +31,7 @@ val spoofDeviceDimensionsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -24,6 +24,7 @@ val checkWatchHistoryDomainNameResolutionPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -44,6 +44,7 @@ val spoofVideoStreamsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -42,6 +42,7 @@ val gmsCoreSupportPatch = gmsCoreSupportPatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )
} }

View File

@@ -37,6 +37,7 @@ val bypassURLRedirectsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -48,6 +48,7 @@ val openLinksExternallyPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -37,6 +37,7 @@ val removeTrackingQueryParameterPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -28,6 +28,7 @@ val zoomHapticsPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -42,6 +42,7 @@ val rememberVideoQualityPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -26,6 +26,7 @@ val playbackSpeedPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )
} }

View File

@@ -81,6 +81,7 @@ val restoreOldVideoQualityMenuPatch = bytecodePatch(
"19.34.42", "19.34.42",
"19.43.41", "19.43.41",
"19.45.38", "19.45.38",
"19.46.42",
), ),
) )

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -60,7 +60,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">ملاحظة</string> <string name="revanced_settings_about_links_dev_header">ملاحظة</string>
<string name="revanced_settings_about_links_dev_body">هذا الإصدار هو إصدار مسبق، وقد تواجه مشاكل غير متوقعة</string> <string name="revanced_settings_about_links_dev_body">هذا الإصدار هو إصدار مسبق، وقد تواجه مشاكل غير متوقعة</string>
<string name="revanced_settings_about_links_header">الروابط الرسمية</string> <string name="revanced_settings_about_links_header">الروابط الرسمية</string>
<string name="revanced_settings_about_links_donate">تبرع</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -1204,9 +1205,9 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">لا يحتوي جهازك على فك تشفير الأجهزة VP9، وهذا الإعداد يعمل دائما عند تمكين تزييف العميل</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">لا يحتوي جهازك على فك تشفير الأجهزة VP9، وهذا الإعداد يعمل دائما عند تمكين تزييف العميل</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">قد يؤدي تمكين هذا إلى تحسين عمر البطارية وإصلاح مشكلة تقطيع التشغيل.\n\nيتمتع تنسيق AVC بدقة قصوى تبلغ 1080P، وسيستخدم تشغيل الفيديو المزيد من بيانات الإنترنت مقارنةً بتنسيق VP9 أو AV1.</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">قد يؤدي تمكين هذا إلى تحسين عمر البطارية وإصلاح مشكلة تقطيع التشغيل.\n\nيتمتع تنسيق AVC بدقة قصوى تبلغ 1080P، وسيستخدم تشغيل الفيديو المزيد من بيانات الإنترنت مقارنةً بتنسيق VP9 أو AV1.</string>
<string name="revanced_spoof_video_streams_about_ios_title">التأثيرات الجانبية لمحاكاة iOS</string> <string name="revanced_spoof_video_streams_about_ios_title">التأثيرات الجانبية لمحاكاة iOS</string>
<string name="revanced_spoof_video_streams_about_ios_summary">• قد لا يتم تشغيل الأفلام أو الفيديوهات المدفوعة\n• تبدأ البثوث المباشرة من البداية\n• قد تنتهي الفيديوهات قبل النهاية بثانية واحدة\n• لا يوجد ترميز الصوت Opus</string> <string name="revanced_spoof_video_streams_about_ios_summary">• قد لا تشغل مقاطع فيديو الأطفال الخاصون\n• تبدأ Livestreams من البداية\n• قد تنتهي مقاطع الفيديو ثانية واحدة في أوائل\n• لا يوجد رمز صوتي opus</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">التأثيرات الجانبية لمحاكاة Android VR</string> <string name="revanced_spoof_video_streams_about_android_vr_title">التأثيرات الجانبية لمحاكاة Android VR</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">• قائمة المقطع الصوتي مفقودة\n• مستوى الصوت الثابت غير متوفر</string> <string name="revanced_spoof_video_streams_about_android_vr_summary"> قد لا تشغل مقاطع فيديو الأطفال\n• قائمة المسار الصوتي مفقودة\n• مستوى الصوت المستقر غير متوفر</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -60,7 +60,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">Qeyd</string> <string name="revanced_settings_about_links_dev_header">Qeyd</string>
<string name="revanced_settings_about_links_dev_body">Bu versiya ilkin buraxılışdır və gözlənilməz problemlərlə üzləşə bilərsiniz</string> <string name="revanced_settings_about_links_dev_body">Bu versiya ilkin buraxılışdır və gözlənilməz problemlərlə üzləşə bilərsiniz</string>
<string name="revanced_settings_about_links_header">Rəsmi bağlantılar</string> <string name="revanced_settings_about_links_header">Rəsmi bağlantılar</string>
<string name="revanced_settings_about_links_donate">İanə ver</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -1204,9 +1205,7 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Cihazınızın VP9 hardware decoding\'i yoxdur və bu seçim, \"Qəbuledicini saxtalaşdırma\" aktivləşdikdə həmişəlikdir</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Cihazınızın VP9 hardware decoding\'i yoxdur və bu seçim, \"Qəbuledicini saxtalaşdırma\" aktivləşdikdə həmişəlikdir</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Bunu aktivləşdirmə batareya ömrünü yaxşılaşdıra və oynatma donmasını düzəldə bilər.\n\nAVC maksimum 1080p görüntü imkanına malikdir və video oynadılması VP9 və ya AV1-dən daha çox internet məlumatı istifadə edəcək.</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Bunu aktivləşdirmə batareya ömrünü yaxşılaşdıra və oynatma donmasını düzəldə bilər.\n\nAVC maksimum 1080p görüntü imkanına malikdir və video oynadılması VP9 və ya AV1-dən daha çox internet məlumatı istifadə edəcək.</string>
<string name="revanced_spoof_video_streams_about_ios_title">iOS saxtakarlığı yan təsirləri</string> <string name="revanced_spoof_video_streams_about_ios_title">iOS saxtakarlığı yan təsirləri</string>
<string name="revanced_spoof_video_streams_about_ios_summary">• Filmlər və ya ödənişli videolar oynadılmaya bilər\n• Canlı yayımlar əvvəldən başlayır\n• Videolar 1 saniyə tez bitə bilər\n• Opus səs kodlama yoxdur</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">Android VR saxtakarlığı yan təsirləri</string> <string name="revanced_spoof_video_streams_about_android_vr_title">Android VR saxtakarlığı yan təsirləri</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">• Səs axını menyusu əskikdir\n• Stabil səs səviyyəsi əlçatan deyil</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">

View File

@@ -51,6 +51,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">Нататка</string> <string name="revanced_settings_about_links_dev_header">Нататка</string>
<string name="revanced_settings_about_links_dev_body">Гэтая версія з\"яўляецца папярэдняй версіяй, і вы можаце сутыкнуцца з непрадбачанымі праблемамі</string> <string name="revanced_settings_about_links_dev_body">Гэтая версія з\"яўляецца папярэдняй версіяй, і вы можаце сутыкнуцца з непрадбачанымі праблемамі</string>
<string name="revanced_settings_about_links_header">Афіцыйныя спасылкі</string> <string name="revanced_settings_about_links_header">Афіцыйныя спасылкі</string>
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -60,7 +60,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">Забележка</string> <string name="revanced_settings_about_links_dev_header">Забележка</string>
<string name="revanced_settings_about_links_dev_body">Тази версия е предварителна, така че може да срещнете неочаквани проблеми</string> <string name="revanced_settings_about_links_dev_body">Тази версия е предварителна, така че може да срещнете неочаквани проблеми</string>
<string name="revanced_settings_about_links_header">Официални линкове</string> <string name="revanced_settings_about_links_header">Официални линкове</string>
<string name="revanced_settings_about_links_donate">Дарение</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -1204,9 +1205,7 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Вашето устройство няма хардуерно VP9 декодиране и тази настройка винаги е активирана, когато е активно подправяне на клиента</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Вашето устройство няма хардуерно VP9 декодиране и тази настройка винаги е активирана, когато е активно подправяне на клиента</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Активирането на това може да подобри живота на батерията и да коригира прекъсванията при възпроизвеждане.\n\nAVC има максимална разделителна способност от 1080p и възпроизвеждането на видео ще използва повече интернет данни от VP9 или AV1.</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Активирането на това може да подобри живота на батерията и да коригира прекъсванията при възпроизвеждане.\n\nAVC има максимална разделителна способност от 1080p и възпроизвеждането на видео ще използва повече интернет данни от VP9 или AV1.</string>
<string name="revanced_spoof_video_streams_about_ios_title">ранични ефекти от подмяната на iOS</string> <string name="revanced_spoof_video_streams_about_ios_title">ранични ефекти от подмяната на iOS</string>
<string name="revanced_spoof_video_streams_about_ios_summary">• Филми или платени видеоклипове може да не се възпроизвеждат\n• Потоците на живо започват отначало\n• Видеоклиповете може да завършват 1 секунда по-рано\n• Няма аудиокодек Opus</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">Странични ефекти от подправяне на Android VR</string> <string name="revanced_spoof_video_streams_about_android_vr_title">Странични ефекти от подправяне на Android VR</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">• Липсва менюто за избор аудио\n• Не е налична стабилна сила на звука</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">

View File

@@ -59,7 +59,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">দ্রষ্টব্য</string> <string name="revanced_settings_about_links_dev_header">দ্রষ্টব্য</string>
<string name="revanced_settings_about_links_dev_body">এই সংস্করণ একটি প্রাক-প্রকাশনা এবং এতে আপনি অনাকাঙ্খিত সমস্যার সম্মুখিন হতে পারেন</string> <string name="revanced_settings_about_links_dev_body">এই সংস্করণ একটি প্রাক-প্রকাশনা এবং এতে আপনি অনাকাঙ্খিত সমস্যার সম্মুখিন হতে পারেন</string>
<string name="revanced_settings_about_links_header">অফিশ্যাল লিংকসমূহ</string> <string name="revanced_settings_about_links_header">অফিশ্যাল লিংকসমূহ</string>
<string name="revanced_settings_about_links_donate">দান করুন</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -37,6 +37,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<string name="revanced_settings_reset">Restablir</string> <string name="revanced_settings_reset">Restablir</string>
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -61,7 +61,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">Poznámka</string> <string name="revanced_settings_about_links_dev_header">Poznámka</string>
<string name="revanced_settings_about_links_dev_body">Tato verze je předběžná verze a můžete zaznamenat neočekávané problémy</string> <string name="revanced_settings_about_links_dev_body">Tato verze je předběžná verze a můžete zaznamenat neočekávané problémy</string>
<string name="revanced_settings_about_links_header">Oficiální odkazy</string> <string name="revanced_settings_about_links_header">Oficiální odkazy</string>
<string name="revanced_settings_about_links_donate">Přispět</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -1205,9 +1206,9 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Vaše zařízení nemá hardwarové dekódování VP9 a toto nastavení je vždy zapnuto, když je aktivní spoofování klienta</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Vaše zařízení nemá hardwarové dekódování VP9 a toto nastavení je vždy zapnuto, když je aktivní spoofování klienta</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Povolení této funkce může zlepšit životnost baterie a opravit stahování přehrávání.\n\nAVC má maximální rozlišení 1080p a video přehrávání bude používat více dat než VP9 nebo AV1.</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Povolení této funkce může zlepšit životnost baterie a opravit stahování přehrávání.\n\nAVC má maximální rozlišení 1080p a video přehrávání bude používat více dat než VP9 nebo AV1.</string>
<string name="revanced_spoof_video_streams_about_ios_title">Boční efekty iOS</string> <string name="revanced_spoof_video_streams_about_ios_title">Boční efekty iOS</string>
<string name="revanced_spoof_video_streams_about_ios_summary">Filmy nebo placená videa nemusí přehrávat\n• Živočišné rekony začínající od začátku\n• Videa mohou skončit 1 sekundu na začátku\n• Žádný opus audio kodek</string> <string name="revanced_spoof_video_streams_about_ios_summary">Soukromá dětská videa nemusí přehrávat\n• Živočišná zvířata začínající od začátku\n• Videa mohou skončit 1 sekundu na začátku\n• Žádný opus zvukový kodek</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">Boční efekty Android VR</string> <string name="revanced_spoof_video_streams_about_android_vr_title">Boční efekty Android VR</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">• Menu zvukové stopy chybí\n• Stabilní hlasitost není k dispozici</string> <string name="revanced_spoof_video_streams_about_android_vr_summary"> Dětská videa nemusí přehrát\n• Menu zvukové stopy chybí\n• Stabilní hlasitost není k dispozici</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">

View File

@@ -61,7 +61,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">Bemærkning</string> <string name="revanced_settings_about_links_dev_header">Bemærkning</string>
<string name="revanced_settings_about_links_dev_body">Denne version er en pre-release og du kan opleve uventede problemer</string> <string name="revanced_settings_about_links_dev_body">Denne version er en pre-release og du kan opleve uventede problemer</string>
<string name="revanced_settings_about_links_header">Officielle links</string> <string name="revanced_settings_about_links_header">Officielle links</string>
<string name="revanced_settings_about_links_donate">Donér</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -1187,9 +1188,9 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Din enhed har ikke VP9 hardwareafkodning, og denne indstilling er altid tændt, når Client spoofing er aktiveret</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Din enhed har ikke VP9 hardwareafkodning, og denne indstilling er altid tændt, når Client spoofing er aktiveret</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Aktivering af dette kan forbedre batteriets levetid og rette afspilningsstuttering.\n\nAVC har en maksimal opløsning på 1080p, og videoafspilning vil bruge flere internetdata end VP9 eller AV1.</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Aktivering af dette kan forbedre batteriets levetid og rette afspilningsstuttering.\n\nAVC har en maksimal opløsning på 1080p, og videoafspilning vil bruge flere internetdata end VP9 eller AV1.</string>
<string name="revanced_spoof_video_streams_about_ios_title">iOS forfalskning bivirkninger</string> <string name="revanced_spoof_video_streams_about_ios_title">iOS forfalskning bivirkninger</string>
<string name="revanced_spoof_video_streams_about_ios_summary">Film eller betalte videoer kan ikke afspille\n• Livestreams starter fra begyndelsen\n• Videoer kan ende 1 sekund tidlig\n• Ingen opus lydkode</string> <string name="revanced_spoof_video_streams_about_ios_summary">Private børn videoer kan ikke afspille\n• Livestreams starter fra begyndelsen\n• Videoer kan ende 1 sekund tidlig\n• Ingen opus audio codec</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">Android VR spoofing bivirkninger</string> <string name="revanced_spoof_video_streams_about_android_vr_title">Android VR spoofing bivirkninger</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">• Menuen Lydspor mangler\n• Stabil lydstyrke er ikke tilgængelig</string> <string name="revanced_spoof_video_streams_about_android_vr_summary"> Kids videoer afspiller muligvis ikke\n• Menuen for lydspor mangler\n• Stabil lydstyrke er ikke tilgængelig</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">

View File

@@ -61,7 +61,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">Notiz</string> <string name="revanced_settings_about_links_dev_header">Notiz</string>
<string name="revanced_settings_about_links_dev_body">Diese Version ist eine Vorabversion und du könntest unerwartete Probleme haben</string> <string name="revanced_settings_about_links_dev_body">Diese Version ist eine Vorabversion und du könntest unerwartete Probleme haben</string>
<string name="revanced_settings_about_links_header">Offizielle Links</string> <string name="revanced_settings_about_links_header">Offizielle Links</string>
<string name="revanced_settings_about_links_donate">Spenden</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -1205,9 +1206,9 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Ihr Gerät hat keine VP9-Hardware-Dekodierung, und diese Einstellung ist immer aktiviert, wenn Client-Spoofing aktiviert ist</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Ihr Gerät hat keine VP9-Hardware-Dekodierung, und diese Einstellung ist immer aktiviert, wenn Client-Spoofing aktiviert ist</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Das Aktivieren kann die Akkulaufzeit verbessern und die Wiedergabe-Stutting beheben.\n\nAVC hat eine maximale Auflösung von 1080p, und die Videowiedergabe wird mehr Internet-Daten als VP9 oder AV1 verwenden.</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Das Aktivieren kann die Akkulaufzeit verbessern und die Wiedergabe-Stutting beheben.\n\nAVC hat eine maximale Auflösung von 1080p, und die Videowiedergabe wird mehr Internet-Daten als VP9 oder AV1 verwenden.</string>
<string name="revanced_spoof_video_streams_about_ios_title">iOS Spoofing Nebeneffekte</string> <string name="revanced_spoof_video_streams_about_ios_title">iOS Spoofing Nebeneffekte</string>
<string name="revanced_spoof_video_streams_about_ios_summary">Filme oder bezahlte Videos werden möglicherweise nicht abgespielt\n• Livestreams starten von Anfang an\n• Videos enden möglicherweise 1 Sekunde früher\n• kein Opus-Audiocodec</string> <string name="revanced_spoof_video_streams_about_ios_summary">Videos für Privatkinder dürfen nicht\nabspielen • Livestreams beginnen von Anfang an\n• Videos können 1 Sekunde früher\n• Kein opus Audio Codec</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">Android VR Spoofing Nebeneffekte</string> <string name="revanced_spoof_video_streams_about_android_vr_title">Android VR Spoofing Nebeneffekte</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">Audio Track Menü fehlt\n• Stabile Lautstärke ist nicht verfügbar</string> <string name="revanced_spoof_video_streams_about_android_vr_summary">Kindervideos dürfen nicht\nabspielen • Audiospurmenü fehlt\n• Stabile Lautstärke ist nicht verfügbar</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">

View File

@@ -60,7 +60,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">Σημείωση</string> <string name="revanced_settings_about_links_dev_header">Σημείωση</string>
<string name="revanced_settings_about_links_dev_body">Αυτή η έκδοση είναι σε πρώιμο στάδιο, επομένως πιθανότατα να αντιμετωπίσετε απρόοπτα προβλήματα</string> <string name="revanced_settings_about_links_dev_body">Αυτή η έκδοση είναι σε πρώιμο στάδιο, επομένως πιθανότατα να αντιμετωπίσετε απρόοπτα προβλήματα</string>
<string name="revanced_settings_about_links_header">Επίσημοι σύνδεσμοι</string> <string name="revanced_settings_about_links_header">Επίσημοι σύνδεσμοι</string>
<string name="revanced_settings_about_links_donate">Δωρεά</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -1204,9 +1205,9 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Η συσκευή σας δεν διαθέτει αποκωδικοποίηση υλικού VP9, και αυτή η ρύθμιση είναι πάντα ενεργή όταν είναι ενεργοποιημένη η παραποίηση προγράμματος πελάτη</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Η συσκευή σας δεν διαθέτει αποκωδικοποίηση υλικού VP9, και αυτή η ρύθμιση είναι πάντα ενεργή όταν είναι ενεργοποιημένη η παραποίηση προγράμματος πελάτη</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Ενεργοποιώντας αυτόν τον κωδικοποιητή ίσως να βελτιώσει κατανάλωση ενέργειας και ίσως διορθώσει κολλήματα αναπαραγωγής.\n\nΟ AVC έχει μέγιστη ανάλυση 1080p, και καταναλώνει περισσότερα δεδομένα internet από τον VP9 ή τον AV1.</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Ενεργοποιώντας αυτόν τον κωδικοποιητή ίσως να βελτιώσει κατανάλωση ενέργειας και ίσως διορθώσει κολλήματα αναπαραγωγής.\n\nΟ AVC έχει μέγιστη ανάλυση 1080p, και καταναλώνει περισσότερα δεδομένα internet από τον VP9 ή τον AV1.</string>
<string name="revanced_spoof_video_streams_about_ios_title">Παρενέργειες παραποίησης σε iOS</string> <string name="revanced_spoof_video_streams_about_ios_title">Παρενέργειες παραποίησης σε iOS</string>
<string name="revanced_spoof_video_streams_about_ios_summary">Οι ταινίες ή τα επί πληρωμή βίντεο ενδέχεται να μην αναπαράγονται\n• Οι ζωντανές μεταδόσεις ξεκινούν από την αρχή κατά την αναπαραγωγή\n• Τα βίντεο μπορεί να τελειώνουν 1 δευτερόλεπτο νωρίτερα\n• Ο κωδικοποιητής ήχου opus δεν είναι διαθέσιμος</string> <string name="revanced_spoof_video_streams_about_ios_summary">Τα ιδιωτικά βίντεο για παιδιά μπορεί να μην παίζουν\n• Livestreams ξεκινούν από την αρχή\n• Τα βίντεο μπορεί να λήξουν 1 δευτερόλεπτο\n• Δεν υπάρχει κωδικοποιητής ήχου opus</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">Παρενέργειες παραποίησης σε Android VR</string> <string name="revanced_spoof_video_streams_about_android_vr_title">Παρενέργειες παραποίησης σε Android VR</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">Το μενού «Κομμάτι ήχου» λείπει\n• Η λειτουργία «Σταθερή ένταση» δεν είναι διαθέσιμη</string> <string name="revanced_spoof_video_streams_about_android_vr_summary"> Τα βίντεο για παιδιά μπορεί να μην αναπαράγονται\n• Το μενού κομματιών ήχου λείπει\n• Η σταθερή ένταση δεν είναι διαθέσιμη</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">

View File

@@ -60,7 +60,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">Nota</string> <string name="revanced_settings_about_links_dev_header">Nota</string>
<string name="revanced_settings_about_links_dev_body">Esta versión es un pre-lanzamiento y puede que experimentes problemas inesperados</string> <string name="revanced_settings_about_links_dev_body">Esta versión es un pre-lanzamiento y puede que experimentes problemas inesperados</string>
<string name="revanced_settings_about_links_header">Enlaces oficiales</string> <string name="revanced_settings_about_links_header">Enlaces oficiales</string>
<string name="revanced_settings_about_links_donate">Donar</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -1204,9 +1205,9 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Su dispositivo no tiene decodificación de hardware VP9, y esta configuración siempre está encendida cuando el cliente spoofing está habilitado</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Su dispositivo no tiene decodificación de hardware VP9, y esta configuración siempre está encendida cuando el cliente spoofing está habilitado</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Activar esto puede mejorar la vida de la batería y corregir el retraso en la reproducción.\n\nAVC tiene una resolución máxima de 1080p, y la reproducción de vídeo utilizará más datos de Internet que VP9 o AV1.</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Activar esto puede mejorar la vida de la batería y corregir el retraso en la reproducción.\n\nAVC tiene una resolución máxima de 1080p, y la reproducción de vídeo utilizará más datos de Internet que VP9 o AV1.</string>
<string name="revanced_spoof_video_streams_about_ios_title">Efectos secundarios para la falsificación de iOS</string> <string name="revanced_spoof_video_streams_about_ios_title">Efectos secundarios para la falsificación de iOS</string>
<string name="revanced_spoof_video_streams_about_ios_summary">• Las películas o vídeos de pago pueden no reproducirse\n• Los directos empiezan desde el principio\n• Los vídeos pueden terminar 1 segundo antes\n• No hay códec de audio de Opus</string> <string name="revanced_spoof_video_streams_about_ios_summary">• Los vídeos de niños privados no pueden reproducir\n• Livestreams comienzan desde el principio\n• Los vídeos pueden terminar 1 segundo antes de\n• No hay código de audio de opus</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">Efectos secundarios para la falsificación de Android RV</string> <string name="revanced_spoof_video_streams_about_android_vr_title">Efectos secundarios para la falsificación de Android RV</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">• Falta el menú de pista de audio\n• El volumen estable no está disponible</string> <string name="revanced_spoof_video_streams_about_android_vr_summary"> Los vídeos infantiles no pueden reproducir\n• Falta el menú de pista de audio\n• El volumen estable no está disponible</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -61,7 +61,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">Huomautus</string> <string name="revanced_settings_about_links_dev_header">Huomautus</string>
<string name="revanced_settings_about_links_dev_body">Tämä versio on ennakkojulkaisuversio, joten voit kokea odottamattomia ongelmia</string> <string name="revanced_settings_about_links_dev_body">Tämä versio on ennakkojulkaisuversio, joten voit kokea odottamattomia ongelmia</string>
<string name="revanced_settings_about_links_header">Viralliset linkit</string> <string name="revanced_settings_about_links_header">Viralliset linkit</string>
<string name="revanced_settings_about_links_donate">Lahjoita</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -1206,9 +1207,9 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Laitteessasi ei ole VP9-laitteiston dekoodausta, ja tämä asetus on aina päällä, kun asiakkaan spoofing on käytössä</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Laitteessasi ei ole VP9-laitteiston dekoodausta, ja tämä asetus on aina päällä, kun asiakkaan spoofing on käytössä</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Tämän käyttöönotto voi parantaa akun kestoa ja korjata toistoa stuttering.\n\nAVC on suurin resoluutio 1080p, ja videon toisto käyttää enemmän internet-tietoja kuin VP9 tai AV1.</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Tämän käyttöönotto voi parantaa akun kestoa ja korjata toistoa stuttering.\n\nAVC on suurin resoluutio 1080p, ja videon toisto käyttää enemmän internet-tietoja kuin VP9 tai AV1.</string>
<string name="revanced_spoof_video_streams_about_ios_title">iOS-naamioinnin haittavaikutukset</string> <string name="revanced_spoof_video_streams_about_ios_title">iOS-naamioinnin haittavaikutukset</string>
<string name="revanced_spoof_video_streams_about_ios_summary">Elokuvat tai maksetut videot eivät välttämättä toistu\n• Suoratoistot alkavat alusta\n• Videot saattavat päättyä 1 sekuntia etuajassa\n• Ei Opus-äänikoodekkia</string> <string name="revanced_spoof_video_streams_about_ios_summary">Yksityiset lapset videot eivät välttämättä pelaa\n• Livestreams alusta alkaen\n• Videot saattavat päättyä 1 sekunnin alkupuolella\n• Ei opus-äänikoodekkia</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">Android VR -naamioinnin haittavaikutukset</string> <string name="revanced_spoof_video_streams_about_android_vr_title">Android VR -naamioinnin haittavaikutukset</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">• Ääniraitavalikko puuttuu\n• Tasainen äänenvoimakkuus ei ole käytettävissä</string> <string name="revanced_spoof_video_streams_about_android_vr_summary"> Lapset videot eivät välttämättä soita\n• Ääniraidan valikko puuttuu\n• Vakaa äänenvoimakkuus ei ole käytettävissä</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">

View File

@@ -51,6 +51,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">Tandaan</string> <string name="revanced_settings_about_links_dev_header">Tandaan</string>
<string name="revanced_settings_about_links_dev_body">Ang bersyon na ito ay isang pre-release at maaari kang makaranas ng mga hindi inaasahang isyu</string> <string name="revanced_settings_about_links_dev_body">Ang bersyon na ito ay isang pre-release at maaari kang makaranas ng mga hindi inaasahang isyu</string>
<string name="revanced_settings_about_links_header">Mga opisyal na link</string> <string name="revanced_settings_about_links_header">Mga opisyal na link</string>
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -61,7 +61,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">Note</string> <string name="revanced_settings_about_links_dev_header">Note</string>
<string name="revanced_settings_about_links_dev_body">Cette version est une pré-version et vous pourriez rencontrer des problèmes inattendus</string> <string name="revanced_settings_about_links_dev_body">Cette version est une pré-version et vous pourriez rencontrer des problèmes inattendus</string>
<string name="revanced_settings_about_links_header">Liens officiels</string> <string name="revanced_settings_about_links_header">Liens officiels</string>
<string name="revanced_settings_about_links_donate">Faire un don</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -1205,9 +1206,9 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Votre appareil ne possède pas de décodage matériel VP9, et ce paramètre est toujours activé lorsque la falsification du client est activée</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Votre appareil ne possède pas de décodage matériel VP9, et ce paramètre est toujours activé lorsque la falsification du client est activée</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Activer ceci peut améliorer la durée de vie de la batterie et corriger les erreurs de lecture.\n\nAVC a une résolution maximale de 1080p, et la lecture vidéo utilisera plus de données internet que VP9 ou AV1.</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Activer ceci peut améliorer la durée de vie de la batterie et corriger les erreurs de lecture.\n\nAVC a une résolution maximale de 1080p, et la lecture vidéo utilisera plus de données internet que VP9 ou AV1.</string>
<string name="revanced_spoof_video_streams_about_ios_title">Effets secondaires d\'usurpation iOS</string> <string name="revanced_spoof_video_streams_about_ios_title">Effets secondaires d\'usurpation iOS</string>
<string name="revanced_spoof_video_streams_about_ios_summary">• Les films ou les vidéos payantes ne peuvent pas lire\n• Les Livestreams commencent depuis le début\n• Les vidéos peuvent se terminer 1 seconde tôt\n• Pas de codec audio opus</string> <string name="revanced_spoof_video_streams_about_ios_summary">• Les vidéos privées des enfants ne peuvent pas être lues\n• Les live reams commencent à partir de\n• Les vidéos peuvent se terminer 1 seconde tôt\n• Aucun codec audio opus</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">Effets secondaires de l\'usurpation VR Android</string> <string name="revanced_spoof_video_streams_about_android_vr_title">Effets secondaires de l\'usurpation VR Android</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">• Le menu de la piste audio manque\n• Le volume stable n\'est pas disponible</string> <string name="revanced_spoof_video_streams_about_android_vr_summary"> Les vidéos des enfants peuvent ne pas lire\n• Le menu de la piste audio manque\n• Le volume stable n\'est pas disponible</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">

View File

@@ -60,7 +60,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">Nóta</string> <string name="revanced_settings_about_links_dev_header">Nóta</string>
<string name="revanced_settings_about_links_dev_body">Is réamh-eisiúint é an leagan seo agus d\'fhéadfadh fadhbanna gan choinne a bheith agat</string> <string name="revanced_settings_about_links_dev_body">Is réamh-eisiúint é an leagan seo agus d\'fhéadfadh fadhbanna gan choinne a bheith agat</string>
<string name="revanced_settings_about_links_header">Naisc oifigiúla</string> <string name="revanced_settings_about_links_header">Naisc oifigiúla</string>
<string name="revanced_settings_about_links_donate">Síntiúis</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -1204,9 +1205,7 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Níl díchódú crua-earraí VP9 ar do ghléas, agus bíonn an socrú seo ar siúl i gcónaí nuair atá spoofing Cliant cumasaithe</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Níl díchódú crua-earraí VP9 ar do ghléas, agus bíonn an socrú seo ar siúl i gcónaí nuair atá spoofing Cliant cumasaithe</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Má dhéantar é seo a chumasú, d\'fhéadfadh sé go bhfeabhsófaí saol na gceallraí agus go n-athshocraigh sé stopáil athsheinm.\n\nTá uas-taifeach 1080p ag AVC, agus úsáidfidh athsheinm físe níos mó sonraí idirlín ná mar a úsáideann VP9 nó AV1.</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Má dhéantar é seo a chumasú, d\'fhéadfadh sé go bhfeabhsófaí saol na gceallraí agus go n-athshocraigh sé stopáil athsheinm.\n\nTá uas-taifeach 1080p ag AVC, agus úsáidfidh athsheinm físe níos mó sonraí idirlín ná mar a úsáideann VP9 nó AV1.</string>
<string name="revanced_spoof_video_streams_about_ios_title">Fo-iarsmaí spoofing iOS</string> <string name="revanced_spoof_video_streams_about_ios_title">Fo-iarsmaí spoofing iOS</string>
<string name="revanced_spoof_video_streams_about_ios_summary">• Ní féidir le scannáin nó físeáin íoctha a sheinm\n• Tosaíonn sruthanna beo ón tús\n• Seans go gcríochnóidh físeáin 1 soicind go luath\n• Gan codec fuaime opus</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">Fo-iarsmaí spoofing Android VR</string> <string name="revanced_spoof_video_streams_about_android_vr_title">Fo-iarsmaí spoofing Android VR</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">• Tá roghchlár rian fuaime in easnamh\n• Níl an toirt cobhsaí ar fáil</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -37,6 +37,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<string name="revanced_settings_reset">रीसेट करें</string> <string name="revanced_settings_reset">रीसेट करें</string>
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -60,7 +60,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">Megjegyzés</string> <string name="revanced_settings_about_links_dev_header">Megjegyzés</string>
<string name="revanced_settings_about_links_dev_body">Ez a verzió egy előzetes kiadás, és nem kívánt hibákat tapasztalhat</string> <string name="revanced_settings_about_links_dev_body">Ez a verzió egy előzetes kiadás, és nem kívánt hibákat tapasztalhat</string>
<string name="revanced_settings_about_links_header">Hivatalos linkek</string> <string name="revanced_settings_about_links_header">Hivatalos linkek</string>
<string name="revanced_settings_about_links_donate">Támogatás</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -1203,9 +1204,7 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Eszközén nincs VP9 hardveres dekódolás, és ez a beállítás mindig be van kapcsolva, ha az ügyfélhamisítás engedélyezve van</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Eszközén nincs VP9 hardveres dekódolás, és ez a beállítás mindig be van kapcsolva, ha az ügyfélhamisítás engedélyezve van</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Ennek engedélyezése javíthatja az akkumulátor élettartamát, és kijavíthatja a lejátszás akadozását.\n\nAz AVC maximális felbontása 1080p, és a videolejátszás több internetadatot használ, mint a VP9 vagy az AV1.</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Ennek engedélyezése javíthatja az akkumulátor élettartamát, és kijavíthatja a lejátszás akadozását.\n\nAz AVC maximális felbontása 1080p, és a videolejátszás több internetadatot használ, mint a VP9 vagy az AV1.</string>
<string name="revanced_spoof_video_streams_about_ios_title">iOS hamisítási mellékhatások</string> <string name="revanced_spoof_video_streams_about_ios_title">iOS hamisítási mellékhatások</string>
<string name="revanced_spoof_video_streams_about_ios_summary">• Előfordulhat, hogy a filmeket és a fizetős videókat nem lehet lejátszani\n• Az élő közvetítések elölről kezdődnek.\n• A videók 1 másodperccel korábban véget érhetnek\n• Nincs opus audiokodek</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">Android VR-hamisítási mellékhatások</string> <string name="revanced_spoof_video_streams_about_android_vr_title">Android VR-hamisítási mellékhatások</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">• Hiányzik a hangsáv menü\n• A stabil hangerő nem érhető el</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -60,7 +60,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">Catatan</string> <string name="revanced_settings_about_links_dev_header">Catatan</string>
<string name="revanced_settings_about_links_dev_body">Versi ini adalah pra-rilis dan Anda mungkin mengalami masalah yang tidak terduga</string> <string name="revanced_settings_about_links_dev_body">Versi ini adalah pra-rilis dan Anda mungkin mengalami masalah yang tidak terduga</string>
<string name="revanced_settings_about_links_header">Tautan resmi</string> <string name="revanced_settings_about_links_header">Tautan resmi</string>
<string name="revanced_settings_about_links_donate">Donasi</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -1204,9 +1205,7 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Perangkat Anda tidak memiliki dekode perangkat keras VP9, dan pengaturan ini selalu aktif saat pemalsuan Klien diaktifkan</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Perangkat Anda tidak memiliki dekode perangkat keras VP9, dan pengaturan ini selalu aktif saat pemalsuan Klien diaktifkan</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Menyalakan ini dapat meningkatkan masa pakai baterai dan memperbaiki gangguan pemutaran.\n\nAVC memiliki resolusi maksimum 1080p, dan pemutaran video akan menggunakan lebih banyak data internet daripada VP9 atau AV1.</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">Menyalakan ini dapat meningkatkan masa pakai baterai dan memperbaiki gangguan pemutaran.\n\nAVC memiliki resolusi maksimum 1080p, dan pemutaran video akan menggunakan lebih banyak data internet daripada VP9 atau AV1.</string>
<string name="revanced_spoof_video_streams_about_ios_title">Efek samping pemalsuan iOS</string> <string name="revanced_spoof_video_streams_about_ios_title">Efek samping pemalsuan iOS</string>
<string name="revanced_spoof_video_streams_about_ios_summary">• Film atau video berbayar mungkin tidak dapat diputar\n• Siaran langsung dimulai dari awal\n• Video mungkin berakhir 1 detik lebih awal\n• Tidak ada codec audio opus</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">Efek samping pemalsuan Android VR</string> <string name="revanced_spoof_video_streams_about_android_vr_title">Efek samping pemalsuan Android VR</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">• Menu trek audio hilang\n• Volume stabil tidak tersedia</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -60,7 +60,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">Nota</string> <string name="revanced_settings_about_links_dev_header">Nota</string>
<string name="revanced_settings_about_links_dev_body">Questa versione è una pre-release e potresti riscontrare problemi inaspettati</string> <string name="revanced_settings_about_links_dev_body">Questa versione è una pre-release e potresti riscontrare problemi inaspettati</string>
<string name="revanced_settings_about_links_header">Link ufficiali</string> <string name="revanced_settings_about_links_header">Link ufficiali</string>
<string name="revanced_settings_about_links_donate">Dona</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -198,17 +199,17 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_hide_channel_bar_summary_on">La barra del canale è nascosta</string> <string name="revanced_hide_channel_bar_summary_on">La barra del canale è nascosta</string>
<string name="revanced_hide_channel_bar_summary_off">La barra dei canali è visibile</string> <string name="revanced_hide_channel_bar_summary_off">La barra dei canali è visibile</string>
<string name="revanced_hide_playables_title">Nascondi Sala Giochi</string> <string name="revanced_hide_playables_title">Nascondi Sala Giochi</string>
<string name="revanced_hide_playables_summary_on">I riproducibili sono nascosti</string> <string name="revanced_hide_playables_summary_on">I giochi sono nascosti</string>
<string name="revanced_hide_playables_summary_off">I riproducibili sono mostrati</string> <string name="revanced_hide_playables_summary_off">I giochi sono visibili</string>
<string name="revanced_hide_quick_actions_title">Nascondi azioni rapide a schermo intero</string> <string name="revanced_hide_quick_actions_title">Nascondi azioni rapide a schermo intero</string>
<string name="revanced_hide_quick_actions_summary_on">Le azioni rapide sono nascoste</string> <string name="revanced_hide_quick_actions_summary_on">Le azioni rapide sono nascoste</string>
<string name="revanced_hide_quick_actions_summary_off">Le azioni rapide sono visibili</string> <string name="revanced_hide_quick_actions_summary_off">Le azioni rapide sono visibili</string>
<string name="revanced_hide_related_videos_title">Nascondi video correlati nelle azioni rapide</string> <string name="revanced_hide_related_videos_title">Nascondi video correlati nelle azioni rapide</string>
<string name="revanced_hide_related_videos_summary_on">Video correlati nascosti</string> <string name="revanced_hide_related_videos_summary_on">Video correlati nascosti</string>
<string name="revanced_hide_related_videos_summary_off">Video correlati visibili</string> <string name="revanced_hide_related_videos_summary_off">Video correlati visibili</string>
<string name="revanced_hide_image_shelf_title">Nascondi lo scaffale immagine nei risultati di ricerca</string> <string name="revanced_hide_image_shelf_title">Nascondi pubblicità con immagini nei risultati di ricerca</string>
<string name="revanced_hide_image_shelf_summary_on">Lo scaffale dell\'immagine è nascosto</string> <string name="revanced_hide_image_shelf_summary_on">Le pubblicità con immagini sono nascoste </string>
<string name="revanced_hide_image_shelf_summary_off">Il ripiano immagine è visibile</string> <string name="revanced_hide_image_shelf_summary_off">Le pubblicità con immagini sono visibili </string>
<string name="revanced_hide_latest_posts_ads_title">Nascondi i post più recenti</string> <string name="revanced_hide_latest_posts_ads_title">Nascondi i post più recenti</string>
<string name="revanced_hide_latest_posts_ads_summary_on">Gli ultimi post sono nascosti</string> <string name="revanced_hide_latest_posts_ads_summary_on">Gli ultimi post sono nascosti</string>
<string name="revanced_hide_latest_posts_ads_summary_off">Gli ultimi post sono mostrati</string> <string name="revanced_hide_latest_posts_ads_summary_off">Gli ultimi post sono mostrati</string>
@@ -321,8 +322,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_hide_buttoned_ads_summary_on">Le pubblicità a pulsante sono nascoste</string> <string name="revanced_hide_buttoned_ads_summary_on">Le pubblicità a pulsante sono nascoste</string>
<string name="revanced_hide_buttoned_ads_summary_off">Le pubblicità a pulsante sono visibili</string> <string name="revanced_hide_buttoned_ads_summary_off">Le pubblicità a pulsante sono visibili</string>
<string name="revanced_hide_paid_promotion_label_title">Nascondi etichetta promozione a pagamento</string> <string name="revanced_hide_paid_promotion_label_title">Nascondi etichetta promozione a pagamento</string>
<string name="revanced_hide_paid_promotion_label_summary_on">L\'etichetta promozionale a pagamento è nascosta</string> <string name="revanced_hide_paid_promotion_label_summary_on">L\'etichetta della promozione a pagamento è nascosta</string>
<string name="revanced_hide_paid_promotion_label_summary_off">L\'etichetta promozionale pagata è mostrata</string> <string name="revanced_hide_paid_promotion_label_summary_off">L\'etichetta della promozione a pagamento è visibile</string>
<string name="revanced_hide_self_sponsor_ads_title">Nascondi le carte autosponsorizzate</string> <string name="revanced_hide_self_sponsor_ads_title">Nascondi le carte autosponsorizzate</string>
<string name="revanced_hide_self_sponsor_ads_summary_on">Le carte autosponsorizzate sono nascoste</string> <string name="revanced_hide_self_sponsor_ads_summary_on">Le carte autosponsorizzate sono nascoste</string>
<string name="revanced_hide_self_sponsor_ads_summary_off">Vengono mostrate le carte autosponsorizzate</string> <string name="revanced_hide_self_sponsor_ads_summary_off">Vengono mostrate le carte autosponsorizzate</string>
@@ -489,7 +490,7 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_hide_subscriptions_button_summary_off">Il pulsante Iscrizioni è visibile</string> <string name="revanced_hide_subscriptions_button_summary_off">Il pulsante Iscrizioni è visibile</string>
<!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. --> <!-- 'Notifications' should be translated using the same localized wording YouTube displays the tab. -->
<string name="revanced_switch_create_with_notifications_button_title">Cambia Crea con le notifiche</string> <string name="revanced_switch_create_with_notifications_button_title">Cambia Crea con le notifiche</string>
<string name="revanced_switch_create_with_notifications_button_summary_on">Il pulsante Crea viene scambiato con il pulsante Notifiche\n\nNota: Abilitando questo nasconde anche gli annunci video</string> <string name="revanced_switch_create_with_notifications_button_summary_on">Il pulsante Crea viene scambiato con il pulsante Notifiche\n\nNota: Abilitando questo nasconde anche le pubblicità video</string>
<string name="revanced_switch_create_with_notifications_button_summary_off">Il pulsante Crea non è cambiato con il pulsante Notifiche</string> <string name="revanced_switch_create_with_notifications_button_summary_off">Il pulsante Crea non è cambiato con il pulsante Notifiche</string>
<string name="revanced_hide_navigation_button_labels_title">Nascondi etichette dei pulsanti di navigazione</string> <string name="revanced_hide_navigation_button_labels_title">Nascondi etichette dei pulsanti di navigazione</string>
<string name="revanced_hide_navigation_button_labels_summary_on">Le etichette sono nascoste</string> <string name="revanced_hide_navigation_button_labels_summary_on">Le etichette sono nascoste</string>
@@ -853,7 +854,7 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_sb_segments_nomusic">Musica: Sezione Non-Musicale</string> <string name="revanced_sb_segments_nomusic">Musica: Sezione Non-Musicale</string>
<string name="revanced_sb_segments_nomusic_sum">Solo per l\'uso in video musicali. Sezioni di video musicali senza musica, che non sono già coperti da un\'altra categoria</string> <string name="revanced_sb_segments_nomusic_sum">Solo per l\'uso in video musicali. Sezioni di video musicali senza musica, che non sono già coperti da un\'altra categoria</string>
<string name="revanced_sb_skip_button_compact">Salta</string> <string name="revanced_sb_skip_button_compact">Salta</string>
<string name="revanced_sb_skip_button_compact_highlight">Highlight</string> <string name="revanced_sb_skip_button_compact_highlight">Momento saliente</string>
<string name="revanced_sb_skip_button_sponsor">Salta sponsor</string> <string name="revanced_sb_skip_button_sponsor">Salta sponsor</string>
<string name="revanced_sb_skip_button_selfpromo">Salta promozione</string> <string name="revanced_sb_skip_button_selfpromo">Salta promozione</string>
<string name="revanced_sb_skip_button_interaction">Salta promemoria</string> <string name="revanced_sb_skip_button_interaction">Salta promemoria</string>
@@ -1108,7 +1109,7 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.dns.checkWatchHistoryDomainNameResolutionPatch"> <patch id="misc.dns.checkWatchHistoryDomainNameResolutionPatch">
<string name="revanced_check_watch_history_domain_name_dialog_title">Attenzione</string> <string name="revanced_check_watch_history_domain_name_dialog_title">Attenzione</string>
<string name="revanced_check_watch_history_domain_name_dialog_message">La cronologia dell\'orologio non è stata salvata.&lt;br&gt;&lt;br&gt;Questo molto probabilmente è causato da un blocco annunci DNS o da un proxy di rete.&lt;br&gt;&lt;br&gt;Per risolvere questo problema, whitelist &lt;b&gt;s.youtube.com&lt;/b&gt; o disattiva tutti i DNS bloccanti e proxy.</string> <string name="revanced_check_watch_history_domain_name_dialog_message">La tua cronologia di visualizzazione non è stata salvata.&lt;br&gt;&lt;br&gt;Questo è molto probabilmente dovuto da un blocco annunci DNS o da un proxy di rete.&lt;br&gt;&lt;br&gt;Per risolvere questo problema, inserisci nella whitelist &lt;b&gt;s.youtube.com&lt;/b&gt; o disattiva tutti i DNS bloccanti e proxy.</string>
<string name="revanced_check_watch_history_domain_name_dialog_ignore">Non mostrare più</string> <string name="revanced_check_watch_history_domain_name_dialog_ignore">Non mostrare più</string>
</patch> </patch>
<patch id="misc.autorepeat.autoRepeatPatch"> <patch id="misc.autorepeat.autoRepeatPatch">
@@ -1204,9 +1205,9 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Il tuo dispositivo non ha la decodifica hardware VP9 e questa impostazione è sempre attiva quando lo spoof del client è abilitato</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">Il tuo dispositivo non ha la decodifica hardware VP9 e questa impostazione è sempre attiva quando lo spoof del client è abilitato</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">L\'attivazione di questa impostazione potrebbe migliorare la durata della batteria e risolvere il problema della riproduzione a scatti.\n\nNota: AVC ha una risoluzione massima di 1080p e la riproduzione userà più dati internet rispetto a VP9 o AV1.</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">L\'attivazione di questa impostazione potrebbe migliorare la durata della batteria e risolvere il problema della riproduzione a scatti.\n\nNota: AVC ha una risoluzione massima di 1080p e la riproduzione userà più dati internet rispetto a VP9 o AV1.</string>
<string name="revanced_spoof_video_streams_about_ios_title">Effetti collaterali spoofing iOS</string> <string name="revanced_spoof_video_streams_about_ios_title">Effetti collaterali spoofing iOS</string>
<string name="revanced_spoof_video_streams_about_ios_summary">• I film o i video a pagamento potrebbero non essere riprodotti\n• Le dirette iniziano dall\'inizio\n• I video potrebbero terminare 1 secondo prima\n• Nessun codec audio Opus</string> <string name="revanced_spoof_video_streams_about_ios_summary">• I video privati per bambini potrebbero non riprodurre\n• Livestreams start from the start\n• I video potrebbero terminare 1 secondo presto\n• Nessun opus codec audio</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">Effetti collaterali spoofing Android VR</string> <string name="revanced_spoof_video_streams_about_android_vr_title">Effetti collaterali spoofing Android VR</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">• Il menu Traccia audio è mancante\n• Il menu Volume stabile non è disponibile</string> <string name="revanced_spoof_video_streams_about_android_vr_summary"> I video per bambini potrebbero non riprodurre\n• Il menu traccia audio è mancante\n• Volume stabile non è disponibile</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">
@@ -1219,14 +1220,14 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_embedded_ads_service_unavailable">%s non è disponibile. Le pubblicità potrebbero apparire. Prova a passare ad un altro servizio di blocco pubblicità nelle impostazioni.</string> <string name="revanced_embedded_ads_service_unavailable">%s non è disponibile. Le pubblicità potrebbero apparire. Prova a passare ad un altro servizio di blocco pubblicità nelle impostazioni.</string>
<string name="revanced_embedded_ads_service_failed">Il server %s ha restituito un errore. Le pubblicità potrebbero apparire. Prova a passare ad un altro servizio di blocco pubblicità nelle impostazioni.</string> <string name="revanced_embedded_ads_service_failed">Il server %s ha restituito un errore. Le pubblicità potrebbero apparire. Prova a passare ad un altro servizio di blocco pubblicità nelle impostazioni.</string>
<string name="revanced_block_embedded_ads_title">Blocca pubblicità video incorporata</string> <string name="revanced_block_embedded_ads_title">Blocca pubblicità video incorporata</string>
<string name="revanced_block_embedded_ads_entry_1">Disattivato</string> <string name="revanced_block_embedded_ads_entry_1">Disabilitato</string>
<string name="revanced_block_embedded_ads_entry_2">Luminous proxy</string> <string name="revanced_block_embedded_ads_entry_2">Luminous proxy</string>
<string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock proxy</string> <string name="revanced_block_embedded_ads_entry_3">PurpleAdBlock proxy</string>
</patch> </patch>
<patch id="ad.video.videoAdsPatch"> <patch id="ad.video.videoAdsPatch">
<string name="revanced_block_video_ads_title">Blocca pubblicità video</string> <string name="revanced_block_video_ads_title">Blocca pubblicità video</string>
<string name="revanced_block_video_ads_summary_on">Le pubblicità del video sono bloccate</string> <string name="revanced_block_video_ads_summary_on">Le pubblicità video sono bloccate</string>
<string name="revanced_block_video_ads_summary_off">Annunci video sbloccati</string> <string name="revanced_block_video_ads_summary_off">Le pubblicità video sono sbloccate</string>
</patch> </patch>
<patch id="chat.antidelete.showDeletedMessagesPatch"> <patch id="chat.antidelete.showDeletedMessagesPatch">
<string name="revanced_deleted_msg">messaggio eliminato</string> <string name="revanced_deleted_msg">messaggio eliminato</string>
@@ -1236,28 +1237,28 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_show_deleted_messages_entry_3">Mostra i messaggi eliminati come testo sbarrato</string> <string name="revanced_show_deleted_messages_entry_3">Mostra i messaggi eliminati come testo sbarrato</string>
</patch> </patch>
<patch id="chat.autoclaim.autoClaimChannelPointsPatch"> <patch id="chat.autoclaim.autoClaimChannelPointsPatch">
<string name="revanced_auto_claim_channel_points_title">Richiama automaticamente i punti del canale</string> <string name="revanced_auto_claim_channel_points_title">Riscatta automaticamente i punti del canale</string>
<string name="revanced_auto_claim_channel_points_summary_on">I punti del canale vengono rivendicati automaticamente</string> <string name="revanced_auto_claim_channel_points_summary_on">I punti del canale vengono riscattati automaticamente</string>
<string name="revanced_auto_claim_channel_points_summary_off">I punti del canale non vengono rivendicati automaticamente</string> <string name="revanced_auto_claim_channel_points_summary_off">I punti del canale non vengono riscattati automaticamente</string>
</patch> </patch>
<patch id="debug.debugModePatch"> <patch id="debug.debugModePatch">
<!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' --> <!-- Twitch specific internal debug mode, and not the same as 'revanced_debug_title' -->
<string name="revanced_twitch_debug_mode_title">Abilita la modalità debug Twitch</string> <string name="revanced_twitch_debug_mode_title">Abilita la modalità debug di Twitch</string>
<string name="revanced_twitch_debug_mode_summary_on">La modalità debug Twitch è abilitata (non consigliato)</string> <string name="revanced_twitch_debug_mode_summary_on">La modalità debug di Twitch è abilitata (non consigliato)</string>
<string name="revanced_twitch_debug_mode_summary_off">La modalità debug Twitch è disabilitata</string> <string name="revanced_twitch_debug_mode_summary_off">La modalità debug di Twitch è disabilitata</string>
</patch> </patch>
<patch id="misc.settings.settingsPatch"> <patch id="misc.settings.settingsPatch">
<string name="revanced_settings">Impostazioni Avanzate</string> <string name="revanced_settings">Impostazioni di ReVanced</string>
<string name="revanced_ads_screen_title">Annunci</string> <string name="revanced_ads_screen_title">Pubblicità</string>
<string name="revanced_ads_screen_summary">Impostazioni blocco pubblicità</string> <string name="revanced_ads_screen_summary">Impostazioni blocco pubblicità</string>
<string name="revanced_chat_screen_title">Chat</string> <string name="revanced_chat_screen_title">Chat</string>
<string name="revanced_chat_screen_summary">Impostazioni chat</string> <string name="revanced_chat_screen_summary">Impostazioni della chat</string>
<string name="revanced_misc_screen_title">Varie</string> <string name="revanced_misc_screen_title">Varie</string>
<string name="revanced_misc_screen_summary">Impostazioni varie</string> <string name="revanced_misc_screen_summary">Impostazioni varie</string>
<string name="revanced_general_category_title">Impostazioni generali</string> <string name="revanced_general_category_title">Impostazioni generali</string>
<string name="revanced_other_category_title">Altre impostazioni</string> <string name="revanced_other_category_title">Altre impostazioni</string>
<string name="revanced_client_ads_category_title">Annunci lato client</string> <string name="revanced_client_ads_category_title">Pubblicità lato client</string>
<string name="revanced_surestream_ads_category_title">Pubblicità surestremismo lato server</string> <string name="revanced_surestream_ads_category_title">Pubblicità surestream lato server</string>
<string name="revanced_twitch_debug_title">Log di debug</string> <string name="revanced_twitch_debug_title">Log di debug</string>
<string name="revanced_twitch_debug_summary_on">I log di debug sono abilitati</string> <string name="revanced_twitch_debug_summary_on">I log di debug sono abilitati</string>
<string name="revanced_twitch_debug_summary_off">I log di debug sono disabilitati</string> <string name="revanced_twitch_debug_summary_off">I log di debug sono disabilitati</string>

View File

@@ -43,6 +43,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_pref_import_export_title">יבוא/ ייצוא</string> <string name="revanced_pref_import_export_title">יבוא/ ייצוא</string>
<string name="revanced_pref_import_export_summary">יבוא/ ייצוא הגדרות ReVanced</string> <string name="revanced_pref_import_export_summary">יבוא/ ייצוא הגדרות ReVanced</string>
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -58,7 +58,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">メモ</string> <string name="revanced_settings_about_links_dev_header">メモ</string>
<string name="revanced_settings_about_links_dev_body">このバージョンはプレリリースで、予期しない問題が発生する可能性があります。</string> <string name="revanced_settings_about_links_dev_body">このバージョンはプレリリースで、予期しない問題が発生する可能性があります。</string>
<string name="revanced_settings_about_links_header">公式リンク</string> <string name="revanced_settings_about_links_header">公式リンク</string>
<string name="revanced_settings_about_links_donate">寄付</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -1182,9 +1183,7 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">お使いのデバイスにはVP9ハードウェアデコードがありません。この設定はクライアントのスプーフィングが有効になっているときに常に有効になります</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">お使いのデバイスにはVP9ハードウェアデコードがありません。この設定はクライアントのスプーフィングが有効になっているときに常に有効になります</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">これを有効にするとバッテリー寿命と再生の途切れが改善する可能性があります。\n\nAVCの最大解像度は1080pで、ビデオ再生はVP9やAV1よりも多くの通信量を使用します。</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">これを有効にするとバッテリー寿命と再生の途切れが改善する可能性があります。\n\nAVCの最大解像度は1080pで、ビデオ再生はVP9やAV1よりも多くの通信量を使用します。</string>
<string name="revanced_spoof_video_streams_about_ios_title">iOSのクライアント偽装での副作用</string> <string name="revanced_spoof_video_streams_about_ios_title">iOSのクライアント偽装での副作用</string>
<string name="revanced_spoof_video_streams_about_ios_summary">• 映画や有料動画は再生できない場合があります\n•ライブは最初から再生されます\n• 動画が 1 秒早く終了する場合があります\n• Opus オーディオは使用できません。</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">Android-VR クライアント偽装の副作用</string> <string name="revanced_spoof_video_streams_about_android_vr_title">Android-VR クライアント偽装の副作用</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">•「音声トラック」メニューは表示されません\n•「一定音量」は使用できません</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -61,7 +61,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_settings_about_links_dev_header">알림</string> <string name="revanced_settings_about_links_dev_header">알림</string>
<string name="revanced_settings_about_links_dev_body">개발자 버전이므로&lt;br&gt;알려지지 않은 문제점이&lt;br&gt;발생할 수 있습니다</string> <string name="revanced_settings_about_links_dev_body">개발자 버전이므로&lt;br&gt;알려지지 않은 문제점이&lt;br&gt;발생할 수 있습니다</string>
<string name="revanced_settings_about_links_header">공식 링크</string> <string name="revanced_settings_about_links_header">공식 링크</string>
<string name="revanced_settings_about_links_donate">후원</string> <!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->
@@ -1205,9 +1206,7 @@ This is because Crowdin requires temporarily flattening this file and removing t
<string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">이 기기는 VP9 하드웨어 디코딩을 지원하지 않습니다. 그러므로 \'클라이언트 변경하기\'가 활성화된 경우에는 이 설정은 항상 켜져 있습니다</string> <string name="revanced_spoof_video_streams_ios_force_avc_no_hardware_vp9_summary_on">이 기기는 VP9 하드웨어 디코딩을 지원하지 않습니다. 그러므로 \'클라이언트 변경하기\'가 활성화된 경우에는 이 설정은 항상 켜져 있습니다</string>
<string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">이 설정을 활성화하면 배터리 수명이 향상되고 재생 끊김 현상이 해결될 수 있습니다\n\nAVC의 최대 화질 값은 1080p이며 동영상을 재생하면 VP9 또는 AV1보다 더 많은 모바일 데이터가 사용되오니 주의하세요.</string> <string name="revanced_spoof_video_streams_ios_force_avc_user_dialog_message">이 설정을 활성화하면 배터리 수명이 향상되고 재생 끊김 현상이 해결될 수 있습니다\n\nAVC의 최대 화질 값은 1080p이며 동영상을 재생하면 VP9 또는 AV1보다 더 많은 모바일 데이터가 사용되오니 주의하세요.</string>
<string name="revanced_spoof_video_streams_about_ios_title">\'iOS로 변경\'의 알려진 문제점</string> <string name="revanced_spoof_video_streams_about_ios_title">\'iOS로 변경\'의 알려진 문제점</string>
<string name="revanced_spoof_video_streams_about_ios_summary">• 영화 또는 회원 전용 동영상과 같은 유료 동영상이 재생되지 않을 수 있습니다\n• 일부 실시간 스트림이 처음부터 재생될 수 있습니다\n• 동영상이 1초 일찍 종료될 수 있습니다\n• OPUS 오디오 코덱이 지원되지 않습니다</string>
<string name="revanced_spoof_video_streams_about_android_vr_title">\'Android VR로 변경\'의 알려진 문제점</string> <string name="revanced_spoof_video_streams_about_android_vr_title">\'Android VR로 변경\'의 알려진 문제점</string>
<string name="revanced_spoof_video_streams_about_android_vr_summary">• 오디오 트랙 메뉴가 표시되지 않습니다\n• 안정적인 볼륨 메뉴가 비활성화된 채로 잠겨있습니다</string>
</patch> </patch>
</app> </app>
<app id="twitch"> <app id="twitch">

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

View File

@@ -36,6 +36,8 @@ This is because Crowdin requires temporarily flattening this file and removing t
</patch> </patch>
<patch id="misc.settings.settingsResourcePatch"> <patch id="misc.settings.settingsResourcePatch">
<!-- Settings about dialog. --> <!-- Settings about dialog. -->
<!-- NOTE: the about strings above are duplicated in the TikTok about screen code,
and changes made here must also be made there. -->
</patch> </patch>
<patch id="misc.gms.gmsCoreSupportResourcePatch"> <patch id="misc.gms.gmsCoreSupportResourcePatch">
<!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. --> <!-- Translations of this should not be longer than the original English text, otherwise the text can be clipped and not entirely shown. -->

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