diff --git a/app/build.gradle.kts b/app/build.gradle.kts index cbaf1c40..77b7d134 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -16,12 +16,12 @@ android { applicationId = "com.vanced.manager" minSdkVersion(21) targetSdkVersion(30) - versionCode = 250 - versionName = "2.5.0 (Weed)" + versionCode = 251 + versionName = "2.5.1 (Weed)" vectorDrawables.useSupportLibrary = true - buildConfigField("String[]", "MANAGER_LANGUAGES", "{" + getLanguages() + "}") + buildConfigField("String[]", "MANAGER_LANGUAGES", "{$languages}") buildConfigField("Boolean", "ENABLE_CROWDIN_AUTH", "false") buildConfigField("String", "CROWDIN_HASH", "\"${System.getenv("CROWDIN_HASH")}\"") buildConfigField("String", "CROWDIN_CLIENT_ID", "\"${System.getenv("CROWDIN_CLIENT_ID")}\"") @@ -45,6 +45,7 @@ android { buildFeatures { viewBinding = true + //compose = true } packagingOptions { @@ -63,21 +64,23 @@ android { tasks.withType { kotlinOptions { jvmTarget = "1.8" + //useIR = true } } } -fun getLanguages(): String { +val languages: String get() { val langs = arrayListOf("en", "bn_BD", "bn_IN", "pa_IN", "pa_PK", "pt_BR", "pt_PT", "zh_CN", "zh_TW") val exceptions = arrayOf("bn", "pa", "pt", "zh") - File("$projectDir/src/main/res").listFiles()?.forEach { dir -> - if (dir.name.startsWith("values-") && !dir.name.contains("v23")) { - val dirname = dir.name.substringAfter("-").substringBefore("-") - if (!exceptions.any { dirname == it }) { - langs.add(dirname) - } + File("$projectDir/src/main/res").listFiles()?.filter { + val name = it.name + name.startsWith("values-") && !name.contains("v23") + }?.forEach { dir -> + val dirname = dir.name.substringAfter("-").substringBefore("-") + if (!exceptions.contains(dirname)) { + langs.add(dirname) } } return langs.joinToString(", ") { "\"$it\"" } @@ -85,6 +88,7 @@ fun getLanguages(): String { dependencies { + //val composeVersion = "1.0.0-alpha12" implementation(project(":core-presentation")) implementation(project(":core-ui")) @@ -108,6 +112,17 @@ dependencies { implementation("androidx.preference:preference-ktx:1.1.1") implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0") + + // Compose +// implementation("androidx.compose.ui:ui:$composeVersion") +// implementation("androidx.compose.ui:ui-tooling:$composeVersion") +// implementation("androidx.compose.foundation:foundation:$composeVersion") +// implementation("androidx.constraintlayout:constraintlayout-compose:1.0.0-alpha02") +// implementation("androidx.compose.material:material:$composeVersion") +// implementation("androidx.compose.material:material-icons-core:$composeVersion") +// implementation("androidx.compose.material:material-icons-extended:$composeVersion") +// implementation("androidx.compose.runtime:runtime-livedata:$composeVersion") + // Appearance implementation("com.github.madrapps:pikolo:2.0.1") implementation("com.google.android.material:material:1.3.0") @@ -116,7 +131,7 @@ dependencies { implementation("com.beust:klaxon:5.4") // Crowdin - implementation("com.crowdin.platform:mobile-sdk:1.2.0") + implementation("com.github.crowdin.mobile-sdk-android:sdk:1.4.0") // Tips implementation("com.github.florent37:viewtooltip:1.2.2") @@ -126,6 +141,7 @@ dependencies { implementation("com.github.kittinunf.fuel:fuel-coroutines:2.2.3") implementation("com.github.kittinunf.fuel:fuel-json:2.2.3") implementation("com.squareup.okhttp3:logging-interceptor:4.9.1") + implementation("com.squareup.retrofit2:retrofit:2.9.0") // Root permissions implementation("com.github.topjohnwu.libsu:core:3.1.1") diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index f6b5ed9b..786de94c 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -8,7 +8,6 @@ - () { private val apps = mutableListOf() private val dataModels = mutableListOf() private val rootDataModels = mutableListOf() - private val prefs = getDefaultSharedPreferences(context) + private val prefs = getDefaultSharedPreferences(activity) private val isRoot = prefs.managerVariant == "root" @@ -36,11 +34,11 @@ class AppListAdapter( val dataModel = if (isRoot) rootDataModels[position] else dataModels[position] with(binding) { appName.text = dataModel?.appName - dataModel?.buttonTxt?.observe(lifecycleOwner) { + dataModel?.buttonTxt?.observe(activity) { appInstallButton.text = it } appInstallButton.setOnClickListener { - if (vanced.value != null) { + if (dataModel?.versionName?.value != activity.getString(R.string.unavailable)) { viewModel.openInstallDialog(it, apps[position]) } else { return@setOnClickListener @@ -52,14 +50,14 @@ class AppListAdapter( appLaunch.setOnClickListener { viewModel.launchApp(apps[position], isRoot) } - dataModel?.isAppInstalled?.observe(lifecycleOwner) { + dataModel?.isAppInstalled?.observe(activity) { appUninstall.isVisible = it appLaunch.isVisible = it } - dataModel?.versionName?.observe(lifecycleOwner) { + dataModel?.versionName?.observe(activity) { appRemoteVersion.text = it } - dataModel?.installedVersionName?.observe(lifecycleOwner) { + dataModel?.installedVersionName?.observe(activity) { appInstalledVersion.text = it } } @@ -67,7 +65,7 @@ class AppListAdapter( } override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ListViewHolder { - val view = ViewAppBinding.inflate(LayoutInflater.from(context), parent, false) + val view = ViewAppBinding.inflate(LayoutInflater.from(activity), parent, false) return ListViewHolder(view) } @@ -75,12 +73,12 @@ class AppListAdapter( holder.bind(position) val dataModel = if (isRoot) rootDataModels[position] else dataModels[position] holder.appCard.setOnClickListener { - tooltip.close() + tooltip?.close() AppInfoDialog.newInstance( appName = apps[position], appIcon = dataModel?.appIcon, changelog = dataModel?.changelog?.value - ).show(context.supportFragmentManager, "info") + ).show(activity.supportFragmentManager, "info") } } @@ -94,7 +92,7 @@ class AppListAdapter( } else { dataModels.add(viewModel.vancedModel.value) } - apps.add(context.getString(R.string.vanced)) + apps.add(activity.getString(R.string.vanced)) } if (prefs.enableMusic) { @@ -103,12 +101,12 @@ class AppListAdapter( } else { dataModels.add(viewModel.musicModel.value) } - apps.add(context.getString(R.string.music)) + apps.add(activity.getString(R.string.music)) } if (!isRoot) { dataModels.add(viewModel.microgModel.value) - apps.add(context.getString(R.string.microg)) + apps.add(activity.getString(R.string.microg)) } } diff --git a/app/src/main/java/com/vanced/manager/adapter/SponsorAdapter.kt b/app/src/main/java/com/vanced/manager/adapter/SponsorAdapter.kt index ba6413ce..acb87edf 100644 --- a/app/src/main/java/com/vanced/manager/adapter/SponsorAdapter.kt +++ b/app/src/main/java/com/vanced/manager/adapter/SponsorAdapter.kt @@ -11,8 +11,6 @@ import com.vanced.manager.model.SponsorModel import com.vanced.manager.ui.viewmodels.HomeViewModel import com.vanced.manager.utils.LIGHT import com.vanced.manager.utils.currentTheme -import com.vanced.manager.utils.defPrefs -import com.vanced.manager.utils.managerTheme class SponsorAdapter( private val context: Context, diff --git a/app/src/main/java/com/vanced/manager/adapter/WelcomePageAdapter.kt b/app/src/main/java/com/vanced/manager/adapter/WelcomePageAdapter.kt new file mode 100644 index 00000000..40c1cab1 --- /dev/null +++ b/app/src/main/java/com/vanced/manager/adapter/WelcomePageAdapter.kt @@ -0,0 +1,23 @@ +package com.vanced.manager.adapter + +import androidx.fragment.app.Fragment +import androidx.fragment.app.FragmentActivity +import androidx.viewpager2.adapter.FragmentStateAdapter +import com.vanced.manager.ui.fragments.GrantRootFragment +import com.vanced.manager.ui.fragments.SelectAppsFragment +import com.vanced.manager.ui.fragments.WelcomeFragment + +class WelcomePageAdapter(activity: FragmentActivity) : FragmentStateAdapter(activity) { + + override fun getItemCount(): Int = 3 + + override fun createFragment(position: Int): Fragment { + return when (position) { + 0 -> WelcomeFragment() + 1 -> SelectAppsFragment() + 2 -> GrantRootFragment() + else -> throw IllegalArgumentException("Unknown fragment") + } + } + +} \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/model/DataModel.kt b/app/src/main/java/com/vanced/manager/model/DataModel.kt index f2ce944f..d1b6d94c 100644 --- a/app/src/main/java/com/vanced/manager/model/DataModel.kt +++ b/app/src/main/java/com/vanced/manager/model/DataModel.kt @@ -17,7 +17,7 @@ open class DataModel( lifecycleOwner: LifecycleOwner, val appPkg: String, val appName: String, - val appIcon: Drawable?, + val appIcon: Drawable? ) { private val versionCode = MutableLiveData() diff --git a/app/src/main/java/com/vanced/manager/model/LinkModel.kt b/app/src/main/java/com/vanced/manager/model/LinkModel.kt index b342fd4d..3c370ffa 100644 --- a/app/src/main/java/com/vanced/manager/model/LinkModel.kt +++ b/app/src/main/java/com/vanced/manager/model/LinkModel.kt @@ -4,5 +4,5 @@ import android.graphics.drawable.Drawable data class LinkModel( val linkIcon: Drawable?, - val linkUrl: String, + val linkUrl: String ) \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/ui/WelcomeActivity.kt b/app/src/main/java/com/vanced/manager/ui/WelcomeActivity.kt index f4a3c7dc..d823ba9e 100644 --- a/app/src/main/java/com/vanced/manager/ui/WelcomeActivity.kt +++ b/app/src/main/java/com/vanced/manager/ui/WelcomeActivity.kt @@ -1,21 +1,84 @@ package com.vanced.manager.ui +import android.animation.Animator +import android.animation.ValueAnimator import android.os.Bundle +import android.view.animation.AccelerateDecelerateInterpolator import androidx.appcompat.app.AppCompatActivity -import androidx.navigation.findNavController -import com.vanced.manager.R +import androidx.viewpager2.widget.ViewPager2 +import com.vanced.manager.adapter.WelcomePageAdapter +import com.vanced.manager.databinding.ActivityWelcomeBinding +import kotlin.math.abs class WelcomeActivity : AppCompatActivity() { - private val navHost by lazy { findNavController(R.id.welcome_navhost) } + private lateinit var viewPager2: ViewPager2 + private lateinit var binding: ActivityWelcomeBinding override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) - setContentView(R.layout.activity_welcome) + binding = ActivityWelcomeBinding.inflate(layoutInflater) + setContentView(binding.root) + + viewPager2 = binding.welcomeViewpager + viewPager2.apply { + adapter = WelcomePageAdapter(this@WelcomeActivity) + isUserInputEnabled = false + setPageTransformer { page, position -> + page.apply { + val pageWidth = width + //Thank you, fragula dev! + when { + position > 0 && position < 1 -> { + alpha = 1f + translationX = 0f + } + position > -1 && position <= 0 -> { + alpha = 1.0f - abs(position * 0.7f) + translationX = -pageWidth * position / 1.3F + } + } + } + } + } } override fun onBackPressed() { - if (!navHost.popBackStack()) - finish() + if (viewPager2.currentItem == 0) { + super.onBackPressed() + } else { + navigateTo(viewPager2.currentItem - 1) + } } + + fun navigateTo(position: Int) { + viewPager2.currentPosition = position + } + + //Shit way to implement animation duration, but at least it works + private var ViewPager2.currentPosition: Int + get() = currentItem + set(value) { + val pixelsToDrag: Int = width * (value - currentItem) + val animator = ValueAnimator.ofInt(0, pixelsToDrag) + var previousValue = 0 + animator.apply { + addUpdateListener { valueAnimator -> + val currentValue = valueAnimator.animatedValue as Int + val currentPxToDrag = (currentValue - previousValue).toFloat() + fakeDragBy(-currentPxToDrag) + previousValue = currentValue + } + addListener(object : Animator.AnimatorListener { + override fun onAnimationStart(animation: Animator?) { beginFakeDrag() } + override fun onAnimationEnd(animation: Animator?) { endFakeDrag() } + override fun onAnimationCancel(animation: Animator?) {} + override fun onAnimationRepeat(animation: Animator?) {} + }) + interpolator = AccelerateDecelerateInterpolator() + duration = 500 + start() + } + } + } \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/ui/compose/Colors.kt b/app/src/main/java/com/vanced/manager/ui/compose/Colors.kt new file mode 100644 index 00000000..a60c9bfe --- /dev/null +++ b/app/src/main/java/com/vanced/manager/ui/compose/Colors.kt @@ -0,0 +1,2 @@ +package com.vanced.manager.ui.compose + diff --git a/app/src/main/java/com/vanced/manager/ui/compose/PreferenceViews.kt b/app/src/main/java/com/vanced/manager/ui/compose/PreferenceViews.kt new file mode 100644 index 00000000..c0eb5dbc --- /dev/null +++ b/app/src/main/java/com/vanced/manager/ui/compose/PreferenceViews.kt @@ -0,0 +1,107 @@ +package com.vanced.manager.ui.compose + +//import androidx.compose.foundation.clickable +//import androidx.compose.foundation.layout.Column +//import androidx.compose.foundation.layout.ColumnScope +//import androidx.compose.foundation.layout.padding +//import androidx.compose.material.Switch +//import androidx.compose.material.Text +//import androidx.compose.runtime.* +//import androidx.compose.ui.Modifier +//import androidx.compose.ui.graphics.Color +//import androidx.compose.ui.platform.LocalContext +//import androidx.compose.ui.tooling.preview.Preview +//import androidx.compose.ui.unit.dp +//import androidx.compose.ui.unit.em +//import androidx.compose.ui.unit.sp +//import androidx.constraintlayout.compose.ConstraintLayout +//import androidx.core.content.edit +//import androidx.preference.PreferenceManager +// +//@Composable +//@Preview +//inline fun PreferenceCategory( +// categoryTitle: String, +// content: @Composable ColumnScope.() -> Unit +//) { +// Column { +// Text( +// categoryTitle, +// letterSpacing = 0.15.em, +// color = Color(LocalContext.current.accentColor) +// ) +// content() +// } +//} +// +// +//@Composable +//@Preview +//inline fun SwitchPreference( +// preferenceTitle: String, +// preferenceDescription: String? = null, +// preferenceKey: String, +// defValue: Boolean = true, +// crossinline onCheckedChange: (Boolean) -> Unit = {} +//) { +// val prefs = PreferenceManager.getDefaultSharedPreferences(LocalContext.current) +// val isChecked = remember { mutableStateOf(prefs.getBoolean(preferenceKey, defValue)) } +// ConstraintLayout(modifier = Modifier.padding(12.dp, 4.dp).clickable { +// isChecked.value = !isChecked.value +// }) { +// val (title, description, switch) = createRefs() +// Text(preferenceTitle, fontSize = 16.sp, modifier = Modifier.constrainAs(title) { +// top.linkTo(parent.top) +// start.linkTo(parent.start) +// end.linkTo(switch.start, 4.dp) +// if (preferenceDescription != null) { +// bottom.linkTo(description.top) +// } else { +// bottom.linkTo(parent.bottom) +// } +// }) +// if (preferenceDescription != null) { +// Text(preferenceDescription, fontSize = 13.sp, modifier = Modifier.constrainAs(description) { +// top.linkTo(title.bottom) +// start.linkTo(parent.start) +// end.linkTo(switch.start, 8.dp) +// }) +// } +// Switch( +// isChecked.value, +// onCheckedChange = { +// prefs.edit { putBoolean(preferenceKey, it) } +// onCheckedChange(it) +// }, +// modifier = Modifier.clickable(false) {} +// ) +// } +//} +// +//@Composable +//@Preview +//fun Preference( +// preferenceTitle: String, +// preferenceDescription: String? = null, +// onClick: () -> Unit +//) { +// ConstraintLayout(modifier = Modifier.padding(12.dp, 4.dp).clickable(onClick = onClick)) { +// val (title, description, switch) = createRefs() +// Text(preferenceTitle, fontSize = 16.sp, modifier = Modifier.constrainAs(title) { +// top.linkTo(parent.top) +// start.linkTo(parent.start) +// end.linkTo(switch.start, 4.dp) +// if (preferenceDescription != null) { +// bottom.linkTo(description.top) +// } else { +// bottom.linkTo(parent.bottom) +// } +// }) +// if (preferenceDescription != null) { +// Text(preferenceDescription, fontSize = 13.sp, modifier = Modifier.constrainAs(description) { +// top.linkTo(title.bottom) +// }) +// } +// } +// +//} \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/ui/compose/Theme.kt b/app/src/main/java/com/vanced/manager/ui/compose/Theme.kt new file mode 100644 index 00000000..6f873761 --- /dev/null +++ b/app/src/main/java/com/vanced/manager/ui/compose/Theme.kt @@ -0,0 +1,52 @@ +package com.vanced.manager.ui.compose + +//import android.content.Context +//import androidx.compose.foundation.isSystemInDarkTheme +//import androidx.compose.material.MaterialTheme +//import androidx.compose.material.darkColors +//import androidx.compose.material.lightColors +//import androidx.compose.runtime.Composable +//import androidx.compose.runtime.MutableState +//import androidx.compose.runtime.mutableStateOf +//import androidx.compose.runtime.remember +//import androidx.compose.ui.graphics.Color +//import androidx.compose.ui.platform.LocalContext +//import androidx.preference.PreferenceManager.getDefaultSharedPreferences +//import com.vanced.manager.utils.mutableAccentColor +// +//const val Dark = "Dark" +//const val SystemDefault = "System Default" +// +//const val defAccentColor: Int = -13732865 +// +//val Context.accentColor get() = mutableAccentColor.value ?: getDefaultSharedPreferences(this).getInt("manager_accent_color", defAccentColor) +// +//enum class Theme { +// DARK, LIGHT +//} +// +//val lightColors = lightColors( +// primary = Color(defAccentColor) +//) +// +//val darkColors = darkColors( +// primary = Color(defAccentColor) +//) +// +//fun Context.retrieveTheme(): Theme = when (getDefaultSharedPreferences(this).getString("manager_theme", SystemDefault)) { +// SystemDefault -> if (isSystemInDarkTheme()) Theme.DARK else Theme.LIGHT +// Dark -> Theme.DARK +// else -> Theme.LIGHT +//} +// +//val Context.isDarkTheme: Boolean +// get() = retrieveTheme() == Theme.DARK +// +//fun Context.ManagerTheme( +// content: @Composable () -> Unit +//) { +// MaterialTheme( +// colors = if (isDarkTheme) darkColors else lightColors, +// content = content +// ) +//} \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/ui/core/PreferenceCategory.kt b/app/src/main/java/com/vanced/manager/ui/core/PreferenceCategory.kt index 76b82963..4c0f49ea 100644 --- a/app/src/main/java/com/vanced/manager/ui/core/PreferenceCategory.kt +++ b/app/src/main/java/com/vanced/manager/ui/core/PreferenceCategory.kt @@ -10,7 +10,7 @@ import com.vanced.manager.databinding.ViewPreferenceCategoryBinding class PreferenceCategory @JvmOverloads constructor( context: Context, attrs: AttributeSet? = null, - defStyle: Int = 0, + defStyle: Int = 0 ) : LinearLayout(context, attrs, defStyle) { private var _binding: ViewPreferenceCategoryBinding? = null diff --git a/app/src/main/java/com/vanced/manager/ui/core/SlidingConstraintLayout.kt b/app/src/main/java/com/vanced/manager/ui/core/SlidingConstraintLayout.kt deleted file mode 100644 index 2010b8dd..00000000 --- a/app/src/main/java/com/vanced/manager/ui/core/SlidingConstraintLayout.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.vanced.manager.ui.core - -import android.content.Context -import android.util.AttributeSet -import androidx.constraintlayout.widget.ConstraintLayout - -open class SlidingConstraintLayout : ConstraintLayout { - - constructor(context: Context) : super(context) - constructor(context: Context, attrs: AttributeSet?) : super( - context, - attrs - ) - - var xFraction: Float - get() { - val width = width - return if (width != 0) - x / getWidth() - else - x - } - set(xFraction) { - val width = width - val newWidth = - if (width > 0) - xFraction * width - else - (1).toFloat() - x = newWidth - } -} diff --git a/app/src/main/java/com/vanced/manager/ui/core/SlidingLinearLayout.kt b/app/src/main/java/com/vanced/manager/ui/core/SlidingLinearLayout.kt deleted file mode 100644 index 208634cf..00000000 --- a/app/src/main/java/com/vanced/manager/ui/core/SlidingLinearLayout.kt +++ /dev/null @@ -1,51 +0,0 @@ -package com.vanced.manager.ui.core - -import android.content.Context -import android.util.AttributeSet -import android.widget.LinearLayout - -open class SlidingLinearLayout: LinearLayout { - - constructor(context: Context?) : super(context) - constructor(context: Context?, attrs: AttributeSet?) : super( - context, - attrs - ) - - var yFraction: Float - get() { - val height = height - return if (height != 0) - y / height - else - y - } - set(yFraction) { - val height = height - val newHeight = - if (height > 0) - yFraction * height - else - (1).toFloat() - y = newHeight - } - - var xFraction: Float - get() { - val width = width - return if (width != 0) - x / getWidth() - else - x - } - set(xFraction) { - val width = width - val newWidth = - if (width > 0) - xFraction * width - else - (1).toFloat() - x = newWidth - } - -} \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/ui/core/SlidingSwipeRefreshLayout.kt b/app/src/main/java/com/vanced/manager/ui/core/SlidingSwipeRefreshLayout.kt deleted file mode 100644 index 144591fe..00000000 --- a/app/src/main/java/com/vanced/manager/ui/core/SlidingSwipeRefreshLayout.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.vanced.manager.ui.core - -import android.content.Context -import android.util.AttributeSet -import androidx.swiperefreshlayout.widget.SwipeRefreshLayout - -open class SlidingSwipeRefreshLayout : SwipeRefreshLayout { - - constructor(context: Context?) : super(context!!) - constructor(context: Context?, attrs: AttributeSet?) : super( - context!!, - attrs - ) - - var xFraction: Float - get() { - val width = width - return if (width != 0) - x / getWidth() - else - x - } - set(xFraction) { - val width = width - val newWidth = - if (width > 0) - xFraction * width - else - (1).toFloat() - x = newWidth - } -} \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/ui/dialogs/DialogContainer.kt b/app/src/main/java/com/vanced/manager/ui/dialogs/DialogContainer.kt index 769dc2a7..c1208ca0 100644 --- a/app/src/main/java/com/vanced/manager/ui/dialogs/DialogContainer.kt +++ b/app/src/main/java/com/vanced/manager/ui/dialogs/DialogContainer.kt @@ -19,7 +19,7 @@ object DialogContainer { dialog.cancel() } setOnCancelListener { - if (isMiuiOptimizationsEnabled) { + if (context.isMiuiOptimizationsEnabled) { applyAccentMiuiDialog(context) } } diff --git a/app/src/main/java/com/vanced/manager/ui/fragments/HomeFragment.kt b/app/src/main/java/com/vanced/manager/ui/fragments/HomeFragment.kt index 88c9a546..fe80b603 100644 --- a/app/src/main/java/com/vanced/manager/ui/fragments/HomeFragment.kt +++ b/app/src/main/java/com/vanced/manager/ui/fragments/HomeFragment.kt @@ -30,7 +30,7 @@ import com.vanced.manager.ui.viewmodels.HomeViewModel import com.vanced.manager.ui.viewmodels.HomeViewModelFactory import com.vanced.manager.utils.isFetching -open class HomeFragment : BindingFragment() { +class HomeFragment : BindingFragment() { companion object { const val INSTALL_FAILED = "INSTALL_FAILED" @@ -43,7 +43,7 @@ open class HomeFragment : BindingFragment() { private val localBroadcastManager by lazy { LocalBroadcastManager.getInstance(requireActivity()) } private val prefs by lazy { PreferenceManager.getDefaultSharedPreferences(requireActivity()) } - private lateinit var tooltip: ViewTooltip + private var tooltip: ViewTooltip? = null override fun binding( inflater: LayoutInflater, @@ -61,25 +61,26 @@ open class HomeFragment : BindingFragment() { with (binding) { homeRefresh.setOnRefreshListener { viewModel.fetchData() } isFetching.observe(viewLifecycleOwner) { homeRefresh.isRefreshing = it } - tooltip = ViewTooltip - .on(recyclerAppList) - .position(ViewTooltip.Position.TOP) - .autoHide(false, 0) - .color(ResourcesCompat.getColor(requireActivity().resources, R.color.Twitter, null)) - .withShadow(false) - .corner(25) - .onHide { - prefs.edit { putBoolean("show_changelog_tooltip", false) } - } - .text(requireActivity().getString(R.string.app_changelog_tooltip)) if (prefs.getBoolean("show_changelog_tooltip", true)) { - tooltip.show() + tooltip = ViewTooltip + .on(recyclerAppList) + .position(ViewTooltip.Position.TOP) + .autoHide(false, 0) + .color(ResourcesCompat.getColor(requireActivity().resources, R.color.Twitter, null)) + .withShadow(false) + .corner(25) + .onHide { + prefs.edit { putBoolean("show_changelog_tooltip", false) } + } + .text(requireActivity().getString(R.string.app_changelog_tooltip)) + + tooltip?.show() } recyclerAppList.apply { layoutManager = LinearLayoutManager(requireActivity()) - adapter = AppListAdapter(requireActivity(), viewModel, viewLifecycleOwner, tooltip) + adapter = AppListAdapter(requireActivity(), viewModel, tooltip) setHasFixedSize(true) } @@ -109,7 +110,7 @@ open class HomeFragment : BindingFragment() { override fun onPause() { super.onPause() localBroadcastManager.unregisterReceiver(broadcastReceiver) - tooltip.close() + tooltip?.close() } override fun onResume() { diff --git a/app/src/main/java/com/vanced/manager/ui/fragments/SelectAppsFragment.kt b/app/src/main/java/com/vanced/manager/ui/fragments/SelectAppsFragment.kt index 07fc19b7..799d804e 100644 --- a/app/src/main/java/com/vanced/manager/ui/fragments/SelectAppsFragment.kt +++ b/app/src/main/java/com/vanced/manager/ui/fragments/SelectAppsFragment.kt @@ -5,13 +5,13 @@ import android.view.LayoutInflater import android.view.ViewGroup import android.widget.Toast import androidx.core.content.edit -import androidx.navigation.fragment.findNavController import androidx.preference.PreferenceManager.getDefaultSharedPreferences import androidx.recyclerview.widget.LinearLayoutManager import com.vanced.manager.R import com.vanced.manager.adapter.SelectAppsAdapter import com.vanced.manager.core.ui.base.BindingFragment import com.vanced.manager.databinding.FragmentSelectAppsBinding +import com.vanced.manager.ui.WelcomeActivity class SelectAppsFragment : BindingFragment() { @@ -52,6 +52,6 @@ class SelectAppsFragment : BindingFragment() { selectAdapter.apps.forEach { app -> prefs.edit { putBoolean("enable_${app.tag}", app.isChecked) } } - findNavController().navigate(SelectAppsFragmentDirections.selectAppsToGrantRoot()) + (requireActivity() as WelcomeActivity).navigateTo(2) } } \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/ui/fragments/SettingsFragmentCompose.kt b/app/src/main/java/com/vanced/manager/ui/fragments/SettingsFragmentCompose.kt new file mode 100644 index 00000000..401a92a3 --- /dev/null +++ b/app/src/main/java/com/vanced/manager/ui/fragments/SettingsFragmentCompose.kt @@ -0,0 +1,56 @@ +package com.vanced.manager.ui.fragments + +//import android.os.Bundle +//import android.view.LayoutInflater +//import android.view.View +//import android.view.ViewGroup +//import androidx.compose.foundation.lazy.LazyColumn +//import androidx.compose.ui.platform.ComposeView +//import androidx.fragment.app.Fragment +//import com.vanced.manager.R +//import com.vanced.manager.ui.compose.Preference +//import com.vanced.manager.ui.compose.PreferenceCategory +//import com.vanced.manager.ui.compose.SwitchPreference +// +//class SettingsFragmentCompose : Fragment() { +// +// override fun onCreateView( +// inflater: LayoutInflater, +// container: ViewGroup?, +// savedInstanceState: Bundle? +// ): View { +// return ComposeView(requireActivity()).apply { +// setContent { +// LazyColumn { +// // use `item` for separate elements like headers +// // and `items` for lists of identical elements +// item { +// PreferenceCategory( +// categoryTitle = getString(R.string.category_behaviour) +// ) { +// SwitchPreference( +// preferenceTitle = getString(R.string.use_custom_tabs), +// preferenceDescription = getString(R.string.link_custom_tabs), +// preferenceKey = "use_custom_tabs" +// ) +// } +// } +// item { +// PreferenceCategory( +// categoryTitle = getString(R.string.category_appearance) +// ) { +// Preference( +// preferenceTitle = "test", +// preferenceDescription = "test", +// ) {} +// Preference( +// preferenceTitle = "test" +// ) {} +// } +// } +// } +// } +// } +// } +// +//} \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/ui/fragments/WelcomeFragment.kt b/app/src/main/java/com/vanced/manager/ui/fragments/WelcomeFragment.kt index 3cffe219..3b6f309b 100644 --- a/app/src/main/java/com/vanced/manager/ui/fragments/WelcomeFragment.kt +++ b/app/src/main/java/com/vanced/manager/ui/fragments/WelcomeFragment.kt @@ -3,9 +3,9 @@ package com.vanced.manager.ui.fragments import android.os.Bundle import android.view.LayoutInflater import android.view.ViewGroup -import androidx.navigation.fragment.findNavController import com.vanced.manager.core.ui.base.BindingFragment import com.vanced.manager.databinding.FragmentWelcomeBinding +import com.vanced.manager.ui.WelcomeActivity class WelcomeFragment : BindingFragment() { @@ -20,10 +20,8 @@ class WelcomeFragment : BindingFragment() { } private fun bindData() { - binding.welcomeGetStarted.setOnClickListener { navigateToWelcome() } - } - - private fun navigateToWelcome() { - findNavController().navigate(WelcomeFragmentDirections.welcomeToSelectApps()) + binding.welcomeGetStarted.setOnClickListener { + (requireActivity() as WelcomeActivity).navigateTo(1) + } } } \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/utils/AppUtils.kt b/app/src/main/java/com/vanced/manager/utils/AppUtils.kt index b0922699..8d2a8497 100644 --- a/app/src/main/java/com/vanced/manager/utils/AppUtils.kt +++ b/app/src/main/java/com/vanced/manager/utils/AppUtils.kt @@ -128,7 +128,7 @@ object AppUtils: CoroutineScope by CoroutineScope(Dispatchers.IO) { status.contains("Files_Missing_VA") -> context.getString(R.string.files_missing_va) status.contains("Path_Missing") -> context.getString(R.string.path_missing) status.contains("INSTALL_FAILED_INTERNAL_ERROR: Permission Denied") -> { - if (isMiuiOptimizationsEnabled) + if (context.isMiuiOptimizationsEnabled) context.getString(R.string.installation_miui) else context.getString(R.string.installation_blocked) diff --git a/app/src/main/java/com/vanced/manager/utils/DownloadHelper.kt b/app/src/main/java/com/vanced/manager/utils/DownloadHelper.kt index 28223d14..2232cfda 100644 --- a/app/src/main/java/com/vanced/manager/utils/DownloadHelper.kt +++ b/app/src/main/java/com/vanced/manager/utils/DownloadHelper.kt @@ -54,13 +54,14 @@ object DownloadHelper : CoroutineScope by CoroutineScope(Dispatchers.IO) { } else { onError("Could not save file") downloadProgress.postValue(0) - log("VMDownloader", "Failed to save file: $url") + log("VMDownloader", "Failed to save file: $url\n${response.errorBody()}") } } } else { - onError(response.errorBody().toString()) + val errorBody = response.errorBody().toString() + onError(errorBody) downloadProgress.postValue(0) - log("VMDownloader", "Failed to download file: $url") + log("VMDownloader", "Failed to download file: $url\n$errorBody") } } diff --git a/app/src/main/java/com/vanced/manager/utils/Extensions.kt b/app/src/main/java/com/vanced/manager/utils/Extensions.kt index d5d86e81..646b0f98 100644 --- a/app/src/main/java/com/vanced/manager/utils/Extensions.kt +++ b/app/src/main/java/com/vanced/manager/utils/Extensions.kt @@ -79,6 +79,12 @@ fun MaterialAlertDialogBuilder.applyAccent() { fun Context.writeServiceDScript(apkFPath: String, path: String, app: String) { val shellFileZ = SuFile.open("/data/adb/service.d/$app.sh") shellFileZ.createNewFile() - val code = """#!/system/bin/sh${"\n"}while [ "`getprop sys.boot_completed | tr -d '\r' `" != "1" ]; do sleep ${defPrefs.serviceDSleepTimer}; done${"\n"}chcon u:object_r:apk_data_file:s0 $apkFPath${"\n"}mount -o bind $apkFPath $path""" - SuFileOutputStream.open(shellFileZ).use { out -> out.write(code.toByteArray())} + val script = """ + #!/system/bin/sh + while [ "$(getprop sys.boot_completed | tr -d '\r')" != "1" ]; do sleep 1; done + sleep ${defPrefs.serviceDSleepTimer} + chcon u:object_r:apk_data_file:s0 $apkFPath + mount -o bind $apkFPath $path + """.trimIndent() + SuFileOutputStream.open(shellFileZ).use { out -> out.write(script.toByteArray())} } diff --git a/app/src/main/java/com/vanced/manager/utils/MiuiHelper.kt b/app/src/main/java/com/vanced/manager/utils/MiuiHelper.kt index 8aa2b40b..bbf59ec9 100644 --- a/app/src/main/java/com/vanced/manager/utils/MiuiHelper.kt +++ b/app/src/main/java/com/vanced/manager/utils/MiuiHelper.kt @@ -1,15 +1,8 @@ package com.vanced.manager.utils -import com.topjohnwu.superuser.Shell +import android.content.Context +import android.provider.Settings -private const val MIUI_OPTIMIZATIONS_PROP = "persist.sys.miui_optimization" +private const val MIUI_OPTIMIZATION = "miui_optimization" -val isMiuiOptimizationsEnabled get() = getSystemProperty(MIUI_OPTIMIZATIONS_PROP) == "true" - -fun getSystemProperty(propname: String): String? { - return try { - Shell.sh("getprop $propname").exec().out.joinToString(" ") - } catch (e: Exception) { - null - } -} \ No newline at end of file +val Context.isMiuiOptimizationsEnabled: Boolean get() = Settings.Secure.getString(contentResolver, MIUI_OPTIMIZATION) == "1" \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/utils/PackageHelper.kt b/app/src/main/java/com/vanced/manager/utils/PackageHelper.kt index 348e846a..d245710a 100644 --- a/app/src/main/java/com/vanced/manager/utils/PackageHelper.kt +++ b/app/src/main/java/com/vanced/manager/utils/PackageHelper.kt @@ -22,12 +22,8 @@ import com.vanced.manager.utils.AppUtils.vancedRootPkg import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.launch -import java.io.File -import java.io.FileInputStream -import java.io.IOException -import java.io.InputStream +import java.io.* import java.util.* -import java.util.regex.Pattern object PackageHelper { @@ -301,35 +297,21 @@ object PackageHelper { } private fun installSplitApkFilesRoot(apkFiles: List?, context: Context) : Boolean { - var sessionId: Int? val filenames = arrayOf("black.apk", "dark.apk", "blue.apk", "pink.apk", "hash.json") - log(INSTALLER_TAG, "installing split apk files: $apkFiles") - run { - val sessionIdResult = Shell.su("pm install-create -r -t").exec().out - val sessionIdPattern = Pattern.compile("(\\d+)") - val sessionIdMatcher = sessionIdPattern.matcher(sessionIdResult[0]) - sessionIdMatcher.find() - sessionId = Integer.parseInt(sessionIdMatcher.group(1)!!) - } - apkFiles?.forEach { apkFile -> - if (!filenames.any { apkFile.name == it }) { - log(INSTALLER_TAG, "installing APK: ${apkFile.name} ${apkFile.length()}") - val command = arrayOf("su", "-c", "pm", "install-write", "-S", "${apkFile.length()}", "$sessionId", apkFile.name) - val process: Process = Runtime.getRuntime().exec(command) - val inputPipe = FileInputStream(apkFile) - try { - process.outputStream.use { outputStream -> inputPipe.copyTo(outputStream) } - } catch (e: Exception) { - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) - process.destroyForcibly() - else - process.destroy() - - log(INSTALLER_TAG, e.stackTraceToString()) - sendFailure(e.stackTrace.map { it.toString() }.toMutableList(), context) - sendCloseDialog(context) - } - process.waitFor() + log(INSTALLER_TAG, "installing split apk files: ${apkFiles?.map { it.name }}") + val sessionId = Shell.su("pm install-create").exec().out.joinToString(" ").filter { it.isDigit() }.toInt() + apkFiles?.filter { !filenames.contains(it.name) }?.forEach { apkFile -> + val apkName = apkFile.name + log(INSTALLER_TAG, "installing APK: $apkName") + val newPath = "/data/local/tmp/$apkName" + // Moving apk to avoid permission denials + Shell.su("mv ${apkFile.path} $newPath").exec() + val command = Shell.su("pm install-write $sessionId $apkName $newPath").exec() + Shell.su("rm $newPath").exec() + if (!command.isSuccess) { + sendFailure(command.out, context) + sendCloseDialog(context) + return false } } log(INSTALLER_TAG, "committing...") diff --git a/app/src/main/res/animator/fragment_enter_right.xml b/app/src/main/res/animator/fragment_enter_right.xml deleted file mode 100644 index 85e54d48..00000000 --- a/app/src/main/res/animator/fragment_enter_right.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/animator/fragment_exit_right.xml b/app/src/main/res/animator/fragment_exit_right.xml deleted file mode 100644 index 7e5bc218..00000000 --- a/app/src/main/res/animator/fragment_exit_right.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/animator/welcome_exit.xml b/app/src/main/res/animator/welcome_exit.xml deleted file mode 100644 index f81d59cf..00000000 --- a/app/src/main/res/animator/welcome_exit.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/animator/welcome_pop_enter.xml b/app/src/main/res/animator/welcome_pop_enter.xml deleted file mode 100644 index 1facda88..00000000 --- a/app/src/main/res/animator/welcome_pop_enter.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_info_black_24dp.xml b/app/src/main/res/drawable/ic_info_black_24dp.xml deleted file mode 100644 index 44ff6b4a..00000000 --- a/app/src/main/res/drawable/ic_info_black_24dp.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - diff --git a/app/src/main/res/drawable/sponsor_background.xml b/app/src/main/res/drawable/sponsor_background.xml deleted file mode 100644 index d7084153..00000000 --- a/app/src/main/res/drawable/sponsor_background.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/activity_welcome.xml b/app/src/main/res/layout/activity_welcome.xml index 91ee392c..c591147d 100644 --- a/app/src/main/res/layout/activity_welcome.xml +++ b/app/src/main/res/layout/activity_welcome.xml @@ -1,16 +1,6 @@ - - - - \ No newline at end of file + android:layout_height="match_parent" /> \ No newline at end of file diff --git a/app/src/main/res/layout/dialog_app_download.xml b/app/src/main/res/layout/dialog_app_download.xml index 4246e46d..6ddf6aa0 100644 --- a/app/src/main/res/layout/dialog_app_download.xml +++ b/app/src/main/res/layout/dialog_app_download.xml @@ -3,6 +3,7 @@ xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" tools:context=".ui.dialogs.AppDownloadDialog" + android:keepScreenOn="true" style="@style/DialogCard"> + android:keepScreenOn="true" + style="@style/DialogCard"> + style="@style/DialogCardSubtitle"/> - @@ -9,14 +10,16 @@ android:id="@+id/grant_root_header" android:text="@string/are_you_rooted" app:layout_constraintTop_toTopOf="parent" - style="@style/WelcomeHeaderTitle" /> + style="@style/WelcomeHeaderTitle" + tools:ignore="MissingConstraints" /> + style="@style/WelcomeHeaderSubtitle" + tools:ignore="MissingConstraints" /> - \ No newline at end of file + + \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_select_apps.xml b/app/src/main/res/layout/fragment_select_apps.xml index a8d3211c..624835c1 100644 --- a/app/src/main/res/layout/fragment_select_apps.xml +++ b/app/src/main/res/layout/fragment_select_apps.xml @@ -1,5 +1,5 @@ - - + diff --git a/app/src/main/res/layout/fragment_welcome.xml b/app/src/main/res/layout/fragment_welcome.xml index 478e0e95..1ee2b2fd 100644 --- a/app/src/main/res/layout/fragment_welcome.xml +++ b/app/src/main/res/layout/fragment_welcome.xml @@ -1,5 +1,5 @@ - - + + diff --git a/app/src/main/res/layout/view_sponsor.xml b/app/src/main/res/layout/view_sponsor.xml index 45fd82ef..3f8acca6 100644 --- a/app/src/main/res/layout/view_sponsor.xml +++ b/app/src/main/res/layout/view_sponsor.xml @@ -14,7 +14,6 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/values-af-rZA/strings.xml b/app/src/main/res/values-af-rZA/strings.xml index d3cc93ec..cf9a5894 100644 --- a/app/src/main/res/values-af-rZA/strings.xml +++ b/app/src/main/res/values-af-rZA/strings.xml @@ -73,8 +73,8 @@ Guide Stop! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI detected! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Error Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub @@ -108,12 +108,12 @@ Installation failed because the user blocked the installation. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. Installation failed because the app conflicts with an already installed app. Uninstall the current version of the app, then try again. - Installation failed for unknown reasons, join our Telegram or Discord for further support. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Installation failed because the installation file is incompatible with your device. Clear downloaded files in the Settings, then try again. Installation failed because the apk files are corrupted, please try again. Installation failed because apk signature verification is enabled. Disable apk signature verification, then try again. Installation failed because MIUI Optimization is enabled. Disable MIUI Optimization, then try again. - Installation failed due to a storage error. + Installation failed because the device doesn\'t have enough free space. Failed to find apk file for black/dark theme from the installer. Clear app data of Manager, then try again. Failed to locate the stock YouTube installation path after split installation. diff --git a/app/src/main/res/values-ar-rSA/strings.xml b/app/src/main/res/values-ar-rSA/strings.xml index 22b41a66..27b3d153 100644 --- a/app/src/main/res/values-ar-rSA/strings.xml +++ b/app/src/main/res/values-ar-rSA/strings.xml @@ -73,8 +73,8 @@ الدليل إيقاف! يبدو أنك تستخدم إصدار ماجيسك/TWRP من ڤانسد، الذي قد تم إيقافه ولا يمكن تحديثه بإستخدام هذا التطبيق. الرجاء إزالته أولاً من قائمة إضافات ماجيسك أو بإستخدام أداة إلغاء تثبيت ڤانسد من TWRP. - تم اكتشاف MIUI! - من أجل تثبيت ڤانسد، عليك تعطيل تحسينات MIUI في إعدادات المطور. (يمكنك تجاهل هذه الرسالة إذا كنت تستخدم نسخة رقم 20.2.20 أو أجدد تستند إلى نسخة نظام شاومي أوروبا) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) خطأ إعادة التنزيل تأكد من أنك قمت بتنزيل التطبيق من موقع vancedapp.com، أو خادم الديسكورد لڤانسد أو Vanced GitHub @@ -108,12 +108,12 @@ فشل التثبيت لأن المستخدم قام بحظر التثبيت. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. فشل التثبيت، لأن هذا التطبيق يتعارض مع تطبيق مثبت بالفعل. قم بإلغاء تثبيت الإصدار الحالي من Vanced، ثم حاول مرة أخرى. - فشل التثبيت لأسباب غير معروفة، انضم إلى التيليجرام أو الديسكورد الخاص بنا لمزيد من الدعم. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu فشل التثبيت لأن ملف التثبيت غير متوافق مع جهازك. امسح الملفات التي تم تنزيلها في الإعدادات، ثم حاول مرة أخرى. فشل التثبيت لأن حزم التثبيت تالفة، الرجاء المحاولة مرة أخرى. فشل التثبيت لأن التحقق من توقيع حزم التثبيت مفعل. الرجاء تعطيل التحقق من توقيع حزم التثبيت, ثم المحاولة مرة أخرى. فشل التثبيت لأن تحسينات MIUI مفعلة. قم بتعطيل تحسينات MIUI ، ثم حاول مرة أخرى. - فشل التثبيت بسبب خطأ في التخزين. + Installation failed because the device doesn\'t have enough free space. فشل العثور على حزمة التثبيت للسمة السوداء/المظلمة من المثبت. امسح بيانات التطبيق لمدير ڤانسد، ثم حاول مرة أخرى. فشل تحديد مسار تثبيت اليوتيوب الأصلي بعد تثبيت الحزم المنفصلة. diff --git a/app/src/main/res/values-az-rAZ/strings.xml b/app/src/main/res/values-az-rAZ/strings.xml index 4801384d..f41729e3 100644 --- a/app/src/main/res/values-az-rAZ/strings.xml +++ b/app/src/main/res/values-az-rAZ/strings.xml @@ -73,8 +73,8 @@ Bələdçi Dayandır! Buraxılışı dayandırılan və bu tətbiq istifadə edərək yenilənə bilməyən Vanced-in Magisk/TWRP versiyasını istifadə edirsiniz. Zəhmət olmasa magisk modulunu/TWRP Vanced silici istifadə edərək silin. - MIUI aşkarlandı! - Vanced-i quraşdırmaq üçün tərtibatçı tənzimləmələrindən MIUI Optimallaşdırmasını sıradan çıxartmaq LAZIMDIR. (20.2.20 və ya yuxarı xiaomi.eu əsaslı ROM istifadə edirsinizsə bu xəbərdarlığı nəzərə almaya bilərsiniz) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Xəta Yenidən endir Tətbiqi vancedapp.com, Vanced Discord server və ya Vanced GitHub\'dan endirdiyinizə əmin olun @@ -108,12 +108,12 @@ İstifadəçi quraşdırmanı əngəllədiyi üçün quraşdırılma uğursuz oldu. İstifadəçi paketi alt versiyaya keçirməyə çalışdığı üçün quraşdırılma uğursuz oldu. Stok YouTube tətbiqindən yeniləmələri silib yenidən sınayın. Tətbiq əvvəlcədən quraşdırılmış bir tətbiqlə toqquşduğu üçün quraşdırılma uğursuz oldu. Vanced-in cari versiyasını silib yenidən sınayın. - Bilinməyən səbəblərə görə quraşdırılma uğursuz oldu. Dəstək üçün Telegram və ya Discord-a qoşulun. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Quraşdırma faylı cihazınıza uyğun gəlmədiyi üçün quraşdırılma uğursuz oldu. Tənzimləmələrdən endirilmiş faylları təmizləyib yenidən sınayın. Apk faylları zədəli olduğu üçün quraşdırılma uğursuz oldu, yenidən sınayın. Apk imza təsdiqləmə fəal olduğu üçün quraşdırılma uğursuz oldu. Apk imza təsdiqləməsini sıradan çıxarıb yenidən sınayın. MIUI Optimallaşdırma fəal olduğu üçün quraşdırılma uğursuz oldu. MIUI Optimallaşdırmanı sıradan çıxarıb yenidən sınayın. - Anbar xətasına görə quraşdırılma uğursuz oldu. + Installation failed because the device doesn\'t have enough free space. Quraşdırıcıda qara/tünd tema üçün apk faylı tapılmadı. Menecer-in tətbiq verilənlərini təmizləyib yenidən sınayın. Ayrılmış quraşdırmadan sonra stok YouTube quraşdırma yolu tapılmadı. diff --git a/app/src/main/res/values-bg-rBG/strings.xml b/app/src/main/res/values-bg-rBG/strings.xml index c1e52269..449d22a9 100644 --- a/app/src/main/res/values-bg-rBG/strings.xml +++ b/app/src/main/res/values-bg-rBG/strings.xml @@ -73,7 +73,7 @@ Ръководство Стоп! Използвате Magisk/TWRP версията на Vanced, която е прекратена и не може да се актуализира с това приложение. Премахнете я като премахнете Magisk модула или чрез TWRP Vanced uninstaller. - Открит е MIUI! + MIUI оптимизациите са включени! За да инсталирате Vanced, ТРЯБВА да изключите MIUI оптимизациите в настройките за разработчици. (Това не е валидно ако ползвате 20.2.20 или по-нов ROM, базиран на xiaomi.eu) Грешка Изтегли отново @@ -108,12 +108,12 @@ Инсталацията е неуспешна, защото е блокирана от потребителя. Инсталацията е неуспешна, защото потребителя се опитва да инсталира по-стара версия на пакета. Деинсталирайте актуализациите на оригиналното приложение и опитайте отново. Инсталацията е неуспешна, поради конфликт с вече инсталирано приложение. Деинсталирайте го и опитайте отново. - Инсталацията е неуспешна, поради неизвестна причина, свържете се с нас в Telegram или Discord за повече информация. + Инсталацията не бе успешна по неизвестни причини, присъединете се към нашия Telegram или Discord за допълнителна поддръжка. Моля, прикачете и екранна снимка от меню Разширени Инсталацията е неуспешна, защото инсталационният файл не е съвместим с устройството ви. Изчистете изтеглените файлове от настройките и опитайте отново. Инсталацията е неуспешна, защото apk файловете за повредени, моля опитайте отново. Инсталацията е неуспешна, поради включена проверка на подписите на apk файловете. Изключете я и опитайте отново. Инсталацията е неуспешна, поради включени MIUI оптимизации. Изключете ги и опитайте отново. - Инсталацията е неуспешна поради грешка в паметта. + Инсталацията не бе успешна, тъй като устройството няма достатъчно свободно място. Не е открит apk файл за черна/тъмна тема от инсталатора. Изчистете данните на мениджъра и опитайте отново. Не е открит пътя на инсталацията на оригиналното YouTube приложение след разделното инсталиране. diff --git a/app/src/main/res/values-bn-rBD/strings.xml b/app/src/main/res/values-bn-rBD/strings.xml index 443e9cfd..07be1b96 100644 --- a/app/src/main/res/values-bn-rBD/strings.xml +++ b/app/src/main/res/values-bn-rBD/strings.xml @@ -73,8 +73,8 @@ সহায়িকা থামো! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - মিইউআই শনাক্তকৃত! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) ত্রুটি Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub @@ -108,12 +108,12 @@ Installation failed because the user blocked the installation. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. Installation failed because the app conflicts with an already installed app. Uninstall the current version of the app, then try again. - অজানা কারণে ইনস্টলেশন ব্যর্থ হয়েছে, আরও সহায়তার জন্য আমাদের টেলিগ্রাম বা ডিসকর্ডে যোগ দিন।. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu ইনস্টলেশন ব্যর্থ হয়েছে কারণ ইনস্টলেশন ফাইলটি আপনার ডিভাইসের সাথে বেমানান। সেটিংসে ডাউনলোড করা ফাইল সাফ করুন, তারপরে আবার চেষ্টা করুন।. অ্যাপ্লিকেশন ব্যর্থ হয়েছে কারণ এপিপি ফাইলগুলি দূষিত হয়েছে, দয়া করে আবার চেষ্টা করুন।. Installation failed because apk signature verification is enabled. Disable apk signature verification, then try again. ইনস্টলেশন ব্যর্থ হয়েছে কারণ এমআইইউআই অপটিমাইজেশন সক্ষম রয়েছে। MIUI অপ্টিমাইজেশন অক্ষম করুন, তারপরে আবার চেষ্টা করুন।. - স্টোরেজ ত্রুটির কারণে ইনস্টলেশন ব্যর্থ হয়েছে।. + Installation failed because the device doesn\'t have enough free space. ইনস্টলার থেকে কালো / অন্ধকার থিমের জন্য সফটওয়্যারের ফাইল খুঁজতে ব্যর্থ। আপনার অ্যাপ্লিকেশনের ডেটা সাফ করুন, তারপরে আবার চেষ্টা করুন।. ভিন্ন ভিন্ন ইনস্টলেশন পরে স্টক ইউটিউব ইনস্টলেশন পথ সনাক্ত করতে ব্যর্থ. diff --git a/app/src/main/res/values-bn-rIN/strings.xml b/app/src/main/res/values-bn-rIN/strings.xml index a440d318..949d3c7b 100644 --- a/app/src/main/res/values-bn-rIN/strings.xml +++ b/app/src/main/res/values-bn-rIN/strings.xml @@ -73,8 +73,8 @@ সহায়িকা থামুন! আপনি ভ্যান্সড ম্যাজিস্ক/TWRP সংস্করণ ব্যবহার করছেন যা বন্ধ হয়ে গেছে এবং আপনি এটিকে আপডেট করতে পারবেন না। দয়া করে ম্যাজিস্ক মডিউলটি সরিয়ে/TWRP ভ্যান্সড আনইনস্টলার ব্যবহার করে এটি মুছে ফেলুন। - মিআইইউআই শনাক্তকৃত! - ভ্যান্সড ইনস্টল করার জন্য, আপনাকে সেটিংসে ডেভেলপারের বিকল্পে গিয়ে MIUI অপটিমাইজেশন নিস্ক্রিয় করতে হবে। (আপনি যদি ২০.২.২০ বা তার পরে xiaomi.eu ভিত্তিক রম ব্যবহার করেন তবে আপনি এই সতর্কতাটিকে এড়িয়ে যেতে পারেন) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) ত্রুটি পুনরায় ডাউনলোড করুন নিশ্চিত করুন যে আপনি অ্যাপটি vancedapp.com, ভ্যান্সড ডিসকার্ড সার্ভার বা ভ্যান্সড গিটহাব থেকে ডাউনলোড করেছেন @@ -108,12 +108,12 @@ ইনস্টল করা যায়নি কারণ ব্যবহারকারী ইনস্টল করা অবরুদ্ধ করেছেন। Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. ইনস্টলেশন ব্যর্থ হয়েছে কারণ অ্যাপ্লিকেশনটি ইতিমধ্যে ইনস্টল হওয়া অ্যাপ্লিকেশানের সাথে দ্বন্দ্ব রয়েছে ts অ্যাপ্লিকেশনটির বর্তমান সংস্করণটি আনইনস্টল করুন, তারপরে আবার চেষ্টা করুন।. - অজানা কারণে ইনস্টলেশন ব্যর্থ হয়েছে, আরও সহায়তার জন্য আমাদের টেলিগ্রাম বা ডিসকর্ডে যোগ দিন। + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu ইনস্টলেশন ব্যর্থ হয়েছে কারণ ইনস্টলেশন ফাইলটি আপনার ডিভাইসের উপযুক্ত নয়। সেটিংসে ডাউনলোড করা ফাইল মুছে ফেলুন, তারপরে আবার চেষ্টা করুন। ইনস্টলেশন ব্যর্থ হয়েছে কারণ এপিকে ফাইলগুলি দূষিত, দয়া করে আবার চেষ্টা করুন। ইনস্টলেশন ব্যর্থ হয়েছে কারণ এপিকে স্বাক্ষর যাচাইকরণ সক্ষম করা আছে। এপিকে স্বাক্ষর যাচাইকরণ অক্ষম করুন, তারপরে আবার চেষ্টা করুন। ইনস্টলেশন ব্যর্থ হয়েছে কারণ এমআইইউআই অপটিমাইজেশন সক্ষম আছে। এমআইইউআই অপ্টিমাইজেশন অক্ষম করুন, তারপরে আবার চেষ্টা করুন। - স্টোরেজ ত্রুটির কারণে ইনস্টলেশন ব্যর্থ হয়েছে। + Installation failed because the device doesn\'t have enough free space. ইনস্টলার থেকে কালো/গাঢ় থিমের জন্য সফটওয়্যারের ফাইল খুঁজতে ব্যর্থ। ম্যানেজারের ডেটা সাফ করুন, তারপরে আবার চেষ্টা করুন। স্পিল্ট ফাইলগুলি ইনস্টল করার পরে স্টক ইউটিউবের ইনস্টলেশন পাথ সনাক্ত করতে ব্যর্থ। diff --git a/app/src/main/res/values-ca-rES/strings.xml b/app/src/main/res/values-ca-rES/strings.xml index e2d3cb8d..621c193b 100644 --- a/app/src/main/res/values-ca-rES/strings.xml +++ b/app/src/main/res/values-ca-rES/strings.xml @@ -73,8 +73,8 @@ Guia Atura! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI detectat! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Error Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub @@ -108,12 +108,12 @@ Installation failed because the user blocked the installation. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. Installation failed because the app conflicts with an already installed app. Uninstall the current version of the app, then try again. - La instal·lació ha fallat per motius desconeguts. Uniu-vos al nostre Telegram o Discord per obtenir més assistència. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu La instal·lació ha fallat perquè el fitxer d\'instal·lació és incompatible amb el dispositiu. Esborreu els fitxers descarregats a Configuració i torneu-ho a provar. La instal·lació ha fallat perquè els fitxers apk estan danyats. Torneu-ho a provar. La instal·lació ha fallat perquè la verificació de la signatura apk està activada. Desactiveu la verificació de la signatura apk i torneu-ho a provar. La instal·lació ha fallat perquè l\'optimització MIUI està activada. Desactiveu l\'optimització MIUI i torneu-ho a provar. - La instal·lació ha fallat a causa d\'un error d\'emmagatzematge. + Installation failed because the device doesn\'t have enough free space. Failed to find apk file for black/dark theme from the installer. Clear app data of Manager, then try again. Failed to locate the stock YouTube installation path after split installation. diff --git a/app/src/main/res/values-ckb-rIR/strings.xml b/app/src/main/res/values-ckb-rIR/strings.xml index d6a97a57..9100a0ef 100644 --- a/app/src/main/res/values-ckb-rIR/strings.xml +++ b/app/src/main/res/values-ckb-rIR/strings.xml @@ -73,8 +73,8 @@ زانیاری وەستاندن! تۆ وەشانی Magisk/TWRP ـی Vanced بەکاردێنیت، کە ناتوانرێت بە بەکارهێنانی ئەم بەرنامەیە نوێبکرێتەوە، تکایە لایبدە بە سڕینەوەی مۆدیولی ماگیسک/لەڕێی TWRP Vanced. - تۆ ڕووکاری MIUI بەکاردێنیت! - بۆ ئەوەی Vanced دابمەزرێنیت، پێویستە چاکسازییەکانی ڕووکاری MIUI لە ڕێکبەندەکانی پەرەپێدەر لە کار بخەیت، (دەتوانیت ئەم ئاگاداریە پشتگوێ بخەیت ئەگەر ڕومی تایبەتی وەشانی 20.2.20 یان دواتر xiaomi.eu بەکاردەهێنیت. بەکاردەهێنیت) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) هەڵەیەک ڕوویدا داگرتنەوە دڵنیابە کە بەرنامەکەت لە سایتی vancedapp.com، سێرڤەری دیسکۆرد یان Vanced GitHub داگرتووە @@ -108,12 +108,12 @@ دامەزراندن سەرکەوتو نەبوو، لەبەر ئەوەی بەکارهێنەر ڕێگریکرد لە دابەزاندنەکە. دامەزراندن سەرکەوتو نەبوو، لەبەر ئەوەی بەکارهێنەر هەوڵیدا بۆ نزمکردنەوەی وەشان، نوێکارییەکانی بەرنامەی بنەڕەتی YouTube بسڕەوە و دووبارە هەوڵبدەرەوە. دامەزراندن سەرکەوتو نەبوو لەبەرئەوەی وەشانێکی تری بەرنامەکە پێشتر دامەزرێنراوە، وەشانی ئێستای Vanced بسڕەوە و پاشان دووبارە هەوڵبدەرەوە. - دامەزراندن سەرکەوتو نەبوو لەبەر هۆکاری نادیار، پەیوەندی بکە بە تێلێگرامەکەمان یان Discord بۆ پشتگیری زیاتر. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu دامەزراندن سەرکەوتو نەبوو لەبەرئەوەی فایلی دابەزاندن گونجاو نییە لەگەڵ ئامێرەکەت، فایلە داگیراوەکان بسڕەوە و پاشان دووبارە هەوڵبدەرەوە. دامەزراندن سەرکەوتوو نەبوو لەبەرئەوەی فایلی apk تێکچووە، تکایە دووبارە هەوڵبدرەوە. دامەزراندن سەرکەوتو نەبوو لەبەرئەوەی سەلماندنەکانی apk چالاککراوە، سەلماندنی دووپاتکردنەوەی ئیمزای apk ناچالاک بکە و پاشان دووبارە هەوڵبدەرەوە. دامەزراندن سەرکەوتو نەبوو لەبەرئەوەی باشکردنی ڕووکاری MIUI چالاککراوە، باشکردنی ڕووکاری MIUI ناچالاک بکە ودووبارە هەوڵبدەرەوە. - دامەزراندن سەرکەوتو نەبوو بەهۆی بوونی کێشە لە بیرگەدا. + Installation failed because the device doesn\'t have enough free space. سەرکەوتو نەبوو لە دۆزینەوەی فایلی Apk بۆ ڕووکاری ڕەش/تاریک لە دامەزرێنەرەکەدا. داتای بەرنامەکە بسڕەوە لە ڕێکبەندیەکاندا و دووبارە هەوڵبدەرەوە. سەرکەوتو نەبوو لە دۆزینەوەی بەرنامەی بنەڕەتی YouTube لەشوێنی دابەزاندن لەپاش دامەزراندنی پێکهاتەکان. diff --git a/app/src/main/res/values-cs-rCZ/strings.xml b/app/src/main/res/values-cs-rCZ/strings.xml index 46e86d85..d685ca94 100644 --- a/app/src/main/res/values-cs-rCZ/strings.xml +++ b/app/src/main/res/values-cs-rCZ/strings.xml @@ -73,7 +73,7 @@ Průvodce Zadržte! Používáte verzi Vanced pro Magisk/TWRP, jejíž vývoj byl ukončen a kterou nelze pomocí této aplikace aktualizovat. Odstraňte ji prosím odebráním modulu Magisk použitím Vanced odinstalátoru v TWRP. - Bylo zjištěno MIUI! + Optimalizace MIUI jsou zapnuty! Chcete‑li nainstalovat Vanced, MUSÍTE vypnout optimalizace MIUI v nastavení pro vývojáře. (Toto varování můžete ignorovat, pokud používáte ROM ze 20. 2. 2020 nebo novější založenou na xiaomi.eu) Chyba Stáhnout znovu @@ -108,12 +108,12 @@ Instalace se nezdařila, protože uživatel zablokoval instalaci. Instalace se nezdařila, protože se uživatel pokusil balíček downgradovat. Odinstalujte aktualizace z výchozí aplikace a poté to zkuste znovu. Instalace se nezdařila, protože aplikace je v konfliktu s již nainstalovanou aplikací. Odinstalujte aktuální verzi aplikace a poté to zkuste znovu. - Instalace se nezdařila z neznámých důvodů. Pro získání další podpory se připojte k našemu Telegramu nebo Discordu. + Instalace se z neznámých důvodů nezdařila. Pro další podporu se připojte k našemu Telegramu nebo Discordu. Připojte také snímek obrazovky z nabídky Pokročilé Instalace se nezdařila, protože instalační soubor není kompatibilní s vaším zařízením. Vymažte v Nastavení stažené soubory a poté to zkuste znovu. Instalace se nezdařila, protože soubory APK jsou poškozeny. Zkuste to prosím znovu. Instalace se nezdařila, protože je povoleno ověření podpisu APK. Zakažte ověření podpisu APK a poté to zkuste znovu. Instalace se nezdařila, protože je zapnuta optimalizace MIUI. Vypněte optimalizaci MIUI a poté to zkuste znovu. - Instalace se nezdařila kvůli chybě úložiště. + Instalace se nezdařila, protože v zařízení není dostatek volného místa. Nepodařilo se najít soubor APK pro černý/tmavý motiv z instalátoru. Vymažte data aplikace Manager a zkuste to znovu. Nepodařilo se najít výchozí cestu instalace YouTube po rozdělené instalaci. diff --git a/app/src/main/res/values-da-rDK/strings.xml b/app/src/main/res/values-da-rDK/strings.xml index 42d78185..b2aa10ca 100644 --- a/app/src/main/res/values-da-rDK/strings.xml +++ b/app/src/main/res/values-da-rDK/strings.xml @@ -73,16 +73,16 @@ Vejledning Stop! Det ser ud som om du bruger Magisk/TWRP versionen af Vanced. Den er ikke længere understøttet og kan derfor ikke opdateres igennem denne app. Vær venlig at fjerne magisk modulet/brug TWRP Vanced uninstaller. - MIUI fundet! - For at installere Vanced er du NØDT til at slå MIUI optimering fra i udvikler indstillingerne. (Du kan ignorere denne advarsel hvis du bruger en 20.2.20 eller nyere xiaomi.eu baseret ROM) + MIUI Optimering er aktiveret! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Fejl Hent igen Venligst sørg for kun at have downloaded appen fra vancedapp.com, Vanced Discord serveren eller Vanced GitHub siden %1$s Installationsindstillinger Version Fejl i microG - Due to a bug in the original microG, installing Vanced v16+ first requires you to install v15.43.32, open it, then login and only then can you install v16 and higher. Do you want to proceed with the installation of v15.43.32? - Due to a bug in the original microG, installing Music v4.11+ first requires you to install v4.07.51, open it, then login and only then can you install v4.11 and higher. Do you want to proceed with the installation of v4.07.51? + På grund af en fejl i microG, kræver installationen af Vanced 16+ først at du installerer v15.43.32, åbner, logger ind og først derefter kan du installere v16 og over. Vil du fortsætte med at installere v15.43.32? + På grund af en fejl i microG, kræver installationen af Music v4.11+ først at du installerer v4.07.51, åbner, logger ind og først derefter kan du installere v4.11 og over. Vil du at fortsætte med at installere v4.07.51? Afslut venligst IKKE appen under denne proces! Velkommen @@ -94,7 +94,7 @@ Mørk Manager udviklere - Other Contributors + Øvrige Bidragsydere Kilder Vanced holdet @@ -108,12 +108,12 @@ Installationen fejlede fordi brugeren blokerede installationen. Installationen fejlede fordi brugeren prøvede at nedgradere pakken. Fjern opdateringer fra Youtube appen og prøv igen. Installationen fejlede fordi appen konflikter med en allerede installeret app. Fjern den nuværende version af appen og prøv igen. - Installationen fejlede af en ukendt årsag, join vores Telegram eller Discord for hjælp. + Installation mislykkedes af ukendte årsager, kom på vores Telegram eller Discord for yderligere hjælp. Vedhæft venligst også et skærmbillede fra menuen Avanceret Installationen fejlede fordi installationsfilen er inkompatibel med din enhed. Ryd de downloadede filer i indstillingerne og prøv igen. Installationen fejlede fordi apk filerne er beskadiget, prøv igen. Installationen fejlede fordi apk signatur verifikation er slået til. Slå apk signatur verifikation fra og prøv igen. Installationen fejlede fordi MIUI optimering er slået til. Slå MIUI optimering fra og prøv igen. - Installationen fejlede på grund af pladsmangel. + Installationen mislykkedes, fordi enheden ikke har nok ledig plads. Kunne ikke finde apk fil til sort/mørkt tema fra installationsprogrammet. Ryd app data fra Manager, og prøv derefter igen. Kunne ikke finde lageret YouTube-installationsstien efter split installation. diff --git a/app/src/main/res/values-de-rDE/strings.xml b/app/src/main/res/values-de-rDE/strings.xml index 027d450f..4d789ba7 100644 --- a/app/src/main/res/values-de-rDE/strings.xml +++ b/app/src/main/res/values-de-rDE/strings.xml @@ -8,8 +8,8 @@ Wähle deine Apps Über - Erklärung - Logs + Anleitung + Protokolle Manager Einstellungen Update Manager @@ -60,8 +60,8 @@ Keine neuen Updates Variante - Logs erfolgreich gespeichert - Logs konnten nicht gespeichert werden + Protokolle erfolgreich gespeichert + Protokolle konnten nicht gespeichert werden Erweitert %1$s Installationsdateien erkannt! @@ -73,16 +73,16 @@ Erklärung Stopp! Du benutzt die Magisk/TWRP-Version von Vanced, die nicht mehr unterstützt wird und mit dieser App nicht aktualisiert werden kann. Bitte entferne siie indem du das Magisk-Modul mit dem TWRP Vanced Uninstaller entfernst. - MIUI erkannt! - Um Vanced zu installieren, musst du die MIUI Optimierungen in den Entwicklereinstellungen deaktivieren. (Du kannst diese Warnung ignorieren, wenn du 20.2.20 oder höher auf xiaomi.eu basierenden ROM verwendest) + MIUI Optimierungen sind aktiviert! + Um Vanced installieren zu können, MÜSSEN Sie MIUI Optimierungen in den Entwickleroptionen deaktivieren. (Bitte ignorieren Sie diese Warnung, wenn Sie xiaomi.eu Roms mit der Version 20.2.20 oder höher verwenden.) Fehler Erneut herunterladen Stelle sicher, dass du die App von vancedapp.com, dem Vanced Discord Server oder dem Vanced GitHub heruntergeladen hast %1$s Installationsoptionen Version Fehler in MicroG - Due to a bug in the original microG, installing Vanced v16+ first requires you to install v15.43.32, open it, then login and only then can you install v16 and higher. Do you want to proceed with the installation of v15.43.32? - Aufgrund eines Fehlers in der Original microG, erfordert die Installation von Music v4.11 oder höher, zunächst die Installation, Öffnung und Anmeldung der v4.07.51 und erst dann kann die v4.11 oder höher installiert werden. Möchten Sie mit der Installation von v4.07.51 fortfahren? + Aufgrund eines Fehlers in MicroG ist es erforderlich, zuerst die Version v15.43.32 zu installieren, öffnen und sich anzumelden, um Vanced v16 und höher zu verwenden. Möchten Sie mit der Installation von v15.43.32 fortfahren? + Aufgrund eines Fehlers in MicroG, ist es erforderlich zuerst die Version v4.07.51 zu installieren, öffnen und sich anzumelden, um Vanced Music v4.11+ zu verwenden. Möchten Sie mit der Installation von v4.07.51 fortfahren? Bitte schließen Sie die App NICHT während dieses Prozesses! Willkommen @@ -94,7 +94,7 @@ Dunkel Manager-Entwickler - Other Contributors + Weitere Mitwirkende Quellen Vanced Team @@ -108,12 +108,12 @@ Installation fehlgeschlagen, da der Benutzer die Installation blockiert hat. Installation fehlgeschlagen, da der Benutzer versucht hat, eine ältere Version des Paketes zu installieren. Deinstallieren Sie Updates von der stock YouTube App und versuchen Sie es erneut. Die Installation ist fehlgeschlagen, weil die App in Konflikt mit einer bereits installierten App steht. Deinstalliere die aktuell installierte Version der App und versuchen es dann erneut. - Installation aus unbekannten Grund fehlgeschlagen. Treten Sie bitte unserem Telegram-Chat oder Discord-Server bei, um Support zu erhalten. + Die Installation ist aus unbekannten Gründen fehlgeschlagen, betrete unser Telegram oder Discord für weitere Unterstützung. Bitte füge auch einen Screenshot aus dem Erweiterten Menü zu Installation fehlgeschlagen, da die Installationsdatei nicht mit Ihrem Gerät kompatibel ist. Löschen Sie heruntergeladene Dateien in den Einstellungen, dann versuchen Sie es erneut. Installation fehlgeschlagen, da die apk-Dateien beschädigt sind, bitte versuchen Sie es erneut. Installation fehlgeschlagen, da die apk Signaturüberprüfung aktiviert ist. Deaktivieren Sie die apk Signaturüberprüfung, dann versuchen Sie es erneut. Installation fehlgeschlagen, da die MIUI-Optimierung aktiviert ist. Deaktivieren Sie die MIUI-Optimierung, und versuchen Sie es erneut. - Die Installation ist aufgrund eines Speicherfehlers fehlgeschlagen. + Installation fehlgeschlagen, da das Gerät nicht genügend freien Speicherplatz hat. Apk-Datei für schwarzes/dunkles Theme konnte nicht gefunden werden. Löschen Sie die App-Daten des Managers und versuchen Sie es erneut. Fehler beim Auffinden des YouTube-Installationspfades nach der geteilten Installation. diff --git a/app/src/main/res/values-el-rGR/strings.xml b/app/src/main/res/values-el-rGR/strings.xml index 1031804b..47eb9482 100644 --- a/app/src/main/res/values-el-rGR/strings.xml +++ b/app/src/main/res/values-el-rGR/strings.xml @@ -73,7 +73,7 @@ Οδηγίες Σταματήστε! Χρησιμοποιείτε την έκδοση Magisk/TWRP του Vanced, η οποία δεν υποστηρίζεται πλέον και δεν μπορεί να ενημερωθεί μέσω αυτής της εφαρμογής. Παρακαλούμε αφαιρέστε αυτή την έκδοση αφαιρώντας το Magisk Module/χρησιμοποιόντας το πρόγραμμα κατάργησης TWRP Vanced. - Ανιχνεύτηκε MIUI! + Η βελτιστοποίηση MIUI είναι ενεργή! Για να εγκαταστήσετε το Vanced, ΠΡΕΠΕΙ να απενεργοποιήσετε τις Βελτιστοποιήσεις MIUI στις ρυθμίσεις για προγραμματιστές. (Μπορείτε να αγνοήσετε αυτή την προειδοποίηση αν χρησιμοποιείτε την έκδοση ROM 20.2.20 ή μεταγενέστερη, βάσει του xiaomi.eu) Σφάλμα Επανάληψη λήψης @@ -108,12 +108,12 @@ Η εγκατάσταση απέτυχε διότι ο χρήστης απέκλεισε την εγκατάσταση. Η εγκατάσταση απέτυχε διότι ο χρήστης προσπάθησε να υποβαθμίσει το πακέτο. Απεγκαταστήστε τις ενημερώσεις της αρχικής εφαρμογής YouTube, στη συνέχεια προσπαθήστε ξανά. Η εγκατάσταση απέτυχε διότι η εφαρμογή αντικρούεται με μια ήδη εγκατεστημένη εφαρμογή. Κάντε απεγκατάσταση την τρέχουσα έκδοση της εφαρμογής, και μετά προσπαθήστε ξανά. - Η εγκατάσταση απέτυχε για άγνωστους λόγους, παρακαλούμε μπείτε στο Telegram ή στο Discord μας για περαιτέρω βοήθεια. + Η εγκατάσταση απέτυχε για άγνωστους λόγους, μπείτε στο Telegram ή στο Discord μας για περαιτέρω υποστήριξη. Παρακαλώ επισυνάψτε ένα στιγμιότυπο οθόνης από τις επιλογές για προχωρημένους Η εγκατάσταση απέτυχε διότι το αρχείο εγκατάστασης είναι μη συμβατό με την συσκευή σας. Κάντε εκκαθάριση των ληφθέντων αρχείων στις ρυθμίσεις, στην συνέχεια προσπαθήστε ξανά. Η εγκατάσταση απέτυχε διότι τα αρχεία apk έχουν διαφθαρεί, παρακαλώ προσπαθήστε ξανά. Η εγκατάσταση απέτυχε διότι η επαλήθευση υπογραφής των apk είναι ενεργή. Απενεργοποιήστε την υπογραφή επαλήθευσης apk, στην συνέχεια προσπαθήστε ξανά. Η εγκατάσταση απέτυχε διότι η βελτιστοποίηση MIUI είναι ενεργή. Απενεργοποιήστε την βελτιστοποίηση MIUI, και προσπαθήστε ξανά. - Η εγκατάσταση απέτυχε λόγω σφάλματος του αποθηκευτικού χώρου. + Η εγκατάσταση απέτυχε διότι δεν υπάρχει αρκετός ελεύθερος χώρος στη συσκευή σας. Αδυναμία εύρεσης του αρχείου apk σκουρόχρωμου/απολύτου μαύρου θέματος από το πρόγραμμα εγκατάστασης. Κάνετε εκκαθάριση των δεδομένων του διαχειριστή Vanced, στην συνέχεια προσπαθήστε ξανά. Αδυναμία εύρεσης της διαδρομής εγκατάστασης της αρχικής εφαρμογής YouTube μετά από εγκατάσταση σε τεμάχια. diff --git a/app/src/main/res/values-es-rES/strings.xml b/app/src/main/res/values-es-rES/strings.xml index d9ff7c59..a8d04300 100644 --- a/app/src/main/res/values-es-rES/strings.xml +++ b/app/src/main/res/values-es-rES/strings.xml @@ -49,7 +49,7 @@ Links serán abiertos en Chrome Custom Tabs Predeterminado del sistema Error al guardar el nuevo valor de tiempo - Tiempo de reposo de script root + Tiempo de reposo de la secuencia de comandos de la raíz Ajustar el valor de tiempo de reposo en el script /data/adb/service.d/app.sh, útil para arreglar problemas de montaje Tema Tema Oscuro @@ -73,16 +73,16 @@ Guía ¡Detente! Estás usando la versión Magisk/TWRP de Vanced, la cual está descontinuada y no puede ser actualizada usando esta aplicación. Por favor, remuevala eliminando el módulo Magisk o usando el desinstalador TWRP Vanced. - MIUI detectado! - Para instalar Vanced, DEBES desactivar las optimizaciones de MIUI en las opciones de desarrollador. (Puedes omitir este paso si estás utilizando un ROM basado en xiaomi.eu 20.2.20 o posterior) + ¡Optimizaciones MIUI habilitadas! + Para instalar Vanced, DEBES desabilitar las optimizaciones MIUI en las opciones de desarrollador. (Puedes ignorar esta advertencia si estás usando un ROM basado en xiaomi.eu 20.2.20 o posterior) Error Volver a descargar Asegúrate de haber descargado la app desde vancedapp.com, el grupo de Discord de Vanced, o el GitHub de Vanced %1$s Preferencias de instalación Versión Error en microG - Due to a bug in the original microG, installing Vanced v16+ first requires you to install v15.43.32, open it, then login and only then can you install v16 and higher. Do you want to proceed with the installation of v15.43.32? - Due to a bug in the original microG, installing Music v4.11+ first requires you to install v4.07.51, open it, then login and only then can you install v4.11 and higher. Do you want to proceed with the installation of v4.07.51? + Debido a un error en el microG original, la instalación de Vanced v16+ requiere primero la instalación de la versión v15.43.32, abrirla, iniciar sesión y sólo entonces podrás instalar la versión v16 y superior. ¿Quieres proceder con la instalada de la versión v15.43.32? + Debido a un error en microG, para poder instalar Vanced v16+ hay que instalar primero la versión v15.11, abrirla, iniciar sesión y solo entonces podrás instalar la versión v16 y superior. ¿Quieres instalar la versión v15.07.51? ¡Por favor, NO salga de la aplicación durante este proceso! Bienvenido @@ -91,10 +91,10 @@ Claro + %1$s ¡Seleccione al menos un idioma! Negro - Obscuro + Oscuro Desarrolladores del Manager - Other Contributors + Otros colaboradores Fuentes Equipo Vanced @@ -108,12 +108,12 @@ La instalación ha fallado debido a que el usuario bloqueo la instalación. La instalación falló porque el usuario trató de degradar el paquete. Desinstala las actualizaciones de la aplicación original e intenta de nuevo. La instalación ha fallado porque la aplicación entra en conflicto con una aplicación ya instalada. Desinstala la versión actual de la aplicación y vuelve a intentarlo. - La instalación ha fallado por razones desconocidas, únete a nuestro grupo de Telegram o Discord para brindarte soporte. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu La instalación ha fallado porque el archivo de instalación es incompatible con tu dispositivo. Limpia los archivos descargados en la ajustes y vuelve a intentarlo. La instalación falló porque los archivos apk están corruptos, por favor inténtalo de nuevo. La instalación ha fallado porque la verificación de firmas de apk está habilitada. Desactiva la verificación de la firmas de apk, y vuelve a intentarlo. La instalación ha fallado porque la Optimización MIUI está activada. Desactiva la optimización MIUI y vuelva a intentarlo. - La instalación falló debido a un error de almacenamiento. + Installation failed because the device doesn\'t have enough free space. Falla al encontrar en el instalador el archivo apk para el tema negro/oscuro. Limpia los datos del Manager y vuelva a intentarlo. Falla al localizar la ruta de instalación de YouTube después de la instalación split. diff --git a/app/src/main/res/values-et-rEE/strings.xml b/app/src/main/res/values-et-rEE/strings.xml index 5afd8649..13d323d3 100644 --- a/app/src/main/res/values-et-rEE/strings.xml +++ b/app/src/main/res/values-et-rEE/strings.xml @@ -73,7 +73,7 @@ Juhend Peata! Te kasutate Vanced Magisk/TWRP versiooni, mis on katkestatud, ning seda ei saa uuendada kasutades seda äppi. Palun eemaldage Magisk moodul kasutades TWRP Vanced eemaldajat. - MIUI on tuvastatud! + MIUI optimiseerimine on lubatud! Et paigaldada Vanced, PEAB keelama MIUI optimiseerimise arendaja valikute alt. (Võite seda igroneerida kui kasutate 20.2.20 või uuemat xiaomi.eu põhist ROMi) Viga Lae uuesti alla @@ -81,8 +81,8 @@ %1$s Paigalduseelistused Versioon microG viga - Due to a bug in the original microG, installing Vanced v16+ first requires you to install v15.43.32, open it, then login and only then can you install v16 and higher. Do you want to proceed with the installation of v15.43.32? - Due to a bug in the original microG, installing Music v4.11+ first requires you to install v4.07.51, open it, then login and only then can you install v4.11 and higher. Do you want to proceed with the installation of v4.07.51? + Seoses originaal microG veaga, vajab Vanced v16+ paigaldus ennem v15.43.32 versiooni paigaldust, sisselogimist ja alles siis saab paigaldada v16 või uuema. Kas soovite jätkata v15.43.32 paigaldusega? + Seoses originaal microG veaga, vajab Music v4.11+ paigaldus ennem v4.07.51 versiooni paigaldust, sisselogimist ja alles siis saab paigaldada v4.11 või uuema. Kas soovite jätkata v4.07.51 paigaldusega? Palun ärge väljuge rakendusest protsessi ajal! Tere tulemast @@ -94,7 +94,7 @@ Tume Halduri arendajad - Other Contributors + Teised kaastöötajad Allikad Vanced Meeskond @@ -108,12 +108,12 @@ Paigaldamine ebaõnnestus kuna kasutaja peatas selle. Paigaldamine ebaõnnestus kuna kasutaja proovis paketti madalamale versioonile üle viia. Eemaldage värskendused originaalrakendusest ja proovige uuesti. Paigaldamine ebaõnnestus, kuna tekkis konflikt olemasoleva versiooniga. Eemaldage praegune rakenduse versioon, ning proovige uuesti. - Paigaldamine ebaõnnestus teadmata põhjustel, liituge meie Telegrami või Discordiga, et saada edaspidist tuge. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Paigaldamine ebaõnnestus, kuna paigaldusfail ei sobitu teie seadmega. Puhastage allalaaditud failid seadete alt, ning proovige uuesti. Paigaldamine ebaõnnestus kuna apk failid on vigased, palun proovige uuesti. Paigaldamine ebaõnnestus kuna apk-allkirja kontrollimine on lubatud. Keelake apk allkirja kinnitamine ja proovige uuesti. Paigaldamine ebaõnnestus, kuna MIUI optimiseerimine on lubatud. Keelake MIUI optimiseerimine ja proovige uuesti. - Paigaldamine ebaõnnestus salvestusvea tõttu. + Installation failed because the device doesn\'t have enough free space. Apk faili musta/tumeda teema jaoks leidmine paigaldajast ebaõnnestus. Puhastage halduri rakenduse andmed ja proovige uuesti. Pärast jagatud paigaldamist ei õnnestunud leida originaal YouTube\'i paigaldus asukohta. diff --git a/app/src/main/res/values-fi-rFI/strings.xml b/app/src/main/res/values-fi-rFI/strings.xml index b808eddd..9a9f77aa 100644 --- a/app/src/main/res/values-fi-rFI/strings.xml +++ b/app/src/main/res/values-fi-rFI/strings.xml @@ -73,16 +73,16 @@ Opas Pysähdy! Käytät Magisk / TWRP versio Vanced, joka on lopetettu ja ei voi päivittää käyttämällä tätä sovellusta. Poista se poistamalla Magisk moduuli / käyttämällä TWRP Vanced asennuksen. - MIUI tunnistettu! - Jos haluat asentaa Vanced, sinun täytyy poistaa MIUI-optimoinnit käytöstä kehittäjän asetuksista. (Voit ohittaa tämän varoituksen, jos käytät 20.2.20 tai myöhemmin xiaomi.eu-pohjaista ROM:ia) + MIUI-optimoinnit ovat käytössä! + Vancedin asentamiseksi, sinun täytyy poistaa MIUI-optimoinnit käytöstä kehittäjän asetuksista. (Voit ohittaa tämän varoituksen, jos käytät 20.2.20 tai uudempaa xiaomi.eu-pohjaista ROM:ia) Virhe Uudelleenlataa Varmista, että latasit sovelluksen osoitteesta vancedapp.com, Vanced Discord-palvelin tai Vanced GitHub %1$s asennusasetukset Versio Virhe microG:ssä - Due to a bug in the original microG, installing Vanced v16+ first requires you to install v15.43.32, open it, then login and only then can you install v16 and higher. Do you want to proceed with the installation of v15.43.32? - Due to a bug in the original microG, installing Music v4.11+ first requires you to install v4.07.51, open it, then login and only then can you install v4.11 and higher. Do you want to proceed with the installation of v4.07.51? + Alkuperäisessä microG:ssä olevan bugin takia sinun tulee asentaa Vancedin versio 15.43.32, avata se ja kirjautua sisään, ennen kuin voin asentaa version 16 tai uudemman. Haluatko jatkaa version 15.43.32 asentamista? + Alkuperäisessä microG:ssä olevan bugin takia sinun tulee asentaa Musicin versio 4.07.51, avata se ja kirjautua sisään, ennen kuin voin asentaa version 4.11 tai uudemman. Haluatko jatkaa version 4.07.51 asentamista? ÄLÄ poistu sovelluksesta tämän prosessin aikana! Tervetuloa @@ -94,7 +94,7 @@ Tumma Managerin kehittäjät - Other Contributors + Muut avustajat Lähdekoodi Vanced kehitystiimi @@ -106,14 +106,14 @@ APK-tiedostoa mustalle/tummalle teemalle ei voitu paikantaa tallennustilasta, yritä uudelleen. Asennus epäonnistui, koska käyttäjä keskeytti asennuksen. Asennus epäonnistui, koska käyttäjä on estänyt asennuksen. - Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. + Asennus epäonnistui, koska käyttäjä yritti asentaa paketin vanhempaa versiota. Poista YouTube-sovelluksen päivitykset ja yritä sitten uudelleen. Asennus epäonnistui, koska sovellus on ristiriidassa jo asennetun sovelluksen kanssa. Poista sovelluksen nykyinen versio ja yritä uudelleen. - Asennus epäonnistui tuntemattomista syistä, liity Telegramiin tai Discordiin saadaksesi lisätukea. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Asennus epäonnistui, koska asennustiedosto ei ole yhteensopiva laitteesi kanssa. Tyhjennä ladatut tiedostot asetuksista ja yritä uudelleen. Asennus epäonnistui, koska APK-tiedostot ovat vioittuneet, yritä uudelleen. Asennus epäonnistui, koska APK-allekirjoituksen vahvistus on käytössä. Poista APK-allekirjoituksen vahvistus käytöstä, ja yritä uudelleen. Asennus epäonnistui, koska MIUI-optimointi on käytössä. Poista MIUI-optimointi käytöstä ja yritä uudelleen. - Asennus epäonnistui tallennustilan virheen vuoksi. + Installation failed because the device doesn\'t have enough free space. APK-tiedostoa mustalle/tummalle teemalle ei löytynyt asentajalta. Tyhjennä Managerin sovellustiedot ja yritä uudelleen. Youtube-sovelluksen asennuspolkua ei voitu paikantaa jaetun asennuksen jälkeen. diff --git a/app/src/main/res/values-fil-rPH/strings.xml b/app/src/main/res/values-fil-rPH/strings.xml index 2dfdf946..01cd3ba2 100644 --- a/app/src/main/res/values-fil-rPH/strings.xml +++ b/app/src/main/res/values-fil-rPH/strings.xml @@ -73,8 +73,8 @@ Gabay Itigil! Gumagamit ka ng Magisk/TWRP na bersyon ng Vanced, dahil hindi iyon pinatuloy at hindi mai-uupdate gamit nitong app. Tanggalin po ang Magisk module sa pamamagitan ng TWRP Vanced uninstaller. - Meron itong MIUI! - Para ma-install ang Vanced, DAPAT mong patayin ang MIUI Optimisations sa developer settings. (Puwede mong pabayaan ang babala kung ikaw ay gumagamit ng 20.2.20 or mas bago na xiaomi.eu base na ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) May pagkamali I-download ulit Siguraduhin mo na nai-download mo ang app galing sa vancedapp.com, o sa Discord server ng Vanced, o sa Github ng Vanced @@ -108,12 +108,12 @@ Nabigo ang pag-install dahil binlock ito. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. Nabigo ang pag-install dahil meron hidwaan sa naka-install na app. I-uninstall ang kasalukuyang bersyon ng Vanced, at ulitin muli. - Nabigo ang pag-install dahil sa hindi tukoy na dahilan, makiisa sa aming Telegram o Discord para sa karagdagang suporta. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Nabigo ang pag-install dahil ang installation file ay hindi tugma sa iyong device. Tanggalin ang mga downloaded files sa Settings, at ulitin muli. Nabigo ang pag-install dahil ang mga apk files ay nasira, ulitin muli. Nabigo ang pag-install dahil ang apk signature verification ay naka-on. Patayin ang apk signature verification, at ulitin muli. Nabigo ang pag-install dahil ang MIUI Optimization ay naka-on. Patayin ang MIUI Optimization, at ulitin muli. - Hindi natuloy ang pag-install dahil sa storage error. + Installation failed because the device doesn\'t have enough free space. Nabigong hanapin ang apk file para sa itim na tema galing sa installer. Tanggalin ang app data ng Manager, tapos ulitin. Nabigong hanapin ang stock YouTube installation path pagkatapos ng split installation. diff --git a/app/src/main/res/values-fr-rFR/strings.xml b/app/src/main/res/values-fr-rFR/strings.xml index cf5997d7..8640eed4 100644 --- a/app/src/main/res/values-fr-rFR/strings.xml +++ b/app/src/main/res/values-fr-rFR/strings.xml @@ -73,8 +73,8 @@ Guide Stop! Vous utilisez la version Magisk/TWRP de Vanced, qui n\'est plus entretenu et ne peut pas être mise à jour à l\'aide de cette application. Veuillez la retirer en supprimant le module Magisk/en utilisant le désinstallateur TWRP pour Vanced. - MIUI détecté! - Afin d\'installer Vanced, vous DEVEZ désactiver les optimisations MIUI dans les paramètres développeur. (Vous pouvez ignorer cet avertissement si vous utilisez une ROM basée sur 20.2.20 ou ultérieure de xiaomi.eu) + Les optimisations MIUI sont activées ! + Afin d\'installer Vanced, vous DEVEZ désactiver les optimisations MIUI dans les paramètres développeur (vous pouvez ignorer cet avertissement si vous utilisez une ROM basée sur 20.2.20 ou ultérieure de xiaomi.eu). Erreur Re-télécharger Assurez-vous d\'avoir téléchargé l\'application depuis vancedapp.com, le serveur Discord Vanced ou sur le Github Vanced @@ -108,12 +108,12 @@ L\'installation a échoué, car l\'utilisateur a bloqué l\'installation. L\'installation a échoué parce que l\'utilisateur a essayé de downgrader le paquet. Désinstallez les mises à jour de l\'application d\'origine, puis réessayez. L\'installation a échoué parce que l\'application est en conflit avec une application déjà installée. Désinstallez la version actuelle de Vanced, puis réessayez. - L\'installation a échouée pour une raison inconnue, rejoignez notre Telegram ou Discord pour obtenir de l\'aide. + L\'installation a échoué pour des raisons inconnues, rejoignez notre Telegram ou Discord pour plus de support. Veuillez également joindre une capture d\'écran dans le menu Avancé L\'installation a échoué parce que le fichier d\'installation est incompatible avec votre appareil. Effacer les fichiers téléchargés dans les paramètres, puis réessayer. L\'installation a échouée car les fichiers apk sont corrompus, veuillez réessayer. L\'installation a échoué car la vérification de la signature apk est activée. Désactivez la vérification de la signature apk, puis réessayez. L\'installation a échouée car l\'optimisation MIUI est activée. Désactivez l\'optimisation MIUI, puis réessayez. - L\'opération à échouée, une erreur de stockage s\'est produite. + L\'installation a échoué parce que le périphérique n\'a pas assez d\'espace disponible. Impossible de trouver le fichier apk pour le thème noir/foncé de l\'installateur. Effacez les données de l\'application de Manager, puis réessayez. Impossible de localiser le chemin d\'installation du YouTube original après l\'installation fractionnée. diff --git a/app/src/main/res/values-hi-rIN/strings.xml b/app/src/main/res/values-hi-rIN/strings.xml index 1de4b45f..b5b706ba 100644 --- a/app/src/main/res/values-hi-rIN/strings.xml +++ b/app/src/main/res/values-hi-rIN/strings.xml @@ -8,7 +8,7 @@ अपने ऐप्स चुनें हमारे बारे में - Guide + निदेशिका Logs मैनेजर सेटिंग्स @@ -73,8 +73,8 @@ गाइड रुकें! आप Vanced के Magisk / TWRP संस्करण का उपयोग कर रहे हैं, जिसे बंद कर दिया गया है और इस ऐप का उपयोग करके अपडेट नहीं किया जा सकता है। कृपया इस Magisk मॉड्यूल को हटाकर / TWRP Vanced uninstaller का उपयोग करके हटा दें। - पता लगाया MiUI उपयोगकर्ता! - Vanced इनस्टॉल करने के लिए, आप डेवलपर सेटिंग में MIUI ऑप्टिमाइज़ेशन को निष्क्रिय करें। (यदि आप 20.2.20 या बाद में xiaomi.eu आधारित ROM का उपयोग कर रहे हैं तो आप इस चेतावनी को अनदेखा कर सकते हैं) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) त्रुटि फिर से डाउनलोड करें सुनिश्चित करें कि आपने vancedapp.com, Vanced Discord सर्वर, या Vanced GitHub से ऐप डाउनलोड किया है @@ -108,12 +108,12 @@ स्थापना विफल रही क्योंकि उपयोगकर्ता ने स्थापना को ब्लॉक कर दिया। Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. इंस्टॉलेशन विफल रहा क्योंकि ऐप पहले से इंस्टॉल किए गए ऐप के साथ टकराव करता है। एप्लिकेशन के वर्तमान संस्करण को अनइंस्टॉल करें, फिर प्रयास करें। - अज्ञात कारणों से स्थापना विफल हो गई, आगे के समर्थन के लिए हमारे टेलीग्राम या डिसॉर्ड में शामिल हों। + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu इंस्टॉलेशन विफल हो गया क्योंकि इंस्टॉलेशन फ़ाइल आपके डिवाइस के साथ असंगत है। सेटिंग्स में डाउनलोड की गई फ़ाइलों को साफ़ करें, फिर प्रयास करें। स्थापना विफल रही क्योंकि एपीके फ़ाइलें दूषित हैं, कृपया पुनः प्रयास करें। स्थापना विफल रही क्योंकि एपीके हस्ताक्षर सत्यापन सक्षम है। एपीके हस्ताक्षर सत्यापन अक्षम करें, फिर प्रयास करें। MIUI ऑप्टिमाइज़ेशन सक्षम होने के कारण स्थापना विफल रही। MIUI ऑप्टिमाइज़ेशन अक्षम करें, फिर प्रयास करें। - संग्रहण त्रुटि के कारण स्थापना विफल रही। + Installation failed because the device doesn\'t have enough free space. इंस्टॉलर से ब्लैक / डार्क थीम के लिए एपीके फ़ाइल खोजने में विफल। प्रबंधक का एप्लिकेशन डेटा साफ़ करें, फिर प्रयास करें। विभाजन स्थापना के बाद स्टॉक YouTube इंस्टॉलेशन पथ का पता लगाने में विफल diff --git a/app/src/main/res/values-hr-rHR/strings.xml b/app/src/main/res/values-hr-rHR/strings.xml index 86168167..1ad7058f 100644 --- a/app/src/main/res/values-hr-rHR/strings.xml +++ b/app/src/main/res/values-hr-rHR/strings.xml @@ -60,8 +60,8 @@ Nema novih ažuriranja Izdanje - Uspješno spremljeni dnevnici - Nije moguće spremiti zapise + Uspješno spremljeni zapisi + Nemoguće spremanje zapisa Napredno %1$s instalacijska datoteka je otkrivena! @@ -73,17 +73,17 @@ Vodič Zaustavi! Koristite Magisk/TWRP inačicu Vanceda, koja više nije podržana i ne može se ažurirati ovom aplikacijom. Uklonite ju uklanjanjem Magisk modula/koristeći TWRP Vanced deinstalator. - MIUI je otkriven! - Kako bi instalirali Vanced, MORATE isključiti MIUI optimizaciju u razvijateljskim postavkama. (Možete zanemariti ovo upozorenje ako koristite 20.2.20 ili noviji xiaomi.eu temeljeni ROM) + MIUI optimizacija je omogućena! + Kako bi instalirali Vanced, MORATE onemogućiti MIUI optimizaciju u razvojnim mogućnostima. (Ovo upozorenje možete zanemariti ako koristite 20.2.20 ili noviji xiaomi.eu ROM) Greška Ponovno preuzmi Aplikaciju obavezno preuzmite s vancedapp.com, Vanced Discord poslužitelja ili Vanced GitHuba %1$s postavke instalacije Inačica - Pogreška u microG aplikaciji - Zbog pogreške u microG, instaliranje Vanced 16+ prvo zahtijeva da instalirate v15.43.32, otvorite, a zatim se prijavite i tek onda možete instalirati v16 i novije verzije. Želite li nastaviti s instalacijom v15.43.32? - Zbog pogreške u microG, za instalaciju Music 4.11+ prvo je potrebno instalirati v4.07.51, otvoriti, a zatim se prijaviti i tek tada možete instalirati v16 i novije verzije. Želite li nastaviti s instalacijom v4.07.51? - Molimo NE izlazite iz aplikacije tijekom ovog postupka! + Greška u microG aplikaciji + Zbog greške u microG, instaliranje Vanced 16+ prvo zahtijeva instalaciju v15.43.32, otvorite, a zatim se prijavite i tek onda možete instalirati v16 i novije inačice. Želite li nastaviti s instalacijom v15.43.32? + Zbog greške u microG, za instalaciju Music 4.11+ prvo je potrebno instalirati v4.07.51, otvoriti, a zatim se prijaviti i tek tada možete instalirati v16 i novije inačice. Želite li nastaviti s instalacijom v4.07.51? + NE zatvarajte aplikaciju tijekom ovog postupka! Dobrodošli Odaberite željeni jezika za Vanced @@ -108,12 +108,12 @@ Instalacija nije uspjela jer je korisnik blokirao instalaciju. Instalacija nije uspjela jer je korisnik pokušao instalirati stariju inačicu paketa. Deinstalirajte ažuriranja izvorne YouTube aplikacije, zatim pokušajte ponovno. Instalacija nije uspjela jer je aplikacija u sukobu s već instaliranom aplikacijom. Deinstalirajte trenutnu inačicu aplikacije zatim pokušajte ponovno. - Instalacija nije uspjela iz nepoznatih razloga, pridružite nam se na Telegramu ili Discordu za daljnju podršku. + Neuspjela instalacija, nepoznati razlog. Priključite se našem Telegramu ili Diskordu za našu pomoć. Molimo Vas da priključite sliku ekrana iz Proširenog Menua Instalacija nije uspjela zato jer datoteka instalacije nije kompatibilna s vašim uređajem. Uklonite preuzete datoteke u postavkama, zatim pokušajte ponovno. Instalacija nije uspjela zato jer je apk datoteka oštećena. Instalacija nije uspjela zato jer je provjera potpisa omogućena. Onemogućite apk provjeru potpisa, zatim pokušajte ponovno. Instalacija nije uspjela zato jer je MIUI optimizacija uključena. Isključite MIUI optimizaciju, zatim pokušajte ponovno. - Instalacija nije uspjela uslijed greške pohrane. + Neuspiješna instalacija jer uređaj nema dovoljno slobodnog prostora. Neuspjeli pronalazak apk datoteke za crnu/tamnu temu u programu instalacije. Uklonite podatke aplikacije upravitelja, zatim pokušajte ponovno. Neuspjelo lociranje putanje izvorne YouTube instalacije nakon razdvojene instalacije. diff --git a/app/src/main/res/values-hu-rHU/strings.xml b/app/src/main/res/values-hu-rHU/strings.xml index 912c28e7..568e679a 100644 --- a/app/src/main/res/values-hu-rHU/strings.xml +++ b/app/src/main/res/values-hu-rHU/strings.xml @@ -74,8 +74,8 @@ Akarod telepíteni? Útmutató Állj! A Vanced Magisk/TWRP verzióját használod, ami már nem támogatott és nem frissíthető ezzel az alkalmazással. Távolítsd el a Magisk modul eltávolításával vagy TWRP Vanced eltávolítóval. - MIUI észlelve! - Hogy a Vanced-et telepítsd, ki KELL kapcsolnod a MIUI Optimalizációt a fejlesztői beállításokban. (Ezt figyelmen kívül hagyhatod ha 20.2.20 vagy későbbi xiaomi.eu alapú ROM-ot használsz) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Hiba Újra letölt Arra kérünk, győződj meg róla, hogy ezt az alkalmazást a vancedapp.com oldalról, a Vanced Discord szerveréről vagy a Vanced GitHub-ról töltötted le @@ -109,13 +109,13 @@ Akarod telepíteni? A telepítés nem sikerült, mert a felhasználó megszakította azt. A telepítés nem sikerült, mert a felhasználó, régebbi verzióra próbált frissíteni. Távolítsa el az eredeti alkalmazás frissítéseit, majd próbálja újra. A telepítés nem sikerült, mert az alkalmazás egy másik, már telepített alkalmazással ütközik. Távolítsd el a jelenlegi verziót és próbáld újra. - A telepítés ismeretlen okok miatt nem sikerült, támogatásért csatlakozz a Telegram vagy a Discord csoportunkhoz. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu A telepítés nem sikerült, mert a telepítő fájl nem kompatibilis az eszközöddel. Töröld ki a letöltött fájlokat a beállításokban és próbáld újra. A telepítés nem sikerült, mert az apk fájlok korruptak, próbáld újra. A telepítés nem sikerült, mert az apk aláírás ellenőrzés engedélyezve van. Kapcsold ki az apk aláírás ellenőrzését és próbáld újra. A telepítés nem sikerült, mert a MIUI Optimalizáció engedélyezve van. Kapcsold ki a MIUI Optimalizációt és próbáld újra. - Tárhely hiba miatt a telepítés nem sikerült. + Installation failed because the device doesn\'t have enough free space. Nem sikerült megtalálni az apk file-t a fekete/sötét kinézethez a telepítőből. Törölje a Manager alkalmazás adatait, majd próbálja újra. Nem sikerült megtalálni az alap YouTube telepítési útvonalat a(z) split telepítés után. diff --git a/app/src/main/res/values-in-rID/strings.xml b/app/src/main/res/values-in-rID/strings.xml index 7b34f0ce..2234d876 100644 --- a/app/src/main/res/values-in-rID/strings.xml +++ b/app/src/main/res/values-in-rID/strings.xml @@ -43,7 +43,7 @@ Hapus file yang diunduh Berhasil menghapus file Analisis Firebase - Ini mengizinkan kami mengumpulkan informasi tentang performa aplikasi dan catatan crash + Analisis firebase mengizinkan kami mengumpulkan informasi tentang performa aplikasi dan catatan crash Bahasa Gunakan Chrome Custom Tabs Tautan akan terbuka di Chrome Custom Tabs @@ -73,8 +73,8 @@ Petunjuk Berhenti! Anda memakai Vanced versi Magisk/TWRP, yang pengembangannya dihentikan dan tidak bisa diperbarui menggunakan aplikasi ini. Mohon untuk menghapusnya dengan menghapus modul Magisk/gunakan pencopot Vanced TWRP. - MIUI terdeteksi! - Untuk memasang Vanced, anda HARUS menonaktifkan Optimisasi MIUI di pengaturan pengembang. (Anda bisa mengabaikan peringatan ini jika anda menggunakan ROM versi 20.2.20 atau lebih yang didasarkan xiaomi.eu) + Optimisasi MIUI diaktifkan! + Untuk memasang Vanced, anda HARUS menonaktifkan Optimisasi MIUI pada pengaturan developer. (Anda dapat mengabaikan peringatan ini apabila anda menggunakan ROM versi 20.2.20 atau lebih yang berbasis xiaomi.eu) Terjadi kesalahan Unduh ulang Pastikan anda mengunduh aplikasi ini dari vancedapp.com, server Discord Vanced, atau Vanced Github @@ -100,7 +100,7 @@ Gagal untuk `chown` APK ke pemilik sistem, mohon coba lagi. Gagal Mengunduh %1$s - Gagal mencopot pemasangan paket %1$s + Gagal untuk mencopot pemasangan paket %1$s Gagal untuk menerapkan warna aksen baru Gagal untuk menemukan file yang diperlukan untuk instalasi. Unduh ulang file instalasi, lalu coba lagi. Gagal untuk menemukan file apk untuk tema hitam/gelap dari penyimpanan, mohon coba lagi. @@ -108,12 +108,12 @@ Pemasangan gagal dikarenakan pengguna memblokir pemasangan. Pemasangan gagal dikarenakan pengguna mencoba menurunkan versi paket. Hapus pembaruan dari aplikasi bawaan, lalu coba lagi. Pemasangan gagal dikarenakan aplikasi konflik dengan aplikasi yang sudah terpasang. Copot pemasangan aplikasi versi saat ini, lalu coba lagi. - Pemasangan gagal untuk alasan yang tidak diketahui, gabung Telegram atau Discord kami untuk bantuan lebih lanjut. + Pemasangan gagal untuk alasan yang tidak diketahui, gabung Telegram atau Discord kami untuk bantuan lebih lanjut. Mohon untuk melampirkan screenshot dari menu Tingkat Lanjut Pemasangan gagal dikarenakan file pemasangan tidak kompatibel dengan perangkat anda. Hapus file yang diunduh di pengaturan, lalu coba lagi. Pemasangan gagal dikarenakan file apk rusak, mohon coba lagi. Pemasangan gagal dikarenakan apk signature verification diaktifkan. Nonaktifkan apk signature verification, lalu coba lagi. Pemasangan gagal dikarenakan Optimisasi MIUI diaktifkan. Nonaktifkan Optimisasi MIUI, lalu coba lagi. - Pemasangan gagal dikarenakan kesalahan pada penyimpanan. + Pemasangan gagal dikarenakan perangkat tidak memiliki ruang penyimpanan yang cukup. Gagal untuk menemukan file apk untuk tema hitam/gelap dari penginstal. Hapus data aplikasi Manager, lalu coba lagi. Gagal untuk menemukan path instalasi YouTube setelah pemasangan split. diff --git a/app/src/main/res/values-it-rIT/strings.xml b/app/src/main/res/values-it-rIT/strings.xml index 5e5be004..930223bb 100644 --- a/app/src/main/res/values-it-rIT/strings.xml +++ b/app/src/main/res/values-it-rIT/strings.xml @@ -73,16 +73,16 @@ Guida Aspetta! Stai utilizzando la versione Magisk/TWRP di Vanced, ormai obsoleta e non più aggiornabile tramite questa app. Per favore, rimuovila eliminando il modulo Magisk oppure utilizzando TWRP Vanced uninstaller. - Rilevata l\'interfaccia MIUI! - Per poter installare Vanced, DEVI disattivare le ottimizzazioni MIUI nelle Opzioni Sviluppatore (puoi ignorare questo avviso se stai utilizzando la versione 20.2.20 o successive di una ROM basata su xiaomi.eu) + Le ottimizzazioni MIUI sono abilitate! + Per installare Vanced, DEVI disabilitare le ottimizzazioni MIUI nelle opzioni sviluppatore. (Puoi ignorare questo avviso se stai usando la ROM 20.2.20 o successiva basata su xiaomi.eu) Errore Scarica nuovamente Assicurati di aver scaricato l\'app da vancedapp.com, dal server Discord di Vanced o dalla pagina GitHub di Vanced Preferenze Installazione di %1$s Versione Bug in microG - Due to a bug in the original microG, installing Vanced v16+ first requires you to install v15.43.32, open it, then login and only then can you install v16 and higher. Do you want to proceed with the installation of v15.43.32? - Due to a bug in the original microG, installing Music v4.11+ first requires you to install v4.07.51, open it, then login and only then can you install v4.11 and higher. Do you want to proceed with the installation of v4.07.51? + A causa di un bug nel microG originale, l\'installazione di Vanced v16+ richiede prima l\'installazione della v15.43.32, avviarla, quindi effettuare il login e solo allora è possibile installare la v16 e versioni successive. Vuoi procedere con l\'installazione della v15.43.32? + A causa di un bug nel microG originale, l\'installazione di Music v4.11+ richiede prima l\'installazione della v4.07.51, avviarla, quindi effettuare il login e solo allora è possibile installare la v4.11 e successive. Vuoi procedere con l\'installazione della v4.07.51? Si prega di NON uscire dall\'app durante questo processo! Benvenuto @@ -108,12 +108,12 @@ Installazione non riuscita. L\'utente ha bloccato l\'installazione. Installazione fallita. È stato effettuato un tentativo di downgrade del pacchetto. Disinstalla gli aggiornamenti dall\'app stock, quindi riprova. Installazione fallita perché l\'applicazione è in conflitto con un\'app già installata. Disinstallare la versione corrente dell\'applicazione, quindi riprovare. - Installazione non riuscita a causa di un errore sconosciuto, unisciti al nostro gruppo Telegram o al server di Discord per ricevere ulteriore assistenza. + Installazione non riuscita per motivi sconosciuti, unisciti al nostro Telegram o Discord per ulteriore supporto. Allega anche uno screenshot dal menu Avanzate Installazione non riuscita, il file di installazione non è compatibile con il tuo dispositivo. Elimina i file scaricati nelle impostazioni, poi riprova. Installazione non riuscita a causa di file apk corrotti, si prega di riprovare. Installazione non riuscita, la verifica della firma apk è attivata. Disattiva la verifica della firma apk, poi riprova. Installazione non riuscita, le ottimizzazioni di MIUI sono attivate. Disattiva le ottimizzazioni di MIUI, poi riprova. - Installazione non riuscita, errore dello spazio di archiviazione. + Installazione non riuscita perché il dispositivo non dispone di sufficiente spazio libero. Impossibile trovare il file apk per il tema nero/scuro dall\'installer. Cancella i dati dell\'app Manager, quindi riprova. Impossibile individuare il percorso di installazione di YouTube stock dopo l\'installazione divisa. diff --git a/app/src/main/res/values-iw-rIL/strings.xml b/app/src/main/res/values-iw-rIL/strings.xml index 3cb8ce80..c342d0a9 100644 --- a/app/src/main/res/values-iw-rIL/strings.xml +++ b/app/src/main/res/values-iw-rIL/strings.xml @@ -73,8 +73,8 @@ מדריך עצור! נדמה שאתה משתמש בגרסת ה־Magisk/TWRP של Vanced, שהתמיכה בה הופסקה והיא לא יכולה להתעדכן להתעדכן בעזרת האפליקציה הזו. אנא מחק אותה על ידי מחיקת ה־Module ב־Magisk או בשימוש במסיר ההתקנה של TWRP Vanced. - MIUI זוהה! - על מנת להתקין את Vanced, עליך להשבית אופטימיזציות של MIUI בהגדרות מפתח. (אתה יכול להתעלם מאזהרה זו אם אתה משתמש בגרסה 20.2.2. של שיאומי או יותר) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) שגיאה הורד מחדש ודא שהורדת את האפליקציה מהאתר vancedapp.com, שרת הדיסקורד של Vanced או מהעמוד של Vanced ב־GitHub @@ -108,12 +108,12 @@ ההתקנה נכשלה כיוון שהמשתמש חסם אותה. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. ההתקנה נכשלה כיוון שהאפליקציה מתנגשת עם גרסה מותקנת שלה, מחק את הגרסה הנוכחית של Vanced ולאחר מכן נסה שוב. - הפעולה נכשלה בגלל סיבה אינה ידועה, בבקשה הצטרפו לטלגרם או דיסקורד שלנו בשביל עזרה. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu ההתקנה נכשלה מכיוון שההתקנה או הקובץ לא תואמים עם מכשירך. נקה הורדות שהושלמו מתוך ההגדרות, ואז נסה שוב. ההתקנה נכשלה מכיוון שקבצי הישום הרוסים, בבקשה נסה שוב. ההתקנה נכשלה מכיוון שאימות החתימה בישום פעילה. השבת את אימות החתימה בישום, ואז נסה שוב. ההתקנה נכשלה מכיוון שאופטימיזצית MIUI פעילה. השבת את אופטימיזצית MIUI, ואז נסה שוב. - ההתקנה נכשלה בגלל בעית אחסון. + Installation failed because the device doesn\'t have enough free space. נכשל במציאת קובץ APK של ערכת נושא שחורה/כהה. נקה את נתוני האפליקציה Vanced Manager, ולאחר מכן נסה שוב. נכשל איתור נתיב ההתקנה של YouTube הרגיל לאחר התקנה מפוצלת. diff --git a/app/src/main/res/values-ja-rJP/strings.xml b/app/src/main/res/values-ja-rJP/strings.xml index 1a1adf80..a3fa280e 100644 --- a/app/src/main/res/values-ja-rJP/strings.xml +++ b/app/src/main/res/values-ja-rJP/strings.xml @@ -48,7 +48,7 @@ Chrome カスタムタブを使用 Chrome カスタムタブでリンクを開く システム設定 - Failed to save new time value + 新しいタイマーの値の保存に失敗しました Root Script Sleep Time Adjust sleep time value used in /data/adb/service.d/app.sh script, useful for fixing mounting issues テーマ @@ -73,8 +73,8 @@ ガイド ストップ! Vanced の Magisk/TWRP バージョンを使用しているようです。このバージョンは廃止されており、このアプリでは更新できません。 まず Magisk モジュールを削除するか、TWRP で Vanced uninstaller を使用してください。 - MIUI を検知しました! - Vanced をインストールするには、開発者設定で MIUI の最適化を無効化しなければなりません。 (20.2.20 以降の xiaomi.eu ベースの ROM の場合はこの警告は無視してください) + MIUI 最適化が有効です! + Vanced をインストールするには、開発者設定から MIUI 最適化を無効にしなければなりません。 (20.2.20 以降の xiaomi.eu ベースの ROM の場合はこの警告は無視してください) エラー 再ダウンロード Vancedapp.com、Vanced の Discord サーバーまたは GitHub からアプリをダウンロードしたことを確認してください @@ -94,7 +94,7 @@ ダーク Manager 開発 - Other Contributors + 他の貢献者 ソースコード Vanced チーム @@ -108,12 +108,12 @@ ユーザーがインストールをブロックしたためインストールに失敗しました。 アプリをダウングレードしようとしたため、インストールに失敗しました。インストールされたアプリをアンインストールしてから、再度お試しください。 既にインストールされたアプリと競合したため、インストールに失敗しました。インストールされたアプリをアンインストールしてから、もう一度やり直してください。 - 何らかの理由によりインストールに失敗しました、サポートのために Telegram または Discord に参加してください。 + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu インストールするファイルがお使いのデバイスと互換性がないためインストールに失敗しました。設定でダウンロードしたファイルを削除してから、もう一度やり直してください。 APK ファイルが破損しているためインストールに失敗しました、もう一度やり直してください。 APK の署名検証が有効化されているためインストールに失敗しました。APK の署名検証を無効化してから、もう一度やり直してください。 MIUI の最適化が有効になっているためインストールに失敗しました。MIUI の最適化を無効化してから、もう一度やり直してください。 - ストレージのエラーによりインストールに失敗しました。 + Installation failed because the device doesn\'t have enough free space. インストーラーからブラック/ダークテーマの APK ファイルが見つかりませんでした。Manager のアプリデータを消去してから、もう一度お試しください。 分割インストール後にストックの YouTube アプリのインストールパスが見つかりませんでした。 diff --git a/app/src/main/res/values-ka-rGE/strings.xml b/app/src/main/res/values-ka-rGE/strings.xml index 9ac5b98b..ab29f5d0 100644 --- a/app/src/main/res/values-ka-rGE/strings.xml +++ b/app/src/main/res/values-ka-rGE/strings.xml @@ -73,8 +73,8 @@ ინსტრუქცია შეჩერდი! თქვენ იყენებთ Vanced-ის Magisk/TWRP ვერსიას, მაგრამ მისი მენეჯერიდან განახლება შეუძლებელია. გთხოვთ წაშალოთ იგი Magisk-იდან/TWRP-ს დეინსტალერიდან. - აღმოჩენილია MIUI-ის მომხმარებელი! - Vanced-ის დასაინსტალირებლად, საჭიროა გამორთოთ MIUI-ს ოპტიმიზაციები დეველოპერის პარამეტრებიდან. (შეგიძლიათ გამოტოვოთ ეს შენიშვნა თუ თქვენი სისტემა დაფუძნებულია xiaomi.eu-ს ვერსია 20.2.20-ზე ან უფრო ახალზე) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) შეცდომა თავიდან გადმოწერა დარწმუნდით, რომ აპი გადმოწერეთ vancedapp.com-იდან, Vanced Discord სერვერიდან ან GitHub-იდან @@ -108,12 +108,12 @@ Installation failed because the user blocked the installation. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. Installation failed because the app conflicts with an already installed app. Uninstall the current version of the app, then try again. - Installation failed for unknown reasons, join our Telegram or Discord for further support. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Installation failed because the installation file is incompatible with your device. Clear downloaded files in the Settings, then try again. Installation failed because the apk files are corrupted, please try again. Installation failed because apk signature verification is enabled. Disable apk signature verification, then try again. Installation failed because MIUI Optimization is enabled. Disable MIUI Optimization, then try again. - Installation failed due to a storage error. + Installation failed because the device doesn\'t have enough free space. Failed to find apk file for black/dark theme from the installer. Clear app data of Manager, then try again. Failed to locate the stock YouTube installation path after split installation. diff --git a/app/src/main/res/values-kmr-rTR/strings.xml b/app/src/main/res/values-kmr-rTR/strings.xml index ec8a0200..f735cfbf 100644 --- a/app/src/main/res/values-kmr-rTR/strings.xml +++ b/app/src/main/res/values-kmr-rTR/strings.xml @@ -73,8 +73,8 @@ Guide Stop! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI detected! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Error Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub @@ -108,12 +108,12 @@ Installation failed because the user blocked the installation. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. Installation failed because the app conflicts with an already installed app. Uninstall the current version of the app, then try again. - Installation failed for unknown reasons, join our Telegram or Discord for further support. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Installation failed because the installation file is incompatible with your device. Clear downloaded files in the Settings, then try again. Installation failed because the apk files are corrupted, please try again. Installation failed because apk signature verification is enabled. Disable apk signature verification, then try again. Installation failed because MIUI Optimization is enabled. Disable MIUI Optimization, then try again. - Installation failed due to a storage error. + Installation failed because the device doesn\'t have enough free space. Failed to find apk file for black/dark theme from the installer. Clear app data of Manager, then try again. Failed to locate the stock YouTube installation path after split installation. diff --git a/app/src/main/res/values-ko-rKR/strings.xml b/app/src/main/res/values-ko-rKR/strings.xml index a6001206..49f54f9e 100644 --- a/app/src/main/res/values-ko-rKR/strings.xml +++ b/app/src/main/res/values-ko-rKR/strings.xml @@ -73,7 +73,7 @@ 가이드 잠깐만요! 현재 설치되어 있는 Vanced의 Magisk/TWRP 버전은 더 이상 지원되지 않으며 이 앱으로 업데이트할 수 없습니다. 먼저 삭제 프로그램을 이용하여 Vanced의 TWRP/Magisk 모듈을 제거하여 주시기 바랍니다. - MIUI 사용자로 보입니다! + MIUI 최적화 기능이 켜져 있습니다! Vanced를 올바르게 설치하려면, 개발자 설정으로 들어가서 MIUI 최적화 기능을 반드시 끄셔야 합니다. (단, 버전이 20.2.20 이상인 xiaomi.eu 기반 ROM을 사용하는 경우 이 경고를 무시하셔도 좋습니다) 오류 다시 다운로드 @@ -108,12 +108,12 @@ 사용자가 설치를 차단했기 때문에 앱을 설치하지 못했습니다. 사용자가 패키지를 이전 버전으로 변경하려고 하여 앱을 설치하지 못했습니다. 기본 앱을 초기 버전으로 변경한 다음, 설치를 다시 진행해주세요. 앱이 이미 설치된 앱과 충돌하여 설치하지 못했습니다. 현재 버전의 앱을 제거한 다음 다시 시도하십시오. - 알 수 없는 이유가 발생하여 앱을 설치하지 못했습니다. 저희 텔레그램 또는 디스코드에 문제를 제보해주시면 도와드리겠습니다. + 알 수 없는 이유가 발생하여 앱을 설치하지 못했습니다. 저희 텔레그램 또는 디스코드에 문제를 제보해주시면 도와드리겠습니다. \'고급\' 메뉴의 스크린샷도 첨부하여 주십시오. 설치 파일이 기기와 호환되지 않아 앱을 설치하지 못했습니다. Manager 설정에서 다운로드된 파일을 모두 삭제한 다음, 설치를 다시 진행해주세요. APK 파일이 손상되어 앱을 설치하지 못했습니다. 설치를 다시 진행해주세요. APK 서명 검증 기능이 활성화되어 있어 앱을 설치하지 못했습니다. 먼저 APK 서명 검증 기능을 비활성화한 다음, 설치를 다시 진행해주세요. MIUI 최적화 기능이 켜져 있어 앱을 설치하지 못했습니다. MIUI 최적화 기능을 끄고, 설치를 다시 진행해주세요. - 저장 공간에 오류가 있어서 설치에 실패했습니다. + 기기에 충분한 여유 공간이 없어 앱을 설치하지 못했습니다. 설치 관리자에서 블랙/다크 테마에 대한 apk 파일을 찾지 못했습니다. Vanced Manager의 앱 데이터를 삭제 한 다음 다시 시도하십시오. 분할 설치 완료 후 기본 YouTube 앱 설치 경로를 찾을 수 없습니다. diff --git a/app/src/main/res/values-ku-rTR/strings.xml b/app/src/main/res/values-ku-rTR/strings.xml index d3e16471..7fbd1614 100644 --- a/app/src/main/res/values-ku-rTR/strings.xml +++ b/app/src/main/res/values-ku-rTR/strings.xml @@ -73,8 +73,8 @@ Rêzan Rawestîne! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI destnîşan bû! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Çewtî Ji nû ve daxîne Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub @@ -108,12 +108,12 @@ Installation failed because the user blocked the installation. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. Installation failed because the app conflicts with an already installed app. Uninstall the current version of the app, then try again. - Sazkirin ji ber sedemên nenas bi ser neket, ji bo piştgiriya zêdetir tevlî Telegram an Discord\'ê bibin. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Sazkirin bi ser neket ji ber ku dosiya sazkirinê ligel cîhaza te hevaheng nîne. Dosiyên daxistî ji sazkariyan paqij bike, paşê dîsa biceribîne. Sazkirin bi ser neket ji ber ku dosiyên apk\'ayê xirab in, jkx dîsa biceribîne. Sazkirin bi ser neket ji ber ku rastandina îmzeya apk\'ayê çalak e. Rastandina îmzeya apk\'ayê neçalak bikin, paşê dîsa biceribînin. Sazkirin bi ser neket ji ber ku MIUI Optimization çalak e. MIUI Optimization\'ê neçalak bikin, paşê dîsa biceribînin. - Sazkirinê ji ber çewtiyeke depoyê bi ser neket. + Installation failed because the device doesn\'t have enough free space. Dozîna dosiya apk ji bo rûkara reş/tarî ji sazkirinê bi ser neket. Daneyên sepanê ji rêveberê paqij bikin, paşê dîsa biceribîne. Piştî sazkirina dabeşkirî, dozîna rêka sazkirina YouTube stokê bi ser neket. diff --git a/app/src/main/res/values-ml-rIN/strings.xml b/app/src/main/res/values-ml-rIN/strings.xml index 64e562a4..1630d6e8 100644 --- a/app/src/main/res/values-ml-rIN/strings.xml +++ b/app/src/main/res/values-ml-rIN/strings.xml @@ -73,8 +73,8 @@ മാർഗരേഖ നിർത്തുക! നിങ്ങൾ വാൻ‌സെഡിന്റെ മാജിസ്ക് / ടി‌ഡബ്ല്യുആർ‌പി പതിപ്പ് ഉപയോഗിക്കുന്നു, അത് നിർത്തലാക്കുകയും ഈ അപ്ലിക്കേഷൻ ഉപയോഗിച്ച് അപ്‌ഡേറ്റ് ചെയ്യാൻ കഴിയില്ല. മാജിസ്ക് മൊഡ്യൂൾ നീക്കംചെയ്ത് / ടി‌ഡബ്ല്യുആർ‌പി വാൻ‌സ്ഡ് അൺ‌ഇൻ‌സ്റ്റാളർ ഉപയോഗിച്ച് ഇത് നീക്കംചെയ്യുക. - MIUI കണ്ടെത്തി! - വാൻ‌സ്ഡ് ഇൻ‌സ്റ്റാൾ‌ ചെയ്യുന്നതിന്, ഡവലപ്പർ‌ ക്രമീകരണങ്ങളിൽ‌ നിങ്ങൾ‌ MIUI ഒപ്റ്റിമൈസേഷനുകൾ‌ അപ്രാപ്‌തമാക്കണം. (നിങ്ങൾ 20.2.20 അല്ലെങ്കിൽ അതിനുശേഷമുള്ള xiaomi.eu അടിസ്ഥാനമാക്കിയുള്ള റോം ഉപയോഗിക്കുകയാണെങ്കിൽ നിങ്ങൾക്ക് ഈ മുന്നറിയിപ്പ് അവഗണിക്കാം) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) തെറ്റ് വീണ്ടും ഡൗൺലോഡുചെയ്യുക നിങ്ങൾ vancedapp.com, Vanced Discord സെർവർ, അല്ലെങ്കിൽ Vanced GitHub എന്നിവയിൽ നിന്ന് അപ്ലിക്കേഷൻ download ൺലോഡ് ചെയ്തുവെന്ന് ഉറപ്പാക്കുക @@ -108,12 +108,12 @@ ഉപയോക്താവ് ഇൻസ്റ്റാളേഷൻ തടഞ്ഞതിനാൽ ഇൻസ്റ്റാളേഷൻ പരാജയപ്പെട്ടു. ഉപയോക്താവ് പാക്കേജ് തരംതാഴ്ത്താൻ ശ്രമിച്ചതിനാൽ ഇൻസ്റ്റാളേഷൻ പരാജയപ്പെട്ടു. സ്റ്റോക്ക് അപ്ലിക്കേഷനിൽ നിന്ന് അപ്‌ഡേറ്റുകൾ അൺഇൻസ്റ്റാൾ ചെയ്യുക, തുടർന്ന് വീണ്ടും ശ്രമിക്കുക. ഇതിനകം ഇൻസ്റ്റാളുചെയ്‌ത അപ്ലിക്കേഷനുമായി അപ്ലിക്കേഷൻ പൊരുത്തപ്പെടുന്നതിനാൽ ഇൻസ്റ്റാളേഷൻ പരാജയപ്പെട്ടു. അപ്ലിക്കേഷന്റെ നിലവിലെ പതിപ്പ് അൺ‌ഇൻസ്റ്റാൾ ചെയ്യുക, തുടർന്ന് വീണ്ടും ശ്രമിക്കുക. - അജ്ഞാതമായ കാരണങ്ങളാൽ ഇൻസ്റ്റാളേഷൻ പരാജയപ്പെട്ടു, കൂടുതൽ പിന്തുണയ്ക്കായി ഞങ്ങളുടെ ടെലിഗ്രാം അല്ലെങ്കിൽ ഡിസ്കോർഡിൽ ചേരുക. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu ഇൻസ്റ്റാളേഷൻ ഫയൽ നിങ്ങളുടെ ഉപകരണവുമായി പൊരുത്തപ്പെടാത്തതിനാൽ ഇൻസ്റ്റാളേഷൻ പരാജയപ്പെട്ടു. ക്രമീകരണങ്ങളിൽ ഡ download ൺലോഡ് ചെയ്ത ഫയലുകൾ മായ്‌ക്കുക, തുടർന്ന് വീണ്ടും ശ്രമിക്കുക. Apk ഫയലുകൾ‌ കേടായതിനാൽ‌ ഇൻ‌സ്റ്റാളേഷൻ‌ പരാജയപ്പെട്ടു, ദയവായി വീണ്ടും ശ്രമിക്കുക. Apk സിഗ്നേച്ചർ പരിശോധന പ്രാപ്തമാക്കിയതിനാൽ ഇൻസ്റ്റാളേഷൻ പരാജയപ്പെട്ടു. Apk സിഗ്നേച്ചർ പരിശോധന അപ്രാപ്തമാക്കുക, തുടർന്ന് വീണ്ടും ശ്രമിക്കുക. MIUI ഒപ്റ്റിമൈസേഷൻ പ്രാപ്തമാക്കിയതിനാൽ ഇൻസ്റ്റാളേഷൻ പരാജയപ്പെട്ടു. MIUI ഒപ്റ്റിമൈസേഷൻ അപ്രാപ്തമാക്കുക, തുടർന്ന് വീണ്ടും ശ്രമിക്കുക. - ഒരു സംഭരണ പിശക് കാരണം ഇൻസ്റ്റാളേഷൻ പരാജയപ്പെട്ടു. + Installation failed because the device doesn\'t have enough free space. ഇൻസ്റ്റാളറിൽ നിന്ന് കറുപ്പ് / ഇരുണ്ട തീമിനായി Apk ഫയൽ കണ്ടെത്തുന്നതിൽ പരാജയപ്പെട്ടു. മാനേജറിന്റെ അപ്ലിക്കേഷൻ ഡാറ്റ മായ്‌ക്കുക, തുടർന്ന് വീണ്ടും ശ്രമിക്കുക. വിഭജന ഇൻസ്റ്റാളേഷന് ശേഷം സ്റ്റോക്ക് YouTube ഇൻസ്റ്റാളേഷൻ പാത്ത് കണ്ടെത്തുന്നതിൽ പരാജയപ്പെട്ടു. diff --git a/app/src/main/res/values-mr-rIN/strings.xml b/app/src/main/res/values-mr-rIN/strings.xml index b4e8d72f..d72ddb4c 100644 --- a/app/src/main/res/values-mr-rIN/strings.xml +++ b/app/src/main/res/values-mr-rIN/strings.xml @@ -73,8 +73,8 @@ Guide Stop! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI detected! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Error Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub @@ -108,12 +108,12 @@ Installation failed because the user blocked the installation. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. Installation failed because the app conflicts with an already installed app. Uninstall the current version of the app, then try again. - Installation failed for unknown reasons, join our Telegram or Discord for further support. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Installation failed because the installation file is incompatible with your device. Clear downloaded files in the Settings, then try again. Installation failed because the apk files are corrupted, please try again. Installation failed because apk signature verification is enabled. Disable apk signature verification, then try again. Installation failed because MIUI Optimization is enabled. Disable MIUI Optimization, then try again. - Installation failed due to a storage error. + Installation failed because the device doesn\'t have enough free space. Failed to find apk file for black/dark theme from the installer. Clear app data of Manager, then try again. Failed to locate the stock YouTube installation path after split installation. diff --git a/app/src/main/res/values-nl-rNL/strings.xml b/app/src/main/res/values-nl-rNL/strings.xml index 2d465056..a1bd4dac 100644 --- a/app/src/main/res/values-nl-rNL/strings.xml +++ b/app/src/main/res/values-nl-rNL/strings.xml @@ -73,8 +73,8 @@ Handleiding Stoppen! Je gebruikt de Magisk/TWRP-versie van Vanced, die stopgezet is en niet kan bijgewerkt worden met deze app. Verwijder deze eerst door het verwijderen van de Magisk-module / door de TWRP Vanced uninstaller te gebruiken. - MIUI gedetecteerd! - Om Vanced te installeren MOET je MIUI-optimalisaties uitschakelen in de ontwikkelaarsinstellingen (je kunt deze waarschuwing negeren als je de op xiaomi.eu gebaseerde ROM 20.2.20 of later gebruikt) + MIUI optimalisaties zijn ingeschakeld! + Om Vanced te installeren MOET je MIUI optimalisaties uitschakelen in de ontwikkelaarsinstellingen (je kan deze waarschuwing negeren als je de op xiaomi.eu gebaseerde ROM 20.2.20 of later gebruikt) Fout Opnieuw downloaden Zorg ervoor dat je de app hebt gedownload van vancedapp.com, de Vanced Discord-server of Vanced GitHub @@ -108,12 +108,12 @@ Installatie mislukt omdat de gebruiker de installatie heeft geblokkeerd. Installatie mislukt omdat de gebruiker het pakket probeerde te downgraden. Verwijder updates van de standaard app en probeer het daarna opnieuw. Installatie mislukt omdat de app conflicten heeft met een reeds geïnstalleerde app. Verwijder de huidige versie van die app en probeer het opnieuw. - Installatie mislukt om onbekende redenen, word lid van onze Telegram of Discord voor verdere ondersteuning. + Installatie is mislukt om onbekende redenen, ga naar Telegram of Discord voor verdere ondersteuning. Voeg een screenshot toe via het menu Geavanceerd. Installatie mislukt omdat het installatiebestand niet compatibel is met jouw apparaat. Wis de gedownloade bestanden in de instellingen en probeer het opnieuw. Installatie mislukt omdat de apk-bestanden beschadigd zijn. Probeer het opnieuw. Installatie mislukt omdat apk-handtekeningverificatie is ingeschakeld. Schakel apk-handtekeningverificatie uit en probeer het opnieuw. Installatie mislukt omdat MIUI-optimalisatie is ingeschakeld. Schakel MIUI-optimalisatie uit en probeer het opnieuw. - Installatie mislukt door een opslagfout. + Installatie mislukt omdat het apparaat niet genoeg vrije ruimte heeft. Kan het apk-bestand voor black/dark thema niet vinden in het installatiebestand. Verwijder de appdata van Vanced Manager en probeer het opnieuw. Kan het standaard YouTube-installatiepad niet vinden na de gesplitste installatie. diff --git a/app/src/main/res/values-no-rNO/strings.xml b/app/src/main/res/values-no-rNO/strings.xml index a2984a91..71c5d44c 100644 --- a/app/src/main/res/values-no-rNO/strings.xml +++ b/app/src/main/res/values-no-rNO/strings.xml @@ -73,8 +73,8 @@ Guide Stopp! Du bruker Magisk/TWRP-versjonen av Vansert, som seponeres og som ikke kan oppdateres ved hjelp av denne appen. Vennligst fjern den ved å fjerne Magisk modul/bruke TWRP Vanced uninstaller. - MIUI oppdaget! - For å installere Vananced, MÅ du deaktivere MIUI Optimaliseringer i utviklerinnstillingene. (Du kan ignorere denne advarselen hvis du bruker 20.2.20 eller senere xiaomi.eu basert ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Feil Last ned på nytt Sørg for at du lastet ned appen fra vancedapp.com, Vanced Discord server, eller Vanced GitHub @@ -108,12 +108,12 @@ Installasjonen mislyktes på grunn av at brukeren blokkerte installasjonen. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. Installation failed because the app conflicts with an already installed app. Uninstall the current version of the app, then try again. - Installasjonen mislyktes av ukjente årsaker, bli med i vår Telegram eller Discord gruppe for videre støtte. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Installasjonen mislyktes på grunn av at installasjonsfilen er inkompatibel med enheten. Fjern nedlastede filer i innstillinger og prøv på nytt. Installasjonen mislyktes fordi apk-filene er ødelagt, vennligst prøv på nytt. Installasjon feilet fordi apk signaturverifikasjon er aktivert. Deaktiver apk signaturverifikasjon og prøv på nytt. Installasjonen mislyktes fordi MIUI-optimalisering er aktivert. Deaktiver MIUI-optimalisering og prøv på nytt. - Installasjonen mislyktes på grunn av lagringsfeil. + Installation failed because the device doesn\'t have enough free space. Finner ikke apk-filen for svart/mørkt tema fra installatøren. Fjern data fra denne appen og prøv på nytt. Klarte ikke å lokalisere YouTube installasjonsstien etter splittet installasjon. diff --git a/app/src/main/res/values-pa-rIN/strings.xml b/app/src/main/res/values-pa-rIN/strings.xml index 4369e668..4538eb59 100644 --- a/app/src/main/res/values-pa-rIN/strings.xml +++ b/app/src/main/res/values-pa-rIN/strings.xml @@ -73,8 +73,8 @@ ਗਾਇਡ ਉਡੀਕੋ! ਤੁਸੀਂ Vanced ਦੇ Magisk / TWRP ਸੰਸਕਰਣ ਦਾ ਉਪਯੋਗ ਕਰ ਰਹੇ ਹੋ, ਜਿਸਨੂੰ ਬੰਦ ਕਰ ਦਿੱਤਾ ਗਿਆ ਹੈ ਅੱਤੇ ਇਸ ਐਪ ਦਾ ਉਪਯੋਗ ਕਰਕੇ ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ| ਕਿਰਪਾ ਇਸ Magisk ਮੋਡੂਅਲ ਨੂੰ / TWRP Vanced uninstaller ਦਾ ਉਪਯੋਗ ਕਰਕੇ ਹੱਟਾ ਦੇਵੋਂ. - ਪਤਾ ਲਗਾਇਆ MiUI ਉਪਯੋਗਕਰਤਾ! - Vanced ਇੰਸਟਾਲ ਕਰਨ ਲਈ, ਤੁਸੀੰ ਡਵੇਲਪਰ ਸੇਟਿੰਗ ਵਿੱਚ MIUI Optimization ਨੂੰ ਬੰਦ ਕਰੋ| (ਜੇਕਰ ਤੁਸੀਂ 20.2.20 ਜਾਂ ਬਾਅਦ ਵਿੱਚ xiaomi.eu ਆਧਾਰਿਤ ROM ਦਾ ਉਪਯੋਗ ਕਰ ਰਹੇ ਹੋ ਤਾਂ ਤੁਸੀਂ ਇਸ ਚੇਤਾਵਨੀ ਨੂੰ ਅਣਦੇਖਾ ਕਰ ਸਕਦੇ ਹੋ) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) ਗਲਤੀ ਮੁੜ ਡਾਉਨਲੋਡ ਪੱਕਾ ਕਰੋ ਕਿ ਤੁਸੀਂ vancedapp.com, Vanced Discord ਸਰਵਰ ਜਾਂ Vanced GitHub ਤੋਂ ਐਪ ਡਾਉਨਲੋਡ ਕੀਤਾ ਹੈ @@ -108,12 +108,12 @@ ਇੰਸਟਾਲੇਸ਼ਨ ਨਾਕਾਮ ਰਹੀ ਕਿਓਂਕਿ ਉਪਯੋਗਕਰਤਾ ਨੇ ਇੰਸਟਾਲੇਸ਼ਨ ਬਲਾਕ ਕਰ ਦਿੱਤੀ. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. ਸਥਾਪਨਾ ਅਸਫਲ ਕਿਉਂਕਿ ਐਪ ਪਹਿਲਾਂ ਤੋਂ ਸਥਾਪਤ ਐਪ ਨਾਲ ਟਕਰਾਉਂਦੀ ਹੈ. ਐਪ ਦੇ ਮੌਜੂਦਾ ਸੰਸਕਰਣ ਨੂੰ ਅਣਇੰਸਟੌਲ ਕਰੋ, ਫਿਰ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ. - ਅਣਜਾਣ ਕਾਰਨਾਂ ਕਰਕੇ ਸਥਾਪਨਾ ਅਸਫਲ ਹੋ ਗਈ, ਹੋਰ ਸਹਾਇਤਾ ਲਈ ਸਾਡੇ ਟੈਲੀਗ੍ਰਾਮ ਜਾਂ ਡਿਸਕੋਰਡ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਵੋ. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu ਸਥਾਪਨਾ ਅਸਫਲ ਹੋਈ ਕਿਉਂਕਿ ਇੰਸਟਾਲੇਸ਼ਨ ਫਾਈਲ ਤੁਹਾਡੀ ਡਿਵਾਈਸ ਦੇ ਅਨੁਕੂਲ ਨਹੀਂ ਹੈ. ਸੈਟਿੰਗਾਂ ਵਿੱਚ ਡਾਉਨਲੋਡ ਕੀਤੀਆਂ ਫਾਈਲਾਂ ਸਾਫ਼ ਕਰੋ, ਫਿਰ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ. ਸਥਾਪਨਾ ਅਸਫਲ ਹੋਈ ਕਿਉਂਕਿ ਏਪੀਕੇ ਫਾਈਲਾਂ ਖ਼ਰਾਬ ਹਨ, ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ. ਸਥਾਪਨਾ ਅਸਫਲ ਕਿਉਂਕਿ ਏਪੀਕੇ ਦਸਤਖਤ ਤਸਦੀਕ ਯੋਗ ਹੈ. ਏਪੀਕੇ ਦਸਤਖਤ ਤਸਦੀਕ ਨੂੰ ਅਯੋਗ ਕਰੋ, ਫਿਰ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ. MIUI ਸਥਾਪਨਾ ਅਸਫਲ, ਕਿਉਂਕਿ Optimization ਯੋਗ ਕੀਤੀ ਗਈ ਸੀ. MIUI Optimization ਅਯੋਗ ਕਰੋ ਫਿਰ ਕੋਸ਼ਿਸ਼ ਕਰੋ. - ਸਟੋਰੇਜ ਨਾਕਾਮੀ ਦੇ ਕਾਰਨ ਸਥਾਪਨਾ ਅਸਫਲ. + Installation failed because the device doesn\'t have enough free space. ਇੰਸਟੌਲਰ ਤੋਂ ਕਾਲੇ / ਹਨੇਰੇ ਥੀਮ ਲਈ ਏਪੀਕੇ ਫਾਈਲ ਲੱਭਣ ਵਿੱਚ ਅਸਫਲ. ਮੈਨੇਜਰ ਐਪ ਦਾ ਡਾਟਾ ਸਾਫ਼ ਕਰੋ, ਫਿਰ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ. ਸਪਲਿਟ ਇੰਸਟਾਲੇਸ਼ਨ ਦੇ ਬਾਅਦ ਸਟਾਕ YouTube ਇੰਸਟਾਲੇਸ਼ਨ ਮਾਰਗ ਦਾ ਪਤਾ ਲਗਾਉਣ ਵਿੱਚ ਅਸਫਲ. diff --git a/app/src/main/res/values-pa-rPK/strings.xml b/app/src/main/res/values-pa-rPK/strings.xml index ec8a0200..f735cfbf 100644 --- a/app/src/main/res/values-pa-rPK/strings.xml +++ b/app/src/main/res/values-pa-rPK/strings.xml @@ -73,8 +73,8 @@ Guide Stop! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI detected! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Error Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub @@ -108,12 +108,12 @@ Installation failed because the user blocked the installation. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. Installation failed because the app conflicts with an already installed app. Uninstall the current version of the app, then try again. - Installation failed for unknown reasons, join our Telegram or Discord for further support. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Installation failed because the installation file is incompatible with your device. Clear downloaded files in the Settings, then try again. Installation failed because the apk files are corrupted, please try again. Installation failed because apk signature verification is enabled. Disable apk signature verification, then try again. Installation failed because MIUI Optimization is enabled. Disable MIUI Optimization, then try again. - Installation failed due to a storage error. + Installation failed because the device doesn\'t have enough free space. Failed to find apk file for black/dark theme from the installer. Clear app data of Manager, then try again. Failed to locate the stock YouTube installation path after split installation. diff --git a/app/src/main/res/values-pl-rPL/strings.xml b/app/src/main/res/values-pl-rPL/strings.xml index b3863b3c..ba1af7c7 100644 --- a/app/src/main/res/values-pl-rPL/strings.xml +++ b/app/src/main/res/values-pl-rPL/strings.xml @@ -73,16 +73,16 @@ Przewodnik Stop! Używasz wersji Magisk/TWRP Vanced, która została przerwana i nie może zostać zaktualizowana za pomocą tej aplikacji. Proszę go usunąć usuwając moduł Magisk/używając TWRP Vanced deinstalatora. - MIUI wykryte! - Aby zainstalować Vanced, MUSISZ wyłączyć optymalizację MIUI w ustawieniach dewelopera. (Możesz zignorować to ostrzeżenie, jeśli używasz oprogramowania 20.2.20 lub później z bazą na xiaomi.eu) + Optymalizacja MIUI jest włączona! + Aby zainstalować Vanced, MUSISZ wyłączyć optymalizację MIUI w ustawieniach dewelopera. (Możesz zignorować to ostrzeżenie, jeśli korzystasz z ROM 20.2.20 lub późniejszego xiaomi.eu) Błąd Pobierz ponownie Upewnij się, że pobrałeś aplikację z vancedapp.com, serwera Vanced Discord lub Vanced GitHub Preferencje instalacji %1$s Wersja Błąd w microG - Due to a bug in the original microG, installing Vanced v16+ first requires you to install v15.43.32, open it, then login and only then can you install v16 and higher. Do you want to proceed with the installation of v15.43.32? - Due to a bug in the original microG, installing Music v4.11+ first requires you to install v4.07.51, open it, then login and only then can you install v4.11 and higher. Do you want to proceed with the installation of v4.07.51? + Ze względu na błąd w microG, instalacja Vanced 16+ wymaga najpierw instalacji v15.43.32, otwórz go, a następnie zaloguj się i tylko wtedy możesz zainstalować v16 i nowsze. Czy chcesz kontynuować instalację v15.43.32? + Ze względu na błąd w microG głównej, instalacja Muzyka v4.11+ wymaga najpierw instalacji v4.07.51, otwórz go, a następnie zaloguj się i tylko wtedy możesz zainstalować v4.11 i nowsze. Czy chcesz kontynuować instalację v4.07.51? NIE wychodź z aplikacji podczas trwania tego procesu! Witaj @@ -94,7 +94,7 @@ Ciemny Deweloperzy Menedżera - Other Contributors + Inni współtwórcy Źródła Zespół Vanced @@ -108,12 +108,12 @@ Instalacja nie powiodła się, ponieważ użytkownik zablokował instalację. Instalacja nie powiodła się, ponieważ użytkownik próbował obniżyć paczkę. Odinstaluj aktualizacje z domyślnej aplikacji YouTube, a następnie spróbuj ponownie. Instalacja nie powiodła się ponieważ aplikacja konfliktuje z już zainstalowaną aplikacją. Odinstaluj aktualną wersję aplikacji a następnie spróbuj ponownie. - Operacja nie powiodła się z nieznanego powodu. Aby uzyskać wsparcie, dołącz do naszego Telegram\'u lub Discord\'a. + Instalacja nie powiodła się z nieznanych powodów, dołącz do naszego Telegrama lub Discorda, aby uzyskać dalsze wsparcie. Proszę również dołączyć zrzut ekranu z zaawansowanego menu Instalacja nie powiodła się, ponieważ plik instalacyjny jest niezgodny z Twoim urządzeniem. Wyczyść pobrane pliki w Ustawieniach, a następnie spróbuj ponownie. Instalacja nie powiodła się, bo pliki apk są uszkodzone, spróbuj jeszcze raz. Instalacja nie powiodła się, ponieważ włączona jest weryfikacja podpisu apk. Wyłącz weryfikację podpisu apk, a następnie spróbuj ponownie. Instalacja nie powiodła się, ponieważ optymalizacja MIUI jest włączona. Wyłącz optymalizację MIUI, a następnie spróbuj ponownie. - Instalacja nie powiodła się z powodu błędu pamięci. + Instalacja nie powiodła się, ponieważ urządzenie nie ma wystarczającej ilości wolnego miejsca. Nie udało się znaleźć pliku apk dla czarnego/ciemnego motywu z instalatora. Wyczyść dane aplikacji Menedżera i spróbuj ponownie. Nie udało się zlokalizować ścieżki instalacji YouTube po podzieleniu instalacji. diff --git a/app/src/main/res/values-ps-rAF/strings.xml b/app/src/main/res/values-ps-rAF/strings.xml index ec8a0200..f735cfbf 100644 --- a/app/src/main/res/values-ps-rAF/strings.xml +++ b/app/src/main/res/values-ps-rAF/strings.xml @@ -73,8 +73,8 @@ Guide Stop! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI detected! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Error Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub @@ -108,12 +108,12 @@ Installation failed because the user blocked the installation. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. Installation failed because the app conflicts with an already installed app. Uninstall the current version of the app, then try again. - Installation failed for unknown reasons, join our Telegram or Discord for further support. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Installation failed because the installation file is incompatible with your device. Clear downloaded files in the Settings, then try again. Installation failed because the apk files are corrupted, please try again. Installation failed because apk signature verification is enabled. Disable apk signature verification, then try again. Installation failed because MIUI Optimization is enabled. Disable MIUI Optimization, then try again. - Installation failed due to a storage error. + Installation failed because the device doesn\'t have enough free space. Failed to find apk file for black/dark theme from the installer. Clear app data of Manager, then try again. Failed to locate the stock YouTube installation path after split installation. diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index 48fe4b45..3d51acf8 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -73,8 +73,8 @@ Guia Pare! Você está usando a versão Magisk/TWRP do Vanced, que foi descontinuada e não pode ser atualizada com este aplicativo. Desinstale-o removendo o módulo em Magisk/usando o desinstalador TWRP Vanced. - MiUI detectado! - Para instalar o Vanced, você DEVE desabilitar as Otimizações MIUI nas configurações de desenvolvedor. (Você pode ignorar este aviso se estiver usando uma ROM baseada em xiaomi.eu 20.2.20 ou posterior) + Otimização MIUI está habilitada! + Para instalar o Vanced, você PRECISA desligar as otimizações da MIUI nas opções de desenvolvedor. (Você pode ignorar esse aviso caso estiver usando uma ROM baseada na xiaomi.eu versão 20.2.20 ou superior) Erro Baixar novamente Certifique-se de fazer o download do aplicativo em vancedapp.com, no servidor Vanced Discord ou no Vanced GitHub @@ -108,12 +108,12 @@ A instalação falhou porque o usuário bloqueou a instalação. A instalação falhou porque o usuário tentou fazer o downgrade do pacote. Desinstale as atualizações do aplicativo padrão e tente novamente. A instalação falhou porque o app está em conflito com um app já instalado. Desinstale a versão atual do aplicativo e tente novamente. - A instalação falhou por um motivo desconhecido, junte-se ao nosso grupo no Telegram ou Discord para obter suporte. + A instalação falhou por razões desconhecidas, junte-se ao nosso Telegram ou Discord para obter mais suporte. Por favor, anexe também uma captura de tela do menu Avançado A instalação falhou porque o arquivo de instalação é incompatível com o seu dispositivo. Limpe os arquivos baixados nas configurações e tente novamente. A instalação falhou porque os arquivos apk estão corrompidos, tente novamente. A instalação falhou porque a verificação de assinatura do apk está ativado. Desative a verificação de assinatura do apk e tente novamente. A instalação falhou porque a Otimização MIUI está ativada. Desative a Otimização MIUI e tente novamente. - A instalação falhou devido a um erro do armazenamento. + A instalação falhou porque o dispositivo não tem espaço livre suficiente. Falha ao encontrar o arquivo apk para o tema preto/escuro a partir do instalador. Limpe os \"dados do app\" do Manager e tente novamente. Falha ao localizar o caminho de instalação padrão do YouTube após a instalação dividida (split). diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index 99810069..27794f16 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -73,8 +73,8 @@ Guia Parar! Você está usando a versão Magisk/TWRP do Vanced, que está descontinuada e não pode ser atualizada usando este aplicativo. Por favor, remova-o removendo o módulo Magisk/usando a desinstalação TWRP Vanced Uninstaler. - MIUI detetado! - Para instalar o Vanced, você DEVE desativar as Otimizações MIUI nas configurações do desenvolvedor. (Você pode ignorar este aviso se você estiver usando 20.2.20 ou ROM baseada em xiaomi.eu) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Erro Voltar a descarregar Certifique-se de que você baixou o aplicativo do vancedapp.com, o servidor Vanced Discord ou o Vanced GitHub @@ -108,12 +108,12 @@ A instalação falhou porque o usuário bloqueou a instalação. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. A instalação falhou porque o app entra em conflito com um app já instalado. Desinstale a versão atual do app e tente novamente. - A instalação falhou por razões desconhecidas, por favor entre no nosso Telegram ou Discord para suporte. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Falha na instalação porque o pacote de instalação é incompatível com o seu dispositivo. Limpe os pacotes transferidos nas Configurações e tente novamente. A instalação falhou porque os pacotes apk estão corrompidos, por favor tente novamente. A instalação falhou porque a verificação de assinatura apk está ativa. Desative a verificação de assinatura apk e tente novamente. A instalação falhou porque a Otimização MIUI está ativada. Desative a Otimização MIUI e tente novamente. - A instalação falhou devido a um erro de armazenamento. + Installation failed because the device doesn\'t have enough free space. Falha ao encontrar o arquivo apk para o tema preto/escuro no instalador. Limpe os dados do app do Gerenciador (Vanced Manager) e tente novamente. Falha ao localizar o caminho de instalação padrão do YouTube após instalação dividida. diff --git a/app/src/main/res/values-ro-rRO/strings.xml b/app/src/main/res/values-ro-rRO/strings.xml index 14c5d875..564fe066 100644 --- a/app/src/main/res/values-ro-rRO/strings.xml +++ b/app/src/main/res/values-ro-rRO/strings.xml @@ -73,8 +73,8 @@ Ghid Oprește! Folosiți versiunea Magisk/TWRP a Vanced, care nu mai este în uz și nu poate fi actualizată folosind această aplicație. Vă rugăm să o eliminați prin eliminarea modulului Magisk/folosind dezinstalatorul Vanced TWRP. - MIUI detectat! - Pentru a instala Vanced, TREBUIE să dezactivați Optimizările MIUI în setările dezvoltatorului. (Puteți ignora această avertizare dacă utilizați un ROM cu baza pe xiaomi.eu 20.2.20 sau mai recent) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Eroare Redescărcare Asigurați-vă că ați descărcat aplicația de pe vancedapp.com, de pe serverul Discord Vanced sau de pe GitHub Vanced @@ -108,12 +108,12 @@ Instalarea a eșuat deoarece utilizatorul a blocat instalarea. Instalarea a eșuat deoarece utilizatorul a încercat să retrogradeze pachetul. Dezinstalați actualizările din aplicația stock YouTube, apoi încercați din nou. Instalarea a eșuat deoarece aplicația intră în conflict cu o aplicație deja instalată. Dezinstalați versiunea curentă a aplicației, apoi încercați din nou. - Instalarea a eșuat din motive necunoscute, alătură-te Telegramului nostru sau Discord pentru mai multă asistență. + Instalarea a eșuat din motive necunoscute. Pentru asistență, intră pe grupul nostru de Telegram sau Discord. Te rugăm să atașezi și o captură de ecran din meniul Avansat Instalarea a eșuat deoarece fișierul de instalare este incompatibil cu dispozitivul dvs. Ștergeți fișierele descărcate din Setări, apoi încercați din nou. Instalarea a eșuat deoarece fișierele apk sunt corupte, încercați din nou. Instalarea a eșuat deoarece verificarea semnăturii apk este activată. Dezactivați verificarea semnăturii apk, apoi încercați din nou. Instalarea a eșuat deoarece este activată optimizarea MIUI. Dezactivați optimizarea MIUI, apoi încercați din nou. - Instalarea a eșuat din cauza unei erori de stocare. + Instalarea a eșuat deoarece dispozitivul nu are suficient spațiu liber. Nu s-a putut găsi fișierul apk pentru tema neagră/întunecată din instalator. Ștergeți datele aplicației Manager, apoi încercați din nou. Localizarea instalarii YouTube-ului stock a eșuat dupa instalarea divizată. diff --git a/app/src/main/res/values-ru-rRU/strings.xml b/app/src/main/res/values-ru-rRU/strings.xml index f10aca12..b87ef160 100644 --- a/app/src/main/res/values-ru-rRU/strings.xml +++ b/app/src/main/res/values-ru-rRU/strings.xml @@ -73,7 +73,7 @@ Руководство Стойте! Похоже, вы используете Magisk/TWRP версию Vanced, которая больше не поддерживается и не может быть обновлена с помощью этого приложения. Пожалуйста, удалите модуль Vanced через Magisk или с помощью деинсталлятора Vanced для TWRP. - Обнаружен пользователь MIUI! + Оптимизация MIUI включена! Чтобы установить Vanced, вы ДОЛЖНЫ отключить оптимизацию MIUI в настройках разработчика. (Вы можете проигнорировать это предупреждение, если вы используете прошивку на xiaomi.eu версии 20.2.20+) Ошибка Скачать заново @@ -94,7 +94,7 @@ Темный Разработчики Менеджера - Other Contributors + Другие участники Исходники Команда Vanced @@ -108,12 +108,12 @@ Установка не была выполнена, поскольку пользователь заблокировал установку. Установка не удалась, так как пользователь попытался понизить версию приложения. Удалите обновления обычного приложения YouTube, затем повторите попытку. Установка не удалась, так как приложение конфликтует с уже установленным приложением. Удалите текущую версию приложения, затем повторите попытку. - Установка не удалась по неизвестным причинам. Присоединяйтесь к нашей группе в Telegram или Discord для дальнейшей поддержки. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Установка не удалась, так как установочный файл несовместим с вашим устройством. Очистите загруженные файлы в настройках, затем повторите попытку. Установка не удалась, так как установочные файлы повреждены, попробуйте еще раз. Установка не удалась, так как включена проверка подписи apk. Отключите проверку подписи apk, а затем повторите попытку. Установка не удалась, так как включена Оптимизация MIUI. Отключите Оптимизацию MIUI, затем повторите попытку. - Установка не была выполнена, так как произошла ошибка с доступом к памяти. + Ошибка установки, так как на устройстве недостаточно свободного места. Не удалось найти apk-файл для черной/темной темы в программе установки. Удалите данные приложения из Менеджера и повторите попытку. Не удалось найти стандартный путь установки YouTube после раздельной установки. diff --git a/app/src/main/res/values-si-rLK/strings.xml b/app/src/main/res/values-si-rLK/strings.xml index a941bf39..2e5143d3 100644 --- a/app/src/main/res/values-si-rLK/strings.xml +++ b/app/src/main/res/values-si-rLK/strings.xml @@ -73,8 +73,8 @@ මාර්ගෝපදේශය නවත්වන්න! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI detected! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) දෝෂය Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub @@ -108,12 +108,12 @@ Installation failed because the user blocked the installation. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. Installation failed because the app conflicts with an already installed app. Uninstall the current version of the app, then try again. - Installation failed for unknown reasons, join our Telegram or Discord for further support. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Installation failed because the installation file is incompatible with your device. Clear downloaded files in the Settings, then try again. Installation failed because the apk files are corrupted, please try again. Installation failed because apk signature verification is enabled. Disable apk signature verification, then try again. Installation failed because MIUI Optimization is enabled. Disable MIUI Optimization, then try again. - Installation failed due to a storage error. + Installation failed because the device doesn\'t have enough free space. Failed to find apk file for black/dark theme from the installer. Clear app data of Manager, then try again. Failed to locate the stock YouTube installation path after split installation. diff --git a/app/src/main/res/values-so-rSO/strings.xml b/app/src/main/res/values-so-rSO/strings.xml index e3b8cade..f65cfcbf 100644 --- a/app/src/main/res/values-so-rSO/strings.xml +++ b/app/src/main/res/values-so-rSO/strings.xml @@ -73,8 +73,8 @@ Hagitaan Jooji! Waxaad isticmaalaysaa version-ka Vanced ee loogu talagalay Magisk/TWRP, kaasoo aan hada la taageerin halkana lagama cusboonaysiin karo. Fadlan iska saar lifaaqa Magisk/adoo isticmaalaya kasaaraha Vanced ee TWRP-ga xagiisa. - Waxaad isticmaalaysaa MIUI! - Si aad ugu shubto Vanced, WAA INAAD ka xidhaa MIUI Optimizations xaga fadhiga Developer Settings-ka. (Waad iska indhatiri kartaa digniintan hadaad isticmaalayso version-ka 20.2.20 iyo wixii ka dambeeyay ee nidaamka barnaamijyada ROM-ka ee kusalaysan xiaomi.eu) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Khalad Dib udaji Iska hubi inaad app-ka kaso dajisatay vancedapp.com, xaga martigaliyaha Discord, ama meesha Vanced ee GitHub @@ -108,12 +108,12 @@ Ku shubidii way guuldaraysatay sababtoo ah qofka aalada isticmaalaya ayaa xanibay. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. Ku shubidii way guuldaraysatay sababtoo ah app-ka waxay iskhilaafeen mid horay ugu jiray aalada. Ka saar nooca hadda ee kujira, kadib markale ku celi. - Ku shubidii way guuldaraysatay sababo aan la garanaynin awgood, kusoo biir Telegram-kanaga ama Discord-ka si aad caawin dheerad ah u hesho. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Ku shubidii way guuldaraysatay sababtoo ah faylka kuma shaqaynayo aaladaada. Xaga Fadhiga ka saar waxyaabaha lasoo dajiyay, kadib markale isku day. Ku shubidii way guuldaraysatay sababtoo ah faylashii apk-ga ayaa khalkhalsan, markale isku day. Ku shubidii way guuldaraysatay sababtoo ah waxaa furan xaqiijinta saxiixa apk-ga. Xidh xaqiijinta saxiixa apk-ga, kadibna markale ku celi. Ku shubidii way guuldaraysatay sababtoo ah waxaa furan MIUI Optimization. Xidh MIUI Optimization-ka, kadib markale ku celi. - Ku shubidii way guuldaraysatay ayadooy ugu wacan tahay khalad xaga kaydka aalada ah. + Installation failed because the device doesn\'t have enough free space. Lama helin faylka apk-ga ee nashqada madow/mugdiga ah. Tirtir xogta Manager-ka, kadib markale ku celi. Waa lagu guuldaraysatay in la helo wadadii ku shubida app-ka caadiga ah ee YouTube-ka ee kuxigtay ku shubida kala qaybsan. diff --git a/app/src/main/res/values-sr-rSP/strings.xml b/app/src/main/res/values-sr-rSP/strings.xml index cdf2dd6e..464fcee9 100644 --- a/app/src/main/res/values-sr-rSP/strings.xml +++ b/app/src/main/res/values-sr-rSP/strings.xml @@ -8,8 +8,8 @@ Одабери своје апликације О апликацији - Guide - Logs + Водич + Дневници Менаџер Поставке Освежи Менаџера @@ -60,8 +60,8 @@ Нема нове верзије Варијанта - Successfully saved logs - Could not save logs + Успешно сачувани дневници + Није могуће снимити дневнике Napredan %1$s верзија је пронађена! @@ -73,7 +73,7 @@ Водич Заустави! Користите Magisk/TWRP верзију Vanced апликације, која више није подржана и чије коришћење није могуће. Молимо Вас да уклоните ову апликацију из Magisk/TWRP-а путем Vanced апликације за деинсталацију. - MIUI је детектован! + MIUI оптимизација је укључена! Да би апликација Vanced била исправно инсталирана морате да искључите оптимизацију за ову апликацију у MIUI подешавањима за програмере.( Ову напомену можете да занемарите у случају ако користите верзију 20.2.20 и новију xiaomi.eu ROM-а) Грешка Поново преузми @@ -81,39 +81,39 @@ %1$s Инсталациона подешавања Верзија Грешка у МикроГ апликацији - Due to a bug in the original microG, installing Vanced v16+ first requires you to install v15.43.32, open it, then login and only then can you install v16 and higher. Do you want to proceed with the installation of v15.43.32? - Due to a bug in the original microG, installing Music v4.11+ first requires you to install v4.07.51, open it, then login and only then can you install v4.11 and higher. Do you want to proceed with the installation of v4.07.51? - Please do NOT exit the app during this process! + Услед грешке у оригиналној МикроГ апликацији инсталација Vanced v16+ захтева инсталирање v15.43.32 апликације, отворите улогујете се и онда инсталирати v16 или новију верзију. Желите да наставите инсталацију v15.43.32? + Услед грешке у оригиналној МикроГ апликацији инсталација Music v4.11+ захтева инсталирање v4.07.51 апликације, отворите улогујете се и онда инсталирати v4.11 или новију верзију. Желите да наставите инсталацију v4.07.51? + Немојте излазити из апликације у току овога процеса! Добро дошли Одаберите језик за коришћење Vanced апликације - Latest + Најновија Осветљење+%1$s Одаберите барем један језик! - Black - Dark + Црно + Тамно Менаџер развоја - Other Contributors + Други покровитељи Извор Vanced Тим Грешка при додели apk власнику система, покушајте поново. Грешка приликом преузимања %1$s Неуспешно деинсталирање пакета %1$s - Failed to apply new accent color + Неуспешно постављање нове носеће боје Није могуће пронаћи датотеке за инсталацију. Преузмите их поново и поновите инсталацију. Није могуће пронаћи apk датотеку за црно/тамну тему у меморијском простору, покушајте поново. Инсталација није успешна, корисник је обуставио инсталацију. Инсталација није успешна, корисник је блокирао инсталацију. - Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. - Installation failed because the app conflicts with an already installed app. Uninstall the current version of the app, then try again. - Инсталација није успеla, услед непознатог разлога, прикључите нам се на Telegram и Discord апликацијама за даљу подршку. + Инсталација није успешна, корисник је покушао да инсталира старију верзију преко новије верзије апликације. Деинсталирајте све до предодређене инсталиране верзије YouTubе апликације, затим покушајте поново. + Инсталација неуспешна, зато што је дошло до конфликта са већ инсталираном верзијом. Деинсталирајте тренутну верзију Vanced-а и затим покушајте поново. + Неуспешна инсталација услед непознатих разлога, Прикључите се нашем Telegram или Discord каналима за помоћ. Молимо да прикључите снимак екрана из Проширеног Менија Инсталација је неуспешна јер инсталациона датотека није компатибилна са вашим уређајем. Очистите преузете датотеке у Подешавањима и затим покушајте поново. Инсталација није успеla јер је apk датотека оштећена, покушајте поново. Инсталација неуспешна јер је укључена провера потписа преузете apk датотеке. Искључите apk проверу и затим покушајте поново. Инсталација неуспешна јер је укључена оптимизација за ову апликацију у MIUI систему. Искључите MIUI оптимизацију за ову апликацију и затим покушајте поново. - Инсталација неуспешна услед грешке у меоријском простору. + Инсталација неуспешна јер на уређају нема довољно слободног простора. Није могуће пронаћи apk датотеку за црно/тамну тему у инсталационим датотекама. Очистите податке у Менаџеру и покушајте поново. Није могуће пронаћи подразумевану YouTube локацију за инсталацију после подељене инсталације. diff --git a/app/src/main/res/values-sv-rSE/strings.xml b/app/src/main/res/values-sv-rSE/strings.xml index 72d78667..5a98605b 100644 --- a/app/src/main/res/values-sv-rSE/strings.xml +++ b/app/src/main/res/values-sv-rSE/strings.xml @@ -73,7 +73,7 @@ Guide Stopp! Ser ut som om du använder Magisk versionen av Vanced, som är avbruten och inte kan uppdateras med den här appen. Ta bort den först genom att ta bort magisk modulen. - MIUI upptäckt! + MIUI Optimeringar är aktiverade! För att installera Vanced, måste du inaktivera MIUI Optimisations i utvecklarinställningarna. (Du kan ignorera denna varning om du använder 20.2.20 eller senare xiaomi.eu-baserad ROM) Fel Ladda ner igen @@ -94,7 +94,7 @@ Mörk Hanteraren Dev - Other Contributors + Andra bidragsgivare Källor Vanced Team @@ -108,12 +108,12 @@ Åtgärden misslyckades eftersom användaren avbröt installationen. Installationen misslyckades eftersom användaren försökte nedgradera paketet. Avinstallera uppdateringar från lagerappen YouTube, försök sedan igen. Installationen misslyckades eftersom appen står i konflikt med en redan installerad app. Avinstallera den aktuella versionen av Vanced, försök sedan igen. - Operation misslyckades av okänd anledning, vänligen gå med i vårt Telegram eller Discord för support. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Installationen misslyckades eftersom installationsfilen är inkompatibel med din enhet. Rensa nedladdade filer i Inställningarna och försök igen. Installationen misslyckades eftersom apk-filerna är skadade, försök igen. Installationen misslyckades eftersom apk signaturverifiering är aktiverad. Inaktivera apk signaturverifiering och försök igen. Installationen misslyckades eftersom MIUI-optimering är aktiverad. Inaktivera MIUI-optimering och försök igen. - Åtgärden misslyckades på grund av ett lagringsfel. + Installation failed because the device doesn\'t have enough free space. Det gick inte att hitta apk-fil för svart/mörkt tema från installationsprogrammet. Rensa appdata från Manager och försök igen. Det gick inte att hitta sökvägen för lagerinstallationen på YouTube efter delad installation. diff --git a/app/src/main/res/values-ta-rIN/strings.xml b/app/src/main/res/values-ta-rIN/strings.xml index d8055b23..e6ef0256 100644 --- a/app/src/main/res/values-ta-rIN/strings.xml +++ b/app/src/main/res/values-ta-rIN/strings.xml @@ -73,8 +73,8 @@ வழிகாட்டி நிறுத்து! நீங்கள் வேன்ஸின் மேஜிஸ்க் / டி. டபிள்யூ. ஆர். பி பதிப்பைப் பயன்படுத்துகிறீர்கள், இது நிறுத்தப்பட்டது மற்றும் இந்த பயன்பாட்டைப் பயன்படுத்தி புதுப்பிக்க முடியாது. மேஜிஸ்க் தொகுதியை அகற்றி / TWRP Vanced uninstaller ஐப் பயன்படுத்தி அதை அகற்றவும். - MIUI கண்டறியப்பட்டது! - Vanced ஐ நிறுவ, டெவலப்பர் அமைப்புகளில் MIUI உகப்பாக்கங்களை முடக்க வேண்டும். (நீங்கள் 20.2.20 அல்லது அதற்குப் பிறகு xiaomi.eu அடிப்படையிலான ROM ஐப் பயன்படுத்துகிறீர்கள் என்றால் இந்த எச்சரிக்கையை நீங்கள் புறக்கணிக்கலாம்) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) பிழை மீண்டும் பதிவிறக்கு பயன்பாட்டை vancedapp.com, Vanced Discord சேவையகம் அல்லது Vanced GitHub இலிருந்து பதிவிறக்கம் செய்துள்ளீர்கள் என்பதை உறுதிப்படுத்திக் கொள்ளுங்கள் @@ -108,12 +108,12 @@ பயனர் நிறுவலைத் தடுத்ததால் நிறுவல் தோல்வியடைந்தது. பயனர் தொகுப்பை தரமிறக்க முயற்சித்ததால் நிறுவல் தோல்வியடைந்தது. பங்கு பயன்பாட்டிலிருந்து புதுப்பிப்புகளை நிறுவல் நீக்க, பின்னர் மீண்டும் முயற்சிக்கவும். ஏற்கனவே நிறுவப்பட்ட பயன்பாட்டுடன் பயன்பாடு முரண்படுவதால் நிறுவல் தோல்வியடைந்தது. பயன்பாட்டின் தற்போதைய பதிப்பை நிறுவல் நீக்கி, பின்னர் மீண்டும் முயற்சிக்கவும். - அறியப்படாத காரணங்களுக்காக நிறுவல் தோல்வியடைந்தது, மேலும் ஆதரவுக்காக எங்கள் டெலிகிராம் அல்லது டிஸ்கார்ட் இல் சேரவும். + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu நிறுவல் கோப்பு உங்கள் சாதனத்துடன் பொருந்தாததால் நிறுவல் தோல்வியடைந்தது. அமைப்புகளில் பதிவிறக்கம் செய்யப்பட்ட கோப்புகளை அழிக்கவும், பின்னர் மீண்டும் முயற்சிக்கவும். நிறுவல் தோல்வியுற்றது, ஏனெனில் Apk கோப்புகள் சிதைந்துள்ளன, தயவுசெய்து மீண்டும் முயற்சிக்கவும். Apk கையொப்ப சரிபார்ப்பு இயக்கப்பட்டிருப்பதால் நிறுவல் தோல்வியடைந்தது. Apk கையொப்ப சரிபார்ப்பை முடக்கு, பின்னர் மீண்டும் முயற்சிக்கவும். MIUI உகப்பாக்கம் இயக்கப்பட்டிருப்பதால் நிறுவல் தோல்வியடைந்தது. MIUI உகப்பாக்கத்தை முடக்கு, பின்னர் மீண்டும் முயற்சிக்கவும். - சேமிப்பக பிழை காரணமாக நிறுவல் தோல்வியடைந்தது. + Installation failed because the device doesn\'t have enough free space. நிறுவியிலிருந்து கருப்பு / இருண்ட கருப்பொருளுக்கான Apk கோப்பைக் கண்டுபிடிப்பதில் தோல்வி. மேலாளரின் பயன்பாட்டுத் தரவை அழிக்கவும், பின்னர் மீண்டும் முயற்சிக்கவும். பிளவு நிறுவலுக்குப் பிறகு பங்கு YouTube நிறுவல் பாதையை கண்டுபிடிப்பதில் தோல்வி. diff --git a/app/src/main/res/values-th-rTH/strings.xml b/app/src/main/res/values-th-rTH/strings.xml index 51be585d..651adc84 100644 --- a/app/src/main/res/values-th-rTH/strings.xml +++ b/app/src/main/res/values-th-rTH/strings.xml @@ -73,7 +73,7 @@ คู่มือ หยุด! คุณกำลังใช้ Vanced เวอร์ชัน Magisk / TWRP ซึ่งถูกยกเลิกและไม่สามารถอัปเดตได้จากแอปนี้ กรุณาลบออกโดยการถอดโมดูล Magisk / ใช้โปรแกรมถอนการติดตั้ง TWRP Vanced - ตรวจพบ MIUI! + MIUI Optimizations are enabled! ในการติดตั้ง Vanced คุณต้องปิดใช้งาน MIUI Optimisations ในการตั้งค่าสำหรับนักพัฒนา (คุณสามารถเพิกเฉยต่อคำเตือนนี้ได้หากคุณใช้ ROM ที่ใช้ xiaomi.eu 20.2.20 ขึ้นไป) ผิดพลาด ดาวน์โหลดอีกครั้ง @@ -108,12 +108,12 @@ การติดตั้งล้มเหลวเนื่องจากผู้ใช้บล็อกการติดตั้ง การติดตั้งล้มเหลวเนื่องจากผู้ใช้พยายามดาวน์เกรดแพ็กเกจ ถอนการติดตั้งการอัปเดตจากแอปเดิมก่อน แล้วลองอีกครั้ง Installation failed because the app conflicts with an already installed app. Uninstall the current version of the app, then try again. - การติดตั้งล้มเหลวโดยไม่ทราบสาเหตุ ลองเข้าร่วม Telegram หรือ Discord ของเรา เพื่อรับการสนับสนุนเพิ่มเติม + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu การติดตั้งล้มเหลวเนื่องจากไฟล์การติดตั้งเข้ากันไม่ได้กับอุปกรณ์ของคุณ กรุณาล้างไฟล์ที่ดาวน์โหลดในการตั้งค่า แล้วลองอีกครั้ง การติดตั้งล้มเหลวเนื่องจากไฟล์ apk เสียหายโปรดลองอีกครั้ง การติดตั้งล้มเหลวเนื่องจากเปิดใช้งานการตรวจสอบลายเซ็น apk กรุณาปิดใช้งานการตรวจสอบลายเซ็น apk แล้วลองอีกครั้ง การติดตั้งล้มเหลวเนื่องจากเปิดใช้งาน MIUI Optimization โปรดปิดการใช้งาน MIUI Optimization แล้วลองอีกครั้ง - การติดตั้งล้มเหลวเนื่องจากข้อผิดพลาดในการจัดเก็บ + Installation failed because the device doesn\'t have enough free space. ไม่พบไฟล์ apk สำหรับธีมสีดำ / สีเข้มจากโปรแกรมติดตั้ง กรุณาล้างข้อมูลแอปVanced-Manager แล้วลองอีกครั้ง ไม่พบเส้นทางการติดตั้งสต็อกของ YouTube หลังจากการติดตั้งแบบแยก diff --git a/app/src/main/res/values-tr-rTR/strings.xml b/app/src/main/res/values-tr-rTR/strings.xml index ea0e8016..cc656c36 100644 --- a/app/src/main/res/values-tr-rTR/strings.xml +++ b/app/src/main/res/values-tr-rTR/strings.xml @@ -63,7 +63,7 @@ Kayıtlar başarıyla kaydedildi Kayıtlar kaydedilemedi - Gelişmiş + Detaylar %1$s için kurulum dosyaları bulundu! Manager, %1$s kurulumu için gerekli olan dosyaları belirledi. Yüklemek ister misiniz? Güncellemeler kontrol ediliyor… @@ -73,8 +73,8 @@ Kılavuz Durdur! Geliştirilmesi durdurulan ve bu uygulama ile güncellenemeyen Vanced\'ın, Magisk/TWRP sürümünü kullanıyorsunuz. Lütfen Magisk/TWRP sürümünü cihazınızdan kaldırın. - MIUI tespit edildi! - Vanced\'i yüklemek için geliştirici ayarlarından MIUI Optimizasyonları, devre dışı bırakılmalıdır. (xiaomi.eu tabanlı 20.2.20 veya üzeri bir ROM kullanıyorsanız, bu uyarıyı göz ardı edebilirsiniz) + MIUI Optimizasyonu aktif gözüküyor! + Vanced\'ı yükleyebilmek için, geliştirici ayarlarından/seçeneklerinden MIUI optimizasyonunu devre dışı bırakmalısın. (xiaomi.eu tabanlı 20.2.20 sürüm veya üzeri ROM kullanıyorsan, bu uyarıyı göz ardı edebilirsin) Hata Tekrar İndir Uygulamayı vancedapp.com, Vanced Discord sunucusu, veya Vanced GitHub\'dan indirdiğinizden emin olun @@ -108,12 +108,12 @@ Kullanıcı kurulumu engellediği için kurulum başarısız oldu. Kullanıcı eski sürümü yüklemeye çalıştığı için kurulum tamamlanamadı. Orijinal YouTube uygulamasının güncellemelerini kaldırdıktan sonra yeniden deneyin. Uygulama önceden yüklenmiş bir uygulamayla çakıştığından yükleme başarısız oldu. Uygulamanın mevcut sürümünü kaldırın ve ardından tekrar deneyin. - Kurulum bilinmeyen nedenlerden dolayı başarısız oldu. Telegram veya Discord\'a katılarak destek alabilirsin. + Kurulum, bilinmeyen sebeplerden dolayı başarısız oldu. Telegram grubu veya Discord sunucusundan destek alabilirsin. Ayrıca, detaylar ekranının bir ekran görüntüsünü alıp, yardım talebinle birlikte iletmeyi unutma lütfen. Kurulum dosyası cihazınız ile uyumsuz olduğu için kurulum işlemi başarısız oldu. Ayarlar\'da indirilen dosyaları temizleyip, tekrar deneyin. APK dosyaları çözümlenemediğinden, kurulum başarısız oldu. Lütfen yeniden deneyin. APK imza doğrulaması etkin olduğundan, kurulum başarısız oldu. APK imza doğrulamasını devre dışı bırakıp, yeniden deneyin. MIUI Optimizasyonu etkin olduğundan, kurulum başarısız oldu. MIUI Optimizasyonunu devre dışı bırakıp, yeniden deneyin. - Kurulum, depoloma hatası sebebiyle başarısız oldu. + Yetersiz depolama alanından dolayı kurulum başarısız oldu. Yükleyicide Siyah/Koyu tema için APK dosyalarını ararken bir hata oluştu. Manager\'ın verilerini temizleyip, yeniden deneyin. Ayrı kurulum işleminden sonra orijinal YouTube kurulum yolu belirlenemedi. diff --git a/app/src/main/res/values-uk-rUA/strings.xml b/app/src/main/res/values-uk-rUA/strings.xml index b99f5417..46a3e842 100644 --- a/app/src/main/res/values-uk-rUA/strings.xml +++ b/app/src/main/res/values-uk-rUA/strings.xml @@ -8,7 +8,7 @@ Виберіть Ваші Додатки Про нас - Guide + Посібник Логі Менеджер Налаштування @@ -73,17 +73,17 @@ Гайд Зупинись! Ви використовуєте Magisk/TWRP версію Vanced, яка припиняється і не може бути оновлена за допомогою цього застосунку. Будь ласка, видаліть його, видаливши модуль Magisk / з використання TWRP Vanced uninstaller. - Виявлено користувача MIUI! - Щоб встановити Vanced, ви ПОВИННІ вимкнути оптимізацію MIUI у налаштуваннях розробника. (Ви можете ігнорувати це попередження якщо ви використовуєте 20.2.20 або новіші xiaomi.eu based ROM) + Оптимізацію MIUI увімкнено! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Помилка Завантажити заново Переконайтеся, що ви завантажили додаток з vancedapp.com, Vanced Discord сервер або Vanced GitHub Параметри встановлення %1$s Версія Помилка в microG - Due to a bug in the original microG, installing Vanced v16+ first requires you to install v15.43.32, open it, then login and only then can you install v16 and higher. Do you want to proceed with the installation of v15.43.32? - Due to a bug in the original microG, installing Music v4.11+ first requires you to install v4.07.51, open it, then login and only then can you install v4.11 and higher. Do you want to proceed with the installation of v4.07.51? - Please do NOT exit the app during this process! + У зв\'язку з помилкою в microG, встановлення Vanced версії 16+ спочатку вимагає встановлення версії 15.43.32, потім необхідно відкрити додаток, авторизуватися в акаунті і тільки після цього можна буде встановити версію 16 і вище. Ви хочете продовжити встановлення версії 15.43.32? + У зв\'язку з помилкою в microG, встановлення Music версії 4.11+ спочатку вимагає встановлення версії 4.07.51, потім необхідно відкрити додаток, авторизуватися в акаунті і тільки після цього можна буде встановити версію 4.11 і вище. Ви хочете продовжити встановлення версії 4.07.51? + Будь ласка, НЕ виходите з додатку протягом цього процесу! Привіт! Виберіть бажану мову(и) для Vanced @@ -108,12 +108,12 @@ Встановлення не вдалося, оскільки користувач заблокував встановлення. Встановлення не вдалася, так як користувач спробував знизити версію програми. Видаліть поновлення звичайного додатку YouTube, спробуйте ще раз. Встановлення не вдалася, так як додаток конфліктує з уже встановленим додатком. Видаліть поточну версію додатку, і спробуйте ще раз. - Інсталяція була провалена з невідомих причин. Приєднуйтесь до нашої групи в Telegram або Discord для подальшої підтримки. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Помилка встановлення, оскільки файл несумісний з вашим пристроєм. Очистіть завантажені файли в Налаштуваннях, а потім спробуйте ще раз. Встановлення неможливе, оскільки apk-файли пошкоджені, будь ласка, спробуйте ще раз. Помилка встановлення, оскільки увімкнено перевірку підпису apk. Вимкніть перевірку підпису apk, а потім спробуйте ще раз. Помилка встановлення, оскільки увімкнена оптимізація MIUI. Вимкніть оптимізацію MIUI і спробуйте ще раз. - Операція не вдалася через помилку зберігання. + Installation failed because the device doesn\'t have enough free space. Не вдалося знайти apk-файл для чорної/темної теми в програмі встановлення. Видаліть дані додатка з Менеджера і спробуйте ще раз. Не вдалося знайти типовий шлях встановлення YouTube після роздільного встановлення. diff --git a/app/src/main/res/values-vi-rVN/strings.xml b/app/src/main/res/values-vi-rVN/strings.xml index 8de8c287..1700ff64 100644 --- a/app/src/main/res/values-vi-rVN/strings.xml +++ b/app/src/main/res/values-vi-rVN/strings.xml @@ -73,8 +73,8 @@ Hướng dẫn Khoan đã! Bạn đang sử dụng phiên bản Magisk/TWRP của Vanced, hiện đã bị ngừng phát triển và không thể được cập nhập bằng ứng dụng này. Hãy gỡ mô-đun Magisk/flash trình gỡ cài đặt TWRP. - Phát hiện MIUI! - Để cài đặt Vanced, bạn BẮT BUỘC PHẢI vô hiệu hóa Tối ưu hóa MIUI trong cài đặt nhà phát triển. (Bỏ qua cảnh báo này nếu bạn đang sử dụng ROM dựa trên xiaomi.eu phiên bản 20.2.20 hoặc mới hơn) + Tối ưu hoá MIUI đang được kích hoạt! + Để cài đặt Vanced, bạn PHẢI vô hiệu hóa Tối ưu hóa MIUI trong cài đặt nhà phát triển. (Có thể bỏ qua cảnh báo này nếu bạn đang sử dụng ROM của xiaomi.eu phiên bản 20.2.20 hoặc mới hơn) Lỗi Tải lại Chắc chắn rằng bạn đã tải ứng dụng này từ vancedapp.com, server Discord của Vanced hoặc GitHub của Vanced @@ -94,7 +94,7 @@ Tối Đội ngũ phát triển - Other Contributors + Những người đóng góp khác Nguồn Đội ngũ Vanced @@ -108,12 +108,12 @@ Cài đặt thất bại do người dùng cản trở. Cài đặt thất bại do người dùng cố hạ cấp ứng dụng. Gỡ cài đặt các bản cập nhật khỏi ứng dụng gốc rồi thử lại. Cài đặt thất bại do có xung đột với ứng dụng đã được cài đặt trước đó. Gỡ cài đặt phiên bản hiện tại của ứng dụng rồi thử lại. - Cài đặt thất bại do lỗi không xác định, tham gia Telegram hoặc Discord của chúng tôi để được hỗ trợ thêm. + Cài đặt thất bại vì sự cố không xác định, tham gia Telegram hoặc Discord để được hỗ trợ. Vui lòng kèm theo ảnh chụp màn hình từ menu Mở rộng Cài đặt thất bại do tệp tin cài đặt không tương thích với thiết bị của bạn. Xóa các tệp tin đã tải về trong Cài đặt rồi thử lại. Cài đặt thất bại do các tệp tin apk bị lỗi, xin hãy thử lại. Cài đặt thất bại do xác minh chứng chỉ apk được kích hoạt. Vô hiệu hóa xác minh chứng chỉ apk rồi thử lại. Cài đặt thất bại do Tối ưu hóa MIUI được kích hoạt. Vô hiệu hóa Tối ưu hóa MIUI rồi thử lại. - Cài đặt thất bại do lỗi bộ nhớ. + Cài đặt thất bại do thiết bị của bạn không có đủ bộ nhớ trống. Tìm kiếm tệp tin apk cho nền đen/tối từ trình cài đặt thất bại. Xoá dữ liệu của Manager rồi thử lại. Không thể xác định thư mục cài đặt của YouTube gốc sau khi tải split. diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index 36e2adba..4d3845e6 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -3,8 +3,8 @@ 取消 关闭 - 重设 - 储存 + 重置 + 保存 选择您的应用 关于 @@ -18,7 +18,7 @@ 授予 Root 权限 选择至少一个应用! Vanced ,不过是 YouTube 音乐!\n功能相对较少,但足以满足您的需求。 - YouTube Vanced 是增强版的原生 YouTube ! + YouTube Vanced 是官方 YouTube 应用的增强版! 让我们开始吧 不知道这是什么或不想使用 Root 版本?只需点击下面的蓝色箭头! @@ -73,8 +73,8 @@ 说明 警告! 您正在使用 Magisk/TWRP 版的 Vanced,它已被停止支持且无法通过此应用更新。请通过移除 Magisk 模块 / 使用 TWRP Vanced 卸载器来移除它。 - 检测到 MIUI! - 为了能够正确安装 Vanced ,您必须在开发者设置中禁用 MIUI 优化。 (如果您正在使用基于 xiomi.eu 20.2.20或更新的 ROM,您可以忽略此警告) + MIUI 优化已启用! + 为了能够安装 Vanced,您必须在开发者设置中禁用 MIUI 优化。(如果您正在使用基于 xiaomi.eu 20.2.20 或更新的 ROM,您可以忽略此警告) 错误 重新下载 请确保您是从 vancedapp.com 、 Vanced Discord 服务器或 Vanced Github 下载本应用 @@ -94,7 +94,7 @@ 深色 Manager 开发人员 - Other Contributors + 其它贡献者: 源码 Vanced 团队 @@ -108,12 +108,12 @@ 用户封锁安装导致安装失败。 用户试图降级应用导致安装失败。卸载官方应用的更新,然后重试。 应用与已安装的应用发生冲突导致安装失败。卸载当前的版本,然后重试。 - 未知原因导致安装失败,加入我们的 Telegram 或 Discord 寻求更多支援。 + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu 安装文件与您的设备不相容导致安装失败。请在设置中清除已下载的文件,然后重试。 apk 文件已被损坏导致安装失败,请重试。 apk 签名验证已被启用导致安装失败。禁用apk 签名验证,然后重试。 MIUI 优化已被启用导致安装失败。禁用 MIUI 优化,然后重试。 - 存储错误导致安装失败。 + Installation failed because the device doesn\'t have enough free space. 无法从安装程式中找到黑色/深色主题的 apk 文件。清除 Manager 的应用数据,然后重试。 分包安装后无法定位原生 YouTube 的安装路径。 diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 7f702afa..a35f092f 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -73,8 +73,8 @@ 說明 警告! 您正使用 Magisk/TWRP 版本的 Vanced ,它已停止支援並無法透過此程式更新。請透過移除 Magisk 模組/使用 TWRP Vanced 解除安裝程式來移除它。 - 已偵測到 MIUI! - 為了能夠正確安裝 Vanced ,您必須在開發人員設定中停用 MIUI 優化。 (如果您使用基於 xiomi.eu 20.2.20 或更新的 ROM ,則可以忽略此警告) + 已啟用 MIUI 優化! + 欲安裝 Vanced,請先至開發人員選項停用 MIUI 優化。(若您正在使用 20.2.20 或更新版本且基於的 xiaomi.eu 的系統,請忽略此警告) 錯誤 重新下載 請確保您從 vancedapp.com、Vanced Discord 伺服器或 Vanced GitHub 下載本程式 @@ -108,12 +108,12 @@ 使用者封鎖安裝導致安裝失敗。 使用者試圖降級導致安裝失敗。解除安裝原生應用程式的更新,然後重試。 程式與已安裝的程式發生衝突導致安裝失敗。解除安裝當前的版本,然後重試。 - 未知原因導致安裝失敗,請至我們的 Telegram 或 Discord 取得更多支援。 + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu 安裝檔案與您的裝置不相容導致安裝失敗。請在設定中清除已下載的檔案,然後重試。 apk 檔案已被損毀導致安裝失敗,請重試。 apk 簽名驗證已被啟用導致安裝失敗。停用 apk 簽名驗證,然後重試。 MIUI 優化已被啟用導致安裝失敗。停用 MIUI 優化,然後重試。 - 儲存空間發生錯誤導致安裝失敗。 + 由於裝置的可用空間不足,因此安裝失敗。 在安裝程式中找不到深色/黑色主題的 apk 檔案。請清除 Manager 應用程式的資料,然後再試。 分割安裝後無法找到原生 YouTube 安裝路徑。 diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml index ebb0e226..a781c629 100644 --- a/app/src/main/res/values/dimens.xml +++ b/app/src/main/res/values/dimens.xml @@ -1,7 +1,6 @@ - 12dp 16dp 128dp diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index bea06c1b..6c8ac6f8 100755 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -119,12 +119,12 @@ Installation failed because the user blocked the installation. Installation failed because the user tried to downgrade the package. Uninstall updates from the stock app, then try again. Installation failed because the app conflicts with an already installed app. Uninstall the current version of the app, then try again. - Installation failed for unknown reasons, join our Telegram or Discord for further support. + Installation failed for unknown reasons, join our Telegram or Discord for further support. Please also attach a screenshot from the Advanced menu Installation failed because the installation file is incompatible with your device. Clear downloaded files in the Settings, then try again. Installation failed because the apk files are corrupted, please try again. Installation failed because apk signature verification is enabled. Disable apk signature verification, then try again. Installation failed because MIUI Optimization is enabled. Disable MIUI Optimization, then try again. - Installation failed due to a storage error. + Installation failed because the device doesn\'t have enough free space. Failed to find apk file for black/dark theme from the installer. Clear app data of Manager, then try again. Failed to locate the stock YouTube installation path after split installation. diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml index f67eda09..89ee5444 100644 --- a/app/src/main/res/values/styles.xml +++ b/app/src/main/res/values/styles.xml @@ -130,11 +130,6 @@ ?colorLinkImage - -