Compare commits

...

20 Commits

Author SHA1 Message Date
96a21a5564 chore(release): 1.21.0-dev.8 [skip ci]
# [1.21.0-dev.8](https://github.com/ReVanced/revanced-manager/compare/v1.21.0-dev.7...v1.21.0-dev.8) (2024-07-29)

### Bug Fixes

* Correct architecture to armeabi-v7a ([63c6412](63c6412736))
* Unable to install application regardless of preference ([c7627ce](c7627ced8e))

### Features

* Support patching on ARMv7a ([a766352](a7663524e6))
2024-07-29 17:51:14 +00:00
0b21bb9807 build: Allocate more memory 2024-07-30 00:43:25 +07:00
557ee8d472 ci: Fix accident 2024-07-30 00:22:22 +07:00
6da3751a8a ci: Don't include Slang's analyser generated file 2024-07-30 00:17:29 +07:00
cf708de005 ci: Remove deleted strings from translated file 2024-07-30 00:12:43 +07:00
b649c4539f chore: Remove all long forever deleted translated strings 2024-07-30 00:11:09 +07:00
c63342bc21 chore: Normalise all translated strings 2024-07-30 00:03:06 +07:00
9f56b277ca ci: Use Slang's Normalisation feature 2024-07-30 00:03:06 +07:00
73c92b9c72 build: Update multiple dependencies at once
Signed-off-by: validcube <pun.butrach@gmail.com>
2024-07-30 00:03:06 +07:00
c7627ced8e fix: Unable to install application regardless of preference
Signed-off-by: validcube <pun.butrach@gmail.com>
2024-07-30 00:03:06 +07:00
63c6412736 fix: Correct architecture to armeabi-v7a
Signed-off-by: validcube <pun.butrach@gmail.com>
2024-07-30 00:03:05 +07:00
a7663524e6 feat: Support patching on ARMv7a
Signed-off-by: validcube <pun.butrach@gmail.com>
2024-07-30 00:03:05 +07:00
65feb34242 chore(release): 1.21.0-dev.7 [skip ci]
# [1.21.0-dev.7](https://github.com/ReVanced/revanced-manager/compare/v1.21.0-dev.6...v1.21.0-dev.7) (2024-07-29)

### Features

* Include primary architecture in external search ([#2068](https://github.com/ReVanced/revanced-manager/issues/2068)) ([23690a9](23690a98df))
2024-07-29 16:04:12 +00:00
23690a98df feat: Include primary architecture in external search (#2068) 2024-07-29 22:56:00 +07:00
7449d4e318 docs: Link user to the latest version of app (#2077) 2024-07-25 09:27:29 +07:00
c6f9e36f4b refactor: Migrate deprecated member 2024-07-13 17:32:34 +07:00
e9cee0abe2 ci: Prefer installing NPM dependencies from lock 2024-07-13 17:04:43 +07:00
9440f23b55 chore: Remove NDK constraint (#2016)
Co-authored-by: Pun Butrach <pun.butrach@gmail.com>
2024-07-13 16:55:02 +07:00
c67b4b438c build(deps): bump flutter_markdown from 0.7.1 to 0.7.3 (#2022)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-12 14:07:16 +07:00
1bdb820aed refactor: Remove unused strings (#2010) 2024-07-11 11:28:02 +07:00
84 changed files with 372 additions and 1415 deletions

View File

@ -39,7 +39,7 @@ jobs:
flutter-version: 3.22.x
- name: Install dependencies
run: npm install
run: npm ci
- name: Get dependencies
run: flutter pub get

View File

@ -57,6 +57,9 @@ jobs:
run: |
dart pub get
dart run slang
dart run slang analyze
dart run slang clean
dart run slang normalize
flutter analyze lib/gen/strings.g.dart --no-fatal-infos --no-fatal-warnings
- name: Commit translations
@ -64,6 +67,6 @@ jobs:
git config user.name revanced-bot
git config user.email github@revanced.app
sudo chown -R $USER:$USER .git
git add assets/i18n/*.json
git commit -m "chore: Remove empty values from JSON" assets/i18n/*.json
git add assets/i18n/strings.*.json
git commit -m "chore: Remove empty values from JSON" assets/i18n/strings.*.json
git push origin HEAD:feat/translations

View File

@ -80,7 +80,7 @@ Some of the features ReVanced Manager provides are:
## 🔽 Download
You can download the most recent version of ReVanced Manager at [revanced.app/download](https://revanced.app/download) or from [GitHub releases](https://github.com/ReVanced/revanced-manager/releases).
You can download the most recent version of ReVanced Manager at [revanced.app/download](https://revanced.app/download) or from [GitHub releases](https://github.com/ReVanced/revanced-manager/releases/latest).
Learn how to use ReVanced Manager by following the [documentation](/docs).
## 📚 Everything else

View File

@ -24,7 +24,6 @@ if (flutterVersionName == null) {
android {
compileSdk 34
ndkVersion flutter.ndkVersion
compileOptions {
coreLibraryDesugaringEnabled true

View File

@ -1,4 +1,4 @@
org.gradle.jvmargs=-Xmx1536M -XX:+UseParallelGC
org.gradle.jvmargs=-Xmx4096m -XX:+UseParallelGC
org.gradle.parallel=true
org.gradle.daemon=true
org.gradle.caching=true

View File

@ -1,7 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=544c35d6bd849ae8a5ed0bcea39ba677dc40f49df7d1835561582da2009b961d
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionSha256Sum=d725d707bfabd4dfdc958c624003b3c80accc03f7037b5122c4b1d0ef15cecab
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME

View File

@ -18,7 +18,7 @@ pluginManagement {
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.4.1" apply false
id "com.android.application" version "8.5.1" apply false
id "org.jetbrains.kotlin.android" version "2.0.0" apply false
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Dismiss",
"quitButton": "Quit",
"updateButton": "Update",
"enabledLabel": "Enabled",
"disabledLabel": "Disabled",
"installed": "Installed: ${version}",
"suggested": "Suggested: ${version}",
"yesButton": "Yes",
"noButton": "No",
"warning": "Warning",
"options": "Options",
"notice": "Notice",
"noShowAgain": "Don't show this again",
"add": "Add",
@ -30,8 +26,6 @@
"lastPatchedAppSubtitle": "Last patched app",
"patchedSubtitle": "Installed apps",
"changeLaterSubtitle": "You can change this in the settings at a later time.",
"noUpdates": "No updates available",
"WIP": "Work in progress...",
"noSavedAppFound": "No app found",
"noInstallations": "No patched apps installed",
"installUpdate": "Continue to install the update?",
@ -43,32 +37,24 @@
"downloadConsentDialogTitle": "Download necessary files?",
"downloadConsentDialogText": "ReVanced Manager needs to download necessary files to work properly.",
"downloadConsentDialogText2": "This will connect you to ${url}.",
"checkUpdateDialogTitle": "Check for updates?",
"checkUpdateDialogText": "Do you want ReVanced Manager to check for updates automatically?",
"notificationTitle": "Update downloaded",
"notificationText": "Tap to install the update",
"downloadingMessage": "Downloading update...",
"downloadedMessage": "Update downloaded",
"installingMessage": "Installing update...",
"errorDownloadMessage": "Unable to download update",
"errorInstallMessage": "Unable to install update",
"noConnection": "No internet connection",
"updatesDisabled": "Updating a patched app is currently disabled. Repatch the app again."
"noConnection": "No internet connection"
},
"applicationItem": {
"infoButton": "Info"
},
"latestCommitCard": {
"loadingLabel": "Loading...",
"timeagoLabel": "${time} ago",
"patcherLabel": "Patcher: ",
"managerLabel": "Manager: ",
"updateButton": "Update Manager"
"timeagoLabel": "${time} ago"
},
"patcherView": {
"widgetTitle": "Patcher",
"patchButton": "Patch",
"armv7WarningDialogText": "Patching on ARMv7 devices is not yet supported and might fail. Continue anyways?",
"incompatibleArchWarningDialogText": "Patching on this architecture is not yet supported and might fail. Continue anyways?",
"removedPatchesWarningDialogText": "The following patches have been removed since the last time you used them.\n\n${patches}\n\nContinue anyways?",
"requiredOptionDialogText": "Some patch options have to be set."
},
@ -77,8 +63,6 @@
"widgetTitleSelected": "Selected app",
"widgetSubtitle": "No app selected",
"noAppsLabel": "No applications found",
"currentVersion": "Current",
"suggestedVersion": "Suggested",
"anyVersion": "Any version"
},
"patchSelectorCard": {
@ -122,15 +106,12 @@
"customValue": "Custom value",
"setToNull": "Set to null",
"nullValue": "This option value is currently null",
"resetOptionsTooltip": "Reset patch options",
"viewTitle": "Patch options",
"saveOptions": "Save",
"addOptions": "Add options",
"unselectPatch": "Unselect patch",
"tooltip": "More input options",
"selectFilePath": "Select file path",
"selectFolder": "Select folder",
"selectOption": "Select option",
"requiredOption": "Setting this option is required",
"unsupportedOption": "This option is not supported",
"requiredOptionNull": "The following options have to be set:\n\n${options}"
@ -143,7 +124,6 @@
"patchesChangeWarningDialogButton": "Use default selection"
},
"installerView": {
"widgetTitle": "Installer",
"installType": "Select install type",
"installTypeDescription": "Select the installation type to continue with.",
"installButton": "Install",
@ -152,7 +132,6 @@
"warning": "Disable auto updates for the patched app to avoid unexpected issues.",
"pressBackAgain": "Press back again to cancel",
"openButton": "Open",
"shareButton": "Share file",
"notificationTitle": "ReVanced Manager is patching",
"notificationText": "Tap to return to the installer",
"exportApkButtonTooltip": "Export patched APK",
@ -177,7 +156,6 @@
"dynamicThemeHint": "Enjoy an experience closer to your device",
"languageLabel": "Language",
"languageUpdated": "Language updated",
"englishOption": "English",
"sourcesLabel": "Alternative sources",
"sourcesLabelHint": "Configure the alternative sources for ReVanced Patches and ReVanced Integrations",
"sourcesIntegrationsLabel": "Integrations source",

View File

@ -4,14 +4,10 @@
"dismissButton": "تجاهل",
"quitButton": "إنهاء",
"updateButton": "تحديث",
"enabledLabel": "مفعّل",
"disabledLabel": "معطّل",
"installed": "المثبّت: ${version}",
"suggested": "المقترح: ${version}",
"yesButton": "نعم",
"noButton": "لا",
"warning": "تحذير",
"options": "الخيارات",
"notice": "تنويه",
"noShowAgain": "لا تعرض هذا مرة أخرى",
"add": "إضافة",
@ -29,8 +25,6 @@
"updatesSubtitle": "تحديثات",
"patchedSubtitle": "التطبيقات المعدلة",
"changeLaterSubtitle": "يمكنك تغيير هذا في الإعدادات في وقت لاحق.",
"noUpdates": "لا توجد تحديثات متاحة",
"WIP": "العمل قيد التنفيذ...",
"noInstallations": "لا توجد تطبيقات معدلة مثبتة",
"installUpdate": "هل تريد الاستمرار في تثبيت التحديث؟",
"updateSheetTitle": "تحديث ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "تنزيل الملفات اللازمة؟",
"downloadConsentDialogText": "يحتاج مدير ReVanced إلى تنزيل الملفات اللازمة ليعمل بشكل صحيح.",
"downloadConsentDialogText2": "سيؤدي هذا إلى توصيلك بـ ${url}.",
"checkUpdateDialogTitle": "التحقق من توفر تحديثات؟",
"checkUpdateDialogText": "هل تريد أن يقوم مدير ReVanced بالتحقق من توفر تحديثات تلقائيًا؟",
"notificationTitle": "تم تنزيل التحديث",
"notificationText": "اضغط لتثبيت التحديث",
"downloadingMessage": "جارٍ تنزيل التحديث...",
"downloadedMessage": "تم تنزيل التحديث",
"installingMessage": "جارٍ تثبيت التحديث...",
"errorDownloadMessage": "تعذر تنزيل التحديث",
"errorInstallMessage": "تعذّر تثبيت التحديث",
"noConnection": "لا يوجد اتصال بالإنترنت",
"updatesDisabled": "تحديث تطبيق تم تعديله معطل حاليًا. أعد تعديل التطبيق مرة أخرى."
"noConnection": "لا يوجد اتصال بالإنترنت"
},
"applicationItem": {
"infoButton": "معلومات"
},
"latestCommitCard": {
"loadingLabel": "جارٍ التحميل...",
"timeagoLabel": "منذ ${time}",
"patcherLabel": "المعدل: ",
"managerLabel": "المدير: ",
"updateButton": "تحديث المدير"
"timeagoLabel": "منذ ${time}"
},
"patcherView": {
"widgetTitle": "المُعَّدِّل",
"patchButton": "تعديل",
"armv7WarningDialogText": "التعديل على أجهزة ARMv7 غير مدعوم حتى الآن وقد يفشل. هل تريد المتابعة على أي حال؟",
"removedPatchesWarningDialogText": "تم إزالة التعديلات التالية منذ آخر مرة استخدمتها فيها.\n\n${patches}\n\nتابع على أي حال؟",
"requiredOptionDialogText": "يجب ضبط بعض خيارات التعديل."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "التطبيق المحدد",
"widgetSubtitle": "لم يتم تحديد أي تطبيق",
"noAppsLabel": "لم يتم العثور على تطبيقات",
"currentVersion": "الحالي",
"suggestedVersion": "المقترح",
"anyVersion": "أي إصدار"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "تخصيص القيمة",
"setToNull": "تعيين إلى فارغ",
"nullValue": "قيمة هذا الخيار فارغة حاليا",
"resetOptionsTooltip": "إعادة تعيين خيارات التعديل",
"viewTitle": "خيارات التعديل",
"saveOptions": "حفظ",
"addOptions": "إضافة خيارات",
"unselectPatch": "إلغاء تحديد التصحيح",
"tooltip": "المزيد من خيارات الإدخال",
"selectFilePath": "تحديد مسار الملف",
"selectFolder": "تحديد مجلد",
"selectOption": "تحديد خيار",
"requiredOption": "إعداد هذا الخيار مطلوب",
"unsupportedOption": "هذا الخيار غير مدعوم",
"requiredOptionNull": "يجب تعيين الخيارات التالية:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "استخدام التحديد الافتراضي"
},
"installerView": {
"widgetTitle": "المثبت",
"installType": "تحديد نوع التثبيت",
"installTypeDescription": "تحديد نوع التثبيت للمتابعة.",
"installButton": "تثبيت",
@ -150,7 +129,6 @@
"warning": "قم بتعطيل التحديثات التلقائية للتطبيق المعدل لتجنب المشكلات غير المتوقعة.",
"pressBackAgain": "اضغط رجوع مرة اخرى للإلغاء",
"openButton": "فتح",
"shareButton": "شارك مِلَفّ",
"notificationTitle": "ReVanced Manager يقوم بعملية التعديل",
"notificationText": "انقر للعودة إلى المثبت",
"exportApkButtonTooltip": "تصدير APK المعدل",
@ -175,7 +153,6 @@
"dynamicThemeHint": "استمتع بتجربة أقرب إلى جهازك",
"languageLabel": "اللغة",
"languageUpdated": "تم تحديث اللغة",
"englishOption": "English",
"sourcesLabel": "مصادر بديلة",
"sourcesLabelHint": "قم بتكوين المصادر البديلة لتعديلات ReVanced وتكاملات ReVanced",
"sourcesIntegrationsLabel": "مصدر الـدمج",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "فشل التثبيت نظرًا لكون التطبيق المعدل إصدارًا أقل من التطبيق المثبت.\n\nهل تريد إلغاء تثبيت التطبيق والمحاولة مرة أخرى؟",
"status_unknown_description": "فشل التثبيت لسبب غير معروف. الرجاء المحاولة مرة أخرى."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Rədd et",
"quitButton": ıxış",
"updateButton": "Yenilə",
"enabledLabel": "Fəaldır",
"disabledLabel": "Sıradan çıxarıldı",
"installed": "Quraşdırılan: ${version}",
"suggested": "Təklif edilən: ${version}",
"yesButton": "Bəli",
"noButton": "Xeyr",
"warning": "Xәbәrdarlıq",
"options": "Seçimlər",
"notice": "Bildiriş",
"noShowAgain": "Bunu təkrar göstərmə",
"add": "Əlavə et",
@ -29,8 +25,6 @@
"updatesSubtitle": "Yeniləmələr",
"patchedSubtitle": "Yamaqlanmış tətbiqlər",
"changeLaterSubtitle": "Bunu daha sonra ayarlarda dəyişdirə bilərsiniz.",
"noUpdates": "Güncəlləmə mövcud deyil",
"WIP": "Proses davam edir...",
"noInstallations": "Yamaqlanmış tətbiq quraşdırılmayıb",
"installUpdate": "Yeniləməni quraşdırmağa davam edilsin?",
"updateSheetTitle": "ReVanced Menecerini Güncəllə",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Lazımi fayllar endirilsin?",
"downloadConsentDialogText": "\"ReVanced Meneceri\"nin düzgün işləməsi üçün lazımi faylları endirməsi lazımdır.",
"downloadConsentDialogText2": "Bu, sizi ${url} ünvanına bağlayacaq.",
"checkUpdateDialogTitle": "Güncəlləmələr yoxlanılsın?",
"checkUpdateDialogText": "\"ReVanced Meneceri\"nin güncəlləmələri avto-yoxlamasını istəyirsiniz?",
"notificationTitle": "Güncəlləmə endirildi",
"notificationText": "Güncəlləməni quraşdırmaq üçün toxunun",
"downloadingMessage": "Yeniləmə yüklənilir...",
"downloadedMessage": "Güncəlləmə endirildi",
"installingMessage": "Yeniləmə quraşdırılır...",
"errorDownloadMessage": "Güncəlləmə endirilə bilmir",
"errorInstallMessage": "Güncəlləmə quraşdırıla bilmir",
"noConnection": "İnternet bağlantısı yoxdur",
"updatesDisabled": "Yamaqlanmış bir tətbiqin güncəllənməsi hazırda sıradan çıxarılıb. Tətbiqi yenidən yamaqlayın."
"noConnection": "İnternet bağlantısı yoxdur"
},
"applicationItem": {
"infoButton": "Məlumat"
},
"latestCommitCard": {
"loadingLabel": "Yüklənir...",
"timeagoLabel": "${time} əvvəl",
"patcherLabel": "Yamaqlayıcı: ",
"managerLabel": "Menecer: ",
"updateButton": "Güncəlləmə meneceri"
"timeagoLabel": "${time} əvvəl"
},
"patcherView": {
"widgetTitle": "Yamaqlayıcı",
"patchButton": "Yamaqla",
"armv7WarningDialogText": "ARMv7 cihazlarında yamaqlama hələ dəstəklənmir və xəta verə bilər. Yenə də davam edilsin?",
"removedPatchesWarningDialogText": "Aşağıdakı yamaqlar son istifadədən bu yana silindi.\n\n${patches}\n\nYenə də davam edilsin?",
"requiredOptionDialogText": "Bəzi yamaq seçimləri ayarlanmalıdır."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Seçilmiş tətbiq",
"widgetSubtitle": "Heç bir tətbiq seçilmədi",
"noAppsLabel": "Heç bir tətbiq tapılmadı",
"currentVersion": "Hazırkı",
"suggestedVersion": "Təklif edilən",
"anyVersion": "Bütün versiyalar"
},
"patchSelectorCard": {
@ -118,15 +101,11 @@
},
"patchOptionsView": {
"customValue": "Özəl dəyər",
"resetOptionsTooltip": "Yamaq seçimlərini sıfırla",
"viewTitle": "Yamaq seçimləri",
"saveOptions": "Saxla",
"addOptions": "Seçim əlavə et",
"deselectPatch": "Yamağı seçmə",
"tooltip": "Daha çox giriş seçimləri",
"selectFilePath": "Fayl yolunu seç",
"selectFolder": "Qovluq seç",
"selectOption": "Seçim et",
"requiredOption": "Bu seçim tələb olunur",
"unsupportedOption": "Bu seçim dəstəklənmir",
"requiredOptionNull": "Aşağıdakı seçimlər ayarlanmalıdır:\n\n${options}"
@ -139,7 +118,6 @@
"patchesChangeWarningDialogButton": "İlkin seçimi istifadə et"
},
"installerView": {
"widgetTitle": "Quraşdırıcı",
"installType": "Quraşdırma növünü seçin",
"installTypeDescription": "Davam etmək üçün quraşdırma növünü seçin.",
"installButton": "Quraşdır",
@ -148,7 +126,6 @@
"warning": "Gözlənilməz problemlərin qarşısını almaq məqsədilə yamaqlanmış tətbiq üçün avto-güncəlləmələri sıradan çıxardın.",
"pressBackAgain": "Ləğv etmək üçün yenidən geri düyməsinə bas",
"openButton": "Aç",
"shareButton": "Faylı paylaş",
"notificationTitle": "ReVanced Menecer yamaqlayır",
"notificationText": "Quraşdırıcıya geri qayıtmaq üçün toxunun",
"exportApkButtonTooltip": "Yamaqlı APK-ni xaricə köçür",
@ -173,7 +150,6 @@
"dynamicThemeHint": "Cihazınıza yaxın bir təcrübədən həzz alın",
"languageLabel": "Dil",
"languageUpdated": "Dil güncəlləndi",
"englishOption": "İngiliscə",
"sourcesLabel": "Alternativ mənbələr",
"sourcesLabelHint": "ReVanced Yamaqları və ReVanced İnteqrasiyaları üçün alternativ mənbələri konfiqurasiya edin",
"sourcesIntegrationsLabel": "İnteqrasiya mənbəyi",
@ -299,4 +275,4 @@
"install_failed_version_downgrade_description": "Yamaqlanmış tətbiq, quraşdırılmış tətbiqdən daha aşağı versiyaya sahib olduğu üçün quraşdırma uğursuz oldu.\n\nTətbiqi silib yenidən sınayırsınız?",
"status_unknown_description": "Bilinməyən bir səbəbə görə quraşdırma uğursuz oldu. Lütfən yenidən sınayın."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Адхіліць",
"quitButton": "Выйсці",
"updateButton": "Абнавіць",
"enabledLabel": "Уключана",
"disabledLabel": "Адключана",
"installed": "Усталявана: ${version}",
"suggested": "Прапанавана: ${version}",
"yesButton": "Так",
"noButton": "Не",
"warning": "Увага",
"options": "Параметры",
"notice": "Заўвага",
"noShowAgain": "Больш не паказваць",
"add": "Дадаць",
@ -29,8 +25,6 @@
"updatesSubtitle": "Абнаўленні",
"patchedSubtitle": "Выпраўленыя праграмы",
"changeLaterSubtitle": "Вы можаце змяніць гэта ў наладах пазней.",
"noUpdates": "Няма даступных абнаўленняў",
"WIP": "У працэсе...",
"noInstallations": "Няма ўсталяваных праграм з выпраўленнямі",
"installUpdate": "Працягнуць усталяванне абнаўлення?",
"updateSheetTitle": "Абнавіць ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Спампаваць неабходныя файлы?",
"downloadConsentDialogText": "ReVanced Manager неабходна спампаваць неабходныя файлы для правільнай працы.",
"downloadConsentDialogText2": "Гэта падключыць вас да ${url}.",
"checkUpdateDialogTitle": "Праверыць наяўнасць абнаўленняў?",
"checkUpdateDialogText": "Вы сапраўды хочаце правяраць абнаўленні ReVanced Manager аўтаматычна?",
"notificationTitle": "Абнаўленне спампавана",
"notificationText": "Націсніце, каб усталяваць абнаўленне",
"downloadingMessage": "Спампоўваецца абнаўленне...",
"downloadedMessage": "Абнаўленне спампавана",
"installingMessage": "Усталяванне абнаўлення...",
"errorDownloadMessage": "Немагчыма спампаваць абнаўленне",
"errorInstallMessage": "Немагчыма ўсталяваць абнаўленне",
"noConnection": "Няма злучэння з інтэрнэтам",
"updatesDisabled": "Абнаўленне выпраўленай праграмы ў цяперашні час адключана. Неабходна паўторна ўжыць выпраўленне для праграмы."
"noConnection": "Няма злучэння з інтэрнэтам"
},
"applicationItem": {
"infoButton": "Звесткі"
},
"latestCommitCard": {
"loadingLabel": "Загрузка...",
"timeagoLabel": "${time} таму",
"patcherLabel": "Праграма выпраўлення: ",
"managerLabel": "Менеджар: ",
"updateButton": "Абнавіць ReVanced Manager"
"timeagoLabel": "${time} таму"
},
"patcherView": {
"widgetTitle": "Праграма выпраўлення",
"patchButton": "Выправіць",
"armv7WarningDialogText": "Выпраўленне для прылад на ARMv7 пакуль не падтрымліваецца і можа прывесці да збою. Працягнуць?",
"removedPatchesWarningDialogText": "Наступныя выпраўленні былі выдалены з моманту іх апошняга выкарыстання.\n\n${patches}\n\nУсё роўна працягнуць?",
"requiredOptionDialogText": "Неабходна задаць некаторыя параметры выпраўленняў."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Выбраная праграма",
"widgetSubtitle": "Праграма не выбрана",
"noAppsLabel": "Праграмы не знойдзены",
"currentVersion": "Бягучая версія",
"suggestedVersion": "Прапанаваная",
"anyVersion": "Любая версія"
},
"patchSelectorCard": {
@ -118,15 +101,11 @@
},
"patchOptionsView": {
"customValue": "Уласнае значэнне",
"resetOptionsTooltip": "Скінуць параметры выпраўлення",
"viewTitle": "Параметры выпраўлення",
"saveOptions": "Захаваць",
"addOptions": "Дадаць параметры",
"deselectPatch": "Зняць выбар з выпраўлення",
"tooltip": "Больш уваходных параметраў",
"selectFilePath": "Выбраць шлях да файла",
"selectFolder": "Выбраць папку",
"selectOption": "Выберыце параметр",
"requiredOption": "Абавязковы параметр",
"unsupportedOption": "Гэты параметр не падтрымліваецца",
"requiredOptionNull": "Наступныя параметры павінны быць зададзены:\n\n${options}"
@ -139,7 +118,6 @@
"patchesChangeWarningDialogButton": "Выкарыстоўваць прадвызначаны выбар"
},
"installerView": {
"widgetTitle": "Устаноўшчык праграм",
"installType": "Выберыце тып устаноўкі",
"installTypeDescription": "Выберыце тып устаноўкі для працягу.",
"installButton": "Усталяваць",
@ -148,7 +126,6 @@
"warning": "Адключыць аўтаматычныя абнаўленні для выпраўленых праграм, каб пазбегнуць нечаканых праблем.",
"pressBackAgain": "Націсніце назад яшчэ раз, каб скасаваць",
"openButton": "Адкрыць",
"shareButton": "Абагуліць файл",
"notificationTitle": "ReVanced Manager працуе над выпраўленнем",
"notificationText": "Націсніце для вяртання ва ўсталёўшчык праграм",
"exportApkButtonTooltip": "Экспартаваць выпраўленыя APK",
@ -173,7 +150,6 @@
"dynamicThemeHint": "Атрымлівайце асалоду ад тэмы сваёй прылады",
"languageLabel": "Мова",
"languageUpdated": "Мова абноўлена",
"englishOption": "Англійская",
"sourcesLabel": "Альтэрнатыўныя крыніцы",
"sourcesLabelHint": "Сканфігурыраваць альтэрнатыўныя крыніцы для ReVanced Patches і ReVanced Integrations",
"sourcesIntegrationsLabel": "Крыніца інтэграцый",
@ -299,4 +275,4 @@
"install_failed_version_downgrade_description": "Збой усталявання, бо выпраўленая праграма мае больш новую версію, чым усталяваная праграма.\n\nВыдаліць праграму і паспрабаваць яшчэ раз?",
"status_unknown_description": "Збой усталявання, бо адбылася невядомая памылка. Паўтарыце спробу яшчэ раз."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Отхвърли",
"quitButton": "Изход",
"updateButton": "Актуализация",
"enabledLabel": "Активирано",
"disabledLabel": "Деактивирано",
"installed": "Инсталирана версия: ${version}",
"suggested": "Предложена версия: ${version}",
"yesButton": "Да",
"noButton": "Не",
"warning": "Внимание",
"options": "Опции",
"notice": "Известие",
"noShowAgain": "Не показвай повече",
"add": "Добави",
@ -29,8 +25,6 @@
"updatesSubtitle": "Актуализации",
"patchedSubtitle": "Модифицирани приложения",
"changeLaterSubtitle": "Можете да промените това в настройките на по-късен етап.",
"noUpdates": "Няма налични актуализации",
"WIP": "В процес на разработка...",
"noInstallations": "Няма инсталирани модифицирани приложения",
"installUpdate": "Продължете към инсталирането на актуализациите?",
"updateSheetTitle": "Актуализирай ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Да се изтеглят ли необходимите файлове?",
"downloadConsentDialogText": "ReVanced Manager трябва да изтегли необходими файлове, за да работи правилно.",
"downloadConsentDialogText2": "Това ще ви свърже към ${url}.",
"checkUpdateDialogTitle": "Да се провери ли за актуализации?",
"checkUpdateDialogText": "Бихте ли желали ReVanced Manager автоматично да проверява за актуализации?",
"notificationTitle": "Актуализацията е изтеглена",
"notificationText": "Натиснете за да инсталирате актуализацията",
"downloadingMessage": "Изтегляне на актуализация...",
"downloadedMessage": "Актуализацията е изтеглена",
"installingMessage": "Инсталиране на актуализация...",
"errorDownloadMessage": "Свалянето на актуализацията не беше успешно",
"errorInstallMessage": "Инсталирането на актуализацията не беше успешно",
"noConnection": "Няма връзка с интернет",
"updatesDisabled": "Актуализацията на модифицирани приложения в момента не работи. Модифицирайте приложението наново."
"noConnection": "Няма връзка с интернет"
},
"applicationItem": {
"infoButton": "Информация"
},
"latestCommitCard": {
"loadingLabel": "Зареждане...",
"timeagoLabel": "Преди ${time}",
"patcherLabel": "Модификатор: ",
"managerLabel": "Мениджър: ",
"updateButton": "Обнови ReVanced Manager"
"timeagoLabel": "Преди ${time}"
},
"patcherView": {
"widgetTitle": "Модификатор",
"patchButton": "Модифицирайте",
"armv7WarningDialogText": "Все още не се поддържат модификации за ARMv7 устройства. Продължете въпреки това?",
"removedPatchesWarningDialogText": "Следните модификации са били премахнати след като са били употребени за последно от вас.\n\n${patches}\n\nПродължете въпреки това?",
"requiredOptionDialogText": "Опциите на някои модификации трябва да бъдат зададени."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Избрани приложения",
"widgetSubtitle": "Няма избрано приложение",
"noAppsLabel": "Няма намерени приложения",
"currentVersion": "Текуща",
"suggestedVersion": "Препоръчана",
"anyVersion": "Всички версии"
},
"patchSelectorCard": {
@ -118,15 +101,11 @@
},
"patchOptionsView": {
"customValue": "Стойност по избор",
"resetOptionsTooltip": "Нулиране опциите на модификациите",
"viewTitle": "Опции за модификациите",
"saveOptions": "Запази",
"addOptions": "Добави опции",
"deselectPatch": "Отмяна на всички модификации",
"tooltip": "Повече опции за въвеждане",
"selectFilePath": "Изберете път към файла",
"selectFolder": "Изберете папка",
"selectOption": "Изберете опция",
"requiredOption": "Тази опция е задължителна",
"unsupportedOption": "Тази опция не се поддържа",
"requiredOptionNull": "Следните опции трябва да бъдат зададени:\n\n${options}"
@ -139,7 +118,6 @@
"patchesChangeWarningDialogButton": "Използвайте избора по подразбиране"
},
"installerView": {
"widgetTitle": "Инсталатор",
"installType": "Изберете вида на инсталацията",
"installTypeDescription": "Изберете с кой вид инсталация да продължите.",
"installButton": "Инсталиране",
@ -148,7 +126,6 @@
"warning": "Деактивирайте автоматичните актуализации на модифираното приложение, за да избегнете неочаквани проблеми.",
"pressBackAgain": "Натиснете \"назад\" отново, за да откажете",
"openButton": "Отвори",
"shareButton": "Сподели файла",
"notificationTitle": "ReVanced Мениджър модифицира",
"notificationText": "Натиснете за да се върнете при инсталатора",
"exportApkButtonTooltip": "Експортиране на модифицираното APK",
@ -173,7 +150,6 @@
"dynamicThemeHint": "Насладете се на преживяване по-близо до устройството си",
"languageLabel": "Език",
"languageUpdated": "Езикът е обновен",
"englishOption": "Английски",
"sourcesLabel": "Алтернативни източници",
"sourcesLabelHint": "Конфигурирайте алтернативните източници за ReVanced Patches и ReVanced Integrations",
"sourcesIntegrationsLabel": "Източник на интеграциите",
@ -299,4 +275,4 @@
"install_failed_version_downgrade_description": "Инсталацията се провали поради това, че модифицираното приложение е с по-ниска версия от инсталираното приложение.\n\nДеинсталирайте приложението и опитайте отново?",
"status_unknown_description": "Инсталацията не е успешна поради неизвестна причина. Моля, опитайте отново."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "বাতিল করুন",
"quitButton": "কাটুন",
"updateButton": "হালনাগাদ করুন",
"enabledLabel": "সক্রিয় রয়েছে",
"disabledLabel": "নিষ্ক্রিয় হয়েছে",
"installed": "ইনস্টলকৃত: ${version}",
"suggested": "প্রস্তাবিত: ${version}",
"yesButton": "হ্যাঁ",
"noButton": "না",
"warning": "সতর্কতা",
"options": "বিকল্পসমূহ",
"notice": "বিজ্ঞপ্তি",
"noShowAgain": "পুনরায় দেখাবেন না",
"add": "যুক্ত করুন",
@ -29,8 +25,6 @@
"updatesSubtitle": "আপডেটসমূহ",
"patchedSubtitle": "প্যাচড অ্যাপ্লিকেশনগুলো",
"changeLaterSubtitle": "পরবর্তীতে আপনি এটি সেটিং থেকে পরিবর্তন করতে পারবেন।",
"noUpdates": "কোন আপডেট নেই",
"WIP": "কাজ হচ্ছে...",
"noInstallations": "কোন প্যাচড অ্যাপ্লিকেশন ইনস্টল করা হয়নি",
"installUpdate": "আপডেট ইনস্টল করতে এগিয়ে যেতে চান?",
"updateSheetTitle": "ReVanced Manager আপডেট করুন",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "প্রয়োজনীয় ফাইল ডাউনলোড করবেন?",
"downloadConsentDialogText": "ReVanced Manager সঠিকভাবে কাজ করার জন্য কিছু প্রয়োজনীয় ফাইল ডাউনলোড করতে হবে।",
"downloadConsentDialogText2": "এটি আপনাকে যুক্ত করবে ${url}.",
"checkUpdateDialogTitle": "আপডেটএর জন্য পরীক্ষা করবেন?",
"checkUpdateDialogText": "আপনি কি চান ReVanced Manager আপডেটের জন্য স্বয়ংক্রিয়ভাবে যাচাই করুক?",
"notificationTitle": "আপডেট ডাউনলোড হয়েছে",
"notificationText": "আপডেট ইনস্টল করতে চাপ দিন",
"downloadingMessage": "আপডেট ডাউনলোড হচ্ছে...",
"downloadedMessage": "আপডেট ডাউনলোড করা হয়েছে",
"installingMessage": "আপডেট ইনস্টল করা হচ্ছে...",
"errorDownloadMessage": "আপডেট ডাউনলোড করতে সফল হয় নি",
"errorInstallMessage": "আপডেট ইনস্টল করতে সফল হয় নি",
"noConnection": "কোন ইন্টারনেট সংযোগ নেই",
"updatesDisabled": "প্যাচ করা অ্যাপকে আপডেট করা বর্তমানে সম্ভব নয়। অ্যাপটি পুনরায় প্যাচ করুন।"
"noConnection": "কোন ইন্টারনেট সংযোগ নেই"
},
"applicationItem": {
"infoButton": "তথ্য"
},
"latestCommitCard": {
"loadingLabel": "লোড হচ্ছে...",
"timeagoLabel": "${time} আগে",
"patcherLabel": "প্যাচার: ",
"managerLabel": "Manager: ",
"updateButton": "Manager আপডেট করুন"
"timeagoLabel": "${time} আগে"
},
"patcherView": {
"widgetTitle": "প্যাচার",
"patchButton": "প্যাচ",
"armv7WarningDialogText": "ARMv7 ডিভাইসগুলোতে প্যাচিং এখনো সমর্থিত নয় এবং সফল নাও হতে পারে। যেকোন ভাবে এগিয়ে যেতে চান?",
"removedPatchesWarningDialogText": "আপনি এর আগে যখন ব্যবহার করেছিলেন তারপর এই প্যাচগুলো অপসারণ করা হয়।\n\n${patches}\n\nযেকোন ভাবে এগিয়ে যেতে চান?",
"requiredOptionDialogText": "কিছু প্যাচ অপশন সেট করতে হবে।"
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "নির্বাচিত অ্যাপ",
"widgetSubtitle": "কোন অ্যাপ নির্বাচন করা হয়নি",
"noAppsLabel": "কোন অ্যাপ্লিকেশন পাওয়া যায়নি",
"currentVersion": "বর্তমান",
"suggestedVersion": "প্রস্তাবিত",
"anyVersion": "যেকোন সংস্করণ"
},
"patchSelectorCard": {
@ -118,15 +101,11 @@
},
"patchOptionsView": {
"customValue": "কাস্টম ভ্যালু",
"resetOptionsTooltip": "প্যাচ অপশন আবার সেট করুন",
"viewTitle": "প্যাচ অপশন",
"saveOptions": "সংরক্ষণ করুন",
"addOptions": "অপশন যুক্ত করুন",
"deselectPatch": "প্যাচ অনির্বাচন করুন",
"tooltip": "আরও ইনপুট অপশন",
"selectFilePath": "ফাইলের স্থান নির্বাচন করুন",
"selectFolder": "ফোল্ডার নির্বাচন করুন",
"selectOption": "অপশন নির্বাচন করুন",
"requiredOption": "এই অপশনটি আবশ্যক",
"unsupportedOption": "এই অপশনসটি অসমর্থিত",
"requiredOptionNull": "এই অপশনগুলো সেট করতে হবে:\n\n${options}"
@ -139,7 +118,6 @@
"patchesChangeWarningDialogButton": "পূর্বনির্ধারিত নির্বাচন ব্যবহার করুন"
},
"installerView": {
"widgetTitle": "ইনস্টলার",
"installType": "ইনস্টল করার ধরণ নির্বাচন করুন",
"installTypeDescription": "যে প্রক্রিয়ায় ইনস্টল করা এগিয়ে নিতে চান তা নির্বাচন করুন।",
"installButton": "ইনস্টল করুন",
@ -148,7 +126,6 @@
"warning": "অনাকাঙ্ক্ষিত ইস্যু এড়াতে প্যাচকৃত অ্যাপের স্বয়ংক্রিয় আপডেট নিষ্ক্রিয় করুন।",
"pressBackAgain": "বাতিল করতে ব্যাক প্রেস করুন",
"openButton": "অ্যাপ খুলুন",
"shareButton": "ফাইল শেয়ার করুন",
"notificationTitle": "ReVanced Manager প্যাচ করছে",
"notificationText": "ইনস্টলারে ফিরে যেতে আলতো চাপুন",
"exportApkButtonTooltip": "প্যাচ হওয়া APK রপ্তানি করুন",
@ -173,7 +150,6 @@
"dynamicThemeHint": "আপনার ডিভাইসের লুকের কাছাকাছি অভিজ্ঞতা নিন",
"languageLabel": "ভাষা",
"languageUpdated": "ভাষা হালনাগাদ করা হয়েছে",
"englishOption": "ইংরেজি",
"sourcesLabel": "বিকল্প উৎস",
"sourcesLabelHint": "ReVanced প্যাচ ও ReVanced ইন্ট্রিগ্রেশনের জন্য বিকল্প উৎস কনফিগার করুন",
"sourcesIntegrationsLabel": "ইন্ট্রিগেশনের উৎস",
@ -299,4 +275,4 @@
"install_failed_version_downgrade_description": "প্যাচ করা অ্যাপ ইনস্টল করা অ্যাপের চেয়ে কম সংস্করণ হওয়ায় ইনস্টলেশন ব্যর্থ হয়েছে.\n\nঅ্যাপটি আনইনস্টল করে আবার চেষ্টা করবেন?",
"status_unknown_description": "একটি অজানা কারণে ইনস্টলেশন ব্যর্থ হয়েছে. অনুগ্রহপূর্বক আবার চেষ্টা করুন."
}
}
}

View File

@ -16,4 +16,4 @@
"appInfoView": {},
"contributorsView": {},
"installErrorDialog": {}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Zrušit",
"quitButton": "Odejít",
"updateButton": "Aktualizovat",
"enabledLabel": "Zapnuto",
"disabledLabel": "Vypnuto",
"installed": "Nainstalováno: ${version}",
"suggested": "Doporučeno: ${version}",
"yesButton": "Ano",
"noButton": "Ne",
"warning": "Varování",
"options": "Možnosti",
"notice": "Upozornění",
"noShowAgain": "Již nezobrazovat",
"add": "Přidat",
@ -29,8 +25,6 @@
"updatesSubtitle": "Aktualizace",
"patchedSubtitle": "Záplatované aplikace",
"changeLaterSubtitle": "Tuto možnost můžete změnit později v nastavení.",
"noUpdates": "Nejsou dostupné žádné aktualizace",
"WIP": "Probíhající přípravy...",
"noInstallations": "Nejsou nainstalovány žádné záplatované aplikace",
"installUpdate": "Pokračovat v instalaci aktualizace?",
"updateSheetTitle": "Aktualizovat ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Stáhnout potřebné soubory?",
"downloadConsentDialogText": "ReVanced Manager potřebuje stáhnout potřebné soubory, aby fungoval správně.",
"downloadConsentDialogText2": "Tímto se připojíte k ${url}.",
"checkUpdateDialogTitle": "Zkontrolovat aktualizace?",
"checkUpdateDialogText": "Přejete si, aby ReVanced Manager automaticky kontroloval aktualizace?",
"notificationTitle": "Aktualizace byla stažena",
"notificationText": "Klepnutím nainstalujte aktualizaci",
"downloadingMessage": "Stahování aktualizace...",
"downloadedMessage": "Aktualizace byla stažena",
"installingMessage": "Instalace aktualizace...",
"errorDownloadMessage": "Nelze stáhnout aktualizaci",
"errorInstallMessage": "Aktualizace se nepodařilo nainstalovat",
"noConnection": "Žádné připojení k internetu",
"updatesDisabled": "Aktualizace záplatované aplikace je momentálně zakázána. Znovu záplatujte aplikaci."
"noConnection": "Žádné připojení k internetu"
},
"applicationItem": {
"infoButton": "Info"
},
"latestCommitCard": {
"loadingLabel": "Načítání...",
"timeagoLabel": "před ${time}",
"patcherLabel": "Záplatovač: ",
"managerLabel": "Správce: ",
"updateButton": "Správce aktualizací"
"timeagoLabel": "před ${time}"
},
"patcherView": {
"widgetTitle": "Záplatovač",
"patchButton": "Záplatovat",
"armv7WarningDialogText": "Záplatování na zařízení ARMv7 ještě není podporováno a může neuspět. Přejete si přesto pokračovat?",
"removedPatchesWarningDialogText": "Následující záplaty byly odstraněny od doby, kdy jste je naposledy použili.\n\n${patches}\n\nPřesto pokračovat?",
"requiredOptionDialogText": "Je třeba nastavit některé možnosti záplat."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Vybraná aplikace",
"widgetSubtitle": "Není vybrána žádná aplikace",
"noAppsLabel": "Nebyly nalezeny žádné aplikace",
"currentVersion": "Aktuální",
"suggestedVersion": "Navrženo",
"anyVersion": "Jakákoli verze"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Vlastní hodnota",
"setToNull": "Nastavit na null",
"nullValue": "Tato hodnota volby je v současné době null",
"resetOptionsTooltip": "Obnovit nastavení záplat",
"viewTitle": "Nastavení záplat",
"saveOptions": "Uložit",
"addOptions": "Přidat možnosti",
"unselectPatch": "Zrušit výběr patch",
"tooltip": "Další možnosti vstupu",
"selectFilePath": "Zvolte cestu k souboru",
"selectFolder": "Vybrat složku",
"selectOption": "Vybrat možnost",
"requiredOption": "Nastavení této možnosti je vyžadováno",
"unsupportedOption": "Tato možnost není podporována",
"requiredOptionNull": "Tyto možnosti musí být nastaveny:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Použít výchozí výběr"
},
"installerView": {
"widgetTitle": "Instalátor",
"installType": "Zvolte instalační typ",
"installTypeDescription": "Vyberte typ instalace pro pokračování.",
"installButton": "Instalovat",
@ -150,7 +129,6 @@
"warning": "Zakažte automatické aktualizace upravené aplikace, abyste se vyhnuli neočekávaným problémům.",
"pressBackAgain": "Stiskněte znovu pro zrušení",
"openButton": "Otevřít",
"shareButton": "Sdílet soubor",
"notificationTitle": "ReVanced Manager patchuje",
"notificationText": "Klepnutím se vrátíte do instalátoru",
"exportApkButtonTooltip": "Exportovat upravený APK",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Vychutnejte si zážitek blíže k vašemu zařízení",
"languageLabel": "Jazyk",
"languageUpdated": "Jazyk aktualizován",
"englishOption": "Angličtina",
"sourcesLabel": "Alternativní zdroje",
"sourcesLabelHint": "Konfigurace alternativních zdrojů pro vylepšené úpravy a zdokonalené integrace",
"sourcesIntegrationsLabel": "Zdroj integrace",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "Instalace se nezdařila kvůli tomu, že již nainstalovaná verze je novější.\n\nOdinstalovat tuto aplikaci a zkusit znovu?",
"status_unknown_description": "Instalace se nezdařila z neznámých důvodů. Prosím zkuste to znovu."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Luk",
"quitButton": "Luk",
"updateButton": "Opdatér",
"enabledLabel": "Aktiveret",
"disabledLabel": "Deaktiveret",
"installed": "Installeret: ${version}",
"suggested": "Foreslået: ${version}",
"yesButton": "Ja",
"noButton": "Nej",
"warning": "Advarsel",
"options": "Indstillinger",
"notice": "Bemærkning",
"noShowAgain": "Vis ikke igen",
"add": "Tilføj",
@ -29,8 +25,6 @@
"updatesSubtitle": "Opdateringer",
"patchedSubtitle": "Patchede applikationer",
"changeLaterSubtitle": "Du kan ændre dette i indstillingerne senere.",
"noUpdates": "Ingen tilgængelige opdateringer",
"WIP": "Arbejdet er i gang...",
"noInstallations": "Ingen patchede apps installeret",
"installUpdate": "Fortsæt med at installere opdateringen?",
"updateSheetTitle": "Opdater ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Download nødvendige filer?",
"downloadConsentDialogText": "ReVanced Manager har brug for at downloade nødvendige filer for at fungere korrekt.",
"downloadConsentDialogText2": "Dette vil forbinde dig til ${url}.",
"checkUpdateDialogTitle": "Søg efter opdateringer?",
"checkUpdateDialogText": "Ønsker du at ReVanced Manager skal søge efter opdateringer automatisk?",
"notificationTitle": "Opdatering downloadet",
"notificationText": "Tryk for at installere opdateringen",
"downloadingMessage": "Henter opdatering...",
"downloadedMessage": "Opdatering downloadet",
"installingMessage": "Installerer opdatering...",
"errorDownloadMessage": "Opdatering kan ikke hentes",
"errorInstallMessage": "Opdatering kunne ikke installeres",
"noConnection": "Ingen internetforbindelse",
"updatesDisabled": "Opdatering af en patchet app er i øjeblikket deaktiveret. Repatch appen igen."
"noConnection": "Ingen internetforbindelse"
},
"applicationItem": {
"infoButton": "Information"
},
"latestCommitCard": {
"loadingLabel": "Indlæser...",
"timeagoLabel": "${time} siden",
"patcherLabel": "Patcher: ",
"managerLabel": "Manager: ",
"updateButton": "Opdater Manager"
"timeagoLabel": "${time} siden"
},
"patcherView": {
"widgetTitle": "Patcher",
"patchButton": "Patch",
"armv7WarningDialogText": "Patching på ARMv7-enheder understøttes ikke endnu, og kan derfor fejle. Fortsæt alligevel?",
"removedPatchesWarningDialogText": "Følgende patches er blevet fjernet siden sidste gang du brugte dem.\n\n${patches}\n\nFortsæt alligevel?",
"requiredOptionDialogText": "Nogle patch muligheder skal indstilles."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Valgte app",
"widgetSubtitle": "Ingen app valgt",
"noAppsLabel": "Ingen applikationer fundet",
"currentVersion": "Nuværende",
"suggestedVersion": "Anbefalet",
"anyVersion": "Enhver version"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Tilpasset værdi",
"setToNull": "Sæt til nul",
"nullValue": "Denne valgmulighed værdi er i øjeblikket nul",
"resetOptionsTooltip": "Nulstil patch indstillinger",
"viewTitle": "Patch indstillinger",
"saveOptions": "Gem",
"addOptions": "Tilføj indstillinger",
"unselectPatch": "Fravælg patch",
"tooltip": "Flere input-indstillinger",
"selectFilePath": "Vælg fil sti",
"selectFolder": "Vælg mappe",
"selectOption": "Vælg indstilling",
"requiredOption": "Indstilling af denne indstilling er påkrævet",
"unsupportedOption": "Denne indstilling understøttes ikke",
"requiredOptionNull": "Følgende indstillinger skal indstilles:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Brug standardvalg"
},
"installerView": {
"widgetTitle": "Installationsprogram",
"installType": "Vælg installationstype",
"installTypeDescription": "Vælg den installationstype der skal fortsættes med.",
"installButton": "Installér",
@ -150,7 +129,6 @@
"warning": "Deaktiver automatiske opdateringer til den patchede app for at undgå uventede problemer.",
"pressBackAgain": "Tryk tilbage igen for at annullere",
"openButton": "Åbn",
"shareButton": "Del fil",
"notificationTitle": "ReVanced Manager patcher",
"notificationText": "Tryk for at gå tilbage til installationsprogrammet",
"exportApkButtonTooltip": "Eksporter patched APK",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Nyd en oplevelse tættere på din enhed",
"languageLabel": "Sprog",
"languageUpdated": "Sprog opdateret",
"englishOption": "Engelsk",
"sourcesLabel": "Alternative kilder",
"sourcesLabelHint": "Konfigurer de alternative kilder til ReVanced Patches og ReVanced Integrations",
"sourcesIntegrationsLabel": "Kilde til Integrationer",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "Installationen mislykkedes, fordi den lappede app er en lavere version end den installerede app.\n\nAfinstaller app'en og prøv igen?",
"status_unknown_description": "Installationen mislykkedes på grund af en ukendt årsag. Prøv venligst igen."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Verwerfen",
"quitButton": "Verlassen",
"updateButton": "Aktualisieren",
"enabledLabel": "Aktiviert",
"disabledLabel": "Deaktiviert",
"installed": "Installiert: ${version}",
"suggested": "Empfohlen: ${version}",
"yesButton": "Ja",
"noButton": "Nein",
"warning": "Warnung",
"options": "Optionen",
"notice": "Hinweis",
"noShowAgain": "Nicht erneut anzeigen",
"add": "Hinzufügen",
@ -29,8 +25,6 @@
"updatesSubtitle": "Aktualisierungen",
"patchedSubtitle": "Gepatchte Apps",
"changeLaterSubtitle": "In den Einstellungen kannst du das später noch ändern.",
"noUpdates": "Keine Updates verfügbar",
"WIP": "In Arbeit...",
"noInstallations": "Keine gepatchten Apps installiert",
"installUpdate": "Mit der Installation des Updates fortfahren?",
"updateSheetTitle": "ReVanced-Manager aktualisieren",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Benötigte Dateien herunterladen?",
"downloadConsentDialogText": "Damit ReVanced-Manager ordnungsgemäß funktioniert, müssen notwendige Dateien heruntergeladen werden.",
"downloadConsentDialogText2": "Dadurch wirst du mit ${url} verbunden.",
"checkUpdateDialogTitle": "Nach Aktualisierungen suchen?",
"checkUpdateDialogText": "Soll ReVanced Manager automatisch nach Updates suchen?",
"notificationTitle": "Update heruntergeladen",
"notificationText": "Tippen um Update zu installieren",
"downloadingMessage": "Aktualisierung wird heruntergeladen...",
"downloadedMessage": "Update heruntergeladen",
"installingMessage": "Update wird installiert...",
"errorDownloadMessage": "Aktualisierung konnte nicht heruntergeladen werden",
"errorInstallMessage": "Aktualisierung konnte nicht installiert werden",
"noConnection": "Keine Internetverbindung",
"updatesDisabled": "Aktualisieren einer gepatchten App ist zurzeit deaktiviert. Patche die App erneut."
"noConnection": "Keine Internetverbindung"
},
"applicationItem": {
"infoButton": "Informationen"
},
"latestCommitCard": {
"loadingLabel": "Lädt...",
"timeagoLabel": "vor ${time}",
"patcherLabel": "Patcher: ",
"managerLabel": "Manager: ",
"updateButton": "Manager aktualisieren"
"timeagoLabel": "vor ${time}"
},
"patcherView": {
"widgetTitle": "Patcher",
"patchButton": "Patchen",
"armv7WarningDialogText": "Das Patchen auf ARMv7-Geräten wird noch nicht unterstützt, es könnten Fehler auftreten. Trotzdem fortfahren?",
"removedPatchesWarningDialogText": "Die folgenden Patches wurden seit der letzten Verwendung entfernt.\n\n${patches}\n\nTrotzdem fortfahren?",
"requiredOptionDialogText": "Einige Patch-Optionen müssen gesetzt werden."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Ausgewählte App",
"widgetSubtitle": "Keine App ausgewählt",
"noAppsLabel": "Keine Apps gefunden",
"currentVersion": "Aktuell",
"suggestedVersion": "Empfohlen",
"anyVersion": "Beliebige Version"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Benutzerdefinierter Wert",
"setToNull": "Auf Null setzen",
"nullValue": "Dieser Optionswert ist derzeit null",
"resetOptionsTooltip": "Patch-Optionen zurücksetzen",
"viewTitle": "Patch-Optionen",
"saveOptions": "Speichern",
"addOptions": "Option hinzufügen",
"unselectPatch": "Patch entfernen",
"tooltip": "Weitere Eingabeoptionen",
"selectFilePath": "Dateipfad auswählen",
"selectFolder": "Ordner auswählen",
"selectOption": "Option auswählen",
"requiredOption": "Einstellung dieser Option ist erforderlich",
"unsupportedOption": "Dieser Vorgang ist nicht unterstützt.",
"requiredOptionNull": "Die folgenden Optionen müssen gesetzt sein:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Als Standard-Auswahl nutzen"
},
"installerView": {
"widgetTitle": "Installer",
"installType": "Installationstyp wählen",
"installTypeDescription": "Wähle zum Fortfahren die gewünschte Installationsart aus.",
"installButton": "Installieren",
@ -150,7 +129,6 @@
"warning": "Deaktiviere automatische Updates für die gepatchte App, um unerwartete Probleme zu vermeiden.",
"pressBackAgain": "Drücken Sie \"Zurück\" noch einmal, um die App zu verlassen",
"openButton": "Öffnen",
"shareButton": "Datei teilen",
"notificationTitle": "ReVanced Manager patcht",
"notificationText": "Tippen, um zum Installer zurückzukehren",
"exportApkButtonTooltip": "Gepatchte APK exportieren",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Genieße ein Erlebnis näher an deinem Gerät",
"languageLabel": "Sprache",
"languageUpdated": "Sprache aktualisiert",
"englishOption": "Englisch",
"sourcesLabel": "Alternative Quellen",
"sourcesLabelHint": "Konfiguriere die alternativen Quellen für ReVanced Patches und ReVanced Integrations",
"sourcesIntegrationsLabel": "Quelle für Integrationen",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "Die Installation ist fehlgeschlagen, da die gepatchte App eine niedrigere Version als die installierte App ist.\n\nDie App deinstallieren und erneut versuchen?",
"status_unknown_description": "Die Installation ist aus einem unbekannten Grund fehlgeschlagen. Bitte versuchen Sie es erneut."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Απόρριψη",
"quitButton": "Έξοδος",
"updateButton": "Ενημέρωση",
"enabledLabel": "Ενεργό",
"disabledLabel": "Ανενεργό",
"installed": "Εγκατεστημένη έκδοση: ${version}",
"suggested": "Προτεινόμενη έκδοση: ${version}",
"yesButton": "Ναι",
"noButton": "Όχι",
"warning": "Προειδοποίηση",
"options": "Ρυθμίσεις",
"notice": "Σημείωση",
"noShowAgain": "Να μην ξαναεμφανιστεί",
"add": "Προσθήκη",
@ -29,8 +25,6 @@
"updatesSubtitle": "Ενημερώσεις",
"patchedSubtitle": "Τροποποιημένες Εφαρμογές",
"changeLaterSubtitle": "Μπορείτε να το αλλάξετε αργότερα στις ρυθμίσεις.",
"noUpdates": "Δεν υπάρχουν διαθέσιμες ενημερώσεις",
"WIP": "Υπό κατασκευή...",
"noInstallations": "Δεν έχουν εγκατασταθεί τροποποιημένες εφαρμογές",
"installUpdate": "Συνέχεια για εγκατάσταση της ενημέρωσης;",
"updateSheetTitle": "Ενημέρωση του ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Λήψη των απαραίτητων αρχείων;",
"downloadConsentDialogText": "Το ReVanced Manager πρέπει να κατεβάσει τα απαραίτητα αρχεία για να λειτουργήσει σωστά.",
"downloadConsentDialogText2": "Αυτό θα σας συνδέσει με το ${url}.",
"checkUpdateDialogTitle": "Έλεγχος για ενημερώσεις;",
"checkUpdateDialogText": "Θέλετε το ReVanced Manager να ελέγχει για ενημερώσεις αυτόματα;",
"notificationTitle": "Η λήψη της ενημέρωσης ολοκληρώθηκε",
"notificationText": "Πατήστε για εγκατάσταση της ενημέρωσης",
"downloadingMessage": "Λήψη ενημέρωσης...",
"downloadedMessage": "Η λήψη της ενημέρωσης ολοκληρώθηκε",
"installingMessage": "Εγκατάσταση ενημέρωσης...",
"errorDownloadMessage": "Αδυναμία λήψης ενημέρωσης",
"errorInstallMessage": "Αδυναμία εγκατάστασης ενημέρωσης",
"noConnection": "Δεν υπάρχει σύνδεση στο διαδίκτυο",
"updatesDisabled": "Η ενημέρωση τροποποιημένων εφαρμογών είναι ανενεργή προς το παρόν. Τροποποιήστε τις εφαρμογές εκ νέου."
"noConnection": "Δεν υπάρχει σύνδεση στο διαδίκτυο"
},
"applicationItem": {
"infoButton": "Πληροφορίες"
},
"latestCommitCard": {
"loadingLabel": "Φόρτωση...",
"timeagoLabel": "${time} πριν",
"patcherLabel": "Τροποποιητής: ",
"managerLabel": "Manager: ",
"updateButton": "Ενημέρωση του Manager"
"timeagoLabel": "${time} πριν"
},
"patcherView": {
"widgetTitle": "Τροποποιητής",
"patchButton": "Τροποποίηση",
"armv7WarningDialogText": "Η διαδικασία της τροποποίησης δεν υποστηρίζεται προς το παρόν σε ARMv7 συσκευές και μπορεί να αποτύχει. Συνέχεια παρόλα αυτά;",
"removedPatchesWarningDialogText": "Οι παρακάτω τροποποιήσεις αφαιρέθηκαν από την τελευταία φορά που τις χρησιμοποιήσατε.\n\n${patches}\n\nΣυνέχεια παρόλα αυτά;",
"requiredOptionDialogText": "Κάποιες επιλογές τροποποιήσεων πρέπει να οριστούν."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Επιλεγμένες εφαρμογές",
"widgetSubtitle": "Δεν έχει επιλεγεί κάποια εφαρμογή",
"noAppsLabel": "Δε βρέθηκαν εφαρμογές",
"currentVersion": "Τρέχουσα έκδοση",
"suggestedVersion": "Προτεινόμενη έκδοση",
"anyVersion": "Οποιαδήποτε έκδοση"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Προσαρμοσμένη τιμή",
"setToNull": "Ορισμός σε null",
"nullValue": "Αυτή η επιλογή είναι κενή",
"resetOptionsTooltip": "Επαναφορά επιλογών τροποποιήσεων",
"viewTitle": "Επιλογές τροποποιήσεων",
"saveOptions": "Αποθήκευση",
"addOptions": "Προσθήκη επιλογών",
"unselectPatch": "Αποεπιλογή patch",
"tooltip": "Περισσότερες επιλογές εισόδου",
"selectFilePath": "Επιλογή τοποθεσίας αρχείου",
"selectFolder": "Επιλογή φακέλου",
"selectOption": "Επιλογή ρύθμισης",
"requiredOption": "Απαιτείται ρύθμιση αυτής της επιλογής",
"unsupportedOption": "Αυτή η επιλογή δεν υποστηρίζεται",
"requiredOptionNull": "Πρέπει να οριστούν οι παρακάτω επιλογές:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Χρήση προεπιλεγμένων επιλογών"
},
"installerView": {
"widgetTitle": "Πρόγραμμα Εγκατάστασης",
"installType": "Επιλέξτε τύπο εγκατάστασης",
"installTypeDescription": "Συνεχίστε επιλέγοντας τον τύπο εγκατάστασης.",
"installButton": "Εγκατάσταση",
@ -150,7 +129,6 @@
"warning": "Απενεργοποίηση αυτόματων ενημερώσεων για την τροποποιημένη εφαρμογή για την αποφυγή απροσδόκητων προβλημάτων.",
"pressBackAgain": "Πατήστε πίσω ξανά για ακύρωση",
"openButton": "Άνοιγμα",
"shareButton": "Κοινοποίηση αρχείου",
"notificationTitle": "Πραγματοποιείται τροποποίηση μέσω ReVanced Manager",
"notificationText": "Πατήστε για να επιστρέψετε στο πρόγραμμα εγκατάστασης",
"exportApkButtonTooltip": "Εξαγωγή τροποποιημένου αρχείου APK",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Εμφάνιση που ταιριάζει με τη δική σας συσκευή",
"languageLabel": "Γλώσσα",
"languageUpdated": "Η γλώσσα ενημερώθηκε",
"englishOption": "Αγγλικά",
"sourcesLabel": "Εναλλακτικές πηγές",
"sourcesLabelHint": "Ρυθμίστε τις εναλλακτικές πηγές για τις τροποποιήσεις ReVanced και τις ενσωματώσεις ReVanced",
"sourcesIntegrationsLabel": "Πηγή ενσωματώσεων",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "Η εγκατάσταση απέτυχε διότι η τροποποιημένη εφαρμογή έχει χαμηλότερη έκδοση από την εγκατεστημένη εφαρμογή.\n\nΑπεγκατάσταση εφαρμογής και προσπάθεια ξανά;",
"status_unknown_description": "Η εγκατάσταση απέτυχε για κάποιον άγνωστο λόγο.\nΠαρακαλώ δοκιμάστε ξανά."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Descartar",
"quitButton": "Salir",
"updateButton": "Actualizar",
"enabledLabel": "Activado",
"disabledLabel": "Desactivado",
"installed": "Instalada: ${version}",
"suggested": "Sugerida: ${version}",
"yesButton": "Sí",
"noButton": "No",
"warning": "Advertencia",
"options": "Opciones",
"notice": "Aviso",
"noShowAgain": "No volver a mostrar",
"add": "Agregar",
@ -29,8 +25,6 @@
"updatesSubtitle": "Actualizaciones",
"patchedSubtitle": "Aplicaciones parcheadas",
"changeLaterSubtitle": "Podés cambiar esto en los ajustes más tarde.",
"noUpdates": "No hay actualizaciones disponibles",
"WIP": "En progreso...",
"noInstallations": "Aún no parcheaste ninguna aplicación",
"installUpdate": "¿Instalar actualización?",
"updateSheetTitle": "Actualizar ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "¿Descargar archivos necesarios?",
"downloadConsentDialogText": "ReVanced Manager necesita descargar los archivos necesarios para funcionar correctamente.",
"downloadConsentDialogText2": "Esto te va a conectar a ${url}.",
"checkUpdateDialogTitle": "¿Buscar actualizaciones?",
"checkUpdateDialogText": "¿Querés que ReVanced Manager compruebe si hay actualizaciones automáticamente?",
"notificationTitle": "Actualización descargada",
"notificationText": "Tocá para instalar la actualización",
"downloadingMessage": "Descargando actualización...",
"downloadedMessage": "Actualización descargada",
"installingMessage": "Instalando actualización...",
"errorDownloadMessage": "No se pudo descargar la actualización",
"errorInstallMessage": "No se pudo instalar la actualización",
"noConnection": "No tenés conexión a Internet",
"updatesDisabled": "Por ahora no podés actualizar una app parcheada. Parcheala de nuevo."
"noConnection": "No tenés conexión a Internet"
},
"applicationItem": {
"infoButton": "Gestionar"
},
"latestCommitCard": {
"loadingLabel": "Cargando...",
"timeagoLabel": "Hace ${time}",
"patcherLabel": "Parcheador: ",
"managerLabel": "Manager: ",
"updateButton": "Actualizar Manager"
"timeagoLabel": "Hace ${time}"
},
"patcherView": {
"widgetTitle": "Parcheador",
"patchButton": "Parchear",
"armv7WarningDialogText": "El parcheo en dispositivos ARMv7 aún no está soportado de forma oficial y podría fallar. ¿Querés continuar igual?",
"removedPatchesWarningDialogText": "Los siguientes parches fueron eliminados desde la última vez que los usaste.\n\n${patches}\n\n¿Continuar de todas formas?",
"requiredOptionDialogText": "Algunas opciones de parche tienen que ser establecidas."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Aplicación seleccionada",
"widgetSubtitle": "Ninguna aplicación seleccionada",
"noAppsLabel": "No se encontró ninguna aplicación",
"currentVersion": "Actual",
"suggestedVersion": "Sugerida",
"anyVersion": "Cualquier versión"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Valor personalizado",
"setToNull": "Establecer a nulo",
"nullValue": "Este valor de opción es nulo actualmente",
"resetOptionsTooltip": "Restablecer a los valores por defecto",
"viewTitle": "Configuración\\ndel parche",
"saveOptions": "Guardar configuración",
"addOptions": "Agregar configuración",
"unselectPatch": "Deseleccionar parche",
"tooltip": "Más opciones de entrada",
"selectFilePath": "Seleccionar ruta del archivo",
"selectFolder": "Seleccionar carpeta",
"selectOption": "Seleccionar opción",
"requiredOption": "La configuración de esta opción es necesaria",
"unsupportedOption": "Esta opción no es compatible",
"requiredOptionNull": "Tenés que configurar las siguientes opciones:\\n\\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Utilizar la opción por defecto"
},
"installerView": {
"widgetTitle": "Instalador",
"installType": "Tipo de instalación",
"installTypeDescription": "Seleccioná el tipo de instalación para continuar.",
"installButton": "Instalar",
@ -150,7 +129,6 @@
"warning": "Recordá desactivar las actualizaciones automáticas de la app parcheada para evitar problemas inesperados.",
"pressBackAgain": "Vuelve a presionar atrás para cancelar",
"openButton": "Abrir",
"shareButton": "Compartir archivo",
"notificationTitle": "ReVanced Manager está parcheando",
"notificationText": "Apretá para volver al instalador",
"exportApkButtonTooltip": "Exportar APK parcheado",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Disfrutá de una experiencia más acorde a tu dispositivo",
"languageLabel": "Idioma",
"languageUpdated": "Idioma actualizado",
"englishOption": "Inglés",
"sourcesLabel": "Fuentes alternativas",
"sourcesLabelHint": "Configurá las fuentes alternativas para ReVanced Patches y ReVanced Integrations",
"sourcesIntegrationsLabel": "Fuente de las integraciones",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "La instalación falló debido a que la aplicación parcheada es una versión inferior a la instalada.\n\n¿Querés desinstalar la aplicación y volver a intentarlo?",
"status_unknown_description": "La instalación falló debido a una razón desconocida. Por favor, volvé a intentarlo."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Descartar",
"quitButton": "Cerrar",
"updateButton": "Actualizar",
"enabledLabel": "Activado",
"disabledLabel": "Desactivado",
"installed": "Instalado: ${version}",
"suggested": "Sugerido: ${version}",
"yesButton": "Sí",
"noButton": "No",
"warning": "Advertencia",
"options": "Opciones",
"notice": "Aviso",
"noShowAgain": "No mostrar de nuevo",
"add": "Añadir",
@ -29,8 +25,6 @@
"updatesSubtitle": "Actualizaciones",
"patchedSubtitle": "Apps parcheadas",
"changeLaterSubtitle": "Puedes cambiar esto en la configuración más tarde.",
"noUpdates": "No hay actualizaciones disponibles",
"WIP": "Trabajo en progreso...",
"noInstallations": "No tienes apps parcheadas instaladas",
"installUpdate": "¿Continuar instalando la actualización?",
"updateSheetTitle": "Actualizar ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "¿Descargar archivos necesarios?",
"downloadConsentDialogText": "ReVanced Manager necesita descargar los archivos necesarios para funcionar correctamente.",
"downloadConsentDialogText2": "Esto te conectará a ${url}.",
"checkUpdateDialogTitle": "¿Buscar actualizaciones?",
"checkUpdateDialogText": "¿Quieres que ReVanced Manager compruebe si hay actualizaciones automáticamente?",
"notificationTitle": "Actualización descargada",
"notificationText": "Toca para instalar la actualización",
"downloadingMessage": "Descargando actualización...",
"downloadedMessage": "Actualización descargada",
"installingMessage": "Instalando actualización...",
"errorDownloadMessage": "No se pudo descargar la actualización",
"errorInstallMessage": "No se pudo instalar la actualización",
"noConnection": "No hay conexión a Internet",
"updatesDisabled": "Por ahora no puedes actualizar una app parcheada. Re-parchea la app de nuevo."
"noConnection": "No hay conexión a Internet"
},
"applicationItem": {
"infoButton": "Información"
},
"latestCommitCard": {
"loadingLabel": "Cargando...",
"timeagoLabel": "Hace ${time}",
"patcherLabel": "Parcheador: ",
"managerLabel": "Manager: ",
"updateButton": "Actualizar Manager"
"timeagoLabel": "Hace ${time}"
},
"patcherView": {
"widgetTitle": "Parcheador",
"patchButton": "Parchear",
"armv7WarningDialogText": "El parche en dispositivos ARMv7 aún no está soportado y podría fallar. ¿Continuar de todos modos?",
"removedPatchesWarningDialogText": "Los siguientes parches han sido eliminados desde la última vez que los usaste.\n\n${patches}\n\n¿Continuar de todos modos?",
"requiredOptionDialogText": "Deben establecerse algunas opciones de parche."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "App seleccionada",
"widgetSubtitle": "Ninguna aplicación seleccionada",
"noAppsLabel": "No se encontraron aplicaciones",
"currentVersion": "Actual",
"suggestedVersion": "Recomendada",
"anyVersion": "Cualquier versión"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Valor personalizado",
"setToNull": "Establecer a nulo",
"nullValue": "Este valor de opción es nulo actualmente",
"resetOptionsTooltip": "Restablecer las opciones de parche",
"viewTitle": "Opciones de parche",
"saveOptions": "Guardar",
"addOptions": "Añadir opciones",
"unselectPatch": "Deseleccionar parche",
"tooltip": "Más opciones de entrada",
"selectFilePath": "Seleccionar ruta del archivo",
"selectFolder": "Seleccionar carpeta",
"selectOption": "Seleccionar opción",
"requiredOption": "La configuración de esta opción es necesaria",
"unsupportedOption": "Esta opción no está disponible",
"requiredOptionNull": "Hay que establecer las siguientes opciones:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Usar selección por defecto"
},
"installerView": {
"widgetTitle": "Instalador",
"installType": "Seleccionar tipo de instalación",
"installTypeDescription": "Seleccione el tipo de instalación para continuar.",
"installButton": "Instalar",
@ -150,7 +129,6 @@
"warning": "Desactivar actualizaciones automáticas para la aplicación parcheada para evitar problemas inesperados.",
"pressBackAgain": "Pulsa de nuevo para cancelar",
"openButton": "Abrir",
"shareButton": "Compartir archivo",
"notificationTitle": "ReVanced Manager está parcheando",
"notificationText": "Toque para volver al instalador",
"exportApkButtonTooltip": "Exportar APK parcheado",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Disfrute de una experiencia más acorde a su dispositivo",
"languageLabel": "Idioma",
"languageUpdated": "Idioma actualizado",
"englishOption": "Inglés",
"sourcesLabel": "Fuentes alternativas",
"sourcesLabelHint": "Configurar las fuentes alternativas para Parches de ReVanced e Integraciones ReVanced",
"sourcesIntegrationsLabel": "Fuente de las integraciones",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "La instalación ha fallado debido a que la app parcheada es una versión inferior a la instalada.\n\n¿Desinstalar la app y volver a intentarlo?",
"status_unknown_description": "La instalación ha fallado debido a una razón desconocida. Por favor, inténtalo de nuevo."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Descartar",
"quitButton": "Salir",
"updateButton": "Actualizar",
"enabledLabel": "Activado",
"disabledLabel": "Desactivado",
"installed": "Instalada: ${version}",
"suggested": "Sugerida: ${version}",
"yesButton": "Sí",
"noButton": "No",
"warning": "Advertencia",
"options": "Opciones",
"notice": "Aviso",
"noShowAgain": "No volver a mostrar",
"add": "Añadir",
@ -29,8 +25,6 @@
"updatesSubtitle": "Actualizaciones",
"patchedSubtitle": "Aplicaciones parcheadas",
"changeLaterSubtitle": "Puedes cambiar esto en la configuración más tarde.",
"noUpdates": "No hay actualizaciones disponibles",
"WIP": "Desarrollo en progreso...",
"noInstallations": "No hay aplicaciones parcheadas instaladas",
"installUpdate": "¿Continuar actualizando la aplicación?",
"updateSheetTitle": "Actualizar ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "¿Descargar archivos necesarios?",
"downloadConsentDialogText": "ReVanced Manager necesita descargar los archivos necesarios para funcionar correctamente.",
"downloadConsentDialogText2": "Esto te conectará a ${url}.",
"checkUpdateDialogTitle": "¿Comprobar actualizaciones?",
"checkUpdateDialogText": "¿Quieres que ReVanced Manager compruebe si hay actualizaciones automáticamente?",
"notificationTitle": "Actualización descargada",
"notificationText": "Toca para instalar la actualización",
"downloadingMessage": "Descargando actualización...",
"downloadedMessage": "Actualización descargada",
"installingMessage": "Instalando actualización...",
"errorDownloadMessage": "No se pudo descargar la actualización",
"errorInstallMessage": "Error al instalar la actualización",
"noConnection": "Sin conexión a internet",
"updatesDisabled": "Por ahora no se puede actualizar o parchear la app. Intenta re-parchear de nuevo."
"noConnection": "Sin conexión a internet"
},
"applicationItem": {
"infoButton": "Información"
},
"latestCommitCard": {
"loadingLabel": "Cargando...",
"timeagoLabel": "Hace ${time}",
"patcherLabel": "Parcheador: ",
"managerLabel": "Manager: ",
"updateButton": "Actualizar ReVanced Manager"
"timeagoLabel": "Hace ${time}"
},
"patcherView": {
"widgetTitle": "Parcheador",
"patchButton": "Parchear",
"armv7WarningDialogText": "El parcheo en dispositivos ARMv7 aún no está soportado y podría fallar. ¿Quieres continuar de todas formas?",
"removedPatchesWarningDialogText": "Los siguientes parches fueron removidos desde la última vez que los usaste.\n\n${patches}\n\n¿Quieres continuar de todas formas?",
"requiredOptionDialogText": "Algunas opciones de parche tienen que ser establecidas."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Aplicación seleccionada",
"widgetSubtitle": "No se seleccionó ninguna aplicación",
"noAppsLabel": "No se encontraron aplicaciones",
"currentVersion": "Versión actual",
"suggestedVersion": "Version sugerida",
"anyVersion": "Cualquier versión"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Valor personalizado",
"setToNull": "Establecer a nulo",
"nullValue": "Este valor de opción es nulo actualmente",
"resetOptionsTooltip": "Restablecer las opciones de parche",
"viewTitle": "Opciones de parche",
"saveOptions": "Guardar",
"addOptions": "Añadir opciones",
"unselectPatch": "Deseleccionar parche",
"tooltip": "Más opciones de entrada",
"selectFilePath": "Selecciona la ruta del archivo",
"selectFolder": "Selecciona la carpeta",
"selectOption": "Seleccionar opción",
"requiredOption": "La configuración de esta opción es necesaria",
"unsupportedOption": "Esta opción no está disponible",
"requiredOptionNull": "Hay que configurar las siguientes opciones:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Usar selección por defecto"
},
"installerView": {
"widgetTitle": "Instalador",
"installType": "Seleccione el tipo de instalación",
"installTypeDescription": "Selecciona el tipo de instalación con el que quieres continuar.",
"installButton": "Instalar",
@ -150,7 +129,6 @@
"warning": "Desactiva las actualizaciones para la aplicación parcheada para evitar problemas inesperados.",
"pressBackAgain": "Vuelve a presionar atrás para cancelar",
"openButton": "Abrir",
"shareButton": "Compartir archivo",
"notificationTitle": "ReVanced Manager está parcheando",
"notificationText": "Pulsa para volver al instalador",
"exportApkButtonTooltip": "Exportar APK parcheado",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Disfruta de una experiencia más cercana a tu dispositivo",
"languageLabel": "Idioma",
"languageUpdated": "Idioma actualizado",
"englishOption": "Inglés",
"sourcesLabel": "Fuentes alternativas",
"sourcesLabelHint": "Configura las fuentes alternativas para ReVanced Patches y ReVanced Integrations",
"sourcesIntegrationsLabel": "Fuente de integraciones",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "La instalación falló debido a que la aplicación parcheada es una versión inferior a la instalada.\n\n¿Quieres desinstalar la aplicación e intentarlo de nuevo?",
"status_unknown_description": "La instalación falló debido a una razón desconocida. Por favor, inténtalo de nuevo."
}
}
}

View File

@ -1,7 +1,6 @@
{
"cancelButton": "Tühista",
"updateButton": "Värskenda",
"installed": "Paigaldatud: ${version}",
"suggested": "Soovitatud: ${version}",
"yesButton": "Jah",
"noButton": "Ei",
@ -23,10 +22,8 @@
"installingMessage": "Värskenduse installimine...",
"errorDownloadMessage": "Värskenduse alla laadimine nurjus",
"errorInstallMessage": "Värskenduse installimine nurjus",
"noConnection": "Internetiühendus puudub",
"updatesDisabled": "Parandatud rakenduste värskendamine on hetkel keelatud. Paranda rakendus uuesti."
"noConnection": "Internetiühendus puudub"
},
"applicationItem": {},
"latestCommitCard": {
"loadingLabel": "Laadimine...",
"timeagoLabel": "${time} tagasi"
@ -36,9 +33,7 @@
"patchButton": "Parandus"
},
"appSelectorCard": {
"noAppsLabel": "Ühtegi rakendust ei tuvastatud",
"currentVersion": "Praegune",
"suggestedVersion": "Soovitatud"
"noAppsLabel": "Ühtegi rakendust ei tuvastatud"
},
"patchSelectorCard": {
"widgetTitle": "Valige parandused",
@ -61,9 +56,6 @@
"viewTitle": "Valige parandused",
"searchBarHint": "Otsi parandustest"
},
"patchOptionsView": {},
"patchItem": {},
"installerView": {},
"settingsView": {
"exportSectionTitle": "Import & eksport",
"aboutLabel": "Teave",
@ -96,6 +88,5 @@
},
"contributorsView": {
"widgetTitle": "Panustajad"
},
"installErrorDialog": {}
}
}
}

View File

@ -3,12 +3,10 @@
"cancelButton": "انصراف",
"quitButton": "خروج",
"updateButton": "به‌روزرسانی",
"installed": "نسخه نصب شده:${version}",
"suggested": "پیشنهاد شده:${version}",
"yesButton": "بله",
"noButton": "خیر",
"warning": "هشدار",
"options": "گزینه ها",
"notice": "توجه",
"noShowAgain": "دوباره نشان داده نشود",
"add": "افزودن",
@ -45,9 +43,7 @@
"requiredOptionDialogText": "بعضی از تنظیمات پچ باید انتخاب شود."
},
"appSelectorCard": {
"noAppsLabel": "هیچ برنامه ای یافت نشد",
"currentVersion": "فعلی",
"suggestedVersion": "پیشنهادی"
"noAppsLabel": "هیچ برنامه ای یافت نشد"
},
"patchSelectorCard": {
"widgetTitle": "پچ ها را انتخاب کنید",
@ -75,12 +71,5 @@
"doneButton": "انجام شد",
"defaultTooltip": "تمام پچ های پیشفرض انتخاب شود",
"noneTooltip": "حذف انتخاب همه پچ ها"
},
"patchOptionsView": {},
"patchItem": {},
"installerView": {},
"settingsView": {},
"appInfoView": {},
"contributorsView": {},
"installErrorDialog": {}
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Sulje",
"quitButton": "Sulje",
"updateButton": "Päivitä",
"enabledLabel": "Käytössä",
"disabledLabel": "Ei käytössä",
"installed": "Asennettu: ${version}",
"suggested": "Ehdotettu: ${version}",
"yesButton": "Kyllä",
"noButton": "Ei",
"warning": "Varoitus",
"options": "Asetukset",
"notice": "Huomautus",
"noShowAgain": "Älä näytä tätä uudelleen",
"add": "Lisää",
@ -29,8 +25,6 @@
"updatesSubtitle": "Päivitykset",
"patchedSubtitle": "Paikatut sovellukset",
"changeLaterSubtitle": "Voit muuttaa tätä aseutksista koska tahansa.",
"noUpdates": "Päivityksiä ei ole saatavilla",
"WIP": "Työn alla...",
"noInstallations": "Paikattuja sovelluksia ei ole asennettu",
"installUpdate": "Jatketaanko päivityksen asennusta?",
"updateSheetTitle": "Päivitä ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Ladataanko tarvittavat tiedostot?",
"downloadConsentDialogText": "Revanced Managerin on ladattava kunnollista toimintaa varten tarvittavat tiedostot.",
"downloadConsentDialogText2": "Tämä yhdistää osoitteeseen ${url}.",
"checkUpdateDialogTitle": "Tarkistetaanko päivitykset?",
"checkUpdateDialogText": "Haluatko ReVanced Managerin tarkistavan päivitykset automaattisesti?",
"notificationTitle": "Päivitys on ladattu",
"notificationText": "Asenna se napauttamalla",
"downloadingMessage": "Päivitystä ladataan...",
"downloadedMessage": "Päivitys on ladattu",
"installingMessage": "Päivitystä asennetaan...",
"errorDownloadMessage": "Päivityksen lataus epäonnistui",
"errorInstallMessage": "Päivityksen asennus epäonnistui",
"noConnection": "Internet-yhteyttä ei ole",
"updatesDisabled": "Paikatun sovelluksen päivittäminen ei ole tällä hetkellä käytössä. Paikkaa sovellus uudelleen."
"noConnection": "Internet-yhteyttä ei ole"
},
"applicationItem": {
"infoButton": "Tietoja"
},
"latestCommitCard": {
"loadingLabel": "Ladataan...",
"timeagoLabel": "${time} sitten",
"patcherLabel": "Paikkaaja: ",
"managerLabel": "Manager: ",
"updateButton": "Päivitä Manager"
"timeagoLabel": "${time} sitten"
},
"patcherView": {
"widgetTitle": "Paikkaaja",
"patchButton": "Paikkaa",
"armv7WarningDialogText": "Paikkausta ei vielä tueta ARMv7-laitteissa ja se voi epäonnistua. Jatketaanko silti?",
"removedPatchesWarningDialogText": "Seuraavat paikkaukset on poistettu edellisen käyttökerran jälkeen.\n\n${patches}\n\nJatketaanko silti?",
"requiredOptionDialogText": "Joitakin paikkausasetuksia on määritettävä."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Valitut sovellukset",
"widgetSubtitle": "Sovellusta ei valittu",
"noAppsLabel": "Sovelluksia ei löytynyt",
"currentVersion": "Nykyinen",
"suggestedVersion": "Ehdotettu",
"anyVersion": "Kaikki versiot"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Oma arvo",
"setToNull": "Aseta tyhjäksi",
"nullValue": "Tämä valinta arvo on tällä hetkellä nolla",
"resetOptionsTooltip": "Palauta paikkausasetukset",
"viewTitle": "Paikkausasetukset",
"saveOptions": "Tallenna",
"addOptions": "Lisää asetuksia",
"unselectPatch": "Peru korjauksen valinta",
"tooltip": "Enemmän syöteasetuksia",
"selectFilePath": "Valitse tiedostosijainti",
"selectFolder": "Valitse kansio",
"selectOption": "Valitse asetus",
"requiredOption": "Tämän asetuksen asettaminen on pakollinen",
"unsupportedOption": "Tätä asetusta ei tueta",
"requiredOptionNull": "Seuraavat asetukset on määritettävä:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Käytä oletusvalintaa"
},
"installerView": {
"widgetTitle": "Asentaja",
"installType": "Valitse asennustyyppi",
"installTypeDescription": "Valitse asennustyyppi, jolla jatketaan.",
"installButton": "Asenna",
@ -150,7 +129,6 @@
"warning": "Poista paikatun sovelluksen automaattiset päivitykset käytöstä odottamattomien ongelmien välttämiseksi.",
"pressBackAgain": "Peru painamalla takaisin-painiketta uudelleen",
"openButton": "Avaa",
"shareButton": "Jaa tiedosto",
"notificationTitle": "ReVanced Manager suorittaa paikkauksia",
"notificationText": "Napauta palataksesi hallintasovellukseen",
"exportApkButtonTooltip": "Via paikattu APK",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Nauti paremmin laitettasi vastaavasta käyttökokemuksesta",
"languageLabel": "Kieli",
"languageUpdated": "Kieli on vaihdettu",
"englishOption": "Englanti",
"sourcesLabel": "Vaihtoehtoiset lähteet",
"sourcesLabelHint": "Määritä käytöstä poistettujen kohteiden ja käytöstä poistettujen integraatioiden vaihtoehtoiset lähteet",
"sourcesIntegrationsLabel": "Integraatioiden lähde",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "Asennus epäonnistui, koska paikatun sovelluksen versio on asennettua vanhempi.\n\nPoistetaanko sovelluksen asennus ja yritetään uudelleen?",
"status_unknown_description": "Asennus epäonnistui tuntemattomasta syystä. Yritä uudelleen."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Kalimutan",
"quitButton": "Itigil",
"updateButton": "Magbago",
"enabledLabel": "Makaya",
"disabledLabel": "Hindi",
"installed": "Naka-install: ${version}",
"suggested": "Version payo ng ReVanced: ${version}",
"yesButton": "Sige",
"noButton": "Hindi",
"warning": "Babala",
"options": "Mga Pagpipilian",
"notice": "Pabatid",
"noShowAgain": "Wag na ipakita ito muli",
"add": "Idagdag",
@ -29,7 +25,6 @@
"updatesSubtitle": "Mga Pagbabago",
"patchedSubtitle": "Naka-patch nga aplikasyon",
"changeLaterSubtitle": "Pwede mo palitan ito sa settings mamaya.",
"noUpdates": "Walang pagbabagong mayroon",
"downloadingMessage": "Nagda-download ng update..."
},
"applicationItem": {
@ -39,10 +34,6 @@
"loadingLabel": "Naglo-load...",
"timeagoLabel": "${time} ang nakalipas"
},
"patcherView": {},
"appSelectorCard": {
"currentVersion": "Ngayong Bersyon"
},
"patchSelectorCard": {
"widgetEmptySubtitle": "Walang patches ang napili"
},
@ -61,9 +52,6 @@
"defaultChip": "Default",
"noneChip": "Wala"
},
"patchOptionsView": {},
"patchItem": {},
"installerView": {},
"settingsView": {
"systemThemeLabel": "Sistema",
"lightThemeLabel": "Liwanag",
@ -82,7 +70,5 @@
"uninstallDialogText": "Gusto mo bang i-alis ang aplikasyong ito?",
"patchedDateHint": "${date} at ${time}",
"appliedPatchesHint": "${quantity} ang naka-apply nga patches"
},
"contributorsView": {},
"installErrorDialog": {}
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Ignorer",
"quitButton": "Quitter",
"updateButton": "Mettre à jour",
"enabledLabel": "Activé",
"disabledLabel": "Désactivé",
"installed": "Version installée : ${version}",
"suggested": "Version suggérée : ${version}",
"yesButton": "Oui",
"noButton": "Non",
"warning": "Avertissement",
"options": "Options",
"notice": "Remarque",
"noShowAgain": "Ne plus afficher",
"add": "Ajouter",
@ -29,8 +25,6 @@
"updatesSubtitle": "Mises à jour",
"patchedSubtitle": "Applications patchées",
"changeLaterSubtitle": "Vous pouvez changer cela dans les paramètres ultérieurement.",
"noUpdates": "Aucune mise à jour disponible",
"WIP": "Bientôt disponible...",
"noInstallations": "Aucune application patchée installée",
"installUpdate": "Continuer à installer la mise à jour ?",
"updateSheetTitle": "Mettre à jour ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Télécharger les fichiers requis ?",
"downloadConsentDialogText": "ReVanced Manager à besoin de télécharger des fichiers nécessaires pour fonctionner correctement.",
"downloadConsentDialogText2": "Vous allez être connecté à ${url}.",
"checkUpdateDialogTitle": "Vérifier les mises à jour ?",
"checkUpdateDialogText": "Voulez-vous que ReVanced Manager vérifie les mises à jour automatiquement ?",
"notificationTitle": "Mise à jour téléchargée",
"notificationText": "Cliquez pour installer la mise à jour",
"downloadingMessage": "Téléchargement de la mise à jour...",
"downloadedMessage": "Mise à jour téléchargée",
"installingMessage": "Installation de la mise à jour...",
"errorDownloadMessage": "Impossible de télécharger la mise à jour",
"errorInstallMessage": "Impossible d'installer la mise à jour",
"noConnection": "Aucune connexion internet",
"updatesDisabled": "La mise à jour d'une application patchée est actuellement désactivée. Repatchez l'application."
"noConnection": "Aucune connexion internet"
},
"applicationItem": {
"infoButton": "Info"
},
"latestCommitCard": {
"loadingLabel": "Chargement...",
"timeagoLabel": "Il y a ${time}",
"patcherLabel": "Patcheur : ",
"managerLabel": "Manager: ",
"updateButton": "Mettre à jour le Manager"
"timeagoLabel": "Il y a ${time}"
},
"patcherView": {
"widgetTitle": "Patcheur",
"patchButton": "Patcher",
"armv7WarningDialogText": "Patcher sur des appareils sur ARMv7 n'est pas encore supporté et pourrait échouer. Continuer quand même ?",
"removedPatchesWarningDialogText": "Les patchs suivants ont été supprimés depuis la dernière fois que vous les avez utilisés.\n\n${patches}\n\nContinuer quand même ?",
"requiredOptionDialogText": "Certaines options de patch doivent être définies."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Application sélectionnée",
"widgetSubtitle": "Aucune application sélectionnée",
"noAppsLabel": "Aucune application trouvée",
"currentVersion": "Version actuelle",
"suggestedVersion": "Version suggérée",
"anyVersion": "Toute les versions"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Valeur personnalisée",
"setToNull": "Définir à NULL",
"nullValue": "Cette valeur d'option est actuellement nulle",
"resetOptionsTooltip": "Réinitialiser les options de patch",
"viewTitle": "Options de patch",
"saveOptions": "Enregistrer",
"addOptions": "Ajouter des options",
"unselectPatch": "Désélectionner le patch",
"tooltip": "Plus d'options d'entrée",
"selectFilePath": "Sélectionner l'emplacement du fichier",
"selectFolder": "Sélectionner le dossier",
"selectOption": "Sélectionner une option",
"requiredOption": "Définir cette option est nécessaire",
"unsupportedOption": "Cette option n'est pas prise en charge",
"requiredOptionNull": "Les options suivantes doivent être définies :\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Utiliser la sélection par défaut"
},
"installerView": {
"widgetTitle": "Installateur",
"installType": "Choisissez le mode d'installation",
"installTypeDescription": "Sélectionner le mode d'installation avec lequel continuer.",
"installButton": "Installer",
@ -150,7 +129,6 @@
"warning": "Désactiver les mises à jour automatiques pour l'application patchée afin d'éviter les problèmes inattendus.",
"pressBackAgain": "Appuyez sur retour une nouvelle fois pour quitter",
"openButton": "Ouvrir",
"shareButton": "Partager le fichier",
"notificationTitle": "ReVanced Manager est en train de patcher",
"notificationText": "Appuyer pour revenir à linstallateur",
"exportApkButtonTooltip": "Exporter l'APK patché",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Profitez d'une expérience plus proche de votre appareil",
"languageLabel": "Langue",
"languageUpdated": "Langue mise à jour",
"englishOption": "Anglais",
"sourcesLabel": "Sources alternatives",
"sourcesLabelHint": "Configure les sources alternatives pour les patchs et les intégrations ReVanced",
"sourcesIntegrationsLabel": "Source des intégrations",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "L'installation a échoué car l'application patchée a une version inférieure à l'application installée.\n\nDésinstaller l'application et réessayer?",
"status_unknown_description": "L'installation a échoué pour une raison inconnue. Veuillez réessayer."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "התעלם",
"quitButton": "יציאה",
"updateButton": "עדכן",
"enabledLabel": "הופעל",
"disabledLabel": "הושבת",
"installed": "מותקן: ${version}",
"suggested": "מוצעת: ${version}",
"yesButton": "כן",
"noButton": "לא",
"warning": "אזהרה",
"options": "אפשרויות",
"notice": "התראה",
"noShowAgain": "אל תציג זאת שוב",
"add": "הוסף",
@ -29,8 +25,6 @@
"updatesSubtitle": "עדכונים",
"patchedSubtitle": "אפליקציות מתוקנות",
"changeLaterSubtitle": "ניתן לשנות זאת בהגדרות מאוחר יותר.",
"noUpdates": "אין עדכונים זמינים",
"WIP": "עבודה בתהליך...",
"noInstallations": "אין אפליקציות מתוקנת מותקנות",
"installUpdate": "המשך להתקין את העדכון?",
"updateSheetTitle": "עדכן את ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "להוריד קבצי עזר?",
"downloadConsentDialogText": "ReVanced Manager צריך להוריד קבצי עזר על מנת לעבוד כמו שצריך.",
"downloadConsentDialogText2": "זה יחבר אותך ל${url}.",
"checkUpdateDialogTitle": "לבדוק עדכונים?",
"checkUpdateDialogText": "מעדיף ש-ReVanced Manager יבדוק עדכונים אוטומטית?",
"notificationTitle": "העדכון הורד",
"notificationText": "הקש כדי להתקין את העדכון",
"downloadingMessage": "מוריד עדכון...",
"downloadedMessage": "עדכון הורד",
"installingMessage": "מתקין עדכון...",
"errorDownloadMessage": "הורדת קובץ העדכון נכשלה",
"errorInstallMessage": "לא ניתן להתקין את העדכון",
"noConnection": "אין חיבור לאינטרנט",
"updatesDisabled": "עדכון אפליקציה מתוקנת מושבת כרגע. תקן שוב את האפליקציה."
"noConnection": "אין חיבור לאינטרנט"
},
"applicationItem": {
"infoButton": "מידע"
},
"latestCommitCard": {
"loadingLabel": "טוען...",
"timeagoLabel": "לפני ${time}",
"patcherLabel": "מתקן: ",
"managerLabel": "מנהל: ",
"updateButton": "עדכן את Manager"
"timeagoLabel": "לפני ${time}"
},
"patcherView": {
"widgetTitle": "מתקן",
"patchButton": "תיקון",
"armv7WarningDialogText": "תיקון במכשירי ARMv7 לא נתמך כרגע ואולי יכשל. להמשיך בכל זאת?",
"removedPatchesWarningDialogText": "התיקונים הבאים הוסרו מאז הפעם האחרונה שהשתמשת בהם.\n${patches}\nלהמשיך בכל זאת?",
"requiredOptionDialogText": "כמה אפשרויות תיקון חייבות להיקבע."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "אפליקציה שנבחרה",
"widgetSubtitle": "לא נבחרה אפליקציה",
"noAppsLabel": "לא נמצאו יישומים",
"currentVersion": "נוֹכְחִי",
"suggestedVersion": "מוצע",
"anyVersion": "כל גרסה"
},
"patchSelectorCard": {
@ -117,15 +100,11 @@
},
"patchOptionsView": {
"customValue": "ערך מותאם אישית",
"resetOptionsTooltip": "אפס אפשרויות תיקונים",
"viewTitle": "אפשרויות תיקון",
"saveOptions": "שמור",
"addOptions": "הוסף אפשרויות",
"deselectPatch": "בטל את בחירת התיקון",
"tooltip": "אפשרויות קלט נוספות",
"selectFilePath": "בחר נתיב קובץ",
"selectFolder": "בחר תיקייה",
"selectOption": "בחירת אפשרות",
"requiredOption": "האפשרות הזו דרושה",
"unsupportedOption": "האפשרות הזו אינה נתמכת",
"requiredOptionNull": "האפשרויות הבאות חייבות להיקבע:\n\n${options}"
@ -137,7 +116,6 @@
"patchesChangeWarningDialogButton": "השתמש בבחירה ברירת המחדל"
},
"installerView": {
"widgetTitle": "מתקין",
"installType": "בחר סוג התקנה",
"installButton": "התקן",
"installRootType": "טען",
@ -145,7 +123,6 @@
"warning": "השבת עדכונים אוטומטיים עבור באפליקציה המתוקנת כדי למנוע בעיות בלתי צפויות.",
"pressBackAgain": "לחץ שוב כדי לבטל",
"openButton": "פתח",
"shareButton": "שתף קובץ",
"notificationTitle": "מנהל העדכונים בתהליך תיקון",
"notificationText": "לחץ כדי לחזור להתקנה",
"exportApkButtonTooltip": "יצא APK מתוקן",
@ -168,7 +145,6 @@
"dynamicThemeLabel": "Material you",
"dynamicThemeHint": "תהנה/י מחוויה קרובה יותר למכשיר שלך",
"languageLabel": "שפה",
"englishOption": "אנגלית",
"sourcesIntegrationsLabel": "מקור אינטגרציות",
"sourcesResetDialogTitle": "איפוס",
"sourcesResetDialogText": "האם אתה בטוח שברצונך לאפס את המקורות לערכי ברירת המחדל שלהם?",
@ -265,4 +241,4 @@
"install_failed_version_downgrade_description": "ההתקנה נכשלה בגלל שהאפליקציה המתוקנת היא גרסה נמוכה יותר מהאפליקציה המותקנת.\n\nלהסיר את האפליקציה ולנסות שוב?",
"status_unknown_description": "ההתקנה נכשלה מסיבה לא ידועה. בבקשה נסה שוב."
}
}
}

View File

@ -4,13 +4,10 @@
"dismissButton": "बंद करें",
"quitButton": "छोड़ें",
"updateButton": "अपडेट करें",
"enabledLabel": "सक्रिय",
"installed": "इंस्टॉल्ड: ${version}",
"suggested": "सुझाया गया: ${version}",
"yesButton": "हाँ",
"noButton": "नहीं",
"warning": "चेतावनी",
"options": "विकल्प",
"notice": "सूचना",
"noShowAgain": "इसे पुनः न दिखाएँ",
"add": "ऐड करें",
@ -33,8 +30,7 @@
"installingMessage": "अपडेट इंस्टॉल हो रहा है",
"errorDownloadMessage": "अपडेट डाउनलोड करने मे असफल",
"errorInstallMessage": "अपडेट इंस्टॉल करने में असफल",
"noConnection": "कोई इंटरनेट कनेक्शन नहीं",
"updatesDisabled": "पैच किए गए ऐप को अपडेट करना वर्तमान में अक्षम है।\nएप को फिर से पैच करें।"
"noConnection": "कोई इंटरनेट कनेक्शन नहीं"
},
"applicationItem": {
"infoButton": "जानकारी"
@ -48,9 +44,7 @@
"patchButton": "पैच"
},
"appSelectorCard": {
"noAppsLabel": "कोई एप्लिकेशन नहीं मिला।",
"currentVersion": "वर्तमान",
"suggestedVersion": "सुझाव"
"noAppsLabel": "कोई एप्लिकेशन नहीं मिला।"
},
"patchSelectorCard": {
"widgetTitle": "पैच चुने",
@ -140,6 +134,5 @@
},
"contributorsView": {
"widgetTitle": "योगदान कर्ता"
},
"installErrorDialog": {}
}
}
}

View File

@ -2,7 +2,6 @@
"okButton": "U redu",
"cancelButton": "Poništi",
"updateButton": "Ažuriraj",
"installed": "Instalirana verzija: ${version}",
"suggested": "Preporučena verzija: ${version}",
"yesButton": "Da",
"noButton": "Ne",
@ -24,8 +23,7 @@
"installingMessage": "Instaliranje ažuriranja...",
"errorDownloadMessage": "Nije moguće preuzeti ažuriranje",
"errorInstallMessage": "Nije moguće instalirati ažuriranje",
"noConnection": "Nema internetske veze",
"updatesDisabled": "Ažuriranje zakrpane aplikacije trenutno je onemogućeno. Ponovno zakrpajte aplikaciju."
"noConnection": "Nema internetske veze"
},
"applicationItem": {
"infoButton": "Informacije"
@ -39,9 +37,7 @@
"patchButton": "Zakrpi"
},
"appSelectorCard": {
"noAppsLabel": "Nije pronađena nijedna aplikacija",
"currentVersion": "Trenutno",
"suggestedVersion": "Preporučeno"
"noAppsLabel": "Nije pronađena nijedna aplikacija"
},
"patchSelectorCard": {
"widgetTitle": "Odaberite zakrpe",
@ -68,7 +64,6 @@
"noneTooltip": "Poništi odabir svih zakrpa",
"noPatchesFound": "Za odabranu aplikaciju nije pronađena nijedna zakrpa"
},
"patchOptionsView": {},
"patchItem": {
"unsupportedDialogText": "Odabirom ove zakrpe mogu se pojaviti greške pri krpanju.\n\nVerzija aplikacije: ${packageVersion}\nPodržane verzije:\n${supportedVersions}"
},
@ -126,6 +121,5 @@
},
"contributorsView": {
"widgetTitle": "Pridonositelji"
},
"installErrorDialog": {}
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Elvetés",
"quitButton": "Kilépés",
"updateButton": "Frissítés",
"enabledLabel": "Engedélyezve",
"disabledLabel": "Letiltva",
"installed": "Telepített: ${version}",
"suggested": "Javasolt: ${version}",
"yesButton": "Igen",
"noButton": "Nem",
"warning": "Figyelmeztetés",
"options": "Beállítások",
"notice": "Értesítés",
"noShowAgain": "Ne jelenjen meg többé",
"add": "Hozzáadás",
@ -29,8 +25,6 @@
"updatesSubtitle": "Frissítések",
"patchedSubtitle": "Patchelt alkalmazások",
"changeLaterSubtitle": "Ezt később módosíthatja a beállításokban.",
"noUpdates": "Nincs elérhető frissítés",
"WIP": "Folyamatban...",
"noInstallations": "Nincs telepítve patchelt alkalmazás",
"installUpdate": "Folytatja a frissítés telepítését?",
"updateSheetTitle": "ReVanced Manager frissítése",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Letölti a szükséges fájlokat?",
"downloadConsentDialogText": "A ReVanced Managernek le kell töltenie a szükséges fájlokat a megfelelő működéshez.",
"downloadConsentDialogText2": "Csatlakozni fog ehhez: ${url}.",
"checkUpdateDialogTitle": "Frissítések keresése?",
"checkUpdateDialogText": "Szeretné, hogy a ReVanced Manager automatikusan ellenőrizze a frissítéseket?",
"notificationTitle": "Frissítés letöltve",
"notificationText": "Koppintson a frissítés telepítéséhez",
"downloadingMessage": "Frissítés letöltése...",
"downloadedMessage": "Frissítés letöltve",
"installingMessage": "Frissítés telepítése...",
"errorDownloadMessage": "Frissítés letöltése sikertelen",
"errorInstallMessage": "Frissítés telepítése sikertelen",
"noConnection": "Nincs internetkapcsolat",
"updatesDisabled": "A patchelt alkalmazások frissítése jelenleg nem lehetséges, ehelyett újra kell patchelni."
"noConnection": "Nincs internetkapcsolat"
},
"applicationItem": {
"infoButton": "Infó"
},
"latestCommitCard": {
"loadingLabel": "Betöltés...",
"timeagoLabel": "Frissítve: ${time}",
"patcherLabel": "Patchelő: ",
"managerLabel": "Manager: ",
"updateButton": "Manager frissítése"
"timeagoLabel": "Frissítve: ${time}"
},
"patcherView": {
"widgetTitle": "Patchelő",
"patchButton": "Patch",
"armv7WarningDialogText": "A patchelés az ARMv7 eszközökön még nem támogatott, és sikertelen lehet. Folytatja?",
"removedPatchesWarningDialogText": "A következő patcheket a legutóbbi használatuk óta eltávolították.\n\n${patches}\n\nMindenképpen folytatja?",
"requiredOptionDialogText": "Néhány patch lehetőséget be kell állítani."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Kiválasztott alkalmazás",
"widgetSubtitle": "Nincs alkalmazás kiválasztva",
"noAppsLabel": "Nem találhatóak alkalmazások",
"currentVersion": "Jelenlegi",
"suggestedVersion": "Javasolt",
"anyVersion": "Bármilyen verzió"
},
"patchSelectorCard": {
@ -118,15 +101,11 @@
},
"patchOptionsView": {
"customValue": "Egyedi érték",
"resetOptionsTooltip": "Patch beállítások visszaállítása",
"viewTitle": "Patch beállítások",
"saveOptions": "Mentés",
"addOptions": "Opciók hozzáadása",
"deselectPatch": "Patch kijelölésének törlése",
"tooltip": "További beviteli lehetőségek",
"selectFilePath": "Válassza ki a fájl elérési útját",
"selectFolder": "Mappa kiválasztása",
"selectOption": "Opció kiválasztása",
"requiredOption": "Ez a beállítás kötelező",
"unsupportedOption": "Ez az opció nem támogatott",
"requiredOptionNull": "A következő opciókat kell beállítani:\n\n${options}"
@ -139,7 +118,6 @@
"patchesChangeWarningDialogButton": "Használja az alapértelmezett kijelölést"
},
"installerView": {
"widgetTitle": "Telepítő",
"installType": "Válassza ki a telepítés típusát",
"installTypeDescription": "Válassza ki a telepítés típusát a folytatáshoz.",
"installButton": "Telepítés",
@ -148,7 +126,6 @@
"warning": "A váratlan problémák elkerülése érdekében tiltsa le a patchelt alkalmazás automatikus frissítéseit.",
"pressBackAgain": "A visszavonáshoz nyomja meg a vissza gombot ismét",
"openButton": "Megnyitás",
"shareButton": "Fájl megosztása",
"notificationTitle": "A ReVanced Manager jelenleg patchel",
"notificationText": "Koppintson a telepítőhöz való visszalépéshez",
"exportApkButtonTooltip": "Patchelt apk exportálása",
@ -173,7 +150,6 @@
"dynamicThemeHint": "Élvezze az eszközéhez közelibb élményt",
"languageLabel": "Nyelv",
"languageUpdated": "Nyelv frissítve",
"englishOption": "Angol",
"sourcesLabel": "Alternatív források",
"sourcesLabelHint": "Állítsa be a ReVanced Patchek és ReVanced Integrációk alternatív forrásait",
"sourcesIntegrationsLabel": "Integrációk - forrás",
@ -299,4 +275,4 @@
"install_failed_version_downgrade_description": "A telepítés meghiúsult, mert a patchelt alkalmazás régebbi verzió, mint a telepített alkalmazás.\n\nTávolítsa el az alkalmazást, és próbálja újra?",
"status_unknown_description": "A telepítés ismeretlen ok miatt meghiúsult. Kérem próbálja újra."
}
}
}

View File

@ -17,4 +17,4 @@
"appInfoView": {},
"contributorsView": {},
"installErrorDialog": {}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Abaikan",
"quitButton": "Keluar",
"updateButton": "Perbarui",
"enabledLabel": "Aktif",
"disabledLabel": "Nonaktif",
"installed": "Terpasang: ${version}",
"suggested": "Disarankan: ${version}",
"yesButton": "Iya",
"noButton": "Tidak",
"warning": "Peringatan",
"options": "Pengaturan",
"notice": "Pemberitahuan",
"noShowAgain": "Jangan tampilkan lagi",
"add": "Tambah",
@ -29,8 +25,6 @@
"updatesSubtitle": "Pembaruan",
"patchedSubtitle": "Aplikasi tertambal",
"changeLaterSubtitle": "Anda dapat mengubahnya di pengaturan nanti.",
"noUpdates": "Tidak ada pembaruan",
"WIP": "Sedang dikerjakan...",
"noInstallations": "Aplikasi tambalan tidak terpasang",
"installUpdate": "Lanjutkan untuk mengunduh pembaruan?",
"updateSheetTitle": "Perbarui Manajer ReVanced",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Unduh file yang diperlukan?",
"downloadConsentDialogText": "Manajer ReVanced perlu mengunduh file yang diperlukan agar berfungsi dengan baik.",
"downloadConsentDialogText2": "Ini akan menghubungkan Anda ke ${url}.",
"checkUpdateDialogTitle": "Periksa pembaruan yang tersedia?",
"checkUpdateDialogText": "Apakah anda ingin Manajer ReVanced untuk mengecek pembaruan secara otomatis?",
"notificationTitle": "Pembaruan diunduh",
"notificationText": "Ketuk untuk memperbarui",
"downloadingMessage": "Mengunduh pembaruan...",
"downloadedMessage": "Pembaruan telah diunduh",
"installingMessage": "Memasang pembaruan...",
"errorDownloadMessage": "Tidak dapat mengunduh pembaruan",
"errorInstallMessage": "Gagal memasang pembaharuan",
"noConnection": "Tidak ada koneksi internet",
"updatesDisabled": "Pembaharuan aplikasi tambalan sedang dinonaktifkan. Silahkan ulangi penambalan aplikasi."
"noConnection": "Tidak ada koneksi internet"
},
"applicationItem": {
"infoButton": "Informasi"
},
"latestCommitCard": {
"loadingLabel": "Memuat...",
"timeagoLabel": "${time} yang lalu",
"patcherLabel": "Penambal: ",
"managerLabel": "Pengelola: ",
"updateButton": "Perbarui Manager"
"timeagoLabel": "${time} yang lalu"
},
"patcherView": {
"widgetTitle": "Penambal",
"patchButton": "Tambalan",
"armv7WarningDialogText": "Menambal pada perangkat ARMv7 belum didukung dan mungkin gagal. Lanjutkan saja?",
"removedPatchesWarningDialogText": "Patch berikut telah dihapus sejak terakhir kali Anda menggunakannya.\n\n${patches}\n\nTetap lanjut?",
"requiredOptionDialogText": "Beberapa opsi patch harus diatur."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Aplikasi yang dipilih",
"widgetSubtitle": "Tidak ada aplikasi yang dipilih",
"noAppsLabel": "Aplikasi tidak ditemukan",
"currentVersion": "Saat ini",
"suggestedVersion": "Disarankan",
"anyVersion": "Versi apa saja"
},
"patchSelectorCard": {
@ -118,15 +101,11 @@
},
"patchOptionsView": {
"customValue": "Nilai kustom",
"resetOptionsTooltip": "Mengatur ulang opsi tambalan",
"viewTitle": "Opsi tambalan",
"saveOptions": "Simpan",
"addOptions": "Tambahkan opsi",
"deselectPatch": "Lepas tambalan",
"tooltip": "Opsi masukan lainnya",
"selectFilePath": "Pilih lokasi berkas",
"selectFolder": "Pilih folder",
"selectOption": "Pilih opsi",
"requiredOption": "Pilihan ini diperlukan",
"unsupportedOption": "Pilihan ini tidak didukung",
"requiredOptionNull": "Pilihan ini harus terpilih:\n\n${options}"
@ -139,7 +118,6 @@
"patchesChangeWarningDialogButton": "Gunakan pemilihan bawaan"
},
"installerView": {
"widgetTitle": "Pemasang",
"installType": "Pilih tipe pemasang",
"installTypeDescription": "Pilih jenis instalasi untuk melanjutkan.",
"installButton": "Pasang",
@ -148,7 +126,6 @@
"warning": "Nonaktifkan pembaruan pada aplikasi tertambal untuk menghindari isu.",
"pressBackAgain": "Tekan tombol balik lagi untuk membatalkan",
"openButton": "Buka",
"shareButton": "Bagikan berkas",
"notificationTitle": "ReVanced Manager sedang menambal",
"notificationText": "Ketuk untuk kembali ke pemasang",
"exportApkButtonTooltip": "Ekspor APK yang ditambal",
@ -173,7 +150,6 @@
"dynamicThemeHint": "Nikmati pengalaman lebih dekat ke perangkat Anda",
"languageLabel": "Bahasa",
"languageUpdated": "Bahasa diperbaharui",
"englishOption": "Bahasa Inggris",
"sourcesLabel": "Sumber-sumber alternatif",
"sourcesLabelHint": "Mengonfigurasi sumber alternatif untuk ReVanced Patches dan ReVanced Integrations",
"sourcesIntegrationsLabel": "Sumber Integrasi",
@ -299,4 +275,4 @@
"install_failed_version_downgrade_description": "Instalasi gagal karena aplikasi tambalan memiliki versi yang lebih rendah daripada aplikasi yang sudah ada.\n\nCopot pemasangan aplikasi dan coba kembali?",
"status_unknown_description": "Instalasi gagal karena alasan yang tidak diketahui. Silakan coba kembali."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Chiudi",
"quitButton": "Esci",
"updateButton": "Aggiorna",
"enabledLabel": "Abilitato",
"disabledLabel": "Disabilitato",
"installed": "Installata: ${version}",
"suggested": "Consigliata: ${version}",
"yesButton": "Si",
"noButton": "No",
"warning": "Attenzione",
"options": "Opzioni",
"notice": "Avviso",
"noShowAgain": "Non mostrare più",
"add": "Aggiungi",
@ -29,8 +25,6 @@
"updatesSubtitle": "Aggiornamenti",
"patchedSubtitle": "Applicazioni patchate",
"changeLaterSubtitle": "Questo sarà modificabile nelle impostazioni in un secondo momento.",
"noUpdates": "Nessun aggiornamento disponibile",
"WIP": "Lavori in corso...",
"noInstallations": "Nessuna applicazione patchata è stata installata",
"installUpdate": "Proseguire con l'installazione dell'aggiornamento?",
"updateSheetTitle": "Aggiorna ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Scaricare i file necessari?",
"downloadConsentDialogText": "ReVanced Manager deve scaricare i file necessari per funzionare correttamente.",
"downloadConsentDialogText2": "Questo ti collegherà a ${url}.",
"checkUpdateDialogTitle": "Cercare aggiornamenti?",
"checkUpdateDialogText": "Vuoi che ReVanced Manager verifichi automaticamente la presenza di aggiornamenti?",
"notificationTitle": "Aggiornamento scaricato",
"notificationText": "Tocca per installare l'aggiornamento",
"downloadingMessage": "Download dell'aggiornamento...",
"downloadedMessage": "Aggiornamento scaricato",
"installingMessage": "Installazione dell'aggiornamento...",
"errorDownloadMessage": "Impossibile scaricare l'aggiornamento",
"errorInstallMessage": "Impossibile installare l'aggiornamento",
"noConnection": "Nessuna connessione ad internet",
"updatesDisabled": "L'aggiornamento di un'app patchata è attualmente disabilitato. Applica nuovamente la patch."
"noConnection": "Nessuna connessione ad internet"
},
"applicationItem": {
"infoButton": "Info"
},
"latestCommitCard": {
"loadingLabel": "Caricamento...",
"timeagoLabel": "${time} fa",
"patcherLabel": "Patcher: ",
"managerLabel": "Manager: ",
"updateButton": "Aggiorna Manager"
"timeagoLabel": "${time} fa"
},
"patcherView": {
"widgetTitle": "Patcher",
"patchButton": "Patch",
"armv7WarningDialogText": "Il patching sui dispositivi ARMv7 non è ancora supportato e potrebbe fallire. Continuare comunque?",
"removedPatchesWarningDialogText": "Le seguenti patch sono state rimosse dall'ultima volta che le hai usate.\n\n${patches}\n\nContinuare comunque?",
"requiredOptionDialogText": "Alcune opzioni di patch devono essere impostate."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "App selezionata",
"widgetSubtitle": "Nessuna app selezionata",
"noAppsLabel": "Nessuna applicazione trovata",
"currentVersion": "Attuale",
"suggestedVersion": "Consigliata",
"anyVersion": "Qualsiasi versione"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Valore personalizzato",
"setToNull": "Imposta a nullo",
"nullValue": "Questo valore di opzione è al momento nullo",
"resetOptionsTooltip": "Ripristina opzioni patch",
"viewTitle": "Opzioni patch",
"saveOptions": "Salva",
"addOptions": "Aggiungi opzioni",
"unselectPatch": "Deseleziona patch",
"tooltip": "Più opzioni di input",
"selectFilePath": "Seleziona percorso file",
"selectFolder": "Seleziona cartella",
"selectOption": "Seleziona opzione",
"requiredOption": "L'impostazione di questa opzione è obbligatoria",
"unsupportedOption": "Questa opzione non è supportata",
"requiredOptionNull": "È necessario impostare le seguenti opzioni:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Utilizza la selezione predefinita"
},
"installerView": {
"widgetTitle": "Installer",
"installType": "Seleziona il tipo di installazione",
"installTypeDescription": "Seleziona il tipo di installazione con cui continuare.",
"installButton": "Installa",
@ -150,7 +129,6 @@
"warning": "Disabilita gli aggiornamenti automatici per l'app patchata per evitare problemi.",
"pressBackAgain": "Premi ancora indietro per annullare",
"openButton": "Apri",
"shareButton": "Condividi file",
"notificationTitle": "ReVanced Manager è in fase di patch",
"notificationText": "Tocca per tornare all'installer",
"exportApkButtonTooltip": "Esporta APK patchato",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Goditi un'esperienza più in armonia con il tuo dispositivo",
"languageLabel": "Lingua",
"languageUpdated": "Lingua aggiornata",
"englishOption": "Inglese",
"sourcesLabel": "Sorgenti alternative",
"sourcesLabelHint": "Configura fonti alternative per ReVanced Patches e ReVanced Integrations",
"sourcesIntegrationsLabel": "Sorgente Integrazioni",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "L'installazione è fallita perché l'app patchata ha una versione minore dell'app installata.\n\nDisinstallare l'app e riprovare?",
"status_unknown_description": "L'installazione è fallita per un motivo sconosciuto. Riprova."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "取り消し",
"quitButton": "終了",
"updateButton": "更新",
"enabledLabel": "有効",
"disabledLabel": "無効",
"installed": "インストール済み: ${version}",
"suggested": "推奨: ${version}",
"yesButton": "はい",
"noButton": "いいえ",
"warning": "警告",
"options": "設定",
"notice": "お知らせ",
"noShowAgain": "今後は表示しない",
"add": "追加",
@ -29,8 +25,6 @@
"updatesSubtitle": "更新",
"patchedSubtitle": "パッチ済みのアプリ",
"changeLaterSubtitle": "この設定は後から変更できます",
"noUpdates": "利用可能な更新はありません",
"WIP": "制作中",
"noInstallations": "パッチ済みのアプリはインストールされていません",
"installUpdate": "更新を適用しますか?",
"updateSheetTitle": "ReVanced Managerを更新",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "必要なファイルをダウンロードしますか?",
"downloadConsentDialogText": "ReVanced Managerを正常に動作させるためのファイルをダウンロードする必要があります。",
"downloadConsentDialogText2": "${url} に接続します。",
"checkUpdateDialogTitle": "更新を確認しますか?",
"checkUpdateDialogText": "ReVanced Managerの更新を自動的に確認しますか?",
"notificationTitle": "更新データをダウンロードしました",
"notificationText": "タップしてアップデートをインストール",
"downloadingMessage": "更新データをダウンロードしています...",
"downloadedMessage": "アップデートのダウンロードが完了しました",
"installingMessage": "更新を適用しています...",
"errorDownloadMessage": "更新データをダウンロードできませんでした",
"errorInstallMessage": "更新を適用できませんでした",
"noConnection": "インターネットに接続されていません",
"updatesDisabled": "パッチ済みアプリのアップデートは無効になっています。もう一度パッチし直してください"
"noConnection": "インターネットに接続されていません"
},
"applicationItem": {
"infoButton": "詳細"
},
"latestCommitCard": {
"loadingLabel": "読み込み中...",
"timeagoLabel": "${time} 前",
"patcherLabel": "Patcher: ",
"managerLabel": "Manager: ",
"updateButton": "アップデートマネージャー"
"timeagoLabel": "${time} 前"
},
"patcherView": {
"widgetTitle": "パッチャー",
"patchButton": "パッチ",
"armv7WarningDialogText": "ARMv7デバイスではパッチがサポートされていません。失敗する可能性がありますが、続行しますか?",
"removedPatchesWarningDialogText": "以下のパッチはもう使用できません。\n\n${patches}\n\n続行しますか?",
"requiredOptionDialogText": "一部のパッチオプションを設定する必要があります。"
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "選択したアプリ",
"widgetSubtitle": "アプリが選択されていません",
"noAppsLabel": "アプリが見つかりません",
"currentVersion": "選択",
"suggestedVersion": "推奨",
"anyVersion": "全てのバージョン"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "カスタム値",
"setToNull": "null に設定",
"nullValue": "このオプション値は現在nullです",
"resetOptionsTooltip": "パッチ設定をリセット",
"viewTitle": "パッチ設定",
"saveOptions": "保存",
"addOptions": "オプションを追加",
"unselectPatch": "パッチの選択を解除",
"tooltip": "他の入力オプション",
"selectFilePath": "ファイルパスを選択",
"selectFolder": "フォルダーを選択",
"selectOption": "オプションを選択",
"requiredOption": "このオプションを設定する必要があります",
"unsupportedOption": "この設定はサポートされていません",
"requiredOptionNull": "以下のオプションを設定する必要があります:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "デフォルトの選択を使用"
},
"installerView": {
"widgetTitle": "インストーラー",
"installType": "インストールの種類を選択",
"installTypeDescription": "インストールの種類を選択して続行します。",
"installButton": "インストール",
@ -150,7 +129,6 @@
"warning": "予期しない問題を避けるため、パッチを適用したアプリの自動更新を無効にします。",
"pressBackAgain": "キャンセルするには、もう一度戻るを押してください",
"openButton": "開く",
"shareButton": "ファイルを共有",
"notificationTitle": "ReVanced Manager はパッチを適用しています",
"notificationText": "インストーラーに戻るにはタップしてください",
"exportApkButtonTooltip": "パッチ済みの APK をエクスポート",
@ -175,7 +153,6 @@
"dynamicThemeHint": "よりデバイスに近い体験が楽しめます",
"languageLabel": "言語",
"languageUpdated": "言語が更新されました",
"englishOption": "英語",
"sourcesLabel": "代替ソース",
"sourcesLabelHint": "ReVanded PatchesとReVanced Integrationsの代替ソースを設定",
"sourcesIntegrationsLabel": "Integrations のソース",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "インストールに失敗しました。パッチを当てたアプリがインストールされたアプリよりも低いバージョンであるためです。\n\nアプリをアンインストールしてもう一度お試しください。",
"status_unknown_description": "不明な理由によりインストールに失敗しました。もう一度やり直してください。"
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Елемеу",
"quitButton": "Шығу",
"updateButton": "Жаңарту",
"enabledLabel": "Қосулы",
"disabledLabel": "Сөндірулі",
"installed": "Орнатылған: ${version}",
"suggested": "Ұсынылған: ${version}",
"yesButton": "Иә",
"noButton": "Жоқ",
"warning": "Назар аударыңыз",
"options": "Баптау",
"notice": "Ескерту",
"noShowAgain": "Енді көрсетілмесін",
"add": "Қосу",
@ -29,8 +25,6 @@
"updatesSubtitle": "Жаңартулар",
"patchedSubtitle": "Патчталған қолданбалар",
"changeLaterSubtitle": "Мұны кейінірек баптауда өзгертіп ала аласыз.",
"noUpdates": "Жаңарту жоқ",
"WIP": "Жүктеліп жатыр...",
"noInstallations": "Патчталған қолданбалар орнатылмаған",
"installUpdate": "Жаңартуды әрі қарай орната берейік пе?",
"updateSheetTitle": "ReVanced Manager-ді жаңарту",
@ -39,20 +33,5 @@
"updateChangelogTitle": "Өзгерту тарихы",
"updateDialogText": "${file} үшін жаңарту қолжетімді.\n\nҚазіргі ${version} нұсқасы орнатылып тұр.",
"downloadConsentDialogTitle": "Керек файлды жүктеп алайық па?"
},
"applicationItem": {},
"latestCommitCard": {},
"patcherView": {},
"appSelectorCard": {},
"patchSelectorCard": {},
"socialMediaCard": {},
"appSelectorView": {},
"patchesSelectorView": {},
"patchOptionsView": {},
"patchItem": {},
"installerView": {},
"settingsView": {},
"appInfoView": {},
"contributorsView": {},
"installErrorDialog": {}
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "무시하기",
"quitButton": "종료",
"updateButton": "업데이트",
"enabledLabel": "활성화됨",
"disabledLabel": "비활성화됨",
"installed": "설치된 앱 버전: ${version}",
"suggested": "권장 앱 버전: ${version}",
"yesButton": "예",
"noButton": "아니요",
"warning": "경고",
"options": "옵션",
"notice": "알림",
"noShowAgain": "다시 보지 않기",
"add": "추가",
@ -29,8 +25,6 @@
"updatesSubtitle": "업데이트",
"patchedSubtitle": "설치된 앱",
"changeLaterSubtitle": "나중에 설정에서 변경할 수 있습니다.",
"noUpdates": "새 업데이트가 없습니다.",
"WIP": "개발 중 입니다...",
"noInstallations": "아직 설치된 ReVanced 앱이 없습니다.",
"installUpdate": "업데이트를 계속 설치하겠습니까?",
"updateSheetTitle": "ReVanced Manager 업데이트",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "필요한 파일을 다운로드하시겠습니까?",
"downloadConsentDialogText": "ReVanced Manager가 제대로 작동하려면 필요한 파일을 다운로드해야 합니다.",
"downloadConsentDialogText2": "진행하면 '${url}'에 연결하게 됩니다.",
"checkUpdateDialogTitle": "업데이트를 확인하시겠습니까?",
"checkUpdateDialogText": "ReVanced Manager가 자동으로 업데이트를 확인하도록 하시겠습니까?",
"notificationTitle": "업데이트를 다운로드했습니다.",
"notificationText": "업데이트를 설치하려면 여기를 누르세요.",
"downloadingMessage": "업데이트 다운로드 중...",
"downloadedMessage": "업데이트를 다운로드 완료했습니다.",
"installingMessage": "업데이트 설치 중...",
"errorDownloadMessage": "업데이트를 다운로드할 수 없습니다.",
"errorInstallMessage": "업데이트를 설치할 수 없습니다.",
"noConnection": "인터넷에 연결되지 않음",
"updatesDisabled": "패치된 앱 업데이트는 현재 비활성화되어 있습니다. 앱을 다시 패치하세요."
"noConnection": "인터넷에 연결되지 않음"
},
"applicationItem": {
"infoButton": "정보"
},
"latestCommitCard": {
"loadingLabel": "불러오는 중...",
"timeagoLabel": "${time} 전",
"patcherLabel": "Patcher: ",
"managerLabel": "Manager: ",
"updateButton": "Manager 업데이트"
"timeagoLabel": "${time} 전"
},
"patcherView": {
"widgetTitle": "Patcher",
"patchButton": "패치하기",
"armv7WarningDialogText": "ARMv7 디바이스에 대한 패치는 아직 지원되지 않으며 실패할 수 있습니다. 그래도 계속 하시겠습니까?",
"removedPatchesWarningDialogText": "최근 적용한 패치들 중 다음 패치가 제거됩니다.\n\n${patches}\n\n계속 진행하시겠습니까?",
"requiredOptionDialogText": "일부 패치 옵션을 설정해야 합니다."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "선택한 앱",
"widgetSubtitle": "선택한 앱이 없습니다.",
"noAppsLabel": "앱이 발견되지 않음",
"currentVersion": "현재 앱 버전",
"suggestedVersion": "권장 앱 버전",
"anyVersion": "모든 앱 버전"
},
"patchSelectorCard": {
@ -118,15 +101,11 @@
},
"patchOptionsView": {
"customValue": "사용자 지정 값",
"resetOptionsTooltip": "패치 옵션 초기화",
"viewTitle": "패치 옵션",
"saveOptions": "저장",
"addOptions": "옵션 추가",
"deselectPatch": "패치 선택 해제",
"tooltip": "입력 옵션 더보기",
"selectFilePath": "파일 경로 선택",
"selectFolder": "폴더 선택",
"selectOption": "옵션 선택",
"requiredOption": "필수 옵션입니다.",
"unsupportedOption": "지원하지 않는 옵션입니다.",
"requiredOptionNull": "다음 옵션들이 설정되어 있어야 합니다:\n\n${options}"
@ -139,7 +118,6 @@
"patchesChangeWarningDialogButton": "기본 선택목록 사용"
},
"installerView": {
"widgetTitle": "설치 관리자",
"installType": "설치 유형 선택",
"installTypeDescription": "설치를 진행할 유형을 선택해주세요.",
"installButton": "설치하기",
@ -148,7 +126,6 @@
"warning": "패치한 앱의 자동 업데이트를 꺼서 예기치 못한 오류를 예방하세요.",
"pressBackAgain": "취소하려면 뒤로가기 버튼을 다시 누르세요.",
"openButton": "열기",
"shareButton": "파일 공유",
"notificationTitle": "ReVanced Manager가 패치 중입니다.",
"notificationText": "설치 관리자로 돌아가려면 여기를 누르세요.",
"exportApkButtonTooltip": "패치한 APK 내보내기",
@ -173,7 +150,6 @@
"dynamicThemeHint": "당신의 기기에 더 맞는 경험을 즐겨보세요.",
"languageLabel": "앱 언어",
"languageUpdated": "앱 언어를 변경했습니다.",
"englishOption": "영어",
"sourcesLabel": "대체 소스",
"sourcesLabelHint": "ReVanced Patches 및 ReVanced Integrations 대체 소스를 설정할 수 있습니다.",
"sourcesIntegrationsLabel": "Integrations 소스",
@ -299,4 +275,4 @@
"install_failed_version_downgrade_description": "패치한 앱의 버전이 설치된 앱의 버전보다 낮아 설치에 실패했습니다.\n\n앱을 제거하고 다시 시도할까요?",
"status_unknown_description": "알 수 없는 이유로 설치에 실패했습니다. 다시 시도하세요."
}
}
}

View File

@ -3,12 +3,10 @@
"cancelButton": "Atšaukti",
"quitButton": "Išeiti",
"updateButton": "Atnaujinti",
"installed": "Įdiegta: ${version}",
"suggested": "Siūloma: ${version}",
"yesButton": "Taip",
"noButton": "Ne",
"warning": "Įspėjimas",
"options": "Nustatymai",
"notice": "Pranešimas",
"noShowAgain": "Daugiau to nerodyti",
"add": "Pridėti",
@ -30,8 +28,7 @@
"installingMessage": "Įdiegiamas atnaujinimas...",
"errorDownloadMessage": "Nepavyksta atsisiųsti atnaujinimo",
"errorInstallMessage": "Nepavyksta įdiegti atnaujinimo",
"noConnection": "Nėra interneto ryšio",
"updatesDisabled": "Šiuo metu pataisytą programėlę atnaujinti neleidžiama. Dar kartą pataisykite programėlę."
"noConnection": "Nėra interneto ryšio"
},
"applicationItem": {
"infoButton": "Informacija"
@ -46,9 +43,7 @@
"requiredOptionDialogText": "Reikia nustatyti kai kurias pataisymų parinktis."
},
"appSelectorCard": {
"noAppsLabel": "Nerasta jokių programų",
"currentVersion": "Dabartinė",
"suggestedVersion": "Siūloma"
"noAppsLabel": "Nerasta jokių programų"
},
"patchSelectorCard": {
"widgetTitle": "Pasirinkite pataisymus",
@ -83,11 +78,8 @@
},
"patchOptionsView": {
"customValue": "Pasirinkta vertė",
"resetOptionsTooltip": "Iš naujo nustatyti pataisymų parinktis",
"viewTitle": "Pataisymų parinktys",
"saveOptions": "Išsaugoti",
"addOptions": "Pridėti pasirinkimus",
"deselectPatch": "Atšaukti pataisymą",
"tooltip": "Daugiau įvesties pasirinkčių",
"selectFilePath": "Pasirinkite failo kelią",
"selectFolder": "Pasirinkti aplanką",
@ -210,6 +202,5 @@
},
"contributorsView": {
"widgetTitle": "Prisidėjusieji žmonės"
},
"installErrorDialog": {}
}
}
}

View File

@ -3,12 +3,10 @@
"cancelButton": "Atcelt",
"quitButton": "Iziet",
"updateButton": "Atjaunināt",
"installed": "Uzstādītā versija: ${version}",
"suggested": "Ieteiktā versija: ${version}",
"yesButton": "Jā",
"noButton": "Nē",
"warning": "Brīdinājums",
"options": "Iestatījumi",
"notice": "Piezīme",
"noShowAgain": "Vairs nerādīt",
"add": "Pievienot",
@ -30,8 +28,7 @@
"installingMessage": "Instalē atjauninājumu...",
"errorDownloadMessage": "Nav iespējams lejupielādēt atjauninājumu",
"errorInstallMessage": "Nav iespējams instalēt atjauninājumu",
"noConnection": "Nav interneta savienojuma",
"updatesDisabled": "Pačoto aplikāciju atjaunināšana pašlaik ir izslēgta. Pačo aplikāciju velreiz."
"noConnection": "Nav interneta savienojuma"
},
"applicationItem": {
"infoButton": "Informācija"
@ -45,9 +42,7 @@
"patchButton": "Pačot"
},
"appSelectorCard": {
"noAppsLabel": "Netika atrasta neviena aplikācija",
"currentVersion": "Pašreizējā",
"suggestedVersion": "Ieteikums"
"noAppsLabel": "Netika atrasta neviena aplikācija"
},
"patchSelectorCard": {
"widgetTitle": "Izvēlies pačus",
@ -139,6 +134,5 @@
},
"contributorsView": {
"widgetTitle": "Autori"
},
"installErrorDialog": {}
}
}
}

View File

@ -16,4 +16,4 @@
"appInfoView": {},
"contributorsView": {},
"installErrorDialog": {}
}
}

View File

@ -16,4 +16,4 @@
"appInfoView": {},
"contributorsView": {},
"installErrorDialog": {}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Afwijzen",
"quitButton": "Sluiten",
"updateButton": "Bijwerken",
"enabledLabel": "Ingeschakeld",
"disabledLabel": "Uitgeschakeld",
"installed": "Geïnstalleerd: ${version}",
"suggested": "Aanbevolen: ${version}",
"yesButton": "Ja",
"noButton": "Nee",
"warning": "Waarschuwing",
"options": "Instellingen",
"notice": "Melding",
"noShowAgain": "Niet meer tonen",
"add": "Voeg toe",
@ -29,8 +25,6 @@
"updatesSubtitle": "Updates",
"patchedSubtitle": "Gepatchte applicaties",
"changeLaterSubtitle": "U kunt dit op een later moment wijzigen in de instellingen.",
"noUpdates": "Geen updates beschikbaar",
"WIP": "Bezig met uitvoeren...",
"noInstallations": "Geen gepatchte applicaties geïnstalleerd",
"installUpdate": "Doorgaan met het installeren van de update?",
"updateSheetTitle": "Update ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Download de benodigde bestanden?",
"downloadConsentDialogText": "ReVanced Manager moet de benodigde bestanden downloaden om goed te werken.",
"downloadConsentDialogText2": "Dit verbindt u met ${url}.",
"checkUpdateDialogTitle": "Controleer op updates?",
"checkUpdateDialogText": "Wilt u dat ReVanced Manager automatisch op updates controleert?",
"notificationTitle": "Update gedownload",
"notificationText": "Tik om de update te installeren",
"downloadingMessage": "Update wordt gedownload...",
"downloadedMessage": "Update gedownload",
"installingMessage": "Update wordt geïnstalleerd...",
"errorDownloadMessage": "Update downloaden mislukt",
"errorInstallMessage": "Update installeren mislukt",
"noConnection": "Geen internetverbinding",
"updatesDisabled": "Bijwerken van een gepatchte app is momenteel uitgeschakeld. Patch de app opnieuw."
"noConnection": "Geen internetverbinding"
},
"applicationItem": {
"infoButton": "Informatie"
},
"latestCommitCard": {
"loadingLabel": "Bezig met laden...",
"timeagoLabel": "${time} geleden",
"patcherLabel": "Patcher: ",
"managerLabel": "Beheerder: ",
"updateButton": "Manager bijwerken"
"timeagoLabel": "${time} geleden"
},
"patcherView": {
"widgetTitle": "Patcher",
"patchButton": "Patchen",
"armv7WarningDialogText": "Patchen op ARMv7 apparaten zijn nog niet ondersteund en zou mogelijk kunnen misgaan. Toch verder gaan?",
"removedPatchesWarningDialogText": "De volgende patches zijn verwijderd sinds de laatste keer dat je ze hebt gebruikt.\n\n${patches}\n\nToch doorgaan?",
"requiredOptionDialogText": "Er moeten enkele patch-opties worden ingesteld."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Geselecteerde app",
"widgetSubtitle": "Geen app geselecteerd",
"noAppsLabel": "Geen applicatie gevonden",
"currentVersion": "Huidige",
"suggestedVersion": "Voorgesteld",
"anyVersion": "Iedere versie"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Aangepaste waarde",
"setToNull": "Zet op nul",
"nullValue": "Deze optiewaarde is momenteel leeg",
"resetOptionsTooltip": "Reset patch opties",
"viewTitle": "Patch opties",
"saveOptions": "Opslaan",
"addOptions": "Opties toevoegen",
"unselectPatch": "Patch deselecteren",
"tooltip": "Meer invoeropties",
"selectFilePath": "Bestandspad selecteren",
"selectFolder": "Map selecteren",
"selectOption": "Selecteer optie",
"requiredOption": "Het instellen van deze optie is vereist",
"unsupportedOption": "Deze optie wordt niet ondersteund",
"requiredOptionNull": "De volgende opties moeten worden ingesteld:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Gebruik standaard selectie"
},
"installerView": {
"widgetTitle": "Installatieprogramma",
"installType": "Selecteer installatietype",
"installTypeDescription": "Selecteer het installatietype om mee door te gaan.",
"installButton": "Installeren",
@ -150,7 +129,6 @@
"warning": "Schakel automatische updates uit voor de patched app om onverwachte problemen te voorkomen.",
"pressBackAgain": "Druk nogmaals op terug om te annuleren",
"openButton": "Openen",
"shareButton": "Bestand delen",
"notificationTitle": "ReVanced Manager is aan het patchen",
"notificationText": "Tik om terug te keren naar het installatieprogramma",
"exportApkButtonTooltip": "Patched APK exporteren",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Geniet van een ervaring dichter bij je apparaat",
"languageLabel": "Taal",
"languageUpdated": "Taal bijgewerkt",
"englishOption": "Engels",
"sourcesLabel": "Alternatieve bronnen",
"sourcesLabelHint": "Configureer de alternatieve bronnen voor ReVanced Patches en ReVanced Integrations",
"sourcesIntegrationsLabel": "Integratiebronnen",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "De installatie is mislukt omdat de aangepaste app een lagere versie is dan de geïnstalleerde app.\n\nVerwijder de app en probeer het opnieuw?",
"status_unknown_description": "De installatie is mislukt door een onbekende reden. Probeer het opnieuw."
}
}
}

View File

@ -1,7 +1,6 @@
{
"cancelButton": "Avbryt",
"updateButton": "Oppdater",
"installed": "Installert: ${version}",
"suggested": "Anbefalt: ${version}",
"yesButton": "Ja",
"noButton": "Nei",
@ -22,19 +21,14 @@
"installingMessage": "Installerer oppdatering...",
"errorDownloadMessage": "Nedlasting av oppdatering var misslykket",
"errorInstallMessage": "Installasjon av oppdatering var misslykket",
"noConnection": "Ingen nettverksforbindelse",
"updatesDisabled": "Oppdatering av patchet app er for øyeblikket deaktivert. Repatch appen pånytt."
"noConnection": "Ingen nettverksforbindelse"
},
"applicationItem": {},
"latestCommitCard": {
"loadingLabel": "Laster...",
"timeagoLabel": "${time} siden"
},
"patcherView": {},
"appSelectorCard": {
"noAppsLabel": "Ingen applikasjoner ble funnet",
"currentVersion": "Nåværende",
"suggestedVersion": "Foreslått"
"noAppsLabel": "Ingen applikasjoner ble funnet"
},
"patchSelectorCard": {
"widgetTitle": "Velg patcher",
@ -59,9 +53,6 @@
"doneButton": "Fullført",
"defaultTooltip": "Velg alle standard patcher"
},
"patchOptionsView": {},
"patchItem": {},
"installerView": {},
"settingsView": {
"advancedSectionTitle": "Avansert",
"darkThemeLabel": "Mørk modus",
@ -74,8 +65,5 @@
"orgIntegrationsLabel": "Integrasjonsorganisasjon",
"contributorsLabel": "Medvirkende",
"contributorsHint": "En liste med bidragsytere til ReVanced"
},
"appInfoView": {},
"contributorsView": {},
"installErrorDialog": {}
}
}
}

View File

@ -19,18 +19,9 @@
"patcherView": {
"widgetTitle": "ରଫୁକାର"
},
"appSelectorCard": {
"currentVersion": "ଚଳିତ"
},
"patchSelectorCard": {},
"socialMediaCard": {},
"appSelectorView": {},
"patchesSelectorView": {
"doneButton": "ହେଲା"
},
"patchOptionsView": {},
"patchItem": {},
"installerView": {},
"settingsView": {
"widgetTitle": "ସେଟିଂ",
"appearanceSectionTitle": "ରୂପ",
@ -46,8 +37,5 @@
"selectApiURL": "API URL",
"aboutLabel": "ସମ୍ବନ୍ଧରେ",
"snackbarMessage": "କ୍ଲିପବୋର୍ଡରେ କପି କରିନିଆଗଲା"
},
"appInfoView": {},
"contributorsView": {},
"installErrorDialog": {}
}
}
}

View File

@ -16,4 +16,4 @@
"appInfoView": {},
"contributorsView": {},
"installErrorDialog": {}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Odrzuć",
"quitButton": "Wyjdź",
"updateButton": "Aktualizuj",
"enabledLabel": "Aktywne",
"disabledLabel": "Nieaktywne",
"installed": "Zainstalowana wersja: ${version}",
"suggested": "Sugerowana wersja: ${version}",
"yesButton": "Tak",
"noButton": "Nie",
"warning": "Uwaga",
"options": "Opcje",
"notice": "Komunikat",
"noShowAgain": "Nie pokazuj ponownie",
"add": "Dodaj",
@ -29,8 +25,6 @@
"updatesSubtitle": "Aktualizacje",
"patchedSubtitle": "Załatane aplikacje",
"changeLaterSubtitle": "Możesz to zmienić w ustawieniach w późniejszym czasie.",
"noUpdates": "Brak dostępnych aktualizacji",
"WIP": "Prace w toku...",
"noInstallations": "Nie zainstalowano żadnych załatanych aplikacji",
"installUpdate": "Kontynuować instalację aktualizacji?",
"updateSheetTitle": "Zaktualizuj Menedżera ReVanced",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Pobrać potrzebne pliki?",
"downloadConsentDialogText": "Menedżer ReVanced musi pobrać niezbędne pliki do prawidłowego działania.",
"downloadConsentDialogText2": "Zostaniesz przekierowany do ${url}.",
"checkUpdateDialogTitle": "Sprawdzić dostępność aktualizacji?",
"checkUpdateDialogText": "Czy chcesz, aby Menedżer ReVanced automatycznie sprawdzał dostępność aktualizacji?",
"notificationTitle": "Pobrano aktualizację",
"notificationText": "Kliknij, aby zainstalować aktualizację",
"downloadingMessage": "Pobieranie aktualizacji...",
"downloadedMessage": "Pobrano aktualizację",
"installingMessage": "Instalowanie aktualizacji...",
"errorDownloadMessage": "Nie udało się pobrać aktualizacji",
"errorInstallMessage": "Nie udało się zainstalować aktualizacji",
"noConnection": "Brak połączenia z internetem",
"updatesDisabled": "Aktualizowanie załatanej aplikacji jest obecnie niemożliwe. Spróbuj załatać aplikację jeszcze raz."
"noConnection": "Brak połączenia z internetem"
},
"applicationItem": {
"infoButton": "Informacje"
},
"latestCommitCard": {
"loadingLabel": "Ładowanie...",
"timeagoLabel": "${time} temu",
"patcherLabel": "Program łatający: ",
"managerLabel": "Menedżer: ",
"updateButton": "Zaktualizuj Menedżera"
"timeagoLabel": "${time} temu"
},
"patcherView": {
"widgetTitle": "Program łatający",
"patchButton": "Łataj",
"armv7WarningDialogText": "Łatanie na urządzeniach ARMv7 nie jest jeszcze wspierane i może się nie udać.\nKontynuować mimo to?",
"removedPatchesWarningDialogText": "Następujące łatki zostały usunięte od ostatniego użycia.\n\n${patches}\n\nKontynuować mimo to?",
"requiredOptionDialogText": "Niektóre opcje muszą być ustawione."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Wybrana aplikacja",
"widgetSubtitle": "Brak wybranej aplikacji",
"noAppsLabel": "Nie znaleziono aplikacji",
"currentVersion": "Aktualna",
"suggestedVersion": "Sugerowane",
"anyVersion": "Dowolna wersja"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Niestandardowa wartość",
"setToNull": "Ustaw na zerowy",
"nullValue": "Ta opcja jest obecnie pusta",
"resetOptionsTooltip": "Zresetuj opcje od łatek",
"viewTitle": "Opcje łatek",
"saveOptions": "Zapisz",
"addOptions": "Dodaj opcje",
"unselectPatch": "Odznacz łatkę",
"tooltip": "Więcej opcji wejściowych",
"selectFilePath": "Wybierz ścieżkę pliku",
"selectFolder": "Wybierz folder",
"selectOption": "Wybierz opcję",
"requiredOption": "Ustawienie tej opcji jest wymagane",
"unsupportedOption": "Ta opcja nie jest wspierana",
"requiredOptionNull": "Należy ustawić następujące opcje:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Użyj domyślnego wyboru"
},
"installerView": {
"widgetTitle": "Instalator",
"installType": "Wybierz typ instalacji",
"installTypeDescription": "Wybierz typ instalacji, aby kontynuować.",
"installButton": "Zainstaluj",
@ -150,7 +129,6 @@
"warning": "Wyłącz automatyczne aktualizacje załatanej aplikacji, aby uniknąć nieoczekiwanych problemów.",
"pressBackAgain": "Naciśnij ponownie, aby anulować",
"openButton": "Otwórz",
"shareButton": "Udostępnij plik",
"notificationTitle": "Menedżer ReVanced jest w trakcie działania",
"notificationText": "Kliknij, aby powrócić do instalatora",
"exportApkButtonTooltip": "Wyeksportuj załatane APK",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Ciesz się wrażeniami bliższymi twojemu urządzeniu",
"languageLabel": "Język",
"languageUpdated": "Zaktualizowano język",
"englishOption": "Angielski",
"sourcesLabel": "Alternatywne źródło",
"sourcesLabelHint": "Skonfiguruj alternatywne źródła dla Łatek ReVanced i Integracji ReVanced",
"sourcesIntegrationsLabel": "Źródło integracji",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "Instalacja nie powiodła się z powodu niższej wersji załatanej od zainstalowanej aplikacji.\n\nCzy chcesz odinstalować aplikację i spróbować ponownie?",
"status_unknown_description": "Instalacja nie powiodła się z nieznanego powodu. Spróbuj ponownie."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Descartar",
"quitButton": "Sair",
"updateButton": "Atualizar",
"enabledLabel": "Ativado",
"disabledLabel": "Desativado",
"installed": "Instalado: ${version}",
"suggested": "Sugerido: ${version}",
"yesButton": "Sim",
"noButton": "Não",
"warning": "Atenção",
"options": "Opções",
"notice": "Nota",
"noShowAgain": "Não mostrar novamente",
"add": "Adicionar",
@ -29,8 +25,6 @@
"updatesSubtitle": "Atualizações",
"patchedSubtitle": "Aplicativos patcheados ",
"changeLaterSubtitle": "Você pode ajustar essa opção nas configurações mais tarde.",
"noUpdates": "Nenhuma atualização encontrada",
"WIP": "Trabalho em progresso...",
"noInstallations": "Nenhum aplicativo patcheado instalado",
"installUpdate": "Continuar a instalação da atualização?",
"updateSheetTitle": "Atualizar o ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Baixar os arquivos necessários?",
"downloadConsentDialogText": "O ReVanced Manager precisará baixar os arquivos necessários para funcionar corretamente.",
"downloadConsentDialogText2": "Isso vai conectar você em ${url}.",
"checkUpdateDialogTitle": "Procurar atualizações?",
"checkUpdateDialogText": "Você quer que o ReVanced Manager procure atualizações automaticamente?",
"notificationTitle": "Atualização baixada",
"notificationText": "Toque para instalar a atualização",
"downloadingMessage": "Baixando atualização...",
"downloadedMessage": "Atualização baixada",
"installingMessage": "Instalando atualização...",
"errorDownloadMessage": "Não é possível baixar a atualização",
"errorInstallMessage": "Não foi possível instalar a atualização",
"noConnection": "Sem conexão",
"updatesDisabled": "A opção de atualização de um aplicativo modificado está temporariamente desabilitada. Refaça o \"patch\" do aplicativo e tente novamente."
"noConnection": "Sem conexão"
},
"applicationItem": {
"infoButton": "Informações"
},
"latestCommitCard": {
"loadingLabel": "Carregando...",
"timeagoLabel": "há ${time}",
"patcherLabel": "Patcher: ",
"managerLabel": "Gerenciador: ",
"updateButton": "Gerenciador de Atualizações"
"timeagoLabel": "há ${time}"
},
"patcherView": {
"widgetTitle": "Patcher",
"patchButton": "Patch",
"armv7WarningDialogText": "Realizar patches em dispositivos ARMv7 ainda não é suportado e pode falhar. Continuar mesmo assim?",
"removedPatchesWarningDialogText": "Os seguintes patches foram removidos desde a última vez que você os utilizou:\n\n${patches}\n\nContinuar mesmo assim?",
"requiredOptionDialogText": "Algumas opções de patch tiveram que ser definidas."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "App selecionado",
"widgetSubtitle": "Nenhum app selecionado",
"noAppsLabel": "Nenhum aplicativo foi encontrado",
"currentVersion": "Atual",
"suggestedVersion": "Sugeridos/sugestões",
"anyVersion": "Qualquer versão"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Valor personalizado",
"setToNull": "Definir como nulo",
"nullValue": "Atualmente, este valor de opção é nulo",
"resetOptionsTooltip": "Redefinir as opções de patch",
"viewTitle": "Opções de patch",
"saveOptions": "Salvar",
"addOptions": "Adicionar opções",
"unselectPatch": "Desmarque o patch",
"tooltip": "Mais opções de entrada",
"selectFilePath": "Selecione o caminho do arquivo",
"selectFolder": "Selecione a pasta",
"selectOption": "Selecione uma opção",
"requiredOption": "Definir esta opção é necessário",
"unsupportedOption": "Essa opção não é suportada",
"requiredOptionNull": "As seguintes opções precisam ser definidas:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Use a seleção padrão"
},
"installerView": {
"widgetTitle": "Instalador",
"installType": "Selecione o tipo de instalação",
"installTypeDescription": "Selecione o tipo de instalação para continuar.",
"installButton": "Instalar",
@ -150,7 +129,6 @@
"warning": "Desative as atualizações automáticas do aplicativo patcheado para evitar problemas inesperados.",
"pressBackAgain": "Pressione voltar mais uma vez para cancelar",
"openButton": "Abrir",
"shareButton": "Share file",
"notificationTitle": "ReVanced manager está aplicando os patches",
"notificationText": "Toque para voltar ao instalador",
"exportApkButtonTooltip": "Exportar APK com o patch aplicado",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Aproveite uma experiência mais próxima do tema de seu dispositivo",
"languageLabel": "Idioma",
"languageUpdated": "Idioma atualizado",
"englishOption": "English",
"sourcesLabel": "Fontes alternativas",
"sourcesLabelHint": "Conigure as fontes alternativas para ReVanced Patches e ReVanced Integrations",
"sourcesIntegrationsLabel": "Fonte das integrações",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "A instalação falhou porque o app patcheado era uma versão mais baixa que o app instalado.\n\nDesinstalar o app e tentar de novo?",
"status_unknown_description": "A instalação falhou por um motivo desconhecido. Por favor, tente novamente."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Ignorar",
"quitButton": "Sair",
"updateButton": "Atualizar",
"enabledLabel": "Ativado",
"disabledLabel": "Desativado",
"installed": "Instalada: ${version}",
"suggested": "Sugerida: ${version}",
"yesButton": "Sim",
"noButton": "Não",
"warning": "Aviso",
"options": "Opções",
"notice": "Aviso",
"noShowAgain": "Não mostrar isto novamente",
"add": "Adicionar",
@ -29,8 +25,6 @@
"updatesSubtitle": "Atualizações",
"patchedSubtitle": "Apps patcheados",
"changeLaterSubtitle": "Podes modificar esta definição mais tarde.",
"noUpdates": "Nenhuma atualização disponível",
"WIP": "Trabalho em progresso...",
"noInstallations": "Nenhum app patcheado instalado",
"installUpdate": "Continuar para instalar a atualização?",
"updateSheetTitle": "Atualizar o ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Transferir os ficheiros necessários?",
"downloadConsentDialogText": "O ReVanced Manager precisa de fazer transferência dos ficheiros necessários para funcionar corretamente.",
"downloadConsentDialogText2": "Isto irá conectá-lo a ${url}.",
"checkUpdateDialogTitle": "Verificar por atualizações?",
"checkUpdateDialogText": "Queres que o ReVanced Manager procure por atualizações automaticamente?",
"notificationTitle": "Atualização transferida",
"notificationText": "Toque para instalar a atualização",
"downloadingMessage": "A transferir a atualização...",
"downloadedMessage": "Atualização transferida",
"installingMessage": "A instalar atualização...",
"errorDownloadMessage": "Não é possível transferir a atualização",
"errorInstallMessage": "Não foi possível instalar a atualização",
"noConnection": "Sem ligação à Internet",
"updatesDisabled": "A atualização de um app patcheado está desativada no momento. Repatch o app de novo."
"noConnection": "Sem ligação à Internet"
},
"applicationItem": {
"infoButton": "Informação"
},
"latestCommitCard": {
"loadingLabel": "A carregar...",
"timeagoLabel": "${time} atrás",
"patcherLabel": "Patcher: ",
"managerLabel": "Manager: ",
"updateButton": "Atualizar o Manager"
"timeagoLabel": "${time} atrás"
},
"patcherView": {
"widgetTitle": "Modificador",
"patchButton": "Modificar",
"armv7WarningDialogText": "Fazer modificações numa aplicação num dispositivo com processador ARMv7 ainda não é suportada e poderá falhar. Continuar na mesma?",
"removedPatchesWarningDialogText": "As seguintes modificações foram removidas desde a última vez que as utilizaste.\n\n${patches}\n\nContinuar na mesma?",
"requiredOptionDialogText": "Algumas opções das Modificações precisam ser definidas."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Aplicação selecionada",
"widgetSubtitle": "Nenhuma aplicação selecionada",
"noAppsLabel": "Não foram encontradas aplicações",
"currentVersion": "Atual",
"suggestedVersion": "Sugerida",
"anyVersion": "Qualquer versão"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Valor personalizado",
"setToNull": "Definir como nulo",
"nullValue": "Atualmente, este valor de opção é nulo",
"resetOptionsTooltip": "Reiniciar as opções da modificação",
"viewTitle": "Opções de modificação",
"saveOptions": "Guardar",
"addOptions": "Adicionar opções",
"unselectPatch": "Desmarque o patch",
"tooltip": "Mais opções de entrada",
"selectFilePath": "Selecionar caminho do arquivo",
"selectFolder": "Selecionar pasta",
"selectOption": "Seleccionar opção",
"requiredOption": "Definir esta opção é necessário",
"unsupportedOption": "Esta opção não é suportada",
"requiredOptionNull": "As seguintes opções devem ser definidas:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Usar seleção padrão"
},
"installerView": {
"widgetTitle": "Instalador",
"installType": "Selecione o tipo de instalação",
"installTypeDescription": "Seleciona o tipo de instalação para continuar.",
"installButton": "Instalar",
@ -150,7 +129,6 @@
"warning": "Desative as atualizações automáticas do app patcheado para evitar problemas inesperados.",
"pressBackAgain": "Pressione voltar novamente para cancelar",
"openButton": "Abrir",
"shareButton": "Partilhar ficheiro",
"notificationTitle": "O ReVanced Manager está a fazer as modificações",
"notificationText": "Toca para voltar ao instalador",
"exportApkButtonTooltip": "Exportar APK patcheado",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Aproveite uma experiência mais próxima do tema do seu dispositivo",
"languageLabel": "Idioma",
"languageUpdated": "Idioma atualizado",
"englishOption": "Inglês",
"sourcesLabel": "Fontes alternativas",
"sourcesLabelHint": "Configurar as fontes alternativas para as Modificações ReVanced e Integrações ReVanced",
"sourcesIntegrationsLabel": "Fonte das Integrações",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "A instalação falhou porque o app patcheado era uma versão inferior ao aplicativo instalado.\n\nDesinstalar o app e tentar de novo?",
"status_unknown_description": "A instalação falhou por razões desconhecidas. Por favor, tenta novamente."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Anulare",
"quitButton": "Inchide",
"updateButton": "Actualizează",
"enabledLabel": "Activat",
"disabledLabel": "Dezactivat",
"installed": "Versiunea instalata: ${version}",
"suggested": "Versiune sugerată: ${version}",
"yesButton": "Da",
"noButton": "Nu",
"warning": "Atenție",
"options": "Opţiuni",
"notice": "Înștiințare",
"noShowAgain": "Nu afișa asta din nou",
"add": "Adaugă",
@ -29,8 +25,6 @@
"updatesSubtitle": "Actualizări",
"patchedSubtitle": "Aplicații Patch-uite",
"changeLaterSubtitle": "Puteți schimba acest lucru în setări mai târziu.",
"noUpdates": "Nu există actualizări disponibile",
"WIP": "Lucru în curs...",
"noInstallations": "Nu sunt instalate aplicații patch-uite",
"installUpdate": "Continuați să instalați actualizarea?",
"updateSheetTitle": "Actualizare ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Descărcați fișierele necesare?",
"downloadConsentDialogText": "ReVanced Manager trebuie să descarce fișierele necesare pentru a funcționa corect.",
"downloadConsentDialogText2": "Aceasta vă va conecta la ${url}.",
"checkUpdateDialogTitle": "Verifică actualizări?",
"checkUpdateDialogText": "Doriți ca ReVanced Manager să verifice automat actualizările?",
"notificationTitle": "Actualizare descărcată",
"notificationText": "Apăsați pentru a instala actualizarea",
"downloadingMessage": "Se descarcă actualizarea...",
"downloadedMessage": "Actualizare descărcată",
"installingMessage": "Se instalează actualizarea...",
"errorDownloadMessage": "Nu s-a putut descărca actualizarea",
"errorInstallMessage": "Nu s-a putut instala actualizarea",
"noConnection": "Nu există conexiune la internet",
"updatesDisabled": "Actualizarea aplicației patch-uite este dezactivată momentan.\nRepatch-uiți aplicația din nou."
"noConnection": "Nu există conexiune la internet"
},
"applicationItem": {
"infoButton": "Informații"
},
"latestCommitCard": {
"loadingLabel": "Se încarcă...",
"timeagoLabel": "În urmă cu ${time}",
"patcherLabel": "Patcher: ",
"managerLabel": "Manager: ",
"updateButton": "Actualizați Manager"
"timeagoLabel": "În urmă cu ${time}"
},
"patcherView": {
"widgetTitle": "Patcher",
"patchButton": "Patch",
"armv7WarningDialogText": "Patching-ul pe dispozitive ARMv7 nu este încă suportat și ar putea eșua. Continuați oricum?",
"removedPatchesWarningDialogText": "Următoarele patch-uri au fost eliminate de la ultima dată când le-ați folosit.\n\n${patches}\n\nContinuați oricum?",
"requiredOptionDialogText": "Unele opțiuni pentru patch-uri trebuie setate."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Aplicația selectată",
"widgetSubtitle": "Nici o aplicație selectată",
"noAppsLabel": "Nu s-au găsit aplicații",
"currentVersion": "Actual",
"suggestedVersion": "Sugerate",
"anyVersion": "Orice versiune"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Valoare personalizată",
"setToNull": "Setează ca nul",
"nullValue": "Această valoare este în prezent nulă",
"resetOptionsTooltip": "Resetează opțiunile patch-ului",
"viewTitle": "Opțiuni patch",
"saveOptions": "Salvează",
"addOptions": "Adaugă opțiuni",
"unselectPatch": "Deselectează patch-ul",
"tooltip": "Mai multe opțiuni de intrare",
"selectFilePath": "Selectați calea fișierului",
"selectFolder": "Selectați dosarul",
"selectOption": "Selectați opțiunea",
"requiredOption": "Setarea acestei opțiuni este necesară",
"unsupportedOption": "Această opțiune nu este acceptată",
"requiredOptionNull": "Următoarele opțiuni trebuie setate:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Folosește selecția implicită"
},
"installerView": {
"widgetTitle": "Instalator",
"installType": "Selectați tipul de instalare",
"installTypeDescription": "Selectați tipul de instalare cu care să continuați.",
"installButton": "Instalează",
@ -150,7 +129,6 @@
"warning": "Dezactivați actualizările automate pentru aplicația modificată pentru a evita probleme neașteptate.",
"pressBackAgain": "Apăsați înapoi din nou pentru a anula",
"openButton": "Deschide",
"shareButton": "Distribuie fișierul",
"notificationTitle": "ReVanced Manager efectuează patch-uirea",
"notificationText": "Apăsați pentru a reveni la instalator",
"exportApkButtonTooltip": "Exportare APK modificat",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Bucură-te de o experiență mai apropiată de dispozitivul tău",
"languageLabel": "Limbă",
"languageUpdated": "Limbă actualizată",
"englishOption": "Engleză",
"sourcesLabel": "Surse alternative",
"sourcesLabelHint": "Configurați sursele alternative pentru patch-urile ReVanced și Integrările ReVanced",
"sourcesIntegrationsLabel": "Sursă integrări",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "Instalarea a eșuat deoarece aplicația modificată este o versiune mai mică decât aplicația instalată.\n\nDezinstalați aplicația și încercați din nou?",
"status_unknown_description": "Instalarea a eșuat din cauza unui motiv necunoscut. Vă rugăm să încercați din nou."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Отклонить",
"quitButton": "Выход",
"updateButton": "Обновить",
"enabledLabel": "Включено",
"disabledLabel": "Отключено",
"installed": "Установлено: ${version}",
"suggested": "Рекомендуемая: ${version}",
"yesButton": "Да",
"noButton": "Нет",
"warning": "Внимание",
"options": "Параметры",
"notice": "Примечание",
"noShowAgain": "Не показывать снова",
"add": "Добавить",
@ -29,8 +25,6 @@
"updatesSubtitle": "Обновления",
"patchedSubtitle": "Пропатченные приложения",
"changeLaterSubtitle": "Вы можете изменить это в настройках позже.",
"noUpdates": "Нет доступных обновлений",
"WIP": "В процессе...",
"noInstallations": "Пропатченные приложения не установлены",
"installUpdate": "Продолжить установку обновления?",
"updateSheetTitle": "Обновить Revanced Менеджер",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Скачать необходимые файлы?",
"downloadConsentDialogText": "Для правильной работы ReVanced Менеджера нужно загрузить необходимые файлы.",
"downloadConsentDialogText2": "Это соединит вас с ${url}.",
"checkUpdateDialogTitle": "Проверить наличие обновлений?",
"checkUpdateDialogText": "Хотите, чтобы ReVanced Менеджер автоматически проверял наличие обновлений?",
"notificationTitle": "Обновление загружено",
"notificationText": "Нажмите, чтобы установить обновление",
"downloadingMessage": "Загрузка обновления...",
"downloadedMessage": "Обновление загружено",
"installingMessage": "Установка обновления...",
"errorDownloadMessage": "Не удалось загрузить обновление",
"errorInstallMessage": "Не удалось установить обновление",
"noConnection": "Нет подключения к интернету",
"updatesDisabled": "Обновление пропатченных приложений в настоящее время отключено. Пожалуйста, пропатчьте приложение заново."
"noConnection": "Нет подключения к интернету"
},
"applicationItem": {
"infoButton": "Информация"
},
"latestCommitCard": {
"loadingLabel": "Загрузка...",
"timeagoLabel": "${time} назад",
"patcherLabel": "Патчер: ",
"managerLabel": "Менеджер: ",
"updateButton": "Обновить Менеджер"
"timeagoLabel": "${time} назад"
},
"patcherView": {
"widgetTitle": "Патчер",
"patchButton": "Патч",
"armv7WarningDialogText": "Патчинг на устройствах ARMv7 пока не поддерживается и может привести к сбоям. Все равно продолжить?",
"removedPatchesWarningDialogText": "Следующие патчи были удалены с момента их последнего использования.\n\n ${patches}\n\n Все равно продолжить?",
"requiredOptionDialogText": "Некоторые параметры патчей должны быть обязательно установлены."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Выбранное приложение",
"widgetSubtitle": "Приложение не выбрано",
"noAppsLabel": "Приложения не найдены",
"currentVersion": "Текущая",
"suggestedVersion": "Предложенная",
"anyVersion": "Любая версия"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Пользовательское значение",
"setToNull": "Установить null",
"nullValue": "Значение этого параметра в настоящее время является нулевым",
"resetOptionsTooltip": "Сброс параметров патчей",
"viewTitle": "Параметры патчей",
"saveOptions": "Сохранить",
"addOptions": "Добавить параметры",
"unselectPatch": "Отменить выбор патча",
"tooltip": "Другие параметры ввода",
"selectFilePath": "Выберите путь к файлу",
"selectFolder": "Выберите папку",
"selectOption": "Выберите опции",
"requiredOption": "Эта опция обязательна",
"unsupportedOption": "Эта опция не поддерживается",
"requiredOptionNull": "Следующие опции должны быть установлены:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Использовать стандартный набор"
},
"installerView": {
"widgetTitle": "Установщик",
"installType": "Выберите тип установки",
"installTypeDescription": "Выберите тип установки, чтобы продолжить.",
"installButton": "Установить",
@ -150,7 +129,6 @@
"warning": "Отключить автоматическое обновление патчей во избежание непредвиденных проблем.",
"pressBackAgain": "Нажмите \"Назад\" еще раз для отмены",
"openButton": "Открыть",
"shareButton": "Поделиться файлом",
"notificationTitle": "ReVanced Менеджер патчит",
"notificationText": "Нажмите, чтобы вернуться к установщику",
"exportApkButtonTooltip": "Экспорт пропатченного APK",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Наслаждайтесь темой Вашего устройства",
"languageLabel": "Язык",
"languageUpdated": "Язык обновлен",
"englishOption": "Английский",
"sourcesLabel": "Альтернативные источники",
"sourcesLabelHint": "Настроить альтернативные источники для патчей и интеграций ReVanced",
"sourcesIntegrationsLabel": "Репозиторий интеграций",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "Установка не удалась, поскольку пропатченное приложение имело более раннюю версию, чем установленное приложение.\n\nУдалить приложение и попробовать еще раз?",
"status_unknown_description": "Установка не удалась по неизвестной причине. Пожалуйста, попробуйте еще раз."
}
}
}

View File

@ -2,7 +2,6 @@
"cancelButton": "Zrušiť",
"quitButton": "Ukončiť",
"updateButton": "Aktualizovať",
"installed": "Nainštalované: ${version}",
"suggested": "Navrhované: ${version}",
"yesButton": "Áno",
"noButton": "Nie",
@ -26,8 +25,7 @@
"installingMessage": "Inštalujú sa aktualizácie...",
"errorDownloadMessage": "Nepodarilo sa stiahnuť aktualizáciu",
"errorInstallMessage": "Nepodarilo sa nainštalovať aktualizáciu",
"noConnection": "Žiadne pripojenie na internet",
"updatesDisabled": "Aktualizácia zaplátanej aplikácie je v súčasnosti zakázaná. Znovu zaplátajte aplikáciu."
"noConnection": "Žiadne pripojenie na internet"
},
"applicationItem": {
"infoButton": "Informácie"
@ -41,9 +39,7 @@
"patchButton": "Záplata"
},
"appSelectorCard": {
"noAppsLabel": "Nebola nájdená žiadna aplikácia",
"currentVersion": "Aktuálne",
"suggestedVersion": "Navrhované"
"noAppsLabel": "Nebola nájdená žiadna aplikácia"
},
"patchSelectorCard": {
"widgetTitle": "Vyberte záplaty",
@ -71,7 +67,6 @@
"noneTooltip": "Zrušiť výber všetkých odporúčaných záplat",
"noPatchesFound": "Neboli nájdené žiadne záplaty pre zvolenú aplikáciu"
},
"patchOptionsView": {},
"patchItem": {
"unsupportedDialogText": "Výber tejto záplaty môže spôsobiť chyby.\n\nVerzia aplikácie: ${packageVersion}\nPodporované verzie:\n${supportedVersions}",
"patchesChangeWarningDialogButton": "Použiť predvolený výber"
@ -147,6 +142,5 @@
},
"contributorsView": {
"widgetTitle": "Prispievatelia"
},
"installErrorDialog": {}
}
}
}

View File

@ -2,7 +2,6 @@
"okButton": "V redu",
"cancelButton": "Prekliči",
"updateButton": "Posodobi",
"installed": "Trenutna različica: ${version}",
"suggested": "Priporočena različica: ${version}",
"yesButton": "Da",
"noButton": "Ne",
@ -24,8 +23,7 @@
"installingMessage": "Nameščam posodobitev ...",
"errorDownloadMessage": "Posodobitve ni bilo mogoče prenesti",
"errorInstallMessage": "Posodobitve ni bilo mogoče namestiti",
"noConnection": "Ni internetne povezave",
"updatesDisabled": "Posodabljanje popravljene aplikacije je trenutno onemogočeno. Ponovno popravite aplikacijo."
"noConnection": "Ni internetne povezave"
},
"applicationItem": {
"infoButton": "Informacije"
@ -39,9 +37,7 @@
"patchButton": "Popravi"
},
"appSelectorCard": {
"noAppsLabel": "Ne najdem nobenih aplikacij",
"currentVersion": "Trenutno",
"suggestedVersion": "Predlagano"
"noAppsLabel": "Ne najdem nobenih aplikacij"
},
"patchSelectorCard": {
"widgetTitle": "Izberi popravke",
@ -68,7 +64,6 @@
"noneTooltip": "Razveljavi izbiro vseh popravkov",
"noPatchesFound": "Za izbrano aplikacijo ne najdem popravkov"
},
"patchOptionsView": {},
"patchItem": {
"unsupportedDialogText": "Izbira tega popravka lahko privede do napak pri popravljanju.\n\nRazličica aplikacije: ${packageVersion}\nPodprte različice:\n${supportedVersions}"
},
@ -127,6 +122,5 @@
},
"contributorsView": {
"widgetTitle": "Prispevali so"
},
"installErrorDialog": {}
}
}
}

View File

@ -20,4 +20,4 @@
"appInfoView": {},
"contributorsView": {},
"installErrorDialog": {}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Odbaci",
"quitButton": "Izađi",
"updateButton": "Ažuriraj",
"enabledLabel": "Omogućeno",
"disabledLabel": "Onemogućeno",
"installed": "Instalirana verzija: ${version}",
"suggested": "Preporučena verzija: ${version}",
"yesButton": "Da",
"noButton": "Ne",
"warning": "Upozorenje",
"options": "Opcije",
"notice": "Obaveštenje",
"noShowAgain": "Ne prikazuj ponovo",
"add": "Dodaj",
@ -29,8 +25,6 @@
"updatesSubtitle": "Ažuriranja",
"patchedSubtitle": "Pečovane aplikacije",
"changeLaterSubtitle": "Ovo možete kasnije da promenite u podešavanjima.",
"noUpdates": "Nema dostupnih ažuriranja",
"WIP": "Radovi u toku…",
"noInstallations": "Nema instaliranih pečovanih aplikacija",
"installUpdate": "Nastaviti sa instalacijom ažuriranja?",
"updateSheetTitle": "Ažuriranje ReVanced Managera",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Preuzeti neophodne fajlove?",
"downloadConsentDialogText": "ReVanced Manager mora da preuzme neophodne fajlove da bi ispravno radio.",
"downloadConsentDialogText2": "Ovo će vas povezati sa ${url}.",
"checkUpdateDialogTitle": "Provera ažuriranja?",
"checkUpdateDialogText": "Želite li da ReVanced Manager automatski proverava da li postoje ažuriranja?",
"notificationTitle": "Ažuriranje je preuzeto",
"notificationText": "Dodirnite da biste instalirali ažuriranje",
"downloadingMessage": "Preuzimanje ažuriranja…",
"downloadedMessage": "Ažuriranje je preuzeto",
"installingMessage": "Instaliranje ažuriranja…",
"errorDownloadMessage": "Nije moguće preuzeti ažuriranje",
"errorInstallMessage": "Nije moguće instalirati ažuriranje",
"noConnection": "Nema internet veze",
"updatesDisabled": "Ažuriranje pečovane aplikacije je trenutno onemogućeno. Ponovo pečujte aplikaciju."
"noConnection": "Nema internet veze"
},
"applicationItem": {
"infoButton": "Informacije"
},
"latestCommitCard": {
"loadingLabel": "Učitavanje…",
"timeagoLabel": "pre ${time}",
"patcherLabel": "Patcher: ",
"managerLabel": "Manager: ",
"updateButton": "Ažuriraj Manager"
"timeagoLabel": "pre ${time}"
},
"patcherView": {
"widgetTitle": "Pečer",
"patchButton": "Pečuj",
"armv7WarningDialogText": "Pečovanje na ARMv7 uređajima još uvek nije podržano i možda neće uspeti. Ipak nastaviti?",
"removedPatchesWarningDialogText": "Sledeći pečevi su uklonjeni od poslednjeg puta kada ste ih koristili.\n\n${patches}\n\nIpak nastaviti?",
"requiredOptionDialogText": "Neke opcije moraju biti podešene."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Izabrana aplikacija",
"widgetSubtitle": "Nije izabrana nijedna aplikacija",
"noAppsLabel": "Nijedna aplikacija nije pronađena",
"currentVersion": "Trenutna verzija",
"suggestedVersion": "Preporučena verzija",
"anyVersion": "Sve verzije"
},
"patchSelectorCard": {
@ -118,15 +101,11 @@
},
"patchOptionsView": {
"customValue": "Prilagođena vrednost",
"resetOptionsTooltip": "Resetuj opcije peča",
"viewTitle": "Opcije peča",
"saveOptions": "Sačuvaj",
"addOptions": "Dodaj opcije",
"deselectPatch": "Poništi izbor peča",
"tooltip": "Više opcija za unos",
"selectFilePath": "Izaberi putanju fajla",
"selectFolder": "Izaberi folder",
"selectOption": "Izaberi opciju",
"requiredOption": "Ova opcija je obavezna",
"unsupportedOption": "Ova opcija nije podržana",
"requiredOptionNull": "Potrebno je podesiti sledeće opcije:\n\n${options}"
@ -139,7 +118,6 @@
"patchesChangeWarningDialogButton": "Koristi podrazumevani izbor"
},
"installerView": {
"widgetTitle": "Program za instalaciju",
"installType": "Izbor tipa instalacije",
"installTypeDescription": "Izaberite tip instalacije da biste nastavili.",
"installButton": "Instaliraj",
@ -148,7 +126,6 @@
"warning": "Onemogućite automatska ažuriranja za pečovanu aplikaciju da biste izbegli neočekivane probleme.",
"pressBackAgain": "Pritisnite ponovo da biste otkazali",
"openButton": "Otvori",
"shareButton": "Deli fajl",
"notificationTitle": "ReVanced Manager pečuje",
"notificationText": "Dodirnite da biste se vratili na program za instalaciju",
"exportApkButtonTooltip": "Izvezi pečovani APK",
@ -173,7 +150,6 @@
"dynamicThemeHint": "Uživajte u temi koja se prilagođava vašem uređaju",
"languageLabel": "Jezik",
"languageUpdated": "Jezik je ažuriran",
"englishOption": "engleski",
"sourcesLabel": "Alternativni izvori",
"sourcesLabelHint": "Konfigurišite alternativne izvore za ReVanced pečeve i ReVanced integracije",
"sourcesIntegrationsLabel": "Izvor integracija",
@ -299,4 +275,4 @@
"install_failed_version_downgrade_description": "Instalacija nije uspela jer je pečovana aplikacija niža verzija od instalirane aplikacije.\n\nDeinstalirati aplikaciju i pokušati ponovo?",
"status_unknown_description": "Instalacija nije uspela iz nepoznatog razloga. Pokušajte ponovo."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Одбаци",
"quitButton": "Изађи",
"updateButton": "Ажурирај",
"enabledLabel": "Омогућено",
"disabledLabel": "Онемогућено",
"installed": "Инсталирана верзија: ${version}",
"suggested": "Препоручена верзија: ${version}",
"yesButton": "Да",
"noButton": "Не",
"warning": "Упозорење",
"options": "Опције",
"notice": "Обавештење",
"noShowAgain": "Не приказуј поново",
"add": "Додај",
@ -29,8 +25,6 @@
"updatesSubtitle": "Ажурирања",
"patchedSubtitle": "Печоване апликације",
"changeLaterSubtitle": "Ово можете касније да промените у подешавањима.",
"noUpdates": "Нема доступних ажурирања",
"WIP": "Радови у току…",
"noInstallations": "Нема инсталираних печованих апликација",
"installUpdate": "Наставити са инсталацијом ажурирања?",
"updateSheetTitle": "Ажурирање ReVanced Manager-а",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Преузети неопходне фајлове?",
"downloadConsentDialogText": "ReVanced Manager мора да преузме неопходне фајлове да би исправно радио.",
"downloadConsentDialogText2": "Ово ће вас повезати са ${url}.",
"checkUpdateDialogTitle": "Провера ажурирања?",
"checkUpdateDialogText": "Желите ли да ReVanced Manager аутоматски проверава да ли постоје ажурирања?",
"notificationTitle": "Ажурирање је преузето",
"notificationText": "Додирните да бисте инсталирали ажурирање",
"downloadingMessage": "Преузимање ажурирања…",
"downloadedMessage": "Ажурирање је преузето",
"installingMessage": "Инсталирање ажурирања…",
"errorDownloadMessage": "Није могуће преузети ажурирање",
"errorInstallMessage": "Није могуће инсталирати ажурирање",
"noConnection": "Нема интернет везе",
"updatesDisabled": "Ажурирање печоване апликације је тренутно онемогућено. Поново печујте апликацију."
"noConnection": "Нема интернет везе"
},
"applicationItem": {
"infoButton": "Информације"
},
"latestCommitCard": {
"loadingLabel": "Учитавање…",
"timeagoLabel": "пре ${time}",
"patcherLabel": "Patcher: ",
"managerLabel": "Manager: ",
"updateButton": "Ажурирај Manager"
"timeagoLabel": "пре ${time}"
},
"patcherView": {
"widgetTitle": "Печер",
"patchButton": "Печуј",
"armv7WarningDialogText": "Печовање на ARMv7 уређајима још увек није подржано и можда неће успети. Ипак наставити?",
"removedPatchesWarningDialogText": "Следећи печеви су уклоњени од последњег пута када сте их користили.\n\n${patches}\n\nИпак наставити?",
"requiredOptionDialogText": "Неке опције морају бити подешене."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Изабрана апликација",
"widgetSubtitle": "Није изабрана ниједна апликација",
"noAppsLabel": "Ниједна апликација није пронађена",
"currentVersion": "Тренутна верзија",
"suggestedVersion": "Препоручена верзија",
"anyVersion": "Све верзије"
},
"patchSelectorCard": {
@ -118,15 +101,11 @@
},
"patchOptionsView": {
"customValue": "Прилагођена вредност",
"resetOptionsTooltip": "Ресетуј опције печа",
"viewTitle": "Опције печа",
"saveOptions": "Сачувај",
"addOptions": "Додај опције",
"deselectPatch": "Поништи избор печа",
"tooltip": "Више опција за унос",
"selectFilePath": "Изабери путању фајла",
"selectFolder": "Изабери фолдер",
"selectOption": "Изабери опцију",
"requiredOption": "Ова опција је обавезна",
"unsupportedOption": "Ова опција није подржана",
"requiredOptionNull": "Потребно је подесити следеће опције:\n\n${options}"
@ -139,7 +118,6 @@
"patchesChangeWarningDialogButton": "Користи подразумевани избор"
},
"installerView": {
"widgetTitle": "Програм за инсталацију",
"installType": "Избор типа инсталације",
"installTypeDescription": "Изаберите тип инсталације да бисте наставили.",
"installButton": "Инсталирај",
@ -148,7 +126,6 @@
"warning": "Онемогућите аутоматска ажурирања за печовану апликацију да бисте избегли неочекиване проблеме.",
"pressBackAgain": "Притисните поново да бисте отказали",
"openButton": "Отвори",
"shareButton": "Дели фајл",
"notificationTitle": "ReVanced Manager печује",
"notificationText": "Додирните да бисте се вратили на програм за инсталацију",
"exportApkButtonTooltip": "Извези печовани APK",
@ -173,7 +150,6 @@
"dynamicThemeHint": "Уживајте у теми која се прилагођава вашем уређају",
"languageLabel": "Језик",
"languageUpdated": "Језик је ажуриран",
"englishOption": "енглески",
"sourcesLabel": "Алтернативни извори",
"sourcesLabelHint": "Конфигуришите алтернативне изворе за ReVanced печеве и ReVanced интеграције",
"sourcesIntegrationsLabel": "Извор интеграција",
@ -299,4 +275,4 @@
"install_failed_version_downgrade_description": "Инсталација није успела јер је печована апликација нижа верзија од инсталиране апликације.\n\nДеинсталирати апликацију и покушати поново?",
"status_unknown_description": "Инсталација није успела из непознатог разлога. Покушајте поново."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Avfärda",
"quitButton": "Avsluta",
"updateButton": "Uppdatera",
"enabledLabel": "Aktiverad",
"disabledLabel": "Inaktiverad",
"installed": "Installerad: ${version}",
"suggested": "Rekommenderad: ${version}",
"yesButton": "Ja",
"noButton": "Nej",
"warning": "Varning",
"options": "Alternativ",
"notice": "Notera",
"noShowAgain": "Visa inte det här igen",
"add": "Lägg till",
@ -29,8 +25,6 @@
"updatesSubtitle": "Uppdateringar",
"patchedSubtitle": "Patchade appar",
"changeLaterSubtitle": "Du kan ändra detta i inställningarna vid ett senare tillfälle.",
"noUpdates": "Inga uppdateringar tillgängliga",
"WIP": "Arbete pågår...",
"noInstallations": "Inga patchade appar installerade",
"installUpdate": "Gå vidare och installera uppdateringen?",
"updateSheetTitle": "Uppdatera ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Ladda ner nödvändiga filer?",
"downloadConsentDialogText": "ReVanced Manager måste ladda ner nödvändiga filer för att fungera korrekt.",
"downloadConsentDialogText2": "Detta kommer att ansluta dig till ${url}.",
"checkUpdateDialogTitle": "Sök efter uppdateringar?",
"checkUpdateDialogText": "Vill du att ReVanced Manager ska söka efter uppdateringar automatiskt?",
"notificationTitle": "Uppdatering nerladdad",
"notificationText": "Tryck för att installera uppdateringen",
"downloadingMessage": "Laddar ner uppdatering...",
"downloadedMessage": "Uppdatering nerladdad",
"installingMessage": "Installerar uppdatering...",
"errorDownloadMessage": "Det gick inte att ladda ner uppdateringen",
"errorInstallMessage": "Det gick inte att installera uppdatering",
"noConnection": "Ingen internetanslutning",
"updatesDisabled": "Uppdatering av en patchad app är för närvarande inaktiverad. Patcha appen igen."
"noConnection": "Ingen internetanslutning"
},
"applicationItem": {
"infoButton": "Information"
},
"latestCommitCard": {
"loadingLabel": "Laddar...",
"timeagoLabel": "${time} sedan",
"patcherLabel": "Patcher: ",
"managerLabel": "Hanterare: ",
"updateButton": "Uppdateringshanterare"
"timeagoLabel": "${time} sedan"
},
"patcherView": {
"widgetTitle": "Patcher",
"patchButton": "Patch",
"armv7WarningDialogText": "Patchning på ARMv7-enheter stöds inte ännu och det är med stor sannolikhet att det kommer att misslyckas. Fortsätta ändå?",
"removedPatchesWarningDialogText": "Följande patchar har tagits bort sedan du senast använde dem.\n\n${patches}\n\nFortsätt ändå?",
"requiredOptionDialogText": "Vissa patchalternativ måste anges."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Välj app",
"widgetSubtitle": "Ingen app vald",
"noAppsLabel": "Inga applikationer hittades",
"currentVersion": "Aktuell",
"suggestedVersion": "Rekommenderad",
"anyVersion": "Valfri version"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Anpassat värde",
"setToNull": "Sätt till noll",
"nullValue": "Detta alternativ värde är för närvarande noll",
"resetOptionsTooltip": "Återställ patchalternativ",
"viewTitle": "Patchalternativ",
"saveOptions": "Spara",
"addOptions": "Lägg till alternativ",
"unselectPatch": "Avmarkera patch",
"tooltip": "Fler inmatningsalternativ",
"selectFilePath": "Välj filsökväg",
"selectFolder": "Välj mapp",
"selectOption": "Välj alternativ",
"requiredOption": "Inställning av detta alternativ krävs",
"unsupportedOption": "Detta alternativ stöds ej",
"requiredOptionNull": "Följande alternativ måste anges:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Använd standardval"
},
"installerView": {
"widgetTitle": "Installerare",
"installType": "Välj installationstyp",
"installTypeDescription": "Välj vilken installationstyp du vill fortsätta med.",
"installButton": "Installera",
@ -150,7 +129,6 @@
"warning": "Inaktivera automatiska uppdateringar för den patchade appen för att undvika oväntade problem.",
"pressBackAgain": "Tryck igen på bakåt för att avbryta",
"openButton": "Öppna",
"shareButton": "Dela fil",
"notificationTitle": "ReVanced-hanteraren patchar",
"notificationText": "Tryck för att återvända till installeraren",
"exportApkButtonTooltip": "Exportera patchad APK",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Njut av en upplevelse närmare din enhet",
"languageLabel": "Språk",
"languageUpdated": "Språket uppdaterat",
"englishOption": "Engelska",
"sourcesLabel": "Alternativa källor",
"sourcesLabelHint": "Konfigurera alternativa källor för ReVanced patches och ReVanced integrations",
"sourcesIntegrationsLabel": "Källa för integrationer",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "Installationen misslyckades på grund av att den patchade appen var en lägre version än den installerade appen.\n\nAvinstallera appen och försök igen?",
"status_unknown_description": "Installationen misslyckades på grund av en okänd anledning. Försök igen."
}
}
}

View File

@ -16,4 +16,4 @@
"appInfoView": {},
"contributorsView": {},
"installErrorDialog": {}
}
}

View File

@ -16,4 +16,4 @@
"appInfoView": {},
"contributorsView": {},
"installErrorDialog": {}
}
}

View File

@ -16,4 +16,4 @@
"appInfoView": {},
"contributorsView": {},
"installErrorDialog": {}
}
}

View File

@ -2,11 +2,9 @@
"okButton": "ตกลง",
"cancelButton": "ยกเลิก",
"updateButton": "อัปเดต",
"installed": "รุ่นที่ติดตั้ง${version}",
"yesButton": "ใช่",
"noButton": "ไม่",
"warning": "คำเตือน",
"options": "ตัวเลือกบทบาท",
"navigationView": {
"dashboardTab": "หน้าหลัก",
"patcherTab": "ตัวดัดแปลง",
@ -23,8 +21,7 @@
"installingMessage": "กำลังติดตั้งอัปเดต...",
"errorDownloadMessage": "ไม่สามารถดาวน์โหลดอัปเดตได้",
"errorInstallMessage": "ไม่สามารถติดตั้งอัปเดตได้",
"noConnection": "ไม่​มี​การเชื่อม​ต่อ​อินเตอร์​เน็ต",
"updatesDisabled": "ขณะนี้การอัปเดตแอปที่ดัดแปลงถูกปิดใช้งานอยู่ ดัดแปลงแอปใหม่อีกครั้ง"
"noConnection": "ไม่​มี​การเชื่อม​ต่อ​อินเตอร์​เน็ต"
},
"applicationItem": {
"infoButton": "ข้อมูล"
@ -38,9 +35,7 @@
"patchButton": "เริ่มการดัดแปลง"
},
"appSelectorCard": {
"noAppsLabel": "ไม่พบแอปพลิเคชัน",
"currentVersion": "ปัจจุบัน",
"suggestedVersion": "แนะนำ"
"noAppsLabel": "ไม่พบแอปพลิเคชัน"
},
"patchSelectorCard": {
"widgetTitle": "เลือกการดัดแปลง",
@ -67,7 +62,6 @@
"noneTooltip": "เลิกเลือกการดัดแปลงทั้งหมด",
"noPatchesFound": "ไม่พบการดัดแปลงสำหรับแอปที่เลือกไว้"
},
"patchOptionsView": {},
"patchItem": {
"unsupportedDialogText": "การเลือกการดัดแปลงนี้อาจทำให้การดัดแปลงผิดพลาด\n\nเวอร์ชันปัจจุบัน: ${packageVersion}\nเวอร์ชันที่รองรับ:\n${supportedVersions}"
},
@ -126,6 +120,5 @@
},
"contributorsView": {
"widgetTitle": "ผู้ช่วยเหลือโปรเจกต์"
},
"installErrorDialog": {}
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Yoksay",
"quitButton": ık",
"updateButton": "Güncelle",
"enabledLabel": "Etkin",
"disabledLabel": "Devre dışı",
"installed": "Kurulu: ${version}",
"suggested": "Önerilen: ${version}",
"yesButton": "Evet",
"noButton": "Hayır",
"warning": "Uyarı",
"options": "Seçenekler",
"notice": "Dikkat",
"noShowAgain": "Bunu tekrar gösterme",
"add": "Ekle",
@ -29,8 +25,6 @@
"updatesSubtitle": "Güncellemeler",
"patchedSubtitle": "Yamalanmış uygulamalar",
"changeLaterSubtitle": "Bunu daha sonra ayarlardan değiştirebilirsiniz.",
"noUpdates": "Yeni bir güncelleme yok",
"WIP": "Yapım aşamasında...",
"noInstallations": "Kurulu yamalanmış uygulama yok",
"installUpdate": "Güncelleme yüklensin mi?",
"updateSheetTitle": "ReVanced Manager'ı güncelle",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Gerekli dosyalar indirilsin mi?",
"downloadConsentDialogText": "ReVanced Manager'ın düzgün çalışması için gerekli dosyaları indirmesi gerekiyor.",
"downloadConsentDialogText2": "Bu sizi ${url}'a bağlayacak.",
"checkUpdateDialogTitle": "Güncellemeler kontrol edilsin mi?",
"checkUpdateDialogText": "ReVanced Manager'ın güncellemeleri otomatik olarak kontrol etmesini istiyor musunuz?",
"notificationTitle": "Güncelleme indirildi",
"notificationText": "Güncellemeyi yüklemek için tıklayın",
"downloadingMessage": "Güncelleme indiriliyor...",
"downloadedMessage": "Güncelleme indirildi",
"installingMessage": "Güncelleme yükleniyor...",
"errorDownloadMessage": "Güncelleme indirilemedi",
"errorInstallMessage": "Güncelleme yüklenemedi",
"noConnection": "İnternet bağlantısı yok",
"updatesDisabled": "Yamalanmış bir uygulamayı güncellemek şu anda mümkün değil. Uygulamayı tekrardan yamalayın."
"noConnection": "İnternet bağlantısı yok"
},
"applicationItem": {
"infoButton": "Bilgi"
},
"latestCommitCard": {
"loadingLabel": "Yükleniyor...",
"timeagoLabel": "${time} önce",
"patcherLabel": "Yamalayıcı: ",
"managerLabel": "Manager: ",
"updateButton": "Manager'ı güncelle"
"timeagoLabel": "${time} önce"
},
"patcherView": {
"widgetTitle": "Yamalayıcı",
"patchButton": "Yamala",
"armv7WarningDialogText": "ARMv7 cihazlarda yamalama henüz desteklenmemektedir ve başarısız olabilir. Yine de devam edilsin mi?",
"removedPatchesWarningDialogText": "Aşağıdaki yamalar son kullanımınızdan sonra kaldırıldı.\n\n${patches}\n\nYine de devam edilsin mi?",
"requiredOptionDialogText": "Bazı yama seçeneklerinin ayarlanması gerekiyor."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Seçilen uygulama",
"widgetSubtitle": "Bir uygulama seçilmedi",
"noAppsLabel": "Hiçbir uygulama bulunamadı",
"currentVersion": "Şu anki",
"suggestedVersion": "Önerilen",
"anyVersion": "Herhangi bir sürüm"
},
"patchSelectorCard": {
@ -118,15 +101,11 @@
},
"patchOptionsView": {
"customValue": "Özel değer",
"resetOptionsTooltip": "Yama seçeneklerini sıfırla",
"viewTitle": "Yama seçenekleri",
"saveOptions": "Kaydet",
"addOptions": "Seçenek ekle",
"deselectPatch": "Yamanın seçimini kaldır",
"tooltip": "Daha fazla giriş seçeneği",
"selectFilePath": "Dosya yolunu seç",
"selectFolder": "Klasör seç",
"selectOption": "Seçeneği seç",
"requiredOption": "Bu seçenek gereklidir",
"unsupportedOption": "Bu seçenek desteklenmiyor",
"requiredOptionNull": "Aşağıdaki seçeneklerin ayarlanması gerekiyor:\n\n${options}"
@ -139,7 +118,6 @@
"patchesChangeWarningDialogButton": "Varsayılan seçimi kullan"
},
"installerView": {
"widgetTitle": "Yükleyici",
"installType": "Kurulum tipini seçin",
"installTypeDescription": "Kullanılacak kurulum tipini seçin.",
"installButton": "Yükle",
@ -148,7 +126,6 @@
"warning": "Beklenmedik sorunlar ile karşılaşmamak için, otomatik güncellemeleri yamalanmış uygulama için devre dışı bırakın.",
"pressBackAgain": "İptal etmek için tekrar geri tuşuna basın",
"openButton": "Aç",
"shareButton": "Dosyayı paylaş",
"notificationTitle": "ReVanced Manager yamalıyor",
"notificationText": "Yükleyiciye dönmek için dokunun",
"exportApkButtonTooltip": "Yamalanmış APK'yı dışa aktar",
@ -173,7 +150,6 @@
"dynamicThemeHint": "Cihazınıza yakın bir deneyimin keyfini çıkarın",
"languageLabel": "Dil",
"languageUpdated": "Dil güncellendi",
"englishOption": "İngilizce",
"sourcesLabel": "Alternatif kaynaklar",
"sourcesLabelHint": "ReVanced Patches ve ReVanced Integrations için alternatif kaynakları ayarlayın",
"sourcesIntegrationsLabel": "Integrations source",
@ -299,4 +275,4 @@
"install_failed_version_downgrade_description": "Yamalanmış uygulamanın sürümünün, kurulu uygulamadan daha düşük olması nedeniyle kurulum başarısız oldu.\n\nUygulamayı kaldırıp tekrar denemek ister misiniz?",
"status_unknown_description": "Bilinmeyen bir nedenden dolayı kurulum başarısız oldu. Lütfen tekrar deneyin."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Відхилити",
"quitButton": "Вийти",
"updateButton": "Оновити",
"enabledLabel": "Увімкнено",
"disabledLabel": "Вимкнуто",
"installed": "Установлено: ${version}",
"suggested": "Запропоновано: ${version}",
"yesButton": "Так",
"noButton": "Ні",
"warning": "Увага",
"options": "Налаштування",
"notice": "Примітка",
"noShowAgain": "Не показувати знову",
"add": "Додати",
@ -29,8 +25,6 @@
"updatesSubtitle": "Оновлення",
"patchedSubtitle": "Пропатчені застосунки",
"changeLaterSubtitle": "Ви можете змінити це в налаштуваннях пізніше.",
"noUpdates": "Немає доступних оновлень",
"WIP": "В розробці...",
"noInstallations": "Пропатчені застосунки не встановлено",
"installUpdate": "Продовжити встановлення оновлення?",
"updateSheetTitle": "Оновити ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Завантажити необхідні файли?",
"downloadConsentDialogText": "ReVanced Manager повинен завантажити необхідні файли для належної роботи.",
"downloadConsentDialogText2": "Це приєднає вас до ${url}.",
"checkUpdateDialogTitle": "Перевірити оновлення?",
"checkUpdateDialogText": "Бажаєте, щоб ReVanced Manager перевіряв оновлення автоматично?",
"notificationTitle": "Оновлення завантажено",
"notificationText": "Натисніть, щоб встановити оновлення",
"downloadingMessage": "Оновлення завантажується...",
"downloadedMessage": "Оновлення завантажено",
"installingMessage": "Оновлення встановлюєтся...",
"errorDownloadMessage": "Неможливо завантажити оновлення",
"errorInstallMessage": "Не вдалося встановити оновлення",
"noConnection": "Немає з’єднання з інтернетом",
"updatesDisabled": "Оновлення пропатченого застосунку наразі вимкнено. Пропатчіть застосунок ще раз."
"noConnection": "Немає з’єднання з інтернетом"
},
"applicationItem": {
"infoButton": "Інформація"
},
"latestCommitCard": {
"loadingLabel": "Завантаження...",
"timeagoLabel": "${time} тому",
"patcherLabel": "Патчер: ",
"managerLabel": "Менеджер: ",
"updateButton": "Оновити Менеджер"
"timeagoLabel": "${time} тому"
},
"patcherView": {
"widgetTitle": "Патчер",
"patchButton": "Патчити",
"armv7WarningDialogText": "Патчінг на пристроях ARMv7 ще не підтримується і може не спрацювати. Продовжити в будь-якому випадку?",
"removedPatchesWarningDialogText": "Наступні патчі було видалено з моменту останнього використання.\n\n${patches}\n\nВсе одно продовжити?",
"requiredOptionDialogText": "Потрібно встановити деякі параметри патчу."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Вибраний застосунок",
"widgetSubtitle": "Застосунок не вибрано",
"noAppsLabel": "Не знайдено жодного застосунку",
"currentVersion": "Поточна версія",
"suggestedVersion": "Запропоновано",
"anyVersion": "Будь-яка версія"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "Власне значення",
"setToNull": "Встановити в null",
"nullValue": "Значення опції в даний час null",
"resetOptionsTooltip": "Скинути параметри патчу",
"viewTitle": "Параметри патчу",
"saveOptions": "Зберегти",
"addOptions": "Додати параметри",
"unselectPatch": "Скасувати вибір патча",
"tooltip": "Більше варіантів вводу",
"selectFilePath": "Оберіть шлях до файлу",
"selectFolder": "Оберіть теку",
"selectOption": "Вибрати параметр",
"requiredOption": "Встановлення цього параметра є обов'язковим",
"unsupportedOption": "Цей параметр не підтримується",
"requiredOptionNull": "Необхідно встановити наступні параметри:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "Використовувати стандартний вибір"
},
"installerView": {
"widgetTitle": "Інсталятор",
"installType": "Оберіть тип встановлення",
"installTypeDescription": "Оберіть тип встановлення для продовження.",
"installButton": "Встановити",
@ -150,7 +129,6 @@
"warning": "Вимкніть автоматичне оновлення пропатчених застосунків, щоб уникнути неочікуваних проблем.",
"pressBackAgain": "Натисніть назад ще раз, щоб скасувати",
"openButton": "Відкрити",
"shareButton": "Поділитися файлом",
"notificationTitle": "ReVanced Manager патчить",
"notificationText": "Натисніть, щоб повернутися до інсталятора",
"exportApkButtonTooltip": "Експортувати пропатчений APK",
@ -175,7 +153,6 @@
"dynamicThemeHint": "Насолоджуйтесь враженнями ближче до свого пристрою",
"languageLabel": "Мова",
"languageUpdated": "Мову застосунку оновлено",
"englishOption": "Англійська",
"sourcesLabel": "Альтернативні джерела",
"sourcesLabelHint": "Налаштувати альтернативні джерела для ReVanced Patches та ReVanced Integrations",
"sourcesIntegrationsLabel": "Integrations source",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "Встановлення не вдалося через те, що патчений застосунок мав старішу версію, ніж встановлений.\n\nВидалити застосунок та повторити спробу?",
"status_unknown_description": "Встановлення не вдалося через невідому причину. Будь ласка спробуйте ще раз."
}
}
}

View File

@ -3,12 +3,10 @@
"cancelButton": "منسوخ کریں۔",
"quitButton": "چھوڑو",
"updateButton": "اپڈیٹ",
"installed": "موجود: ${version}",
"suggested": "تجویز کردہ: ${version}",
"yesButton": "ہاں",
"noButton": "نہیں",
"warning": "انتباہ",
"options": "اختیارات",
"notice": "اطلاع",
"noShowAgain": "اسے دوبارہ مت دکھائیں۔",
"add": "شامل کریں۔",
@ -29,8 +27,7 @@
"installingMessage": "اپ ڈیٹ انسٹال ہو رہی ہے...",
"errorDownloadMessage": "اپ ڈیٹ ڈونلوڈ نہیں ہو سکی",
"errorInstallMessage": "اپڈیٹ انسٹال نہیں ہو سکی",
"noConnection": "انٹرنیٹ کنکشن میسر نہیں",
"updatesDisabled": "پیچ شدہ ایپلیکیشن کو اپ ڈیٹ کرنا فل حال بند ہے. دوبارہ پیچ کریں."
"noConnection": "انٹرنیٹ کنکشن میسر نہیں"
},
"applicationItem": {
"infoButton": "معلومات نامہ"
@ -44,19 +41,6 @@
"patchButton": "پیچ کریں"
},
"appSelectorCard": {
"noAppsLabel": "کوئی ایپلیکیشن نہیں ملی",
"currentVersion": "موجودہ",
"suggestedVersion": "تجویز کردہ"
},
"patchSelectorCard": {},
"socialMediaCard": {},
"appSelectorView": {},
"patchesSelectorView": {},
"patchOptionsView": {},
"patchItem": {},
"installerView": {},
"settingsView": {},
"appInfoView": {},
"contributorsView": {},
"installErrorDialog": {}
}
"noAppsLabel": "کوئی ایپلیکیشن نہیں ملی"
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "O'tkazib yuborish",
"quitButton": "Chiqish",
"updateButton": "Yangilash",
"enabledLabel": "Yoqilgan",
"disabledLabel": "O'chirilgan",
"installed": "O'rnatilgan versiya: ${version}",
"suggested": "Taklif etilgan versiya: ${version}",
"yesButton": "Xa",
"noButton": "Yo'q",
"warning": "Ogohlantirish",
"options": "Sozlamalar",
"notice": "Eslatma",
"noShowAgain": "Boshqa ko'rsatilmasin",
"add": "Qo'shish",
@ -29,8 +25,6 @@
"updatesSubtitle": "Yangilanishlar",
"patchedSubtitle": "Patchlangan dasturlar",
"changeLaterSubtitle": "Keyinroq sozlamalardan o'zgartirishingiz mumkin.",
"noUpdates": "Yangilanish mavjud emas",
"WIP": "Jarayonda...",
"noInstallations": "Patchlangan dasturlar o'rnatilmagan",
"installUpdate": "Yangilanish o'rnatilishi davom ettirilsinmi?",
"updateSheetTitle": "ReVanced Managerni yangilash",
@ -40,20 +34,5 @@
"updateDialogText": "${file} uchun yangilanish mavjud.\n\nHozirgi o'rnatilgan versiya: ${version}.",
"downloadConsentDialogTitle": "Ba'zi fayllarni yuklab olish?",
"downloadConsentDialogText": "ReVanced Manager ishlashi uchun ba'zi fayllarni yuklab olish kerak."
},
"applicationItem": {},
"latestCommitCard": {},
"patcherView": {},
"appSelectorCard": {},
"patchSelectorCard": {},
"socialMediaCard": {},
"appSelectorView": {},
"patchesSelectorView": {},
"patchOptionsView": {},
"patchItem": {},
"installerView": {},
"settingsView": {},
"appInfoView": {},
"contributorsView": {},
"installErrorDialog": {}
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "Từ bỏ",
"quitButton": "Thoát",
"updateButton": "Cập nhật",
"enabledLabel": "Đã bật",
"disabledLabel": "Đã tắt",
"installed": "Đã cài đặt: ${version}",
"suggested": "Được đề xuất: ${version}",
"yesButton": "Có",
"noButton": "Không",
"warning": "Cảnh báo",
"options": "Tùy chọn",
"notice": "Lưu ý",
"noShowAgain": "Không hiển thị lại điều này",
"add": "Thêm",
@ -29,8 +25,6 @@
"updatesSubtitle": "Các bản cập nhật",
"patchedSubtitle": "Ứng dụng đã vá",
"changeLaterSubtitle": "Bạn có thể thay đổi cài đặt này sau.",
"noUpdates": "Không có bản cập nhật mới",
"WIP": "Đang thực hiện...",
"noInstallations": "Không có ứng dụng đã vá nào được cài đặt",
"installUpdate": "Tiếp tục cài đặt bản cập nhật?",
"updateSheetTitle": "Cập nhật ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "Tải các tập tin cần thiết?",
"downloadConsentDialogText": "ReVanced Manager cần tải các tập tin cần thiết để hoạt động đúng cách.",
"downloadConsentDialogText2": "Điều này sẽ kết nối bạn đến ${url}.",
"checkUpdateDialogTitle": "Kiểm tra cập nhật?",
"checkUpdateDialogText": "Bạn có muốn ReVanced Manager kiểm tra bản cập nhật tự động?",
"notificationTitle": "Đã tải xuống bản cập nhật",
"notificationText": "Nhấn để cài đặt bản cập nhật",
"downloadingMessage": "Đang tải xuống bản cập nhật...",
"downloadedMessage": "Đã tải xuống bản cập nhật",
"installingMessage": "Đang cài đặt bản cập nhật...",
"errorDownloadMessage": "Không thể tải về bản cập nhật",
"errorInstallMessage": "Không thể cài đặt bản cập nhật",
"noConnection": "Không có kết nối mạng",
"updatesDisabled": "Cập nhật một ứng dụng đã được vá hiện đang tắt. Vá lại ứng dụng một lần nữa."
"noConnection": "Không có kết nối mạng"
},
"applicationItem": {
"infoButton": "Thông tin"
},
"latestCommitCard": {
"loadingLabel": "Đang tải...",
"timeagoLabel": "${time} trước",
"patcherLabel": "Trình vá: ",
"managerLabel": "Trình quản lý: ",
"updateButton": "Trình quản lý Cập nhật"
"timeagoLabel": "${time} trước"
},
"patcherView": {
"widgetTitle": "Trình vá",
"patchButton": "Vá",
"armv7WarningDialogText": "Việc vá trên các thiết bị ARMv7 chưa được hỗ trợ và có thể thất bại. Vẫn tiếp tục?",
"removedPatchesWarningDialogText": "Những bản vá sau đây đã bị loại bỏ từ lần cuối bạn dùng chúng.\n\n${patches}\n\nVẫn tiếp tục?",
"requiredOptionDialogText": "Một số tùy chọn bản vá cần được thiết đặt."
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "Ứng dụng đã chọn",
"widgetSubtitle": "Không có ứng dụng được chọn",
"noAppsLabel": "Không tìm thấy ứng dụng nào",
"currentVersion": "Hiện tại",
"suggestedVersion": "Được đề xuất",
"anyVersion": "Phiên bản bất kỳ"
},
"patchSelectorCard": {
@ -118,15 +101,11 @@
},
"patchOptionsView": {
"customValue": "Giá trị tùy chỉnh",
"resetOptionsTooltip": "Cài lại tất cả tùy chọn",
"viewTitle": "Tùy chọn bản vá",
"saveOptions": "Lưu",
"addOptions": "Thêm tùy chọn",
"deselectPatch": "Bỏ chọn bản vá",
"tooltip": "Tùy chọn nhập thêm",
"selectFilePath": "Chọn đường dẫn tập tin",
"selectFolder": "Chọn thư mục",
"selectOption": "Chọn tùy chọn",
"requiredOption": "Tùy chọn này bắt buộc",
"unsupportedOption": "Tùy chọn này không được hỗ trợ",
"requiredOptionNull": "Các tùy chọn sau cần được thiết đặt:\n\n${options}"
@ -139,7 +118,6 @@
"patchesChangeWarningDialogButton": "Dùng lựa chọn mặc định"
},
"installerView": {
"widgetTitle": "Trình cài đặt",
"installType": "Chọn kiểu cài đặt",
"installTypeDescription": "Chọn kiểu cài đặt để thực hiện với nó.",
"installButton": "Cài đặt",
@ -148,7 +126,6 @@
"warning": "Tắt tự động cập nhật cho ứng dụng đã vá để tránh các phát sinh không mong muốn.",
"pressBackAgain": "Nhấn quay lại lần nữa để hủy",
"openButton": "Mở",
"shareButton": "Chia sẻ tệp",
"notificationTitle": "ReVanced Manager đang vá",
"notificationText": "Nhấn để trở lại trình cài đặt",
"exportApkButtonTooltip": "Xuất APK đã vá",
@ -173,7 +150,6 @@
"dynamicThemeHint": "Tận hưởng trải nghiệm gần hơn với thiết bị của bạn",
"languageLabel": "Ngôn ngữ",
"languageUpdated": "Ngôn ngữ đã cập nhập",
"englishOption": "Tiếng Anh",
"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",
@ -299,4 +275,4 @@
"install_failed_version_downgrade_description": "Việc cài đặt đã thất bại do ứng dụng đã vá có phiên bản nhỏ hơn ứng dụng đã cài đặt.\n\nGỡ cài đặt ứng dụng và thử lại?",
"status_unknown_description": "Việc cài đặt đã thất bại do một lý do chưa rõ. Xin thử lại."
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "忽略",
"quitButton": "退出",
"updateButton": "更新",
"enabledLabel": "已启用",
"disabledLabel": "已禁用",
"installed": "已安装版本:${version}",
"suggested": "建议的版本:${version}",
"yesButton": "是",
"noButton": "否",
"warning": "警告",
"options": "选项",
"notice": "提示",
"noShowAgain": "不再显示此内容",
"add": "添加",
@ -29,8 +25,6 @@
"updatesSubtitle": "更新",
"patchedSubtitle": "已应用补丁的应用程序",
"changeLaterSubtitle": "您可以稍后在设置中更改此设置。",
"noUpdates": "暂无更新",
"WIP": "正在执行操作…",
"noInstallations": "没有安装已修补的应用",
"installUpdate": "继续安装该更新?",
"updateSheetTitle": "更新 ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "下载必要文件吗?",
"downloadConsentDialogText": "ReVanced Manager 需要下载必要的文件才能正常工作。",
"downloadConsentDialogText2": "这会将您连接到 ${url}。",
"checkUpdateDialogTitle": "要检查更新吗?",
"checkUpdateDialogText": "您想要ReVanced Manager自动检查更新吗",
"notificationTitle": "更新下载完成!",
"notificationText": "点击安装更新",
"downloadingMessage": "正在下载更新…",
"downloadedMessage": "更新下载完成!",
"installingMessage": "正在安装更新…",
"errorDownloadMessage": "无法下载更新",
"errorInstallMessage": "无法安装更新",
"noConnection": "未连接网络",
"updatesDisabled": "已禁用更新已修补的应用。请重新修补此应用。"
"noConnection": "未连接网络"
},
"applicationItem": {
"infoButton": "信息"
},
"latestCommitCard": {
"loadingLabel": "正在加载…",
"timeagoLabel": "${time} 前",
"patcherLabel": "补丁程序: ",
"managerLabel": "管理器: ",
"updateButton": "更新管理器"
"timeagoLabel": "${time} 前"
},
"patcherView": {
"widgetTitle": "修补器",
"patchButton": "修补",
"armv7WarningDialogText": "尚不支持在 ARMv7 设备上进行修补并且可能会失败。仍要继续吗?",
"removedPatchesWarningDialogText": "自您上次使用以下补丁以来,它们已被删除。\n\n${patches}\n\n还是继续吗",
"requiredOptionDialogText": "某些补丁选项必须设置。"
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "已选择的应用",
"widgetSubtitle": "未选择任何应用",
"noAppsLabel": "未发现应用程序",
"currentVersion": "当前",
"suggestedVersion": "建议",
"anyVersion": "所有版本"
},
"patchSelectorCard": {
@ -120,15 +103,12 @@
"customValue": "自定义值",
"setToNull": "设置为为空",
"nullValue": "此选项值当前为空",
"resetOptionsTooltip": "重置补丁选项",
"viewTitle": "补丁选项",
"saveOptions": "保存",
"addOptions": "添加选项",
"unselectPatch": "取消选择补丁",
"tooltip": "更多输入选项",
"selectFilePath": "选择文件路径",
"selectFolder": "选择文件夹",
"selectOption": "选择选项",
"requiredOption": "设置此选项是必需的",
"unsupportedOption": "不支持此选项",
"requiredOptionNull": "必须设置以下选项:\n\n${options}"
@ -141,7 +121,6 @@
"patchesChangeWarningDialogButton": "使用默认选择"
},
"installerView": {
"widgetTitle": "安装器",
"installType": "选择安装类型",
"installTypeDescription": "选择要继续的安装类型。",
"installButton": "安装",
@ -150,7 +129,6 @@
"warning": "禁用补丁应用的自动更新,以避免意外问题。",
"pressBackAgain": "再次按返回键取消",
"openButton": "打开",
"shareButton": "分享文件",
"notificationTitle": "ReVanced Manager 正在应用补丁",
"notificationText": "点击返回到安装器",
"exportApkButtonTooltip": "导出已修补的 APK",
@ -175,7 +153,6 @@
"dynamicThemeHint": "享受更贴近你的设备的体验",
"languageLabel": "语言",
"languageUpdated": "语言已更新",
"englishOption": "英语",
"sourcesLabel": "其他来源",
"sourcesLabelHint": "配置 ReVanced 补丁和 ReVanced 集成的替代源",
"sourcesIntegrationsLabel": "集成源",
@ -301,4 +278,4 @@
"install_failed_version_downgrade_description": "由于修补的应用程序版本低于已安装的应用程序,安装失败。\n\n卸载该应用程序并重试",
"status_unknown_description": "由于未知原因,安装失败。请重试。"
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "忽略",
"quitButton": "離開",
"updateButton": "更新",
"enabledLabel": "已啟用",
"disabledLabel": "已關閉",
"installed": "已安裝版本: ${version}",
"suggested": "建議: ${version}",
"yesButton": "是",
"noButton": "不是",
"warning": "警告",
"options": "選項",
"notice": "通知",
"noShowAgain": "唔再顯示哩個內容",
"add": "增加",
@ -29,8 +25,6 @@
"updatesSubtitle": "更新",
"patchedSubtitle": "修改咗既應用",
"changeLaterSubtitle": "你可以之後喺設定改返",
"noUpdates": "冇新既更新",
"WIP": "開發中...",
"noInstallations": "未安裝修改咗既應用",
"installUpdate": "繼續安裝更新嗎?",
"updateSheetTitle": "更新 ReVanced Manager",
@ -38,36 +32,28 @@
"updatePatchesSheetTitle": "更新 ReVanced 補丁",
"updateChangelogTitle": "變更日誌",
"downloadConsentDialogTitle": "下載必要嘅文件?",
"checkUpdateDialogTitle": "檢查更新?",
"downloadingMessage": "正在下載更新",
"installingMessage": "正在安裝更新…",
"errorDownloadMessage": "下載唔到更新",
"errorInstallMessage": "安裝更新失敗",
"noConnection": "冇網路連線",
"updatesDisabled": "更新已修補的應用已暫時被禁用。請重新修補應用。"
"noConnection": "冇網路連線"
},
"applicationItem": {
"infoButton": "信息"
},
"latestCommitCard": {
"loadingLabel": "載入中...",
"timeagoLabel": "${time} 之前",
"patcherLabel": "修補工具: ",
"managerLabel": "管理器: ",
"updateButton": "更新管理器"
"timeagoLabel": "${time} 之前"
},
"patcherView": {
"widgetTitle": "修補工具",
"patchButton": "修補",
"armv7WarningDialogText": "唔支援在ARMv7架構嘅設備上打補丁要唔要繼續"
"patchButton": "修補"
},
"appSelectorCard": {
"widgetTitle": "選擇一個應用程式",
"widgetTitleSelected": "揀咗嘅應用程式",
"widgetSubtitle": "冇揀咗嘅應用程式",
"noAppsLabel": "搵唔到應用",
"currentVersion": "目前",
"suggestedVersion": "建議",
"anyVersion": "任何版本"
},
"patchSelectorCard": {
@ -103,7 +89,6 @@
"noSavedPatches": "冇保存咗嘅補丁選擇俾呢個應用。\n撳\"完成\"嚟保存當前嘅選擇。",
"noPatchesFound": "冇補丁俾呢個揀咗嘅應用。"
},
"patchOptionsView": {},
"patchItem": {
"unsupportedDialogText": "揀咗哩種修改可能會導致修改錯誤\n\nApp 版本: ${packageVersion}\n現時支援嘅版本: \n${supportedVersions}"
},
@ -153,6 +138,5 @@
},
"contributorsView": {
"widgetTitle": "貢獻者"
},
"installErrorDialog": {}
}
}
}

View File

@ -4,14 +4,10 @@
"dismissButton": "忽略",
"quitButton": "退出",
"updateButton": "更新",
"enabledLabel": "已啟用",
"disabledLabel": "已停用",
"installed": "已安裝: ${version}",
"suggested": "建議版本:${version}",
"yesButton": "是",
"noButton": "否",
"warning": "警告",
"options": "選項",
"notice": "提示",
"noShowAgain": "不再顯示此內容",
"add": "新增",
@ -29,8 +25,6 @@
"updatesSubtitle": "更新",
"patchedSubtitle": "已修補的應用程式",
"changeLaterSubtitle": "您稍後可以在設定中變更此項。",
"noUpdates": "沒有可用的更新",
"WIP": "進行中……",
"noInstallations": "未安裝已修補的應用程式",
"installUpdate": "是否要繼續安裝更新?",
"updateSheetTitle": "更新 ReVanced Manager",
@ -41,32 +35,23 @@
"downloadConsentDialogTitle": "需要下載必要檔案嗎?",
"downloadConsentDialogText": "ReVanced Manager 需要下載必要檔案才能正常執行。",
"downloadConsentDialogText2": "這將連結您至 ${url}。",
"checkUpdateDialogTitle": "檢查更新?",
"checkUpdateDialogText": "您希望 ReVanced Manager 自動檢查更新嗎?",
"notificationTitle": "更新已下載",
"notificationText": "點擊安裝更新",
"downloadingMessage": "正在下載更新……",
"downloadedMessage": "更新已下載",
"installingMessage": "正在安裝更新……",
"errorDownloadMessage": "無法下載更新",
"errorInstallMessage": "無法安裝更新",
"noConnection": "沒有網際網路連線",
"updatesDisabled": "已停用更新現已修補的應用程式。請重新修補應用程式。"
"noConnection": "沒有網際網路連線"
},
"applicationItem": {
"infoButton": "資訊"
},
"latestCommitCard": {
"loadingLabel": "正在載入……",
"timeagoLabel": "${time} 前",
"patcherLabel": "修補工具: ",
"managerLabel": "Manager",
"updateButton": "更新 Manager"
"timeagoLabel": "${time} 前"
},
"patcherView": {
"widgetTitle": "修補工具",
"patchButton": "修補",
"armv7WarningDialogText": "ARMv7 裝置上的修補功能尚未支援,可能會失敗。無論如何繼續?",
"removedPatchesWarningDialogText": "自從您上次使用以來,以下修補檔已被移除。\n\n${patches} \n\n無論如何繼續",
"requiredOptionDialogText": "某些修補檔選項需要設定。"
},
@ -75,8 +60,6 @@
"widgetTitleSelected": "已選擇的應用程式",
"widgetSubtitle": "未選擇任何應用程式",
"noAppsLabel": "找不到應用程式",
"currentVersion": "目前版本",
"suggestedVersion": "建議版本",
"anyVersion": "任何版本"
},
"patchSelectorCard": {
@ -118,15 +101,11 @@
},
"patchOptionsView": {
"customValue": "自訂值",
"resetOptionsTooltip": "重設修補選項",
"viewTitle": "修補檔選項",
"saveOptions": "儲存",
"addOptions": "新增設定選項",
"deselectPatch": "取消選擇修補檔",
"tooltip": "進一步的輸入設定",
"selectFilePath": "請選擇檔案路徑",
"selectFolder": "請選取資料夾",
"selectOption": "選擇選項",
"requiredOption": "此設定項目為必填",
"unsupportedOption": "此設定項目不適用於本應用程式",
"requiredOptionNull": "以下設定項目需要完成:\n\n${options}"
@ -139,7 +118,6 @@
"patchesChangeWarningDialogButton": "採用預設設定選項"
},
"installerView": {
"widgetTitle": "安裝程式",
"installType": "請選擇安裝方式",
"installTypeDescription": "選擇安裝類型以繼續。",
"installButton": "安裝",
@ -148,7 +126,6 @@
"warning": "停用已修補應用程式的自動更新,以避免意外問題。",
"pressBackAgain": "再次按「返回」以取消操作",
"openButton": "開啟",
"shareButton": "分享檔案",
"notificationTitle": "ReVanced Manager 正在修補",
"notificationText": "輕觸以返回安裝程式",
"exportApkButtonTooltip": "匯出已修補的 APK 檔案",
@ -173,7 +150,6 @@
"dynamicThemeHint": "享受更貼近您裝置的使用體驗",
"languageLabel": "語言",
"languageUpdated": "已更新語言",
"englishOption": "英文",
"sourcesLabel": "替代來源",
"sourcesLabelHint": "設定 ReVanced 修補和 ReVanced 整合的替代來源",
"sourcesIntegrationsLabel": "整合來源",
@ -299,4 +275,4 @@
"install_failed_version_downgrade_description": "安裝失敗是因為已修補的應用程式版本低於已安裝的應用程式。\n\n請解除安裝應用程式然後重試",
"status_unknown_description": "安裝失敗是因為未知原因。請重試。"
}
}
}

View File

@ -5,9 +5,6 @@ To use ReVanced Manager, you need to fulfill certain requirements.
## 🤝 Requirements
- An Android device running Android 8 or higher
- Any device architecture except ARMv7[^1]
[^1]: Patching on ARMv7 is limited to bytecode patching but may work in certain circumstances for resource patching. You can check your device architecture in ReVanced Manager settings.
## ⏭️ What's next

View File

@ -4,7 +4,7 @@ To use ReVanced on your Android device, ReVanced Manager must be first installed
## ✅ Installation steps
1. Download the latest version of ReVanced Manager at [revanced.app/download](https://revanced.app/download) or from [GitHub releases](https://github.com/ReVanced/revanced-manager/releases)
1. Download the latest version of ReVanced Manager at [revanced.app/download](https://revanced.app/download) or from [GitHub releases](https://github.com/ReVanced/revanced-manager/releases/latest)
2. Install ReVanced Manager
## ⏭️ What's next

View File

@ -832,82 +832,4 @@ class ManagerAPI {
selectedPatchesFile.deleteSync();
}
}
Future<bool> installTypeDialog(BuildContext context) async {
final ValueNotifier<int> installType = ValueNotifier(0);
if (isRooted) {
await showDialog(
context: context,
barrierDismissible: false,
builder: (context) => AlertDialog(
title: Text(t.installerView.installType),
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
icon: const Icon(Icons.file_download_outlined),
contentPadding: const EdgeInsets.symmetric(vertical: 16),
content: SingleChildScrollView(
child: ValueListenableBuilder(
valueListenable: installType,
builder: (context, value, child) {
return Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
padding: const EdgeInsets.symmetric(
horizontal: 20,
vertical: 10,
),
child: Text(
t.installerView.installTypeDescription,
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w500,
color: Theme.of(context).colorScheme.secondary,
),
),
),
RadioListTile(
title: Text(t.installerView.installNonRootType),
contentPadding:
const EdgeInsets.symmetric(horizontal: 16),
value: 0,
groupValue: value,
onChanged: (selected) {
installType.value = selected!;
},
),
RadioListTile(
title: Text(t.installerView.installRootType),
contentPadding:
const EdgeInsets.symmetric(horizontal: 16),
value: 1,
groupValue: value,
onChanged: (selected) {
installType.value = selected!;
},
),
],
);
},
),
),
actions: [
OutlinedButton(
child: Text(t.cancelButton),
onPressed: () {
Navigator.of(context).pop();
},
),
FilledButton(
child: Text(t.installerView.installButton),
onPressed: () {
Navigator.of(context).pop();
},
),
],
),
);
}
return false;
}
}

View File

@ -10,7 +10,7 @@ var lightCustomTheme = ThemeData(
useMaterial3: true,
colorScheme: lightCustomColorScheme,
navigationBarTheme: NavigationBarThemeData(
labelTextStyle: MaterialStateProperty.all(
labelTextStyle: WidgetStateProperty.all(
TextStyle(
color: lightCustomColorScheme.onSurface,
fontWeight: FontWeight.w500,
@ -31,7 +31,7 @@ var darkCustomTheme = ThemeData(
useMaterial3: true,
colorScheme: darkCustomColorScheme,
navigationBarTheme: NavigationBarThemeData(
labelTextStyle: MaterialStateProperty.all(
labelTextStyle: WidgetStateProperty.all(
TextStyle(
color: darkCustomColorScheme.onSurface,
fontWeight: FontWeight.w500,

View File

@ -2,7 +2,6 @@ import 'dart:ui';
import 'package:dynamic_color/dynamic_color.dart';
import 'package:dynamic_themes/dynamic_themes.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:revanced_manager/app/app.router.dart';
@ -52,7 +51,7 @@ class _DynamicThemeBuilderState extends State<DynamicThemeBuilder>
final ThemeData lightDynamicTheme = ThemeData(
useMaterial3: true,
navigationBarTheme: NavigationBarThemeData(
labelTextStyle: MaterialStateProperty.all(
labelTextStyle: WidgetStateProperty.all(
GoogleFonts.roboto(
color: lightColorScheme?.onSurface,
fontWeight: FontWeight.w500,
@ -66,7 +65,7 @@ class _DynamicThemeBuilderState extends State<DynamicThemeBuilder>
brightness: Brightness.dark,
useMaterial3: true,
navigationBarTheme: NavigationBarThemeData(
labelTextStyle: MaterialStateProperty.all(
labelTextStyle: WidgetStateProperty.all(
GoogleFonts.roboto(
color: darkColorScheme?.onSurface,
fontWeight: FontWeight.w500,

View File

@ -13,6 +13,7 @@ import 'package:revanced_manager/services/manager_api.dart';
import 'package:revanced_manager/services/patcher_api.dart';
import 'package:revanced_manager/services/toast.dart';
import 'package:revanced_manager/ui/views/patcher/patcher_viewmodel.dart';
import 'package:revanced_manager/utils/about_info.dart';
import 'package:revanced_manager/utils/check_for_supported_patch.dart';
import 'package:stacked/stacked.dart';
@ -74,11 +75,14 @@ class AppSelectorViewModel extends BaseViewModel {
required String packageName,
}) async {
final String suggestedVersion = getSuggestedVersion(packageName);
final String architecture = await AboutInfo.getInfo().then((info) {
return info['supportedArch'][0];
});
if (suggestedVersion.isNotEmpty) {
await openDefaultBrowser('$packageName apk version $suggestedVersion');
await openDefaultBrowser('$packageName apk version $suggestedVersion $architecture');
} else {
await openDefaultBrowser('$packageName apk');
await openDefaultBrowser('$packageName apk $architecture');
}
}
@ -178,7 +182,6 @@ class AppSelectorViewModel extends BaseViewModel {
fontSize: 16,
fontWeight: FontWeight.w500,
),
),
actions: [
FilledButton(

View File

@ -4,8 +4,8 @@ import 'package:revanced_manager/app/app.locator.dart';
import 'package:revanced_manager/gen/strings.g.dart';
import 'package:revanced_manager/ui/views/home/home_viewmodel.dart';
import 'package:revanced_manager/ui/widgets/homeView/installed_apps_card.dart';
import 'package:revanced_manager/ui/widgets/homeView/latest_commit_card.dart';
import 'package:revanced_manager/ui/widgets/homeView/last_patched_app_card.dart';
import 'package:revanced_manager/ui/widgets/homeView/latest_commit_card.dart';
import 'package:revanced_manager/ui/widgets/shared/custom_sliver_app_bar.dart';
import 'package:stacked/stacked.dart';
@ -48,20 +48,19 @@ class HomeView extends StatelessWidget {
LatestCommitCard(model: model, parentContext: context),
const SizedBox(height: 23),
Visibility(
visible: model.isLastPatchedAppEnabled(),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
t.homeView.lastPatchedAppSubtitle,
style: Theme.of(context).textTheme.titleLarge,
),
const SizedBox(height: 10),
LastPatchedAppCard(),
const SizedBox(height: 10),
],
),
visible: model.isLastPatchedAppEnabled(),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
t.homeView.lastPatchedAppSubtitle,
style: Theme.of(context).textTheme.titleLarge,
),
const SizedBox(height: 10),
LastPatchedAppCard(),
const SizedBox(height: 10),
],
),
),
Text(
t.homeView.patchedSubtitle,

View File

@ -458,10 +458,6 @@ class HomeViewModel extends BaseViewModel {
}
}
void updatesAreDisabled() {
_toast.showBottom(t.homeView.updatesDisabled);
}
Future<void> showUpdateConfirmationDialog(
BuildContext parentContext,
bool isPatches, [

View File

@ -495,7 +495,7 @@ class InstallerViewModel extends BaseViewModel {
Future<void> installResult(BuildContext context, bool installAsRoot) async {
isInstalling = true;
try {
_app.isRooted = await _managerAPI.installTypeDialog(context);
_app.isRooted = installAsRoot;
if (headerLogs != 'Installing...') {
update(
.85,
@ -512,7 +512,7 @@ class InstallerViewModel extends BaseViewModel {
// In case a patch changed the app name or package name,
// update the app info.
final app =
await DeviceApps.getAppFromStorage(_patcherAPI.outFile!.path);
await DeviceApps.getAppFromStorage(_patcherAPI.outFile!.path);
if (app != null) {
_app.name = app.appName;
_app.packageName = app.packageName;

View File

@ -27,7 +27,7 @@ class PatcherView extends StatelessWidget {
if (model.checkRequiredPatchOption(context)) {
final bool proceed = model.showRemovedPatchesDialog(context);
if (proceed && context.mounted) {
model.showArmv7WarningDialog(context);
model.showIncompatibleArchWarningDialog(context);
}
}
},

View File

@ -70,7 +70,7 @@ class PatcherViewModel extends BaseViewModel {
FilledButton(
onPressed: () {
Navigator.of(context).pop();
showArmv7WarningDialog(context);
showIncompatibleArchWarningDialog(context);
},
child: Text(t.yesButton),
),
@ -116,18 +116,18 @@ class PatcherViewModel extends BaseViewModel {
);
}
Future<void> showArmv7WarningDialog(BuildContext context) async {
final bool armv7 = await AboutInfo.getInfo().then((info) {
Future<void> showIncompatibleArchWarningDialog(BuildContext context) async {
final bool notSupported = await AboutInfo.getInfo().then((info) {
final List<String> archs = info['supportedArch'];
final supportedAbis = ['arm64-v8a', 'x86', 'x86_64'];
final supportedAbis = ['arm64-v8a', 'x86', 'x86_64', 'armeabi-v7a'];
return !archs.any((arch) => supportedAbis.contains(arch));
});
if (context.mounted && armv7) {
if (context.mounted && notSupported) {
return showDialog(
context: context,
builder: (context) => AlertDialog(
title: Text(t.warning),
content: Text(t.patcherView.armv7WarningDialogText),
content: Text(t.patcherView.incompatibleArchWarningDialogText),
actions: <Widget>[
FilledButton(
onPressed: () => Navigator.of(context).pop(),

View File

@ -1,5 +1,6 @@
// ignore_for_file: use_build_context_synchronously
import 'dart:math';
import 'package:device_apps/device_apps.dart';
import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
@ -11,6 +12,7 @@ import 'package:revanced_manager/services/patcher_api.dart';
import 'package:revanced_manager/services/root_api.dart';
import 'package:revanced_manager/services/toast.dart';
import 'package:revanced_manager/ui/views/home/home_viewmodel.dart';
import 'package:revanced_manager/ui/views/installer/installer_viewmodel.dart';
import 'package:revanced_manager/ui/views/navigation/navigation_viewmodel.dart';
import 'package:revanced_manager/ui/views/patcher/patcher_viewmodel.dart';
import 'package:stacked/stacked.dart';
@ -25,11 +27,7 @@ class AppInfoViewModel extends BaseViewModel {
BuildContext context,
PatchedApplication app,
) async {
app.isRooted = await _managerAPI.installTypeDialog(context);
final int statusCode = await _patcherAPI.installPatchedFile(context, app);
if (statusCode == 0) {
locator<HomeViewModel>().initialize(context);
}
locator<InstallerViewModel>().installTypeDialog(context);
}
Future<void> exportApp(
@ -152,7 +150,7 @@ class AppInfoViewModel extends BaseViewModel {
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
content: Text(t.appInfoView.removeAppDialogText),
actions: <Widget>[
OutlinedButton(
TextButton(
child: Text(t.cancelButton),
onPressed: () => Navigator.of(context).pop(),
),
@ -160,7 +158,9 @@ class AppInfoViewModel extends BaseViewModel {
child: Text(t.okButton),
onPressed: () => {
_managerAPI.deleteLastPatchedApp(),
Navigator.of(context)..pop()..pop(),
Navigator.of(context)
..pop()
..pop(),
locator<HomeViewModel>().initialize(context),
},
),

View File

@ -170,7 +170,7 @@ class _PatchItemState extends State<PatchItem> {
onPressed: () =>
_showUnsupportedWarningDialog(),
style: ButtonStyle(
shape: MaterialStateProperty.all(
shape: WidgetStateProperty.all(
RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(8),
@ -181,12 +181,10 @@ class _PatchItemState extends State<PatchItem> {
),
),
),
backgroundColor:
MaterialStateProperty.all(
backgroundColor: WidgetStateProperty.all(
Colors.transparent,
),
foregroundColor:
MaterialStateProperty.all(
foregroundColor: WidgetStateProperty.all(
Theme.of(context).colorScheme.secondary,
),
),

View File

@ -38,8 +38,8 @@ class CustomSliverAppBar extends StatelessWidget {
onPressed:
onBackButtonPressed ?? () => Navigator.of(context).pop(),
),
backgroundColor: MaterialStateColor.resolveWith(
(states) => states.contains(MaterialState.scrolledUnder)
backgroundColor: WidgetStateColor.resolveWith(
(states) => states.contains(WidgetState.scrolledUnder)
? Theme.of(context).colorScheme.surface
: Theme.of(context).canvasColor,
),

View File

@ -5,18 +5,23 @@ packages:
dependency: transitive
description:
name: _fe_analyzer_shared
sha256: "0b2f2bd91ba804e53a61d757b986f89f1f9eaed5b11e4b2f5a2468d86d6c9fc7"
sha256: "5aaf60d96c4cd00fe7f21594b5ad6a1b699c80a27420f8a837f4d68473ef09e3"
url: "https://pub.dev"
source: hosted
version: "67.0.0"
version: "68.0.0"
_macros:
dependency: transitive
description: dart
source: sdk
version: "0.1.5"
analyzer:
dependency: "direct dev"
description:
name: analyzer
sha256: "37577842a27e4338429a1cbc32679d508836510b056f1eedf0c8d20e39c1383d"
sha256: "21f1d3720fd1c70316399d5e2bccaebb415c434592d778cce8acb967b8578808"
url: "https://pub.dev"
source: hosted
version: "6.4.1"
version: "6.5.0"
animations:
dependency: "direct main"
description:
@ -69,10 +74,10 @@ packages:
dependency: transitive
description:
name: build_daemon
sha256: "0343061a33da9c5810b2d6cee51945127d8f4c060b7fbdd9d54917f0a3feaaa1"
sha256: "79b2aef6ac2ed00046867ed354c88778c9c0f029df8a20fe10b5436826721ef9"
url: "https://pub.dev"
source: hosted
version: "4.0.1"
version: "4.0.2"
build_resolvers:
dependency: transitive
description:
@ -93,10 +98,10 @@ packages:
dependency: transitive
description:
name: build_runner_core
sha256: "4ae8ffe5ac758da294ecf1802f2aff01558d8b1b00616aa7538ea9a8a5d50799"
sha256: e3c79f69a64bdfcd8a776a3c28db4eb6e3fb5356d013ae5eb2e52007706d5dbe
url: "https://pub.dev"
source: hosted
version: "7.3.0"
version: "7.3.1"
built_collection:
dependency: transitive
description:
@ -157,18 +162,18 @@ packages:
dependency: "direct main"
description:
name: connectivity_plus
sha256: db7a4e143dc72cc3cb2044ef9b052a7ebfe729513e6a82943bc3526f784365b8
sha256: "3e7d1d9dbae40ae82cbe6c23c518f0c4ffe32764ee9749b9a99d32cbac8734f6"
url: "https://pub.dev"
source: hosted
version: "6.0.3"
version: "6.0.4"
connectivity_plus_platform_interface:
dependency: transitive
description:
name: connectivity_plus_platform_interface
sha256: b6a56efe1e6675be240de39107281d4034b64ac23438026355b4234042a35adb
sha256: "42657c1715d48b167930d5f34d00222ac100475f73d10162ddf43e714932f204"
url: "https://pub.dev"
source: hosted
version: "2.0.0"
version: "2.0.1"
convert:
dependency: transitive
description:
@ -230,26 +235,26 @@ packages:
dependency: "direct main"
description:
name: device_info_plus
sha256: eead12d1a1ed83d8283ab4c2f3fca23ac4082f29f25f29dff0f758f57d06ec91
sha256: "93429694c9253d2871b3af80cf11b3cbb5c65660d402ed7bf69854ce4a089f82"
url: "https://pub.dev"
source: hosted
version: "10.1.0"
version: "10.1.1"
device_info_plus_platform_interface:
dependency: transitive
description:
name: device_info_plus_platform_interface
sha256: d3b01d5868b50ae571cd1dc6e502fc94d956b665756180f7b16ead09e836fd64
sha256: "282d3cf731045a2feb66abfe61bbc40870ae50a3ed10a4d3d217556c35c8c2ba"
url: "https://pub.dev"
source: hosted
version: "7.0.0"
version: "7.0.1"
dio:
dependency: "direct main"
description:
name: dio
sha256: "11e40df547d418cc0c4900a9318b26304e665da6fa4755399a9ff9efd09034b5"
sha256: e17f6b3097b8c51b72c74c9f071a605c47bcc8893839bd66732457a5ebe73714
url: "https://pub.dev"
source: hosted
version: "5.4.3+1"
version: "5.5.0+1"
dio_cache_interceptor:
dependency: "direct main"
description:
@ -258,6 +263,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "3.5.0"
dio_web_adapter:
dependency: transitive
description:
name: dio_web_adapter
sha256: "36c5b2d79eb17cdae41e974b7a8284fec631651d2a6f39a8a2ff22327e90aeac"
url: "https://pub.dev"
source: hosted
version: "1.0.1"
dynamic_color:
dependency: "direct main"
description:
@ -306,6 +319,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "7.0.0"
file_picker:
dependency: "direct main"
description:
name: file_picker
sha256: "824f5b9f389bfc4dddac3dea76cd70c51092d9dff0b2ece7ef4f53db8547d258"
url: "https://pub.dev"
source: hosted
version: "8.0.6"
fixnum:
dependency: transitive
description:
@ -332,10 +353,10 @@ packages:
dependency: "direct main"
description:
name: flutter_cache_manager
sha256: "395d6b7831f21f3b989ebedbb785545932adb9afe2622c1ffacf7f4b53a7e544"
sha256: ceff65d74d907b1b772e22cf04daad60fb472461638977d9fae8b00a63e01e3d
url: "https://pub.dev"
source: hosted
version: "3.3.2"
version: "3.3.3"
flutter_file_dialog:
dependency: "direct main"
description:
@ -356,26 +377,26 @@ packages:
dependency: "direct main"
description:
name: flutter_local_notifications
sha256: "40e6fbd2da7dcc7ed78432c5cdab1559674b4af035fddbfb2f9a8f9c2112fcef"
sha256: dd6676d8c2926537eccdf9f72128bbb2a9d0814689527b17f92c248ff192eaf3
url: "https://pub.dev"
source: hosted
version: "17.1.2"
version: "17.2.1+2"
flutter_local_notifications_linux:
dependency: transitive
description:
name: flutter_local_notifications_linux
sha256: "33f741ef47b5f63cc7f78fe75eeeac7e19f171ff3c3df054d84c1e38bedb6a03"
sha256: c49bd06165cad9beeb79090b18cd1eb0296f4bf4b23b84426e37dd7c027fc3af
url: "https://pub.dev"
source: hosted
version: "4.0.0+1"
version: "4.0.1"
flutter_local_notifications_platform_interface:
dependency: transitive
description:
name: flutter_local_notifications_platform_interface
sha256: "340abf67df238f7f0ef58f4a26d2a83e1ab74c77ab03cd2b2d5018ac64db30b7"
sha256: "85f8d07fe708c1bdcf45037f2c0109753b26ae077e9d9e899d55971711a4ea66"
url: "https://pub.dev"
source: hosted
version: "7.1.0"
version: "7.2.0"
flutter_localizations:
dependency: "direct main"
description: flutter
@ -385,10 +406,18 @@ packages:
dependency: "direct main"
description:
name: flutter_markdown
sha256: "9921f9deda326f8a885e202b1e35237eadfc1345239a0f6f0f1ff287e047547f"
sha256: "2e8a801b1ded5ea001a4529c97b1f213dcb11c6b20668e081cafb23468593514"
url: "https://pub.dev"
source: hosted
version: "0.7.1"
version: "0.7.3"
flutter_plugin_android_lifecycle:
dependency: transitive
description:
name: flutter_plugin_android_lifecycle
sha256: "9d98bd47ef9d34e803d438f17fd32b116d31009f534a6fa5ce3a1167f189a6de"
url: "https://pub.dev"
source: hosted
version: "2.0.21"
flutter_test:
dependency: transitive
description: flutter
@ -403,10 +432,10 @@ packages:
dependency: "direct main"
description:
name: fluttertoast
sha256: "81b68579e23fcbcada2db3d50302813d2371664afe6165bc78148050ab94bf66"
sha256: "7eae679e596a44fdf761853a706f74979f8dd3cd92cf4e23cae161fda091b847"
url: "https://pub.dev"
source: hosted
version: "8.2.5"
version: "8.2.6"
font_awesome_flutter:
dependency: "direct main"
description:
@ -419,10 +448,10 @@ packages:
dependency: transitive
description:
name: freezed_annotation
sha256: c3fd9336eb55a38cc1bbd79ab17573113a8deccd0ecbbf926cca3c62803b5c2d
sha256: c2e2d632dd9b8a2b7751117abcfc2b4888ecfe181bd9fca7170d9ef02e595fe2
url: "https://pub.dev"
source: hosted
version: "2.4.1"
version: "2.4.4"
frontend_server_client:
dependency: transitive
description:
@ -467,18 +496,18 @@ packages:
dependency: transitive
description:
name: graphs
sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19
sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0"
url: "https://pub.dev"
source: hosted
version: "2.3.1"
version: "2.3.2"
http:
dependency: transitive
description:
name: http
sha256: "761a297c042deedc1ffbb156d6e2af13886bb305c2a343a4d972504cd67dd938"
sha256: b9c29a161230ee03d3ccf545097fccd9b87a5264228c5d348202e0f0c28f9010
url: "https://pub.dev"
source: hosted
version: "1.2.1"
version: "1.2.2"
http_multi_server:
dependency: transitive
description:
@ -499,18 +528,18 @@ packages:
dependency: "direct main"
description:
name: injectable
sha256: "3c8355a29d11ff28c0311bed754649761f345ef7a13ff66a714380954af51226"
sha256: "69874ba3ec10e3a0de3f519a184442878291d928f3299d718813f24642585198"
url: "https://pub.dev"
source: hosted
version: "2.4.2"
version: "2.4.4"
injectable_generator:
dependency: "direct dev"
description:
name: injectable_generator
sha256: "2ca3ada337eac0ef6b82f8049c970ddb63947738fdf32ac6cbef8d1567d7ba05"
sha256: af403d76c7b18b4217335e0075e950cd0579fd7f8d7bd47ee7c85ada31680ba1
url: "https://pub.dev"
source: hosted
version: "2.6.1"
version: "2.6.2"
intl:
dependency: "direct main"
description:
@ -571,18 +600,18 @@ packages:
dependency: transitive
description:
name: leak_tracker
sha256: "7f0df31977cb2c0b88585095d168e689669a2cc9b97c309665e3386f3e9d341a"
sha256: "3f87a60e8c63aecc975dda1ceedbc8f24de75f09e4856ea27daf8958f2f0ce05"
url: "https://pub.dev"
source: hosted
version: "10.0.4"
version: "10.0.5"
leak_tracker_flutter_testing:
dependency: transitive
description:
name: leak_tracker_flutter_testing
sha256: "06e98f569d004c1315b991ded39924b21af84cf14cc94791b8aea337d25b57f8"
sha256: "932549fb305594d82d7183ecd9fa93463e9914e1b67cacc34bc40906594a1806"
url: "https://pub.dev"
source: hosted
version: "3.0.3"
version: "3.0.5"
leak_tracker_testing:
dependency: transitive
description:
@ -624,6 +653,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "1.2.0"
macros:
dependency: transitive
description:
name: macros
sha256: a8403c89b36483b4cbf9f1fcd24562f483cb34a5c9bf101cf2b0d8a083cf1239
url: "https://pub.dev"
source: hosted
version: "0.1.0-main.5"
markdown:
dependency: transitive
description:
@ -644,18 +681,18 @@ packages:
dependency: transitive
description:
name: material_color_utilities
sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a"
sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
url: "https://pub.dev"
source: hosted
version: "0.8.0"
version: "0.11.1"
meta:
dependency: transitive
description:
name: meta
sha256: "7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136"
sha256: "25dfcaf170a0190f47ca6355bdd4552cb8924b430512ff0cafb8db9bd41fe33b"
url: "https://pub.dev"
source: hosted
version: "1.12.0"
version: "1.14.0"
mime:
dependency: transitive
description:
@ -700,10 +737,10 @@ packages:
dependency: transitive
description:
name: package_info_plus_platform_interface
sha256: f49918f3433a3146047372f9d4f1f847511f2acd5cd030e1f44fe5a50036b70e
sha256: ac1f4a4847f1ade8e6a87d1f39f5d7c67490738642e2542f559ec38c37489a66
url: "https://pub.dev"
source: hosted
version: "3.0.0"
version: "3.0.1"
path:
dependency: transitive
description:
@ -724,10 +761,10 @@ packages:
dependency: transitive
description:
name: path_provider_android
sha256: a248d8146ee5983446bf03ed5ea8f6533129a12b11f12057ad1b4a67a2b3b41d
sha256: e84c8a53fe1510ef4582f118c7b4bdf15b03002b51d7c2b66983c65843d61193
url: "https://pub.dev"
source: hosted
version: "2.2.4"
version: "2.2.8"
path_provider_foundation:
dependency: transitive
description:
@ -756,10 +793,10 @@ packages:
dependency: transitive
description:
name: path_provider_windows
sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170"
sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
url: "https://pub.dev"
source: hosted
version: "2.2.1"
version: "2.3.0"
permission_handler:
dependency: "direct main"
description:
@ -772,26 +809,26 @@ packages:
dependency: transitive
description:
name: permission_handler_android
sha256: "8bb852cd759488893805c3161d0b2b5db55db52f773dbb014420b304055ba2c5"
sha256: b29a799ca03be9f999aa6c39f7de5209482d638e6f857f6b93b0875c618b7e54
url: "https://pub.dev"
source: hosted
version: "12.0.6"
version: "12.0.7"
permission_handler_apple:
dependency: transitive
description:
name: permission_handler_apple
sha256: e9ad66020b89ff1b63908f247c2c6f931c6e62699b756ef8b3c4569350cd8662
sha256: e6f6d73b12438ef13e648c4ae56bd106ec60d17e90a59c4545db6781229082a0
url: "https://pub.dev"
source: hosted
version: "9.4.4"
version: "9.4.5"
permission_handler_html:
dependency: transitive
description:
name: permission_handler_html
sha256: "54bf176b90f6eddd4ece307e2c06cf977fb3973719c35a93b85cc7093eb6070d"
sha256: "6cac773d389e045a8d4f85418d07ad58ef9e42a56e063629ce14c4c26344de24"
url: "https://pub.dev"
source: hosted
version: "0.1.1"
version: "0.1.2"
permission_handler_platform_interface:
dependency: transitive
description:
@ -820,10 +857,10 @@ packages:
dependency: transitive
description:
name: platform
sha256: "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec"
sha256: "9b71283fc13df574056616011fb138fd3b793ea47cc509c189a6c3fa5f8a1a65"
url: "https://pub.dev"
source: hosted
version: "3.1.4"
version: "3.1.5"
plugin_platform_interface:
dependency: transitive
description:
@ -860,10 +897,10 @@ packages:
dependency: transitive
description:
name: pubspec_parse
sha256: c63b2876e58e194e4b0828fcb080ad0e06d051cb607a6be51a9e084f47cb9367
sha256: c799b721d79eb6ee6fa56f00c04b472dcd44a30d258fac2174a6ec57302678f8
url: "https://pub.dev"
source: hosted
version: "1.2.3"
version: "1.3.0"
recase:
dependency: transitive
description:
@ -885,10 +922,10 @@ packages:
dependency: transitive
description:
name: rxdart
sha256: "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb"
sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962"
url: "https://pub.dev"
source: hosted
version: "0.27.7"
version: "0.28.0"
screenshot_callback:
dependency: "direct main"
description:
@ -926,10 +963,10 @@ packages:
dependency: transitive
description:
name: shared_preferences_android
sha256: "1ee8bf911094a1b592de7ab29add6f826a7331fb854273d55918693d5364a1f2"
sha256: "3d4571b3c5eb58ce52a419d86e655493d0bc3020672da79f72fa0c16ca3a8ec1"
url: "https://pub.dev"
source: hosted
version: "2.2.2"
version: "2.2.4"
shared_preferences_foundation:
dependency: transitive
description:
@ -950,10 +987,10 @@ packages:
dependency: transitive
description:
name: shared_preferences_platform_interface
sha256: "22e2ecac9419b4246d7c22bfbbda589e3acf5c0351137d87dd2939d984d37c3b"
sha256: "034650b71e73629ca08a0bd789fd1d83cc63c2d1e405946f7cef7bc37432f93a"
url: "https://pub.dev"
source: hosted
version: "2.3.2"
version: "2.4.0"
shared_preferences_web:
dependency: transitive
description:
@ -1004,18 +1041,18 @@ packages:
dependency: "direct main"
description:
name: slang
sha256: ad2a3974fa705017d40e59f9fce5ba738ce78a40c13247bf655d1760d3af018f
sha256: f68f6d6709890f85efabfb0318e9d694be2ebdd333e57fe5cb50eee449e4e3ab
url: "https://pub.dev"
source: hosted
version: "3.30.2"
version: "3.31.1"
slang_flutter:
dependency: "direct main"
description:
name: slang_flutter
sha256: "9ee040b0d364d3a4d692e4af536acff6ef513870689403494ebc6d59b0dccea6"
sha256: f8400292be49c11697d94af58d7f7d054c91af759f41ffe71e4e5413871ffc62
url: "https://pub.dev"
source: hosted
version: "3.30.0"
version: "3.31.0"
source_gen:
dependency: transitive
description:
@ -1076,18 +1113,18 @@ packages:
dependency: "direct main"
description:
name: stacked
sha256: "32641025f7bedf3acddd068008932c5f4d89bd089f1b091f61c9fe466c66229e"
sha256: ed19ecdc2dcc682b9be9c7e34646e603c0f770437a914b15c7d2d13391c92a09
url: "https://pub.dev"
source: hosted
version: "3.4.2"
version: "3.4.3"
stacked_generator:
dependency: "direct main"
description:
name: stacked_generator
sha256: ed9fcada06d97def2fe2d9d1df620da17a7c01a6b319fe115e035c2ac1a9f2c8
sha256: eaa6447e3fd4d4010b746629b5518364d7fa7f6453ffb6416ad449fd352d1181
url: "https://pub.dev"
source: hosted
version: "1.6.0"
version: "1.6.1"
stacked_services:
dependency: "direct main"
description:
@ -1100,10 +1137,10 @@ packages:
dependency: transitive
description:
name: stacked_shared
sha256: e6bc2921eb59b7c741c551fbb4060f22a543ea9c2d9351315fb58aa055b535f3
sha256: "26e11dcfe23df81d565d0180eb5bcf4742efed066ba3328623b458f21a82b346"
url: "https://pub.dev"
source: hosted
version: "1.4.0"
version: "1.4.1"
stream_channel:
dependency: transitive
description:
@ -1148,26 +1185,26 @@ packages:
dependency: transitive
description:
name: test_api
sha256: "9955ae474176f7ac8ee4e989dadfb411a58c30415bcfb648fa04b2b8a03afa7f"
sha256: "2419f20b0c8677b2d67c8ac4d1ac7372d862dc6c460cdbb052b40155408cd794"
url: "https://pub.dev"
source: hosted
version: "0.7.0"
version: "0.7.1"
timeago:
dependency: "direct main"
description:
name: timeago
sha256: d3204eb4c788214883380253da7f23485320a58c11d145babc82ad16bf4e7764
sha256: "054cedf68706bb142839ba0ae6b135f6b68039f0b8301cbe8784ae653d5ff8de"
url: "https://pub.dev"
source: hosted
version: "3.6.1"
version: "3.7.0"
timezone:
dependency: "direct main"
description:
name: timezone
sha256: a6ccda4a69a442098b602c44e61a1e2b4bf6f5516e875bbf0f427d5df14745d5
sha256: "2236ec079a174ce07434e89fcd3fcda430025eb7692244139a9cf54fdcf1fc7d"
url: "https://pub.dev"
source: hosted
version: "0.9.3"
version: "0.9.4"
timing:
dependency: transitive
description:
@ -1196,26 +1233,26 @@ packages:
dependency: "direct main"
description:
name: url_launcher
sha256: "6ce1e04375be4eed30548f10a315826fd933c1e493206eab82eed01f438c8d2e"
sha256: "21b704ce5fa560ea9f3b525b43601c678728ba46725bab9b01187b4831377ed3"
url: "https://pub.dev"
source: hosted
version: "6.2.6"
version: "6.3.0"
url_launcher_android:
dependency: transitive
description:
name: url_launcher_android
sha256: "360a6ed2027f18b73c8d98e159dda67a61b7f2e0f6ec26e86c3ada33b0621775"
sha256: "678979703e10d7862c551c736fe6b9f185261bddf141b46672063b99790bc700"
url: "https://pub.dev"
source: hosted
version: "6.3.1"
version: "6.3.7"
url_launcher_ios:
dependency: transitive
description:
name: url_launcher_ios
sha256: "7068716403343f6ba4969b4173cbf3b84fc768042124bc2c011e5d782b24fe89"
sha256: e43b677296fadce447e987a2f519dcf5f6d1e527dc35d01ffab4fff5b8a7063e
url: "https://pub.dev"
source: hosted
version: "6.3.0"
version: "6.3.1"
url_launcher_linux:
dependency: transitive
description:
@ -1252,18 +1289,18 @@ packages:
dependency: transitive
description:
name: url_launcher_windows
sha256: ecf9725510600aa2bb6d7ddabe16357691b6d2805f66216a97d1b881e21beff7
sha256: "49c10f879746271804767cb45551ec5592cdab00ee105c06dddde1a98f73b185"
url: "https://pub.dev"
source: hosted
version: "3.1.1"
version: "3.1.2"
uuid:
dependency: transitive
description:
name: uuid
sha256: "814e9e88f21a176ae1359149021870e87f7cddaf633ab678a5d2b0bff7fd1ba8"
sha256: "83d37c7ad7aaf9aa8e275490669535c8080377cfa7a7004c24dfac53afffaa90"
url: "https://pub.dev"
source: hosted
version: "4.4.0"
version: "4.4.2"
vector_math:
dependency: transitive
description:
@ -1276,18 +1313,18 @@ packages:
dependency: transitive
description:
name: vm_service
sha256: "3923c89304b715fb1eb6423f017651664a03bf5f4b29983627c4da791f74a4ec"
sha256: "7475cb4dd713d57b6f7464c0e13f06da0d535d8b2067e188962a59bac2cf280b"
url: "https://pub.dev"
source: hosted
version: "14.2.1"
version: "14.2.2"
wakelock_plus:
dependency: "direct main"
description:
name: wakelock_plus
sha256: "14758533319a462ffb5aa3b7ddb198e59b29ac3b02da14173a1715d65d4e6e68"
sha256: "4fa83a128b4127619e385f686b4f080a5d2de46cff8e8c94eccac5fcf76550e5"
url: "https://pub.dev"
source: hosted
version: "1.2.5"
version: "1.2.7"
wakelock_plus_platform_interface:
dependency: transitive
description:
@ -1324,18 +1361,18 @@ packages:
dependency: transitive
description:
name: win32
sha256: "0eaf06e3446824099858367950a813472af675116bf63f008a4c2a75ae13e9cb"
sha256: a79dbe579cb51ecd6d30b17e0cae4e0ea15e2c0e66f69ad4198f22a6789e94f4
url: "https://pub.dev"
source: hosted
version: "5.5.0"
version: "5.5.1"
win32_registry:
dependency: transitive
description:
name: win32_registry
sha256: "10589e0d7f4e053f2c61023a31c9ce01146656a70b7b7f0828c0b46d7da2a9bb"
sha256: "723b7f851e5724c55409bb3d5a32b203b3afe8587eaf5dafb93a5fed8ecda0d6"
url: "https://pub.dev"
source: hosted
version: "1.1.3"
version: "1.1.4"
xdg_directories:
dependency: transitive
description:
@ -1361,5 +1398,5 @@ packages:
source: hosted
version: "3.1.2"
sdks:
dart: ">=3.3.0 <4.0.0"
flutter: ">=3.19.2"
dart: ">=3.4.0 <4.0.0"
flutter: ">=3.22.0"

View File

@ -4,7 +4,7 @@ homepage: https://github.com/ReVanced/revanced-manager
publish_to: 'none'
version: 1.21.0-dev.6+101800022
version: 1.21.0-dev.8+101800024
environment:
sdk: '>=3.0.0 <4.0.0'
@ -35,7 +35,7 @@ dependencies:
flutter_local_notifications: ^17.1.0
flutter_localizations:
sdk: flutter
flutter_markdown: ^0.7.1
flutter_markdown: ^0.7.3
fluttertoast: ^8.2.5
font_awesome_flutter: ^10.7.0
google_fonts: ^6.2.1