diff --git a/app/src/main/java/com/vanced/manager/ui/MainActivity.kt b/app/src/main/java/com/vanced/manager/ui/MainActivity.kt index b190c3f9..d488a4d1 100644 --- a/app/src/main/java/com/vanced/manager/ui/MainActivity.kt +++ b/app/src/main/java/com/vanced/manager/ui/MainActivity.kt @@ -7,7 +7,6 @@ import android.view.MenuItem import android.widget.Toast import androidx.appcompat.app.AppCompatActivity import androidx.databinding.DataBindingUtil -import androidx.navigation.fragment.NavHostFragment import androidx.preference.PreferenceManager.getDefaultSharedPreferences import com.crowdin.platform.Crowdin import com.crowdin.platform.LoadingStateListener @@ -31,7 +30,7 @@ import kotlinx.coroutines.launch class MainActivity : AppCompatActivity() { private lateinit var binding: ActivityMainBinding - + private val loadingObserver = object : LoadingStateListener { val tag = "VMLocalisation" override fun onDataChanged() { @@ -48,7 +47,6 @@ class MainActivity : AppCompatActivity() { override fun onTabSelected(tab: TabLayout.Tab) { if (tab.position == 1 && !Shell.rootAccess()) { - tab.select(0) Toast.makeText(this@MainActivity, getString(R.string.root_not_granted), Toast.LENGTH_SHORT).show() return } @@ -112,12 +110,6 @@ class MainActivity : AppCompatActivity() { binding.mainTablayout.addOnTabSelectedListener(tabListener) } - override fun onBackPressed() { - super.onBackPressed() - val navHost = supportFragmentManager.findFragmentById(R.id.nav_host) as NavHostFragment - navHost.navController.popBackStack() - } - override fun onOptionsItemSelected(item: MenuItem): Boolean { if (installing) { return false @@ -145,10 +137,6 @@ class MainActivity : AppCompatActivity() { super.attachBaseContext(Crowdin.wrapContext(newBase)) } - fun TabLayout.Tab.select(position: Int) { - this.parent?.getTabAt(position)?.select() - } - private fun initDialogs() { val prefs = getDefaultSharedPreferences(this) val variant = prefs.getString("vanced_variant", "nonroot") 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 48c917b3..869e99f2 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,16 +30,20 @@ open class HomeFragment : Fragment(), View.OnClickListener { private val viewModel: HomeViewModel by viewModels() private val localBroadcastManager by lazy { LocalBroadcastManager.getInstance(requireActivity()) } + override fun onStart() { + super.onStart() + } + override fun onCreateView( inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle? ): View? { + variant = if (requireActivity().findViewById(R.id.main_tablayout).selectedTabPosition == 1) "root" else "nonroot" + viewModel.variant = variant requireActivity().title = getString(R.string.title_home) setHasOptionsMenu(true) - variant = if (requireActivity().findViewById(R.id.main_tablayout).selectedTabPosition == 1) "root" else "nonroot" binding = DataBindingUtil.inflate(inflater, R.layout.fragment_home, container, false) binding.viewModel = viewModel - viewModel.variant = variant return binding.root } diff --git a/app/src/main/java/com/vanced/manager/ui/fragments/MainFragment.kt b/app/src/main/java/com/vanced/manager/ui/fragments/MainFragment.kt index dca5f541..e1a7772c 100644 --- a/app/src/main/java/com/vanced/manager/ui/fragments/MainFragment.kt +++ b/app/src/main/java/com/vanced/manager/ui/fragments/MainFragment.kt @@ -60,15 +60,14 @@ class MainFragment : Fragment() { } } } + } private fun setDisplayHomeAsUpEnabled(isNeeded: Boolean) { with(requireActivity()) { - findViewById(R.id.home_toolbar).navigationIcon = if (isNeeded) ContextCompat.getDrawable(requireActivity(), R.drawable.ic_keyboard_backspace_black_24dp) else null + findViewById(R.id.home_toolbar).navigationIcon = if (isNeeded) ContextCompat.getDrawable(this, R.drawable.ic_keyboard_backspace_black_24dp) else null } } - - override fun onOptionsItemSelected(item: MenuItem): Boolean { when (item.itemId) { @@ -77,15 +76,15 @@ class MainFragment : Fragment() { return true } R.id.toolbar_about -> { - navHost.navigate(R.id.toAboutFragment) + navHost.navigate(HomeFragmentDirections.toAboutFragment()) return true } R.id.toolbar_settings -> { - navHost.navigate(R.id.action_settingsFragment) + navHost.navigate(HomeFragmentDirections.toSettingsFragment()) return true } R.id.dev_settings -> { - navHost.navigate(R.id.toDevSettingsFragment) + navHost.navigate(SettingsFragmentDirections.toDevSettingsFragment()) return true } else -> super.onOptionsItemSelected(item) diff --git a/app/src/main/java/com/vanced/manager/ui/fragments/SettingsFragment.kt b/app/src/main/java/com/vanced/manager/ui/fragments/SettingsFragment.kt index 514acbe8..763e7bb1 100644 --- a/app/src/main/java/com/vanced/manager/ui/fragments/SettingsFragment.kt +++ b/app/src/main/java/com/vanced/manager/ui/fragments/SettingsFragment.kt @@ -101,7 +101,6 @@ class SettingsFragment : PreferenceFragmentCompat() { } true } - } override fun onCreateOptionsMenu(menu: Menu, inflater: MenuInflater) { diff --git a/app/src/main/res/anim/slide_in_left.xml b/app/src/main/res/anim/slide_in_left.xml deleted file mode 100644 index 8eafdbfb..00000000 --- a/app/src/main/res/anim/slide_in_left.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/anim/slide_in_right.xml b/app/src/main/res/anim/slide_in_right.xml deleted file mode 100644 index e55110ff..00000000 --- a/app/src/main/res/anim/slide_in_right.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/anim/slide_out_left.xml b/app/src/main/res/anim/slide_out_left.xml deleted file mode 100644 index 3cef665c..00000000 --- a/app/src/main/res/anim/slide_out_left.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/anim/slide_out_right.xml b/app/src/main/res/anim/slide_out_right.xml deleted file mode 100644 index 190a3bea..00000000 --- a/app/src/main/res/anim/slide_out_right.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml index 40131168..fdfe8a65 100644 --- a/app/src/main/res/layout/activity_main.xml +++ b/app/src/main/res/layout/activity_main.xml @@ -24,7 +24,7 @@ android:background="?colorSurface"/> - + - + diff --git a/app/src/main/res/navigation/mobile_navigation.xml b/app/src/main/res/navigation/mobile_navigation.xml index b43c0285..0f4487dd 100644 --- a/app/src/main/res/navigation/mobile_navigation.xml +++ b/app/src/main/res/navigation/mobile_navigation.xml @@ -13,7 +13,7 @@ tools:layout="@layout/fragment_home"> Failed to uninstall package %1$s Error Downloading %1$s Install - Installing %1$s Operation failed because the user aborted the installation. Operation failed because the user blocked the installation. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Reinstall Installed: Latest: - Successfully installed %1$s - Network connection unavailable microG isn\'t installed Root access not granted Unavailable @@ -69,7 +66,6 @@ Update found! No new updates - Dismiss Guide Hold on! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ Choose your preferred language for Vanced Note: English will always be installed as an additional language as well. Choose your preferred theme for Vanced - Root mode detected! To install Vanced, you will need to disable the apk signature verification. Finish Light + Black Light + Dark diff --git a/app/src/main/res/values-ar-rSA/strings.xml b/app/src/main/res/values-ar-rSA/strings.xml index 973adea1..fc70d21f 100644 --- a/app/src/main/res/values-ar-rSA/strings.xml +++ b/app/src/main/res/values-ar-rSA/strings.xml @@ -14,7 +14,6 @@ فشل في الغاء تثبيت الحزمة %1$s خطأ في تحميل %1$s تثبيت - جاري التثبيت %1$s فشلت العملية لأن المستخدم ألغى التثبيت. فشلت العملية لأن المستخدم قام بحظر التثبيت. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ إعادة التثبيت مثبت: آخر: - تم تثبيت %1$s بنجاح - اتصاا الشبكة غير متاح microG isn\'t installed لم يتم منح الوصول للجذر غير متاح @@ -69,7 +66,6 @@ تم العثور على التحديث! لا يوجد تحديثات جديدة - إزالة المعالج إنتظر! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -86,7 +82,6 @@ اختر اللغة المفضلة لفانسد لاحظة: اذا قمت تثبيت بأي لغة غير الانجليزية، سيكون اللغة الانجليزية مثبتة بللغة اضافية اختر موضوع اللون المفضلة لفانسد - تم اكتشاف وضع الجذر! لتثبيت Vanc، سوف تحتاج إلى تعطيل التحقق من توقيع apk. نهاية ابيض + اسود ابيض + داكن diff --git a/app/src/main/res/values-bn-rBD/strings.xml b/app/src/main/res/values-bn-rBD/strings.xml index bd460e6b..bc85ea52 100644 --- a/app/src/main/res/values-bn-rBD/strings.xml +++ b/app/src/main/res/values-bn-rBD/strings.xml @@ -14,7 +14,6 @@ Failed to uninstall package %1$s Error Downloading %1$s ইনস্টল - %1$s ইনস্টল করা হচ্ছে Operation failed because the user aborted the installation. Operation failed because the user blocked the installation. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ পুনঃইনস্টল ইনস্টলকৃত: সর্বশেষ: - সফলভাবে ইন্সটলকৃত %1$s - Network connection unavailable microG isn\'t installed রুট অনুমতি দেয়া হয়নি অনুপলব্ধ @@ -69,7 +66,6 @@ Update found! No new updates - Dismiss সহায়িকা দাঁড়াও! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ Choose your preferred language for Vanced Note: English will always be installed as an additional language as well. Choose your preferred theme for Vanced - Root mode detected! To install Vanced, you will need to disable the apk signature verification. শেষ আলো + কালো আলো + অন্ধকার diff --git a/app/src/main/res/values-bn-rIN/strings.xml b/app/src/main/res/values-bn-rIN/strings.xml index 9b8aa73d..9b075af7 100644 --- a/app/src/main/res/values-bn-rIN/strings.xml +++ b/app/src/main/res/values-bn-rIN/strings.xml @@ -14,7 +14,6 @@ Failed to uninstall package %1$s Error Downloading %1$s Install - Installing %1$s Operation failed because the user aborted the installation. Operation failed because the user blocked the installation. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Reinstall Installed: Latest: - Successfully installed %1$s - Network connection unavailable microG isn\'t installed Root access not granted Unavailable @@ -69,7 +66,6 @@ আপডেট পাওয়া গেল! কোনও নতুন আপডেট নেই - খারিজ করা গাইড অপেক্ষা কর! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ এর জন্য আপনার পছন্দসই ভাষা চয়ন করুন Vanced দ্রষ্টব্য: ইংরেজি সর্বদা অতিরিক্ত ভাষা হিসাবে ইনস্টল করা হবে। এর জন্য আপনার পছন্দসই থিমটি চয়ন করুন Vanced - রুট মোড সনাক্ত! স্থাপন করা Vanced, আপনি অক্ষম করতে হবে apk স্বাক্ষর যাচাইকরণ।. শেষ হালকা + কালো হালকা + গাark diff --git a/app/src/main/res/values-ca-rES/strings.xml b/app/src/main/res/values-ca-rES/strings.xml index 1ca5860c..5f650285 100644 --- a/app/src/main/res/values-ca-rES/strings.xml +++ b/app/src/main/res/values-ca-rES/strings.xml @@ -14,7 +14,6 @@ Error en instal·lar el paquet %1$s Error en descarregar %1$s Instal·lar - Instal·lant %1$s L\'operació ha fallat perquè l\'usuari ha cancel·lat la instal·lació. L\'operació ha fallat perquè l\'usuari ha blocat la instal·lació. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Reinstal·la Instal·lat: Darrera: - Instal·lat amb èxit %1$s - No hi ha connexió a xarxa disponible microG isn\'t installed L\'accés arrel no s\'ha concedit No disponible @@ -69,7 +66,6 @@ Actualització disponible! Cap actualització - Descartar Guia Espereu! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ Choose your preferred language for Vanced Note: English will always be installed as an additional language as well. Choose your preferred theme for Vanced - Root mode detected! To install Vanced, you will need to disable the apk signature verification. Finish Light + Black Light + Dark diff --git a/app/src/main/res/values-cs-rCZ/strings.xml b/app/src/main/res/values-cs-rCZ/strings.xml index 129e8a7b..69489b1b 100644 --- a/app/src/main/res/values-cs-rCZ/strings.xml +++ b/app/src/main/res/values-cs-rCZ/strings.xml @@ -14,7 +14,6 @@ Nepodařilo se odinstalovat balíček %1$s Chyba při stahování %1$s Instalace - Probíhá instalace %1$s Operace se nezdařila, protože uživatel přerušil instalaci. Operace se nezdařila, protože uživatel zablokoval instalaci. Operace se nezdařila, protože se uživatel pokusil downgradovat balíček. Máte nainstalovánu standardní aplikaci YouTube? @@ -29,8 +28,6 @@ Přeinstalovat Nainstalováno: Nejnovější: - Úspěšně nainstalováno %1$s - Nelze se připojit k Internetu microG není nainstalováno Root přístup nebyl udělen Není k dispozici @@ -69,7 +66,6 @@ Nalezena aktualizace! Žádné nové aktualizace - Zavřít Návod Počkejte! Vypadá to, že používáte verzi Vanced pro Magisk/TWRP, která je ukončena a pomocí této aplikace ji nelze aktualizovat. Nejprve ji odstraňte odinstalací modulu Magisk/použitím Vanced odinstalátoru v TWRP. @@ -85,7 +81,6 @@ Vyberte preferovaný jazyk pro Vanced Poznámka: Angličtina bude vždy nainstalována jako dodatečný jazyk. Vyberte preferovaný vzhled pro Vanced - Byl zjištěn režim root! Chcete-li nainstalovat Vanced, budete muset vypnout ověření podpisu APK. Dokončit Světlý + černý Světlý + tmavý diff --git a/app/src/main/res/values-da-rDK/strings.xml b/app/src/main/res/values-da-rDK/strings.xml index 2b2262f5..24d83d45 100644 --- a/app/src/main/res/values-da-rDK/strings.xml +++ b/app/src/main/res/values-da-rDK/strings.xml @@ -14,7 +14,6 @@ Fejlede i at fjerne pakke %1$s Fejl i download af %1$s Installer - Installerer %1$s Operationen fejlede fordi brugeren lukkede installationen. Operationen fejlede fordi brugeren blokerede installationen. Operationen fejlede fordi brugeren prøvede at nedgradere pakken. Har du YouTube appen installeret? @@ -29,8 +28,6 @@ Geninstaller Installeret: Seneste: - Installerede %1$s succesfuldt - Netværksforbindelse utilgængelig microG er ikke installeret Root adgang ikke tildelt Utilgængelig @@ -69,7 +66,6 @@ Opdatering fundet! Ingen nye opdateringer - Luk Vejledning Et øjeblik! 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. @@ -85,7 +81,6 @@ Vælg dit fortrukne sprog til Vanced Note: Engelsk vil altid blive installeret som et alternativt sprog også. Vælg dit fortrukne tema til Vanced - Root mode fundet! For at installere Vanced er du nødt til at disable appsignatur verifikation. Afslut Lyst + Sort Lyst + Mørkt diff --git a/app/src/main/res/values-de-rDE/strings.xml b/app/src/main/res/values-de-rDE/strings.xml index c47eeb0d..698b78de 100644 --- a/app/src/main/res/values-de-rDE/strings.xml +++ b/app/src/main/res/values-de-rDE/strings.xml @@ -14,7 +14,6 @@ Entfernen von %1$s fehlgeschlagen Download von %1$s fehlgeschlagen Installieren - %1$s wird installiert Operation fehlgeschlagen, da der Nutzer sie abgebrochen hat Operation fehlgeschlagen, da der Nutzer die Installation nicht gestattet hat Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Neu installieren Installiert: Neueste: - %1$s erfolgreich installiert - Keine Netzwerkverbindung verfügbar Weibo ist nicht installiert Root-Zugriff nicht erteilt Nicht verfügbar @@ -69,7 +66,6 @@ Update gefunden! Keine neuen Updates - Schließen Erklärung Warte! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ Wähle deine bevorzugte Sprache für Vanced Beachte: Englisch wird immer als zusätzliche Sprache installiert Wähle dein bevorzugtes Theme für Vanced - Root-Modus erkannt! Um Vanced erfolgreich zu installieren, stelle sicher, dass du die Signatur-Verifikation deaktiviert hast. Abschließen Hell + Schwarz Hell + Dunkel diff --git a/app/src/main/res/values-el-rGR/strings.xml b/app/src/main/res/values-el-rGR/strings.xml index 8f90a43f..5e4ad84c 100644 --- a/app/src/main/res/values-el-rGR/strings.xml +++ b/app/src/main/res/values-el-rGR/strings.xml @@ -14,7 +14,6 @@ Αποτυχία απεγκατάστασης αρχείου %1$s Πρόβλημα στο κατέβασμα %1$s Εγκατέστησε - Εγκατάσταση %1$s Η διαδικασία απέτυχε λόγω ακύρωσης από τον χρήστη. Η διαδικασία απέτυχε λόγω απόκλεισης από τον χρήστη. Η διεργασία απέτυχε διότι ο χρήστης προσπάθησε να υποβαθμίσει το πακέτο. Έχετε εγκαταστήσει το κανονικό YouTube; @@ -29,8 +28,6 @@ Επανεγκατάσταση Εγκατεστημένο: Πιο πρόσφατο: - Εγκαταστάθηκε επιτυχώς %1$s - Δεν υπάρχει σύνδεση στο διαδίκτυο το microG δεν είναι εγκατεστημένο Δεν δόθηκαν Root άδειες Μη διαθέσιμο @@ -69,7 +66,6 @@ Διαθέσιμη ενημέρωση! Καμία διαθέσιμη ενημέρωση - Αγνόηση Οδηγός Περιμένετε! Φαίνεται πως χρησιμοποιήτε την Magisk/TWRP έκδοση του Vanced, η οποία δεν υποστηρίζεται πλέον και δεν μπορεί να ενημερωθεί μέσω αυτής της εφαρμογής. Παρακαλούμε διαγράψτε αυτή την έκδοση αφαιρώντας το Magisk Module/χρησιμοποιόντας το πρόγραμμα κατάργησης TWRP Vanced. @@ -85,7 +81,6 @@ Επιλέξτε την γλώσσα που επιθυμείτε για το Vanced Σημείωση: Τα αγγλικά θα εγκατασταθούν ως δεύτερη γλώσσα ούτως ή άλλως. Επιλέξτε το χρώμα που επιθυμείτε για το Vanced - Επιλέχθηκε λειτουργία Root! Για να εγκαταστείσετε το Vanced, πρέπει να απενεργοποιήσετε το APK Signature Verification. Τέλος Ανοιχτό + Μαύρο Ανοιχτό + Σκούρο diff --git a/app/src/main/res/values-es-rES/strings.xml b/app/src/main/res/values-es-rES/strings.xml index 7691ed63..fdc868d2 100644 --- a/app/src/main/res/values-es-rES/strings.xml +++ b/app/src/main/res/values-es-rES/strings.xml @@ -14,7 +14,6 @@ Falla al desinstalar paquete %1$s Error al descargar %1$s Instalar - Instalando %1$s La operación fallo porque el usuario abortó la instalación La operación fallo porque el usuario bloqueo la instalación Operación fallida porque el usuario intentó degradar el paquete. ¿Tienes instalado YouTube original? @@ -29,8 +28,6 @@ Reinstalar Instalado: Más reciente: - Instalación exitosa %1$s - Conexion a la red no disponible microG no está instalado Acceso root no concedido No Disponible @@ -69,7 +66,6 @@ Actualización encontrada! Sin actualizaciónes nuevas - Descartar Guía Un momento! Parece que estas usando la versión Magisk/TWRP de Vanced, la cual está descontinuada y no puede ser actualizada utilizando esta app. Por favor, elimínalo primero quitando el módulo magisk/usando el desinstalador para vanced de TWRP. @@ -85,7 +81,6 @@ Elige tu idioma preferido para Vanced Nota: Ingles va a estar instalado como un idioma adicional. Elige tu tema preferido para Vanced - Modo root detectado! Para instalar Vanced, necesitaras deshabilitar verificación de firmas(disable signature verification). Finalizar Claro + Negro Claro + Oscuro diff --git a/app/src/main/res/values-fi-rFI/strings.xml b/app/src/main/res/values-fi-rFI/strings.xml index fff997b6..fd76535c 100644 --- a/app/src/main/res/values-fi-rFI/strings.xml +++ b/app/src/main/res/values-fi-rFI/strings.xml @@ -14,7 +14,6 @@ Paketin %1$s asennus epäonnistui %1$s lataus epäonnistui Asenna - Asennetaan %1$s Operaatio epäonnistui, koska käyttäjä keskeytti asennuksen. Operaatio epäonnistui, koska käyttäjä esti asennuksen. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Uudelleenasenna Asennettu: Uusin: - %1$s asennus onnistui - Verkkoyhteys ei ole käytettävissä microG isn\'t installed Pääkäyttäjän oikeuksia ei ole annettu Ei saatavilla @@ -69,7 +66,6 @@ Päivitys löytyi! Ei uusia päivityksiä - Ohita Opas Odotas vähän! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ Valitse haluamasi kieli Huom: Englanti asennetaan rinnalle aina. Valitse haluamasi teema - Pääkäyttäjän tila tunnistettu! Asentaaksei Vanced-sovelluksen, ole hyvä ja poista APK-paketin allekirjoituksen tarkistus pois käytöstä. Valmis Vaalea + Musta Vaalea + Tumma diff --git a/app/src/main/res/values-fr-rFR/strings.xml b/app/src/main/res/values-fr-rFR/strings.xml index 167e9f54..1b5aee00 100644 --- a/app/src/main/res/values-fr-rFR/strings.xml +++ b/app/src/main/res/values-fr-rFR/strings.xml @@ -14,7 +14,6 @@ N\'a pas pu désinstaller le paquet %1$s Erreur en téléchargeant %1$s Installer - Installation de %1$s L\'opération à échouée, l\'utilisateur à abandonné l\'installation. L\'opération à échouée, l\'utilisateur à bloqué l\'installation. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Réinstaller Version installée: Dernière version: - %1$s installé avec succès - Connection réseau indisponible microG isn\'t installed Accès root non autorisé Indisponible @@ -69,7 +66,6 @@ Mise à jour disponible! Aucune mise à jour disponible - Faire disparaître Guide Attends une seconde! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ Choisir votre langue préférée pour Vanced Note: l\'Anglais sera toujours installé en tant que langue additionnelle, quel que soit votre choix Choisis le thème de Vanced - Mode root détecté! Pour installer Vanced, vous devez désactiver la vérification des signatures des apk. Terminer Clair + Noir Clair + Sombre diff --git a/app/src/main/res/values-hi-rIN/strings.xml b/app/src/main/res/values-hi-rIN/strings.xml index 53119e12..ebcf7e4b 100644 --- a/app/src/main/res/values-hi-rIN/strings.xml +++ b/app/src/main/res/values-hi-rIN/strings.xml @@ -14,7 +14,6 @@ पैकेज की स्थापना रद्द करने में विफल %1$s डाउनलोड करने में इरर %1$s इंस्टॉल - %1$s इन्स्टॉःल कर रहा है ऑपरेशन विफल हो गया क्योंकि उपयोगकर्ता ने स्थापना रद्द कर दी थी उपयोगकर्ता अवरुद्ध स्थापना के कारण ऑपरेशन विफल हुआ Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ फिर से इंस्टॉल (इन्स्टॉल्ड लेट्इस्ट - सफलतापूर्वक इन्स्टॉल्ड %1$s - नेटवर्क कनेक्शन अनुपलब्ध है microG isn\'t installed रूट एक्सेस प्रदान नही किया गया अनुपलब्ध @@ -69,7 +66,6 @@ अपडेट मिला! कोई नया अपडेट नहीं - डिस्मिस गाइड रुको! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -86,7 +82,6 @@ वांसड के लिए अपनी पसंदीदा भाषा चुनें नोट: यदि आप अंग्रेजी के अलावा कुछ भी स्थापित करते हैं, तब भी अंग्रेजी एक अतिरिक्त भाषा के रूप में स्थापित की जाएगी अपने पसंदीदा विषय को नृत्य के लिए चुनें - रूट मोड का पता चला! प्रबंधक के लिए Vanced को सही तरीके से स्थापित करने के लिए, कृपया सुनिश्चित करें कि आपने हस्ताक्षर सत्यापन को अक्षम कर दिया है। अन्त लाइट + ब्लैक लाइट + डार्क diff --git a/app/src/main/res/values-hu-rHU/strings.xml b/app/src/main/res/values-hu-rHU/strings.xml index 9ba052b4..27cce299 100644 --- a/app/src/main/res/values-hu-rHU/strings.xml +++ b/app/src/main/res/values-hu-rHU/strings.xml @@ -14,7 +14,6 @@ A %1$s-t nem sikerült eltávolítani %1$s letöltése nem sikerült Telepítés - %1$s telepítése A művelet végrehajtása nem sikerült, mert a felhasználó megszakította a telepítést. A művelet végrehajtása nem sikerült, mert a felhasználó megszakította a telepítést. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Újratelepítés Telepítve: Legújabb: - %1$s sikeresen telepítve - Nincs internetkapcsolat microG nincs telepítve Nincs root jogosultság Nem elérhető @@ -69,7 +66,6 @@ Frissítés érhető el! Nincsenek új frissítések - Bezár Útmutató Figyelem! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ Preferált nyelv választása Az angol mindíg telepítve lesz, mint választható nyelv. Vanced téma kiválasztása - Root jogosultság észlelve! A Vanced telepítéséhez kapcsold ki a csomagaláírás ellenőrzést. Kész Világos + Sötét Világos + Fekete diff --git a/app/src/main/res/values-in-rID/strings.xml b/app/src/main/res/values-in-rID/strings.xml index 7138df6c..81d8a37a 100644 --- a/app/src/main/res/values-in-rID/strings.xml +++ b/app/src/main/res/values-in-rID/strings.xml @@ -14,7 +14,6 @@ Gagal mencopot pemasangan paket %1$s Gagal Mengunduh %1$s Pasang - Memasang %1$s Proses gagal karena pengguna membatalkan instalasi. Proses gagal karena pengguna memblokir instalasi. Proses gagal karena pengguna mencoba untuk menurunkan versi paket. Apakah anda mempunyai YouTube bawaan terpasang? @@ -29,8 +28,6 @@ Pasang ulang Terpasang: Terbaru: - Berhasil dipasang %1$s - Koneksi internet tidak tersedia microG tidak terpasang Akses Root tidak diberikan Tidak tersedia @@ -69,7 +66,6 @@ Pembaruan ditemukan! Tidak ada pembaruan - Hilangkan Petunjuk Tahan! Sepertinya anda menggunakan Vanced versi Magisk/TWRP, yang pengembangannya dihentikan dan tidak bisa diperbarui menggunakan aplikasi ini. Mohon untuk menghapus itu terlebih dahulu dengan menghapus modul magisk/gunakan pencopot Vanced TWRP. @@ -85,7 +81,6 @@ Pilih bahasa yang anda inginkan untuk Vanced Catatan: Inggris akan selalu terpasang sebagai bahasa tambahan. Pilih tema yang anda inginkan untuk Vanced - Mode Root terdeteksi! Untuk dapat memasang Vanced, anda harus menonaktifkan apk signature verification. Selesai Terang + Hitam Terang + Gelap diff --git a/app/src/main/res/values-it-rIT/strings.xml b/app/src/main/res/values-it-rIT/strings.xml index 8f7bffa1..82bac056 100644 --- a/app/src/main/res/values-it-rIT/strings.xml +++ b/app/src/main/res/values-it-rIT/strings.xml @@ -14,7 +14,6 @@ Impossibile disinstallare il pacchetto %1$s Errore nel download di %1$s Installa - Installazione in corso di %1$s Operazione fallita, l\'utente ha annullato l\'installazione. Operazione fallita, l\'utente ha bloccato l\'installazione. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Reinstalla Versione installata: Ultima versione: - %1$s installato con successo - Connessione alla rete non disponibile microG non è installato Non è stato fornito l\'accesso di root Non disponibile @@ -69,7 +66,6 @@ Aggiornamento trovato! Non ci sono nuovi aggiornamenti - Ignora Guida Aspetta! Sembra che tu stia utilizzando la versione di Vanced ottenuta con Magisk/TWRP, che è obsoleta e non può essere aggiornata con questa app. Per favore, rimuovila eliminando il modulo di Magisk/utilizzando TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ Seleziona la tua lingua preferita per Vanced Nota: l\'inglese sarà comunque installato, indipendentemente dalla tua scelta. Seleziona il tuo tema preferito per Vanced - Modalità root rilevata! Per poter installare correttamente Vanced, assicurati di disattivare la verifica della firma per gli apk. Concludi Chiaro + nero Chiaro + scuro diff --git a/app/src/main/res/values-iw-rIL/strings.xml b/app/src/main/res/values-iw-rIL/strings.xml index 48c662d0..59e1998c 100644 --- a/app/src/main/res/values-iw-rIL/strings.xml +++ b/app/src/main/res/values-iw-rIL/strings.xml @@ -14,7 +14,6 @@ יש בעיה במחיקת החבילה %1$s בעיה בהורדה של %1$s התקנה - מתקין את %1$s הפעולה נכשלה מכיוון שהמשתמש ביטל את ההתקנה. הפעולה נכשלה מכיוון שהמשתמש חסם את ההתקנה. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ התקן מחדש מותקן: החדש ביותר: - הותקן בהצלחה %1$s - חיבור לרשת אינו זמין microG isn\'t installed הרשאות Root אינן הוענקו אינו זמין @@ -69,7 +66,6 @@ עדכון נמצא! אין עדכונים חדשים - התעלם מדריך רק רגע! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ בחר את השפה המועדפת עליך לVanced תזכורת: אנגלית תמיד תהיה מותקנת בתור שפה נוספת. בחר את המראה מועדף שלך בשביל Vanced - זוהה מצב רוט! על מנת להתקין את Vanced, תצטרך לבטל את ווידוא החתימה לAPK. סיום בהיר + שחור בהיר + כהה diff --git a/app/src/main/res/values-ja-rJP/strings.xml b/app/src/main/res/values-ja-rJP/strings.xml index 3d8f97c7..7e5821a0 100644 --- a/app/src/main/res/values-ja-rJP/strings.xml +++ b/app/src/main/res/values-ja-rJP/strings.xml @@ -14,7 +14,6 @@ パッケージ %1$s のアンインストールに失敗しました %1$s のダウンロード中にエラー インストール - %1$s をインストールしています ユーザーがインストールを中断したため操作に失敗しました ユーザーがインストールをブロックしたため操作に失敗しました Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ 再インストール インストール済み: 最新版: - %1$s のインストールに成功しました - インターネット接続が利用できません microG はインストールされていません Root アクセスは許可されていません 利用不可 @@ -69,7 +66,6 @@ アップデートがあります! アップデートはありません - 閉じる ガイド ちょっと待った! Vanced の Magisk/TWRP バージョンを使用しているようです。このバージョンは廃止されており、このアプリでは更新できません。 まず Magisk モジュールを削除するか、TWRP で Vanced uninstaller を使用してください。 @@ -86,7 +82,6 @@ Vanced で使用する言語を選択 注意: 英語以外の言語をインストールしても、英語は追加の言語としてインストールされます Vanced のテーマを選択 - Root モードが検出されました!Vanced のインストールを正しく行うために、署名検証が無効であるかどうか確認してください。 完了 ライト + ブラック ライト + ダーク diff --git a/app/src/main/res/values-ka-rGE/strings.xml b/app/src/main/res/values-ka-rGE/strings.xml index e04bfa1c..d904d8f0 100644 --- a/app/src/main/res/values-ka-rGE/strings.xml +++ b/app/src/main/res/values-ka-rGE/strings.xml @@ -14,7 +14,6 @@ პაკეტი %1$s ვერ დეინსტალირდა შეცდომა %1$s-ის გადმოწერის დროს ინსტალაცია - მიმდინარეობს %1$s-ის ინსტალაცია ოპერაცია ჩაიშალა რადგან მომხმარებელმა შეაჩერა ინსტალაცია. ოპერაცია ჩაიშალა რადგან მომხმარებელმა დაბლოკა ინსტალაცია. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ რეინსტალაცია დაინსტალირებული: უახლესი: - წარმატებით დაყენდა %1$s - კავშირი არ არის microG isn\'t installed Root წვდომა არ არის მინიჭებული ხელმიუწვდომელია @@ -69,7 +66,6 @@ ნაპოვნია განახლება! განახლება არ არის აღმოჩენილი - დახურვა ინსტრუქცია დაიცა! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -86,7 +82,6 @@ აირჩიეთ სასურველი ენა Vanced-ისთვის შენიშვნა: თუ თქვენ აირჩევთ სხვა ენას გარდა ინგლისურისა, ინგლისური მაინც იქნება დაყენებული როგორც დამატებითი ენა აირჩიეთ სასურველი თემა Vanced-ისთვის - აღმოჩენილია Root რეჟიმი! იმისთვის რომ მენეჯერმა Vanced-ი შეცდომების გარეშე დააყენოს, გთხოვთ დარწმუნდით რომ ხელმოწერის ვერიფიკაცია გამორთული გაქვთ. დასრულება ღია + შავი ღია + მუქი diff --git a/app/src/main/res/values-ko-rKR/strings.xml b/app/src/main/res/values-ko-rKR/strings.xml index 8d3b11a3..196fabc3 100644 --- a/app/src/main/res/values-ko-rKR/strings.xml +++ b/app/src/main/res/values-ko-rKR/strings.xml @@ -14,7 +14,6 @@ %1$s 패키지 제거에 실패하였습니다 %1$s 다운로드 중 오류 발생 설치 - %1$s 설치 중 사용자가 설치를 중단했기 때문에 작업이 실패했습니다. 사용자가 설치를 차단했기 때문에 작업이 실패했습니다. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ 재설치 설치됨: 최신: - %1$s 설치가 완료되었습니다 - 네크워크 연결을 사용할 수 없음 microG가 설치되지 않았습니다 루트 권한이 부여되지 않았습니다 사용 불가 @@ -69,7 +66,6 @@ 업데이트를 찾았습니다! 새로운 업데이트 없음 - 무시 가이드 잠시만요! 현재 설치되어 있는 Vanced의 Magisk/TWRP 버전은 더 이상 지원되지 않으며 이 앱으로 업데이트할 수 없습니다. TWRP 버전용 Vanced 삭제 프로그램 등을 사용하여 Magisk 모듈을 제거하여 주시기 바랍니다. @@ -86,7 +82,6 @@ Vanced에서 선호하는 언어를 선택해주세요 참고: 영어 이외를 선택해도 영어는 항상 추가적인 언어로 설치됩니다 Vanced에서 선호하는 테마를 선택해주세요 - Root 모드가 감지되었습니다! Manager로 Vanced를 올바르게 설치하려면 서명 확인을 비활성화해주세요. 완료 라이트 + 블랙 라이트 + 다크 diff --git a/app/src/main/res/values-nl-rNL/strings.xml b/app/src/main/res/values-nl-rNL/strings.xml index 7ffaa196..00d66e40 100644 --- a/app/src/main/res/values-nl-rNL/strings.xml +++ b/app/src/main/res/values-nl-rNL/strings.xml @@ -14,7 +14,6 @@ Gefaalt om app te deinstalleren %1$s Fout opgetreden bij downloaden %1$s Installeer - Installeren %1$s Bewerking mislukt omdat de gebruiker de installatie heeft afgebroken. Bewerking mislukt omdat de gebruiker de installatie heeft afgebroken. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Herïnstalleer Geïnstalleerd: Laatste: - %1$s is succesvol geinstalleerd - Netwerkverbinding niet beschikbaar microG isn\'t installed Root-toegang niet verleend Niet beschikbaar @@ -69,7 +66,6 @@ Updates gevonden Geen nieuwe updates - Afwijzen Handleiding Wacht even! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ Kies jouw voorkeurstaal Note: English will always be installed as an additional language as well. Choose your preferred theme for Vanced - Root mode detected! To install Vanced, you will need to disable the apk signature verification. Finish Light + Black Light + Dark diff --git a/app/src/main/res/values-no-rNO/strings.xml b/app/src/main/res/values-no-rNO/strings.xml index 55e06642..327997ba 100644 --- a/app/src/main/res/values-no-rNO/strings.xml +++ b/app/src/main/res/values-no-rNO/strings.xml @@ -14,7 +14,6 @@ Failed to uninstall package %1$s Error Downloading %1$s Installer - Installerer %1$s Operation failed because the user aborted the installation. Operation failed because the user blocked the installation. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Reinstaller Installert: Siste: - Successfully installed %1$s - Network connection unavailable microG isn\'t installed Root access not granted Utilgjengelig @@ -69,7 +66,6 @@ Update found! No new updates - Dismiss Guide Hold on! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ Choose your preferred language for Vanced Note: English will always be installed as an additional language as well. Choose your preferred theme for Vanced - Root mode detected! To install Vanced, you will need to disable the apk signature verification. Finish Light + Black Light + Dark diff --git a/app/src/main/res/values-pl-rPL/strings.xml b/app/src/main/res/values-pl-rPL/strings.xml index 309a54f4..ba879476 100644 --- a/app/src/main/res/values-pl-rPL/strings.xml +++ b/app/src/main/res/values-pl-rPL/strings.xml @@ -14,7 +14,6 @@ Nie udało się odinstalować pakietu %1$s Błąd pobierania %1$s Zainstaluj - Instalowanie %1$s Operacja nie powiodła się, bo użytkownik przerwał instalację. Operacja nie powiodła się, bo użytkownik zablokował instalację. Operacja nie powiodła się, ponieważ użytkownik próbował obniżyć paczkę. Czy masz zainstalowany oryginalny YouTube? @@ -29,8 +28,6 @@ Przeinstaluj Zainstalowano: Najnowsza: - Pomyślnie zainstalowano %1$s - Połączenie sieciowe niedostępne microG nie jest zainstalowany Root nie został przyznany Niedostępne @@ -69,7 +66,6 @@ Znaleziono aktualizację! Brak nowych aktualizacji - Oddalić Przewodnik Czekaj! Wygląda na to, że korzystasz z Vanced w wersji Magisk/TWRP, która została wycofana i nie można jej zaktualizować za pomocą tej aplikacji. Najpierw usuń moduł magisk/używając deinstalatora TWRP Vanced. @@ -85,7 +81,6 @@ Wybierz preferowany język dla Vanced Uwaga: jeśli zainstalujesz coś innego niż angielski, angielski będzie nadal instalowany jako dodatkowy język Wybierz preferowany motyw dla Vanced - Wykryto tryb root! Aby zainstalować Vanced, musisz wyłączyć weryfikację podpisu apk. Zakończ Jasny + Czarny Jasny + Ciemny diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index f8a41920..ecbe77c5 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -14,7 +14,6 @@ Falha ao desinstalar o pacote %1$s Erro ao baixar %1$s Instalar - Instalando %1$s Falha na operação porque a instalação foi interrompida pelo usuário Falha na operação porque o usuário bloqueou a instalação A operação falhou porque o usuário tentou fazer o downgrade do pacote. Você tem o YouTube stock instalado? @@ -29,8 +28,6 @@ Reinstalar Instalado: Mais recente: - Instalado com sucesso %1$s - Conexão de rede indisponível O microG não está instalado Acesso root não concedido Indisponível @@ -69,7 +66,6 @@ Atualização encontrada! Não há novas atualizações - Dispensar Guia Aguente! Parece que você está usando a versão Magisk/TWRP do Vanced, que foi descontinuada e não pode ser atualizada usando este aplicativo. Remova-o primeiro em Módulo no Magisk/usando o desinstalador do TWRP Vanced. @@ -86,7 +82,6 @@ No entanto, se você estiver na ROM 20.2.20 baseado em xiaomi.eu, poderá ignora Escolha o seu idioma preferido para o Vanced Nota: O inglês sempre será instalado, independentemente da sua escolha Escolha o seu tema preferido para o Vanced - Modo root detectado! Para instalar o Vanced, você precisará desativar a verificação de assinatura apk. Finalizar Claro + Preto Claro + Escuro diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index ca3ef8c1..14468953 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -14,7 +14,6 @@ Erro a desinstalar pacote %1$s Erro Transferindo %1$s Instalar - Instalando %1$s Operação falhou porque o utilizador abortou a instalação. Operação falhou porque o utilizador bloquiou a instalação. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Reinstalar Instalado: Mais Recente: - Instalado %1$s - Conexão de rede indisponível microG isn\'t installed Acesso root negado. Indisponível @@ -69,7 +66,6 @@ Atualização encontrada! Sem updates novos. - Ignorar Guia Aguarde! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ Escolhe tua língua preferida para o Vanced Nota: Se você instalar algo diferente de Inglês, Inglês será instalado como um idioma adicional Escolhe teu tema preferido para o Vanced - Modo root detetado! Para instalar, terás que desativar a verificação de assinatura apk. Terminar Claro + Preto Claro + Escuro diff --git a/app/src/main/res/values-ro-rRO/strings.xml b/app/src/main/res/values-ro-rRO/strings.xml index 5e9c2e92..b7f8f957 100644 --- a/app/src/main/res/values-ro-rRO/strings.xml +++ b/app/src/main/res/values-ro-rRO/strings.xml @@ -14,7 +14,6 @@ Dezinstalarea pachetului %1$s a eșuat Eroare la descărcarea %1$s Instalează - Se Instalează %1$s Operația a eșuat deoarece utilizatorul a anulat instalarea. Operația a eșuat deoarece utilizatorul a blocat instalarea. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Reinstalare Instalat: Ultima: - Instalat cu succes %1$s - Conexiune la rețea indisponibilă microG isn\'t installed Accesul root nu este permis Indisponibil @@ -69,7 +66,6 @@ Actualizare găsită! Nu există actualizări noi - Renunţaţi Ghid Stai așa! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ Alegeți limba preferată pentru Vanced Notă: Engleza va fi întotdeauna instalată și ca limbă suplimentară. Alegeți tema preferată pentru Vanced - Modul Root detectat! Pentru a instala Vanced, va trebui să dezactivați verificarea semnăturii apk. Terminat Luminos + Negru Luminos + Întunecat diff --git a/app/src/main/res/values-ru-rRU/strings.xml b/app/src/main/res/values-ru-rRU/strings.xml index 880dab72..901aa053 100644 --- a/app/src/main/res/values-ru-rRU/strings.xml +++ b/app/src/main/res/values-ru-rRU/strings.xml @@ -14,7 +14,6 @@ Ошибка установки пакета %1$s Ошибка загрузки %1$s Установить - Установка %1$s Операция не выполнена, поскольку пользователь прервал установку Операция не выполнена, поскольку пользователь заблокировал установку Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Переустановить Установлена: Последняя: - Успешно установлено %1$s - Нет подключения к интернету microG не установлен Рут-доступ не предоставлен Недоступно @@ -69,7 +66,6 @@ Найдено обновление! Обновлений не найдено - Отклонить Руководство Внимание! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -86,7 +82,6 @@ Выберите предпочитаемый язык для Vanced Примечание: если вы выберите не английский язык, то он все равно будет установлен как дополнительный язык Выберите предпочитаемую тему для Vanced - Обнаружен ROOT. Для того, чтобы менеджер правильно установил Vanced, убедитесь, что вы отключили проверку подписи. Готово Светлая + Чёрная Светлая + Тёмная diff --git a/app/src/main/res/values-si-rLK/strings.xml b/app/src/main/res/values-si-rLK/strings.xml index c0f32946..d08ab3c3 100644 --- a/app/src/main/res/values-si-rLK/strings.xml +++ b/app/src/main/res/values-si-rLK/strings.xml @@ -14,7 +14,6 @@ Failed to uninstall package %1$s Error Downloading %1$s Install - Installing %1$s Operation failed because the user aborted the installation. Operation failed because the user blocked the installation. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Reinstall Installed: Latest: - Successfully installed %1$s - Network connection unavailable microG isn\'t installed Root access not granted Unavailable @@ -69,7 +66,6 @@ Update found! No new updates - Dismiss Guide Hold on! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ Choose your preferred language for Vanced Note: English will always be installed as an additional language as well. Choose your preferred theme for Vanced - Root mode detected! To install Vanced, you will need to disable the apk signature verification. Finish Light + Black Light + Dark diff --git a/app/src/main/res/values-sr-rSP/strings.xml b/app/src/main/res/values-sr-rSP/strings.xml index 88322623..d6e4c093 100644 --- a/app/src/main/res/values-sr-rSP/strings.xml +++ b/app/src/main/res/values-sr-rSP/strings.xml @@ -14,7 +14,6 @@ Неуспешно деинсталирање пакета %1$s Грешка приликом преузимања %1$s Инсталација - Инсталирање %1$s Инсталација није успешна, корисник је обуставио инсталацију. Инсталација није успешна, корисник је блокирао инсталацију. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Реинсталирај Инсталирана: Најновија: - Успешно инсталирана %1$s - Повезивање на мрежу није могуће microG isn\'t installed Root приступ није омогућен Недоступно @@ -69,7 +66,6 @@ Ажурирање је пронађено! Нема нове верзије - Одбаци Водич Сачекај! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ Одаберите језик за коришћење Vanced апликације Напомена: Енглески ће такође бити инсталиран као додатани језик. Одаберите тему Vanced апликације - Root мод је детектован! Да би сте инсталирали Vanced, потребно је да онемогућите apk signature verification. Заврши Светла + Црна Светла + Тамна diff --git a/app/src/main/res/values-sv-rSE/strings.xml b/app/src/main/res/values-sv-rSE/strings.xml index 8dc49e6e..3fdf952d 100644 --- a/app/src/main/res/values-sv-rSE/strings.xml +++ b/app/src/main/res/values-sv-rSE/strings.xml @@ -14,7 +14,6 @@ Det gick inte att avinstallera paket %1$s Laddar ned %1$s Install - Installerar %1$s Åtgärden misslyckades eftersom användaren avbröt installationen. Åtgärden misslyckades eftersom användaren avbröt installationen. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Installera om Installerad: Senaste: - %1$s laddades ner - Inget nätverk microG är inte installerat Root-åtkomst inte beviljat Ej tillgänglig @@ -69,7 +66,6 @@ Uppdateringen hittades! Inga nya uppdateringar - Avfärda Guide Vänta på! 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. @@ -85,7 +81,6 @@ Välj ditt förvalda språk Obs: Engelska kommer alltid att installeras som ytterligare språk. Välj ditt förvalda språk - Rotläge upptäckt! För att installera Vanced, måste du inaktivera apk signaturverifiering. Slutför Ljus + svart Ljus + svart diff --git a/app/src/main/res/values-tr-rTR/strings.xml b/app/src/main/res/values-tr-rTR/strings.xml index 92f42210..fd479515 100644 --- a/app/src/main/res/values-tr-rTR/strings.xml +++ b/app/src/main/res/values-tr-rTR/strings.xml @@ -14,7 +14,6 @@ %1$s paket yüklemesi başarısız oldu Indirme hatası %1$s Kur - %1$s Kuruluyor İşlem başarısız oldu çünkü kullanıcı kurulumu yarıda bıraktı. İşlem başarısız oldu çünkü kullanıcı kurulumu engelledi. İşlem başarısız çünkü kullanıcı paketi düşürmeye çalıştı. Yüklü stok YouTube var mı? @@ -29,8 +28,6 @@ Yeniden kur Kuruldu: En yeni: - %1$s Başarıyla kuruldu - Ağ bağlantısı yok microG yüklü değil Root erişimi verilmedi Kullanım dışı @@ -69,7 +66,6 @@ Güncelleme bulundu! Yeni güncelleme yok - Kapat Kılavuz Bekle! Görünüşe göre artık Vanced\'in Magisk/TWRP sürümünü kullanıyorsunuz ve bu sürüm bu uygulama kullanılarak güncellenemiyor. Lütfen önce magisk modülünü kaldırarak veya TWRP Vanced uninstaller\'ı kullanarak kaldırın. @@ -85,7 +81,6 @@ Vanced için tercih ettiğiniz dili seçin Not: Eğer İngilizceden farklı bir dil seçerseniz de İngilizce ek dil olarak kurulacaktır Vanced için tercih ettiğiniz temayı seçin - Root modu tespit edildi! Vanced\'ı kurmak için apk imza doğrulamasını devre dışı bırakman gerekiyor. Bitir Açık + Kara Açık + Koyu diff --git a/app/src/main/res/values-uk-rUA/strings.xml b/app/src/main/res/values-uk-rUA/strings.xml index c00af74d..392fbb1c 100644 --- a/app/src/main/res/values-uk-rUA/strings.xml +++ b/app/src/main/res/values-uk-rUA/strings.xml @@ -14,7 +14,6 @@ Не вдалося видалити пакет %1$s Помилка Завантаження %1$s Встановити - Встановлення %1$s Операція не вдалася, оскільки користувач перервав встановлення. Операція не вдалася, оскільки користувач заблокував встановлення. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Перевстановити Встановлена: Найновіша: - Успішно встановлено %1$s - Немає з\'єднання з мережею microG не встановлено Права суперкористувача не були надані Недоступно @@ -69,7 +66,6 @@ Знайдено оновлення! Нових оновлень не виявлено - Відхилити Гайд Зачекайте! Схоже, ви використовуєте Magisk/TWRP-версію Vanced, підтримка якої була припинена і не може бути оновлена за допомогою цього додатку. Будь ласка, видаліть цю версію, видаливши модуль Magisk. @@ -85,7 +81,6 @@ Виберіть вашу головну мову для Vanced Примітка: Якщо ви встановите що-небудь, крім Англійської, Англійська мова все одно буде встановлена як додаткова мова Виберіть вашу головну тему для Vanced - Виявлено root права! Щоб встановити Vanced вам потрібно відключити перевірку підпису apk. Завершити Світла + Чорна Світла + Темна diff --git a/app/src/main/res/values-vi-rVN/strings.xml b/app/src/main/res/values-vi-rVN/strings.xml index 960ced33..1a187936 100644 --- a/app/src/main/res/values-vi-rVN/strings.xml +++ b/app/src/main/res/values-vi-rVN/strings.xml @@ -14,7 +14,6 @@ Gỡ cài đặt thất bại %1$s Lỗi khi tải xuống %1$s Cài đặt - Đang cài đặt %1$s Cài đặt thất bại do người dùng hủy. Cài đặt thất bại do người dùng chặn. Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ Cài đặt lại Đã cài đặt: Mới nhất: - Đã cài đặt thành công %1$s - Không có kết nối mạng microG isn\'t installed Truy cập root không được cấp Chưa cài đặt @@ -69,7 +66,6 @@ Có bản cập nhật mới! Không có bản cập nhật mới - Bỏ qua Hướng dẫn Khoan đã! Looks like you\'re using the Magisk/TWRP version of Vanced, which is discontinued and can not be updated using this app. Please remove it first by removing the magisk module/using TWRP Vanced uninstaller. @@ -85,7 +81,6 @@ Chọn ngôn ngữ mong muốn cho Vanced Chú ý: Tiếng Anh sẽ luôn được cài đặt thêm. Chọn nền mong muốn cho Vanced - Chế độ root được phát hiện! Để cài đặt Vanced, bạn sẽ phải vô hiệu hóa Xác thực chứng chỉ apk. Hoàn tất Sáng + Đen Sáng + Tối diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index 2bfc7727..c981edd0 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -14,7 +14,6 @@ %1$s 解除安装失败 %1$s 下载错误 安装 - 正在安装 %1$s 操作失败,用户中断了安装程序。 操作失败,用户封锁了安装程序。 Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ 重新安装 已安装: 最新: - 成功安装 %1$s - 无法存取网路连接 没有安装 MicroG 未授予 Root 权限 不可用 @@ -69,7 +66,6 @@ 有可用的更新! 没有新的更新 - 关闭 说明 等一下! 您似乎正在使用 Magisk/TWRP 版的 Vanced ,它已停止支援且无法透过此应用程式更新。请透过移除 Magisk 模块/ TWRP Vanced 卸载程式来移除它。 @@ -85,7 +81,6 @@ 选择Vanced的首选语言 注意:英语仍将作为其他语言安装。 选择Vanced的首选主题 - 检测到 Root 模式!若需要安装 Vanced ,您将需要关闭 APK 签名验证。 结束 浅 + 黑 浅 + 深 diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 90ffa60d..e496b659 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -14,7 +14,6 @@ %1$s 解除安裝失敗 %1$s 下載錯誤 安裝 - 正在安裝 %1$s 作業失敗,使用者終止了安裝程序。 作業失敗,使用者封鎖了安裝程序。 Operation failed because the user tried to downgrade the package. Do you have stock YouTube Installed? @@ -29,8 +28,6 @@ 重新安裝 已安裝: 最新: - 成功安裝 %1$s - 無法存取網絡 未安裝 MicroG 未授予 Root 權限 無法使用 @@ -69,7 +66,6 @@ 有可用的更新! 沒有新的更新 - 關閉 說明 等一下! 您似乎正使用 Magisk/TWRP 版本的 Vanced ,它已停止支援並無法透過此應用程式更新。請透過移除 Magisk 模組/使用 TWRP Vanced 解除安裝程式來移除它。 @@ -85,7 +81,6 @@ 為 Vanced 選擇您偏好的語言 備註:英文仍會當作附加語言安裝 為 Vanced 選擇您偏好的主題 - 檢測到 Root 模式! 若需要安裝 Vanced ,您將需要停用 APK 簽名驗證。 完成 淺色 + 黑色 淺色 + 深色 diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml index 0a8fc696..a1d91b3d 100644 --- a/app/src/main/res/values/colors.xml +++ b/app/src/main/res/values/colors.xml @@ -11,9 +11,6 @@ #ffffff #CC0047 - #908E8E #5F5E5E - ?attr/colorPrimary - diff --git a/app/src/main/res/values/resources.xml b/app/src/main/res/values/resources.xml index 49de6843..842b17e5 100644 --- a/app/src/main/res/values/resources.xml +++ b/app/src/main/res/values/resources.xml @@ -5,8 +5,5 @@ Vanced microG Music - root - nonroot - App Downloads diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 1fa7a6ac..813fea4c 100755 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -15,13 +15,10 @@ Changelogs Downloading %1$s Install - Installing %1$s Please wait until installation finishes. Reinstall Installed: Latest: - Successfully installed %1$s - Network connection unavailable microG isn\'t installed Root access not granted Unavailable @@ -49,8 +46,6 @@ Use Chrome Custom Tabs Links will open in Chrome Custom Tabs Links will open in an External Browser - Use the new root installer (Experimental) - This installer does not depend on Signature Verification status. WARNING: Vanced may disappear after reboot if you install it using this Theme Follow System Dark Theme @@ -64,7 +59,6 @@ No new updates - Dismiss 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. @@ -82,7 +76,6 @@ Choose your preferred language(s) for Vanced Note: English will always be installed as an additional language as well. Choose your preferred theme for Vanced - Root mode detected! To install Vanced, you MUST disable the apk signature verification. Finish Light + Black Light + Dark diff --git a/app/src/main/res/xml/preferences.xml b/app/src/main/res/xml/preferences.xml index 135f1973..08a25fab 100644 --- a/app/src/main/res/xml/preferences.xml +++ b/app/src/main/res/xml/preferences.xml @@ -73,4 +73,8 @@ + + \ No newline at end of file