mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2026-01-19 09:13:57 +00:00
Compare commits
24 Commits
v1.23.0-de
...
v1.23.3-de
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
624b43733e | ||
|
|
4ba7ec1854 | ||
|
|
1d6b074856 | ||
|
|
695329088b | ||
|
|
f2b20e6e7f | ||
|
|
a5c3aa3744 | ||
|
|
900058a6e5 | ||
|
|
4c51ad3650 | ||
|
|
a0c2a17bab | ||
|
|
851b06b0d2 | ||
|
|
57018a65df | ||
|
|
b44419133a | ||
|
|
8961cf9044 | ||
|
|
5139873f79 | ||
|
|
5caa79eb0d | ||
|
|
9552b2ebc5 | ||
|
|
7e3afe0cb2 | ||
|
|
7b7d91d661 | ||
|
|
44b8d4ceee | ||
|
|
aaa97ebb71 | ||
|
|
d99e5af384 | ||
|
|
c47c7c0a88 | ||
|
|
3e32c0fd90 | ||
|
|
a45d9598cc |
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -53,7 +53,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Setup keystore
|
- name: Setup keystore
|
||||||
run: |
|
run: |
|
||||||
echo "${{ secrets.KEYSTORE }}" | base64 --decode > "keystore.jks"}
|
echo "${{ secrets.KEYSTORE }}" | base64 --decode > "android/app/keystore.jks"
|
||||||
|
|
||||||
- name: Release
|
- name: Release
|
||||||
env:
|
env:
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ plugins {
|
|||||||
|
|
||||||
android {
|
android {
|
||||||
namespace = "app.revanced.manager.flutter"
|
namespace = "app.revanced.manager.flutter"
|
||||||
compileSdk = 34
|
compileSdk = 35
|
||||||
ndkVersion = "27.0.12077973"
|
ndkVersion = "27.0.12077973"
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
@@ -24,9 +24,19 @@ android {
|
|||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId = "app.revanced.manager.flutter"
|
applicationId = "app.revanced.manager.flutter"
|
||||||
minSdk = 26
|
minSdk = 26
|
||||||
targetSdk = 34
|
targetSdk = 35
|
||||||
versionCode = flutter.versionCode
|
versionCode = flutter.versionCode
|
||||||
versionName = flutter.versionName
|
versionName = flutter.versionName
|
||||||
|
|
||||||
|
resValue("string", "app_name", "ReVanced Manager")
|
||||||
|
}
|
||||||
|
|
||||||
|
applicationVariants.all {
|
||||||
|
outputs.all {
|
||||||
|
this as com.android.build.gradle.internal.api.ApkVariantOutputImpl
|
||||||
|
|
||||||
|
outputFileName = "revanced-manager-$versionName.apk"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
@@ -37,7 +47,6 @@ android {
|
|||||||
signingConfig = signingConfigs["debug"]
|
signingConfig = signingConfigs["debug"]
|
||||||
|
|
||||||
ndk.abiFilters += setOf("armeabi-v7a", "arm64-v8a", "x86_64")
|
ndk.abiFilters += setOf("armeabi-v7a", "arm64-v8a", "x86_64")
|
||||||
setProperty("archivesBaseName", "revanced-manager-v${flutter.versionName}")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
release {
|
release {
|
||||||
@@ -52,19 +61,21 @@ android {
|
|||||||
keyAlias = System.getenv("KEYSTORE_ENTRY_ALIAS")
|
keyAlias = System.getenv("KEYSTORE_ENTRY_ALIAS")
|
||||||
keyPassword = System.getenv("KEYSTORE_ENTRY_PASSWORD")
|
keyPassword = System.getenv("KEYSTORE_ENTRY_PASSWORD")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
resValue("string", "app_name", "ReVanced Manager")
|
||||||
} else {
|
} else {
|
||||||
resValue("string", "app_name", "ReVanced Manager (Debug)")
|
|
||||||
applicationIdSuffix = ".debug"
|
applicationIdSuffix = ".debug"
|
||||||
|
|
||||||
signingConfig = signingConfigs["debug"]
|
signingConfig = signingConfigs["debug"]
|
||||||
}
|
|
||||||
|
|
||||||
resValue("string", "app_name", "ReVanced Manager")
|
resValue("string", "app_name", "ReVanced Manager (Debug signed)")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
debug {
|
debug {
|
||||||
resValue("string", "app_name", "ReVanced Manager (Debug)")
|
|
||||||
applicationIdSuffix = ".debug"
|
applicationIdSuffix = ".debug"
|
||||||
|
|
||||||
|
resValue("string", "app_name", "ReVanced Manager (Debug)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -80,6 +91,7 @@ android {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
flutter {
|
flutter {
|
||||||
source = "../.."
|
source = "../.."
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ package app.revanced.manager.flutter
|
|||||||
import android.app.Activity
|
import android.app.Activity
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.content.pm.PackageInfo
|
|
||||||
import android.content.pm.PackageManager
|
import android.content.pm.PackageManager
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.util.Base64
|
import android.util.Base64
|
||||||
@@ -17,9 +16,8 @@ import java.security.MessageDigest
|
|||||||
class ExportSettingsActivity : Activity() {
|
class ExportSettingsActivity : Activity() {
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
val callingPackageName = getCallingPackage()!!
|
|
||||||
|
|
||||||
if (getFingerprint(callingPackageName) == getFingerprint(getPackageName())) {
|
if (getFingerprint(callingPackage!!) == getFingerprint(packageName)) {
|
||||||
// Create JSON Object
|
// Create JSON Object
|
||||||
val json = JSONObject()
|
val json = JSONObject()
|
||||||
|
|
||||||
@@ -64,7 +62,7 @@ class ExportSettingsActivity : Activity() {
|
|||||||
fun getFingerprint(packageName: String): String {
|
fun getFingerprint(packageName: String): String {
|
||||||
// Get the signature of the app that matches the package name
|
// Get the signature of the app that matches the package name
|
||||||
val packageInfo = packageManager.getPackageInfo(packageName, PackageManager.GET_SIGNATURES)
|
val packageInfo = packageManager.getPackageInfo(packageName, PackageManager.GET_SIGNATURES)
|
||||||
val signature = packageInfo.signatures[0]
|
val signature = packageInfo.signatures!![0]
|
||||||
|
|
||||||
// Get the raw certificate data
|
// Get the raw certificate data
|
||||||
val rawCert = signature.toByteArray()
|
val rawCert = signature.toByteArray()
|
||||||
|
|||||||
@@ -283,7 +283,6 @@ class MainActivity : FlutterActivity() {
|
|||||||
tmpDir,
|
tmpDir,
|
||||||
Aapt.binary(applicationContext).absolutePath,
|
Aapt.binary(applicationContext).absolutePath,
|
||||||
tmpDir.path,
|
tmpDir.path,
|
||||||
true // TODO: Add option to disable this
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import com.android.build.api.dsl.CommonExtension
|
import com.android.build.api.dsl.CommonExtension
|
||||||
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
@@ -17,6 +18,14 @@ allprojects {
|
|||||||
|
|
||||||
layout.buildDirectory = File("../build")
|
layout.buildDirectory = File("../build")
|
||||||
|
|
||||||
|
project(":screenshot_callback") {
|
||||||
|
tasks.withType<KotlinCompile>().configureEach {
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = "17"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
subprojects {
|
subprojects {
|
||||||
afterEvaluate {
|
afterEvaluate {
|
||||||
extensions.findByName("android")?.let {
|
extensions.findByName("android")?.let {
|
||||||
|
|||||||
@@ -3,6 +3,5 @@ android.useAndroidX=true
|
|||||||
org.gradle.parallel=true
|
org.gradle.parallel=true
|
||||||
org.gradle.daemon=true
|
org.gradle.daemon=true
|
||||||
org.gradle.caching=true
|
org.gradle.caching=true
|
||||||
android.defaults.buildfeatures.buildconfig=true
|
|
||||||
android.nonTransitiveRClass=false
|
android.nonTransitiveRClass=false
|
||||||
android.nonFinalResIds=false
|
android.nonFinalResIds=false
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[versions]
|
[versions]
|
||||||
revanced-patcher = "20.0.2"
|
revanced-patcher = "21.0.0"
|
||||||
revanced-library = "3.0.1"
|
revanced-library = "3.0.2"
|
||||||
desugar_jdk_libs = "2.1.2"
|
desugar_jdk_libs = "2.1.3"
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
revanced-patcher = { module = "app.revanced:revanced-patcher", version.ref = "revanced-patcher" }
|
revanced-patcher = { module = "app.revanced:revanced-patcher", version.ref = "revanced-patcher" }
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ pluginManagement {
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id("dev.flutter.flutter-plugin-loader") version "1.0.0"
|
id("dev.flutter.flutter-plugin-loader") version "1.0.0"
|
||||||
id("com.android.application") version "8.5.0" apply false
|
id("com.android.application") version "8.7.2" apply false
|
||||||
id("org.jetbrains.kotlin.android") version "2.0.20" apply false
|
id("org.jetbrains.kotlin.android") version "2.0.20" apply false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -197,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Delete temporary files",
|
"deleteTempDirLabel": "Delete temporary files",
|
||||||
"deleteTempDirHint": "Delete unused temporary files",
|
"deleteTempDirHint": "Delete unused temporary files",
|
||||||
"deletedTempDir": "Temporary files deleted",
|
"deletedTempDir": "Temporary files deleted",
|
||||||
|
"exportSettingsLabel": "Export settings",
|
||||||
|
"exportSettingsHint": "Export settings to a JSON file",
|
||||||
|
"exportedSettings": "Settings exported",
|
||||||
|
"importSettingsLabel": "Import settings",
|
||||||
|
"importSettingsHint": "Import settings from a JSON file",
|
||||||
|
"importedSettings": "Settings imported",
|
||||||
"exportPatchesLabel": "Export patch selection",
|
"exportPatchesLabel": "Export patch selection",
|
||||||
"exportPatchesHint": "Export patch selection to a JSON file",
|
"exportPatchesHint": "Export patch selection to a JSON file",
|
||||||
"exportedPatches": "Patch selection exported",
|
"exportedPatches": "Patch selection exported",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "اللغة",
|
"languageLabel": "اللغة",
|
||||||
"languageUpdated": "تم تحديث اللغة",
|
"languageUpdated": "تم تحديث اللغة",
|
||||||
"sourcesLabel": "مصادر بديلة",
|
"sourcesLabel": "مصادر بديلة",
|
||||||
"sourcesLabelHint": "قم بتكوين المصادر البديلة لتعديلات ReVanced وتكاملات ReVanced",
|
"sourcesLabelHint": "تكوين المصادر البديلة لتعديلات ReVanced",
|
||||||
"sourcesIntegrationsLabel": "مصدر الـدمج",
|
|
||||||
"useAlternativeSources": "استخدام مصادر بديلة",
|
"useAlternativeSources": "استخدام مصادر بديلة",
|
||||||
"useAlternativeSourcesHint": "استخدم مصادر بديلة لتعديلات ReVanced وعمليات التكامل ReVanced بدلاً من API",
|
"useAlternativeSourcesHint": "استخدام مصادر بديلة لتعديلات ReVanced بدلاً من واجهة برمجة التطبيقات",
|
||||||
"sourcesResetDialogTitle": "إعادة التعيين",
|
"sourcesResetDialogTitle": "إعادة التعيين",
|
||||||
"sourcesResetDialogText": "هل أنت متأكد من أنك تريد إعادة تعيين المصادر الخاصة بك إلى قيمها الافتراضية؟",
|
"sourcesResetDialogText": "هل أنت متأكد من أنك تريد إعادة تعيين المصادر الخاصة بك إلى قيمها الافتراضية؟",
|
||||||
"apiURLResetDialogText": "هل أنت متأكد من أنك تريد إعادة تعيين رابط API الخاص بك إلى قيمته الافتراضية؟",
|
"apiURLResetDialogText": "هل أنت متأكد من أنك تريد إعادة تعيين رابط API الخاص بك إلى قيمته الافتراضية؟",
|
||||||
"sourcesUpdateNote": "ملاحظة: سيؤدي هذا إلى تنزيل تعديلات ReVanced وتكاملات ReVanced تلقائيًا من المصادر البديلة.\n\nسيؤدي هذا إلى توصيلك بالمصدر البديل.",
|
"sourcesUpdateNote": "ملاحظة: سيؤدي هذا إلى تنزيل تعديلات ReVanced تلقائيًا من المصادر البديلة.\n\nسيؤدي هذا إلى توصيلك بالمصدر البديل.",
|
||||||
"apiURLLabel": "رابط API",
|
"apiURLLabel": "رابط API",
|
||||||
"apiURLHint": "تكوين عنوان URL لواجهة برمجة التطبيقات الخاصة بـ ReVanced Manager",
|
"apiURLHint": "تكوين عنوان URL لواجهة برمجة التطبيقات الخاصة بـ ReVanced Manager",
|
||||||
"selectApiURL": "رابط API",
|
"selectApiURL": "رابط API",
|
||||||
"orgPatchesLabel": "تنظيم التعديلات",
|
"orgPatchesLabel": "تنظيم التعديلات",
|
||||||
"sourcesPatchesLabel": "مصدر التعديلات",
|
"sourcesPatchesLabel": "مصدر التعديلات",
|
||||||
"orgIntegrationsLabel": "تنظيم الدمج",
|
|
||||||
"contributorsLabel": "المساهمون",
|
"contributorsLabel": "المساهمون",
|
||||||
"contributorsHint": "قائمة المساهمين في ReVanced",
|
"contributorsHint": "قائمة المساهمين في ReVanced",
|
||||||
"logsLabel": "مشاركة السجلات",
|
"logsLabel": "مشاركة السجلات",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "حذف الملفات المؤقتة",
|
"deleteTempDirLabel": "حذف الملفات المؤقتة",
|
||||||
"deleteTempDirHint": "حذف الملفات المؤقتة غير المستخدمة",
|
"deleteTempDirHint": "حذف الملفات المؤقتة غير المستخدمة",
|
||||||
"deletedTempDir": "تم حذف الملفات المؤقتة",
|
"deletedTempDir": "تم حذف الملفات المؤقتة",
|
||||||
|
"exportSettingsLabel": "تصدير الإعدادات",
|
||||||
|
"exportSettingsHint": "تصدير الإعدادات إلى ملف JSON",
|
||||||
|
"exportedSettings": "تم تصدير الإعدادات",
|
||||||
|
"importSettingsLabel": "استيراد الإعدادات",
|
||||||
|
"importSettingsHint": "استيراد الإعدادات من ملف JSON",
|
||||||
|
"importedSettings": "تم استيراد الإعدادات",
|
||||||
"exportPatchesLabel": "تصدير التعديل المحدد",
|
"exportPatchesLabel": "تصدير التعديل المحدد",
|
||||||
"exportPatchesHint": "تصدير التعديل المحدد إلى مِلَفّ JSON",
|
"exportPatchesHint": "تصدير التعديل المحدد إلى مِلَفّ JSON",
|
||||||
"exportedPatches": "تم تصدير التعديل المحدد",
|
"exportedPatches": "تم تصدير التعديل المحدد",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Dil",
|
"languageLabel": "Dil",
|
||||||
"languageUpdated": "Dil yeniləndi",
|
"languageUpdated": "Dil yeniləndi",
|
||||||
"sourcesLabel": "Seçmə mənbələr",
|
"sourcesLabel": "Seçmə mənbələr",
|
||||||
"sourcesLabelHint": "ReVanced Yamaqları və ReVanced İnteqrasiyaları üçün seçmə mənbələri konfiqurasiya edin",
|
"sourcesLabelHint": "ReVanced Patches üçün alternativ mənbələri konfiqurasiya et",
|
||||||
"sourcesIntegrationsLabel": "İnteqrasiya mənbəyi",
|
|
||||||
"useAlternativeSources": "Seçmə mənbələri istifadə et",
|
"useAlternativeSources": "Seçmə mənbələri istifadə et",
|
||||||
"useAlternativeSourcesHint": "ReVanced Yamaqları və ReVanced İnteqrasiyaları üçün API əvəzinə seçmə mənbələri istifadə et",
|
"useAlternativeSourcesHint": "API əvəzinə ReVanced Patches üçün alternativ mənbələr istifadə et",
|
||||||
"sourcesResetDialogTitle": "Sıfırla",
|
"sourcesResetDialogTitle": "Sıfırla",
|
||||||
"sourcesResetDialogText": "Mənbələrinizi ilkin dəyərlərinə sıfırlamaq istədiyinizə əminsiniz?",
|
"sourcesResetDialogText": "Mənbələrinizi ilkin dəyərlərinə sıfırlamaq istədiyinizə əminsiniz?",
|
||||||
"apiURLResetDialogText": "API URL-nizi ilkin dəyərinə sıfırlamaq istədiyinizə əminsiz?",
|
"apiURLResetDialogText": "API URL-nizi ilkin dəyərinə sıfırlamaq istədiyinizə əminsiz?",
|
||||||
"sourcesUpdateNote": "Qeyd: Bu, ReVanced Yamaqları və ReVanced İnteqrasiyalarını seçmə mənbələrdən avtomatik olaraq yükləyəcək.\n\nBu, sizi seçmə mənbəyə yönləndirəcək.",
|
"sourcesUpdateNote": "Qeyd: Bu, ReVanced Yamaqlarını birbaşa seçmə mənbələrdən yükləyəcək.\n\nBu sizi alternativ mənbəyə bağlayacaq.",
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"apiURLHint": "\"ReVacned Manager\"in API URL-sini konfiqurasiya et",
|
"apiURLHint": "\"ReVacned Manager\"in API URL-sini konfiqurasiya et",
|
||||||
"selectApiURL": "API URL",
|
"selectApiURL": "API URL",
|
||||||
"orgPatchesLabel": "Yamaq qurumu",
|
"orgPatchesLabel": "Yamaq qurumu",
|
||||||
"sourcesPatchesLabel": "Yamaqların mənbəyi",
|
"sourcesPatchesLabel": "Yamaqların mənbəyi",
|
||||||
"orgIntegrationsLabel": "İnteqrasiya qurumu",
|
|
||||||
"contributorsLabel": "Töhfə verənlər",
|
"contributorsLabel": "Töhfə verənlər",
|
||||||
"contributorsHint": "ReVanced-ə töhfə verənlərin siyahısı",
|
"contributorsHint": "ReVanced-ə töhfə verənlərin siyahısı",
|
||||||
"logsLabel": "Jurnalları paylaş",
|
"logsLabel": "Jurnalları paylaş",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Müvəqqəti faylları sil",
|
"deleteTempDirLabel": "Müvəqqəti faylları sil",
|
||||||
"deleteTempDirHint": "İstifadəsiz, müvəqqəti faylları sil",
|
"deleteTempDirHint": "İstifadəsiz, müvəqqəti faylları sil",
|
||||||
"deletedTempDir": "Müvəqqəti fayllar silindi",
|
"deletedTempDir": "Müvəqqəti fayllar silindi",
|
||||||
|
"exportSettingsLabel": "Tənzimləmələri köçür",
|
||||||
|
"exportSettingsHint": "Tənzimləmələri JSON faylına köçür",
|
||||||
|
"exportedSettings": "Tənzimləmələr ixrac edildi",
|
||||||
|
"importSettingsLabel": "Tənzimləmələri idxal et",
|
||||||
|
"importSettingsHint": "Tənzimləmələri JSON faylından idxal et",
|
||||||
|
"importedSettings": "Tənzimləmələr idxal edildi",
|
||||||
"exportPatchesLabel": "Yamaq seçimini ixrac et",
|
"exportPatchesLabel": "Yamaq seçimini ixrac et",
|
||||||
"exportPatchesHint": "Yamaq seçimini JSON faylına köçür",
|
"exportPatchesHint": "Yamaq seçimini JSON faylına köçür",
|
||||||
"exportedPatches": "Yamaq seçimi ixrac edildi",
|
"exportedPatches": "Yamaq seçimi ixrac edildi",
|
||||||
|
|||||||
@@ -156,20 +156,15 @@
|
|||||||
"languageLabel": "Мова",
|
"languageLabel": "Мова",
|
||||||
"languageUpdated": "Мова абноўлена",
|
"languageUpdated": "Мова абноўлена",
|
||||||
"sourcesLabel": "Альтэрнатыўныя крыніцы",
|
"sourcesLabel": "Альтэрнатыўныя крыніцы",
|
||||||
"sourcesLabelHint": "Сканфігурыраваць альтэрнатыўныя крыніцы для ReVanced Patches і ReVanced Integrations",
|
|
||||||
"sourcesIntegrationsLabel": "Крыніца інтэграцый",
|
|
||||||
"useAlternativeSources": "Выкарыстоўваць альтэрнатыўныя крыніцы",
|
"useAlternativeSources": "Выкарыстоўваць альтэрнатыўныя крыніцы",
|
||||||
"useAlternativeSourcesHint": "Выкарыстоўваць альтэрнатыўныя крыніцы для ReVanced Patches і ReVanced Integrations замест API",
|
|
||||||
"sourcesResetDialogTitle": "Скінуць",
|
"sourcesResetDialogTitle": "Скінуць",
|
||||||
"sourcesResetDialogText": "Вы сапраўды хочаце скінуць свае крыніцы да іх прадвызначаных значэнняў?",
|
"sourcesResetDialogText": "Вы сапраўды хочаце скінуць свае крыніцы да іх прадвызначаных значэнняў?",
|
||||||
"apiURLResetDialogText": "Вы сапраўды хочаце скінуць свае API URL да іх прадвызначаных значэнняў?",
|
"apiURLResetDialogText": "Вы сапраўды хочаце скінуць свае API URL да іх прадвызначаных значэнняў?",
|
||||||
"sourcesUpdateNote": "Нататка: Гэта аўтаматычна спампуе ReVanced Patches і ReVanced Integrations з альтэрнатыўных крыніц.\n\nГэта падключыць вас да альтэрнатыўнай крыніцы.",
|
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"apiURLHint": "Сканфігурыруйце URL API для ReVanced Manager",
|
"apiURLHint": "Сканфігурыруйце URL API для ReVanced Manager",
|
||||||
"selectApiURL": "URL-адрас API",
|
"selectApiURL": "URL-адрас API",
|
||||||
"orgPatchesLabel": "Арганізацыя выпраўленняў",
|
"orgPatchesLabel": "Арганізацыя выпраўленняў",
|
||||||
"sourcesPatchesLabel": "Крыніца выпраўленняў",
|
"sourcesPatchesLabel": "Крыніца выпраўленняў",
|
||||||
"orgIntegrationsLabel": "Арганізацыя інтэграцый",
|
|
||||||
"contributorsLabel": "Удзельнікі",
|
"contributorsLabel": "Удзельнікі",
|
||||||
"contributorsHint": "Спіс усіх удзельнікаў праекта ReVanced",
|
"contributorsHint": "Спіс усіх удзельнікаў праекта ReVanced",
|
||||||
"logsLabel": "Абагуліць журнал",
|
"logsLabel": "Абагуліць журнал",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Език",
|
"languageLabel": "Език",
|
||||||
"languageUpdated": "Езикът е обновен",
|
"languageUpdated": "Езикът е обновен",
|
||||||
"sourcesLabel": "Алтернативни източници",
|
"sourcesLabel": "Алтернативни източници",
|
||||||
"sourcesLabelHint": "Конфигурирайте алтернативните източници за ReVanced Patches и ReVanced Integrations",
|
"sourcesLabelHint": "Конфигурирайте алтернативните източници за ReVanced Patches",
|
||||||
"sourcesIntegrationsLabel": "Източник на интеграциите",
|
|
||||||
"useAlternativeSources": "Използвайте алтернативни източници",
|
"useAlternativeSources": "Използвайте алтернативни източници",
|
||||||
"useAlternativeSourcesHint": "Използвайте алтернативни източници за ReVanced Patches и ReVanced Integrations вместо тези от ППИ-я (API)",
|
"useAlternativeSourcesHint": "Използвайте алтернативни източници за ReVanced Patches вместо API",
|
||||||
"sourcesResetDialogTitle": "Нулиране",
|
"sourcesResetDialogTitle": "Нулиране",
|
||||||
"sourcesResetDialogText": "Искате ли да възстановите източниците до стойностите им по подразбиране?",
|
"sourcesResetDialogText": "Искате ли да възстановите източниците до стойностите им по подразбиране?",
|
||||||
"apiURLResetDialogText": "Сигурни ли сте, че искате да възстановите адреса на ППИ (API) до стойността му по подразбиране?",
|
"apiURLResetDialogText": "Сигурни ли сте, че искате да възстановите адреса на ППИ (API) до стойността му по подразбиране?",
|
||||||
"sourcesUpdateNote": "Забележка: Това автоматично ще изтегли ReVanced Patches и ReVanced Integrations от алтернативните източници.\n\nТова ще ви свърже с алтернативния източник.",
|
"sourcesUpdateNote": "Забележка: Това автоматично ще изтегли ReVanced Patches от алтернативните източници.\n\nТова ще ви свърже с алтернативния източник.",
|
||||||
"apiURLLabel": "API линк",
|
"apiURLLabel": "API линк",
|
||||||
"apiURLHint": "Конфигуриране на URL адреса на ППИ (API) на ReVanced Manager",
|
"apiURLHint": "Конфигуриране на URL адреса на ППИ (API) на ReVanced Manager",
|
||||||
"selectApiURL": "API линк",
|
"selectApiURL": "API линк",
|
||||||
"orgPatchesLabel": "Организация на модификациите",
|
"orgPatchesLabel": "Организация на модификациите",
|
||||||
"sourcesPatchesLabel": "Източник на модификациите",
|
"sourcesPatchesLabel": "Източник на модификациите",
|
||||||
"orgIntegrationsLabel": "Организация на интеграциите",
|
|
||||||
"contributorsLabel": "Хора, които допринесоха",
|
"contributorsLabel": "Хора, които допринесоха",
|
||||||
"contributorsHint": "Списък с хората, допринесли за ReVanced",
|
"contributorsHint": "Списък с хората, допринесли за ReVanced",
|
||||||
"logsLabel": "Сподели дневника",
|
"logsLabel": "Сподели дневника",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Изтриване на временни файлове",
|
"deleteTempDirLabel": "Изтриване на временни файлове",
|
||||||
"deleteTempDirHint": "Изтриване на неизползвани временни файлове",
|
"deleteTempDirHint": "Изтриване на неизползвани временни файлове",
|
||||||
"deletedTempDir": "Временните файлове са изтрити",
|
"deletedTempDir": "Временните файлове са изтрити",
|
||||||
|
"exportSettingsLabel": "Експорт на настройките",
|
||||||
|
"exportSettingsHint": "Експорт на настройки в JSON файл",
|
||||||
|
"exportedSettings": "Настройките са съхранени",
|
||||||
|
"importSettingsLabel": "Внасяне на настройки",
|
||||||
|
"importSettingsHint": "Внасяне на настройки в JSON файл",
|
||||||
|
"importedSettings": "Настройките са импортирани",
|
||||||
"exportPatchesLabel": "Експортиране на избраните актуализации",
|
"exportPatchesLabel": "Експортиране на избраните актуализации",
|
||||||
"exportPatchesHint": "Експортиране на избраните модификации в JSON файл",
|
"exportPatchesHint": "Експортиране на избраните модификации в JSON файл",
|
||||||
"exportedPatches": "Избраните модификации са експортирани",
|
"exportedPatches": "Избраните модификации са експортирани",
|
||||||
|
|||||||
@@ -156,20 +156,15 @@
|
|||||||
"languageLabel": "ভাষা",
|
"languageLabel": "ভাষা",
|
||||||
"languageUpdated": "ভাষা হালনাগাদ করা হয়েছে",
|
"languageUpdated": "ভাষা হালনাগাদ করা হয়েছে",
|
||||||
"sourcesLabel": "বিকল্প উৎস",
|
"sourcesLabel": "বিকল্প উৎস",
|
||||||
"sourcesLabelHint": "ReVanced প্যাচ ও ReVanced ইন্ট্রিগ্রেশনের জন্য বিকল্প উৎস কনফিগার করুন",
|
|
||||||
"sourcesIntegrationsLabel": "ইন্ট্রিগেশনের উৎস",
|
|
||||||
"useAlternativeSources": "বিকল্প উৎস ব্যবহার করুন",
|
"useAlternativeSources": "বিকল্প উৎস ব্যবহার করুন",
|
||||||
"useAlternativeSourcesHint": "ReVanced প্যাচ ও ReVanced ইন্ট্রিগ্রেশনের জন্য API এর পরিবর্তে বিকল্প উৎস ব্যবহার করুন",
|
|
||||||
"sourcesResetDialogTitle": "পুনরায় সেট করুন",
|
"sourcesResetDialogTitle": "পুনরায় সেট করুন",
|
||||||
"sourcesResetDialogText": "আপনি কি নিশ্চিতভাবে আপনার উৎসগুলোকে পূর্বনির্ধারিত উৎসে ফিরিয়ে নিতে চান?",
|
"sourcesResetDialogText": "আপনি কি নিশ্চিতভাবে আপনার উৎসগুলোকে পূর্বনির্ধারিত উৎসে ফিরিয়ে নিতে চান?",
|
||||||
"apiURLResetDialogText": "আপনি কি নিশ্চিতভাবে আপনার API URL কে তার মূল ভ্যালুতে পুনরায় সেট করতে চান?",
|
"apiURLResetDialogText": "আপনি কি নিশ্চিতভাবে আপনার API URL কে তার মূল ভ্যালুতে পুনরায় সেট করতে চান?",
|
||||||
"sourcesUpdateNote": "বি:দ্র: এটি স্বয়ংক্রিয়ভাবে বিকল্প উৎস থেকে ReVanced প্যাচ ও ReVanced ইন্ট্রিগ্রেশন ডাউনলোড করবে।\n\nএটি আপনাকে বিকল্প উৎসের সাথে সংযুক্ত করবে।",
|
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"apiURLHint": "ReVanced Manager এর API URL কনফিগার করুন",
|
"apiURLHint": "ReVanced Manager এর API URL কনফিগার করুন",
|
||||||
"selectApiURL": "API URL",
|
"selectApiURL": "API URL",
|
||||||
"orgPatchesLabel": "প্যাচ এর উদ্ভাবক",
|
"orgPatchesLabel": "প্যাচ এর উদ্ভাবক",
|
||||||
"sourcesPatchesLabel": "প্যাচ এর উৎস",
|
"sourcesPatchesLabel": "প্যাচ এর উৎস",
|
||||||
"orgIntegrationsLabel": "ইন্ট্রিগেশনের উদ্ভাবক",
|
|
||||||
"contributorsLabel": "অবদানকারীগণ",
|
"contributorsLabel": "অবদানকারীগণ",
|
||||||
"contributorsHint": "ReVanced-এ অবদানকারীদের তালিকা",
|
"contributorsHint": "ReVanced-এ অবদানকারীদের তালিকা",
|
||||||
"logsLabel": "লগ শেয়ার করুন",
|
"logsLabel": "লগ শেয়ার করুন",
|
||||||
|
|||||||
@@ -1,9 +1,19 @@
|
|||||||
{
|
{
|
||||||
"okButton": "D'acord",
|
"okButton": "D'acord",
|
||||||
"cancelButton": "Cancel·lar",
|
"cancelButton": "Cancel·lar",
|
||||||
|
"dismissButton": "Descarta",
|
||||||
|
"quitButton": "Sortir",
|
||||||
"updateButton": "Actualitzar",
|
"updateButton": "Actualitzar",
|
||||||
|
"suggested": "Suggerit: ${version}",
|
||||||
"yesButton": "Sí",
|
"yesButton": "Sí",
|
||||||
|
"noButton": "No",
|
||||||
"warning": "Advertència",
|
"warning": "Advertència",
|
||||||
|
"notice": "Avís",
|
||||||
|
"noShowAgain": "No ho tornis a mostrar",
|
||||||
|
"add": "Afegir",
|
||||||
|
"remove": "Suprimeix",
|
||||||
|
"showChangelogButton": "Mostra el registre de canvis",
|
||||||
|
"showUpdateButton": "Mostrà actualització",
|
||||||
"navigationView": {
|
"navigationView": {
|
||||||
"dashboardTab": "Tauler de control",
|
"dashboardTab": "Tauler de control",
|
||||||
"patcherTab": "Pedaçor",
|
"patcherTab": "Pedaçor",
|
||||||
@@ -13,7 +23,20 @@
|
|||||||
"refreshSuccess": "S'ha actualitzat correctament",
|
"refreshSuccess": "S'ha actualitzat correctament",
|
||||||
"widgetTitle": "Tauler de control",
|
"widgetTitle": "Tauler de control",
|
||||||
"updatesSubtitle": "Actualitzacions",
|
"updatesSubtitle": "Actualitzacions",
|
||||||
|
"lastPatchedAppSubtitle": "Última aplicació pedaçada",
|
||||||
|
"patchedSubtitle": "Aplicacions instal·lades",
|
||||||
|
"changeLaterSubtitle": "Pots caviar això després en la configuració.",
|
||||||
|
"noSavedAppFound": "No s'ha trobat cap aplicació",
|
||||||
|
"noInstallations": "Cap aplicació pedaçada instal·lada",
|
||||||
|
"installUpdate": "Continuar instal·lant l'actualització?",
|
||||||
|
"updateSheetTitle": "Actualitzar ReVanced Mànager",
|
||||||
|
"updateDialogTitle": "Nova actualització disponible",
|
||||||
|
"updatePatchesSheetTitle": "Actualitzar pedaços de ReVanced",
|
||||||
"updateChangelogTitle": "Historial de canvis",
|
"updateChangelogTitle": "Historial de canvis",
|
||||||
|
"updateDialogText": "Una nova actualització està disponible per ${file}.\n\nLa versió actualment instal·lada és ${version}.",
|
||||||
|
"downloadConsentDialogTitle": "Descarregar arxius necessaris?",
|
||||||
|
"downloadConsentDialogText": "ReVanced Mànager necessita descarregar arxius necessaris per treballar correctament.",
|
||||||
|
"downloadConsentDialogText2": "Això et connectarà a ${url}",
|
||||||
"downloadingMessage": "Descarregant l'actualització...",
|
"downloadingMessage": "Descarregant l'actualització...",
|
||||||
"downloadedMessage": "S'ha baixat l'actualització",
|
"downloadedMessage": "S'ha baixat l'actualització",
|
||||||
"installingMessage": "Instal·lant l'actualització...",
|
"installingMessage": "Instal·lant l'actualització...",
|
||||||
@@ -25,14 +48,23 @@
|
|||||||
"infoButton": "Informació"
|
"infoButton": "Informació"
|
||||||
},
|
},
|
||||||
"latestCommitCard": {
|
"latestCommitCard": {
|
||||||
"loadingLabel": "S'està carregant..."
|
"loadingLabel": "S'està carregant...",
|
||||||
|
"timeagoLabel": "Fa ${time} "
|
||||||
},
|
},
|
||||||
"patcherView": {
|
"patcherView": {
|
||||||
"widgetTitle": "Pedaçor",
|
"widgetTitle": "Pedaçor",
|
||||||
"patchButton": "Pedaçar"
|
"patchButton": "Pedaçar",
|
||||||
|
"incompatibleArchWarningDialogText": "Aquesta arquitectura encara no està suportat i pot fallar. Voleu continuar de totes maneres?",
|
||||||
|
"removedPatchesWarningDialogText": "Pedaços eliminats des d'última vegada que has modificat aquesta aplicació:\n\n${patches}\n\n${newPatches}Continuar igualment?",
|
||||||
|
"addedPatchesDialogText": "Pedaços des de l'última vegada que has modificat aquesta aplicació:\n\n${addedPatches}",
|
||||||
|
"requiredOptionDialogText": "Algunes modificacions s'han de configurar."
|
||||||
},
|
},
|
||||||
"appSelectorCard": {
|
"appSelectorCard": {
|
||||||
"noAppsLabel": "No s'ha trobat cap aplicació"
|
"widgetTitle": "Selecciona l'aplicació",
|
||||||
|
"widgetTitleSelected": "Aplicació seleccionada",
|
||||||
|
"widgetSubtitle": "Cap aplicació seleccionada",
|
||||||
|
"noAppsLabel": "No s'ha trobat cap aplicació",
|
||||||
|
"anyVersion": "Qualsevol versió"
|
||||||
},
|
},
|
||||||
"patchSelectorCard": {
|
"patchSelectorCard": {
|
||||||
"widgetTitle": "Seleccioneu pedaços",
|
"widgetTitle": "Seleccioneu pedaços",
|
||||||
@@ -41,25 +73,48 @@
|
|||||||
"widgetEmptySubtitle": "No s'ha seleccionat cap pedaç"
|
"widgetEmptySubtitle": "No s'ha seleccionat cap pedaç"
|
||||||
},
|
},
|
||||||
"socialMediaCard": {
|
"socialMediaCard": {
|
||||||
|
"widgetTitle": "Xarxes socials",
|
||||||
"widgetSubtitle": "Estem en línia!"
|
"widgetSubtitle": "Estem en línia!"
|
||||||
},
|
},
|
||||||
"appSelectorView": {
|
"appSelectorView": {
|
||||||
|
"viewTitle": "Selecciona una aplicació",
|
||||||
|
"searchBarHint": "Cerca aplicació",
|
||||||
"storageButton": "Emmagatzematge",
|
"storageButton": "Emmagatzematge",
|
||||||
"selectFromStorageButton": "Selecciona des d'emmagatzematge",
|
"selectFromStorageButton": "Selecciona des d'emmagatzematge",
|
||||||
"errorMessage": "No s'ha pogut utilitzar l'aplicació seleccionada",
|
"errorMessage": "No s'ha pogut utilitzar l'aplicació seleccionada",
|
||||||
"downloadToast": "La funció de descàrrega encara no està disponible",
|
"downloadToast": "La funció de descàrrega encara no està disponible",
|
||||||
"featureNotAvailable": "Característíca no implementada"
|
"requireSuggestedAppVersionDialogText": "La versió de l'aplicació que heu seleccionat no coincideix amb la versió suggerida que pot provocar problemes inesperats. Utilitzeu la versió suggerida.\n\nVersió Seleccionada: ${selected}\nVersió suggerida: ${suggested}\n\nPer continuar de totes maneres, desactiva \"Requereix la versió de l'aplicació suggerida\" a la configuració.",
|
||||||
|
"featureNotAvailable": "Característíca no implementada",
|
||||||
|
"featureNotAvailableText": "Aquesta aplicació és una APK dividida i només es pot apedaçar i instal·lar de manera fiable muntant amb permisos root. No obstant això, podeu modificar i instal·lar un APK complet seleccionant-lo des de l'emmagatzematge."
|
||||||
},
|
},
|
||||||
"patchesSelectorView": {
|
"patchesSelectorView": {
|
||||||
"viewTitle": "Seleccioneu pedaços",
|
"viewTitle": "Seleccioneu pedaços",
|
||||||
"searchBarHint": "Cerca pedaços",
|
"searchBarHint": "Cerca pedaços",
|
||||||
|
"universalPatches": "Modificacions universals",
|
||||||
|
"newPatches": "Noves modificacions",
|
||||||
|
"patches": "modificacions",
|
||||||
"doneButton": "Fet",
|
"doneButton": "Fet",
|
||||||
"defaultChip": "Per defecte",
|
"defaultChip": "Per defecte",
|
||||||
|
"defaultTooltip": "Seleciona totes les modificacions predeterminades",
|
||||||
"noneChip": "Cap",
|
"noneChip": "Cap",
|
||||||
"noneTooltip": "Desseleccionar tots els pegats",
|
"noneTooltip": "Desseleccionar tots els pegats",
|
||||||
"noPatchesFound": "No s'han trobat pedaços per a l'aplicació seleccionada"
|
"loadPatchesSelection": "Carrega la modificació seleccionada",
|
||||||
|
"noSavedPatches": "No s'ha desat la selecció de pedaç per a l'aplicació seleccionada.\nPremeu Fet per a desar la selecció actual.",
|
||||||
|
"noPatchesFound": "No s'han trobat pedaços per a l'aplicació seleccionada",
|
||||||
|
"setRequiredOption": "Algunes modificacions han de ser configurades:\n\n${patches}\n\nConfigura les abans de continuar."
|
||||||
|
},
|
||||||
|
"patchOptionsView": {
|
||||||
|
"customValue": "Valor personalitzat",
|
||||||
|
"setToNull": "Estableix com null",
|
||||||
|
"nullValue": "El valor d'aquest valor és null",
|
||||||
|
"viewTitle": "Opcions de modificació",
|
||||||
|
"saveOptions": "Guardar",
|
||||||
|
"unselectPatch": "Desselecciona modificacions",
|
||||||
|
"tooltip": "Més opcions d'entrada",
|
||||||
|
"selectFilePath": "Selecciona direcció de l'arxiu",
|
||||||
|
"selectFolder": "Selecciona carpeta",
|
||||||
|
"requiredOption": "Configurar aquesta opció es necessari"
|
||||||
},
|
},
|
||||||
"patchOptionsView": {},
|
|
||||||
"patchItem": {
|
"patchItem": {
|
||||||
"unsupportedDialogText": "La selecció d'aquest pedaç pot provocar errors d'aplicació.\n\nVersió de l'aplicació: ${packageVersion}\nVersions compatibles:\n${supportedVersions}"
|
"unsupportedDialogText": "La selecció d'aquest pedaç pot provocar errors d'aplicació.\n\nVersió de l'aplicació: ${packageVersion}\nVersions compatibles:\n${supportedVersions}"
|
||||||
},
|
},
|
||||||
@@ -78,13 +133,11 @@
|
|||||||
"exportSectionTitle": "Importar i exportar",
|
"exportSectionTitle": "Importar i exportar",
|
||||||
"dynamicThemeHint": "Gaudeixi d'una experiència més acord al seu dispositiu",
|
"dynamicThemeHint": "Gaudeixi d'una experiència més acord al seu dispositiu",
|
||||||
"languageLabel": "Llengua",
|
"languageLabel": "Llengua",
|
||||||
"sourcesIntegrationsLabel": "Font de les integracions",
|
|
||||||
"sourcesResetDialogTitle": "Restablir",
|
"sourcesResetDialogTitle": "Restablir",
|
||||||
"apiURLLabel": "Direcció URL de la API",
|
"apiURLLabel": "Direcció URL de la API",
|
||||||
"selectApiURL": "URL de l'API",
|
"selectApiURL": "URL de l'API",
|
||||||
"orgPatchesLabel": "Organització dels pedaços",
|
"orgPatchesLabel": "Organització dels pedaços",
|
||||||
"sourcesPatchesLabel": "Font dels pedaços",
|
"sourcesPatchesLabel": "Font dels pedaços",
|
||||||
"orgIntegrationsLabel": "Organització de les integracions",
|
|
||||||
"contributorsLabel": "Col·laboradors",
|
"contributorsLabel": "Col·laboradors",
|
||||||
"contributorsHint": "Una llista de col·laboradors de ReVanced",
|
"contributorsHint": "Una llista de col·laboradors de ReVanced",
|
||||||
"aboutLabel": "Quant a",
|
"aboutLabel": "Quant a",
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
"showUpdateButton": "Zobrazit aktualizaci",
|
"showUpdateButton": "Zobrazit aktualizaci",
|
||||||
"navigationView": {
|
"navigationView": {
|
||||||
"dashboardTab": "Řídící panel",
|
"dashboardTab": "Řídící panel",
|
||||||
"patcherTab": "Záplatovač",
|
"patcherTab": "Patcher",
|
||||||
"settingsTab": "Nastavení"
|
"settingsTab": "Nastavení"
|
||||||
},
|
},
|
||||||
"homeView": {
|
"homeView": {
|
||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Jazyk",
|
"languageLabel": "Jazyk",
|
||||||
"languageUpdated": "Jazyk aktualizován",
|
"languageUpdated": "Jazyk aktualizován",
|
||||||
"sourcesLabel": "Alternativní zdroje",
|
"sourcesLabel": "Alternativní zdroje",
|
||||||
"sourcesLabelHint": "Konfigurace alternativních zdrojů pro vylepšené úpravy a zdokonalené integrace",
|
"sourcesLabelHint": "Konfigurace alternativních zdrojů pro vylepšené úpravy",
|
||||||
"sourcesIntegrationsLabel": "Zdroj integrace",
|
|
||||||
"useAlternativeSources": "Použít alternativní zdroje",
|
"useAlternativeSources": "Použít alternativní zdroje",
|
||||||
"useAlternativeSourcesHint": "Použít alternativní zdroje pro vylepšené úpravy a vylepšené integrace namísto API",
|
"useAlternativeSourcesHint": "Použít alternativní zdroje pro vylepšené úpravy namísto API",
|
||||||
"sourcesResetDialogTitle": "Obnovit",
|
"sourcesResetDialogTitle": "Obnovit",
|
||||||
"sourcesResetDialogText": "Jste si jisti, že chcete obnovit zdroje na jejich výchozí hodnoty?",
|
"sourcesResetDialogText": "Jste si jisti, že chcete obnovit zdroje na jejich výchozí hodnoty?",
|
||||||
"apiURLResetDialogText": "Jste si jisti, že chcete resetovat URL API na výchozí hodnotu?",
|
"apiURLResetDialogText": "Jste si jisti, že chcete resetovat URL API na výchozí hodnotu?",
|
||||||
"sourcesUpdateNote": "Poznámka: Toto automaticky stáhne reVanced Patches and ReVanced Integrations z alternativních zdrojů.\n\nToto vás připojí k alternativnímu zdroji.",
|
"sourcesUpdateNote": "Poznámka: Toto automaticky stáhne reVanced Patches z alternativních zdrojů.\n\nToto vás připojí k alternativnímu zdroji.",
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"apiURLHint": "Konfigurace URL API ReVanced Manager",
|
"apiURLHint": "Konfigurace URL API ReVanced Manager",
|
||||||
"selectApiURL": "API URL",
|
"selectApiURL": "API URL",
|
||||||
"orgPatchesLabel": "Organizace patchů",
|
"orgPatchesLabel": "Organizace patchů",
|
||||||
"sourcesPatchesLabel": "Zdroj patchů",
|
"sourcesPatchesLabel": "Zdroj patchů",
|
||||||
"orgIntegrationsLabel": "Autor integrace",
|
|
||||||
"contributorsLabel": "Přispěvatelé",
|
"contributorsLabel": "Přispěvatelé",
|
||||||
"contributorsHint": "Seznam přispěvatelů ReVanced",
|
"contributorsHint": "Seznam přispěvatelů ReVanced",
|
||||||
"logsLabel": "Sdílet záznamy",
|
"logsLabel": "Sdílet záznamy",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Odstranit dočasné soubory",
|
"deleteTempDirLabel": "Odstranit dočasné soubory",
|
||||||
"deleteTempDirHint": "Odstranit nepoužívané dočasné soubory",
|
"deleteTempDirHint": "Odstranit nepoužívané dočasné soubory",
|
||||||
"deletedTempDir": "Dočasné soubory byly smazány",
|
"deletedTempDir": "Dočasné soubory byly smazány",
|
||||||
|
"exportSettingsLabel": "Exportovat nastavení",
|
||||||
|
"exportSettingsHint": "Exportovat nastavení do souboru JSON",
|
||||||
|
"exportedSettings": "Nastavení exportováno",
|
||||||
|
"importSettingsLabel": "Importovat nastavení",
|
||||||
|
"importSettingsHint": "Importovat nastavení ze souboru JSON",
|
||||||
|
"importedSettings": "Nastavení importováno",
|
||||||
"exportPatchesLabel": "Exportovat záplatu",
|
"exportPatchesLabel": "Exportovat záplatu",
|
||||||
"exportPatchesHint": "Exportovat výběr patch do souboru JSON",
|
"exportPatchesHint": "Exportovat výběr patch do souboru JSON",
|
||||||
"exportedPatches": "Výběr patch exportován",
|
"exportedPatches": "Výběr patch exportován",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Sprog",
|
"languageLabel": "Sprog",
|
||||||
"languageUpdated": "Sprog opdateret",
|
"languageUpdated": "Sprog opdateret",
|
||||||
"sourcesLabel": "Alternative kilder",
|
"sourcesLabel": "Alternative kilder",
|
||||||
"sourcesLabelHint": "Konfigurer de alternative kilder til ReVanced Patches og ReVanced Integrations",
|
"sourcesLabelHint": "Indstil alternative kilder for ReVanced Patches",
|
||||||
"sourcesIntegrationsLabel": "Kilde til Integrationer",
|
|
||||||
"useAlternativeSources": "Brug alternative kilder",
|
"useAlternativeSources": "Brug alternative kilder",
|
||||||
"useAlternativeSourcesHint": "Brug alternative kilder til ReVanced Patches og ReVanced Integrations i stedet for API'en",
|
"useAlternativeSourcesHint": "Brug alternative kilder til ReVanced Patches i stedet for API",
|
||||||
"sourcesResetDialogTitle": "Nulstil",
|
"sourcesResetDialogTitle": "Nulstil",
|
||||||
"sourcesResetDialogText": "Er du sikker på, at du vil nulstille dine kilder til deres standardværdier?",
|
"sourcesResetDialogText": "Er du sikker på, at du vil nulstille dine kilder til deres standardværdier?",
|
||||||
"apiURLResetDialogText": "Er du sikker på, at du vil nulstille API URL til dens standardværdi?",
|
"apiURLResetDialogText": "Er du sikker på, at du vil nulstille API URL til dens standardværdi?",
|
||||||
"sourcesUpdateNote": "Bemærk: Dette vil automatisk downloade ReVanced Patches og ReVanced Integrations fra de alternative kilder.\n\nDette vil forbinde dig til den alternative kilde.",
|
"sourcesUpdateNote": "Bemærk: Dette vil automatisk hente ReVanced Patches fra de alternative kilder.\n\nDette vil forbinde dig til den alternative kilde.",
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"apiURLHint": "Konfigurer API-URL'en til ReVanced Manager",
|
"apiURLHint": "Konfigurer API-URL'en til ReVanced Manager",
|
||||||
"selectApiURL": "API URL",
|
"selectApiURL": "API URL",
|
||||||
"orgPatchesLabel": "Organisation for Patches",
|
"orgPatchesLabel": "Organisation for Patches",
|
||||||
"sourcesPatchesLabel": "Kilde til Patches",
|
"sourcesPatchesLabel": "Kilde til Patches",
|
||||||
"orgIntegrationsLabel": "Organisation for Integrationer",
|
|
||||||
"contributorsLabel": "Medvirkende",
|
"contributorsLabel": "Medvirkende",
|
||||||
"contributorsHint": "En liste over medvirkende til ReVanced",
|
"contributorsHint": "En liste over medvirkende til ReVanced",
|
||||||
"logsLabel": "Del logs",
|
"logsLabel": "Del logs",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Slet midlertidige filer",
|
"deleteTempDirLabel": "Slet midlertidige filer",
|
||||||
"deleteTempDirHint": "Slet ubrugte midlertidige filer",
|
"deleteTempDirHint": "Slet ubrugte midlertidige filer",
|
||||||
"deletedTempDir": "Midlertidige filer slettet",
|
"deletedTempDir": "Midlertidige filer slettet",
|
||||||
|
"exportSettingsLabel": "Eksporter indstillinger",
|
||||||
|
"exportSettingsHint": "Eksporter indstillinger til en JSON-fil",
|
||||||
|
"exportedSettings": "Indstillinger eksporteret",
|
||||||
|
"importSettingsLabel": "Importer indstillinger",
|
||||||
|
"importSettingsHint": "Importer indstillinger fra en JSON-fil",
|
||||||
|
"importedSettings": "Indstillinger importeret",
|
||||||
"exportPatchesLabel": "Eksportér patch valg",
|
"exportPatchesLabel": "Eksportér patch valg",
|
||||||
"exportPatchesHint": "Eksportér patch valg til en JSON- fil",
|
"exportPatchesHint": "Eksportér patch valg til en JSON- fil",
|
||||||
"exportedPatches": "Patch valg eksporteret",
|
"exportedPatches": "Patch valg eksporteret",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Sprache",
|
"languageLabel": "Sprache",
|
||||||
"languageUpdated": "Sprache aktualisiert",
|
"languageUpdated": "Sprache aktualisiert",
|
||||||
"sourcesLabel": "Alternative Quellen",
|
"sourcesLabel": "Alternative Quellen",
|
||||||
"sourcesLabelHint": "Konfiguriere die alternativen Quellen für ReVanced Patches und ReVanced Integrations",
|
"sourcesLabelHint": "Konfigurieren Sie die alternativen Quellen für überarbeitete Patches",
|
||||||
"sourcesIntegrationsLabel": "Quelle für Integrationen",
|
|
||||||
"useAlternativeSources": "Benutze alternative Quellen",
|
"useAlternativeSources": "Benutze alternative Quellen",
|
||||||
"useAlternativeSourcesHint": "Verwenden alternative Quellen für ReVanced Patches und ReVanced Integrationen anstelle der API",
|
"useAlternativeSourcesHint": "Verwende alternative Quellen für überarbeitete Patches anstelle der API",
|
||||||
"sourcesResetDialogTitle": "Zurücksetzen",
|
"sourcesResetDialogTitle": "Zurücksetzen",
|
||||||
"sourcesResetDialogText": "Bist du dir sicher, dass du die benutzerdefinierten Quellen auf ihre Standardwerte zurücksetzen möchtest?",
|
"sourcesResetDialogText": "Bist du dir sicher, dass du die benutzerdefinierten Quellen auf ihre Standardwerte zurücksetzen möchtest?",
|
||||||
"apiURLResetDialogText": "Bist du dir sicher, dass du die API-URL auf ihren Standardwert zurücksetzen möchtest?",
|
"apiURLResetDialogText": "Bist du dir sicher, dass du die API-URL auf ihren Standardwert zurücksetzen möchtest?",
|
||||||
"sourcesUpdateNote": "Hinweis: Dadurch werden ReVanced Patches und ReVanced Integrationen automatisch von der alternativen Quelle heruntergeladen.\n\nDies wird dich mit der alternativen Quelle verbinden.",
|
"sourcesUpdateNote": "Hinweis: Dies wird automatisch ReVanced Patches von den alternativen Quellen herunterladen.\n\nDies verbindet Sie mit der alternativen Quelle.",
|
||||||
"apiURLLabel": "API-URL",
|
"apiURLLabel": "API-URL",
|
||||||
"apiURLHint": "Konfigurieren die API URL von ReVanced Manager",
|
"apiURLHint": "Konfigurieren die API URL von ReVanced Manager",
|
||||||
"selectApiURL": "API-URL",
|
"selectApiURL": "API-URL",
|
||||||
"orgPatchesLabel": "Patches Organisation",
|
"orgPatchesLabel": "Patches Organisation",
|
||||||
"sourcesPatchesLabel": "Patches Quelle",
|
"sourcesPatchesLabel": "Patches Quelle",
|
||||||
"orgIntegrationsLabel": "Integrationen Organisation",
|
|
||||||
"contributorsLabel": "Mitwirkende",
|
"contributorsLabel": "Mitwirkende",
|
||||||
"contributorsHint": "Eine Liste der Mitwirkenden von ReVanced",
|
"contributorsHint": "Eine Liste der Mitwirkenden von ReVanced",
|
||||||
"logsLabel": "Logs teilen",
|
"logsLabel": "Logs teilen",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Lösche temporäre Dateien",
|
"deleteTempDirLabel": "Lösche temporäre Dateien",
|
||||||
"deleteTempDirHint": "Unbenutzte temporäre Dateien löschen",
|
"deleteTempDirHint": "Unbenutzte temporäre Dateien löschen",
|
||||||
"deletedTempDir": "Temporäre Dateien wurden gelöscht",
|
"deletedTempDir": "Temporäre Dateien wurden gelöscht",
|
||||||
|
"exportSettingsLabel": "Export-Einstellungen",
|
||||||
|
"exportSettingsHint": "Einstellungen in eine JSON-Datei exportieren",
|
||||||
|
"exportedSettings": "Einstellungen exportiert",
|
||||||
|
"importSettingsLabel": "Import-Einstellungen",
|
||||||
|
"importSettingsHint": "Einstellungen aus einer JSON-Datei importieren",
|
||||||
|
"importedSettings": "Einstellungen importiert",
|
||||||
"exportPatchesLabel": "Patchauswahl exportieren",
|
"exportPatchesLabel": "Patchauswahl exportieren",
|
||||||
"exportPatchesHint": "Patch-Auswahl in eine JSON-Datei exportieren",
|
"exportPatchesHint": "Patch-Auswahl in eine JSON-Datei exportieren",
|
||||||
"exportedPatches": "Patch-Auswahl exportiert",
|
"exportedPatches": "Patch-Auswahl exportiert",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Γλώσσα",
|
"languageLabel": "Γλώσσα",
|
||||||
"languageUpdated": "Η γλώσσα ενημερώθηκε",
|
"languageUpdated": "Η γλώσσα ενημερώθηκε",
|
||||||
"sourcesLabel": "Εναλλακτικές πηγές",
|
"sourcesLabel": "Εναλλακτικές πηγές",
|
||||||
"sourcesLabelHint": "Ρυθμίστε τις εναλλακτικές πηγές για τις τροποποιήσεις ReVanced και τις ενσωματώσεις ReVanced",
|
"sourcesLabelHint": "Ρυθμίστε τις εναλλακτικές πηγές για τις τροποποιήσεις ReVanced",
|
||||||
"sourcesIntegrationsLabel": "Πηγή ενσωματώσεων",
|
|
||||||
"useAlternativeSources": "Χρήση εναλλακτικών πηγών",
|
"useAlternativeSources": "Χρήση εναλλακτικών πηγών",
|
||||||
"useAlternativeSourcesHint": "Χρήση εναλλακτικών πηγών για τις τροποποιήσεις και τις ενσωματώσεις ReVanced αντί του API",
|
"useAlternativeSourcesHint": "Χρήση εναλλακτικών πηγών για τις τροποποιήσεις ReVanced αντί του API",
|
||||||
"sourcesResetDialogTitle": "Επαναφορά",
|
"sourcesResetDialogTitle": "Επαναφορά",
|
||||||
"sourcesResetDialogText": "Είστε βέβαιοι ότι θέλετε να επαναφέρετε τις πηγές σας στις προεπιλεγμένες τιμές τους;",
|
"sourcesResetDialogText": "Είστε βέβαιοι ότι θέλετε να επαναφέρετε τις πηγές σας στις προεπιλεγμένες τιμές τους;",
|
||||||
"apiURLResetDialogText": "Είστε βέβαιοι ότι θέλετε να επαναφέρετε την API URL σας στην προεπιλεγμένη τιμή της;",
|
"apiURLResetDialogText": "Είστε βέβαιοι ότι θέλετε να επαναφέρετε την API URL σας στην προεπιλεγμένη τιμή της;",
|
||||||
"sourcesUpdateNote": "Σημείωση: Θα γίνεται αυτόματη λήψη των τροποποιήσεων και των ενσωματώσεων ReVanced από τις εναλλακτικές πηγές.\n\nΟπότε θα συνδέεστε με τις εναλλακτικές πηγές.",
|
"sourcesUpdateNote": "Σημείωση: Θα γίνεται αυτόματη λήψη των τροποποιήσεων ReVanced από τις εναλλακτικές πηγές.\n\nΟπότε θα συνδέεστε με τις εναλλακτικές πηγές.",
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"apiURLHint": "Ρύθμιση διεύθυνσης URL του API του ReVanced Manager",
|
"apiURLHint": "Ρύθμιση διεύθυνσης URL του API του ReVanced Manager",
|
||||||
"selectApiURL": "API URL",
|
"selectApiURL": "API URL",
|
||||||
"orgPatchesLabel": "Οργάνωση τροποποιήσεων",
|
"orgPatchesLabel": "Οργάνωση τροποποιήσεων",
|
||||||
"sourcesPatchesLabel": "Πηγή τροποποιήσεων",
|
"sourcesPatchesLabel": "Πηγή τροποποιήσεων",
|
||||||
"orgIntegrationsLabel": "Οργάνωση ενσωματώσεων",
|
|
||||||
"contributorsLabel": "Συνεισφέροντες",
|
"contributorsLabel": "Συνεισφέροντες",
|
||||||
"contributorsHint": "Λίστα με όσους έχουν συμβάλει στο ReVanced",
|
"contributorsHint": "Λίστα με όσους έχουν συμβάλει στο ReVanced",
|
||||||
"logsLabel": "Κοινοποίηση αρχείων καταγραφής",
|
"logsLabel": "Κοινοποίηση αρχείων καταγραφής",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Διαγραφή προσωρινών αρχείων",
|
"deleteTempDirLabel": "Διαγραφή προσωρινών αρχείων",
|
||||||
"deleteTempDirHint": "Διαγραφή των αχρησιμοποίητων προσωρινών αρχείων",
|
"deleteTempDirHint": "Διαγραφή των αχρησιμοποίητων προσωρινών αρχείων",
|
||||||
"deletedTempDir": "Τα προσωρινά αρχεία διαγράφηκαν",
|
"deletedTempDir": "Τα προσωρινά αρχεία διαγράφηκαν",
|
||||||
|
"exportSettingsLabel": "Εξαγωγή ρυθμίσεων",
|
||||||
|
"exportSettingsHint": "Εξαγωγή ρυθμίσεων σε αρχείο JSON",
|
||||||
|
"exportedSettings": "Οι ρυθμίσεις εξήχθησαν",
|
||||||
|
"importSettingsLabel": "Εισαγωγή ρυθμίσεων",
|
||||||
|
"importSettingsHint": "Εισαγωγή ρυθμίσεων από ένα αρχείο JSON",
|
||||||
|
"importedSettings": "Οι ρυθμίσεις εισήχθησαν",
|
||||||
"exportPatchesLabel": "Εξαγωγή των επιλεγμένων τροποποιήσεων",
|
"exportPatchesLabel": "Εξαγωγή των επιλεγμένων τροποποιήσεων",
|
||||||
"exportPatchesHint": "Εξαγωγή των επιλεγμένων τροποποιήσεων σε ένα αρχείο JSON",
|
"exportPatchesHint": "Εξαγωγή των επιλεγμένων τροποποιήσεων σε ένα αρχείο JSON",
|
||||||
"exportedPatches": "Η εξαγωγή των επιλεγμένων τροποποιήσεων ολοκληρώθηκε",
|
"exportedPatches": "Η εξαγωγή των επιλεγμένων τροποποιήσεων ολοκληρώθηκε",
|
||||||
|
|||||||
@@ -155,7 +155,6 @@
|
|||||||
"languageUpdated": "Idioma actualizado",
|
"languageUpdated": "Idioma actualizado",
|
||||||
"sourcesLabel": "Fuentes alternativas",
|
"sourcesLabel": "Fuentes alternativas",
|
||||||
"sourcesLabelHint": "Configurá las fuentes alternativas para ReVanced Patches y ReVanced Integrations",
|
"sourcesLabelHint": "Configurá las fuentes alternativas para ReVanced Patches y ReVanced Integrations",
|
||||||
"sourcesIntegrationsLabel": "Fuente de las integraciones",
|
|
||||||
"useAlternativeSources": "Usar fuentes alternativas",
|
"useAlternativeSources": "Usar fuentes alternativas",
|
||||||
"useAlternativeSourcesHint": "Usá fuentes alternativas para ReVanced Patches y ReVanced Integrations en lugar de la API",
|
"useAlternativeSourcesHint": "Usá fuentes alternativas para ReVanced Patches y ReVanced Integrations en lugar de la API",
|
||||||
"sourcesResetDialogTitle": "Resetear",
|
"sourcesResetDialogTitle": "Resetear",
|
||||||
@@ -167,7 +166,6 @@
|
|||||||
"selectApiURL": "URL de la API",
|
"selectApiURL": "URL de la API",
|
||||||
"orgPatchesLabel": "Organización de los parches",
|
"orgPatchesLabel": "Organización de los parches",
|
||||||
"sourcesPatchesLabel": "Fuente de los parches",
|
"sourcesPatchesLabel": "Fuente de los parches",
|
||||||
"orgIntegrationsLabel": "Organización de las integraciones",
|
|
||||||
"contributorsLabel": "Contribuidores",
|
"contributorsLabel": "Contribuidores",
|
||||||
"contributorsHint": "Una lista de los contribuidores de ReVanced",
|
"contributorsHint": "Una lista de los contribuidores de ReVanced",
|
||||||
"logsLabel": "Compartir registros",
|
"logsLabel": "Compartir registros",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Idioma",
|
"languageLabel": "Idioma",
|
||||||
"languageUpdated": "Idioma actualizado",
|
"languageUpdated": "Idioma actualizado",
|
||||||
"sourcesLabel": "Fuentes alternativas",
|
"sourcesLabel": "Fuentes alternativas",
|
||||||
"sourcesLabelHint": "Configurar las fuentes alternativas para Parches de ReVanced e Integraciones ReVanced",
|
"sourcesLabelHint": "Configurar las fuentes alternativas para los parches reVanced",
|
||||||
"sourcesIntegrationsLabel": "Fuente de las integraciones",
|
|
||||||
"useAlternativeSources": "Usar fuentes alternativas",
|
"useAlternativeSources": "Usar fuentes alternativas",
|
||||||
"useAlternativeSourcesHint": "Usar fuentes alternativas para Parches de ReVanced e Integraciones ReVanced en lugar de la API",
|
"useAlternativeSourcesHint": "Usar fuentes alternativas para Parches ReVanced en lugar de la API",
|
||||||
"sourcesResetDialogTitle": "Restablecer",
|
"sourcesResetDialogTitle": "Restablecer",
|
||||||
"sourcesResetDialogText": "¿Estás seguro de que quieres restablecer tus fuentes a sus valores predeterminados?",
|
"sourcesResetDialogText": "¿Estás seguro de que quieres restablecer tus fuentes a sus valores predeterminados?",
|
||||||
"apiURLResetDialogText": "¿Estás seguro de que quieres restablecer la URL de tu API a su valor predeterminado?",
|
"apiURLResetDialogText": "¿Estás seguro de que quieres restablecer la URL de tu API a su valor predeterminado?",
|
||||||
"sourcesUpdateNote": "Nota: Esto automáticamente descargará Parches ReVanced e Integraciones ReVanced desde las fuentes alternativas.\n\nEsto lo conectará a la fuente alternativa.",
|
"sourcesUpdateNote": "Nota: Esto descargará automáticamente los Parches ReVanced desde las fuentes alternativas.\n\nEsto te conectará a la fuente alternativa.",
|
||||||
"apiURLLabel": "URL de la API",
|
"apiURLLabel": "URL de la API",
|
||||||
"apiURLHint": "Configurar la URL de API del ReVanced Manager",
|
"apiURLHint": "Configurar la URL de API del ReVanced Manager",
|
||||||
"selectApiURL": "URL de la API",
|
"selectApiURL": "URL de la API",
|
||||||
"orgPatchesLabel": "Organización de los parches",
|
"orgPatchesLabel": "Organización de los parches",
|
||||||
"sourcesPatchesLabel": "Fuente de los parches",
|
"sourcesPatchesLabel": "Fuente de los parches",
|
||||||
"orgIntegrationsLabel": "Organización de integraciones",
|
|
||||||
"contributorsLabel": "Contribuidores",
|
"contributorsLabel": "Contribuidores",
|
||||||
"contributorsHint": "Una lista de contribuidores de ReVanced",
|
"contributorsHint": "Una lista de contribuidores de ReVanced",
|
||||||
"logsLabel": "Compartir registros",
|
"logsLabel": "Compartir registros",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Borrar archivos temporales",
|
"deleteTempDirLabel": "Borrar archivos temporales",
|
||||||
"deleteTempDirHint": "Eliminar archivos temporales no utilizados",
|
"deleteTempDirHint": "Eliminar archivos temporales no utilizados",
|
||||||
"deletedTempDir": "Archivos temporales eliminados",
|
"deletedTempDir": "Archivos temporales eliminados",
|
||||||
|
"exportSettingsLabel": "Exportar ajustes",
|
||||||
|
"exportSettingsHint": "Exportar ajustes a un archivo JSON",
|
||||||
|
"exportedSettings": "Ajustes exportados",
|
||||||
|
"importSettingsLabel": "Importar ajustes",
|
||||||
|
"importSettingsHint": "Importar ajustes desde un archivo JSON",
|
||||||
|
"importedSettings": "Ajustes importados",
|
||||||
"exportPatchesLabel": "Exportar la selección de parches",
|
"exportPatchesLabel": "Exportar la selección de parches",
|
||||||
"exportPatchesHint": "Exportar la selección de parches a un archivo JSON",
|
"exportPatchesHint": "Exportar la selección de parches a un archivo JSON",
|
||||||
"exportedPatches": "Selección de parches exportada",
|
"exportedPatches": "Selección de parches exportada",
|
||||||
|
|||||||
@@ -155,7 +155,6 @@
|
|||||||
"languageUpdated": "Idioma actualizado",
|
"languageUpdated": "Idioma actualizado",
|
||||||
"sourcesLabel": "Fuentes alternativas",
|
"sourcesLabel": "Fuentes alternativas",
|
||||||
"sourcesLabelHint": "Configura las fuentes alternativas para ReVanced Patches y ReVanced Integrations",
|
"sourcesLabelHint": "Configura las fuentes alternativas para ReVanced Patches y ReVanced Integrations",
|
||||||
"sourcesIntegrationsLabel": "Fuente de integraciones",
|
|
||||||
"useAlternativeSources": "Usar fuentes alternativas",
|
"useAlternativeSources": "Usar fuentes alternativas",
|
||||||
"useAlternativeSourcesHint": "Usa fuentes alternativas para ReVanced Patches y ReVanced Integrations en lugar de la API",
|
"useAlternativeSourcesHint": "Usa fuentes alternativas para ReVanced Patches y ReVanced Integrations en lugar de la API",
|
||||||
"sourcesResetDialogTitle": "Reiniciar",
|
"sourcesResetDialogTitle": "Reiniciar",
|
||||||
@@ -167,7 +166,6 @@
|
|||||||
"selectApiURL": "URL de la API",
|
"selectApiURL": "URL de la API",
|
||||||
"orgPatchesLabel": "Organización de parches",
|
"orgPatchesLabel": "Organización de parches",
|
||||||
"sourcesPatchesLabel": "Fuente de los parches",
|
"sourcesPatchesLabel": "Fuente de los parches",
|
||||||
"orgIntegrationsLabel": "Organización de integraciones",
|
|
||||||
"contributorsLabel": "Contribuidores",
|
"contributorsLabel": "Contribuidores",
|
||||||
"contributorsHint": "Lista de contribuidores de ReVanced",
|
"contributorsHint": "Lista de contribuidores de ReVanced",
|
||||||
"logsLabel": "Compartir registros",
|
"logsLabel": "Compartir registros",
|
||||||
|
|||||||
@@ -113,13 +113,11 @@
|
|||||||
"exportSectionTitle": "Import & eksport",
|
"exportSectionTitle": "Import & eksport",
|
||||||
"dynamicThemeHint": "Nautige kogemust oma seadmele lähemal",
|
"dynamicThemeHint": "Nautige kogemust oma seadmele lähemal",
|
||||||
"languageLabel": "Keel",
|
"languageLabel": "Keel",
|
||||||
"sourcesIntegrationsLabel": "Integratsioonide allikas",
|
|
||||||
"sourcesResetDialogTitle": "Lähtesta",
|
"sourcesResetDialogTitle": "Lähtesta",
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"selectApiURL": "API URL",
|
"selectApiURL": "API URL",
|
||||||
"orgPatchesLabel": "Plaastrite organisatsioon",
|
"orgPatchesLabel": "Plaastrite organisatsioon",
|
||||||
"sourcesPatchesLabel": "Plaastrite allikas",
|
"sourcesPatchesLabel": "Plaastrite allikas",
|
||||||
"orgIntegrationsLabel": "Integratsiooni organisatsioon",
|
|
||||||
"contributorsLabel": "Panustajad",
|
"contributorsLabel": "Panustajad",
|
||||||
"contributorsHint": "Revancedi kaasautorite nimekiri",
|
"contributorsHint": "Revancedi kaasautorite nimekiri",
|
||||||
"aboutLabel": "Teave",
|
"aboutLabel": "Teave",
|
||||||
|
|||||||
@@ -98,13 +98,11 @@
|
|||||||
"dynamicThemeLabel": "Material You",
|
"dynamicThemeLabel": "Material You",
|
||||||
"dynamicThemeHint": "یک تجربه نزدیکتر به دستگاهتان را داشته باشید",
|
"dynamicThemeHint": "یک تجربه نزدیکتر به دستگاهتان را داشته باشید",
|
||||||
"languageLabel": "زبان",
|
"languageLabel": "زبان",
|
||||||
"sourcesIntegrationsLabel": "منبع یکپارچه سازی",
|
|
||||||
"sourcesResetDialogTitle": "تنظیم مجدد",
|
"sourcesResetDialogTitle": "تنظیم مجدد",
|
||||||
"apiURLLabel": "آدرس API",
|
"apiURLLabel": "آدرس API",
|
||||||
"selectApiURL": "آدرس API",
|
"selectApiURL": "آدرس API",
|
||||||
"orgPatchesLabel": "سازمان پچها(وصله ها)",
|
"orgPatchesLabel": "سازمان پچها(وصله ها)",
|
||||||
"sourcesPatchesLabel": "منبع پچ ها",
|
"sourcesPatchesLabel": "منبع پچ ها",
|
||||||
"orgIntegrationsLabel": "سازمان یکپارچه سازی",
|
|
||||||
"contributorsLabel": "مشارکت کنندگان",
|
"contributorsLabel": "مشارکت کنندگان",
|
||||||
"contributorsHint": "لیست مشارکتکنندگان ریونسد",
|
"contributorsHint": "لیست مشارکتکنندگان ریونسد",
|
||||||
"aboutLabel": "درباره ما",
|
"aboutLabel": "درباره ما",
|
||||||
|
|||||||
@@ -157,20 +157,18 @@
|
|||||||
"languageLabel": "Kieli",
|
"languageLabel": "Kieli",
|
||||||
"languageUpdated": "Kieli on vaihdettu",
|
"languageUpdated": "Kieli on vaihdettu",
|
||||||
"sourcesLabel": "Vaihtoehtoiset lähteet",
|
"sourcesLabel": "Vaihtoehtoiset lähteet",
|
||||||
"sourcesLabelHint": "Määritä käytöstä poistettujen kohteiden ja käytöstä poistettujen integraatioiden vaihtoehtoiset lähteet",
|
"sourcesLabelHint": "Määritä käytöstä poistettujen paikkojen vaihtoehtoiset lähteet",
|
||||||
"sourcesIntegrationsLabel": "Integraatioiden lähde",
|
|
||||||
"useAlternativeSources": "Käytä vaihtoehtoisia lähteitä",
|
"useAlternativeSources": "Käytä vaihtoehtoisia lähteitä",
|
||||||
"useAlternativeSourcesHint": "Käytä vaihtoehtoisia lähteitä ReVanced Patches ja ReVanced Integrations sijasta API",
|
"useAlternativeSourcesHint": "Käytä vaihtoehtoisia lähteitä ReVanced Patches sijasta API",
|
||||||
"sourcesResetDialogTitle": "Palauta",
|
"sourcesResetDialogTitle": "Palauta",
|
||||||
"sourcesResetDialogText": "Haluatko varmasti palauttaa oletuslähteet?",
|
"sourcesResetDialogText": "Haluatko varmasti palauttaa oletuslähteet?",
|
||||||
"apiURLResetDialogText": "Haluatko varmasti palauttaa oletusarvoisen API:n URL-osoitteen?",
|
"apiURLResetDialogText": "Haluatko varmasti palauttaa oletusarvoisen API:n URL-osoitteen?",
|
||||||
"sourcesUpdateNote": "Huomautus: Tämä lataa automaattisesti ReVanced Patches ja ReVanced Integrations vaihtoehtoisista lähteistä.\n\nTämä yhdistää sinut vaihtoehtoiseen lähdekoodiin.",
|
"sourcesUpdateNote": "Huomautus: Tämä lataa automaattisesti ReVanced Patches vaihtoehtoisista lähteistä.\n\nTämä yhdistää sinut vaihtoehtoiseen lähteeseen.",
|
||||||
"apiURLLabel": "API:n URL-osoite",
|
"apiURLLabel": "API:n URL-osoite",
|
||||||
"apiURLHint": "Määritä ReVanced Managerin API:N URL-osoite",
|
"apiURLHint": "Määritä ReVanced Managerin API:N URL-osoite",
|
||||||
"selectApiURL": "API:n URL-osoite",
|
"selectApiURL": "API:n URL-osoite",
|
||||||
"orgPatchesLabel": "Paikkauksien organisaatio",
|
"orgPatchesLabel": "Paikkauksien organisaatio",
|
||||||
"sourcesPatchesLabel": "Paikkauksien lähde",
|
"sourcesPatchesLabel": "Paikkauksien lähde",
|
||||||
"orgIntegrationsLabel": "Integraatioiden organisaatio",
|
|
||||||
"contributorsLabel": "Osallistujat",
|
"contributorsLabel": "Osallistujat",
|
||||||
"contributorsHint": "Listaus ReVancedin kehitykseen osallistuneista",
|
"contributorsHint": "Listaus ReVancedin kehitykseen osallistuneista",
|
||||||
"logsLabel": "Jaa lokit",
|
"logsLabel": "Jaa lokit",
|
||||||
@@ -198,6 +196,12 @@
|
|||||||
"deleteTempDirLabel": "Poista väliaikaistiedostot",
|
"deleteTempDirLabel": "Poista väliaikaistiedostot",
|
||||||
"deleteTempDirHint": "Poista käyttämättömät väliaikaistiedostot",
|
"deleteTempDirHint": "Poista käyttämättömät väliaikaistiedostot",
|
||||||
"deletedTempDir": "Väliaikaistiedostot poistettiin",
|
"deletedTempDir": "Väliaikaistiedostot poistettiin",
|
||||||
|
"exportSettingsLabel": "Vie asetukset",
|
||||||
|
"exportSettingsHint": "Vie asetukset JSON tiedostoon",
|
||||||
|
"exportedSettings": "Asetukset viety",
|
||||||
|
"importSettingsLabel": "Tuo asetukset",
|
||||||
|
"importSettingsHint": "Tuo asetukset JSON tiedostosta",
|
||||||
|
"importedSettings": "Asetukset tuotu",
|
||||||
"exportPatchesLabel": "Vie paikkausvalikoima",
|
"exportPatchesLabel": "Vie paikkausvalikoima",
|
||||||
"exportPatchesHint": "Vie paikkausvalikoima JSON-tiedostoon",
|
"exportPatchesHint": "Vie paikkausvalikoima JSON-tiedostoon",
|
||||||
"exportedPatches": "Paikkausvalikoima vietiin",
|
"exportedPatches": "Paikkausvalikoima vietiin",
|
||||||
|
|||||||
@@ -147,16 +147,12 @@
|
|||||||
"languageLabel": "Wika",
|
"languageLabel": "Wika",
|
||||||
"languageUpdated": "Wika na-update na",
|
"languageUpdated": "Wika na-update na",
|
||||||
"sourcesLabel": "Iba pang mga sources ",
|
"sourcesLabel": "Iba pang mga sources ",
|
||||||
"sourcesLabelHint": "I-set up ang mga alternatibong sources para sa mga ReVanced Patches at ReVanced Integrations",
|
|
||||||
"sourcesIntegrationsLabel": "Pinanggalingan ng mga integrasyon",
|
|
||||||
"useAlternativeSources": "Gumamit ng alternatibong mga sources ",
|
"useAlternativeSources": "Gumamit ng alternatibong mga sources ",
|
||||||
"useAlternativeSourcesHint": "Gamitin ang mga alternatibong sources para sa mga ReVanced Patches at ReVanced Integrations sa halip ng API",
|
|
||||||
"sourcesResetDialogTitle": "I-reset",
|
"sourcesResetDialogTitle": "I-reset",
|
||||||
"apiURLLabel": "URL ng API",
|
"apiURLLabel": "URL ng API",
|
||||||
"selectApiURL": "URL ng API",
|
"selectApiURL": "URL ng API",
|
||||||
"orgPatchesLabel": "Pagsasaayos ng mga pantapal",
|
"orgPatchesLabel": "Pagsasaayos ng mga pantapal",
|
||||||
"sourcesPatchesLabel": "Pinanggalingan ng mga pantapal",
|
"sourcesPatchesLabel": "Pinanggalingan ng mga pantapal",
|
||||||
"orgIntegrationsLabel": "Pagsasaayos ng mga integrasyon",
|
|
||||||
"contributorsLabel": "Mga nag-ambag",
|
"contributorsLabel": "Mga nag-ambag",
|
||||||
"contributorsHint": "Listahan ng mga tumulong sa ReVanced",
|
"contributorsHint": "Listahan ng mga tumulong sa ReVanced",
|
||||||
"aboutLabel": "Tungkol",
|
"aboutLabel": "Tungkol",
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
"notice": "Remarque",
|
"notice": "Remarque",
|
||||||
"noShowAgain": "Ne plus afficher",
|
"noShowAgain": "Ne plus afficher",
|
||||||
"add": "Ajouter",
|
"add": "Ajouter",
|
||||||
"remove": "Supprimer",
|
"remove": "Retirer",
|
||||||
"showChangelogButton": "Journal des modifications",
|
"showChangelogButton": "Journal des modifications",
|
||||||
"showUpdateButton": "Afficher les mises à jour",
|
"showUpdateButton": "Afficher les mises à jour",
|
||||||
"navigationView": {
|
"navigationView": {
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
"downloadToast": "La fonction de téléchargement est actuellement indisponible",
|
"downloadToast": "La fonction de téléchargement est actuellement indisponible",
|
||||||
"requireSuggestedAppVersionDialogText": "La version de l'application que vous avez sélectionné ne correspond pas à la version recommandée ce qui pourrait créer des problèmes inattendus. Veuillez utiliser la version recommendée.\n\nVersion sélectionnée : ${selected}\nVersion recommendée : ${suggested}\n\nPour continuer quand même, désactivez \"Exiger la version recommendée de l'application\" dans les paramètres.",
|
"requireSuggestedAppVersionDialogText": "La version de l'application que vous avez sélectionné ne correspond pas à la version recommandée ce qui pourrait créer des problèmes inattendus. Veuillez utiliser la version recommendée.\n\nVersion sélectionnée : ${selected}\nVersion recommendée : ${suggested}\n\nPour continuer quand même, désactivez \"Exiger la version recommendée de l'application\" dans les paramètres.",
|
||||||
"featureNotAvailable": "Fonctionnalité non implémentée",
|
"featureNotAvailable": "Fonctionnalité non implémentée",
|
||||||
"featureNotAvailableText": "Cette application est un APK fractionné et ne peut être corrigée et installée de manière fiable qu'en la montant avec les autorisations administrateur. Toutefois, vous pouvez corriger et installer un APK complet en le sélectionnant depuis le stockage."
|
"featureNotAvailableText": "Cette application est un APK fractionné et ne peut être corrigée et installée de manière fiable qu'en la montant avec les autorisations administrateur. Toutefois, vous pouvez patcher et installer un APK complet en le sélectionnant depuis le stockage."
|
||||||
},
|
},
|
||||||
"patchesSelectorView": {
|
"patchesSelectorView": {
|
||||||
"viewTitle": "Sélectionner les patchs",
|
"viewTitle": "Sélectionner les patchs",
|
||||||
@@ -105,7 +105,7 @@
|
|||||||
},
|
},
|
||||||
"patchOptionsView": {
|
"patchOptionsView": {
|
||||||
"customValue": "Valeur personnalisée",
|
"customValue": "Valeur personnalisée",
|
||||||
"setToNull": "Définir à NULL",
|
"setToNull": "Définir à nul",
|
||||||
"nullValue": "Cette valeur d'option est actuellement nulle",
|
"nullValue": "Cette valeur d'option est actuellement nulle",
|
||||||
"viewTitle": "Options de patch",
|
"viewTitle": "Options de patch",
|
||||||
"saveOptions": "Enregistrer",
|
"saveOptions": "Enregistrer",
|
||||||
@@ -130,14 +130,14 @@
|
|||||||
"installButton": "Installer",
|
"installButton": "Installer",
|
||||||
"installRootType": "Monter",
|
"installRootType": "Monter",
|
||||||
"installNonRootType": "Standard",
|
"installNonRootType": "Standard",
|
||||||
"warning": "Désactivez les mises à jour automatiques pour l'application corrigée afin d'éviter des problèmes inattendus.",
|
"warning": "Désactivez les mises à jour automatiques pour l'application patchée afin d'éviter des problèmes inattendus.",
|
||||||
"pressBackAgain": "Appuyez sur retour une nouvelle fois pour quitter",
|
"pressBackAgain": "Appuyez sur retour une nouvelle fois pour quitter",
|
||||||
"openButton": "Ouvrir",
|
"openButton": "Ouvrir",
|
||||||
"notificationTitle": "ReVanced Manager est en train de corriger",
|
"notificationTitle": "ReVanced Manager est en train de patcher",
|
||||||
"notificationText": "Appuyer pour revenir à l’installateur",
|
"notificationText": "Appuyer pour revenir à l’installateur",
|
||||||
"exportApkButtonTooltip": "Exporter l'APK corrigé",
|
"exportApkButtonTooltip": "Exporter l'APK corrigé",
|
||||||
"exportLogButtonTooltip": "Exporter les journaux",
|
"exportLogButtonTooltip": "Exporter les journaux",
|
||||||
"screenshotDetected": "Une capture d’écran a été détectée. Si vous essayez de partager le journal, veuillez plutôt partager une copie du texte.\n\nCopier le journal dans le presse-papiers ?",
|
"screenshotDetected": "Une capture d’écran a été détectée. Si vous essayez de partager le journal, veuillez plutôt partager une copie du texte.\n\nCopier les logs dans le presse-papiers ?",
|
||||||
"copiedToClipboard": "Journal copié dans le presse-papiers",
|
"copiedToClipboard": "Journal copié dans le presse-papiers",
|
||||||
"noExit": "L'installateur est toujours en fonctionnement, impossible de quitter..."
|
"noExit": "L'installateur est toujours en fonctionnement, impossible de quitter..."
|
||||||
},
|
},
|
||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Langue",
|
"languageLabel": "Langue",
|
||||||
"languageUpdated": "Langue mise à jour",
|
"languageUpdated": "Langue mise à jour",
|
||||||
"sourcesLabel": "Sources alternatives",
|
"sourcesLabel": "Sources alternatives",
|
||||||
"sourcesLabelHint": "Configure les sources alternatives pour les correctifs et les intégrations ReVanced",
|
"sourcesLabelHint": "Configurer les sources alternatives pour les correctifs ReVanced",
|
||||||
"sourcesIntegrationsLabel": "Source des intégrations",
|
|
||||||
"useAlternativeSources": "Utiliser les sources alternatives",
|
"useAlternativeSources": "Utiliser les sources alternatives",
|
||||||
"useAlternativeSourcesHint": "Utilise les sources alternatives pour les correctifs et les intégrations ReVanced à la place de l'API",
|
"useAlternativeSourcesHint": "Utiliser des sources alternatives pour les correctifs ReVanced au lieu de l'API",
|
||||||
"sourcesResetDialogTitle": "Réinitialiser",
|
"sourcesResetDialogTitle": "Réinitialiser",
|
||||||
"sourcesResetDialogText": "Êtes-vous sûr de vouloir réinitialiser vos sources à leurs valeurs par défaut ?",
|
"sourcesResetDialogText": "Êtes-vous sûr de vouloir réinitialiser vos sources à leurs valeurs par défaut ?",
|
||||||
"apiURLResetDialogText": "Êtes-vous sûr de vouloir réinitialiser l'URL d'API à sa valeur par défaut ?",
|
"apiURLResetDialogText": "Êtes-vous sûr de vouloir réinitialiser l'URL d'API à sa valeur par défaut ?",
|
||||||
"sourcesUpdateNote": "Note : Cela téléchargera automatiquement les correctifs et les intégrations ReVanced depuis les sources alternatives.\n\nCela vous connectera à la source alternative.",
|
"sourcesUpdateNote": "Remarque : Cela téléchargera automatiquement les correctifs ReVanced à partir des sources alternatives.\n\nCela vous connectera à la source alternative.",
|
||||||
"apiURLLabel": "URL de l'API",
|
"apiURLLabel": "URL de l'API",
|
||||||
"apiURLHint": "Configurer l'URL de l'API de ReVanced Manager",
|
"apiURLHint": "Configurer l'URL de l'API de ReVanced Manager",
|
||||||
"selectApiURL": "URL de l'API",
|
"selectApiURL": "URL de l'API",
|
||||||
"orgPatchesLabel": "Organisation des correctifs",
|
"orgPatchesLabel": "Organisation des correctifs",
|
||||||
"sourcesPatchesLabel": "Source des patchs",
|
"sourcesPatchesLabel": "Source des patchs",
|
||||||
"orgIntegrationsLabel": "Organisation des intégrations",
|
|
||||||
"contributorsLabel": "Contributeurs",
|
"contributorsLabel": "Contributeurs",
|
||||||
"contributorsHint": "Liste des contributeurs de ReVanced",
|
"contributorsHint": "Liste des contributeurs de ReVanced",
|
||||||
"logsLabel": "Partager les journaux",
|
"logsLabel": "Partager les journaux",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Supprimer les fichiers temporaires",
|
"deleteTempDirLabel": "Supprimer les fichiers temporaires",
|
||||||
"deleteTempDirHint": "Supprimer les fichiers temporaires inutilisés",
|
"deleteTempDirHint": "Supprimer les fichiers temporaires inutilisés",
|
||||||
"deletedTempDir": "Fichiers temporaires supprimés",
|
"deletedTempDir": "Fichiers temporaires supprimés",
|
||||||
|
"exportSettingsLabel": "Exporter les paramètres",
|
||||||
|
"exportSettingsHint": "Exporter les paramètres vers un fichier JSON",
|
||||||
|
"exportedSettings": "Paramètres exportés",
|
||||||
|
"importSettingsLabel": "Importer les paramètres",
|
||||||
|
"importSettingsHint": "Importer les paramètres depuis un fichier JSON",
|
||||||
|
"importedSettings": "Paramètres importés",
|
||||||
"exportPatchesLabel": "Exporter la sélection de correctifs",
|
"exportPatchesLabel": "Exporter la sélection de correctifs",
|
||||||
"exportPatchesHint": "Exporter la sélection de correctifs vers un fichier JSON",
|
"exportPatchesHint": "Exporter la sélection de correctifs vers un fichier JSON",
|
||||||
"exportedPatches": "Sélection de correctifs exportée",
|
"exportedPatches": "Sélection de correctifs exportée",
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
"noSavedAppFound": "Níl aon aip le fáil",
|
"noSavedAppFound": "Níl aon aip le fáil",
|
||||||
"noInstallations": "Níl aon aipeanna paiste suiteáilte",
|
"noInstallations": "Níl aon aipeanna paiste suiteáilte",
|
||||||
"installUpdate": "Lean ar aghaidh ag suiteáil an nuashonrú?",
|
"installUpdate": "Lean ar aghaidh ag suiteáil an nuashonrú?",
|
||||||
"updateSheetTitle": "Nuashonraigh an Bainisteoir ReVanced",
|
"updateSheetTitle": "Nuashonraigh an ReVanced Manager",
|
||||||
"updateDialogTitle": "Nuashonrú nua ar fáil",
|
"updateDialogTitle": "Nuashonrú nua ar fáil",
|
||||||
"updatePatchesSheetTitle": "Nuashonraigh Paistí ReVanced",
|
"updatePatchesSheetTitle": "Nuashonraigh Paistí ReVanced",
|
||||||
"updateChangelogTitle": "Liosta athraithe",
|
"updateChangelogTitle": "Liosta athraithe",
|
||||||
@@ -55,6 +55,8 @@
|
|||||||
"widgetTitle": "Paisteálaí",
|
"widgetTitle": "Paisteálaí",
|
||||||
"patchButton": "Paiste",
|
"patchButton": "Paiste",
|
||||||
"incompatibleArchWarningDialogText": "Níl paisteáil ar an ailtireacht seo tacaítear leis go fóill agus d’fhéadfadh sé teip. Lean ar aghaidh fós?",
|
"incompatibleArchWarningDialogText": "Níl paisteáil ar an ailtireacht seo tacaítear leis go fóill agus d’fhéadfadh sé teip. Lean ar aghaidh fós?",
|
||||||
|
"removedPatchesWarningDialogText": "Paistí bainte ón uair dheireanach a ndearna tú paistí ar an aip seo:\n\n${patches}\n\n${newPatches}An bhfuil fonn ort leanúint ar aghaidh mar sin féin?",
|
||||||
|
"addedPatchesDialogText": "Cuireadh paistí leis ón uair dheireanach a ndearna tú paistí ar an aip seo:\n\n${addedPatches}\n\n",
|
||||||
"requiredOptionDialogText": "Caithfear roinnt roghanna paiste a shocrú."
|
"requiredOptionDialogText": "Caithfear roinnt roghanna paiste a shocrú."
|
||||||
},
|
},
|
||||||
"appSelectorCard": {
|
"appSelectorCard": {
|
||||||
@@ -131,7 +133,7 @@
|
|||||||
"warning": "Díchumasaigh nuashonruithe uathoibríoch don aip bhreactha chun fadhbanna gan choinne a sheachaint.",
|
"warning": "Díchumasaigh nuashonruithe uathoibríoch don aip bhreactha chun fadhbanna gan choinne a sheachaint.",
|
||||||
"pressBackAgain": "Brúigh ar ais arís chun cealú",
|
"pressBackAgain": "Brúigh ar ais arís chun cealú",
|
||||||
"openButton": "Oscailte",
|
"openButton": "Oscailte",
|
||||||
"notificationTitle": "Tá Bainisteoir ReVanced ag paisteáil",
|
"notificationTitle": "Tá ReVanced Manager ag sileadh",
|
||||||
"notificationText": "Tapáil chun filleadh ar an suiteálaí",
|
"notificationText": "Tapáil chun filleadh ar an suiteálaí",
|
||||||
"exportApkButtonTooltip": "APK paiteáilte onnmhairi",
|
"exportApkButtonTooltip": "APK paiteáilte onnmhairi",
|
||||||
"exportLogButtonTooltip": "Logáil easpórtála",
|
"exportLogButtonTooltip": "Logáil easpórtála",
|
||||||
@@ -156,24 +158,22 @@
|
|||||||
"languageLabel": "Teanga",
|
"languageLabel": "Teanga",
|
||||||
"languageUpdated": "Teanga nuashonraithe",
|
"languageUpdated": "Teanga nuashonraithe",
|
||||||
"sourcesLabel": "Foinsí malartacha",
|
"sourcesLabel": "Foinsí malartacha",
|
||||||
"sourcesLabelHint": "Cumraigh na foinsí malartacha le haghaidh Paistí ReVanced agus Comhtháthaithe ReVanced",
|
"sourcesLabelHint": "Cumraigh na foinsí malartacha le haghaidh Paistí ReVanced",
|
||||||
"sourcesIntegrationsLabel": "Foinse comhtháthaithe",
|
|
||||||
"useAlternativeSources": "Úsáid foinsí malartacha",
|
"useAlternativeSources": "Úsáid foinsí malartacha",
|
||||||
"useAlternativeSourcesHint": "Úsáid foinsí malartacha le haghaidh Paistí ReVanced agus Comhtháthaithe ReVanced in ionad an API",
|
"useAlternativeSourcesHint": "Úsáid foinsí eile le haghaidh ReVanced Patches in ionad an API",
|
||||||
"sourcesResetDialogTitle": "Athshocraigh",
|
"sourcesResetDialogTitle": "Athshocraigh",
|
||||||
"sourcesResetDialogText": "An bhfuil tú cinnte gur mhaith leat do fhoinsí a athshocrú go dtí a luachanna réamhshocraithe?",
|
"sourcesResetDialogText": "An bhfuil tú cinnte gur mhaith leat do fhoinsí a athshocrú go dtí a luachanna réamhshocraithe?",
|
||||||
"apiURLResetDialogText": "An bhfuil tú cinnte gur mhaith leat do URL API a athshocrú go dtí a luach réamhshocraithe?",
|
"apiURLResetDialogText": "An bhfuil tú cinnte gur mhaith leat do URL API a athshocrú go dtí a luach réamhshocraithe?",
|
||||||
"sourcesUpdateNote": "Nóta: Íoslódálfaidh sé seo Paistí ReVanced agus Comhtháthú ReVanced go huathoibríoch ó na foinsí malartacha.\n\nCeanglóidh sé seo tú leis an bhfoinse mhalartach.",
|
"sourcesUpdateNote": "Nóta: Íoslódálfaidh sé seo Paistí ReVanced go huathoibríoch ó na foinsí eile.\n\nNascfaidh sé seo tú leis an bhfoinse eile.",
|
||||||
"apiURLLabel": "UIRL API",
|
"apiURLLabel": "UIRL API",
|
||||||
"apiURLHint": "Cumraigh URL API de Bhainisteoir ReVanced",
|
"apiURLHint": "Cumraigh URL API de ReVanced Manager",
|
||||||
"selectApiURL": "UIRL API",
|
"selectApiURL": "UIRL API",
|
||||||
"orgPatchesLabel": "Eagraíocht paistí",
|
"orgPatchesLabel": "Eagraíocht paistí",
|
||||||
"sourcesPatchesLabel": "Foinse paistí",
|
"sourcesPatchesLabel": "Foinse paistí",
|
||||||
"orgIntegrationsLabel": "Eagraíocht comhtháthaithe",
|
|
||||||
"contributorsLabel": "Rannpháirtithe",
|
"contributorsLabel": "Rannpháirtithe",
|
||||||
"contributorsHint": "Liosta de rannpháirtithe ReVanced",
|
"contributorsHint": "Liosta de rannpháirtithe ReVanced",
|
||||||
"logsLabel": "Comhroinn logaí",
|
"logsLabel": "Comhroinn logaí",
|
||||||
"logsHint": "Comhroinn logaí Bainisteoir ReVanced",
|
"logsHint": "Comhroinn logaí ReVanced Manager",
|
||||||
"enablePatchesSelectionLabel": "Ceadaigh roghnú paiste a athrú",
|
"enablePatchesSelectionLabel": "Ceadaigh roghnú paiste a athrú",
|
||||||
"enablePatchesSelectionHint": "Ná cuir cosc ar phaistí a roghnú nó a dhíroghnú",
|
"enablePatchesSelectionHint": "Ná cuir cosc ar phaistí a roghnú nó a dhíroghnú",
|
||||||
"enablePatchesSelectionWarningText": "D'fhéadfadh fadhbanna gan choinne a bheith mar thoradh ar rogha paistí a athrú\n\nCumasaigh ar aon chaoi?",
|
"enablePatchesSelectionWarningText": "D'fhéadfadh fadhbanna gan choinne a bheith mar thoradh ar rogha paistí a athrú\n\nCumasaigh ar aon chaoi?",
|
||||||
@@ -197,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Scrios comhaid shealadacha",
|
"deleteTempDirLabel": "Scrios comhaid shealadacha",
|
||||||
"deleteTempDirHint": "Scrios comhaid shealadacha gan úsáid",
|
"deleteTempDirHint": "Scrios comhaid shealadacha gan úsáid",
|
||||||
"deletedTempDir": "Scriosta comhaid shealadacha",
|
"deletedTempDir": "Scriosta comhaid shealadacha",
|
||||||
|
"exportSettingsLabel": "Socruithe easpórtála",
|
||||||
|
"exportSettingsHint": "Easpórtáil socruithe go comhad JSON",
|
||||||
|
"exportedSettings": "Socruithe easpórtáilte",
|
||||||
|
"importSettingsLabel": "Socruithe a allmhairiú",
|
||||||
|
"importSettingsHint": "Iompórtáil socruithe ó chomhad JSON",
|
||||||
|
"importedSettings": "Socruithe allmhairithe",
|
||||||
"exportPatchesLabel": "Rogha paiste easpórtála",
|
"exportPatchesLabel": "Rogha paiste easpórtála",
|
||||||
"exportPatchesHint": "Roghnú paiste a easpórtáil chuig comhad JSON",
|
"exportPatchesHint": "Roghnú paiste a easpórtáil chuig comhad JSON",
|
||||||
"exportedPatches": "Easpórtáil an roghnú paistí",
|
"exportedPatches": "Easpórtáil an roghnú paistí",
|
||||||
@@ -215,7 +221,7 @@
|
|||||||
"resetStoredOptionsDialogText": "Bainfidh na roghanna paiste a athshocrú gach rogha sábháilte.",
|
"resetStoredOptionsDialogText": "Bainfidh na roghanna paiste a athshocrú gach rogha sábháilte.",
|
||||||
"resetStoredOptions": "Athshocraíodh roghanna",
|
"resetStoredOptions": "Athshocraíodh roghanna",
|
||||||
"deleteLogsLabel": "Glan Logaí",
|
"deleteLogsLabel": "Glan Logaí",
|
||||||
"deleteLogsHint": "Scrios logaí Bainisteoir ReVanced bailithe",
|
"deleteLogsHint": "Scrios na logaí bailithe de ReVanced Manager",
|
||||||
"deletedLogs": "Logaí scriosta",
|
"deletedLogs": "Logaí scriosta",
|
||||||
"regenerateKeystoreLabel": "Athghin stór eochracha",
|
"regenerateKeystoreLabel": "Athghin stór eochracha",
|
||||||
"regenerateKeystoreHint": "Athghinigh an eochrstór a úsáidtear chun aipeanna a shíni",
|
"regenerateKeystoreHint": "Athghinigh an eochrstór a úsáidtear chun aipeanna a shíni",
|
||||||
@@ -246,7 +252,7 @@
|
|||||||
"lastPatchedAppDescription": "Is cúltaca é seo den aip a paisteadh go deireanach.",
|
"lastPatchedAppDescription": "Is cúltaca é seo den aip a paisteadh go deireanach.",
|
||||||
"unmountDialogText": "An bhfuil tú cinnte gur mhaith leat an aip seo a dícheangail?",
|
"unmountDialogText": "An bhfuil tú cinnte gur mhaith leat an aip seo a dícheangail?",
|
||||||
"uninstallDialogText": "An bhfuil tú cinnte gur mhaith leat an aip seo a dhíshuiteáil?",
|
"uninstallDialogText": "An bhfuil tú cinnte gur mhaith leat an aip seo a dhíshuiteáil?",
|
||||||
"rootDialogText": "Suiteáilíodh an aip le ceadanna sárúsáideora, ach faoi láthair níl aon cheadanna ag Bainisteoir ReVanced.\nDeonaigh ceadanna sárúsáideora ar dtús.",
|
"rootDialogText": "Suiteáladh an aip le cead sár-úsáideoirí, ach faoi láthair níl aon chead ag ReVanced Manager.\nTabhair ceadanna sárúsáideoirí ar dtús.",
|
||||||
"removeAppDialogTitle": "Aip a scriosadh?",
|
"removeAppDialogTitle": "Aip a scriosadh?",
|
||||||
"removeAppDialogText": "An bhfuil tú cinnte gur mhaith leat an cúltaca seo a scriosadh?",
|
"removeAppDialogText": "An bhfuil tú cinnte gur mhaith leat an cúltaca seo a scriosadh?",
|
||||||
"packageNameLabel": "Ainm an phacáiste",
|
"packageNameLabel": "Ainm an phacáiste",
|
||||||
@@ -277,7 +283,7 @@
|
|||||||
"status_failure_timeout": "Teorainn ama suiteála",
|
"status_failure_timeout": "Teorainn ama suiteála",
|
||||||
"status_unknown": "Theip ar an suiteáil",
|
"status_unknown": "Theip ar an suiteáil",
|
||||||
"mount_version_mismatch_description": "Theip ar an suiteáil toisc go raibh an aip suiteáilte ina leagan difriúil ná an aip paiste.\n\nSuiteáil an leagan den aip atá á shuiteáil agat agus bain triail as arís.",
|
"mount_version_mismatch_description": "Theip ar an suiteáil toisc go raibh an aip suiteáilte ina leagan difriúil ná an aip paiste.\n\nSuiteáil an leagan den aip atá á shuiteáil agat agus bain triail as arís.",
|
||||||
"mount_no_root_description": "Theip ar an suiteáil toisc nár dheonaíodh rochtain fréimhe.\n\nDeonaigh rochtain fréimhe ar Bainisteoir ReVanced agus bain triail as arís.",
|
"mount_no_root_description": "Theip ar an tsuiteáil toisc nár deonaíodh rochtain fhréamh.\n\nDeonaigh rochtain fhréamh ar ReVanced Manager agus bain triail eile as.",
|
||||||
"mount_missing_installation_description": "Theip ar an suiteáil toisc nach raibh an aip neamhpháite á shuiteáil ar an bhfeiste seo d'fhonn suiteáil air.\n\nSuiteáil an aip gan patched sula gcuirtear é agus bain triail as arís.",
|
"mount_missing_installation_description": "Theip ar an suiteáil toisc nach raibh an aip neamhpháite á shuiteáil ar an bhfeiste seo d'fhonn suiteáil air.\n\nSuiteáil an aip gan patched sula gcuirtear é agus bain triail as arís.",
|
||||||
"status_failure_timeout_description": "Thóg an tsuiteáil rófhada chun críochnú.\n\nAr mhaith leat triail a bhaint as arís?",
|
"status_failure_timeout_description": "Thóg an tsuiteáil rófhada chun críochnú.\n\nAr mhaith leat triail a bhaint as arís?",
|
||||||
"status_failure_storage_description": "Theip ar an suiteáil mar gheall ar stóráil neamhleor.\n\nSaor roinnt spáis agus bain triail as arís.",
|
"status_failure_storage_description": "Theip ar an suiteáil mar gheall ar stóráil neamhleor.\n\nSaor roinnt spáis agus bain triail as arís.",
|
||||||
|
|||||||
@@ -23,7 +23,10 @@
|
|||||||
"refreshSuccess": "רוענן בהצלחה",
|
"refreshSuccess": "רוענן בהצלחה",
|
||||||
"widgetTitle": "לוח בקרה",
|
"widgetTitle": "לוח בקרה",
|
||||||
"updatesSubtitle": "עדכונים",
|
"updatesSubtitle": "עדכונים",
|
||||||
|
"lastPatchedAppSubtitle": "תיקון אפליקציה אחרון",
|
||||||
|
"patchedSubtitle": "אפליקציות מותקנות",
|
||||||
"changeLaterSubtitle": "ניתן לשנות זאת בהגדרות מאוחר יותר.",
|
"changeLaterSubtitle": "ניתן לשנות זאת בהגדרות מאוחר יותר.",
|
||||||
|
"noSavedAppFound": "לא נמצאו אפליקציות",
|
||||||
"noInstallations": "אין אפליקציות מתוקנת מותקנות",
|
"noInstallations": "אין אפליקציות מתוקנת מותקנות",
|
||||||
"installUpdate": "המשך להתקין את העדכון?",
|
"installUpdate": "המשך להתקין את העדכון?",
|
||||||
"updateSheetTitle": "עדכן את ReVanced Manager",
|
"updateSheetTitle": "עדכן את ReVanced Manager",
|
||||||
@@ -51,6 +54,7 @@
|
|||||||
"patcherView": {
|
"patcherView": {
|
||||||
"widgetTitle": "Patcher",
|
"widgetTitle": "Patcher",
|
||||||
"patchButton": "תיקון",
|
"patchButton": "תיקון",
|
||||||
|
"incompatibleArchWarningDialogText": "תיקון בארכיטקטורה זו לא נתמך עדיין ועלול להיכשל. להמשיך בכל זאת?",
|
||||||
"requiredOptionDialogText": "כמה אפשרויות תיקון חייבות להיקבע."
|
"requiredOptionDialogText": "כמה אפשרויות תיקון חייבות להיקבע."
|
||||||
},
|
},
|
||||||
"appSelectorCard": {
|
"appSelectorCard": {
|
||||||
@@ -101,6 +105,7 @@
|
|||||||
"setToNull": "השמה לnull",
|
"setToNull": "השמה לnull",
|
||||||
"viewTitle": "אפשרויות תיקון",
|
"viewTitle": "אפשרויות תיקון",
|
||||||
"saveOptions": "שמור",
|
"saveOptions": "שמור",
|
||||||
|
"unselectPatch": "בטל את בחירת התיקון",
|
||||||
"tooltip": "אפשרויות קלט נוספות",
|
"tooltip": "אפשרויות קלט נוספות",
|
||||||
"selectFilePath": "בחר נתיב קובץ",
|
"selectFilePath": "בחר נתיב קובץ",
|
||||||
"selectFolder": "בחר תיקייה",
|
"selectFolder": "בחר תיקייה",
|
||||||
@@ -122,7 +127,7 @@
|
|||||||
"warning": "השבת עדכונים אוטומטיים עבור באפליקציה המתוקנת כדי למנוע בעיות בלתי צפויות.",
|
"warning": "השבת עדכונים אוטומטיים עבור באפליקציה המתוקנת כדי למנוע בעיות בלתי צפויות.",
|
||||||
"pressBackAgain": "לחץ שוב כדי לבטל",
|
"pressBackAgain": "לחץ שוב כדי לבטל",
|
||||||
"openButton": "פתח",
|
"openButton": "פתח",
|
||||||
"notificationTitle": "מנהל העדכונים בתהליך תיקון",
|
"notificationTitle": "ReVanced Manager מבצע תיקון",
|
||||||
"notificationText": "לחץ כדי לחזור להתקנה",
|
"notificationText": "לחץ כדי לחזור להתקנה",
|
||||||
"exportApkButtonTooltip": "יצא APK מתוקן",
|
"exportApkButtonTooltip": "יצא APK מתוקן",
|
||||||
"exportLogButtonTooltip": "יצא תיעוד אירועים",
|
"exportLogButtonTooltip": "יצא תיעוד אירועים",
|
||||||
@@ -146,21 +151,22 @@
|
|||||||
"dynamicThemeHint": "תהנה/י מחוויה קרובה יותר למכשיר שלך",
|
"dynamicThemeHint": "תהנה/י מחוויה קרובה יותר למכשיר שלך",
|
||||||
"languageLabel": "שפה",
|
"languageLabel": "שפה",
|
||||||
"languageUpdated": "עדכוני שפה",
|
"languageUpdated": "עדכוני שפה",
|
||||||
"sourcesIntegrationsLabel": "מקור אינטגרציות",
|
|
||||||
"sourcesResetDialogTitle": "איפוס",
|
"sourcesResetDialogTitle": "איפוס",
|
||||||
"sourcesResetDialogText": "האם אתה בטוח שברצונך לאפס את המקורות לערכי ברירת המחדל שלהם?",
|
"sourcesResetDialogText": "האם אתה בטוח שברצונך לאפס את המקורות לערכי ברירת המחדל שלהם?",
|
||||||
"apiURLResetDialogText": "האם אתה בטוח שברצונך לאפס את כתובת הAPI לערך ברירת המחדל?",
|
"apiURLResetDialogText": "האם אתה בטוח שברצונך לאפס את כתובת הAPI לערך ברירת המחדל?",
|
||||||
"apiURLLabel": "כתובת API",
|
"apiURLLabel": "כתובת API",
|
||||||
|
"apiURLHint": "הגדר את כתובת ה-API של ReVanced Manager",
|
||||||
"selectApiURL": "כתובת API",
|
"selectApiURL": "כתובת API",
|
||||||
"orgPatchesLabel": "ארגון תיקונים",
|
"orgPatchesLabel": "ארגון תיקונים",
|
||||||
"sourcesPatchesLabel": "מקור התיקונים",
|
"sourcesPatchesLabel": "מקור התיקונים",
|
||||||
"orgIntegrationsLabel": "ארגון אינטגרציות",
|
|
||||||
"contributorsLabel": "תורמים",
|
"contributorsLabel": "תורמים",
|
||||||
"contributorsHint": "רשימת התורמים לReVanced",
|
"contributorsHint": "רשימת התורמים לReVanced",
|
||||||
"logsLabel": "שתף לוג",
|
"logsLabel": "שתף לוג",
|
||||||
|
"logsHint": "שתף ReVanced Manager לוג",
|
||||||
"disablePatchesSelectionWarningText": "אתה עומד לכבות את שינוי בחירת התיקונים.\nהבחירה ברירת המחדל של התיקונים תשוחזר.\n\nלכבות בכל מקרה?",
|
"disablePatchesSelectionWarningText": "אתה עומד לכבות את שינוי בחירת התיקונים.\nהבחירה ברירת המחדל של התיקונים תשוחזר.\n\nלכבות בכל מקרה?",
|
||||||
"autoUpdatePatchesLabel": "עדכון תיקונים באופן אוטומטי",
|
"autoUpdatePatchesLabel": "עדכון תיקונים באופן אוטומטי",
|
||||||
"autoUpdatePatchesHint": "עדכן אוטומטית את התיקונים לגרסה העדכנית ביותר",
|
"autoUpdatePatchesHint": "עדכן אוטומטית את התיקונים לגרסה העדכנית ביותר",
|
||||||
|
"showUpdateDialogLabel": "הצג תיבת עדכון",
|
||||||
"universalPatchesLabel": "הצג תיקונים אוניברסליים",
|
"universalPatchesLabel": "הצג תיקונים אוניברסליים",
|
||||||
"universalPatchesHint": "הצג את כל האפליקציות והתיקונים האוניברסליים (עשוי להאט את רשימת האפליקציות)",
|
"universalPatchesHint": "הצג את כל האפליקציות והתיקונים האוניברסליים (עשוי להאט את רשימת האפליקציות)",
|
||||||
"versionCompatibilityCheckLabel": "בדיקת תאימות לגרסה",
|
"versionCompatibilityCheckLabel": "בדיקת תאימות לגרסה",
|
||||||
@@ -188,6 +194,7 @@
|
|||||||
"resetStoredOptionsDialogText": "איפוס אפשרויות התיקון יסיר את כל האפשרויות השמורות.",
|
"resetStoredOptionsDialogText": "איפוס אפשרויות התיקון יסיר את כל האפשרויות השמורות.",
|
||||||
"resetStoredOptions": "האפשרויות אופסו",
|
"resetStoredOptions": "האפשרויות אופסו",
|
||||||
"deleteLogsLabel": "נקה יומנים",
|
"deleteLogsLabel": "נקה יומנים",
|
||||||
|
"deleteLogsHint": "מחק יומני ReVanced Manager שנאספו",
|
||||||
"deletedLogs": "תיעוד אירועים נחמק",
|
"deletedLogs": "תיעוד אירועים נחמק",
|
||||||
"regenerateKeystoreLabel": "יצירה חוזרת של מפתח-האחסון",
|
"regenerateKeystoreLabel": "יצירה חוזרת של מפתח-האחסון",
|
||||||
"regenerateKeystoreDialogTitle": "יצירה חוזרת של מפתח-האחסון?",
|
"regenerateKeystoreDialogTitle": "יצירה חוזרת של מפתח-האחסון?",
|
||||||
@@ -209,7 +216,7 @@
|
|||||||
"deleteButton": "למחוק",
|
"deleteButton": "למחוק",
|
||||||
"rootDialogTitle": "שגיאה",
|
"rootDialogTitle": "שגיאה",
|
||||||
"uninstallDialogText": "האם אתה בטוח שברצונך להסיר את האפליקציה הזו?",
|
"uninstallDialogText": "האם אתה בטוח שברצונך להסיר את האפליקציה הזו?",
|
||||||
"rootDialogText": "האפליקציה הותקנה עם הרשאות משתמש-על, אך כרגע למנהל המחודש אין הרשאות.\nאנא הענק תחילה הרשאות משתמש-על.",
|
"rootDialogText": "האפליקציה הותקנה עם הרשאות משתמש-על, אך כרגע ל-ReVanced Manager אין הרשאות. אנא הענק תחילה הרשאות משתמש-על.",
|
||||||
"removeAppDialogText": "האם אתה בטוח שאתה רוצה למחוק קובץ גיבוי זה?",
|
"removeAppDialogText": "האם אתה בטוח שאתה רוצה למחוק קובץ גיבוי זה?",
|
||||||
"packageNameLabel": "שם חבילה",
|
"packageNameLabel": "שם חבילה",
|
||||||
"installTypeLabel": "סוג התקנה",
|
"installTypeLabel": "סוג התקנה",
|
||||||
@@ -243,6 +250,7 @@
|
|||||||
"status_failure_timeout_description": "ההתקנה לקחה יותר מדי זמן לסיום.\n\nהאם ברצונך לנסות שוב?",
|
"status_failure_timeout_description": "ההתקנה לקחה יותר מדי זמן לסיום.\n\nהאם ברצונך לנסות שוב?",
|
||||||
"status_failure_storage_description": "ההתקנה נכשלה עקב אחסון לא מספיק.\n\nפנה קצת מקום ונסה שוב.",
|
"status_failure_storage_description": "ההתקנה נכשלה עקב אחסון לא מספיק.\n\nפנה קצת מקום ונסה שוב.",
|
||||||
"status_failure_invalid_description": "ההתקנה נכשלה בגלל שהאפליקציה המתוקנת לא חוקית.\n\nלהסיר את האפליקציה ולנסות שוב?",
|
"status_failure_invalid_description": "ההתקנה נכשלה בגלל שהאפליקציה המתוקנת לא חוקית.\n\nלהסיר את האפליקציה ולנסות שוב?",
|
||||||
|
"status_failure_incompatible_description": "האפליקציה אינה תואמת למכשיר זה.\n\nהשתמש ב-APK שנתמך על ידי מכשיר זה ונסה שוב.",
|
||||||
"status_failure_conflict_description": "ההתקנה נמנעה על ידי התקנה קיימת של האפליקציה.\n\nלהסיר את ההתקנה של האפליקציה המותקנת ולנסות שוב?",
|
"status_failure_conflict_description": "ההתקנה נמנעה על ידי התקנה קיימת של האפליקציה.\n\nלהסיר את ההתקנה של האפליקציה המותקנת ולנסות שוב?",
|
||||||
"status_failure_blocked_description": "ההתקנה נחסמה על ידי ${packageName}.\n\nשנה את הגדרות האבטחה שלך ונסה שוב.",
|
"status_failure_blocked_description": "ההתקנה נחסמה על ידי ${packageName}.\n\nשנה את הגדרות האבטחה שלך ונסה שוב.",
|
||||||
"install_failed_verification_failure_description": "ההתקנה נכשלה עקב בעיית אימות.\n\nשנה את הגדרות האבטחה שלך ונסה שוב.",
|
"install_failed_verification_failure_description": "ההתקנה נכשלה עקב בעיית אימות.\n\nשנה את הגדרות האבטחה שלך ונסה שוב.",
|
||||||
|
|||||||
@@ -103,13 +103,11 @@
|
|||||||
"dynamicThemeLabel": "मेटीरियल यू",
|
"dynamicThemeLabel": "मेटीरियल यू",
|
||||||
"dynamicThemeHint": "अपने डिवाइस के करीब एक अनुभव का आनंद लें",
|
"dynamicThemeHint": "अपने डिवाइस के करीब एक अनुभव का आनंद लें",
|
||||||
"languageLabel": "भाषा",
|
"languageLabel": "भाषा",
|
||||||
"sourcesIntegrationsLabel": "एकीकरण स्रोत",
|
|
||||||
"sourcesResetDialogTitle": "रीसेट करें",
|
"sourcesResetDialogTitle": "रीसेट करें",
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"selectApiURL": "API URL",
|
"selectApiURL": "API URL",
|
||||||
"orgPatchesLabel": "पैच संगठन",
|
"orgPatchesLabel": "पैच संगठन",
|
||||||
"sourcesPatchesLabel": "पैच स्रोत",
|
"sourcesPatchesLabel": "पैच स्रोत",
|
||||||
"orgIntegrationsLabel": "एकीकरण संगठन",
|
|
||||||
"contributorsLabel": "योगदान कर्ता",
|
"contributorsLabel": "योगदान कर्ता",
|
||||||
"contributorsHint": "ReVanced के योगदानकर्ताओ की सूची",
|
"contributorsHint": "ReVanced के योगदानकर्ताओ की सूची",
|
||||||
"aboutLabel": "विवरण",
|
"aboutLabel": "विवरण",
|
||||||
|
|||||||
@@ -93,13 +93,11 @@
|
|||||||
"darkThemeLabel": "Tamni način",
|
"darkThemeLabel": "Tamni način",
|
||||||
"dynamicThemeHint": "Uživajte u iskustvu prilagođenom vašem uređaju",
|
"dynamicThemeHint": "Uživajte u iskustvu prilagođenom vašem uređaju",
|
||||||
"languageLabel": "Jezik",
|
"languageLabel": "Jezik",
|
||||||
"sourcesIntegrationsLabel": "Izvori ugradnje",
|
|
||||||
"sourcesResetDialogTitle": "Ponovno postavljanje",
|
"sourcesResetDialogTitle": "Ponovno postavljanje",
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"selectApiURL": "API URL",
|
"selectApiURL": "API URL",
|
||||||
"orgPatchesLabel": "Autori zakrpa",
|
"orgPatchesLabel": "Autori zakrpa",
|
||||||
"sourcesPatchesLabel": "Izvor zakrpa",
|
"sourcesPatchesLabel": "Izvor zakrpa",
|
||||||
"orgIntegrationsLabel": "Organizacije za ugradnju",
|
|
||||||
"contributorsLabel": "Pridonositelji",
|
"contributorsLabel": "Pridonositelji",
|
||||||
"contributorsHint": "Popis suradnika ReVanceda",
|
"contributorsHint": "Popis suradnika ReVanceda",
|
||||||
"aboutLabel": "O aplikaciji",
|
"aboutLabel": "O aplikaciji",
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"noButton": "Nem",
|
"noButton": "Nem",
|
||||||
"warning": "Figyelmeztetés",
|
"warning": "Figyelmeztetés",
|
||||||
"notice": "Értesítés",
|
"notice": "Értesítés",
|
||||||
"noShowAgain": "Ne jelenjen meg többé",
|
"noShowAgain": "Ne mutasd ezt többet",
|
||||||
"add": "Hozzáadás",
|
"add": "Hozzáadás",
|
||||||
"remove": "Eltávolítás",
|
"remove": "Eltávolítás",
|
||||||
"showChangelogButton": "Változások megtekintése",
|
"showChangelogButton": "Változások megtekintése",
|
||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Nyelv",
|
"languageLabel": "Nyelv",
|
||||||
"languageUpdated": "Nyelv frissítve",
|
"languageUpdated": "Nyelv frissítve",
|
||||||
"sourcesLabel": "Alternatív források",
|
"sourcesLabel": "Alternatív források",
|
||||||
"sourcesLabelHint": "Állítsa be a ReVanced Patchek és ReVanced Integrációk alternatív forrásait",
|
"sourcesLabelHint": "Egyéni lejátszási sebesség hozzáadása vagy módosítása",
|
||||||
"sourcesIntegrationsLabel": "Integrációk - forrás",
|
|
||||||
"useAlternativeSources": "Alternatív források használata",
|
"useAlternativeSources": "Alternatív források használata",
|
||||||
"useAlternativeSourcesHint": "Használjon alternatív forrásokat a ReVanced Patchekhez és a ReVanced Integrációhoz az API helyett",
|
"useAlternativeSourcesHint": "Használjon alternatív forrásokat a ReVanced Patch-ekhez az API helyett",
|
||||||
"sourcesResetDialogTitle": "Visszaállítás",
|
"sourcesResetDialogTitle": "Visszaállítás",
|
||||||
"sourcesResetDialogText": "Biztosan vissza szeretné állítani a forrásokat az alapértelmezett értékekre?",
|
"sourcesResetDialogText": "Biztosan vissza szeretné állítani a forrásokat az alapértelmezett értékekre?",
|
||||||
"apiURLResetDialogText": "Biztosan vissza szeretné állítani az API URL-jét az alapértelmezett értékre?",
|
"apiURLResetDialogText": "Biztosan vissza szeretné állítani az API URL-jét az alapértelmezett értékre?",
|
||||||
"sourcesUpdateNote": "Megjegyzés: Ez automatikusan letölti a ReVanced Patcheket és a ReVanced Integrációkat az alternatív forrásokból.\n\nEzzel csatlakozik az alternatív forráshoz.",
|
"sourcesUpdateNote": "Megjegyzés: Ez automatikusan letölti a ReVanced Patch-eket az alternatív forrásokból.\n\nEzzel csatlakozik az alternatív forráshoz.",
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"apiURLHint": "Konfigurálja a ReVanced Manager API URL-jét",
|
"apiURLHint": "Konfigurálja a ReVanced Manager API URL-jét",
|
||||||
"selectApiURL": "API link",
|
"selectApiURL": "API link",
|
||||||
"orgPatchesLabel": "Patchek - szervezet",
|
"orgPatchesLabel": "Patchek - szervezet",
|
||||||
"sourcesPatchesLabel": "Patchek - forrás",
|
"sourcesPatchesLabel": "Patchek - forrás",
|
||||||
"orgIntegrationsLabel": "Integrációk - szervezet",
|
|
||||||
"contributorsLabel": "Közreműködők",
|
"contributorsLabel": "Közreműködők",
|
||||||
"contributorsHint": "A ReVanced közreműködőinek listája",
|
"contributorsHint": "A ReVanced közreműködőinek listája",
|
||||||
"logsLabel": "Naplók megosztása",
|
"logsLabel": "Naplók megosztása",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Ideiglenes fájlok törlése",
|
"deleteTempDirLabel": "Ideiglenes fájlok törlése",
|
||||||
"deleteTempDirHint": "Nem használt ideiglenes fájlok törlése",
|
"deleteTempDirHint": "Nem használt ideiglenes fájlok törlése",
|
||||||
"deletedTempDir": "Ideiglenes fájlok törölve",
|
"deletedTempDir": "Ideiglenes fájlok törölve",
|
||||||
|
"exportSettingsLabel": "Beállítások exportálása",
|
||||||
|
"exportSettingsHint": "A beállítások exportálása JSON-fájlba",
|
||||||
|
"exportedSettings": "Beállítások exportálva",
|
||||||
|
"importSettingsLabel": "Beállítások importálása",
|
||||||
|
"importSettingsHint": "Beállítások importálása JSON-fájlból",
|
||||||
|
"importedSettings": "Beállítások importálva",
|
||||||
"exportPatchesLabel": "Kijelölt patchek exportálása",
|
"exportPatchesLabel": "Kijelölt patchek exportálása",
|
||||||
"exportPatchesHint": "Exportálja a kijelölt patcheket egy JSON-fájlba",
|
"exportPatchesHint": "Exportálja a kijelölt patcheket egy JSON-fájlba",
|
||||||
"exportedPatches": "Kijelölt patchek exportálva",
|
"exportedPatches": "Kijelölt patchek exportálva",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Bahasa",
|
"languageLabel": "Bahasa",
|
||||||
"languageUpdated": "Bahasa diperbarui",
|
"languageUpdated": "Bahasa diperbarui",
|
||||||
"sourcesLabel": "Sumber alternatif",
|
"sourcesLabel": "Sumber alternatif",
|
||||||
"sourcesLabelHint": "Atur sumber alternatif untuk ReVanced Patches dan ReVanced Integrations",
|
"sourcesLabelHint": "Konfigurasikan sumber alternatif untuk Patch ReVanced",
|
||||||
"sourcesIntegrationsLabel": "Sumber Integrasi",
|
|
||||||
"useAlternativeSources": "Gunakan sumber alternatif",
|
"useAlternativeSources": "Gunakan sumber alternatif",
|
||||||
"useAlternativeSourcesHint": "Gunakan sumber alternatif untuk ReVanced Patches dan ReVanced Integrations daripada API",
|
"useAlternativeSourcesHint": "Gunakan sumber alternatif untuk Patch ReVanced, bukan API",
|
||||||
"sourcesResetDialogTitle": "Atur ulang",
|
"sourcesResetDialogTitle": "Atur ulang",
|
||||||
"sourcesResetDialogText": "Apakah Anda yakin ingin mengatur ulang sumber khusus ke sumber bawaan?",
|
"sourcesResetDialogText": "Apakah Anda yakin ingin mengatur ulang sumber khusus ke sumber bawaan?",
|
||||||
"apiURLResetDialogText": "Apakah Anda yakin ingin mengatur ulang URL API ke bawaan?",
|
"apiURLResetDialogText": "Apakah Anda yakin ingin mengatur ulang URL API ke bawaan?",
|
||||||
"sourcesUpdateNote": "Catatan: Ini akan secara otomatis mengunduh ReVanced Patches dan ReVanced Integrations dari sumber alternatif.\n\nIni akan menghubungkan Anda ke sumber alternatif.",
|
"sourcesUpdateNote": "Catatan: Ini akan secara otomatis mengunduh Patch ReVanced dari sumber alternatif.\n\nIni akan menghubungkan Anda ke sumber alternatif.",
|
||||||
"apiURLLabel": "URL API",
|
"apiURLLabel": "URL API",
|
||||||
"apiURLHint": "Atur URL API dari ReVanced Manager",
|
"apiURLHint": "Atur URL API dari ReVanced Manager",
|
||||||
"selectApiURL": "URL API",
|
"selectApiURL": "URL API",
|
||||||
"orgPatchesLabel": "Organisasi tambalan",
|
"orgPatchesLabel": "Organisasi tambalan",
|
||||||
"sourcesPatchesLabel": "Sumber tambalan",
|
"sourcesPatchesLabel": "Sumber tambalan",
|
||||||
"orgIntegrationsLabel": "Organisasi Integrasi",
|
|
||||||
"contributorsLabel": "Kontributor",
|
"contributorsLabel": "Kontributor",
|
||||||
"contributorsHint": "Daftar kontributor ReVanced",
|
"contributorsHint": "Daftar kontributor ReVanced",
|
||||||
"logsLabel": "Bagikan log",
|
"logsLabel": "Bagikan log",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Hapus berkas sementara",
|
"deleteTempDirLabel": "Hapus berkas sementara",
|
||||||
"deleteTempDirHint": "Hapus berkas sementara yang tidak dipakai",
|
"deleteTempDirHint": "Hapus berkas sementara yang tidak dipakai",
|
||||||
"deletedTempDir": "Berkas sementara dihapus",
|
"deletedTempDir": "Berkas sementara dihapus",
|
||||||
|
"exportSettingsLabel": "Ekspor pengaturan",
|
||||||
|
"exportSettingsHint": "Ekspor pengaturan ke berkas JSON",
|
||||||
|
"exportedSettings": "Pengaturan berhasil diekspor",
|
||||||
|
"importSettingsLabel": "Impor pengaturan",
|
||||||
|
"importSettingsHint": "Impor pengaturan dari berkas JSON",
|
||||||
|
"importedSettings": "Pengaturan berhasil diimpor",
|
||||||
"exportPatchesLabel": "Ekspor pilihan tambalan",
|
"exportPatchesLabel": "Ekspor pilihan tambalan",
|
||||||
"exportPatchesHint": "Ekspor pilihan tambalan ke berkas JSON",
|
"exportPatchesHint": "Ekspor pilihan tambalan ke berkas JSON",
|
||||||
"exportedPatches": "Tambalan terpilih diekspor",
|
"exportedPatches": "Tambalan terpilih diekspor",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Lingua",
|
"languageLabel": "Lingua",
|
||||||
"languageUpdated": "Lingua aggiornata",
|
"languageUpdated": "Lingua aggiornata",
|
||||||
"sourcesLabel": "Sorgenti alternative",
|
"sourcesLabel": "Sorgenti alternative",
|
||||||
"sourcesLabelHint": "Configura fonti alternative per ReVanced Patches e ReVanced Integrations",
|
"sourcesLabelHint": "Configurare le fonti alternative per le patch avanzate",
|
||||||
"sourcesIntegrationsLabel": "Sorgente Integrazioni",
|
|
||||||
"useAlternativeSources": "Usa sorgenti alternative",
|
"useAlternativeSources": "Usa sorgenti alternative",
|
||||||
"useAlternativeSourcesHint": "Usa sorgenti alternative per ReVanced Patches e ReVanced Integrations invece delle API",
|
"useAlternativeSourcesHint": "Usa fonti alternative per le patch avanzate invece che per le API",
|
||||||
"sourcesResetDialogTitle": "Reimposta",
|
"sourcesResetDialogTitle": "Reimposta",
|
||||||
"sourcesResetDialogText": "Sei sicuro di voler reimpostare le sorgenti ai valori predefiniti?",
|
"sourcesResetDialogText": "Sei sicuro di voler reimpostare le sorgenti ai valori predefiniti?",
|
||||||
"apiURLResetDialogText": "Sicuro di voler ripristinare l'URL API al valore predefinito?",
|
"apiURLResetDialogText": "Sicuro di voler ripristinare l'URL API al valore predefinito?",
|
||||||
"sourcesUpdateNote": "Nota: Questo scaricherà automaticamente ReVanced Patches e ReVanced Integrations dalle sorgenti alternative.\n\nQuesto ti collegherà alla sorgente alternativa.",
|
"sourcesUpdateNote": "Nota: Questo scaricherà automaticamente le patch avanzate dalle fonti alternative.\n\nQuesto ti collegherà alla sorgente alternativa.",
|
||||||
"apiURLLabel": "URL API",
|
"apiURLLabel": "URL API",
|
||||||
"apiURLHint": "Configura l'URL API di ReVanced Manager",
|
"apiURLHint": "Configura l'URL API di ReVanced Manager",
|
||||||
"selectApiURL": "URL API",
|
"selectApiURL": "URL API",
|
||||||
"orgPatchesLabel": "Organizzazione Patch",
|
"orgPatchesLabel": "Organizzazione Patch",
|
||||||
"sourcesPatchesLabel": "Sorgente Patch",
|
"sourcesPatchesLabel": "Sorgente Patch",
|
||||||
"orgIntegrationsLabel": "Organizzazione Integrazioni",
|
|
||||||
"contributorsLabel": "Contributori",
|
"contributorsLabel": "Contributori",
|
||||||
"contributorsHint": "Lista dei contributori di ReVanced",
|
"contributorsHint": "Lista dei contributori di ReVanced",
|
||||||
"logsLabel": "Condividi i log",
|
"logsLabel": "Condividi i log",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Elimina file temporanei",
|
"deleteTempDirLabel": "Elimina file temporanei",
|
||||||
"deleteTempDirHint": "Elimina i file temporanei non utilizzati",
|
"deleteTempDirHint": "Elimina i file temporanei non utilizzati",
|
||||||
"deletedTempDir": "File temporanei eliminati",
|
"deletedTempDir": "File temporanei eliminati",
|
||||||
|
"exportSettingsLabel": "Esporta impostazioni",
|
||||||
|
"exportSettingsHint": "Esporta le impostazioni in un file JSON",
|
||||||
|
"exportedSettings": "Impostazioni esportate",
|
||||||
|
"importSettingsLabel": "Importa impostazioni",
|
||||||
|
"importSettingsHint": "Importa le impostazioni da un file JSON",
|
||||||
|
"importedSettings": "Impostazioni importate",
|
||||||
"exportPatchesLabel": "Esporta selezione patch",
|
"exportPatchesLabel": "Esporta selezione patch",
|
||||||
"exportPatchesHint": "Esporta selezione patch in un file JSON",
|
"exportPatchesHint": "Esporta selezione patch in un file JSON",
|
||||||
"exportedPatches": "Selezione patch esportata",
|
"exportedPatches": "Selezione patch esportata",
|
||||||
|
|||||||
@@ -55,8 +55,8 @@
|
|||||||
"widgetTitle": "パッチャー",
|
"widgetTitle": "パッチャー",
|
||||||
"patchButton": "パッチ",
|
"patchButton": "パッチ",
|
||||||
"incompatibleArchWarningDialogText": "このアーキテクチャへのパッチ適用はまだサポートされておらず、失敗する可能性があります。とにかく続けますか?",
|
"incompatibleArchWarningDialogText": "このアーキテクチャへのパッチ適用はまだサポートされておらず、失敗する可能性があります。とにかく続けますか?",
|
||||||
"removedPatchesWarningDialogText": "最後にこのアプリにパッチを適用したときからパッチを削除しました:\n\n${patches}\n\n${newPatches}とにかく続けますか?",
|
"removedPatchesWarningDialogText": "前回このアプリにパッチを適用した時以降に削除されたパッチ:\n\n${patches}\n\n${newPatches}とにかく続けますか?",
|
||||||
"addedPatchesDialogText": "前回このアプリにパッチを適用した時以降のパッチを追加しました:\n\n${addedPatches}\n\n",
|
"addedPatchesDialogText": "前回このアプリにパッチを適用した時以降に追加されたパッチ:\n\n${addedPatches}\n",
|
||||||
"requiredOptionDialogText": "一部のパッチオプションを設定する必要があります。"
|
"requiredOptionDialogText": "一部のパッチオプションを設定する必要があります。"
|
||||||
},
|
},
|
||||||
"appSelectorCard": {
|
"appSelectorCard": {
|
||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "言語",
|
"languageLabel": "言語",
|
||||||
"languageUpdated": "言語が更新されました",
|
"languageUpdated": "言語が更新されました",
|
||||||
"sourcesLabel": "代替ソース",
|
"sourcesLabel": "代替ソース",
|
||||||
"sourcesLabelHint": "ReVanded PatchesとReVanced Integrationsの代替ソースを設定",
|
"sourcesLabelHint": "ReVanded Patches の代替ソースを構成する",
|
||||||
"sourcesIntegrationsLabel": "Integrations のソース",
|
|
||||||
"useAlternativeSources": "他のソースを使用",
|
"useAlternativeSources": "他のソースを使用",
|
||||||
"useAlternativeSourcesHint": "APIの代わりにReVanced PatchesとReVanced Integrationsの他のソースを使用する",
|
"useAlternativeSourcesHint": "APIの代わりにReVended Patchesの代替ソースを使用する",
|
||||||
"sourcesResetDialogTitle": "リセット",
|
"sourcesResetDialogTitle": "リセット",
|
||||||
"sourcesResetDialogText": "ソースをデフォルト値にリセットしてもよろしいですか?",
|
"sourcesResetDialogText": "ソースをデフォルト値にリセットしてもよろしいですか?",
|
||||||
"apiURLResetDialogText": "API の URL をデフォルト値にリセットしてもよろしいですか?",
|
"apiURLResetDialogText": "API の URL をデフォルト値にリセットしてもよろしいですか?",
|
||||||
"sourcesUpdateNote": "注: ReVanced PatchesとReVanced Integrationsを代替ソースから自動的にダウンロードします。\n\nこれにより、代替ソースとの通信が発生します。",
|
"sourcesUpdateNote": "注: ReVanced Patchesを代替ソースから自動的にダウンロードします。\n\nこれにより、代替ソースとの通信が発生します。",
|
||||||
"apiURLLabel": "API の URL",
|
"apiURLLabel": "API の URL",
|
||||||
"apiURLHint": "ReVanced ManagerのAPIのURLを設定する",
|
"apiURLHint": "ReVanced ManagerのAPIのURLを設定する",
|
||||||
"selectApiURL": "API の URL",
|
"selectApiURL": "API の URL",
|
||||||
"orgPatchesLabel": "Patches の組織",
|
"orgPatchesLabel": "Patches の組織",
|
||||||
"sourcesPatchesLabel": "Patches のソース",
|
"sourcesPatchesLabel": "Patches のソース",
|
||||||
"orgIntegrationsLabel": "Integrations の組織",
|
|
||||||
"contributorsLabel": "貢献者",
|
"contributorsLabel": "貢献者",
|
||||||
"contributorsHint": "ReVancedの貢献者一覧",
|
"contributorsHint": "ReVancedの貢献者一覧",
|
||||||
"logsLabel": "ログを共有",
|
"logsLabel": "ログを共有",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "一時ファイルを削除",
|
"deleteTempDirLabel": "一時ファイルを削除",
|
||||||
"deleteTempDirHint": "未使用の一時ファイルを削除",
|
"deleteTempDirHint": "未使用の一時ファイルを削除",
|
||||||
"deletedTempDir": "一時ファイルを削除しました",
|
"deletedTempDir": "一時ファイルを削除しました",
|
||||||
|
"exportSettingsLabel": "設定をエクスポート",
|
||||||
|
"exportSettingsHint": "設定を JSON ファイルにエクスポート",
|
||||||
|
"exportedSettings": "設定をエクスポートしました",
|
||||||
|
"importSettingsLabel": "設定をインポート",
|
||||||
|
"importSettingsHint": "JSONファイルから設定をインポート",
|
||||||
|
"importedSettings": "設定がインポートされました",
|
||||||
"exportPatchesLabel": "パッチ選択をエクスポート",
|
"exportPatchesLabel": "パッチ選択をエクスポート",
|
||||||
"exportPatchesHint": "パッチ選択を JSON ファイルにエクスポートします",
|
"exportPatchesHint": "パッチ選択を JSON ファイルにエクスポートします",
|
||||||
"exportedPatches": "パッチ選択をエクスポートしました",
|
"exportedPatches": "パッチ選択をエクスポートしました",
|
||||||
|
|||||||
@@ -85,7 +85,7 @@
|
|||||||
"downloadToast": "다운로드 기능은 아직 사용할 수 없습니다",
|
"downloadToast": "다운로드 기능은 아직 사용할 수 없습니다",
|
||||||
"requireSuggestedAppVersionDialogText": "선택한 앱 버전이 권장 앱 버전과 일치하지 않아서 예상되지 않은 문제점이 발생할 수 있습니다. 권장 앱 버전을 사용하세요.\n\n선택한 앱 버전: ${selected}\n권장 앱 버전: ${suggested}\n\n계속하려면 설정에서 '권장 앱 버전 요구'를 비활성화하세요.",
|
"requireSuggestedAppVersionDialogText": "선택한 앱 버전이 권장 앱 버전과 일치하지 않아서 예상되지 않은 문제점이 발생할 수 있습니다. 권장 앱 버전을 사용하세요.\n\n선택한 앱 버전: ${selected}\n권장 앱 버전: ${suggested}\n\n계속하려면 설정에서 '권장 앱 버전 요구'를 비활성화하세요.",
|
||||||
"featureNotAvailable": "기능이 구현되지 않았습니다",
|
"featureNotAvailable": "기능이 구현되지 않았습니다",
|
||||||
"featureNotAvailableText": "이 앱은 분할 APK이며 Root 권한으로 마운트해야만 안정적으로 패치 및 설치할 수 있습니다. 그러나 저장소에서 완전한 APK를 선택하여 패치 및 설치할 수 있습니다."
|
"featureNotAvailableText": "이 기기에서 추출할 수 있는 앱이 분할된 APK 파일이므로 Root 권한으로 마운트해야만 안정적으로 패치 및 설치할 수 있습니다. 그러나 Non-Root 사용자는 기기 저장소에서 '외부에서 다운로드한 완전한 APK 파일'을 선택하여 패치 및 설치할 수 있습니다."
|
||||||
},
|
},
|
||||||
"patchesSelectorView": {
|
"patchesSelectorView": {
|
||||||
"viewTitle": "패치 선택하기",
|
"viewTitle": "패치 선택하기",
|
||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "앱 언어",
|
"languageLabel": "앱 언어",
|
||||||
"languageUpdated": "앱 언어를 변경하였습니다",
|
"languageUpdated": "앱 언어를 변경하였습니다",
|
||||||
"sourcesLabel": "대체 소스",
|
"sourcesLabel": "대체 소스",
|
||||||
"sourcesLabelHint": "ReVanced Patches 및 ReVanced Integrations의 대체 소스를 설정할 수 있습니다",
|
"sourcesLabelHint": "ReVanced Patches의 대체 소스를 설정할 수 있습니다",
|
||||||
"sourcesIntegrationsLabel": "Integrations 소스",
|
|
||||||
"useAlternativeSources": "대체 소스 사용",
|
"useAlternativeSources": "대체 소스 사용",
|
||||||
"useAlternativeSourcesHint": "공식 소스가 아닌 ReVanced Patches 및 ReVanced Integrations의 대체 소스를 사용합니다",
|
"useAlternativeSourcesHint": "API를 대신하여 ReVanced Patches의 대체 소스를 사용합니다",
|
||||||
"sourcesResetDialogTitle": "초기화",
|
"sourcesResetDialogTitle": "초기화",
|
||||||
"sourcesResetDialogText": "정말 사용자 정의 소스를 기본값으로 초기화하시겠습니까?",
|
"sourcesResetDialogText": "정말 사용자 정의 소스를 기본값으로 초기화하시겠습니까?",
|
||||||
"apiURLResetDialogText": "정말 API URL을 기본값으로 초기화하시겠습니까?",
|
"apiURLResetDialogText": "정말 API URL을 기본값으로 초기화하시겠습니까?",
|
||||||
"sourcesUpdateNote": "알림: 변경하면 대체 소스에서 ReVanced Patches 및 ReVanced Integrations이 자동으로 다운로드됩니다. \n\n그 이후에는 대체 소스로 연결됩니다.",
|
"sourcesUpdateNote": "알림: 변경하면 대체 소스에서 ReVanced Patches가 자동으로 다운로드됩니다.\n\n그 이후에는 대체 소스로 연결됩니다.",
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"apiURLHint": "ReVanced Manager의 API URL를 설정할 수 있습니다.",
|
"apiURLHint": "ReVanced Manager의 API URL를 설정할 수 있습니다.",
|
||||||
"selectApiURL": "API URL",
|
"selectApiURL": "API URL",
|
||||||
"orgPatchesLabel": "Patches 구성",
|
"orgPatchesLabel": "Patches 구성",
|
||||||
"sourcesPatchesLabel": "Patches 소스",
|
"sourcesPatchesLabel": "Patches 소스",
|
||||||
"orgIntegrationsLabel": "Integrations 구성",
|
|
||||||
"contributorsLabel": "도움을 주신 분들",
|
"contributorsLabel": "도움을 주신 분들",
|
||||||
"contributorsHint": "ReVanced 개발에 도움을 주신 분들",
|
"contributorsHint": "ReVanced 개발에 도움을 주신 분들",
|
||||||
"logsLabel": "로그 공유하기",
|
"logsLabel": "로그 공유하기",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "임시 파일 제거",
|
"deleteTempDirLabel": "임시 파일 제거",
|
||||||
"deleteTempDirHint": "사용하지 않는 임시 파일을 제거합니다",
|
"deleteTempDirHint": "사용하지 않는 임시 파일을 제거합니다",
|
||||||
"deletedTempDir": "임시 파일을 제거하였습니다",
|
"deletedTempDir": "임시 파일을 제거하였습니다",
|
||||||
|
"exportSettingsLabel": "설정 내보내기",
|
||||||
|
"exportSettingsHint": "설정을 JSON 파일로 내보낼 수 있습니다",
|
||||||
|
"exportedSettings": "설정을 내보냈습니다",
|
||||||
|
"importSettingsLabel": "설정 가져오기",
|
||||||
|
"importSettingsHint": "설정을 JSON 파일에서 가져올 수 있습니다",
|
||||||
|
"importedSettings": "설정을 가져왔습니다",
|
||||||
"exportPatchesLabel": "패치 선택목록 내보내기",
|
"exportPatchesLabel": "패치 선택목록 내보내기",
|
||||||
"exportPatchesHint": "패치 선택목록을 JSON 파일로 내보냅니다",
|
"exportPatchesHint": "패치 선택목록을 JSON 파일로 내보냅니다",
|
||||||
"exportedPatches": "패치 선택목록을 내보냈습니다",
|
"exportedPatches": "패치 선택목록을 내보냈습니다",
|
||||||
|
|||||||
@@ -132,7 +132,6 @@
|
|||||||
"dynamicThemeHint": "Mėgaukis patirtimi artimiau tavo įrenginiui",
|
"dynamicThemeHint": "Mėgaukis patirtimi artimiau tavo įrenginiui",
|
||||||
"languageLabel": "Kalba",
|
"languageLabel": "Kalba",
|
||||||
"languageUpdated": "Kalba atnaujinta",
|
"languageUpdated": "Kalba atnaujinta",
|
||||||
"sourcesIntegrationsLabel": "Integracijų šaltinis",
|
|
||||||
"sourcesResetDialogTitle": "Nustatyti iš naujo",
|
"sourcesResetDialogTitle": "Nustatyti iš naujo",
|
||||||
"sourcesResetDialogText": "Ar tikrai norite iš naujo nustatyti savo šaltinius į numatytąsias vertes?",
|
"sourcesResetDialogText": "Ar tikrai norite iš naujo nustatyti savo šaltinius į numatytąsias vertes?",
|
||||||
"apiURLResetDialogText": "Ar tikrai norite iš naujo nustatyti savo API URL adresą į numatytąją vertę?",
|
"apiURLResetDialogText": "Ar tikrai norite iš naujo nustatyti savo API URL adresą į numatytąją vertę?",
|
||||||
@@ -140,7 +139,6 @@
|
|||||||
"selectApiURL": "API URL",
|
"selectApiURL": "API URL",
|
||||||
"orgPatchesLabel": "Modifikacijų organizacija",
|
"orgPatchesLabel": "Modifikacijų organizacija",
|
||||||
"sourcesPatchesLabel": "Modifikacijų šaltinis",
|
"sourcesPatchesLabel": "Modifikacijų šaltinis",
|
||||||
"orgIntegrationsLabel": "Integracijų organizacija",
|
|
||||||
"contributorsLabel": "Prisidėjusieji žmonės",
|
"contributorsLabel": "Prisidėjusieji žmonės",
|
||||||
"contributorsHint": "Žmonės prisidėję prie ReVanced",
|
"contributorsHint": "Žmonės prisidėję prie ReVanced",
|
||||||
"logsLabel": "Dalytis įrašais",
|
"logsLabel": "Dalytis įrašais",
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"okButton": "Labi",
|
"okButton": "Labi",
|
||||||
"cancelButton": "Atcelt",
|
"cancelButton": "Atcelt",
|
||||||
|
"dismissButton": "Atmest",
|
||||||
"quitButton": "Iziet",
|
"quitButton": "Iziet",
|
||||||
"updateButton": "Atjaunināt",
|
"updateButton": "Atjaunināt",
|
||||||
"suggested": "Ieteiktā versija: ${version}",
|
"suggested": "Ieteiktā versija: ${version}",
|
||||||
@@ -15,19 +16,22 @@
|
|||||||
"showUpdateButton": "Rādīt atjauninājumus",
|
"showUpdateButton": "Rādīt atjauninājumus",
|
||||||
"navigationView": {
|
"navigationView": {
|
||||||
"dashboardTab": "Info panelis",
|
"dashboardTab": "Info panelis",
|
||||||
"patcherTab": "Pačeris",
|
"patcherTab": "Lāpītājs",
|
||||||
"settingsTab": "Iestatījumi"
|
"settingsTab": "Iestatījumi"
|
||||||
},
|
},
|
||||||
"homeView": {
|
"homeView": {
|
||||||
"refreshSuccess": "Veiksmīgi atsvaidzināts",
|
"refreshSuccess": "Veiksmīgi atsvaidzināts",
|
||||||
"widgetTitle": "Info panelis",
|
"widgetTitle": "Info panelis",
|
||||||
"updatesSubtitle": "Atjauninājumi",
|
"updatesSubtitle": "Atjauninājumi",
|
||||||
|
"lastPatchedAppSubtitle": "Pēdējā lāpītā lietotne",
|
||||||
|
"patchedSubtitle": "Instalētās lietotnes",
|
||||||
"changeLaterSubtitle": "Jūs varat mainīt šo iestatījumu vēlāk.",
|
"changeLaterSubtitle": "Jūs varat mainīt šo iestatījumu vēlāk.",
|
||||||
"noInstallations": "Nav atrasta neviena pačota aplikācija",
|
"noSavedAppFound": "Neviena lietotne nav atrasta",
|
||||||
|
"noInstallations": "Nav instalēta neviena lāpīta aplikācija",
|
||||||
"installUpdate": "Vai turpināt instalēt atjauninājumu?",
|
"installUpdate": "Vai turpināt instalēt atjauninājumu?",
|
||||||
"updateSheetTitle": "Atjaunit ReVanced pārvaldnieku",
|
"updateSheetTitle": "Atjaunit ReVanced pārvaldnieku",
|
||||||
"updateDialogTitle": "Jauns atjauninājums ir pieejams",
|
"updateDialogTitle": "Jauns atjauninājums ir pieejams",
|
||||||
"updatePatchesSheetTitle": "ReVanced Patches atjaunināšana",
|
"updatePatchesSheetTitle": "Atjaunināt ReVanced ielāpus",
|
||||||
"updateChangelogTitle": "Izmaiņu žurnāls",
|
"updateChangelogTitle": "Izmaiņu žurnāls",
|
||||||
"updateDialogText": "Jauns atjauninājums ir pieejams ${file}.\n\nŠobrīd instalētā versija ir ${version}.",
|
"updateDialogText": "Jauns atjauninājums ir pieejams ${file}.\n\nŠobrīd instalētā versija ir ${version}.",
|
||||||
"downloadConsentDialogTitle": "Lejupielādēt nepieciešamos failus?",
|
"downloadConsentDialogTitle": "Lejupielādēt nepieciešamos failus?",
|
||||||
@@ -48,8 +52,11 @@
|
|||||||
"timeagoLabel": "Pirms ${time}"
|
"timeagoLabel": "Pirms ${time}"
|
||||||
},
|
},
|
||||||
"patcherView": {
|
"patcherView": {
|
||||||
"widgetTitle": "Pačeris",
|
"widgetTitle": "Lāpītājs",
|
||||||
"patchButton": "Pačot"
|
"patchButton": "Lāpīt",
|
||||||
|
"removedPatchesWarningDialogText": "Noņemti ielāpi kopš pēdējās reizes kad jūs lāpijāt šo lietotni:\n\n${patches}\n\n${newPatches}Vienalga turpināt?",
|
||||||
|
"addedPatchesDialogText": "Pievienoti ielāpi kopš pēdējās reizes kad jūs lāpijāt šo lietotni:\n\n${addedPatches}",
|
||||||
|
"requiredOptionDialogText": "Ir jāiestata dažas ielāpu opcijas."
|
||||||
},
|
},
|
||||||
"appSelectorCard": {
|
"appSelectorCard": {
|
||||||
"widgetTitle": "Izvēlaties lietotni",
|
"widgetTitle": "Izvēlaties lietotni",
|
||||||
@@ -59,10 +66,10 @@
|
|||||||
"anyVersion": "Jebkura versija"
|
"anyVersion": "Jebkura versija"
|
||||||
},
|
},
|
||||||
"patchSelectorCard": {
|
"patchSelectorCard": {
|
||||||
"widgetTitle": "Izvēlies pačus",
|
"widgetTitle": "Izvēlies ielāpus",
|
||||||
"widgetTitleSelected": "Izvēlētie pači",
|
"widgetTitleSelected": "Izvēlētie ielāpi",
|
||||||
"widgetSubtitle": "Vispirms, izvēlieties aplikāciju",
|
"widgetSubtitle": "Vispirms, izvēlieties aplikāciju",
|
||||||
"widgetEmptySubtitle": "Nav atlasītu paču"
|
"widgetEmptySubtitle": "Nav atlasītu ielāpu"
|
||||||
},
|
},
|
||||||
"socialMediaCard": {
|
"socialMediaCard": {
|
||||||
"widgetTitle": "Sociālie tīkli",
|
"widgetTitle": "Sociālie tīkli",
|
||||||
@@ -72,32 +79,51 @@
|
|||||||
"viewTitle": "Izvēlaties lietotni",
|
"viewTitle": "Izvēlaties lietotni",
|
||||||
"searchBarHint": "Meklēt lietotni",
|
"searchBarHint": "Meklēt lietotni",
|
||||||
"storageButton": "Krātuve",
|
"storageButton": "Krātuve",
|
||||||
"selectFromStorageButton": "Izvēlēties krātuvi",
|
"selectFromStorageButton": "Izvēlēties no krātuves",
|
||||||
"errorMessage": "Nevar izmantot atlasīto aplikāciju",
|
"errorMessage": "Nevar izmantot atlasīto aplikāciju",
|
||||||
"downloadToast": "Instalēšanas funkcija pašlaik nav pieejama",
|
"downloadToast": "Lejupielādes funkcija pašlaik nav pieejama",
|
||||||
"requireSuggestedAppVersionDialogText": "Lietotnes versija, kuru Jūs izvēlējāties, neatbilst rekomendētajai versijai, kas var novest līdz dažādām ķibelēm. Aicinām Jūs lietot rekomendēto versiju.\n\nIzvēlētā versija: ${selected}\nRekomendētā versija: ${suggested}\n\nLai turpinātu tā pat, atslēdziet \"Piespiest rekomendēto aplikācijas versiju\" iestatījumos.",
|
"requireSuggestedAppVersionDialogText": "Lietotnes versija, kuru Jūs izvēlējāties, neatbilst rekomendētajai versijai, kas var novest līdz dažādām ķibelēm. Aicinām Jūs lietot rekomendēto versiju.\n\nIzvēlētā versija: ${selected}\nRekomendētā versija: ${suggested}\n\nLai turpinātu tā pat, atslēdziet \"Piespiest rekomendēto aplikācijas versiju\" iestatījumos.",
|
||||||
"featureNotAvailable": "Funkcija nav ieviesta"
|
"featureNotAvailable": "Funkcija nav ieviesta"
|
||||||
},
|
},
|
||||||
"patchesSelectorView": {
|
"patchesSelectorView": {
|
||||||
"viewTitle": "Izvēlies pačus",
|
"viewTitle": "Izvēlies ielāpus",
|
||||||
"searchBarHint": "Meklē pačus",
|
"searchBarHint": "Meklē ielāpus",
|
||||||
|
"universalPatches": "Universāli ielāpi",
|
||||||
|
"newPatches": "Jauni ielāpi",
|
||||||
|
"patches": "Ielāpi",
|
||||||
"doneButton": "Gatavs",
|
"doneButton": "Gatavs",
|
||||||
"defaultChip": "Parasts",
|
"defaultChip": "Noklusējums",
|
||||||
"defaultTooltip": "Atlasiet visus standarta pači",
|
"defaultTooltip": "Atlasiet visus noklusējuma ielāpus",
|
||||||
"noneChip": "Neviens",
|
"noneChip": "Neviens",
|
||||||
"noneTooltip": "Atsijāt visus pači",
|
"noneTooltip": "Noņemt visu ielāpu izvēli",
|
||||||
"noPatchesFound": "Atlasītajai lietotnei nav atrasts neviens patčs"
|
"loadPatchesSelection": "Ielādēt ielāpu izvēli",
|
||||||
|
"noSavedPatches": "Nav saglabāta ielāpu izvēle priekš izvēlētās lietotnes.\nSpied Gatavs lai saglabātu pašreizējo izvēli.",
|
||||||
|
"noPatchesFound": "Atlasītajai lietotnei nav atrasts neviens ielāps",
|
||||||
|
"setRequiredOption": "Dažiem ielāpiem ir prasība iestatīt opcijas:\n\n${patches}\n\nLūdzu iestatiet tās pirms turpināšanas."
|
||||||
},
|
},
|
||||||
"patchOptionsView": {
|
"patchOptionsView": {
|
||||||
"saveOptions": "Saglabāt"
|
"customValue": "Pielāgota vērtība",
|
||||||
|
"setToNull": "Iestatīt uz nulli",
|
||||||
|
"nullValue": "Šīs opcijas vērtības šobrīd ir nulle",
|
||||||
|
"viewTitle": "Ielāpu opcijas",
|
||||||
|
"saveOptions": "Saglabāt",
|
||||||
|
"unselectPatch": "Noņemt ielāpa izvēli",
|
||||||
|
"tooltip": "Vairāk ievades opcijas",
|
||||||
|
"selectFilePath": "Izvēlēties faila ceļu",
|
||||||
|
"selectFolder": "Izvēlēties mapi",
|
||||||
|
"requiredOption": "Šīs opcijas iestatīšana ir obligāta",
|
||||||
|
"unsupportedOption": "Šī opcija netiek atbalstīta"
|
||||||
},
|
},
|
||||||
"patchItem": {
|
"patchItem": {
|
||||||
"unsupportedDialogText": "Izvēloties šo paču var rasties paču kļūdas\n\nApp versija: ${packageVersion}\nPašlaik atbalstītās versijas:\n${supportedVersions}"
|
"unsupportedDialogText": "Var rasties ielāpu kļūdas, izvēloties šo ielāpu.\n\nLietotnes versija: ${packageVersion}\nPašlaik atbalstītās versijas:\n${supportedVersions}",
|
||||||
|
"unsupportedPatchVersion": "Ielāps netiek atbalstīts šīs lietotnes versijai.",
|
||||||
|
"patchesChangeWarningDialogButton": "Lietot noklusējuma izvēli"
|
||||||
},
|
},
|
||||||
"installerView": {
|
"installerView": {
|
||||||
|
"installType": "Izvēlaties instalācijas tipu",
|
||||||
"installButton": "Instalēt",
|
"installButton": "Instalēt",
|
||||||
"openButton": "Atvērt",
|
"openButton": "Atvērt",
|
||||||
"notificationTitle": "ReVanced Manager pašlaik pačo",
|
"notificationTitle": "ReVanced Manager uzliek ielāpus",
|
||||||
"notificationText": "Spied, lai atgrieztos pie instalācijas",
|
"notificationText": "Spied, lai atgrieztos pie instalācijas",
|
||||||
"noExit": "Vēl notiek instalācija, nevar iziet..."
|
"noExit": "Vēl notiek instalācija, nevar iziet..."
|
||||||
},
|
},
|
||||||
@@ -114,15 +140,18 @@
|
|||||||
"dynamicThemeLabel": "Materiāls izskats",
|
"dynamicThemeLabel": "Materiāls izskats",
|
||||||
"dynamicThemeHint": "Izbaudi pieredzi personalizētu tavai ierīcei",
|
"dynamicThemeHint": "Izbaudi pieredzi personalizētu tavai ierīcei",
|
||||||
"languageLabel": "Valoda",
|
"languageLabel": "Valoda",
|
||||||
"sourcesIntegrationsLabel": "Integrācijas avots",
|
|
||||||
"sourcesResetDialogTitle": "Atiestatīt",
|
"sourcesResetDialogTitle": "Atiestatīt",
|
||||||
"apiURLLabel": "API Saite",
|
"apiURLLabel": "API Saite",
|
||||||
"selectApiURL": "API Saite",
|
"selectApiURL": "API Saite",
|
||||||
"orgPatchesLabel": "Paču autori",
|
"orgPatchesLabel": "Ielāpu organizācija",
|
||||||
"sourcesPatchesLabel": "Paču avots",
|
"sourcesPatchesLabel": "Ielāpu avots",
|
||||||
"orgIntegrationsLabel": "Integrāciju autori",
|
|
||||||
"contributorsLabel": "Autori",
|
"contributorsLabel": "Autori",
|
||||||
"contributorsHint": "ReVanced ieguldītāji",
|
"contributorsHint": "ReVanced ieguldītāji",
|
||||||
|
"autoUpdatePatchesLabel": "Automātiski atjaunināt ielāpus",
|
||||||
|
"autoUpdatePatchesHint": "Automātiski atjaunināt ielāpus uz jaunāko versiju",
|
||||||
|
"universalPatchesLabel": "Rādīt universālos ielāpus",
|
||||||
|
"lastPatchedAppLabel": "Saglabāt salāpīto lietotni",
|
||||||
|
"lastPatchedAppHint": "Saglabāt pēdējo ielāpu priekš vēlākas instalācijas vai eksportēšanas",
|
||||||
"aboutLabel": "Par",
|
"aboutLabel": "Par",
|
||||||
"snackbarMessage": "Ievietots starpliktuvē",
|
"snackbarMessage": "Ievietots starpliktuvē",
|
||||||
"restartAppForChanges": "Restartējiet lietotni, lai piemērotu izmaiņas",
|
"restartAppForChanges": "Restartējiet lietotni, lai piemērotu izmaiņas",
|
||||||
@@ -143,17 +172,40 @@
|
|||||||
"installButton": "Instalēt",
|
"installButton": "Instalēt",
|
||||||
"uninstallButton": "Atinstalēt",
|
"uninstallButton": "Atinstalēt",
|
||||||
"rootDialogTitle": "Kļūda",
|
"rootDialogTitle": "Kļūda",
|
||||||
|
"uninstallDialogText": "Vai esat pārliecināti, ka vēlaties atinstalēt šo lietotni?",
|
||||||
"rootDialogText": "Aplikācija tika instalēta ar superuser pieejām, taču ReVanced Manager nav šādu pieeju.\nLūdzams uzlikt vispirms superuser ieejas.",
|
"rootDialogText": "Aplikācija tika instalēta ar superuser pieejām, taču ReVanced Manager nav šādu pieeju.\nLūdzams uzlikt vispirms superuser ieejas.",
|
||||||
"packageNameLabel": "Pakotnes nosaukums",
|
"packageNameLabel": "Pakotnes nosaukums",
|
||||||
"installTypeLabel": "Instalācijas tips",
|
"installTypeLabel": "Instalācijas tips",
|
||||||
"patchedDateLabel": "Pača datums",
|
"patchedDateLabel": "Salāpīšanas datums",
|
||||||
"appliedPatchesLabel": "Lietotie pači",
|
"appliedPatchesLabel": "Izmantotie ielāpi",
|
||||||
"patchedDateHint": "${date} un ${time}",
|
"patchedDateHint": "${date} un ${time}",
|
||||||
"appliedPatchesHint": "${quantity} lietoti pači",
|
"appliedPatchesHint": "${quantity} izmantoti ielāpi",
|
||||||
"updateNotImplemented": "Šī funkcija vēl nav izveidota"
|
"updateNotImplemented": "Šī funkcija vēl nav izveidota"
|
||||||
},
|
},
|
||||||
"contributorsView": {
|
"contributorsView": {
|
||||||
"widgetTitle": "Autori"
|
"widgetTitle": "Autori"
|
||||||
},
|
},
|
||||||
"installErrorDialog": {}
|
"installErrorDialog": {
|
||||||
|
"mount_version_mismatch": "Versijas neatbilstība",
|
||||||
|
"mount_no_root": "Nav root piekļuves",
|
||||||
|
"mount_missing_installation": "Instalācija nav atrasta",
|
||||||
|
"status_failure_blocked": "Instalācija bloķēta",
|
||||||
|
"install_failed_verification_failure": "Verifikācija neizdevās",
|
||||||
|
"status_failure_invalid": "Instalācija nederīga",
|
||||||
|
"install_failed_version_downgrade": "Nevar samazināt versiju",
|
||||||
|
"status_failure_conflict": "Instalācijas konflikts",
|
||||||
|
"status_failure_storage": "Instalācijas krātuves problēma",
|
||||||
|
"status_failure_incompatible": "Instalācija nav saderīga",
|
||||||
|
"status_failure_timeout": "Instalācijas noildze",
|
||||||
|
"status_unknown": "Instalācija neizdevās",
|
||||||
|
"status_failure_timeout_description": "Instalēšana paņēma pārāk daudz laika.\n\nVai vēlaties mēģināt vēlreiz?",
|
||||||
|
"status_failure_storage_description": "Instalēšana neizdevās dēļ nepietiekamas vietas krātuvē.\n\nAtbrīvojiet vietu un mēģiniet vēlreiz.",
|
||||||
|
"status_failure_invalid_description": "Instalēšana neizdevās dēļ nederīgas lāpītās lietotnes.\n\nAtinstalēt lietotni un mēģināt vēlreiz?",
|
||||||
|
"status_failure_incompatible_description": "Šī lietotne nav saderīga ar jūsu ierīci.\n\nIzmantojiet APK, kuru jūsu ierīce atbalsta un mēģiniet vēlreiz.",
|
||||||
|
"status_failure_conflict_description": "Instalācija tika apturēta dēļ eksistējošas instalētas lietotnes.\n\nAtinstalēt instalēto lietotni un mēģināt vēlreiz?",
|
||||||
|
"status_failure_blocked_description": "Instalācija tika bloķēta dēļ ${packageName}.\n\nPielāgojiet savus drošības iestatījumus un mēģiniet vēlreiz.",
|
||||||
|
"install_failed_verification_failure_description": "Instalācija neizdevās dēl verifikācijas problēmas.\n\nPielāgojiet savus drošības iestatījumus un mēģiniet vēlreiz.",
|
||||||
|
"install_failed_version_downgrade_description": "Instalācija neizdevās, jo lāpītā lietotne ir vecākas versijas nekā instalētā lietotne.\n\nAtinstalēt lietotni un mēģināt vēlreiz?",
|
||||||
|
"status_unknown_description": "Instalācija neizdevās nezināma iemesla dēļ. Lūdzu mēģiniet vēlreiz."
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -73,11 +73,9 @@
|
|||||||
"exportSectionTitle": "Import & Eksport",
|
"exportSectionTitle": "Import & Eksport",
|
||||||
"dynamicThemeHint": "Nikmati tema yang lebih serasi dengan anda",
|
"dynamicThemeHint": "Nikmati tema yang lebih serasi dengan anda",
|
||||||
"languageLabel": "Bahasa",
|
"languageLabel": "Bahasa",
|
||||||
"sourcesIntegrationsLabel": "Sumber Integrasi",
|
|
||||||
"sourcesResetDialogTitle": "Set semula",
|
"sourcesResetDialogTitle": "Set semula",
|
||||||
"orgPatchesLabel": "Pengarang Modifikasi",
|
"orgPatchesLabel": "Pengarang Modifikasi",
|
||||||
"sourcesPatchesLabel": "Sumber Modifikasi",
|
"sourcesPatchesLabel": "Sumber Modifikasi",
|
||||||
"orgIntegrationsLabel": "Pengarang Integrasi",
|
|
||||||
"contributorsLabel": "Penyumbang",
|
"contributorsLabel": "Penyumbang",
|
||||||
"contributorsHint": "Senarai penyokong ReVanced",
|
"contributorsHint": "Senarai penyokong ReVanced",
|
||||||
"aboutLabel": "Tentang",
|
"aboutLabel": "Tentang",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Språk",
|
"languageLabel": "Språk",
|
||||||
"languageUpdated": "Språk oppdatert",
|
"languageUpdated": "Språk oppdatert",
|
||||||
"sourcesLabel": "Alternative kilder",
|
"sourcesLabel": "Alternative kilder",
|
||||||
"sourcesLabelHint": "Konfigurer alternative kilder for ReVanced Patches og ReVanced Integrations",
|
"sourcesLabelHint": "Konfigurer alternative kilder for ReVanced Patches",
|
||||||
"sourcesIntegrationsLabel": "Integrasjoner kilde",
|
|
||||||
"useAlternativeSources": "Bruk alternative kilder",
|
"useAlternativeSources": "Bruk alternative kilder",
|
||||||
"useAlternativeSourcesHint": "Bruk alternative kilder for ReVanced Patches and ReVanced Integrations i stedet for API",
|
"useAlternativeSourcesHint": "Bruk alternative kilder for ReVanced Patches i stedet for API",
|
||||||
"sourcesResetDialogTitle": "Reset",
|
"sourcesResetDialogTitle": "Reset",
|
||||||
"sourcesResetDialogText": "Er du sikker på at du vil tilbakestille kildene til standardverdiene?",
|
"sourcesResetDialogText": "Er du sikker på at du vil tilbakestille kildene til standardverdiene?",
|
||||||
"apiURLResetDialogText": "Er du sikker på at du vil nullstille API URL til standardverdien?",
|
"apiURLResetDialogText": "Er du sikker på at du vil nullstille API URL til standardverdien?",
|
||||||
"sourcesUpdateNote": "Merk: Dette vil automatisk laste ned ReVanced Patches og ReVanced Integrations fra de alternative kildene.\n\nDette vil koble deg til den alternative kilden.",
|
"sourcesUpdateNote": "Merk: Dette vil automatisk laste ned ReVanced Patches fra de alternative kildene.\n\nDette vil koble deg til den alternative kilden.",
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"apiURLHint": "Konfigurere API URL til ReVanced Manager",
|
"apiURLHint": "Konfigurere API URL til ReVanced Manager",
|
||||||
"selectApiURL": "API URL",
|
"selectApiURL": "API URL",
|
||||||
"orgPatchesLabel": "Fikser organisasjon",
|
"orgPatchesLabel": "Fikser organisasjon",
|
||||||
"sourcesPatchesLabel": "Patches source",
|
"sourcesPatchesLabel": "Patches source",
|
||||||
"orgIntegrationsLabel": "Integrasjonsorganisasjon",
|
|
||||||
"contributorsLabel": "Bidragsytere",
|
"contributorsLabel": "Bidragsytere",
|
||||||
"contributorsHint": "En liste over bidragsytere av ReVanced",
|
"contributorsHint": "En liste over bidragsytere av ReVanced",
|
||||||
"logsLabel": "Del logger",
|
"logsLabel": "Del logger",
|
||||||
@@ -198,6 +196,12 @@
|
|||||||
"deleteTempDirLabel": "Slett midlertidige filer",
|
"deleteTempDirLabel": "Slett midlertidige filer",
|
||||||
"deleteTempDirHint": "Slett ubrukte midlertidige filer",
|
"deleteTempDirHint": "Slett ubrukte midlertidige filer",
|
||||||
"deletedTempDir": "Midlertidige filer slettet",
|
"deletedTempDir": "Midlertidige filer slettet",
|
||||||
|
"exportSettingsLabel": "Eksporter innstillingene",
|
||||||
|
"exportSettingsHint": "Eksporter innstillingene til en JSON-fil",
|
||||||
|
"exportedSettings": "Innstillinger eksportert",
|
||||||
|
"importSettingsLabel": "Importer innstillinger",
|
||||||
|
"importSettingsHint": "Importer innstillinger fra en JSON-fil",
|
||||||
|
"importedSettings": "Innstillinger importert",
|
||||||
"exportPatchesLabel": "Eksport patch valg",
|
"exportPatchesLabel": "Eksport patch valg",
|
||||||
"exportPatchesHint": "Eksporter patch valg til en JSON-fil",
|
"exportPatchesHint": "Eksporter patch valg til en JSON-fil",
|
||||||
"exportedPatches": "Patch utvalg eksportert",
|
"exportedPatches": "Patch utvalg eksportert",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Taal",
|
"languageLabel": "Taal",
|
||||||
"languageUpdated": "Taal bijgewerkt",
|
"languageUpdated": "Taal bijgewerkt",
|
||||||
"sourcesLabel": "Alternatieve bronnen",
|
"sourcesLabel": "Alternatieve bronnen",
|
||||||
"sourcesLabelHint": "Configureer de alternatieve bronnen voor ReVanced Patches en ReVanced Integrations",
|
"sourcesLabelHint": "De alternatieve bronnen voor verbeterde patches configureren",
|
||||||
"sourcesIntegrationsLabel": "Integratiebronnen",
|
|
||||||
"useAlternativeSources": "Gebruik alternatieve bronnen",
|
"useAlternativeSources": "Gebruik alternatieve bronnen",
|
||||||
"useAlternativeSourcesHint": "Gebruik alternatieve bronnen voor ReVanced Patches en ReVanced Integrations in plaats van de API",
|
"useAlternativeSourcesHint": "Gebruik alternatieve bronnen voor ReVanced Patches in plaats van de API",
|
||||||
"sourcesResetDialogTitle": "Herstellen naar standaard",
|
"sourcesResetDialogTitle": "Herstellen naar standaard",
|
||||||
"sourcesResetDialogText": "Weet u zeker dat u uw bronnen op hun standaardwaarden wilt herstellen?",
|
"sourcesResetDialogText": "Weet u zeker dat u uw bronnen op hun standaardwaarden wilt herstellen?",
|
||||||
"apiURLResetDialogText": "Weet u zeker dat u uw API-URL wilt resetten naar de standaardwaarde?",
|
"apiURLResetDialogText": "Weet u zeker dat u uw API-URL wilt resetten naar de standaardwaarde?",
|
||||||
"sourcesUpdateNote": "Opmerking: Dit zal automatisch ReVanced Patches en Revanced Integrations uit de alternatieve bronnen downloaden.\n\nDit zal je verbinden met de alternatieve bron.",
|
"sourcesUpdateNote": "Opmerking: Dit zal automatisch ReVanceerde Patches uit de alternatieve bronnen downloaden.\n\nDit verbindt je met de alternatieve bron.",
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"apiURLHint": "Configureer de API URL van ReVanced Manager",
|
"apiURLHint": "Configureer de API URL van ReVanced Manager",
|
||||||
"selectApiURL": "API URL",
|
"selectApiURL": "API URL",
|
||||||
"orgPatchesLabel": "Beheer van patches",
|
"orgPatchesLabel": "Beheer van patches",
|
||||||
"sourcesPatchesLabel": "Bronnen voor patches",
|
"sourcesPatchesLabel": "Bronnen voor patches",
|
||||||
"orgIntegrationsLabel": "Integraties organisatie",
|
|
||||||
"contributorsLabel": "Bijdragers",
|
"contributorsLabel": "Bijdragers",
|
||||||
"contributorsHint": "Een lijst met bijdragers van ReVanced",
|
"contributorsHint": "Een lijst met bijdragers van ReVanced",
|
||||||
"logsLabel": "Deel logs",
|
"logsLabel": "Deel logs",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Tijdelijke bestanden verwijderen",
|
"deleteTempDirLabel": "Tijdelijke bestanden verwijderen",
|
||||||
"deleteTempDirHint": "Ongebruikte tijdelijke bestanden verwijderen",
|
"deleteTempDirHint": "Ongebruikte tijdelijke bestanden verwijderen",
|
||||||
"deletedTempDir": "Tijdelijke bestanden verwijderd",
|
"deletedTempDir": "Tijdelijke bestanden verwijderd",
|
||||||
|
"exportSettingsLabel": "Exporteer instellingen",
|
||||||
|
"exportSettingsHint": "Instellingen exporteren naar een JSON-bestand",
|
||||||
|
"exportedSettings": "Instellingen geëxporteerd",
|
||||||
|
"importSettingsLabel": "Instellingen importeren",
|
||||||
|
"importSettingsHint": "Instellingen importeren uit een JSON-bestand",
|
||||||
|
"importedSettings": "Instellingen geïmporteerd",
|
||||||
"exportPatchesLabel": "Exporteer patch selectie",
|
"exportPatchesLabel": "Exporteer patch selectie",
|
||||||
"exportPatchesHint": "Exporteer patch selectie naar een JSON bestand",
|
"exportPatchesHint": "Exporteer patch selectie naar een JSON bestand",
|
||||||
"exportedPatches": "Patch selectie geëxporteerd",
|
"exportedPatches": "Patch selectie geëxporteerd",
|
||||||
|
|||||||
@@ -58,11 +58,9 @@
|
|||||||
"darkThemeLabel": "Mørk modus",
|
"darkThemeLabel": "Mørk modus",
|
||||||
"dynamicThemeHint": "Nyt en erfaring nærmere din enhet",
|
"dynamicThemeHint": "Nyt en erfaring nærmere din enhet",
|
||||||
"languageLabel": "Språk",
|
"languageLabel": "Språk",
|
||||||
"sourcesIntegrationsLabel": "Integrasjoner kilde",
|
|
||||||
"sourcesResetDialogTitle": "Tilbakestill",
|
"sourcesResetDialogTitle": "Tilbakestill",
|
||||||
"orgPatchesLabel": "Patches organisasjon",
|
"orgPatchesLabel": "Patches organisasjon",
|
||||||
"sourcesPatchesLabel": "Patches kilde",
|
"sourcesPatchesLabel": "Patches kilde",
|
||||||
"orgIntegrationsLabel": "Integrasjonsorganisasjon",
|
|
||||||
"contributorsLabel": "Medvirkende",
|
"contributorsLabel": "Medvirkende",
|
||||||
"contributorsHint": "En liste med bidragsytere til ReVanced"
|
"contributorsHint": "En liste med bidragsytere til ReVanced"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,12 +27,12 @@
|
|||||||
"patchedSubtitle": "Zainstalowane aplikacje",
|
"patchedSubtitle": "Zainstalowane aplikacje",
|
||||||
"changeLaterSubtitle": "Możesz zmienić to później w ustawieniach.",
|
"changeLaterSubtitle": "Możesz zmienić to później w ustawieniach.",
|
||||||
"noSavedAppFound": "Nie znaleziono aplikacji",
|
"noSavedAppFound": "Nie znaleziono aplikacji",
|
||||||
"noInstallations": "Nie zainstalowano żadnych poprawionych aplikacji",
|
"noInstallations": "Nie zainstalowano żadnych łatanych aplikacji",
|
||||||
"installUpdate": "Kontynuować instalację aktualizacji?",
|
"installUpdate": "Kontynuować instalację aktualizacji?",
|
||||||
"updateSheetTitle": "Zaktualizuj Menedżera ReVanced",
|
"updateSheetTitle": "Zaktualizuj Menedżera ReVanced",
|
||||||
"updateDialogTitle": "Dostępna jest nowa aktualizacja",
|
"updateDialogTitle": "Dostępna jest nowa aktualizacja",
|
||||||
"updatePatchesSheetTitle": "Zaktualizuj łatki ReVanced",
|
"updatePatchesSheetTitle": "Zaktualizuj łatki ReVanced",
|
||||||
"updateChangelogTitle": "Dziennik zmian",
|
"updateChangelogTitle": "Lista zmian",
|
||||||
"updateDialogText": "Nowa aktualizacja jest dostępna dla ${file}.\n\nAktualnie zainstalowana wersja to ${version}.",
|
"updateDialogText": "Nowa aktualizacja jest dostępna dla ${file}.\n\nAktualnie zainstalowana wersja to ${version}.",
|
||||||
"downloadConsentDialogTitle": "Pobrać potrzebne pliki?",
|
"downloadConsentDialogTitle": "Pobrać potrzebne pliki?",
|
||||||
"downloadConsentDialogText": "Menedżer ReVanced musi pobrać niezbędne pliki do prawidłowego działania.",
|
"downloadConsentDialogText": "Menedżer ReVanced musi pobrać niezbędne pliki do prawidłowego działania.",
|
||||||
@@ -52,11 +52,11 @@
|
|||||||
"timeagoLabel": "${time} temu"
|
"timeagoLabel": "${time} temu"
|
||||||
},
|
},
|
||||||
"patcherView": {
|
"patcherView": {
|
||||||
"widgetTitle": "Program łatający",
|
"widgetTitle": "Łataj",
|
||||||
"patchButton": "Popraw",
|
"patchButton": "Popraw",
|
||||||
"incompatibleArchWarningDialogText": "Aktualizowanie na tej architekturze nie jest jeszcze obsługiwane i może się nie powieść. Czy chcesz kontynuować mimo to?",
|
"incompatibleArchWarningDialogText": "Łatanie na tej architekturze nie jest jeszcze obsługiwane i może się nie powieść. Czy chcesz kontynuować mimo to?",
|
||||||
"removedPatchesWarningDialogText": "Usunięto plastry od ostatniego wprowadzenia aplikacji:\n\n${patches}\n\n${newPatches}Kontynuować?",
|
"removedPatchesWarningDialogText": "Łatki usunięte od czasu Twojego ostatniego łatania aplikacji:\n\n${patches}\n\n${newPatches}Kontynuować?",
|
||||||
"addedPatchesDialogText": "Dodano plastry od ostatniej aktualizacji aplikacji:\n\n${addedPatches}\n\n",
|
"addedPatchesDialogText": "Łatki dodane od czasu Twojego ostatniego łatania aplikacji:\n\n${addedPatches}\n\n",
|
||||||
"requiredOptionDialogText": "Niektóre opcje muszą być ustawione."
|
"requiredOptionDialogText": "Niektóre opcje muszą być ustawione."
|
||||||
},
|
},
|
||||||
"appSelectorCard": {
|
"appSelectorCard": {
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
"downloadToast": "Funkcja pobierania jest jeszcze niedostępna",
|
"downloadToast": "Funkcja pobierania jest jeszcze niedostępna",
|
||||||
"requireSuggestedAppVersionDialogText": "Wersja aplikacji, która została wybrana nie jest sugerowana, co może prowadzić do nieoczekiwanych problemów. Proszę wybrać sugerowaną wersję aplikacji.\n\nWybrana wersja: ${selected}\nSugerowana wersja: ${suggested}\n\nAby kontynuować, wyłącz \"Wymagaj sugerowanej wersji aplikacji\" w ustawieniach.",
|
"requireSuggestedAppVersionDialogText": "Wersja aplikacji, która została wybrana nie jest sugerowana, co może prowadzić do nieoczekiwanych problemów. Proszę wybrać sugerowaną wersję aplikacji.\n\nWybrana wersja: ${selected}\nSugerowana wersja: ${suggested}\n\nAby kontynuować, wyłącz \"Wymagaj sugerowanej wersji aplikacji\" w ustawieniach.",
|
||||||
"featureNotAvailable": "Funkcja nie zaimplementowana",
|
"featureNotAvailable": "Funkcja nie zaimplementowana",
|
||||||
"featureNotAvailableText": "Ta aplikacja jest podzieloną APK i może być zainstalowana tylko korzystając z uprawnień roota. Jednakże możesz załatać i zainstalować pełną APK wybierając ją z pamięci."
|
"featureNotAvailableText": "Ta aplikacja jest podzieloną APK i może być załatana i zainstalowana tylko korzystając z uprawnień roota. Jednakże możesz załatać i zainstalować pełną APK wybierając ją z pamięci."
|
||||||
},
|
},
|
||||||
"patchesSelectorView": {
|
"patchesSelectorView": {
|
||||||
"viewTitle": "Wybierz łatki",
|
"viewTitle": "Wybierz łatki",
|
||||||
@@ -118,7 +118,7 @@
|
|||||||
"requiredOptionNull": "Należy ustawić następujące opcje:\n\n${options}"
|
"requiredOptionNull": "Należy ustawić następujące opcje:\n\n${options}"
|
||||||
},
|
},
|
||||||
"patchItem": {
|
"patchItem": {
|
||||||
"unsupportedDialogText": "Wybranie tej łatki może spowodować błędy podczas modyfikowania.\n\nWersja aplikacji: ${packageVersion}\nAktualnie wspierana wersja:\n${supportedVersions}",
|
"unsupportedDialogText": "Wybranie tej łatki może spowodować błędy podczas łatania.\n\nWersja aplikacji: ${packageVersion}\nAktualnie wspierana wersja:\n${supportedVersions}",
|
||||||
"unsupportedPatchVersion": "Łatka nie jest wspierana dla tej wersji aplikacji.",
|
"unsupportedPatchVersion": "Łatka nie jest wspierana dla tej wersji aplikacji.",
|
||||||
"unsupportedRequiredOption": "Ta łatka wymaga ustawienia opcji, która nie jest wspierana przez tę aplikację",
|
"unsupportedRequiredOption": "Ta łatka wymaga ustawienia opcji, która nie jest wspierana przez tę aplikację",
|
||||||
"patchesChangeWarningDialogText": "Zalecane jest użycie domyślnej listy wyboru łatek i opcji. Ich zmiana może spowodować nieoczekiwane problemy.\n\nMusisz włączyć \"Zezwól na zmianę listy wyboru łatek\" w ustawieniach przed zmianą listy wyboru łatek.",
|
"patchesChangeWarningDialogText": "Zalecane jest użycie domyślnej listy wyboru łatek i opcji. Ich zmiana może spowodować nieoczekiwane problemy.\n\nMusisz włączyć \"Zezwól na zmianę listy wyboru łatek\" w ustawieniach przed zmianą listy wyboru łatek.",
|
||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Język",
|
"languageLabel": "Język",
|
||||||
"languageUpdated": "Zaktualizowano język",
|
"languageUpdated": "Zaktualizowano język",
|
||||||
"sourcesLabel": "Alternatywne źródło",
|
"sourcesLabel": "Alternatywne źródło",
|
||||||
"sourcesLabelHint": "Skonfiguruj alternatywne źródła dla Łatek ReVanced i Integracji ReVanced",
|
"sourcesLabelHint": "Skonfiguruj alternatywne źródła dla ulepszonych patchów",
|
||||||
"sourcesIntegrationsLabel": "Źródło integracji",
|
|
||||||
"useAlternativeSources": "Używaj alternatywnych źródeł",
|
"useAlternativeSources": "Używaj alternatywnych źródeł",
|
||||||
"useAlternativeSourcesHint": "Używaj alternatywnych źródeł dla Łatek ReVanced i Integracji ReVanced zamiast API",
|
"useAlternativeSourcesHint": "Użyj alternatywnych źródeł dla ulepszonych patchów zamiast API",
|
||||||
"sourcesResetDialogTitle": "Zresetuj",
|
"sourcesResetDialogTitle": "Zresetuj",
|
||||||
"sourcesResetDialogText": "Czy na pewno chcesz przywrócić źródła niestandardowe do ich wartości domyślnych?",
|
"sourcesResetDialogText": "Czy na pewno chcesz przywrócić źródła niestandardowe do ich wartości domyślnych?",
|
||||||
"apiURLResetDialogText": "Czy jesteś pewien, że chcesz przywrócić wszystkie adresy API do domyślnych wartości?",
|
"apiURLResetDialogText": "Czy jesteś pewien, że chcesz przywrócić wszystkie adresy API do domyślnych wartości?",
|
||||||
"sourcesUpdateNote": "Uwaga: To automatycznie pobierze Łatki ReVanced i Integracje ReVanced z alternatywnych źródeł.\n\nTo połączy cię z alternatywnym źródłem.",
|
"sourcesUpdateNote": "Uwaga: Spowoduje to automatyczne pobranie ulepszonych Patchów z alternatywnych źródeł.\n\nTo połączy Cię z alternatywnym źródłem.",
|
||||||
"apiURLLabel": "Adres API",
|
"apiURLLabel": "Adres API",
|
||||||
"apiURLHint": "Skonfiguruj adres API Menedżera ReVanced",
|
"apiURLHint": "Skonfiguruj adres API Menedżera ReVanced",
|
||||||
"selectApiURL": "Adres API",
|
"selectApiURL": "Adres API",
|
||||||
"orgPatchesLabel": "Organizacja łatek",
|
"orgPatchesLabel": "Organizacja łatek",
|
||||||
"sourcesPatchesLabel": "Źródło łatek",
|
"sourcesPatchesLabel": "Źródło łatek",
|
||||||
"orgIntegrationsLabel": "Organizacja integracji",
|
|
||||||
"contributorsLabel": "Współtwórcy",
|
"contributorsLabel": "Współtwórcy",
|
||||||
"contributorsHint": "Lista współtwórców ReVanced",
|
"contributorsHint": "Lista współtwórców ReVanced",
|
||||||
"logsLabel": "Udostępnij logi",
|
"logsLabel": "Udostępnij logi",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Usuń pliki tymczasowe",
|
"deleteTempDirLabel": "Usuń pliki tymczasowe",
|
||||||
"deleteTempDirHint": "Usuń nieużywane pliki tymczasowe",
|
"deleteTempDirHint": "Usuń nieużywane pliki tymczasowe",
|
||||||
"deletedTempDir": "Pliki tymczasowe zostały usunięte",
|
"deletedTempDir": "Pliki tymczasowe zostały usunięte",
|
||||||
|
"exportSettingsLabel": "Eksportuj ustawienia",
|
||||||
|
"exportSettingsHint": "Eksportuj ustawienia do pliku JSON",
|
||||||
|
"exportedSettings": "Ustawienia wyeksportowane",
|
||||||
|
"importSettingsLabel": "Importuj ustawienia",
|
||||||
|
"importSettingsHint": "Importuj ustawienia z pliku JSON",
|
||||||
|
"importedSettings": "Ustawienia zaimportowane",
|
||||||
"exportPatchesLabel": "Eksportuj wybór łatek",
|
"exportPatchesLabel": "Eksportuj wybór łatek",
|
||||||
"exportPatchesHint": "Eksportuj wybór łatek do pliku JSON",
|
"exportPatchesHint": "Eksportuj wybór łatek do pliku JSON",
|
||||||
"exportedPatches": "Wyeksportowano wybór łatek",
|
"exportedPatches": "Wyeksportowano wybór łatek",
|
||||||
|
|||||||
@@ -55,6 +55,8 @@
|
|||||||
"widgetTitle": "Patcher",
|
"widgetTitle": "Patcher",
|
||||||
"patchButton": "Patch",
|
"patchButton": "Patch",
|
||||||
"incompatibleArchWarningDialogText": "A aplicação de patches nesta arquitetura ainda não é suportada e pode falhar. Continuar mesmo assim?",
|
"incompatibleArchWarningDialogText": "A aplicação de patches nesta arquitetura ainda não é suportada e pode falhar. Continuar mesmo assim?",
|
||||||
|
"removedPatchesWarningDialogText": "Patches removidos desde a última vez que você aplicou patches neste app:\n\n${patches}\n\n${newPatches}Continuar mesmo assim?",
|
||||||
|
"addedPatchesDialogText": "Patches adicionados desde a última vez que você aplicou patches neste app:\n\n${addedPatches}\n",
|
||||||
"requiredOptionDialogText": "Algumas opções de patch tiveram que ser definidas."
|
"requiredOptionDialogText": "Algumas opções de patch tiveram que ser definidas."
|
||||||
},
|
},
|
||||||
"appSelectorCard": {
|
"appSelectorCard": {
|
||||||
@@ -156,20 +158,18 @@
|
|||||||
"languageLabel": "Idioma",
|
"languageLabel": "Idioma",
|
||||||
"languageUpdated": "Idioma atualizado",
|
"languageUpdated": "Idioma atualizado",
|
||||||
"sourcesLabel": "Fontes alternativas",
|
"sourcesLabel": "Fontes alternativas",
|
||||||
"sourcesLabelHint": "Configure as fontes alternativas para Patches ReVanced e Integrações ReVanced",
|
"sourcesLabelHint": "Configure as fontes alternativas para os Patches ReVanced",
|
||||||
"sourcesIntegrationsLabel": "Fonte das integrações",
|
|
||||||
"useAlternativeSources": "Usar fontes alternativas",
|
"useAlternativeSources": "Usar fontes alternativas",
|
||||||
"useAlternativeSourcesHint": "Use fontes alternativas para Patches ReVanced e Integrações ReVanced em vez da API",
|
"useAlternativeSourcesHint": "Use fontes alternativas para os Patches ReVanced em vez da API",
|
||||||
"sourcesResetDialogTitle": "Redefinir",
|
"sourcesResetDialogTitle": "Redefinir",
|
||||||
"sourcesResetDialogText": "Você tem certeza que quer redefinir as fontes para o padrão?",
|
"sourcesResetDialogText": "Você tem certeza que quer redefinir as fontes para o padrão?",
|
||||||
"apiURLResetDialogText": "Tem certeza de que quer redefinir o URL da API para o padrão?",
|
"apiURLResetDialogText": "Tem certeza de que quer redefinir o URL da API para o padrão?",
|
||||||
"sourcesUpdateNote": "Nota: Isso irá baixar automaticamente os Patches ReVanced e as Integrações ReVanced de fontes alternativas.\n\nIsso irá conectá-lo à fonte alternativa.",
|
"sourcesUpdateNote": "Nota: Isso vai automaticamente fazer o download dos Patches ReVanced das fontes alternativas.\n\nIsso vai conectar você à fonte alternativa.",
|
||||||
"apiURLLabel": "URL da API",
|
"apiURLLabel": "URL da API",
|
||||||
"apiURLHint": "Configure o URL da API do ReVanced Manager",
|
"apiURLHint": "Configure o URL da API do ReVanced Manager",
|
||||||
"selectApiURL": "URL da API",
|
"selectApiURL": "URL da API",
|
||||||
"orgPatchesLabel": "Organização dos patches",
|
"orgPatchesLabel": "Organização dos patches",
|
||||||
"sourcesPatchesLabel": "Fonte dos patches",
|
"sourcesPatchesLabel": "Fonte dos patches",
|
||||||
"orgIntegrationsLabel": "Organização das integrações",
|
|
||||||
"contributorsLabel": "Contribuidores",
|
"contributorsLabel": "Contribuidores",
|
||||||
"contributorsHint": "Uma lista de contribuidores do ReVanced",
|
"contributorsHint": "Uma lista de contribuidores do ReVanced",
|
||||||
"logsLabel": "Compartilhar logs",
|
"logsLabel": "Compartilhar logs",
|
||||||
@@ -197,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Apagar arquivos temporários",
|
"deleteTempDirLabel": "Apagar arquivos temporários",
|
||||||
"deleteTempDirHint": "Apagar arquivos temporários não utilizados",
|
"deleteTempDirHint": "Apagar arquivos temporários não utilizados",
|
||||||
"deletedTempDir": "Arquivos temporários apagados",
|
"deletedTempDir": "Arquivos temporários apagados",
|
||||||
|
"exportSettingsLabel": "Exportar configurações",
|
||||||
|
"exportSettingsHint": "Exportar opções para arquivo JSON",
|
||||||
|
"exportedSettings": "Configurações exportadas",
|
||||||
|
"importSettingsLabel": "Importar configurações",
|
||||||
|
"importSettingsHint": "Importar opções de arquivo JSON",
|
||||||
|
"importedSettings": "Configurações importadas",
|
||||||
"exportPatchesLabel": "Exportar a seleção do patch",
|
"exportPatchesLabel": "Exportar a seleção do patch",
|
||||||
"exportPatchesHint": "Exportar a seleção do patch para um arquivo JSON",
|
"exportPatchesHint": "Exportar a seleção do patch para um arquivo JSON",
|
||||||
"exportedPatches": "Seleção do patch exportada",
|
"exportedPatches": "Seleção do patch exportada",
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
"noShowAgain": "Não mostrar isto novamente",
|
"noShowAgain": "Não mostrar isto novamente",
|
||||||
"add": "Adicionar",
|
"add": "Adicionar",
|
||||||
"remove": "Remover",
|
"remove": "Remover",
|
||||||
"showChangelogButton": "Mostrar as correções",
|
"showChangelogButton": "Mostrar correções",
|
||||||
"showUpdateButton": "Mostrar atualização",
|
"showUpdateButton": "Mostrar atualização",
|
||||||
"navigationView": {
|
"navigationView": {
|
||||||
"dashboardTab": "Painel de Controlo",
|
"dashboardTab": "Painel de Controlo",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
"patchedSubtitle": "Aplicações instaladas",
|
"patchedSubtitle": "Aplicações instaladas",
|
||||||
"changeLaterSubtitle": "Podes modificar esta definição mais tarde.",
|
"changeLaterSubtitle": "Podes modificar esta definição mais tarde.",
|
||||||
"noSavedAppFound": "Nenhuma aplicação encontrada",
|
"noSavedAppFound": "Nenhuma aplicação encontrada",
|
||||||
"noInstallations": "Nenhuma aplicação com patch instalado",
|
"noInstallations": "Nenhuma aplicação modificada instalada",
|
||||||
"installUpdate": "Continuar para instalar a atualização?",
|
"installUpdate": "Continuar para instalar a atualização?",
|
||||||
"updateSheetTitle": "Atualizar o ReVanced Manager",
|
"updateSheetTitle": "Atualizar o ReVanced Manager",
|
||||||
"updateDialogTitle": "Nova atualização disponível",
|
"updateDialogTitle": "Nova atualização disponível",
|
||||||
@@ -54,9 +54,9 @@
|
|||||||
"patcherView": {
|
"patcherView": {
|
||||||
"widgetTitle": "Modificador",
|
"widgetTitle": "Modificador",
|
||||||
"patchButton": "Modificar",
|
"patchButton": "Modificar",
|
||||||
"incompatibleArchWarningDialogText": "Patrulhar nesta arquitetura ainda não é suportado e pode falhar. Continuar mesmo assim?",
|
"incompatibleArchWarningDialogText": "A modificação nesta arquitetura ainda não é suportada e pode falhar. Continuar na mesma?",
|
||||||
"removedPatchesWarningDialogText": "Removido correções desde a última vez que você corrigiu este aplicativo:\n\n${patches}\n\n${newPatches}Continuar mesmo assim?",
|
"removedPatchesWarningDialogText": "Modificações removidas desde a última vez que corrigiu esta aplicação:\n\n${patches}\n\n${newPatches}Continuar mesmo assim?",
|
||||||
"addedPatchesDialogText": "Adicionado patches desde a última vez que você corrigiu este aplicativo:\n\n${addedPatches}\n\n",
|
"addedPatchesDialogText": "Modificações adicionadas desde a última vez que corrigiu esta aplicação:\n\n${addedPatches}\n\n",
|
||||||
"requiredOptionDialogText": "Algumas opções das Modificações precisam ser definidas."
|
"requiredOptionDialogText": "Algumas opções das Modificações precisam ser definidas."
|
||||||
},
|
},
|
||||||
"appSelectorCard": {
|
"appSelectorCard": {
|
||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Idioma",
|
"languageLabel": "Idioma",
|
||||||
"languageUpdated": "Idioma atualizado",
|
"languageUpdated": "Idioma atualizado",
|
||||||
"sourcesLabel": "Fontes alternativas",
|
"sourcesLabel": "Fontes alternativas",
|
||||||
"sourcesLabelHint": "Configurar as fontes alternativas para as Modificações ReVanced e Integrações ReVanced",
|
"sourcesLabelHint": "Configure as fontes alternativas para Correções ReVanced",
|
||||||
"sourcesIntegrationsLabel": "Fonte das Integrações",
|
|
||||||
"useAlternativeSources": "Usar fontes alternativas",
|
"useAlternativeSources": "Usar fontes alternativas",
|
||||||
"useAlternativeSourcesHint": "Usar fontes alternativas para as Modificações ReVanced e as Integrações ReVanced em vez da API",
|
"useAlternativeSourcesHint": "Usar fontes alternativas para correções redistribuídas em vez da API",
|
||||||
"sourcesResetDialogTitle": "Repor",
|
"sourcesResetDialogTitle": "Repor",
|
||||||
"sourcesResetDialogText": "Tens a certeza de que pretendes repor os valores predefinidos das fontes?",
|
"sourcesResetDialogText": "Tens a certeza de que pretendes repor os valores predefinidos das fontes?",
|
||||||
"apiURLResetDialogText": "Tens a certeza de que pretendes repor a URL da API para o seu valor predefinido?",
|
"apiURLResetDialogText": "Tens a certeza de que pretendes repor a URL da API para o seu valor predefinido?",
|
||||||
"sourcesUpdateNote": "Nota: Esta ação descarrega automaticamente as Modificações do ReVanced e as Integrações do ReVanced das fontes alternativas.\n\nIsto irá conectar-te com a fonte alternativa.",
|
"sourcesUpdateNote": "Nota: Esta ação descarrega automaticamente as Modificações do ReVanced de fontes alternativas.\n\nIsto ligá-lo-á à fonte alternativa.",
|
||||||
"apiURLLabel": "URL da API",
|
"apiURLLabel": "URL da API",
|
||||||
"apiURLHint": "Configurar a URL da API do Gestor ReVanced",
|
"apiURLHint": "Configurar a URL da API do Gestor ReVanced",
|
||||||
"selectApiURL": "URL da API",
|
"selectApiURL": "URL da API",
|
||||||
"orgPatchesLabel": "Organização de Modificações",
|
"orgPatchesLabel": "Organização de Modificações",
|
||||||
"sourcesPatchesLabel": "Fonte das Modificações",
|
"sourcesPatchesLabel": "Fonte das Modificações",
|
||||||
"orgIntegrationsLabel": "Organização de Integrações",
|
|
||||||
"contributorsLabel": "Contribuidores",
|
"contributorsLabel": "Contribuidores",
|
||||||
"contributorsHint": "Uma lista de contribuidores do ReVanced",
|
"contributorsHint": "Uma lista de contribuidores do ReVanced",
|
||||||
"logsLabel": "Partilhar registos",
|
"logsLabel": "Partilhar registos",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Apagar arquivos temporários",
|
"deleteTempDirLabel": "Apagar arquivos temporários",
|
||||||
"deleteTempDirHint": "Apagar arquivos temporários não utilizados",
|
"deleteTempDirHint": "Apagar arquivos temporários não utilizados",
|
||||||
"deletedTempDir": "Arquivos temporários apagados",
|
"deletedTempDir": "Arquivos temporários apagados",
|
||||||
|
"exportSettingsLabel": "Exportar configurações",
|
||||||
|
"exportSettingsHint": "Exportar configurações para um arquivo JSON",
|
||||||
|
"exportedSettings": "Configurações exportadas",
|
||||||
|
"importSettingsLabel": "Importar configurações",
|
||||||
|
"importSettingsHint": "Importar configurações de um arquivo JSON",
|
||||||
|
"importedSettings": "Configurações importadas",
|
||||||
"exportPatchesLabel": "Exportar a seleção de Modificações",
|
"exportPatchesLabel": "Exportar a seleção de Modificações",
|
||||||
"exportPatchesHint": "Exportar a seleção de Modificações para um ficheiro JSON",
|
"exportPatchesHint": "Exportar a seleção de Modificações para um ficheiro JSON",
|
||||||
"exportedPatches": "Seleção de Modificações exportada",
|
"exportedPatches": "Seleção de Modificações exportada",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Limbă",
|
"languageLabel": "Limbă",
|
||||||
"languageUpdated": "Limbă actualizată",
|
"languageUpdated": "Limbă actualizată",
|
||||||
"sourcesLabel": "Surse alternative",
|
"sourcesLabel": "Surse alternative",
|
||||||
"sourcesLabelHint": "Configurați sursele alternative pentru patch-urile ReVanced și Integrările ReVanced",
|
"sourcesLabelHint": "Configurați sursele alternative pentru patch-urile revanced",
|
||||||
"sourcesIntegrationsLabel": "Sursă integrări",
|
|
||||||
"useAlternativeSources": "Folosiți surse alternative",
|
"useAlternativeSources": "Folosiți surse alternative",
|
||||||
"useAlternativeSourcesHint": "Utilizați surse alternative pentru patch-urile revanced și Integrările ReVanced în loc de API",
|
"useAlternativeSourcesHint": "Folosiți surse alternative pentru paturile revanced în loc de API",
|
||||||
"sourcesResetDialogTitle": "Resetează",
|
"sourcesResetDialogTitle": "Resetează",
|
||||||
"sourcesResetDialogText": "Sunteți sigur că doriți să resetați sursele la valorile lor implicite?",
|
"sourcesResetDialogText": "Sunteți sigur că doriți să resetați sursele la valorile lor implicite?",
|
||||||
"apiURLResetDialogText": "Sunteţi sigur că doriţi să resetaţi URL-ul API la valoarea sa implicită?",
|
"apiURLResetDialogText": "Sunteţi sigur că doriţi să resetaţi URL-ul API la valoarea sa implicită?",
|
||||||
"sourcesUpdateNote": "Notă: Acest lucru va descărca automat patch-urile ReVanced și Integrările ReVanced din sursele alternative.\n\nAceasta vă va conecta la sursa alternativă.",
|
"sourcesUpdateNote": "Notă: Aceasta va descărca automat plasturii ReVanced din sursele alternative.\n\nAceasta vă va conecta la sursa alternativă.",
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"apiURLHint": "Configurați URL-ul API al Managerului ReVanced",
|
"apiURLHint": "Configurați URL-ul API al Managerului ReVanced",
|
||||||
"selectApiURL": "API URL",
|
"selectApiURL": "API URL",
|
||||||
"orgPatchesLabel": "Organizarea patch-urilor",
|
"orgPatchesLabel": "Organizarea patch-urilor",
|
||||||
"sourcesPatchesLabel": "Sursă patch-uri",
|
"sourcesPatchesLabel": "Sursă patch-uri",
|
||||||
"orgIntegrationsLabel": "Organizare integrări",
|
|
||||||
"contributorsLabel": "Contribuitori",
|
"contributorsLabel": "Contribuitori",
|
||||||
"contributorsHint": "O listă cu contribuitorii ReVanced",
|
"contributorsHint": "O listă cu contribuitorii ReVanced",
|
||||||
"logsLabel": "Partajare jurnale",
|
"logsLabel": "Partajare jurnale",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Ștergeți fișierele temporare",
|
"deleteTempDirLabel": "Ștergeți fișierele temporare",
|
||||||
"deleteTempDirHint": "Șterge fișierele temporare neutilizate",
|
"deleteTempDirHint": "Șterge fișierele temporare neutilizate",
|
||||||
"deletedTempDir": "Fișierele temporare au fost șterse",
|
"deletedTempDir": "Fișierele temporare au fost șterse",
|
||||||
|
"exportSettingsLabel": "Exportă setările",
|
||||||
|
"exportSettingsHint": "Exportă setările într-un fișier JSON",
|
||||||
|
"exportedSettings": "Setări exportate",
|
||||||
|
"importSettingsLabel": "Importă setări",
|
||||||
|
"importSettingsHint": "Importă setările dintr-un fișier JSON",
|
||||||
|
"importedSettings": "Setări importate",
|
||||||
"exportPatchesLabel": "Exportați selecția patch-urilor",
|
"exportPatchesLabel": "Exportați selecția patch-urilor",
|
||||||
"exportPatchesHint": "Exportați selecția patch-urilor într-un fișier JSON",
|
"exportPatchesHint": "Exportați selecția patch-urilor într-un fișier JSON",
|
||||||
"exportedPatches": "Selecția patch-urilor a fost exportată",
|
"exportedPatches": "Selecția patch-urilor a fost exportată",
|
||||||
|
|||||||
@@ -55,8 +55,8 @@
|
|||||||
"widgetTitle": "Патчер",
|
"widgetTitle": "Патчер",
|
||||||
"patchButton": "Пропатчить",
|
"patchButton": "Пропатчить",
|
||||||
"incompatibleArchWarningDialogText": "Патчинг на этой архитектуре еще не поддерживается и может завершиться неудачей. Продолжить?",
|
"incompatibleArchWarningDialogText": "Патчинг на этой архитектуре еще не поддерживается и может завершиться неудачей. Продолжить?",
|
||||||
"removedPatchesWarningDialogText": "Удаленные патчи с момента последнего патчинга приложения:\n\n${patches}\n\n${newPatches}Все равно продолжить?",
|
"removedPatchesWarningDialogText": "Удаленные патчи с момента последнего патчинга данного приложения:\n\n${patches}\n\n${newPatches}Все равно продолжить?",
|
||||||
"addedPatchesDialogText": "Добавленные патчи с момента последнего патчинга приложения:\n\n${addedPatches}\n\n",
|
"addedPatchesDialogText": "Добавленные патчи с момента последнего патчинга данного приложения:\n\n${addedPatches}\n\n",
|
||||||
"requiredOptionDialogText": "Некоторые параметры патчей должны быть обязательно установлены."
|
"requiredOptionDialogText": "Некоторые параметры патчей должны быть обязательно установлены."
|
||||||
},
|
},
|
||||||
"appSelectorCard": {
|
"appSelectorCard": {
|
||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Язык",
|
"languageLabel": "Язык",
|
||||||
"languageUpdated": "Язык обновлен",
|
"languageUpdated": "Язык обновлен",
|
||||||
"sourcesLabel": "Альтернативные источники",
|
"sourcesLabel": "Альтернативные источники",
|
||||||
"sourcesLabelHint": "Настроить альтернативные источники для патчей и интеграций ReVanced",
|
"sourcesLabelHint": "Настроить альтернативные источники для ReVanced Patches",
|
||||||
"sourcesIntegrationsLabel": "Репозиторий интеграций",
|
|
||||||
"useAlternativeSources": "Использовать альтернативные источники",
|
"useAlternativeSources": "Использовать альтернативные источники",
|
||||||
"useAlternativeSourcesHint": "Использовать альтернативные источники для патчей и интеграций ReVanced вместо API",
|
"useAlternativeSourcesHint": "Использовать альтернативные источники для ReVanced Patches вместо API",
|
||||||
"sourcesResetDialogTitle": "Сброс",
|
"sourcesResetDialogTitle": "Сброс",
|
||||||
"sourcesResetDialogText": "Вы уверены, что хотите сбросить ваши источники до значений по умолчанию?",
|
"sourcesResetDialogText": "Вы уверены, что хотите сбросить ваши источники до значений по умолчанию?",
|
||||||
"apiURLResetDialogText": "Вы уверены, что хотите сбросить API-ссылку до значения по умолчанию?",
|
"apiURLResetDialogText": "Вы уверены, что хотите сбросить API-ссылку до значения по умолчанию?",
|
||||||
"sourcesUpdateNote": "Примечание: при этом будут автоматически загружены патчи и интеграции ReVanced из альтернативных источников.\n\nЭто соединит вас с альтернативным источником.",
|
"sourcesUpdateNote": "Примечание: Это автоматически загрузит ReVanced Patches из альтернативных источников.\n\nЭто соединит вас с альтернативным источником.",
|
||||||
"apiURLLabel": "API-ссылка",
|
"apiURLLabel": "API-ссылка",
|
||||||
"apiURLHint": "Настройте URL-адрес API ReVanced Менеджера",
|
"apiURLHint": "Настройте URL-адрес API ReVanced Менеджера",
|
||||||
"selectApiURL": "API-ссылка",
|
"selectApiURL": "API-ссылка",
|
||||||
"orgPatchesLabel": "Организация патчей",
|
"orgPatchesLabel": "Организация патчей",
|
||||||
"sourcesPatchesLabel": "Репозиторий патчей",
|
"sourcesPatchesLabel": "Репозиторий патчей",
|
||||||
"orgIntegrationsLabel": "Организация интеграций",
|
|
||||||
"contributorsLabel": "Соучастники проекта",
|
"contributorsLabel": "Соучастники проекта",
|
||||||
"contributorsHint": "Список соучастников ReVanced",
|
"contributorsHint": "Список соучастников ReVanced",
|
||||||
"logsLabel": "Поделиться логами",
|
"logsLabel": "Поделиться логами",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Удалить временные файлы",
|
"deleteTempDirLabel": "Удалить временные файлы",
|
||||||
"deleteTempDirHint": "Удалить неиспользуемые временные файлы",
|
"deleteTempDirHint": "Удалить неиспользуемые временные файлы",
|
||||||
"deletedTempDir": "Временные файлы удалены",
|
"deletedTempDir": "Временные файлы удалены",
|
||||||
|
"exportSettingsLabel": "Настройки экспорта",
|
||||||
|
"exportSettingsHint": "Экспорт настроек в файл JSON",
|
||||||
|
"exportedSettings": "Настройки экспортированы",
|
||||||
|
"importSettingsLabel": "Импорт настроек",
|
||||||
|
"importSettingsHint": "Импорт настроек из файла JSON",
|
||||||
|
"importedSettings": "Настройки импортированы",
|
||||||
"exportPatchesLabel": "Экспорт выборки патчей",
|
"exportPatchesLabel": "Экспорт выборки патчей",
|
||||||
"exportPatchesHint": "Экспортировать выборку патчей в JSON файл",
|
"exportPatchesHint": "Экспортировать выборку патчей в JSON файл",
|
||||||
"exportedPatches": "Выборка патчей экспортирована",
|
"exportedPatches": "Выборка патчей экспортирована",
|
||||||
|
|||||||
@@ -111,13 +111,11 @@
|
|||||||
"dynamicThemeLabel": "Material You",
|
"dynamicThemeLabel": "Material You",
|
||||||
"dynamicThemeHint": "Užite si tému bližíe prispôsobenú vášmu zariadeniu",
|
"dynamicThemeHint": "Užite si tému bližíe prispôsobenú vášmu zariadeniu",
|
||||||
"languageLabel": "Jazyk",
|
"languageLabel": "Jazyk",
|
||||||
"sourcesIntegrationsLabel": "Zdroj integrácie",
|
|
||||||
"sourcesResetDialogTitle": "Resetovať",
|
"sourcesResetDialogTitle": "Resetovať",
|
||||||
"apiURLLabel": "URL API",
|
"apiURLLabel": "URL API",
|
||||||
"selectApiURL": "URL API",
|
"selectApiURL": "URL API",
|
||||||
"orgPatchesLabel": "Autor záplaty",
|
"orgPatchesLabel": "Autor záplaty",
|
||||||
"sourcesPatchesLabel": "Zdroj záplaty",
|
"sourcesPatchesLabel": "Zdroj záplaty",
|
||||||
"orgIntegrationsLabel": "Autor integrácie",
|
|
||||||
"contributorsLabel": "Prispievatelia",
|
"contributorsLabel": "Prispievatelia",
|
||||||
"contributorsHint": "Zoznam prispievateľov projektu ReVanced",
|
"contributorsHint": "Zoznam prispievateľov projektu ReVanced",
|
||||||
"disablePatchesSelectionWarningText": "Chystáte sa zakázať zmenu výberu záplat. \nPredvolený výber záplat bude obnovený.\n\nZakázať aj napriek tomu?",
|
"disablePatchesSelectionWarningText": "Chystáte sa zakázať zmenu výberu záplat. \nPredvolený výber záplat bude obnovený.\n\nZakázať aj napriek tomu?",
|
||||||
|
|||||||
@@ -119,20 +119,15 @@
|
|||||||
"languageLabel": "Jezik",
|
"languageLabel": "Jezik",
|
||||||
"languageUpdated": "Jezik je posodobljen",
|
"languageUpdated": "Jezik je posodobljen",
|
||||||
"sourcesLabel": "Alternativni viri",
|
"sourcesLabel": "Alternativni viri",
|
||||||
"sourcesLabelHint": "Nastavite alternativne vire za ReVanced Patches in ReVanced Integrations",
|
|
||||||
"sourcesIntegrationsLabel": "Vir integracij",
|
|
||||||
"useAlternativeSources": "Uporabi alternativne vire",
|
"useAlternativeSources": "Uporabi alternativne vire",
|
||||||
"useAlternativeSourcesHint": "Namesto API-ja uporabi alternativne vire za ReVanced Patches in ReVanced Integrations",
|
|
||||||
"sourcesResetDialogTitle": "Ponastavi",
|
"sourcesResetDialogTitle": "Ponastavi",
|
||||||
"sourcesResetDialogText": "Ali ste prepričani, da želite ponastaviti svoje vire na privzete vrednosti?",
|
"sourcesResetDialogText": "Ali ste prepričani, da želite ponastaviti svoje vire na privzete vrednosti?",
|
||||||
"apiURLResetDialogText": "Ali ste prepričani, da želite ponastaviti svojo povezavo do API-ja na privzeto vrednost?",
|
"apiURLResetDialogText": "Ali ste prepričani, da želite ponastaviti svojo povezavo do API-ja na privzeto vrednost?",
|
||||||
"sourcesUpdateNote": "Pozor: ReVanced Patches in ReVanced Integrations se bosta privzeto prenesla iz alternativnih virov.\n\nTa nastavitev bo vzpostavila povezavo na alternativni vir.",
|
|
||||||
"apiURLLabel": "URL API-ja",
|
"apiURLLabel": "URL API-ja",
|
||||||
"apiURLHint": "Nastavi naslov URL za API ReVanced Managerja",
|
"apiURLHint": "Nastavi naslov URL za API ReVanced Managerja",
|
||||||
"selectApiURL": "URL API-ja",
|
"selectApiURL": "URL API-ja",
|
||||||
"orgPatchesLabel": "Organizacija popravkov",
|
"orgPatchesLabel": "Organizacija popravkov",
|
||||||
"sourcesPatchesLabel": "Vir popravkov",
|
"sourcesPatchesLabel": "Vir popravkov",
|
||||||
"orgIntegrationsLabel": "Organizacija integracij",
|
|
||||||
"contributorsLabel": "Sodelujoči",
|
"contributorsLabel": "Sodelujoči",
|
||||||
"contributorsHint": "Seznam sodelujočih pri projektu ReVanced",
|
"contributorsHint": "Seznam sodelujočih pri projektu ReVanced",
|
||||||
"logsLabel": "Deli dnevniške podatke",
|
"logsLabel": "Deli dnevniške podatke",
|
||||||
|
|||||||
@@ -76,11 +76,9 @@
|
|||||||
"dynamicThemeLabel": "Materiali Ti",
|
"dynamicThemeLabel": "Materiali Ti",
|
||||||
"dynamicThemeHint": "Shijo një përvojë më të afërt me pajisjen tënde",
|
"dynamicThemeHint": "Shijo një përvojë më të afërt me pajisjen tënde",
|
||||||
"languageLabel": "Gjuha",
|
"languageLabel": "Gjuha",
|
||||||
"sourcesIntegrationsLabel": "Burimi i integrimeve",
|
|
||||||
"sourcesResetDialogTitle": "Rivendos",
|
"sourcesResetDialogTitle": "Rivendos",
|
||||||
"orgPatchesLabel": "Organizimi i modifikimeve",
|
"orgPatchesLabel": "Organizimi i modifikimeve",
|
||||||
"sourcesPatchesLabel": "Burimi i modifikuesëve",
|
"sourcesPatchesLabel": "Burimi i modifikuesëve",
|
||||||
"orgIntegrationsLabel": "Organizimi i integrimeve",
|
|
||||||
"contributorsLabel": "Kontribuesit",
|
"contributorsLabel": "Kontribuesit",
|
||||||
"contributorsHint": "Lista e kontribuesve të ReVanced",
|
"contributorsHint": "Lista e kontribuesve të ReVanced",
|
||||||
"aboutLabel": "Rreth nesh",
|
"aboutLabel": "Rreth nesh",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Jezik",
|
"languageLabel": "Jezik",
|
||||||
"languageUpdated": "Jezik je promenjen",
|
"languageUpdated": "Jezik je promenjen",
|
||||||
"sourcesLabel": "Alternativni izvori",
|
"sourcesLabel": "Alternativni izvori",
|
||||||
"sourcesLabelHint": "Podesite alternativne izvore za ReVanced pečeve i integracije",
|
"sourcesLabelHint": "Podesite alternativne izvore za ReVanced pečeve",
|
||||||
"sourcesIntegrationsLabel": "Izvor integracija",
|
|
||||||
"useAlternativeSources": "Koristi alternativne izvore",
|
"useAlternativeSources": "Koristi alternativne izvore",
|
||||||
"useAlternativeSourcesHint": "Koristite alternativne izvore za ReVanced pečeve i integracije umesto API-ja",
|
"useAlternativeSourcesHint": "Koristite alternativne izvore za ReVanced pečeve umesto API-ja",
|
||||||
"sourcesResetDialogTitle": "Resetovanje",
|
"sourcesResetDialogTitle": "Resetovanje",
|
||||||
"sourcesResetDialogText": "Želite li zaista da vratite izvore na podrazumevane vrednosti?",
|
"sourcesResetDialogText": "Želite li zaista da vratite izvore na podrazumevane vrednosti?",
|
||||||
"apiURLResetDialogText": "Želite li zaista da vratite URL API-ja na podrazumevanu vrednost?",
|
"apiURLResetDialogText": "Želite li zaista da vratite URL API-ja na podrazumevanu vrednost?",
|
||||||
"sourcesUpdateNote": "Napomena: Ovo će automatski preuzeti ReVanced pečeve i integracije iz alternativnih izvora.\n\nBićete povezani sa alternativnim izvorom.",
|
"sourcesUpdateNote": "Napomena: Ovo će automatski preuzeti ReVanced pečeve iz alternativnih izvora.\n\nBićete povezani sa alternativnim izvorom.",
|
||||||
"apiURLLabel": "URL API-ja",
|
"apiURLLabel": "URL API-ja",
|
||||||
"apiURLHint": "Podesite URL API-ja za ReVanced Manager",
|
"apiURLHint": "Podesite URL API-ja za ReVanced Manager",
|
||||||
"selectApiURL": "URL API-ja",
|
"selectApiURL": "URL API-ja",
|
||||||
"orgPatchesLabel": "Organizacija za pečeve",
|
"orgPatchesLabel": "Organizacija za pečeve",
|
||||||
"sourcesPatchesLabel": "Izvor pečeva",
|
"sourcesPatchesLabel": "Izvor pečeva",
|
||||||
"orgIntegrationsLabel": "Organizacija za integracije",
|
|
||||||
"contributorsLabel": "Saradnici",
|
"contributorsLabel": "Saradnici",
|
||||||
"contributorsHint": "Lista saradnika na ReVancedu",
|
"contributorsHint": "Lista saradnika na ReVancedu",
|
||||||
"logsLabel": "Deli evidencije",
|
"logsLabel": "Deli evidencije",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Izbriši privremene fajlove",
|
"deleteTempDirLabel": "Izbriši privremene fajlove",
|
||||||
"deleteTempDirHint": "Izbrišite nekorišćene privremene fajlove",
|
"deleteTempDirHint": "Izbrišite nekorišćene privremene fajlove",
|
||||||
"deletedTempDir": "Privremeni fajlovi su izbrisani",
|
"deletedTempDir": "Privremeni fajlovi su izbrisani",
|
||||||
|
"exportSettingsLabel": "Izvezi podešavanja",
|
||||||
|
"exportSettingsHint": "Izvezite podešavanja u JSON fajl",
|
||||||
|
"exportedSettings": "Podešavanja su izvezena",
|
||||||
|
"importSettingsLabel": "Uvezi podešavanja",
|
||||||
|
"importSettingsHint": "Uvezite podešavanja iz JSON fajla",
|
||||||
|
"importedSettings": "Podešavanja su uvezena",
|
||||||
"exportPatchesLabel": "Izvezi izbor pečeva",
|
"exportPatchesLabel": "Izvezi izbor pečeva",
|
||||||
"exportPatchesHint": "Izvezite izbor pečeva u JSON fajl",
|
"exportPatchesHint": "Izvezite izbor pečeva u JSON fajl",
|
||||||
"exportedPatches": "Izbor pečeva je izvezen",
|
"exportedPatches": "Izbor pečeva je izvezen",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Језик",
|
"languageLabel": "Језик",
|
||||||
"languageUpdated": "Језик је промењен",
|
"languageUpdated": "Језик је промењен",
|
||||||
"sourcesLabel": "Алтернативни извори",
|
"sourcesLabel": "Алтернативни извори",
|
||||||
"sourcesLabelHint": "Подесите алтернативне изворе за ReVanced печеве и интеграције",
|
"sourcesLabelHint": "Подесите алтернативне изворе за ReVanced печеве",
|
||||||
"sourcesIntegrationsLabel": "Извор интеграција",
|
|
||||||
"useAlternativeSources": "Користи алтернативне изворе",
|
"useAlternativeSources": "Користи алтернативне изворе",
|
||||||
"useAlternativeSourcesHint": "Користите алтернативне изворе за ReVanced печеве и интеграције уместо API-ја",
|
"useAlternativeSourcesHint": "Користите алтернативне изворе за ReVanced печеве уместо API-ја",
|
||||||
"sourcesResetDialogTitle": "Ресетовање",
|
"sourcesResetDialogTitle": "Ресетовање",
|
||||||
"sourcesResetDialogText": "Желите ли заиста да вратите изворе на подразумеване вредности?",
|
"sourcesResetDialogText": "Желите ли заиста да вратите изворе на подразумеване вредности?",
|
||||||
"apiURLResetDialogText": "Желите ли заиста да вратите URL API-ја на подразумевану вредност?",
|
"apiURLResetDialogText": "Желите ли заиста да вратите URL API-ја на подразумевану вредност?",
|
||||||
"sourcesUpdateNote": "Напомена: Ово ће аутоматски преузети ReVanced печеве и интеграције из алтернативних извора.\n\nБићете повезани са алтернативним извором.",
|
"sourcesUpdateNote": "Напомена: Ово ће аутоматски преузети ReVanced печеве из алтернативних извора.\n\nБићете повезани са алтернативним извором.",
|
||||||
"apiURLLabel": "URL API-ја",
|
"apiURLLabel": "URL API-ја",
|
||||||
"apiURLHint": "Подесите URL API-ја за ReVanced Manager",
|
"apiURLHint": "Подесите URL API-ја за ReVanced Manager",
|
||||||
"selectApiURL": "URL API-ја",
|
"selectApiURL": "URL API-ја",
|
||||||
"orgPatchesLabel": "Организација за печеве",
|
"orgPatchesLabel": "Организација за печеве",
|
||||||
"sourcesPatchesLabel": "Извор печева",
|
"sourcesPatchesLabel": "Извор печева",
|
||||||
"orgIntegrationsLabel": "Организација за интеграције",
|
|
||||||
"contributorsLabel": "Сарадници",
|
"contributorsLabel": "Сарадници",
|
||||||
"contributorsHint": "Листа сарадника на ReVanced-у",
|
"contributorsHint": "Листа сарадника на ReVanced-у",
|
||||||
"logsLabel": "Дели евиденције",
|
"logsLabel": "Дели евиденције",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Избриши привремене фајлове",
|
"deleteTempDirLabel": "Избриши привремене фајлове",
|
||||||
"deleteTempDirHint": "Избришите некоришћене привремене фајлове",
|
"deleteTempDirHint": "Избришите некоришћене привремене фајлове",
|
||||||
"deletedTempDir": "Привремени фајлови су избрисани",
|
"deletedTempDir": "Привремени фајлови су избрисани",
|
||||||
|
"exportSettingsLabel": "Извези подешавања",
|
||||||
|
"exportSettingsHint": "Извезите подешавања у JSON фајл",
|
||||||
|
"exportedSettings": "Подешавања су извезена",
|
||||||
|
"importSettingsLabel": "Увези подешавања",
|
||||||
|
"importSettingsHint": "Увезите подешавања из JSON фајла",
|
||||||
|
"importedSettings": "Подешавања су увезена",
|
||||||
"exportPatchesLabel": "Извези избор печева",
|
"exportPatchesLabel": "Извези избор печева",
|
||||||
"exportPatchesHint": "Извезите избор печева у JSON фајл",
|
"exportPatchesHint": "Извезите избор печева у JSON фајл",
|
||||||
"exportedPatches": "Избор печева је извезен",
|
"exportedPatches": "Избор печева је извезен",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Språk",
|
"languageLabel": "Språk",
|
||||||
"languageUpdated": "Språket uppdaterat",
|
"languageUpdated": "Språket uppdaterat",
|
||||||
"sourcesLabel": "Alternativa källor",
|
"sourcesLabel": "Alternativa källor",
|
||||||
"sourcesLabelHint": "Konfigurera alternativa källor för ReVanced patches och ReVanced integrations",
|
"sourcesLabelHint": "Konfigurera alternativa källor för ReVanced Patches",
|
||||||
"sourcesIntegrationsLabel": "Källa för integrationer",
|
|
||||||
"useAlternativeSources": "Använd alternativa källor",
|
"useAlternativeSources": "Använd alternativa källor",
|
||||||
"useAlternativeSourcesHint": "Använd alternativa källor för ReVanced patches och ReVanced integrationer i stället för API",
|
"useAlternativeSourcesHint": "Använd alternativa källor för ReVanced Patches istället för API",
|
||||||
"sourcesResetDialogTitle": "Återställ",
|
"sourcesResetDialogTitle": "Återställ",
|
||||||
"sourcesResetDialogText": "Är du säker på att du vill återställa dina källorna till deras standardvärden?",
|
"sourcesResetDialogText": "Är du säker på att du vill återställa dina källorna till deras standardvärden?",
|
||||||
"apiURLResetDialogText": "Är du säker att du vill återställa API-webbadressen till standardvärdet?",
|
"apiURLResetDialogText": "Är du säker att du vill återställa API-webbadressen till standardvärdet?",
|
||||||
"sourcesUpdateNote": "Obs: Detta kommer automatiskt att ladda ner ReVanced patches och ReVanced integrationer från alternativa källor.\n\nDetta kommer att ansluta dig till den alternativa källan.",
|
"sourcesUpdateNote": "Obs: Detta kommer automatiskt att ladda ner ReVanced Patches från de alternativa källorna.\n\nDetta kommer att ansluta dig till den alternativa källan.",
|
||||||
"apiURLLabel": "API-webbadress",
|
"apiURLLabel": "API-webbadress",
|
||||||
"apiURLHint": "Konfigurera API-webbadressen för ReVanced-hanterare",
|
"apiURLHint": "Konfigurera API-webbadressen för ReVanced-hanterare",
|
||||||
"selectApiURL": "API-webbadress",
|
"selectApiURL": "API-webbadress",
|
||||||
"orgPatchesLabel": "Organisation för patchar",
|
"orgPatchesLabel": "Organisation för patchar",
|
||||||
"sourcesPatchesLabel": "Källa för patchar",
|
"sourcesPatchesLabel": "Källa för patchar",
|
||||||
"orgIntegrationsLabel": "Organisation för integrationer",
|
|
||||||
"contributorsLabel": "Medverkande",
|
"contributorsLabel": "Medverkande",
|
||||||
"contributorsHint": "En lista över medverkare för ReVanced",
|
"contributorsHint": "En lista över medverkare för ReVanced",
|
||||||
"logsLabel": "Dela loggar",
|
"logsLabel": "Dela loggar",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Ta bort temporära filer",
|
"deleteTempDirLabel": "Ta bort temporära filer",
|
||||||
"deleteTempDirHint": "Ta bort oanvända temporära filer",
|
"deleteTempDirHint": "Ta bort oanvända temporära filer",
|
||||||
"deletedTempDir": "Temporära filer borttagna",
|
"deletedTempDir": "Temporära filer borttagna",
|
||||||
|
"exportSettingsLabel": "Exportera inställningar",
|
||||||
|
"exportSettingsHint": "Exportera inställningar till en JSON-fil",
|
||||||
|
"exportedSettings": "Inställningar exporterade",
|
||||||
|
"importSettingsLabel": "Importera inställningar",
|
||||||
|
"importSettingsHint": "Importera inställningar från en JSON-fil",
|
||||||
|
"importedSettings": "Inställningar importerade",
|
||||||
"exportPatchesLabel": "Exportera valda patchar",
|
"exportPatchesLabel": "Exportera valda patchar",
|
||||||
"exportPatchesHint": "Exportera valda patchar till en JSON-fil",
|
"exportPatchesHint": "Exportera valda patchar till en JSON-fil",
|
||||||
"exportedPatches": "Valda patchar exporterade",
|
"exportedPatches": "Valda patchar exporterade",
|
||||||
|
|||||||
@@ -135,11 +135,9 @@
|
|||||||
"dynamicThemeLabel": "Material You",
|
"dynamicThemeLabel": "Material You",
|
||||||
"dynamicThemeHint": "உங்கள் கருவிக்கு நெருக்கமான அனுபவத்தை அனுபவிக்கவும்",
|
"dynamicThemeHint": "உங்கள் கருவிக்கு நெருக்கமான அனுபவத்தை அனுபவிக்கவும்",
|
||||||
"languageLabel": "மொழி",
|
"languageLabel": "மொழி",
|
||||||
"sourcesIntegrationsLabel": "ஒருங்கிணைப்புகளின் மூலம்",
|
|
||||||
"sourcesResetDialogTitle": "மறுஅமை",
|
"sourcesResetDialogTitle": "மறுஅமை",
|
||||||
"orgPatchesLabel": "இணைப்புகளின் அமைப்பு",
|
"orgPatchesLabel": "இணைப்புகளின் அமைப்பு",
|
||||||
"sourcesPatchesLabel": "இணைப்புகளின் மூலம்",
|
"sourcesPatchesLabel": "இணைப்புகளின் மூலம்",
|
||||||
"orgIntegrationsLabel": "ஒருங்கிணைப்புகளின் அமைப்பு",
|
|
||||||
"contributorsLabel": "பங்களிப்பாளர்கள்",
|
"contributorsLabel": "பங்களிப்பாளர்கள்",
|
||||||
"contributorsHint": "ReVancedற்குப் பங்களித்தோர் பட்டியல்",
|
"contributorsHint": "ReVancedற்குப் பங்களித்தோர் பட்டியல்",
|
||||||
"aboutLabel": "இதைப் பற்றி",
|
"aboutLabel": "இதைப் பற்றி",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"dismissButton": "ปิด",
|
"dismissButton": "ปิด",
|
||||||
"quitButton": "ออก",
|
"quitButton": "ออก",
|
||||||
"updateButton": "อัปเดต",
|
"updateButton": "อัปเดต",
|
||||||
"suggested": "แนะนำ ${version}",
|
"suggested": "แนะนำ: ${version}",
|
||||||
"yesButton": "ใช่",
|
"yesButton": "ใช่",
|
||||||
"noButton": "ไม่",
|
"noButton": "ไม่",
|
||||||
"warning": "คำเตือน",
|
"warning": "คำเตือน",
|
||||||
@@ -103,13 +103,11 @@
|
|||||||
"dynamicThemeHint": "เพลิดเพลินกับประสบการณ์ที่ใกล้ชิดกับอุปกรณ์ของคุณมากขึ้น",
|
"dynamicThemeHint": "เพลิดเพลินกับประสบการณ์ที่ใกล้ชิดกับอุปกรณ์ของคุณมากขึ้น",
|
||||||
"languageLabel": "ภาษา",
|
"languageLabel": "ภาษา",
|
||||||
"languageUpdated": "อัพเดตภาษาแล้ว",
|
"languageUpdated": "อัพเดตภาษาแล้ว",
|
||||||
"sourcesIntegrationsLabel": "ที่มาของส่วนเสริม",
|
|
||||||
"sourcesResetDialogTitle": "รีเซ็ต",
|
"sourcesResetDialogTitle": "รีเซ็ต",
|
||||||
"apiURLLabel": "ลิงค์ของ API",
|
"apiURLLabel": "ลิงค์ของ API",
|
||||||
"selectApiURL": "ลิงค์ของ API",
|
"selectApiURL": "ลิงค์ของ API",
|
||||||
"orgPatchesLabel": "ผู้ดูแลการดัดแปลง",
|
"orgPatchesLabel": "ผู้ดูแลการดัดแปลง",
|
||||||
"sourcesPatchesLabel": "ที่มาของการดัดแปลง",
|
"sourcesPatchesLabel": "ที่มาของการดัดแปลง",
|
||||||
"orgIntegrationsLabel": "ผู้ดูแลส่วนเสริม",
|
|
||||||
"contributorsLabel": "ผู้ช่วยเหลือโปรเจกต์",
|
"contributorsLabel": "ผู้ช่วยเหลือโปรเจกต์",
|
||||||
"contributorsHint": "รายชื่อผู้ที่ช่วยเหลือกับโปรเจ็กต์ ReVanced",
|
"contributorsHint": "รายชื่อผู้ที่ช่วยเหลือกับโปรเจ็กต์ ReVanced",
|
||||||
"aboutLabel": "เกี่ยวกับ",
|
"aboutLabel": "เกี่ยวกับ",
|
||||||
@@ -119,6 +117,8 @@
|
|||||||
"deleteTempDirHint": "ลบไฟล์ชั่วคราวที่ไม่ได้ใช้งาน",
|
"deleteTempDirHint": "ลบไฟล์ชั่วคราวที่ไม่ได้ใช้งาน",
|
||||||
"deletedTempDir": "ลบไฟล์ชั่วคราวแล้ว",
|
"deletedTempDir": "ลบไฟล์ชั่วคราวแล้ว",
|
||||||
"deletedLogs": "ลบบันทึกแล้ว",
|
"deletedLogs": "ลบบันทึกแล้ว",
|
||||||
|
"regenerateKeystoreLabel": "สร้าง Keystore ใหม่",
|
||||||
|
"regenerateKeystoreDialogTitle": "สร้าง Keystore ใหม่",
|
||||||
"exportKeystoreLabel": "ส่งออก keystore",
|
"exportKeystoreLabel": "ส่งออก keystore",
|
||||||
"exportedKeystore": "ส่งออก keystore แล้ว",
|
"exportedKeystore": "ส่งออก keystore แล้ว",
|
||||||
"noKeystoreExportFileFound": "ไม่มี keystore ให้ส่งออก",
|
"noKeystoreExportFileFound": "ไม่มี keystore ให้ส่งออก",
|
||||||
@@ -132,6 +132,8 @@
|
|||||||
"openButton": "เปิด",
|
"openButton": "เปิด",
|
||||||
"installButton": "ติดตั้ง",
|
"installButton": "ติดตั้ง",
|
||||||
"uninstallButton": "ถอนการติดตั้ง",
|
"uninstallButton": "ถอนการติดตั้ง",
|
||||||
|
"exportButton": "ส่งออก",
|
||||||
|
"deleteButton": "ลบ",
|
||||||
"rootDialogTitle": "ข้อผิดพลาด",
|
"rootDialogTitle": "ข้อผิดพลาด",
|
||||||
"rootDialogText": "แอปได้รับการติดตั้งด้วยสิทธิ์ผู้ใช้ขั้นสูงแต่ ReVanced Manager ปัจจุบันยังไม่ได้รับสิทธิ์\nโปรดอนุญาตสิทธิ์ผู้ใช้ขั้นสูงก่อน",
|
"rootDialogText": "แอปได้รับการติดตั้งด้วยสิทธิ์ผู้ใช้ขั้นสูงแต่ ReVanced Manager ปัจจุบันยังไม่ได้รับสิทธิ์\nโปรดอนุญาตสิทธิ์ผู้ใช้ขั้นสูงก่อน",
|
||||||
"packageNameLabel": "ชื่อแพ็กเกจ",
|
"packageNameLabel": "ชื่อแพ็กเกจ",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Dil",
|
"languageLabel": "Dil",
|
||||||
"languageUpdated": "Dil güncellendi",
|
"languageUpdated": "Dil güncellendi",
|
||||||
"sourcesLabel": "Alternatif kaynaklar",
|
"sourcesLabel": "Alternatif kaynaklar",
|
||||||
"sourcesLabelHint": "ReVanced Patches ve ReVanced Integrations için alternatif kaynakları ayarlayın",
|
"sourcesLabelHint": "ReVanced Yamaları için alternatif kaynakları yapılandırın",
|
||||||
"sourcesIntegrationsLabel": "Integrations source",
|
|
||||||
"useAlternativeSources": "Alternatif kaynakları kullan",
|
"useAlternativeSources": "Alternatif kaynakları kullan",
|
||||||
"useAlternativeSourcesHint": "ReVanced Patches ve ReVanced Integrations için API yerine alternatif kaynakları kullanın",
|
"useAlternativeSourcesHint": "ReVanced Yamaları için API yerine alternatif kaynakları kullanın",
|
||||||
"sourcesResetDialogTitle": "Sıfırla",
|
"sourcesResetDialogTitle": "Sıfırla",
|
||||||
"sourcesResetDialogText": "Kaynaklarınızı varsayılan değerlerine sıfırlamak istediğinizden emin misiniz?",
|
"sourcesResetDialogText": "Kaynaklarınızı varsayılan değerlerine sıfırlamak istediğinizden emin misiniz?",
|
||||||
"apiURLResetDialogText": "API URL'nizi varsayılan değerine sıfırlamak istediğinizden emin misiniz?",
|
"apiURLResetDialogText": "API URL'nizi varsayılan değerine sıfırlamak istediğinizden emin misiniz?",
|
||||||
"sourcesUpdateNote": "Not: Bu, ReVanced Patches'ı ve ReVanced Integrations'ı otomatik olarak alternatif kaynaklardan indirecektir.\n\nBu sizi alternatif kaynağa bağlayacaktır.",
|
"sourcesUpdateNote": "Not: Bu, ReVanced Yamalarını otomatik olarak alternatif kaynaklardan indirecektir.\n\nBu sizi alternatif kaynağa bağlayacaktır.",
|
||||||
"apiURLLabel": "API URL'si",
|
"apiURLLabel": "API URL'si",
|
||||||
"apiURLHint": "ReVanced Manager'in API URL'sini ayarlayın",
|
"apiURLHint": "ReVanced Manager'in API URL'sini ayarlayın",
|
||||||
"selectApiURL": "API URL'si",
|
"selectApiURL": "API URL'si",
|
||||||
"orgPatchesLabel": "Patches organization",
|
"orgPatchesLabel": "Patches organization",
|
||||||
"sourcesPatchesLabel": "Patches source",
|
"sourcesPatchesLabel": "Patches source",
|
||||||
"orgIntegrationsLabel": "Integrations organization",
|
|
||||||
"contributorsLabel": "Katkıda bulunanlar",
|
"contributorsLabel": "Katkıda bulunanlar",
|
||||||
"contributorsHint": "ReVanced'a katkıda bulunanların listesi",
|
"contributorsHint": "ReVanced'a katkıda bulunanların listesi",
|
||||||
"logsLabel": "Logları paylaş",
|
"logsLabel": "Logları paylaş",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Geçici dosyaları sil",
|
"deleteTempDirLabel": "Geçici dosyaları sil",
|
||||||
"deleteTempDirHint": "Kullanılmayan geçici dosyaları silin",
|
"deleteTempDirHint": "Kullanılmayan geçici dosyaları silin",
|
||||||
"deletedTempDir": "Geçici dosyalar silindi",
|
"deletedTempDir": "Geçici dosyalar silindi",
|
||||||
|
"exportSettingsLabel": "Ayarları dışa aktar",
|
||||||
|
"exportSettingsHint": "Ayarları JSON dosyasına aktar",
|
||||||
|
"exportedSettings": "Ayarlar dışa aktarıldı",
|
||||||
|
"importSettingsLabel": "Ayarları içe aktar",
|
||||||
|
"importSettingsHint": "Ayarları JSON dosyasından içe aktar",
|
||||||
|
"importedSettings": "Ayarlar içe aktarıldı",
|
||||||
"exportPatchesLabel": "Yama seçimini dışa aktar",
|
"exportPatchesLabel": "Yama seçimini dışa aktar",
|
||||||
"exportPatchesHint": "Yama seçimini bir JSON dosyasına kaydedin",
|
"exportPatchesHint": "Yama seçimini bir JSON dosyasına kaydedin",
|
||||||
"exportedPatches": "Yama seçimi dışa aktarıldı",
|
"exportedPatches": "Yama seçimi dışa aktarıldı",
|
||||||
|
|||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "Мова",
|
"languageLabel": "Мова",
|
||||||
"languageUpdated": "Мову застосунку оновлено",
|
"languageUpdated": "Мову застосунку оновлено",
|
||||||
"sourcesLabel": "Альтернативні джерела",
|
"sourcesLabel": "Альтернативні джерела",
|
||||||
"sourcesLabelHint": "Налаштувати альтернативні джерела для ReVanced Patches та ReVanced Integrations",
|
"sourcesLabelHint": "Налаштувати альтернативні джерела для ReVanced Patches",
|
||||||
"sourcesIntegrationsLabel": "Integrations source",
|
|
||||||
"useAlternativeSources": "Використовувати альтернативні джерела",
|
"useAlternativeSources": "Використовувати альтернативні джерела",
|
||||||
"useAlternativeSourcesHint": "Використовувати альтернативні джерела для ReVanced Patches та ReVanced Integrations замість API",
|
"useAlternativeSourcesHint": "Використовувати альтернативні джерела для ReVanced Patches замість API",
|
||||||
"sourcesResetDialogTitle": "Скинути",
|
"sourcesResetDialogTitle": "Скинути",
|
||||||
"sourcesResetDialogText": "Ви дійсно бажаєте відновити стандартні значення джерел?",
|
"sourcesResetDialogText": "Ви дійсно бажаєте відновити стандартні значення джерел?",
|
||||||
"apiURLResetDialogText": "Ви дійсно бажаєте відновити API URL до стандартного значення?",
|
"apiURLResetDialogText": "Ви дійсно бажаєте відновити API URL до стандартного значення?",
|
||||||
"sourcesUpdateNote": "Примітка. Це автоматично завантажить ReVanced Patches і ReVanced Integrations з альтернативних джерел.\n\nЦе під'єднає Вас до альтернативного джерела.",
|
"sourcesUpdateNote": "Примітка: Це автоматично завантажить ReVanced Patches з альтернативних джерел.\n\nЦе під'єднає Вас до альтернативного джерела.",
|
||||||
"apiURLLabel": "URL-адреса API",
|
"apiURLLabel": "URL-адреса API",
|
||||||
"apiURLHint": "Налаштувати API URL для ReVanced Manager",
|
"apiURLHint": "Налаштувати API URL для ReVanced Manager",
|
||||||
"selectApiURL": "URL-адреса API",
|
"selectApiURL": "URL-адреса API",
|
||||||
"orgPatchesLabel": "Patches organization",
|
"orgPatchesLabel": "Patches organization",
|
||||||
"sourcesPatchesLabel": "Patches source",
|
"sourcesPatchesLabel": "Patches source",
|
||||||
"orgIntegrationsLabel": "Integrations organization",
|
|
||||||
"contributorsLabel": "Розробники",
|
"contributorsLabel": "Розробники",
|
||||||
"contributorsHint": "Список розробників ReVanced",
|
"contributorsHint": "Список розробників ReVanced",
|
||||||
"logsLabel": "Поділитися журналами",
|
"logsLabel": "Поділитися журналами",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "Видалити тимчасові файли",
|
"deleteTempDirLabel": "Видалити тимчасові файли",
|
||||||
"deleteTempDirHint": "Видалити невикористані тимчасові файли",
|
"deleteTempDirHint": "Видалити невикористані тимчасові файли",
|
||||||
"deletedTempDir": "Тимчасові файли видалено",
|
"deletedTempDir": "Тимчасові файли видалено",
|
||||||
|
"exportSettingsLabel": "Експортувати налаштування",
|
||||||
|
"exportSettingsHint": "Експортувати налаштування у файл JSON",
|
||||||
|
"exportedSettings": "Налаштування експортовано",
|
||||||
|
"importSettingsLabel": "Імпортувати налаштування",
|
||||||
|
"importSettingsHint": "Імпортувати налаштування з файлу JSON",
|
||||||
|
"importedSettings": "Налаштування імпортовано",
|
||||||
"exportPatchesLabel": "Експортувати вибір патчів",
|
"exportPatchesLabel": "Експортувати вибір патчів",
|
||||||
"exportPatchesHint": "Експортувати вибір патчів у файл JSON",
|
"exportPatchesHint": "Експортувати вибір патчів у файл JSON",
|
||||||
"exportedPatches": "Вибір патчів експортовано",
|
"exportedPatches": "Вибір патчів експортовано",
|
||||||
|
|||||||
@@ -68,12 +68,10 @@
|
|||||||
"settingsView": {
|
"settingsView": {
|
||||||
"widgetTitle": "Sozlamalar",
|
"widgetTitle": "Sozlamalar",
|
||||||
"exportSectionTitle": "Import & eksport",
|
"exportSectionTitle": "Import & eksport",
|
||||||
"sourcesIntegrationsLabel": "Integratsiyani manbai",
|
|
||||||
"sourcesResetDialogTitle": "Oddiy holga qaytarish",
|
"sourcesResetDialogTitle": "Oddiy holga qaytarish",
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"selectApiURL": "API URL",
|
"selectApiURL": "API URL",
|
||||||
"sourcesPatchesLabel": "Patchlarni manbai",
|
"sourcesPatchesLabel": "Patchlarni manbai",
|
||||||
"orgIntegrationsLabel": "Integratsiyani tashkiloti",
|
|
||||||
"contributorsLabel": "Yordamchilar",
|
"contributorsLabel": "Yordamchilar",
|
||||||
"contributorsHint": "ReVanced yordamchilani royxati",
|
"contributorsHint": "ReVanced yordamchilani royxati",
|
||||||
"aboutLabel": "Haqida",
|
"aboutLabel": "Haqida",
|
||||||
|
|||||||
@@ -156,20 +156,15 @@
|
|||||||
"languageLabel": "Ngôn ngữ",
|
"languageLabel": "Ngôn ngữ",
|
||||||
"languageUpdated": "Ngôn ngữ đã cập nhập",
|
"languageUpdated": "Ngôn ngữ đã cập nhập",
|
||||||
"sourcesLabel": "Nguồn thay thế",
|
"sourcesLabel": "Nguồn thay thế",
|
||||||
"sourcesLabelHint": "Cấu hình nguồn thay thế cho Bản vá ReVanced và Tích hợp ReVanced",
|
|
||||||
"sourcesIntegrationsLabel": "Nguồn tích hợp",
|
|
||||||
"useAlternativeSources": "Dùng nguồn thay thế",
|
"useAlternativeSources": "Dùng nguồn thay thế",
|
||||||
"useAlternativeSourcesHint": "Dùng nguồn thay thế cho Bản vá ReVanced và Tích hợp ReVanced thay cho API",
|
|
||||||
"sourcesResetDialogTitle": "Đặt lại",
|
"sourcesResetDialogTitle": "Đặt lại",
|
||||||
"sourcesResetDialogText": "Bạn có chắc chắn muốn đặt lại nguồn của mình về giá trị mặc định không?",
|
"sourcesResetDialogText": "Bạn có chắc chắn muốn đặt lại nguồn của mình về giá trị mặc định không?",
|
||||||
"apiURLResetDialogText": "Bạn có chắc bạn muốn đặt lại API URL của bạn về giá trị mặc định của nó không?",
|
"apiURLResetDialogText": "Bạn có chắc bạn muốn đặt lại API URL của bạn về giá trị mặc định của nó không?",
|
||||||
"sourcesUpdateNote": "Lưu ý: Việc này sẽ tự động tải Bản vá ReVanced và Tích hợp ReVanced từ nguồn thay thế.",
|
|
||||||
"apiURLLabel": "Địa chỉ URL của API",
|
"apiURLLabel": "Địa chỉ URL của API",
|
||||||
"apiURLHint": "Cấu hình địa chỉ URL API của ReVanced Manager",
|
"apiURLHint": "Cấu hình địa chỉ URL API của ReVanced Manager",
|
||||||
"selectApiURL": "Địa chỉ URL của API",
|
"selectApiURL": "Địa chỉ URL của API",
|
||||||
"orgPatchesLabel": "Tác giả bản vá",
|
"orgPatchesLabel": "Tác giả bản vá",
|
||||||
"sourcesPatchesLabel": "Nguồn bản vá",
|
"sourcesPatchesLabel": "Nguồn bản vá",
|
||||||
"orgIntegrationsLabel": "Tác giá bản tích hợp",
|
|
||||||
"contributorsLabel": "Những người đóng góp",
|
"contributorsLabel": "Những người đóng góp",
|
||||||
"contributorsHint": "Danh sách những người đóng góp cho ReVanced",
|
"contributorsHint": "Danh sách những người đóng góp cho ReVanced",
|
||||||
"logsLabel": "Chia sẻ nhật ký",
|
"logsLabel": "Chia sẻ nhật ký",
|
||||||
|
|||||||
@@ -156,20 +156,18 @@
|
|||||||
"languageLabel": "语言",
|
"languageLabel": "语言",
|
||||||
"languageUpdated": "语言已更新",
|
"languageUpdated": "语言已更新",
|
||||||
"sourcesLabel": "其他来源",
|
"sourcesLabel": "其他来源",
|
||||||
"sourcesLabelHint": "配置 ReVanced 补丁和 ReVanced 集成的替代源",
|
"sourcesLabelHint": "配置替代补丁来源",
|
||||||
"sourcesIntegrationsLabel": "集成源",
|
|
||||||
"useAlternativeSources": "使用其他来源",
|
"useAlternativeSources": "使用其他来源",
|
||||||
"useAlternativeSourcesHint": "使用 ReVanced 补丁和 ReVanced 集成的替代来源而不是 API",
|
"useAlternativeSourcesHint": "使用 ReVic Patches 替代API 的其他来源",
|
||||||
"sourcesResetDialogTitle": "重置",
|
"sourcesResetDialogTitle": "重置",
|
||||||
"sourcesResetDialogText": "您确定要将源重置为默认值吗?",
|
"sourcesResetDialogText": "您确定要将源重置为默认值吗?",
|
||||||
"apiURLResetDialogText": "您确定要重置你的 API URL 为默认值吗?",
|
"apiURLResetDialogText": "您确定要重置你的 API URL 为默认值吗?",
|
||||||
"sourcesUpdateNote": "注意:这将自动从其他来源下载 ReVanced 补丁和 ReVanced 集成。\n\n这将连接到替代源。",
|
"sourcesUpdateNote": "注意:这将自动从备选来源下载ReVanced 补丁。\n\n这将连接到您的备用源。",
|
||||||
"apiURLLabel": "API 地址",
|
"apiURLLabel": "API 地址",
|
||||||
"apiURLHint": "配置 ReVanced Manager 的 API URL",
|
"apiURLHint": "配置 ReVanced Manager 的 API URL",
|
||||||
"selectApiURL": "API 地址",
|
"selectApiURL": "API 地址",
|
||||||
"orgPatchesLabel": "补丁组织",
|
"orgPatchesLabel": "补丁组织",
|
||||||
"sourcesPatchesLabel": "补丁来源",
|
"sourcesPatchesLabel": "补丁来源",
|
||||||
"orgIntegrationsLabel": "集成组织",
|
|
||||||
"contributorsLabel": "贡献者",
|
"contributorsLabel": "贡献者",
|
||||||
"contributorsHint": "ReVanced 贡献者列表",
|
"contributorsHint": "ReVanced 贡献者列表",
|
||||||
"logsLabel": "分享日志",
|
"logsLabel": "分享日志",
|
||||||
@@ -197,6 +195,12 @@
|
|||||||
"deleteTempDirLabel": "删除临时文件",
|
"deleteTempDirLabel": "删除临时文件",
|
||||||
"deleteTempDirHint": "删除未使用的临时文件",
|
"deleteTempDirHint": "删除未使用的临时文件",
|
||||||
"deletedTempDir": "已删除临时文件",
|
"deletedTempDir": "已删除临时文件",
|
||||||
|
"exportSettingsLabel": "导出设置",
|
||||||
|
"exportSettingsHint": "导出设置到 JSON 文件",
|
||||||
|
"exportedSettings": "设置已导出",
|
||||||
|
"importSettingsLabel": "导入设置",
|
||||||
|
"importSettingsHint": "从 JSON 文件导入设置",
|
||||||
|
"importedSettings": "已导入设置",
|
||||||
"exportPatchesLabel": "导出选择的补丁",
|
"exportPatchesLabel": "导出选择的补丁",
|
||||||
"exportPatchesHint": "将选择的补丁导出到 JSON 文件",
|
"exportPatchesHint": "将选择的补丁导出到 JSON 文件",
|
||||||
"exportedPatches": "导出选择的修补程序",
|
"exportedPatches": "导出选择的修补程序",
|
||||||
|
|||||||
@@ -90,7 +90,6 @@
|
|||||||
"noSavedPatches": "冇保存咗嘅補丁選擇俾呢個應用。\n撳\"完成\"嚟保存當前嘅選擇。",
|
"noSavedPatches": "冇保存咗嘅補丁選擇俾呢個應用。\n撳\"完成\"嚟保存當前嘅選擇。",
|
||||||
"noPatchesFound": "冇補丁俾呢個揀咗嘅應用。"
|
"noPatchesFound": "冇補丁俾呢個揀咗嘅應用。"
|
||||||
},
|
},
|
||||||
"patchOptionsView": {},
|
|
||||||
"patchItem": {
|
"patchItem": {
|
||||||
"unsupportedDialogText": "揀咗哩種修改可能會導致修改錯誤\n\nApp 版本: ${packageVersion}\n現時支援嘅版本: \n${supportedVersions}"
|
"unsupportedDialogText": "揀咗哩種修改可能會導致修改錯誤\n\nApp 版本: ${packageVersion}\n現時支援嘅版本: \n${supportedVersions}"
|
||||||
},
|
},
|
||||||
@@ -111,7 +110,6 @@
|
|||||||
"dynamicThemeLabel": "Material You",
|
"dynamicThemeLabel": "Material You",
|
||||||
"dynamicThemeHint": "享受一個更貼近你裝置嘅體驗",
|
"dynamicThemeHint": "享受一個更貼近你裝置嘅體驗",
|
||||||
"languageLabel": "語言",
|
"languageLabel": "語言",
|
||||||
"sourcesIntegrationsLabel": "項目整合來源",
|
|
||||||
"sourcesResetDialogTitle": "重設",
|
"sourcesResetDialogTitle": "重設",
|
||||||
"sourcesResetDialogText": "真喺要重新設定你嘅來源返去預設值?",
|
"sourcesResetDialogText": "真喺要重新設定你嘅來源返去預設值?",
|
||||||
"apiURLResetDialogText": "真喺要重新設定 API URL 返去預設值?",
|
"apiURLResetDialogText": "真喺要重新設定 API URL 返去預設值?",
|
||||||
@@ -119,7 +117,6 @@
|
|||||||
"selectApiURL": "API 网址",
|
"selectApiURL": "API 网址",
|
||||||
"orgPatchesLabel": "修補檔組織",
|
"orgPatchesLabel": "修補檔組織",
|
||||||
"sourcesPatchesLabel": "修補檔來源",
|
"sourcesPatchesLabel": "修補檔來源",
|
||||||
"orgIntegrationsLabel": "項目整合組織",
|
|
||||||
"contributorsLabel": "貢獻者",
|
"contributorsLabel": "貢獻者",
|
||||||
"contributorsHint": "ReVanced 貢獻者列表",
|
"contributorsHint": "ReVanced 貢獻者列表",
|
||||||
"logsLabel": "分享記錄檔",
|
"logsLabel": "分享記錄檔",
|
||||||
@@ -155,6 +152,5 @@
|
|||||||
},
|
},
|
||||||
"contributorsView": {
|
"contributorsView": {
|
||||||
"widgetTitle": "貢獻者"
|
"widgetTitle": "貢獻者"
|
||||||
},
|
}
|
||||||
"installErrorDialog": {}
|
|
||||||
}
|
}
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"updateDialogText": "${file} 有新的更新可用。\n\n目前安裝的版本是 ${version}。",
|
"updateDialogText": "${file} 有新的更新可用。\n\n目前安裝的版本是 ${version}。",
|
||||||
"downloadConsentDialogTitle": "需要下載必要檔案嗎?",
|
"downloadConsentDialogTitle": "需要下載必要檔案嗎?",
|
||||||
"downloadConsentDialogText": "ReVanced Manager 需要下載必要檔案才能正常執行。",
|
"downloadConsentDialogText": "ReVanced Manager 需要下載必要檔案才能正常執行。",
|
||||||
"downloadConsentDialogText2": "這項操作將連結至 ${url}。",
|
"downloadConsentDialogText2": "這將帶您前往至 ${url}。",
|
||||||
"downloadingMessage": "正在下載更新...",
|
"downloadingMessage": "正在下載更新...",
|
||||||
"downloadedMessage": "已下載更新",
|
"downloadedMessage": "已下載更新",
|
||||||
"installingMessage": "正在安裝更新...",
|
"installingMessage": "正在安裝更新...",
|
||||||
@@ -158,20 +158,18 @@
|
|||||||
"languageLabel": "語言",
|
"languageLabel": "語言",
|
||||||
"languageUpdated": "已更新語言",
|
"languageUpdated": "已更新語言",
|
||||||
"sourcesLabel": "替代來源",
|
"sourcesLabel": "替代來源",
|
||||||
"sourcesLabelHint": "設定 ReVanced 修補和 ReVanced 整合的備用來源",
|
"sourcesLabelHint": "為 ReVanced 修補檔設定備用來源",
|
||||||
"sourcesIntegrationsLabel": "整合來源",
|
|
||||||
"useAlternativeSources": "使用替代來源",
|
"useAlternativeSources": "使用替代來源",
|
||||||
"useAlternativeSourcesHint": "改用 ReVanced 修補檔和 ReVanced 整合的替代來源,而不是 API",
|
"useAlternativeSourcesHint": "使用 ReVanced 修補檔備用來源以取代 API",
|
||||||
"sourcesResetDialogTitle": "重設",
|
"sourcesResetDialogTitle": "重設",
|
||||||
"sourcesResetDialogText": "確定要將來源重設為預設值嗎?",
|
"sourcesResetDialogText": "確定要將來源重設為預設值嗎?",
|
||||||
"apiURLResetDialogText": "確定要還原 API URL 至預設值嗎?",
|
"apiURLResetDialogText": "確定要還原 API URL 至預設值嗎?",
|
||||||
"sourcesUpdateNote": "注意:這項操作操作將自動從備用來源下載 ReVanced 修補檔和 ReVanced 整合。\n\n這項操作將連結至備用來源。",
|
"sourcesUpdateNote": "注意: 本操作將自動從備用來源下載 ReVanced 修補檔。\n\n本操作將連線至備用來源。",
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"apiURLHint": "設定 ReVanced Manager 的 API URL",
|
"apiURLHint": "設定 ReVanced Manager 的 API URL",
|
||||||
"selectApiURL": "API URL",
|
"selectApiURL": "API URL",
|
||||||
"orgPatchesLabel": "修補檔組織",
|
"orgPatchesLabel": "修補檔組織",
|
||||||
"sourcesPatchesLabel": "修補檔來源",
|
"sourcesPatchesLabel": "修補檔來源",
|
||||||
"orgIntegrationsLabel": "整合組織",
|
|
||||||
"contributorsLabel": "貢獻者",
|
"contributorsLabel": "貢獻者",
|
||||||
"contributorsHint": "ReVanced 貢獻者清單",
|
"contributorsHint": "ReVanced 貢獻者清單",
|
||||||
"logsLabel": "分享記錄檔",
|
"logsLabel": "分享記錄檔",
|
||||||
@@ -199,6 +197,12 @@
|
|||||||
"deleteTempDirLabel": "刪除暫存檔案",
|
"deleteTempDirLabel": "刪除暫存檔案",
|
||||||
"deleteTempDirHint": "刪除未使用的暫存檔案",
|
"deleteTempDirHint": "刪除未使用的暫存檔案",
|
||||||
"deletedTempDir": "已刪除暫存檔案",
|
"deletedTempDir": "已刪除暫存檔案",
|
||||||
|
"exportSettingsLabel": "匯出設定",
|
||||||
|
"exportSettingsHint": "匯出設定至 JSON 檔",
|
||||||
|
"exportedSettings": "已匯出設定",
|
||||||
|
"importSettingsLabel": "匯入設定",
|
||||||
|
"importSettingsHint": "從 JSON 檔匯入設定",
|
||||||
|
"importedSettings": "已匯入設定",
|
||||||
"exportPatchesLabel": "匯出修補選取",
|
"exportPatchesLabel": "匯出修補選取",
|
||||||
"exportPatchesHint": "匯出修補選取到 JSON 檔案",
|
"exportPatchesHint": "匯出修補選取到 JSON 檔案",
|
||||||
"exportedPatches": "已匯出修補選取",
|
"exportedPatches": "已匯出修補選取",
|
||||||
|
|||||||
@@ -26,20 +26,21 @@ Learn how to use ReVanced Manager to patch apps.
|
|||||||
5. Tap on the **Done** then **Patch** button
|
5. Tap on the **Done** then **Patch** button
|
||||||
|
|
||||||
> ⚠️ Warning
|
> ⚠️ Warning
|
||||||
> The patching process may take ~5 minutes. Exiting the app may cancel patching or increase the time it takes to patch significantly.
|
> The patching process may take ~5 minutes. Exiting the app may cancel patching or significantly increase the time it takes to patch.
|
||||||
|
|
||||||
6. Tap on the **Install** button
|
6. Tap on the **Install** button
|
||||||
|
|
||||||
> ℹ️ Note
|
> ℹ️ Note
|
||||||
> If you are rooted, you can mount the patched app on top of the original app.[^3]
|
> If you are rooted, you can mount[^3] the patched app on top of the original app.[^4]
|
||||||
> Optionally, you may export the patched app to storage using the option in the bottom left corner.
|
> Optionally, you may export the patched app to storage using the option in the bottom left corner.
|
||||||
|
|
||||||
[^1]: You can select installed apps or select APK files from storage. ReVanced does not provide any APK files, which is why you have to source them yourself.
|
[^1]: You can select installed apps from the list of installed apps or APK files from device storage. ReVanced does not provide any APK files, so you must source them yourself.
|
||||||
[^2]: It is suggested to use the default set of patches by tapping on the **Default** button above the list of patches.
|
[^2]: It is suggested to use the default set of patches by tapping on the **Default** button above the list of patches.
|
||||||
[^3]: Mounting the patched app on top of the original app will only work if the installed app version matches the version of the app selected in step 3. above.
|
[^3]: Mounting refers to using Linux's mounting mechanism to layer the patched app on top of the existing installed app.
|
||||||
|
[^4]: Mounting the patched app on top of the original app may only work if the installed app version matches the version of the app selected in step 3. above.
|
||||||
|
|
||||||
## ⏭️ What's next
|
## ⏭️ What's next
|
||||||
|
|
||||||
The next page will lead back to the usage page.
|
The next page will explain how to view, open and uninstall patched apps.
|
||||||
|
|
||||||
Continue: [🛠️ Usage](2_usage.md)
|
Continue: [🧰 Managing patched apps](2_2_managing.md)
|
||||||
|
|||||||
@@ -10,6 +10,6 @@ Learn how to view, open and uninstall patched apps.
|
|||||||
|
|
||||||
## ⏭️ What's next
|
## ⏭️ What's next
|
||||||
|
|
||||||
The next page will lead back to the usage page.
|
The next page will explain how to update ReVanced Manager.
|
||||||
|
|
||||||
Continue: [🛠️ Usage](2_usage.md)
|
Continue: [🔄 Updating ReVanced Manager](2_3_updating.md)
|
||||||
|
|||||||
@@ -9,6 +9,6 @@ Learn how to update ReVanced Manager.
|
|||||||
|
|
||||||
## ⏭️ What's next
|
## ⏭️ What's next
|
||||||
|
|
||||||
The next page will lead back to the usage page.
|
The next page will explain how to configure ReVanced Manager.
|
||||||
|
|
||||||
Continue: [🛠️ Usage](2_usage.md)
|
Continue: [⚙️ Configuring ReVanced Manager](2_4_settings.md)
|
||||||
|
|||||||
@@ -50,6 +50,7 @@ Learn how to configure ReVanced Manager.
|
|||||||
- 🔑 Keystore used to sign patched apps
|
- 🔑 Keystore used to sign patched apps
|
||||||
- 📄 Remembered selection of patches for each app
|
- 📄 Remembered selection of patches for each app
|
||||||
- ⚙️ Remembered patch options
|
- ⚙️ Remembered patch options
|
||||||
|
- 🛠️ Remembered settings
|
||||||
|
|
||||||
> ℹ️ Note
|
> ℹ️ Note
|
||||||
> These can be used to backup and restore or reset settings to default in case of issues.
|
> These can be used to backup and restore or reset settings to default in case of issues.
|
||||||
@@ -60,6 +61,6 @@ Learn how to configure ReVanced Manager.
|
|||||||
|
|
||||||
## ⏭️ What's next
|
## ⏭️ What's next
|
||||||
|
|
||||||
The next page will lead back to the usage page.
|
The next page will explain how to troubleshoot issues with ReVanced Manager.
|
||||||
|
|
||||||
Continue: [🛠️ Usage](2_usage.md)
|
Continue: [❔ Troubleshooting](3_troubleshooting.md)
|
||||||
|
|||||||
@@ -11,6 +11,6 @@ Learn how to use ReVanced Manager to manage and patch apps or update ReVanced Ma
|
|||||||
|
|
||||||
## ⏭️ What's next
|
## ⏭️ What's next
|
||||||
|
|
||||||
The next page will explain how to troubleshoot issues with ReVanced Manager.
|
The next page will explain how to use ReVanced Manager to patch apps.
|
||||||
|
|
||||||
Continue: [❔ Troubleshooting](3_troubleshooting.md)
|
Continue: [🧩 Patching apps](2_1_patching.md)
|
||||||
|
|||||||
@@ -30,6 +30,7 @@ class ManagerAPI {
|
|||||||
final String patcherRepo = 'revanced-patcher';
|
final String patcherRepo = 'revanced-patcher';
|
||||||
final String cliRepo = 'revanced-cli';
|
final String cliRepo = 'revanced-cli';
|
||||||
late SharedPreferences _prefs;
|
late SharedPreferences _prefs;
|
||||||
|
Map<String, List>? contributors;
|
||||||
List<Patch> patches = [];
|
List<Patch> patches = [];
|
||||||
List<Option> options = [];
|
List<Option> options = [];
|
||||||
Patch? selectedPatch;
|
Patch? selectedPatch;
|
||||||
@@ -44,7 +45,7 @@ class ManagerAPI {
|
|||||||
String keystoreFile =
|
String keystoreFile =
|
||||||
'/sdcard/Android/data/app.revanced.manager.flutter/files/revanced-manager.keystore';
|
'/sdcard/Android/data/app.revanced.manager.flutter/files/revanced-manager.keystore';
|
||||||
String defaultKeystorePassword = 's3cur3p@ssw0rd';
|
String defaultKeystorePassword = 's3cur3p@ssw0rd';
|
||||||
String defaultApiUrl = 'https://api.revanced.app/v3';
|
String defaultApiUrl = 'https://api.revanced.app/v4';
|
||||||
String defaultRepoUrl = 'https://api.github.com';
|
String defaultRepoUrl = 'https://api.github.com';
|
||||||
String defaultPatcherRepo = 'revanced/revanced-patcher';
|
String defaultPatcherRepo = 'revanced/revanced-patcher';
|
||||||
String defaultPatchesRepo = 'revanced/revanced-patches';
|
String defaultPatchesRepo = 'revanced/revanced-patches';
|
||||||
@@ -66,16 +67,24 @@ class ManagerAPI {
|
|||||||
releaseBuild = !(await getCurrentManagerVersion()).contains('-dev');
|
releaseBuild = !(await getCurrentManagerVersion()).contains('-dev');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Migrate to new API URL if not done yet as the old one is sunset.
|
final hasMigratedToNewMigrationSystem = _prefs.getBool('migratedToNewApiPrefSystem') ?? false;
|
||||||
final bool hasMigratedToLatestApi =
|
if (!hasMigratedToNewMigrationSystem) {
|
||||||
_prefs.getBool('migratedToLatestApiUrl') ?? false;
|
final apiUrl = getApiUrl().toLowerCase();
|
||||||
if (!hasMigratedToLatestApi) {
|
|
||||||
final String apiUrl = getApiUrl().toLowerCase();
|
final isReleases = apiUrl.contains('releases.revanced.app');
|
||||||
if (apiUrl.contains('releases.revanced.app') ||
|
final isDomain = apiUrl.endsWith('api.revanced.app');
|
||||||
(apiUrl.contains('api.revanced.app') &&
|
final isV2 = apiUrl.contains('api.revanced.app/v2');
|
||||||
!apiUrl.contains('v3'))) {
|
final isV3 = apiUrl.contains('api.revanced.app/v3');
|
||||||
await setApiUrl(''); // Reset to default.
|
|
||||||
_prefs.setBool('migratedToLatestApiUrl', true);
|
if (isReleases || isDomain || isV2 || isV3) {
|
||||||
|
await resetApiUrl();
|
||||||
|
// At this point, the preference is removed.
|
||||||
|
// Now, no more migration is needed because:
|
||||||
|
// If the user touches the API URL,
|
||||||
|
// it will be remembered forever as intended.
|
||||||
|
// On the other hand, if the user resets it or sets it to the default,
|
||||||
|
// the URL will be updated whenever the app is updated.
|
||||||
|
_prefs.setBool('migratedToNewApiPrefSystem', true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -99,12 +108,25 @@ class ManagerAPI {
|
|||||||
return _prefs.getString('apiUrl') ?? defaultApiUrl;
|
return _prefs.getString('apiUrl') ?? defaultApiUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> setApiUrl(String url) async {
|
Future<void> resetApiUrl() async {
|
||||||
if (url.isEmpty || url == ' ') {
|
await _prefs.remove('apiUrl');
|
||||||
url = defaultApiUrl;
|
|
||||||
}
|
|
||||||
await _revancedAPI.clearAllCache();
|
await _revancedAPI.clearAllCache();
|
||||||
|
_toast.showBottom(t.settingsView.restartAppForChanges);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> setApiUrl(String url) async {
|
||||||
|
url = url.toLowerCase();
|
||||||
|
|
||||||
|
if (url == defaultApiUrl) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!url.startsWith('http')) {
|
||||||
|
url = 'https://$url';
|
||||||
|
}
|
||||||
|
|
||||||
await _prefs.setString('apiUrl', url);
|
await _prefs.setString('apiUrl', url);
|
||||||
|
await _revancedAPI.clearAllCache();
|
||||||
_toast.showBottom(t.settingsView.restartAppForChanges);
|
_toast.showBottom(t.settingsView.restartAppForChanges);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -406,7 +428,7 @@ class ManagerAPI {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Future<Map<String, List<dynamic>>> getContributors() async {
|
Future<Map<String, List<dynamic>>> getContributors() async {
|
||||||
return await _revancedAPI.getContributors();
|
return contributors ??= await _revancedAPI.getContributors();
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<List<Patch>> getPatches() async {
|
Future<List<Patch>> getPatches() async {
|
||||||
@@ -438,6 +460,10 @@ class ManagerAPI {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Future<File?> downloadPatches() async {
|
Future<File?> downloadPatches() async {
|
||||||
|
if (!isUsingAlternativeSources()) {
|
||||||
|
return await _revancedAPI.getLatestReleaseFile('patches');
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
final String repoName = getPatchesRepo();
|
final String repoName = getPatchesRepo();
|
||||||
final String currentVersion = await getCurrentPatchesVersion();
|
final String currentVersion = await getCurrentPatchesVersion();
|
||||||
@@ -755,6 +781,36 @@ class ManagerAPI {
|
|||||||
return jsonDecode(string);
|
return jsonDecode(string);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String exportSettings() {
|
||||||
|
final Map<String, dynamic> settings = _prefs
|
||||||
|
.getKeys()
|
||||||
|
.fold<Map<String, dynamic>>({}, (Map<String, dynamic> map, String key) {
|
||||||
|
map[key] = _prefs.get(key);
|
||||||
|
return map;
|
||||||
|
});
|
||||||
|
return jsonEncode(settings);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> importSettings(String settings) async {
|
||||||
|
final Map<String, dynamic> settingsMap = jsonDecode(settings);
|
||||||
|
settingsMap.forEach((key, value) {
|
||||||
|
if (value is bool) {
|
||||||
|
_prefs.setBool(key, value);
|
||||||
|
} else if (value is int) {
|
||||||
|
_prefs.setInt(key, value);
|
||||||
|
} else if (value is double) {
|
||||||
|
_prefs.setDouble(key, value);
|
||||||
|
} else if (value is String) {
|
||||||
|
_prefs.setString(key, value);
|
||||||
|
} else if (value is List<dynamic>) {
|
||||||
|
_prefs.setStringList(
|
||||||
|
key,
|
||||||
|
value.map((a) => json.encode(a.toJson())).toList(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
void resetAllOptions() {
|
void resetAllOptions() {
|
||||||
_prefs.getKeys().where((key) => key.startsWith('patchOption-')).forEach(
|
_prefs.getKeys().where((key) => key.startsWith('patchOption-')).forEach(
|
||||||
(key) {
|
(key) {
|
||||||
|
|||||||
@@ -18,8 +18,7 @@ import 'package:share_plus/share_plus.dart';
|
|||||||
|
|
||||||
@lazySingleton
|
@lazySingleton
|
||||||
class PatcherAPI {
|
class PatcherAPI {
|
||||||
static const patcherChannel =
|
static const patcherChannel = MethodChannel('app.revanced.manager.flutter/patcher');
|
||||||
MethodChannel('app.revanced.manager.flutter/patcher');
|
|
||||||
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
||||||
final RootAPI _rootAPI = RootAPI();
|
final RootAPI _rootAPI = RootAPI();
|
||||||
late Directory _dataDir;
|
late Directory _dataDir;
|
||||||
@@ -27,7 +26,7 @@ class PatcherAPI {
|
|||||||
late File _keyStoreFile;
|
late File _keyStoreFile;
|
||||||
List<Patch> _patches = [];
|
List<Patch> _patches = [];
|
||||||
List<Patch> _universalPatches = [];
|
List<Patch> _universalPatches = [];
|
||||||
List<String> _compatiblePackages = [];
|
Set<String> _compatiblePackages = {};
|
||||||
Map filteredPatches = <String, List<Patch>>{};
|
Map filteredPatches = <String, List<Patch>>{};
|
||||||
File? outFile;
|
File? outFile;
|
||||||
|
|
||||||
@@ -46,8 +45,8 @@ class PatcherAPI {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
List<String> getCompatiblePackages() {
|
Set<String> getCompatiblePackages() {
|
||||||
final List<String> compatiblePackages = [];
|
final Set<String> compatiblePackages = {};
|
||||||
for (final Patch patch in _patches) {
|
for (final Patch patch in _patches) {
|
||||||
for (final Package package in patch.compatiblePackages) {
|
for (final Package package in patch.compatiblePackages) {
|
||||||
if (!compatiblePackages.contains(package.name)) {
|
if (!compatiblePackages.contains(package.name)) {
|
||||||
@@ -66,16 +65,16 @@ class PatcherAPI {
|
|||||||
try {
|
try {
|
||||||
if (_patches.isEmpty) {
|
if (_patches.isEmpty) {
|
||||||
_patches = await _managerAPI.getPatches();
|
_patches = await _managerAPI.getPatches();
|
||||||
|
_universalPatches = getUniversalPatches();
|
||||||
|
_compatiblePackages = getCompatiblePackages();
|
||||||
}
|
}
|
||||||
} on Exception catch (e) {
|
} on Exception catch (e) {
|
||||||
if (kDebugMode) {
|
if (kDebugMode) {
|
||||||
print(e);
|
print(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
_patches = List.empty();
|
_patches = List.empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
_compatiblePackages = getCompatiblePackages();
|
|
||||||
_universalPatches = getUniversalPatches();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<List<ApplicationWithIcon>> getFilteredInstalledApps(
|
Future<List<ApplicationWithIcon>> getFilteredInstalledApps(
|
||||||
@@ -84,6 +83,7 @@ class PatcherAPI {
|
|||||||
final List<ApplicationWithIcon> filteredApps = [];
|
final List<ApplicationWithIcon> filteredApps = [];
|
||||||
final bool allAppsIncluded =
|
final bool allAppsIncluded =
|
||||||
_universalPatches.isNotEmpty && showUniversalPatches;
|
_universalPatches.isNotEmpty && showUniversalPatches;
|
||||||
|
|
||||||
if (allAppsIncluded) {
|
if (allAppsIncluded) {
|
||||||
final appList = await DeviceApps.getInstalledApplications(
|
final appList = await DeviceApps.getInstalledApplications(
|
||||||
includeAppIcons: true,
|
includeAppIcons: true,
|
||||||
@@ -94,6 +94,7 @@ class PatcherAPI {
|
|||||||
filteredApps.add(app as ApplicationWithIcon);
|
filteredApps.add(app as ApplicationWithIcon);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (final packageName in _compatiblePackages) {
|
for (final packageName in _compatiblePackages) {
|
||||||
try {
|
try {
|
||||||
if (!filteredApps.any((app) => app.packageName == packageName)) {
|
if (!filteredApps.any((app) => app.packageName == packageName)) {
|
||||||
@@ -174,13 +175,6 @@ class PatcherAPI {
|
|||||||
final File inApkFile = File('${workDir.path}/in.apk');
|
final File inApkFile = File('${workDir.path}/in.apk');
|
||||||
await File(apkFilePath).copy(inApkFile.path);
|
await File(apkFilePath).copy(inApkFile.path);
|
||||||
|
|
||||||
if (isFromStorage) {
|
|
||||||
// The selected apk was copied to cacheDir by the file picker, so it's not needed anymore.
|
|
||||||
// rename() can't be used here, as Android system also counts the size of files moved out from cacheDir
|
|
||||||
// as part of the app's cache size.
|
|
||||||
File(apkFilePath).delete();
|
|
||||||
}
|
|
||||||
|
|
||||||
outFile = File('${workDir.path}/out.apk');
|
outFile = File('${workDir.path}/out.apk');
|
||||||
|
|
||||||
final Directory tmpDir =
|
final Directory tmpDir =
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ class RevancedAPI {
|
|||||||
}
|
}
|
||||||
return getToolsLock.synchronized(() async {
|
return getToolsLock.synchronized(() async {
|
||||||
try {
|
try {
|
||||||
final response = await _dio.get('/$toolName/latest');
|
final response = await _dio.get('/$toolName');
|
||||||
return response.data;
|
return response.data;
|
||||||
} on Exception catch (e) {
|
} on Exception catch (e) {
|
||||||
if (kDebugMode) {
|
if (kDebugMode) {
|
||||||
@@ -89,7 +89,7 @@ class RevancedAPI {
|
|||||||
toolName,
|
toolName,
|
||||||
);
|
);
|
||||||
if (release != null) {
|
if (release != null) {
|
||||||
final String url = release['assets'][0]['download_url'];
|
final String url = release['download_url'];
|
||||||
return await _downloadManager.getSingleFile(url);
|
return await _downloadManager.getSingleFile(url);
|
||||||
}
|
}
|
||||||
} on Exception catch (e) {
|
} on Exception catch (e) {
|
||||||
|
|||||||
@@ -30,25 +30,13 @@ class ContributorsView extends StatelessWidget {
|
|||||||
sliver: SliverList(
|
sliver: SliverList(
|
||||||
delegate: SliverChildListDelegate.fixed(
|
delegate: SliverChildListDelegate.fixed(
|
||||||
<Widget>[
|
<Widget>[
|
||||||
ContributorsCard(
|
for (final String tool in model.contributors.keys) ...[
|
||||||
title: 'ReVanced Patcher',
|
ContributorsCard(
|
||||||
contributors: model.patcherContributors,
|
title: tool,
|
||||||
),
|
contributors: model.contributors[tool]!,
|
||||||
const SizedBox(height: 20),
|
),
|
||||||
ContributorsCard(
|
const SizedBox(height: 20),
|
||||||
title: 'ReVanced Patches',
|
],
|
||||||
contributors: model.patchesContributors,
|
|
||||||
),
|
|
||||||
const SizedBox(height: 20),
|
|
||||||
ContributorsCard(
|
|
||||||
title: 'ReVanced CLI',
|
|
||||||
contributors: model.cliContributors,
|
|
||||||
),
|
|
||||||
const SizedBox(height: 20),
|
|
||||||
ContributorsCard(
|
|
||||||
title: 'ReVanced Manager',
|
|
||||||
contributors: model.managerContributors,
|
|
||||||
),
|
|
||||||
SizedBox(height: MediaQuery.viewPaddingOf(context).bottom),
|
SizedBox(height: MediaQuery.viewPaddingOf(context).bottom),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -4,20 +4,10 @@ import 'package:stacked/stacked.dart';
|
|||||||
|
|
||||||
class ContributorsViewModel extends BaseViewModel {
|
class ContributorsViewModel extends BaseViewModel {
|
||||||
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
||||||
List<dynamic> patcherContributors = [];
|
Map<String, List<dynamic>> contributors = {};
|
||||||
List<dynamic> patchesContributors = [];
|
|
||||||
List<dynamic> cliContributors = [];
|
|
||||||
List<dynamic> managerContributors = [];
|
|
||||||
|
|
||||||
String repoName(String repo) => repo.split('/').last;
|
|
||||||
|
|
||||||
Future<void> getContributors() async {
|
Future<void> getContributors() async {
|
||||||
final Map<String, List<dynamic>> contributors =
|
contributors = await _managerAPI.getContributors();
|
||||||
await _managerAPI.getContributors();
|
|
||||||
patcherContributors = contributors[repoName(_managerAPI.defaultPatcherRepo)] ?? [];
|
|
||||||
patchesContributors = contributors[repoName(_managerAPI.defaultPatchesRepo)] ?? [];
|
|
||||||
cliContributors = contributors[repoName(_managerAPI.defaultCliRepo)] ?? [];
|
|
||||||
managerContributors = contributors[repoName(_managerAPI.defaultManagerRepo)] ?? [];
|
|
||||||
notifyListeners();
|
notifyListeners();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
// ignore_for_file: use_build_context_synchronously
|
// ignore_for_file: use_build_context_synchronously
|
||||||
|
import 'dart:io';
|
||||||
|
|
||||||
import 'package:device_apps/device_apps.dart';
|
import 'package:device_apps/device_apps.dart';
|
||||||
import 'package:flutter/foundation.dart';
|
import 'package:flutter/foundation.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
@@ -566,6 +568,10 @@ class InstallerViewModel extends BaseViewModel {
|
|||||||
Future<void> cleanPatcher() async {
|
Future<void> cleanPatcher() async {
|
||||||
try {
|
try {
|
||||||
_patcherAPI.cleanPatcher();
|
_patcherAPI.cleanPatcher();
|
||||||
|
if (_app.isFromStorage) {
|
||||||
|
// The selected apk was copied to cacheDir by the file picker, so it's not needed anymore.
|
||||||
|
File(_app.apkFilePath).delete();
|
||||||
|
}
|
||||||
locator<PatcherViewModel>().selectedApp = null;
|
locator<PatcherViewModel>().selectedApp = null;
|
||||||
locator<PatcherViewModel>().selectedPatches.clear();
|
locator<PatcherViewModel>().selectedPatches.clear();
|
||||||
locator<PatcherViewModel>().notifyListeners();
|
locator<PatcherViewModel>().notifyListeners();
|
||||||
|
|||||||
@@ -13,8 +13,9 @@ class SManageApiUrl extends BaseViewModel {
|
|||||||
final TextEditingController _apiUrlController = TextEditingController();
|
final TextEditingController _apiUrlController = TextEditingController();
|
||||||
|
|
||||||
Future<void> showApiUrlDialog(BuildContext context) async {
|
Future<void> showApiUrlDialog(BuildContext context) async {
|
||||||
final String apiUrl = _managerAPI.getApiUrl();
|
final apiUrl = _managerAPI.getApiUrl();
|
||||||
_apiUrlController.text = apiUrl.replaceAll('https://', '');
|
|
||||||
|
_apiUrlController.text = apiUrl;
|
||||||
return showDialog(
|
return showDialog(
|
||||||
context: context,
|
context: context,
|
||||||
builder: (context) => AlertDialog(
|
builder: (context) => AlertDialog(
|
||||||
@@ -60,11 +61,7 @@ class SManageApiUrl extends BaseViewModel {
|
|||||||
),
|
),
|
||||||
FilledButton(
|
FilledButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
String apiUrl = _apiUrlController.text;
|
_managerAPI.setApiUrl(_apiUrlController.text);
|
||||||
if (!apiUrl.startsWith('https')) {
|
|
||||||
apiUrl = 'https://$apiUrl';
|
|
||||||
}
|
|
||||||
_managerAPI.setApiUrl(apiUrl);
|
|
||||||
Navigator.of(context).pop();
|
Navigator.of(context).pop();
|
||||||
},
|
},
|
||||||
child: Text(t.okButton),
|
child: Text(t.okButton),
|
||||||
@@ -87,7 +84,7 @@ class SManageApiUrl extends BaseViewModel {
|
|||||||
),
|
),
|
||||||
FilledButton(
|
FilledButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
_managerAPI.setApiUrl('');
|
_managerAPI.resetApiUrl();
|
||||||
Navigator.of(context)
|
Navigator.of(context)
|
||||||
..pop()
|
..pop()
|
||||||
..pop();
|
..pop();
|
||||||
|
|||||||
@@ -222,6 +222,53 @@ class SettingsViewModel extends BaseViewModel {
|
|||||||
notifyListeners();
|
notifyListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<void> exportSettings() async {
|
||||||
|
try {
|
||||||
|
final String settings = _managerAPI.exportSettings();
|
||||||
|
final Directory tempDir = await getTemporaryDirectory();
|
||||||
|
final String filePath = '${tempDir.path}/manager_settings.json';
|
||||||
|
final File file = File(filePath);
|
||||||
|
await file.writeAsString(settings);
|
||||||
|
final String? result = await FlutterFileDialog.saveFile(
|
||||||
|
params: SaveFileDialogParams(
|
||||||
|
sourceFilePath: file.path,
|
||||||
|
fileName: 'manager_settings.json',
|
||||||
|
mimeTypesFilter: ['application/json'],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
if (result != null) {
|
||||||
|
_toast.showBottom(t.settingsView.exportedSettings);
|
||||||
|
}
|
||||||
|
} on Exception catch (e) {
|
||||||
|
if (kDebugMode) {
|
||||||
|
print(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> importSettings() async {
|
||||||
|
try {
|
||||||
|
final String? result = await FlutterFileDialog.pickFile(
|
||||||
|
params: const OpenFileDialogParams(
|
||||||
|
fileExtensionsFilter: ['json'],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
if (result != null) {
|
||||||
|
final File inFile = File(result);
|
||||||
|
final String settings = inFile.readAsStringSync();
|
||||||
|
inFile.delete();
|
||||||
|
_managerAPI.importSettings(settings);
|
||||||
|
_toast.showBottom(t.settingsView.importedSettings);
|
||||||
|
_toast.showBottom(t.settingsView.restartAppForChanges);
|
||||||
|
}
|
||||||
|
} on Exception catch (e) {
|
||||||
|
if (kDebugMode) {
|
||||||
|
print(e);
|
||||||
|
}
|
||||||
|
_toast.showBottom(t.settingsView.jsonSelectorErrorMessage);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Future<void> exportPatches() async {
|
Future<void> exportPatches() async {
|
||||||
try {
|
try {
|
||||||
final File outFile = File(_managerAPI.storedPatchesFile);
|
final File outFile = File(_managerAPI.storedPatchesFile);
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ class _ContributorsCardState extends State<ContributorsCard> {
|
|||||||
child: GestureDetector(
|
child: GestureDetector(
|
||||||
onTap: () => launchUrl(
|
onTap: () => launchUrl(
|
||||||
Uri.parse(
|
Uri.parse(
|
||||||
widget.contributors[index]['html_url'],
|
widget.contributors[index]['url'],
|
||||||
),
|
),
|
||||||
mode: LaunchMode.externalApplication,
|
mode: LaunchMode.externalApplication,
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -14,6 +14,30 @@ class SExportSection extends StatelessWidget {
|
|||||||
return SettingsSection(
|
return SettingsSection(
|
||||||
title: t.settingsView.exportSectionTitle,
|
title: t.settingsView.exportSectionTitle,
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
|
ListTile(
|
||||||
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: Text(
|
||||||
|
t.settingsView.exportSettingsLabel,
|
||||||
|
style: const TextStyle(
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: Text(t.settingsView.exportSettingsHint),
|
||||||
|
onTap: () => _settingsViewModel.exportSettings(),
|
||||||
|
),
|
||||||
|
ListTile(
|
||||||
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: Text(
|
||||||
|
t.settingsView.importSettingsLabel,
|
||||||
|
style: const TextStyle(
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: Text(t.settingsView.importSettingsHint),
|
||||||
|
onTap: () => _settingsViewModel.importSettings(),
|
||||||
|
),
|
||||||
ListTile(
|
ListTile(
|
||||||
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
title: Text(
|
title: Text(
|
||||||
@@ -114,7 +138,6 @@ class SExportSection extends StatelessWidget {
|
|||||||
subtitle: Text(t.settingsView.regenerateKeystoreHint),
|
subtitle: Text(t.settingsView.regenerateKeystoreHint),
|
||||||
onTap: () => _showDeleteKeystoreDialog(context),
|
onTap: () => _showDeleteKeystoreDialog(context),
|
||||||
),
|
),
|
||||||
// SManageKeystorePasswordUI(),
|
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
82
package-lock.json
generated
82
package-lock.json
generated
@@ -10,8 +10,8 @@
|
|||||||
"@semantic-release/changelog": "^6.0.3",
|
"@semantic-release/changelog": "^6.0.3",
|
||||||
"@semantic-release/exec": "^6.0.3",
|
"@semantic-release/exec": "^6.0.3",
|
||||||
"@semantic-release/git": "^10.0.1",
|
"@semantic-release/git": "^10.0.1",
|
||||||
"semantic-release": "^24.1.3",
|
"semantic-release": "^24.2.0",
|
||||||
"semantic-release-pub": "^0.8.29"
|
"semantic-release-pub": "^0.9.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@babel/code-frame": {
|
"node_modules/@babel/code-frame": {
|
||||||
@@ -1858,7 +1858,8 @@
|
|||||||
"type": "consulting",
|
"type": "consulting",
|
||||||
"url": "https://feross.org/support"
|
"url": "https://feross.org/support"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/before-after-hook": {
|
"node_modules/before-after-hook": {
|
||||||
"version": "3.0.2",
|
"version": "3.0.2",
|
||||||
@@ -1871,6 +1872,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.2.tgz",
|
||||||
"integrity": "sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==",
|
"integrity": "sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "*"
|
"node": "*"
|
||||||
}
|
}
|
||||||
@@ -1897,7 +1899,8 @@
|
|||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
|
||||||
"integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==",
|
"integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==",
|
||||||
"dev": true
|
"dev": true,
|
||||||
|
"license": "BSD-3-Clause"
|
||||||
},
|
},
|
||||||
"node_modules/call-bind": {
|
"node_modules/call-bind": {
|
||||||
"version": "1.0.7",
|
"version": "1.0.7",
|
||||||
@@ -2464,6 +2467,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
|
"resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
|
||||||
"integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
|
"integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"safe-buffer": "^5.0.1"
|
"safe-buffer": "^5.0.1"
|
||||||
}
|
}
|
||||||
@@ -2827,7 +2831,8 @@
|
|||||||
"version": "3.0.2",
|
"version": "3.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
|
||||||
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
|
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
|
||||||
"dev": true
|
"dev": true,
|
||||||
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/fast-glob": {
|
"node_modules/fast-glob": {
|
||||||
"version": "3.3.2",
|
"version": "3.3.2",
|
||||||
@@ -3007,6 +3012,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/gaxios/-/gaxios-6.7.1.tgz",
|
"resolved": "https://registry.npmjs.org/gaxios/-/gaxios-6.7.1.tgz",
|
||||||
"integrity": "sha512-LDODD4TMYx7XXdpwxAVRAIAuB0bzv0s+ywFonY46k126qzQHT9ygyoa9tncmOiQmmDrik65UYsEkv3lbfqQ3yQ==",
|
"integrity": "sha512-LDODD4TMYx7XXdpwxAVRAIAuB0bzv0s+ywFonY46k126qzQHT9ygyoa9tncmOiQmmDrik65UYsEkv3lbfqQ3yQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"extend": "^3.0.2",
|
"extend": "^3.0.2",
|
||||||
"https-proxy-agent": "^7.0.1",
|
"https-proxy-agent": "^7.0.1",
|
||||||
@@ -3023,6 +3029,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-6.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-6.1.0.tgz",
|
||||||
"integrity": "sha512-Jh/AIwwgaxan+7ZUUmRLCjtchyDiqh4KjBJ5tW3plBZb5iL/BPcso8A5DlzeD9qlw0duCamnNdpFjxwaT0KyKg==",
|
"integrity": "sha512-Jh/AIwwgaxan+7ZUUmRLCjtchyDiqh4KjBJ5tW3plBZb5iL/BPcso8A5DlzeD9qlw0duCamnNdpFjxwaT0KyKg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"gaxios": "^6.0.0",
|
"gaxios": "^6.0.0",
|
||||||
"json-bigint": "^1.0.0"
|
"json-bigint": "^1.0.0"
|
||||||
@@ -3172,10 +3179,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/google-auth-library": {
|
"node_modules/google-auth-library": {
|
||||||
"version": "9.14.2",
|
"version": "9.15.0",
|
||||||
"resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-9.14.2.tgz",
|
"resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-9.15.0.tgz",
|
||||||
"integrity": "sha512-R+FRIfk1GBo3RdlRYWPdwk8nmtVUOn6+BkDomAC46KoU8kzXzE1HLmOasSCbWUByMMAGkknVF0G5kQ69Vj7dlA==",
|
"integrity": "sha512-7ccSEJFDFO7exFbO6NRyC+xH8/mZ1GZGG2xxx9iHxZWcjUjJpjWxIMw3cofAKcueZ6DATiukmmprD7yavQHOyQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"base64-js": "^1.3.0",
|
"base64-js": "^1.3.0",
|
||||||
"ecdsa-sig-formatter": "^1.0.11",
|
"ecdsa-sig-formatter": "^1.0.11",
|
||||||
@@ -3211,6 +3219,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/gtoken/-/gtoken-7.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/gtoken/-/gtoken-7.1.0.tgz",
|
||||||
"integrity": "sha512-pCcEwRi+TKpMlxAQObHDQ56KawURgyAf6jtIY046fJ5tIv3zDe/LEIubckAO8fj6JnAxLdmWkUfNyulQ2iKdEw==",
|
"integrity": "sha512-pCcEwRi+TKpMlxAQObHDQ56KawURgyAf6jtIY046fJ5tIv3zDe/LEIubckAO8fj6JnAxLdmWkUfNyulQ2iKdEw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"gaxios": "^6.0.0",
|
"gaxios": "^6.0.0",
|
||||||
"jws": "^4.0.0"
|
"jws": "^4.0.0"
|
||||||
@@ -3884,6 +3893,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz",
|
||||||
"integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==",
|
"integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bignumber.js": "^9.0.0"
|
"bignumber.js": "^9.0.0"
|
||||||
}
|
}
|
||||||
@@ -3948,6 +3958,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.0.tgz",
|
||||||
"integrity": "sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==",
|
"integrity": "sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"buffer-equal-constant-time": "1.0.1",
|
"buffer-equal-constant-time": "1.0.1",
|
||||||
"ecdsa-sig-formatter": "1.0.11",
|
"ecdsa-sig-formatter": "1.0.11",
|
||||||
@@ -3959,6 +3970,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/jws/-/jws-4.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/jws/-/jws-4.0.0.tgz",
|
||||||
"integrity": "sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==",
|
"integrity": "sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"jwa": "^2.0.0",
|
"jwa": "^2.0.0",
|
||||||
"safe-buffer": "^5.0.1"
|
"safe-buffer": "^5.0.1"
|
||||||
@@ -4253,6 +4265,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
|
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
|
||||||
"integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
|
"integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"whatwg-url": "^5.0.0"
|
"whatwg-url": "^5.0.0"
|
||||||
},
|
},
|
||||||
@@ -7498,10 +7511,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/semantic-release": {
|
"node_modules/semantic-release": {
|
||||||
"version": "24.1.3",
|
"version": "24.2.0",
|
||||||
"resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-24.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-24.2.0.tgz",
|
||||||
"integrity": "sha512-Cb0Pm3Ye15u8k/B+7EnusMUSIIucAIEBD3QDRmmclv53KVyqmg1Lb3XPx0AMNxfJZEI+ZT+M+IXDyTrudK6Rew==",
|
"integrity": "sha512-fQfn6e/aYToRtVJYKqneFM1Rg3KP2gh3wSWtpYsLlz6uaPKlISrTzvYAFn+mYWo07F0X1Cz5ucU89AVE8X1mbg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@semantic-release/commit-analyzer": "^13.0.0-beta.1",
|
"@semantic-release/commit-analyzer": "^13.0.0-beta.1",
|
||||||
"@semantic-release/error": "^4.0.0",
|
"@semantic-release/error": "^4.0.0",
|
||||||
@@ -7541,19 +7555,20 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/semantic-release-pub": {
|
"node_modules/semantic-release-pub": {
|
||||||
"version": "0.8.29",
|
"version": "0.9.1",
|
||||||
"resolved": "https://registry.npmjs.org/semantic-release-pub/-/semantic-release-pub-0.8.29.tgz",
|
"resolved": "https://registry.npmjs.org/semantic-release-pub/-/semantic-release-pub-0.9.1.tgz",
|
||||||
"integrity": "sha512-vQbM6kPtnnmVf6ruALL7QkdsKGMVUY9wEcNkKrjvlI78vPvuLSaIm/2nid6kxP2mcZvUPt8PDYkzRk82wLy5+w==",
|
"integrity": "sha512-Oai8PX4Us8h96/k4/JWfOBMTe+wpG/1aH9PyMJG6Z1ZyoiX8C9RGl2UYz2kuPDuwFn8Oc6M/kU2rgfu8xMgjmQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@semantic-release/error": "^4.0.0",
|
"@semantic-release/error": "^4.0.0",
|
||||||
"execa": "^9.4.0",
|
"execa": "^9.5.1",
|
||||||
"google-auth-library": "^9.14.1",
|
"google-auth-library": "^9.15.0",
|
||||||
"yaml": "^2.5.1",
|
"yaml": "^2.6.1",
|
||||||
"zod": "^3.23.8"
|
"zod": "^3.23.8"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=20.18.0"
|
"node": ">=22.11.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/semantic-release-pub/node_modules/@semantic-release/error": {
|
"node_modules/semantic-release-pub/node_modules/@semantic-release/error": {
|
||||||
@@ -7570,6 +7585,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz",
|
||||||
"integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==",
|
"integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
@@ -7578,10 +7594,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/semantic-release-pub/node_modules/execa": {
|
"node_modules/semantic-release-pub/node_modules/execa": {
|
||||||
"version": "9.4.1",
|
"version": "9.5.1",
|
||||||
"resolved": "https://registry.npmjs.org/execa/-/execa-9.4.1.tgz",
|
"resolved": "https://registry.npmjs.org/execa/-/execa-9.5.1.tgz",
|
||||||
"integrity": "sha512-5eo/BRqZm3GYce+1jqX/tJ7duA2AnE39i88fuedNFUV8XxGxUpF3aWkBRfbUcjV49gCkvS/pzc0YrCPhaIewdg==",
|
"integrity": "sha512-QY5PPtSonnGwhhHDNI7+3RvY285c7iuJFFB+lU+oEzMY/gEGJ808owqJsrr8Otd1E/x07po1LkUBmdAc5duPAg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@sindresorhus/merge-streams": "^4.0.0",
|
"@sindresorhus/merge-streams": "^4.0.0",
|
||||||
"cross-spawn": "^7.0.3",
|
"cross-spawn": "^7.0.3",
|
||||||
@@ -7608,6 +7625,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz",
|
||||||
"integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==",
|
"integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@sec-ant/readable-stream": "^0.4.1",
|
"@sec-ant/readable-stream": "^0.4.1",
|
||||||
"is-stream": "^4.0.1"
|
"is-stream": "^4.0.1"
|
||||||
@@ -7624,6 +7642,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.0.tgz",
|
||||||
"integrity": "sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==",
|
"integrity": "sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "Apache-2.0",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18.18.0"
|
"node": ">=18.18.0"
|
||||||
}
|
}
|
||||||
@@ -7633,6 +7652,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz",
|
||||||
"integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==",
|
"integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
@@ -7645,6 +7665,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz",
|
||||||
"integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==",
|
"integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"path-key": "^4.0.0",
|
"path-key": "^4.0.0",
|
||||||
"unicorn-magic": "^0.3.0"
|
"unicorn-magic": "^0.3.0"
|
||||||
@@ -7661,6 +7682,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
|
||||||
"integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
|
"integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
@@ -7673,6 +7695,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
||||||
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "ISC",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=14"
|
"node": ">=14"
|
||||||
},
|
},
|
||||||
@@ -7685,6 +7708,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz",
|
||||||
"integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==",
|
"integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
@@ -7697,6 +7721,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz",
|
||||||
"integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==",
|
"integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
@@ -8454,7 +8479,8 @@
|
|||||||
"version": "0.0.3",
|
"version": "0.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
|
||||||
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
|
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
|
||||||
"dev": true
|
"dev": true,
|
||||||
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/traverse": {
|
"node_modules/traverse": {
|
||||||
"version": "0.6.9",
|
"version": "0.6.9",
|
||||||
@@ -8681,6 +8707,7 @@
|
|||||||
"https://github.com/sponsors/broofa",
|
"https://github.com/sponsors/broofa",
|
||||||
"https://github.com/sponsors/ctavan"
|
"https://github.com/sponsors/ctavan"
|
||||||
],
|
],
|
||||||
|
"license": "MIT",
|
||||||
"bin": {
|
"bin": {
|
||||||
"uuid": "dist/bin/uuid"
|
"uuid": "dist/bin/uuid"
|
||||||
}
|
}
|
||||||
@@ -8699,13 +8726,15 @@
|
|||||||
"version": "3.0.1",
|
"version": "3.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
|
||||||
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
|
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
|
||||||
"dev": true
|
"dev": true,
|
||||||
|
"license": "BSD-2-Clause"
|
||||||
},
|
},
|
||||||
"node_modules/whatwg-url": {
|
"node_modules/whatwg-url": {
|
||||||
"version": "5.0.0",
|
"version": "5.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
|
||||||
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
|
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"tr46": "~0.0.3",
|
"tr46": "~0.0.3",
|
||||||
"webidl-conversions": "^3.0.0"
|
"webidl-conversions": "^3.0.0"
|
||||||
@@ -8842,10 +8871,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/yaml": {
|
"node_modules/yaml": {
|
||||||
"version": "2.6.0",
|
"version": "2.6.1",
|
||||||
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.1.tgz",
|
||||||
"integrity": "sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==",
|
"integrity": "sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "ISC",
|
||||||
"bin": {
|
"bin": {
|
||||||
"yaml": "bin.mjs"
|
"yaml": "bin.mjs"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"@semantic-release/changelog": "^6.0.3",
|
"@semantic-release/changelog": "^6.0.3",
|
||||||
"@semantic-release/exec": "^6.0.3",
|
"@semantic-release/exec": "^6.0.3",
|
||||||
"@semantic-release/git": "^10.0.1",
|
"@semantic-release/git": "^10.0.1",
|
||||||
"semantic-release": "^24.1.3",
|
"semantic-release": "^24.2.0",
|
||||||
"semantic-release-pub": "^0.8.29"
|
"semantic-release-pub": "^0.9.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
342
pubspec.lock
342
pubspec.lock
@@ -5,23 +5,23 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: _fe_analyzer_shared
|
name: _fe_analyzer_shared
|
||||||
sha256: f256b0c0ba6c7577c15e2e4e114755640a875e885099367bf6e012b19314c834
|
sha256: "16e298750b6d0af7ce8a3ba7c18c69c3785d11b15ec83f6dcd0ad2a0009b3cab"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "72.0.0"
|
version: "76.0.0"
|
||||||
_macros:
|
_macros:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description: dart
|
description: dart
|
||||||
source: sdk
|
source: sdk
|
||||||
version: "0.3.2"
|
version: "0.3.3"
|
||||||
analyzer:
|
analyzer:
|
||||||
dependency: "direct dev"
|
dependency: "direct dev"
|
||||||
description:
|
description:
|
||||||
name: analyzer
|
name: analyzer
|
||||||
sha256: b652861553cd3990d8ed361f7979dc6d7053a9ac8843fa73820ab68ce5410139
|
sha256: "1f14db053a8c23e260789e9b0980fa27f2680dd640932cae5e1137cce0e46e1e"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "6.7.0"
|
version: "6.11.0"
|
||||||
animations:
|
animations:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -34,10 +34,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: args
|
name: args
|
||||||
sha256: "7cf60b9f0cc88203c5a190b4cd62a99feea42759a7fa695010eb5de1c0b2252a"
|
sha256: bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.5.0"
|
version: "2.6.0"
|
||||||
async:
|
async:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -58,50 +58,50 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: build
|
name: build
|
||||||
sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0"
|
sha256: cef23f1eda9b57566c81e2133d196f8e3df48f244b317368d65c5943d91148f0
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.4.1"
|
version: "2.4.2"
|
||||||
build_config:
|
build_config:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: build_config
|
name: build_config
|
||||||
sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1
|
sha256: "4ae2de3e1e67ea270081eaee972e1bd8f027d459f249e0f1186730784c2e7e33"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.1.1"
|
version: "1.1.2"
|
||||||
build_daemon:
|
build_daemon:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: build_daemon
|
name: build_daemon
|
||||||
sha256: "79b2aef6ac2ed00046867ed354c88778c9c0f029df8a20fe10b5436826721ef9"
|
sha256: "294a2edaf4814a378725bfe6358210196f5ea37af89ecd81bfa32960113d4948"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "4.0.2"
|
version: "4.0.3"
|
||||||
build_resolvers:
|
build_resolvers:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: build_resolvers
|
name: build_resolvers
|
||||||
sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a"
|
sha256: "99d3980049739a985cf9b21f30881f46db3ebc62c5b8d5e60e27440876b1ba1e"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.4.2"
|
version: "2.4.3"
|
||||||
build_runner:
|
build_runner:
|
||||||
dependency: "direct dev"
|
dependency: "direct dev"
|
||||||
description:
|
description:
|
||||||
name: build_runner
|
name: build_runner
|
||||||
sha256: "028819cfb90051c6b5440c7e574d1896f8037e3c96cf17aaeb054c9311cfbf4d"
|
sha256: "74691599a5bc750dc96a6b4bfd48f7d9d66453eab04c7f4063134800d6a5c573"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.4.13"
|
version: "2.4.14"
|
||||||
build_runner_core:
|
build_runner_core:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: build_runner_core
|
name: build_runner_core
|
||||||
sha256: f8126682b87a7282a339b871298cc12009cb67109cfa1614d6436fb0289193e0
|
sha256: "22e3aa1c80e0ada3722fe5b63fd43d9c8990759d0a2cf489c8c5d7b2bdebc021"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "7.3.2"
|
version: "8.0.0"
|
||||||
built_collection:
|
built_collection:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -114,10 +114,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: built_value
|
name: built_value
|
||||||
sha256: c7913a9737ee4007efedaffc968c049fd0f3d0e49109e778edc10de9426005cb
|
sha256: "28a712df2576b63c6c005c465989a348604960c0958d28be5303ba9baa841ac2"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "8.9.2"
|
version: "8.9.3"
|
||||||
characters:
|
characters:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -146,26 +146,26 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: code_builder
|
name: code_builder
|
||||||
sha256: f692079e25e7869c14132d39f223f8eec9830eb76131925143b2129c4bb01b37
|
sha256: "0ec10bf4a89e4c613960bf1e8b42c64127021740fb21640c29c909826a5eea3e"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "4.10.0"
|
version: "4.10.1"
|
||||||
collection:
|
collection:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: collection
|
name: collection
|
||||||
sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a
|
sha256: a1ace0a119f20aabc852d165077c036cd864315bd99b7eaa10a60100341941bf
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.18.0"
|
version: "1.19.0"
|
||||||
connectivity_plus:
|
connectivity_plus:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: connectivity_plus
|
name: connectivity_plus
|
||||||
sha256: "2056db5241f96cdc0126bd94459fc4cdc13876753768fc7a31c425e50a7177d0"
|
sha256: e0817759ec6d2d8e57eb234e6e57d2173931367a865850c7acea40d4b4f9c27d
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "6.0.5"
|
version: "6.1.1"
|
||||||
connectivity_plus_platform_interface:
|
connectivity_plus_platform_interface:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -178,10 +178,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: convert
|
name: convert
|
||||||
sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592"
|
sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.1.1"
|
version: "3.1.2"
|
||||||
cross_file:
|
cross_file:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -194,10 +194,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: crypto
|
name: crypto
|
||||||
sha256: ec30d999af904f33454ba22ed9a86162b35e52b44ac4807d1d93c288041d7d27
|
sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.0.5"
|
version: "3.0.6"
|
||||||
csv:
|
csv:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -243,10 +243,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: device_info_plus_platform_interface
|
name: device_info_plus_platform_interface
|
||||||
sha256: "282d3cf731045a2feb66abfe61bbc40870ae50a3ed10a4d3d217556c35c8c2ba"
|
sha256: "0b04e02b30791224b31969eb1b50d723498f402971bff3630bca2ba839bd1ed2"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "7.0.1"
|
version: "7.0.2"
|
||||||
dio:
|
dio:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -259,10 +259,10 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: dio_cache_interceptor
|
name: dio_cache_interceptor
|
||||||
sha256: fb7905c0d12075d8786a6b63bffd64ae062d053f682cfaf28d145a2686507308
|
sha256: "1346705a2057c265014d7696e3e2318b560bfb00b484dac7f9b01e2ceaebb07d"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.5.0"
|
version: "3.5.1"
|
||||||
dio_web_adapter:
|
dio_web_adapter:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -315,26 +315,26 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: file
|
name: file
|
||||||
sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c"
|
sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "7.0.0"
|
version: "7.0.1"
|
||||||
file_picker:
|
file_picker:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: file_picker
|
name: file_picker
|
||||||
sha256: "167bb619cdddaa10ef2907609feb8a79c16dfa479d3afaf960f8e223f754bf12"
|
sha256: c2376a6aae82358a9f9ccdd7d1f4006d08faa39a2767cce01031d9f593a8bd3b
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "8.1.2"
|
version: "8.1.6"
|
||||||
fixnum:
|
fixnum:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: fixnum
|
name: fixnum
|
||||||
sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1"
|
sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.1.0"
|
version: "1.1.1"
|
||||||
flutter:
|
flutter:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description: flutter
|
description: flutter
|
||||||
@@ -376,26 +376,26 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: flutter_local_notifications
|
name: flutter_local_notifications
|
||||||
sha256: "49eeef364fddb71515bc78d5a8c51435a68bccd6e4d68e25a942c5e47761ae71"
|
sha256: ef41ae901e7529e52934feba19ed82827b11baa67336829564aeab3129460610
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "17.2.3"
|
version: "18.0.1"
|
||||||
flutter_local_notifications_linux:
|
flutter_local_notifications_linux:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: flutter_local_notifications_linux
|
name: flutter_local_notifications_linux
|
||||||
sha256: c49bd06165cad9beeb79090b18cd1eb0296f4bf4b23b84426e37dd7c027fc3af
|
sha256: "8f685642876742c941b29c32030f6f4f6dacd0e4eaecb3efbb187d6a3812ca01"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "4.0.1"
|
version: "5.0.0"
|
||||||
flutter_local_notifications_platform_interface:
|
flutter_local_notifications_platform_interface:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: flutter_local_notifications_platform_interface
|
name: flutter_local_notifications_platform_interface
|
||||||
sha256: "85f8d07fe708c1bdcf45037f2c0109753b26ae077e9d9e899d55971711a4ea66"
|
sha256: "6c5b83c86bf819cdb177a9247a3722067dd8cc6313827ce7c77a4b238a26fd52"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "7.2.0"
|
version: "8.0.0"
|
||||||
flutter_localizations:
|
flutter_localizations:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description: flutter
|
description: flutter
|
||||||
@@ -405,18 +405,18 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: flutter_markdown
|
name: flutter_markdown
|
||||||
sha256: e17575ca576a34b46c58c91f9948891117a1bd97815d2e661813c7f90c647a78
|
sha256: "255b00afa1a7bad19727da6a7780cf3db6c3c12e68d302d85e0ff1fdf173db9e"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.7.3+2"
|
version: "0.7.4+3"
|
||||||
flutter_plugin_android_lifecycle:
|
flutter_plugin_android_lifecycle:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: flutter_plugin_android_lifecycle
|
name: flutter_plugin_android_lifecycle
|
||||||
sha256: "9ee02950848f61c4129af3d6ec84a1cfc0e47931abc746b03e7a3bc3e8ff6eda"
|
sha256: "615a505aef59b151b46bbeef55b36ce2b6ed299d160c51d84281946f0aa0ce0e"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.0.22"
|
version: "2.0.24"
|
||||||
flutter_test:
|
flutter_test:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description: flutter
|
description: flutter
|
||||||
@@ -431,18 +431,18 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: fluttertoast
|
name: fluttertoast
|
||||||
sha256: "95f349437aeebe524ef7d6c9bde3e6b4772717cf46a0eb6a3ceaddc740b297cc"
|
sha256: "24467dc20bbe49fd63e57d8e190798c4d22cbbdac30e54209d153a15273721d1"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "8.2.8"
|
version: "8.2.10"
|
||||||
font_awesome_flutter:
|
font_awesome_flutter:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: font_awesome_flutter
|
name: font_awesome_flutter
|
||||||
sha256: "275ff26905134bcb59417cf60ad979136f1f8257f2f449914b2c3e05bbb4cd6f"
|
sha256: d3a89184101baec7f4600d58840a764d2ef760fe1c5a20ef9e6b0e9b24a07a3a
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "10.7.0"
|
version: "10.8.0"
|
||||||
freezed_annotation:
|
freezed_annotation:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -471,10 +471,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: get_it
|
name: get_it
|
||||||
sha256: d85128a5dae4ea777324730dc65edd9c9f43155c109d5cc0a69cab74139fbac1
|
sha256: f126a3e286b7f5b578bf436d5592968706c4c1de28a228b870ce375d9f743103
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "7.7.0"
|
version: "8.0.3"
|
||||||
glob:
|
glob:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -511,18 +511,18 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: http_multi_server
|
name: http_multi_server
|
||||||
sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b"
|
sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.2.1"
|
version: "3.2.2"
|
||||||
http_parser:
|
http_parser:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: http_parser
|
name: http_parser
|
||||||
sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b"
|
sha256: "76d306a1c3afb33fe82e2bbacad62a61f409b5634c915fceb0d799de1a913360"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "4.0.2"
|
version: "4.1.1"
|
||||||
injectable:
|
injectable:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -551,10 +551,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: io
|
name: io
|
||||||
sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e"
|
sha256: dfd5a80599cf0165756e3181807ed3e77daf6dd4137caaad72d0b7931597650b
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.0.4"
|
version: "1.0.5"
|
||||||
js:
|
js:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -583,10 +583,10 @@ packages:
|
|||||||
dependency: "direct dev"
|
dependency: "direct dev"
|
||||||
description:
|
description:
|
||||||
name: json_serializable
|
name: json_serializable
|
||||||
sha256: ea1432d167339ea9b5bb153f0571d0039607a873d6e04e0117af043f14a1fd4b
|
sha256: c2fcb3920cf2b6ae6845954186420fca40bc0a8abcc84903b7801f17d7050d7c
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "6.8.0"
|
version: "6.9.0"
|
||||||
language_code:
|
language_code:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -599,18 +599,18 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: leak_tracker
|
name: leak_tracker
|
||||||
sha256: "3f87a60e8c63aecc975dda1ceedbc8f24de75f09e4856ea27daf8958f2f0ce05"
|
sha256: "7bb2830ebd849694d1ec25bf1f44582d6ac531a57a365a803a6034ff751d2d06"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "10.0.5"
|
version: "10.0.7"
|
||||||
leak_tracker_flutter_testing:
|
leak_tracker_flutter_testing:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: leak_tracker_flutter_testing
|
name: leak_tracker_flutter_testing
|
||||||
sha256: "932549fb305594d82d7183ecd9fa93463e9914e1b67cacc34bc40906594a1806"
|
sha256: "9491a714cca3667b60b5c420da8217e6de0d1ba7a5ec322fab01758f6998f379"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.0.5"
|
version: "3.0.8"
|
||||||
leak_tracker_testing:
|
leak_tracker_testing:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -623,10 +623,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: lints
|
name: lints
|
||||||
sha256: "3315600f3fb3b135be672bf4a178c55f274bebe368325ae18462c89ac1e3b413"
|
sha256: "4a16b3f03741e1252fda5de3ce712666d010ba2122f8e912c94f9f7b90e1a4c3"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "5.0.0"
|
version: "5.1.0"
|
||||||
logcat:
|
logcat:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -648,18 +648,18 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: logging
|
name: logging
|
||||||
sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340"
|
sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.2.0"
|
version: "1.3.0"
|
||||||
macros:
|
macros:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: macros
|
name: macros
|
||||||
sha256: "0acaed5d6b7eab89f63350bccd82119e6c602df0f391260d0e32b5e23db79536"
|
sha256: "1d9e801cd66f7ea3663c45fc708450db1fa57f988142c64289142c9b7ee80656"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.1.2-main.4"
|
version: "0.1.3-main.0"
|
||||||
markdown:
|
markdown:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -696,10 +696,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: mime
|
name: mime
|
||||||
sha256: "801fd0b26f14a4a58ccb09d5892c3fbdeff209594300a542492cf13fba9d247a"
|
sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.0.6"
|
version: "2.0.0"
|
||||||
nested:
|
nested:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -720,26 +720,26 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: package_config
|
name: package_config
|
||||||
sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd"
|
sha256: "92d4488434b520a62570293fbd33bb556c7d49230791c1b4bbd973baf6d2dc67"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.0"
|
version: "2.1.1"
|
||||||
package_info_plus:
|
package_info_plus:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: package_info_plus
|
name: package_info_plus
|
||||||
sha256: a75164ade98cb7d24cfd0a13c6408927c6b217fa60dee5a7ff5c116a58f28918
|
sha256: "70c421fe9d9cc1a9a7f3b05ae56befd469fe4f8daa3b484823141a55442d858d"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "8.0.2"
|
version: "8.1.2"
|
||||||
package_info_plus_platform_interface:
|
package_info_plus_platform_interface:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: package_info_plus_platform_interface
|
name: package_info_plus_platform_interface
|
||||||
sha256: ac1f4a4847f1ade8e6a87d1f39f5d7c67490738642e2542f559ec38c37489a66
|
sha256: a5ef9986efc7bf772f2696183a3992615baa76c1ffb1189318dd8803778fb05b
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.0.1"
|
version: "3.0.2"
|
||||||
path:
|
path:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -752,26 +752,26 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: path_provider
|
name: path_provider
|
||||||
sha256: fec0d61223fba3154d87759e3cc27fe2c8dc498f6386c6d6fc80d1afdd1bf378
|
sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.4"
|
version: "2.1.5"
|
||||||
path_provider_android:
|
path_provider_android:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: path_provider_android
|
name: path_provider_android
|
||||||
sha256: "6f01f8e37ec30b07bc424b4deabac37cacb1bc7e2e515ad74486039918a37eb7"
|
sha256: "4adf4fd5423ec60a29506c76581bc05854c55e3a0b72d35bb28d661c9686edf2"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.2.10"
|
version: "2.2.15"
|
||||||
path_provider_foundation:
|
path_provider_foundation:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: path_provider_foundation
|
name: path_provider_foundation
|
||||||
sha256: f234384a3fdd67f989b4d54a5d73ca2a6c422fa55ae694381ae0f4375cd1ea16
|
sha256: "4843174df4d288f5e29185bd6e72a6fbdf5a4a4602717eed565497429f179942"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.4.0"
|
version: "2.4.1"
|
||||||
path_provider_linux:
|
path_provider_linux:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -808,10 +808,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: permission_handler_android
|
name: permission_handler_android
|
||||||
sha256: "76e4ab092c1b240d31177bb64d2b0bea43f43d0e23541ec866151b9f7b2490fa"
|
sha256: "71bbecfee799e65aff7c744761a57e817e73b738fedf62ab7afd5593da21f9f1"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "12.0.12"
|
version: "12.0.13"
|
||||||
permission_handler_apple:
|
permission_handler_apple:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -824,10 +824,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: permission_handler_html
|
name: permission_handler_html
|
||||||
sha256: af26edbbb1f2674af65a8f4b56e1a6f526156bc273d0e65dd8075fab51c78851
|
sha256: "38f000e83355abb3392140f6bc3030660cfaef189e1f87824facb76300b4ff24"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.1.3+2"
|
version: "0.1.3+5"
|
||||||
permission_handler_platform_interface:
|
permission_handler_platform_interface:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -856,10 +856,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: platform
|
name: platform
|
||||||
sha256: "9b71283fc13df574056616011fb138fd3b793ea47cc509c189a6c3fa5f8a1a65"
|
sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.1.5"
|
version: "3.1.6"
|
||||||
plugin_platform_interface:
|
plugin_platform_interface:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -888,10 +888,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: pub_semver
|
name: pub_semver
|
||||||
sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c"
|
sha256: "7b3cfbf654f3edd0c6298ecd5be782ce997ddf0e00531b9464b55245185bbbbd"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.4"
|
version: "2.1.5"
|
||||||
pubspec_parse:
|
pubspec_parse:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -938,42 +938,42 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: share_plus
|
name: share_plus
|
||||||
sha256: "468c43f285207c84bcabf5737f33b914ceb8eb38398b91e5e3ad1698d1b72a52"
|
sha256: "6327c3f233729374d0abaafd61f6846115b2a481b4feddd8534211dc10659400"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "10.0.2"
|
version: "10.1.3"
|
||||||
share_plus_platform_interface:
|
share_plus_platform_interface:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: share_plus_platform_interface
|
name: share_plus_platform_interface
|
||||||
sha256: "6ababf341050edff57da8b6990f11f4e99eaba837865e2e6defe16d039619db5"
|
sha256: cc012a23fc2d479854e6c80150696c4a5f5bb62cb89af4de1c505cf78d0a5d0b
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "5.0.0"
|
version: "5.0.2"
|
||||||
shared_preferences:
|
shared_preferences:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: shared_preferences
|
name: shared_preferences
|
||||||
sha256: "746e5369a43170c25816cc472ee016d3a66bc13fcf430c0bc41ad7b4b2922051"
|
sha256: "3c7e73920c694a436afaf65ab60ce3453d91f84208d761fbd83fc21182134d93"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.3.2"
|
version: "2.3.4"
|
||||||
shared_preferences_android:
|
shared_preferences_android:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: shared_preferences_android
|
name: shared_preferences_android
|
||||||
sha256: "480ba4345773f56acda9abf5f50bd966f581dac5d514e5fc4a18c62976bbba7e"
|
sha256: "02a7d8a9ef346c9af715811b01fbd8e27845ad2c41148eefd31321471b41863d"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.3.2"
|
version: "2.4.0"
|
||||||
shared_preferences_foundation:
|
shared_preferences_foundation:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: shared_preferences_foundation
|
name: shared_preferences_foundation
|
||||||
sha256: c4b35f6cb8f63c147312c054ce7c2254c8066745125264f0c88739c417fc9d9f
|
sha256: "6a52cfcdaeac77cad8c97b539ff688ccfc458c007b4db12be584fbe5c0e49e03"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.5.2"
|
version: "2.5.4"
|
||||||
shared_preferences_linux:
|
shared_preferences_linux:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -1010,18 +1010,18 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: shelf
|
name: shelf
|
||||||
sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4
|
sha256: e7dd780a7ffb623c57850b33f43309312fc863fb6aa3d276a754bb299839ef12
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.4.1"
|
version: "1.4.2"
|
||||||
shelf_web_socket:
|
shelf_web_socket:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: shelf_web_socket
|
name: shelf_web_socket
|
||||||
sha256: "073c147238594ecd0d193f3456a5fe91c4b0abbcc68bf5cd95b36c4e194ac611"
|
sha256: cc36c297b52866d203dbf9332263c94becc2fe0ceaa9681d07b6ef9807023b67
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.0.0"
|
version: "2.0.1"
|
||||||
skeletons:
|
skeletons:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -1035,7 +1035,7 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description: flutter
|
description: flutter
|
||||||
source: sdk
|
source: sdk
|
||||||
version: "0.0.99"
|
version: "0.0.0"
|
||||||
slang:
|
slang:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -1064,10 +1064,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: source_helper
|
name: source_helper
|
||||||
sha256: "6adebc0006c37dd63fe05bca0a929b99f06402fc95aa35bf36d67f5c06de01fd"
|
sha256: "86d247119aedce8e63f4751bd9626fc9613255935558447569ad42f9f5b48b3c"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.3.4"
|
version: "1.3.5"
|
||||||
source_span:
|
source_span:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -1088,34 +1088,58 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: sqflite
|
name: sqflite
|
||||||
sha256: ff5a2436ef8ebdfda748fbfe957f9981524cb5ff11e7bafa8c42771840e8a788
|
sha256: "2d7299468485dca85efeeadf5d38986909c5eb0cd71fd3db2c2f000e6c9454bb"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.3.3+2"
|
version: "2.4.1"
|
||||||
|
sqflite_android:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: sqflite_android
|
||||||
|
sha256: "78f489aab276260cdd26676d2169446c7ecd3484bbd5fead4ca14f3ed4dd9ee3"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "2.4.0"
|
||||||
sqflite_common:
|
sqflite_common:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: sqflite_common
|
name: sqflite_common
|
||||||
sha256: "2d8e607db72e9cb7748c9c6e739e2c9618320a5517de693d5a24609c4671b1a4"
|
sha256: "761b9740ecbd4d3e66b8916d784e581861fd3c3553eda85e167bc49fdb68f709"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.5.4+4"
|
version: "2.5.4+6"
|
||||||
|
sqflite_darwin:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: sqflite_darwin
|
||||||
|
sha256: "96a698e2bc82bd770a4d6aab00b42396a7c63d9e33513a56945cbccb594c2474"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "2.4.1"
|
||||||
|
sqflite_platform_interface:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: sqflite_platform_interface
|
||||||
|
sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "2.4.0"
|
||||||
stack_trace:
|
stack_trace:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: stack_trace
|
name: stack_trace
|
||||||
sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b"
|
sha256: "9f47fd3630d76be3ab26f0ee06d213679aa425996925ff3feffdec504931c377"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.11.1"
|
version: "1.12.0"
|
||||||
stacked:
|
stacked:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: stacked
|
name: stacked
|
||||||
sha256: ed19ecdc2dcc682b9be9c7e34646e603c0f770437a914b15c7d2d13391c92a09
|
sha256: fe77da8b5dae6488a0caa0feea59c4f79a0fb11cd88a211f87f653411a4c142b
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.4.3"
|
version: "3.4.4"
|
||||||
stacked_generator:
|
stacked_generator:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -1128,18 +1152,18 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: stacked_services
|
name: stacked_services
|
||||||
sha256: "01c5b1875d383b39dce780ee0a8ce4de99f2500d52d2e26676e787fd163e36bd"
|
sha256: a70c5c86f89a9258139ff174bf045a527099ea8552f8497ebb0b755469841bb4
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.5.1"
|
version: "1.6.0"
|
||||||
stacked_shared:
|
stacked_shared:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: stacked_shared
|
name: stacked_shared
|
||||||
sha256: "26e11dcfe23df81d565d0180eb5bcf4742efed066ba3328623b458f21a82b346"
|
sha256: "3d69b34d87422b78a7e5123681d3f4bcdd79757170454933f68795c54812d003"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.4.1"
|
version: "1.4.2"
|
||||||
stream_channel:
|
stream_channel:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -1152,18 +1176,18 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: stream_transform
|
name: stream_transform
|
||||||
sha256: "14a00e794c7c11aa145a170587321aedce29769c08d7f58b1d141da75e3b1c6f"
|
sha256: ad47125e588cfd37a9a7f86c7d6356dde8dfe89d071d293f80ca9e9273a33871
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.0"
|
version: "2.1.1"
|
||||||
string_scanner:
|
string_scanner:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: string_scanner
|
name: string_scanner
|
||||||
sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde"
|
sha256: "688af5ed3402a4bde5b3a6c15fd768dbf2621a614950b17f04626c431ab3c4c3"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.2.0"
|
version: "1.3.0"
|
||||||
synchronized:
|
synchronized:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -1184,10 +1208,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: test_api
|
name: test_api
|
||||||
sha256: "5b8a98dafc4d5c4c9c72d8b31ab2b23fc13422348d2997120294d3bac86b4ddb"
|
sha256: "664d3a9a64782fcdeb83ce9c6b39e78fd2971d4e37827b9b06c3aa1edc5e760c"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.7.2"
|
version: "0.7.3"
|
||||||
timeago:
|
timeago:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -1200,26 +1224,26 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: timezone
|
name: timezone
|
||||||
sha256: "2236ec079a174ce07434e89fcd3fcda430025eb7692244139a9cf54fdcf1fc7d"
|
sha256: ffc9d5f4d1193534ef051f9254063fa53d588609418c84299956c3db9383587d
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.9.4"
|
version: "0.10.0"
|
||||||
timing:
|
timing:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: timing
|
name: timing
|
||||||
sha256: "70a3b636575d4163c477e6de42f247a23b315ae20e86442bebe32d3cabf61c32"
|
sha256: "62ee18aca144e4a9f29d212f5a4c6a053be252b895ab14b5821996cff4ed90fe"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.0.1"
|
version: "1.0.2"
|
||||||
typed_data:
|
typed_data:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: typed_data
|
name: typed_data
|
||||||
sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c
|
sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.3.2"
|
version: "1.4.0"
|
||||||
universal_io:
|
universal_io:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -1232,42 +1256,42 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: url_launcher
|
name: url_launcher
|
||||||
sha256: "21b704ce5fa560ea9f3b525b43601c678728ba46725bab9b01187b4831377ed3"
|
sha256: "9d06212b1362abc2f0f0d78e6f09f726608c74e3b9462e8368bb03314aa8d603"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "6.3.0"
|
version: "6.3.1"
|
||||||
url_launcher_android:
|
url_launcher_android:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: url_launcher_android
|
name: url_launcher_android
|
||||||
sha256: e35a698ac302dd68e41f73250bd9517fe3ab5fa4f18fe4647a0872db61bacbab
|
sha256: "6fc2f56536ee873eeb867ad176ae15f304ccccc357848b351f6f0d8d4a40d193"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "6.3.10"
|
version: "6.3.14"
|
||||||
url_launcher_ios:
|
url_launcher_ios:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: url_launcher_ios
|
name: url_launcher_ios
|
||||||
sha256: e43b677296fadce447e987a2f519dcf5f6d1e527dc35d01ffab4fff5b8a7063e
|
sha256: "16a513b6c12bb419304e72ea0ae2ab4fed569920d1c7cb850263fe3acc824626"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "6.3.1"
|
version: "6.3.2"
|
||||||
url_launcher_linux:
|
url_launcher_linux:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: url_launcher_linux
|
name: url_launcher_linux
|
||||||
sha256: e2b9622b4007f97f504cd64c0128309dfb978ae66adbe944125ed9e1750f06af
|
sha256: "4e9ba368772369e3e08f231d2301b4ef72b9ff87c31192ef471b380ef29a4935"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.2.0"
|
version: "3.2.1"
|
||||||
url_launcher_macos:
|
url_launcher_macos:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: url_launcher_macos
|
name: url_launcher_macos
|
||||||
sha256: "769549c999acdb42b8bcfa7c43d72bf79a382ca7441ab18a808e101149daf672"
|
sha256: "17ba2000b847f334f16626a574c702b196723af2a289e7a93ffcb79acff855c2"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.2.1"
|
version: "3.2.2"
|
||||||
url_launcher_platform_interface:
|
url_launcher_platform_interface:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -1288,10 +1312,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: url_launcher_windows
|
name: url_launcher_windows
|
||||||
sha256: "49c10f879746271804767cb45551ec5592cdab00ee105c06dddde1a98f73b185"
|
sha256: "44cf3aabcedde30f2dba119a9dea3b0f2672fbe6fa96e85536251d678216b3c4"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.1.2"
|
version: "3.1.3"
|
||||||
uuid:
|
uuid:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -1312,10 +1336,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: vm_service
|
name: vm_service
|
||||||
sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
|
sha256: f6be3ed8bd01289b34d679c2b62226f63c0e69f9fd2e50a6b3c1c729a961041b
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "14.2.5"
|
version: "14.3.0"
|
||||||
wakelock_plus:
|
wakelock_plus:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -1336,10 +1360,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: watcher
|
name: watcher
|
||||||
sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8"
|
sha256: "69da27e49efa56a15f8afe8f4438c4ec02eff0a117df1b22ea4aad194fe1c104"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.1.0"
|
version: "1.1.1"
|
||||||
web:
|
web:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -1368,10 +1392,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: win32
|
name: win32
|
||||||
sha256: "4d45dc9069dba4619dc0ebd93c7cec5e66d8482cb625a370ac806dcc8165f2ec"
|
sha256: "8b338d4486ab3fbc0ba0db9f9b4f5239b6697fcee427939a40e720cbb9ee0a69"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "5.5.5"
|
version: "5.9.0"
|
||||||
win32_registry:
|
win32_registry:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -1384,10 +1408,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: xdg_directories
|
name: xdg_directories
|
||||||
sha256: faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d
|
sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.0.4"
|
version: "1.1.0"
|
||||||
xml:
|
xml:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -1405,5 +1429,5 @@ packages:
|
|||||||
source: hosted
|
source: hosted
|
||||||
version: "3.1.2"
|
version: "3.1.2"
|
||||||
sdks:
|
sdks:
|
||||||
dart: ">=3.5.3 <4.0.0"
|
dart: ">=3.6.0 <4.0.0"
|
||||||
flutter: ">=3.24.0"
|
flutter: ">=3.24.0"
|
||||||
|
|||||||
36
pubspec.yaml
36
pubspec.yaml
@@ -4,48 +4,48 @@ homepage: https://revanced.app
|
|||||||
|
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
|
|
||||||
version: 1.23.0-dev.4+101800044
|
version: 1.23.3-dev.1+101800051
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.5.3
|
sdk: ^3.5.3
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
animations: ^2.0.11
|
animations: ^2.0.11
|
||||||
collection: ^1.18.0
|
collection: ^1.19.0
|
||||||
connectivity_plus: ^6.0.3
|
connectivity_plus: ^6.1.0
|
||||||
device_apps:
|
device_apps:
|
||||||
git:
|
git:
|
||||||
url: https://github.com/ponces/flutter_plugin_device_apps
|
url: https://github.com/ponces/flutter_plugin_device_apps
|
||||||
ref: 0609662324b9e00931fccfa87e9e1b00b7610907
|
ref: 0609662324b9e00931fccfa87e9e1b00b7610907
|
||||||
device_info_plus: ^10.1.0
|
device_info_plus: ^10.1.2
|
||||||
dio: ^5.4.3+1
|
dio: ^5.4.3+1
|
||||||
dio_cache_interceptor: ^3.5.0
|
dio_cache_interceptor: ^3.5.0
|
||||||
dynamic_color: ^1.7.0
|
dynamic_color: ^1.7.0
|
||||||
dynamic_themes: ^1.1.0
|
dynamic_themes: ^1.1.0
|
||||||
expandable: ^5.0.1
|
expandable: ^5.0.1
|
||||||
file_picker: ^8.0.5
|
file_picker: ^8.1.4
|
||||||
flutter:
|
flutter:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
flutter_background: ^1.3.0+1
|
flutter_background: ^1.3.0+1
|
||||||
flutter_cache_manager: ^3.3.2
|
flutter_cache_manager: ^3.3.2
|
||||||
flutter_file_dialog: ^3.0.2
|
flutter_file_dialog: ^3.0.2
|
||||||
flutter_local_notifications: ^17.1.0
|
flutter_local_notifications: ^18.0.1
|
||||||
flutter_localizations:
|
flutter_localizations:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
flutter_markdown: ^0.7.3
|
flutter_markdown: ^0.7.4+3
|
||||||
fluttertoast: ^8.2.5
|
fluttertoast: ^8.2.5
|
||||||
font_awesome_flutter: ^10.7.0
|
font_awesome_flutter: ^10.8.0
|
||||||
google_fonts: ^6.2.1
|
google_fonts: ^6.2.1
|
||||||
injectable: ^2.4.0
|
injectable: ^2.4.0
|
||||||
intl: 0.19.0
|
intl: ^0.19.0
|
||||||
json_annotation: ^4.9.0
|
json_annotation: ^4.9.0
|
||||||
language_code: ^0.5.3+2
|
language_code: ^0.5.3+2
|
||||||
logcat:
|
logcat:
|
||||||
git:
|
git:
|
||||||
url: https://github.com/BenjaminHalko/logcat
|
url: https://github.com/BenjaminHalko/logcat
|
||||||
ref: 4a6d5e0e22292c8eb160cfb9365b9ea29735fd43 # Branch: master
|
ref: 4a6d5e0e22292c8eb160cfb9365b9ea29735fd43 # Branch: master
|
||||||
package_info_plus: ^8.0.2
|
package_info_plus: ^8.1.1
|
||||||
path_provider: ^2.1.3
|
path_provider: ^2.1.5
|
||||||
permission_handler: ^11.3.1
|
permission_handler: ^11.3.1
|
||||||
root:
|
root:
|
||||||
git:
|
git:
|
||||||
@@ -55,8 +55,8 @@ dependencies:
|
|||||||
git: # remove once https://github.com/flutter-moum/flutter_screenshot_callback/pull/81 is merged
|
git: # remove once https://github.com/flutter-moum/flutter_screenshot_callback/pull/81 is merged
|
||||||
url: https://github.com/BenjaminHalko/flutter_screenshot_callback
|
url: https://github.com/BenjaminHalko/flutter_screenshot_callback
|
||||||
ref: 1a1616ac91e16cd1f3dd170a81febf27ffce3587 # Branch: master
|
ref: 1a1616ac91e16cd1f3dd170a81febf27ffce3587 # Branch: master
|
||||||
share_plus: ^10.0.2
|
share_plus: ^10.1.2
|
||||||
shared_preferences: ^2.2.3
|
shared_preferences: ^2.3.4
|
||||||
skeletons:
|
skeletons:
|
||||||
git: # remove once https://github.com/badjio/skeletons/pull/11 is merged
|
git: # remove once https://github.com/badjio/skeletons/pull/11 is merged
|
||||||
url: https://github.com/Ofceab-Studio/skeletons
|
url: https://github.com/Ofceab-Studio/skeletons
|
||||||
@@ -65,19 +65,19 @@ dependencies:
|
|||||||
slang_flutter: ^3.30.0
|
slang_flutter: ^3.30.0
|
||||||
stacked: ^3.4.2
|
stacked: ^3.4.2
|
||||||
stacked_generator: ^1.6.0
|
stacked_generator: ^1.6.0
|
||||||
stacked_services: ^1.5.0
|
stacked_services: ^1.6.0
|
||||||
synchronized: ^3.1.0+1
|
synchronized: ^3.1.0+1
|
||||||
timeago: ^3.6.1
|
timeago: ^3.6.1
|
||||||
timezone: ^0.9.3
|
timezone: ^0.10.0
|
||||||
url_launcher: ^6.2.6
|
url_launcher: ^6.3.1
|
||||||
wakelock_plus: ^1.2.4
|
wakelock_plus: ^1.2.4
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
analyzer: ^6.4.1
|
analyzer: ^6.11.0
|
||||||
build_runner: ^2.4.12
|
build_runner: ^2.4.12
|
||||||
flutter_lints: ^5.0.0
|
flutter_lints: ^5.0.0
|
||||||
injectable_generator: ^2.6.1
|
injectable_generator: ^2.6.1
|
||||||
json_serializable: ^6.8.0
|
json_serializable: ^6.9.0
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
uses-material-design: true
|
uses-material-design: true
|
||||||
|
|||||||
Reference in New Issue
Block a user