From d1c36c1bcc49028b7e57a8dfbc52811833a7af3f Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Mon, 11 Mar 2024 14:49:13 +0700 Subject: [PATCH 01/40] ci(Crowdin): Improve configuration of the workflow Signed-off-by: Pun Butrach --- .github/workflows/sync_crowdin.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/sync_crowdin.yml b/.github/workflows/sync_crowdin.yml index fd7d8abe..c3ee44d8 100644 --- a/.github/workflows/sync_crowdin.yml +++ b/.github/workflows/sync_crowdin.yml @@ -2,9 +2,12 @@ name: Sync Crowdin on: workflow_dispatch: + schedule: + - cron: 00 12 * * 1 push: - branches: - - dev + paths: + - assets/i18n/*.json + - assets/i18n/*.dart jobs: sync: @@ -16,7 +19,7 @@ jobs: with: fetch-depth: 0 - - name: Set up Dart + - name: Setup Dart uses: dart-lang/setup-dart@v1 - name: Sync translations from Crowdin @@ -32,15 +35,17 @@ jobs: pull_request_body: "Sync translations from [crowdin.com/project/revanced](https://crowdin.com/project/revanced)" pull_request_base_branch_name: "dev" commit_message: "chore: Sync translations" + github_user_name: revanced-bot + github_user_email: github@revanced.app env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }} CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} - name: Remove empty values from JSON run: | cd assets/i18n - sudo chmod 777 * + sudo chmod 777 *.json dart nuke.dart >> $GITHUB_STEP_SUMMARY - name: Commit translations @@ -51,5 +56,3 @@ jobs: git add assets/i18n/*.json git commit -m "chore: Remove empty values from JSON" assets/i18n/*.json git push origin HEAD:feat/translations - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From dca8a1dab689ea7ed063183143eea246f288ea6e Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Mon, 11 Mar 2024 14:49:46 +0700 Subject: [PATCH 02/40] ci(Crowdin): Add workflow change to trigger event Signed-off-by: Pun Butrach --- .github/workflows/sync_crowdin.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/sync_crowdin.yml b/.github/workflows/sync_crowdin.yml index c3ee44d8..f750dd7e 100644 --- a/.github/workflows/sync_crowdin.yml +++ b/.github/workflows/sync_crowdin.yml @@ -8,6 +8,7 @@ on: paths: - assets/i18n/*.json - assets/i18n/*.dart + - .github/workflows/sync_crowdin.yml jobs: sync: From 846afb420bd297d3373f12b806c0d505ff4eee16 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Mon, 11 Mar 2024 14:59:29 +0700 Subject: [PATCH 03/40] ci(PR Sync): Use revanced-bot acount Signed-off-by: Pun Butrach --- .github/workflows/open_pull_request.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/open_pull_request.yml b/.github/workflows/open_pull_request.yml index 46021f4a..840020c3 100644 --- a/.github/workflows/open_pull_request.yml +++ b/.github/workflows/open_pull_request.yml @@ -25,3 +25,4 @@ jobs: pr_body: | This pull request will ${{ env.MESSAGE }}. pr_draft: true + github_token: ${{ secrets.REPOSITORY_PUSH_ACCESS }} From ab13895196da11cabf767fcc74bd803fe0d7eef5 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Mon, 11 Mar 2024 15:05:40 +0700 Subject: [PATCH 04/40] docs(Security): Improve badges' accessibility Signed-off-by: Pun Butrach --- SECURITY.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index 17001be9..0ff47660 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -70,8 +70,8 @@ If a vulnerability is confirmed and accepted, you can join our [Discord](https:/ ### ⏳ Supported Versions -| Version | Branch | Supported | -| -------------------------------------------------------------------------------------------------------- | ----------- | ------------------ | -| ![GitHub Release](https://img.shields.io/github/v/release/ReVanced/revanced-manager?style=for-the-badge) | main | :white_check_mark: | -| ![Static Badge](https://img.shields.io/badge/version-latest-brightgreen?style=for-the-badge) | dev | :white_check_mark: | -| ![Static Badge](https://img.shields.io/badge/version-latest-brightgreen?style=for-the-badge) | compose-dev | :white_check_mark: | +| Version | Branch | Supported | +| --------------------------------------------------------------------------------------------------------------------------------------- | ----------- | ------------------ | +| ![Latest stable release](https://img.shields.io/github/v/release/ReVanced/revanced-manager?style=for-the-badge "Latest stable release") | main | :white_check_mark: | +| ![Latest version](https://img.shields.io/badge/version-latest-brightgreen?style=for-the-badge "Latest version") | dev | :white_check_mark: | +| ![Latest version](https://img.shields.io/badge/version-latest-brightgreen?style=for-the-badge "Latest version") | compose-dev | :white_check_mark: | From add49e14fb71e3b9b5f0988e39c3a664fd5b36b1 Mon Sep 17 00:00:00 2001 From: aAbed <39409020+TheAabedKhan@users.noreply.github.com> Date: Sun, 17 Mar 2024 22:59:22 +0545 Subject: [PATCH 05/40] fix: Pre-releases changelog being shown (#1767) --- lib/services/github_api.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/services/github_api.dart b/lib/services/github_api.dart index 51856f88..0c0080b9 100644 --- a/lib/services/github_api.dart +++ b/lib/services/github_api.dart @@ -85,6 +85,9 @@ class GithubAPI { updates++; } for (int i = 1; i < updates; i++) { + if (response.data[i]['prerelease']) { + continue; + } releases.update( 'body', (value) => From e52a6ce734ffd65891b433ba2557239669f3b3d2 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sun, 17 Mar 2024 17:22:14 +0000 Subject: [PATCH 06/40] chore(release): 1.19.4-dev.1 [skip ci] ## [1.19.4-dev.1](https://github.com/ReVanced/revanced-manager/compare/v1.19.3...v1.19.4-dev.1) (2024-03-17) ### Bug Fixes * Pre-releases changelog being shown ([#1767](https://github.com/ReVanced/revanced-manager/issues/1767)) ([add49e1](https://github.com/ReVanced/revanced-manager/commit/add49e14fb71e3b9b5f0988e39c3a664fd5b36b1)) --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index af18fcac..db82054b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ homepage: https://github.com/ReVanced/revanced-manager publish_to: 'none' -version: 1.19.3+101800006 +version: 1.19.4-dev.1+101800007 environment: sdk: '>=3.0.0 <4.0.0' From 50b4a5f1d86695119e3de0a1ed24c7ff29c81c61 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 18 Mar 2024 11:51:07 +0100 Subject: [PATCH 07/40] ci: Fix PR build success message --- .github/workflows/build_pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_pull_request.yml b/.github/workflows/build_pull_request.yml index 2c4e4ed8..2257e749 100644 --- a/.github/workflows/build_pull_request.yml +++ b/.github/workflows/build_pull_request.yml @@ -83,7 +83,7 @@ jobs: - name: Prepare comment run: | if [[ "${{ steps.flutter-build.outcome }}" == "success" ]]; then - echo "MESSAGE=✅ Failed build on ${{ env.COMMIT_HASH }}." >> $GITHUB_ENV + echo "MESSAGE=✅ Succeeded build on ${{ env.COMMIT_HASH }}." >> $GITHUB_ENV else echo "MESSAGE=🚫 Failed build on ${{ env.COMMIT_HASH }}." >> $GITHUB_ENV fi From 2772a9672799417995ebf1375ba72b640303253e Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Fri, 22 Mar 2024 04:41:34 +0000 Subject: [PATCH 08/40] docs(Build): Shorten build_runner args --- docs/4_building.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/4_building.md b/docs/4_building.md index de67fad6..aa52df88 100644 --- a/docs/4_building.md +++ b/docs/4_building.md @@ -20,7 +20,7 @@ Learn how to build ReVanced Manager from source. ```sh dart run slang - dart run build_runner build --delete-conflicting-outputs + dart run build_runner build -d ``` 5. Build the APK From 3ea6ef0bbf3e4ed6ca78765f2ba650e204e9d2d6 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Fri, 22 Mar 2024 04:54:57 +0000 Subject: [PATCH 09/40] ci(Dependabot): Add Gradle ecosystem to RVM Flutter --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b73efc0f..b91ee4be 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -14,6 +14,7 @@ updates: schedule: interval: monthly + # ReVanced Manager Flutter - package-ecosystem: pub labels: [] directory: / @@ -21,6 +22,14 @@ updates: schedule: interval: monthly + - package-ecosystem: gradle + labels: [] + directory: / + target-branch: dev + schedule: + interval: monthly + + # ReVanced Manager Compose - package-ecosystem: gradle labels: [ "ReVanced Manager Compose" ] directory: / From c981cb4a41051bc68b14cec55520c808311952b7 Mon Sep 17 00:00:00 2001 From: DMzS <75044136+Domenic-MZS@users.noreply.github.com> Date: Sat, 23 Mar 2024 07:51:17 -0300 Subject: [PATCH 10/40] fix: Ensure safe area usage in Changelogs Modal Bottom Sheet (#1772) --- lib/ui/views/home/home_viewmodel.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ui/views/home/home_viewmodel.dart b/lib/ui/views/home/home_viewmodel.dart index 3c3c0289..3327c42b 100644 --- a/lib/ui/views/home/home_viewmodel.dart +++ b/lib/ui/views/home/home_viewmodel.dart @@ -463,6 +463,7 @@ class HomeViewModel extends BaseViewModel { ]) { return showModalBottomSheet( context: parentContext, + useSafeArea: true, isScrollControlled: true, shape: const RoundedRectangleBorder( borderRadius: BorderRadius.vertical(top: Radius.circular(24.0)), From af7e39b7f017823684f36807ae39192fedb2cda8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 17:55:11 +0700 Subject: [PATCH 11/40] chore(i18n): Sync translations (#1719) Co-authored-by: revanced-bot --- assets/i18n/strings_be_BY.i18n.json | 14 +-- assets/i18n/strings_bn_BD.i18n.json | 29 +++++- assets/i18n/strings_el_GR.i18n.json | 6 +- assets/i18n/strings_es_AR.i18n.json | 154 ++++++++++++++++++---------- assets/i18n/strings_es_MX.i18n.json | 39 +++++-- assets/i18n/strings_hi_IN.i18n.json | 3 + assets/i18n/strings_hu_HU.i18n.json | 20 ++-- assets/i18n/strings_id_ID.i18n.json | 49 ++++++++- assets/i18n/strings_ja_JP.i18n.json | 57 +++++++++- assets/i18n/strings_ko_KR.i18n.json | 6 +- assets/i18n/strings_nl_NL.i18n.json | 48 ++++++++- assets/i18n/strings_ro_RO.i18n.json | 2 +- assets/i18n/strings_ru_RU.i18n.json | 2 +- assets/i18n/strings_sr_CS.i18n.json | 6 +- assets/i18n/strings_sr_SP.i18n.json | 6 +- assets/i18n/strings_vi_VN.i18n.json | 7 ++ 16 files changed, 341 insertions(+), 107 deletions(-) diff --git a/assets/i18n/strings_be_BY.i18n.json b/assets/i18n/strings_be_BY.i18n.json index e477600e..f7562fdc 100755 --- a/assets/i18n/strings_be_BY.i18n.json +++ b/assets/i18n/strings_be_BY.i18n.json @@ -12,7 +12,7 @@ "noButton": "Не", "warning": "Увага", "options": "Параметры", - "notice": "Апавяшчэнне", + "notice": "Заўвага", "noShowAgain": "Больш не паказваць", "add": "Дадаць", "remove": "Выдаліць", @@ -41,7 +41,7 @@ "downloadConsentDialogTitle": "Спампаваць неабходныя файлы?", "downloadConsentDialogText": "ReVanced Manager неабходна спампаваць неабходныя файлы для правільнай працы.", "downloadConsentDialogText2": "Гэта падключыць вас да ${url}.", - "checkUpdateDialogTitle": "Праверыць абнаўленні?", + "checkUpdateDialogTitle": "Праверыць наяўнасць абнаўленняў?", "checkUpdateDialogText": "Вы сапраўды хочаце правяраць абнаўленні ReVanced Manager аўтаматычна?", "notificationTitle": "Абнаўленне спампавана", "notificationText": "Націсніце, каб усталяваць абнаўленне", @@ -66,9 +66,9 @@ "patcherView": { "widgetTitle": "Праграма выпраўлення", "patchButton": "Выправіць", - "armv7WarningDialogText": "Выпраўленне на працэсарах з архітэктурай ARMv7 пакуль не падтрымліваецца і можа прывесці да збою. Працягнуць?", + "armv7WarningDialogText": "Выпраўленне для прылад на ARMv7 пакуль не падтрымліваецца і можа прывесці да збою. Працягнуць?", "removedPatchesWarningDialogText": "Наступныя выпраўленні былі выдалены з моманту іх апошняга выкарыстання.\n\n${patches}\n\nУсё роўна працягнуць?", - "requiredOptionDialogText": "Некаторыя выпраўленні павінны быць зададзены." + "requiredOptionDialogText": "Неабходна задаць некаторыя параметры выпраўленняў." }, "appSelectorCard": { "widgetTitle": "Выбраць праграму", @@ -117,7 +117,7 @@ "setRequiredOption": "Некаторыя выпраўленні патрабуюць зададзеных параметраў:\n\n${patches}\n\nЗадайце іх перад працягам." }, "patchOptionsView": { - "customValue": "Карыстальніцкае значэнне", + "customValue": "Уласнае значэнне", "resetOptionsTooltip": "Скінуць параметры выпраўлення", "viewTitle": "Параметры выпраўлення", "saveOptions": "Захаваць", @@ -140,8 +140,8 @@ }, "installerView": { "widgetTitle": "Устаноўшчык праграм", - "installType": "Выберыце тып усталявання", - "installTypeDescription": "Выберыце тып усталявання для працягу.", + "installType": "Выберыце тып устаноўкі", + "installTypeDescription": "Выберыце тып устаноўкі для працягу.", "installButton": "Усталяваць", "installRootType": "Падключыць", "installNonRootType": "Звычайны", diff --git a/assets/i18n/strings_bn_BD.i18n.json b/assets/i18n/strings_bn_BD.i18n.json index c7264112..ef965429 100755 --- a/assets/i18n/strings_bn_BD.i18n.json +++ b/assets/i18n/strings_bn_BD.i18n.json @@ -107,7 +107,9 @@ "newPatches": "নতুন প্যাচসমূহ", "patches": "প্যাচসমূহ", "doneButton": "সম্পন্ন হয়েছে", + "defaultChip": "পূর্ব-নির্ধারিত", "defaultTooltip": "সকল পূর্ব-নির্ধারিত প্যাচ নির্বাচন করুন", + "noneChip": "কোনটি নয়", "noneTooltip": "সকল প্যাচ অনির্বাচন করুন", "loadPatchesSelection": "নির্বাচিত প্যাচ লোড করুন", "noSavedPatches": "নির্বাচিত অ্যাপের জন্য কোন সংরক্ষিত প্যাচ নেই।\nবর্তমানে নির্বাচিত প্যাচ সংরক্ষণ করতে সম্পন্ন হয়েছে চাপুন।", @@ -133,11 +135,13 @@ "unsupportedDialogText": "এই প্যাচটি নির্বাচন করলে প্যাচিং ত্রুটিপূর্ণ হতে পারে।\n\nঅ্যাপ সংস্করণ: ${packageVersion}\nসমর্থিত সংস্করণ:\n${supportedVersions}", "unsupportedPatchVersion": "এই অ্যাপ সংস্করণের জন্য প্যাচ সমর্থিত নয়।", "unsupportedRequiredOption": "এই প্যাচটিতে একটি প্রয়োজনীয় অপশন রয়েছে যা এই অ্যাপটি সমর্থন করে না", + "patchesChangeWarningDialogText": "পূর্ব নির্ধারিত নির্বাচিত প্যাচ এবং অপশন ব্যবহার করার প্রস্তাব রাখে। এগুলো পরিবর্তন করার মাধ্যমে অনাকাঙ্খিত ইস্যু হতে পারে।\n\nপ্যাচ নির্বাচন পরিবর্তন করার পূর্বে আপনাকে অবশ্যই সেটিং থেকে \"প্যাচ নির্বাচন পরিবর্তন করার অনুমতি\" সচল করতে হবে।", "patchesChangeWarningDialogButton": "পূর্বনির্ধারিত নির্বাচন ব্যবহার করুন" }, "installerView": { "widgetTitle": "ইনস্টলার", "installType": "ইনস্টল করার ধরণ নির্বাচন করুন", + "installTypeDescription": "যে প্রক্রিয়ায় ইনস্টল করা এগিয়ে নিতে চান তা নির্বাচন করুন।", "installButton": "ইনস্টল করুন", "installRootType": "মাউন্ট", "installNonRootType": "সাধারণ", @@ -160,6 +164,7 @@ "debugSectionTitle": "ডিবাগিং", "advancedSectionTitle": "উন্নত", "exportSectionTitle": "আমদানি ও রপ্তানি", + "dataSectionTitle": "তথ্যের উৎস", "themeModeLabel": "অ্যাপের থীম", "systemThemeLabel": "সিস্টেম", "lightThemeLabel": "উজ্জ্বল", @@ -167,12 +172,19 @@ "dynamicThemeLabel": "ম্যাটেরিয়াল ইউ", "dynamicThemeHint": "আপনার ডিভাইসের লুকের কাছাকাছি অভিজ্ঞতা নিন", "languageLabel": "ভাষা", + "languageUpdated": "ভাষা হালনাগাদ করা হয়েছে", "englishOption": "ইংরেজি", + "sourcesLabel": "বিকল্প উৎস", + "sourcesLabelHint": "ReVanced প্যাচ ও ReVanced ইন্ট্রিগ্রেশনের জন্য বিকল্প উৎস কনফিগার করুন", "sourcesIntegrationsLabel": "ইন্ট্রিগেশনের উৎস", + "useAlternativeSources": "বিকল্প উৎস ব্যবহার করুন", + "useAlternativeSourcesHint": "ReVanced প্যাচ ও ReVanced ইন্ট্রিগ্রেশনের জন্য API এর পরিবর্তে বিকল্প উৎস ব্যবহার করুন", "sourcesResetDialogTitle": "পুনরায় সেট করুন", "sourcesResetDialogText": "আপনি কি নিশ্চিতভাবে আপনার উৎসগুলোকে পূর্বনির্ধারিত উৎসে ফিরিয়ে নিতে চান?", "apiURLResetDialogText": "আপনি কি নিশ্চিতভাবে আপনার API URL কে তার মূল ভ্যালুতে পুনরায় সেট করতে চান?", + "sourcesUpdateNote": "বি:দ্র: এটি স্বয়ংক্রিয়ভাবে বিকল্প উৎস থেকে ReVanced প্যাচ ও ReVanced ইন্ট্রিগ্রেশন ডাউনলোড করবে।\n\nএটি আপনাকে বিকল্প উৎসের সাথে সংযুক্ত করবে।", "apiURLLabel": "API URL", + "apiURLHint": "ReVanced Manager এর API URL কনফিগার করুন", "selectApiURL": "API URL", "orgPatchesLabel": "প্যাচ এর উদ্ভাবক", "sourcesPatchesLabel": "প্যাচ এর উৎস", @@ -187,6 +199,8 @@ "disablePatchesSelectionWarningText": "আপনি নির্বাচিত প্যাচ পরিবর্তনকে নিষ্ক্রিয় করতে যাচ্ছেন।\nপূর্বনির্ধারিত নির্বাচিত প্যাচসমূহ ফিরিয়ে আনা হবে।\n\nযেকোন ভাবে নিষ্ক্রিয় করতে চান?", "autoUpdatePatchesLabel": "প্যাচসমূহ স্বয়ংক্রিয়ভাবে আপডেট করুন", "autoUpdatePatchesHint": "প্যাচসমূহ স্বয়ংক্রিয়ভাবে সর্বশেষ সংস্করণে আপডেট হবে", + "showUpdateDialogLabel": "হালনাগাদ ডায়ালগ দেখান", + "showUpdateDialogHint": "যখন হালনাগাদ উপলব্ধ থাকবে তখন একটি ডায়ালগ দেখান", "universalPatchesLabel": "বৈশ্বিক প্যাচসমূহ দেখান", "universalPatchesHint": "সকল অ্যাপ এবং বৈশ্বিক প্যাচসমূহ দেখায় (অ্যাপ লিস্ট দেখানো একটু ধীর হতে পারে)", "versionCompatibilityCheckLabel": "সংস্করণ সামঞ্জস্যতা পরীক্ষা করা", @@ -257,7 +271,12 @@ "updateNotImplemented": "এই ফিচারটি এখনো কার্যকর করা হয়নি" }, "contributorsView": { - "widgetTitle": "অবদানকারীগণ" + "widgetTitle": "অবদানকারীগণ", + "patcherContributors": "ReVanced প্যাচার", + "patchesContributors": "ReVanced প্যাচসমূহ", + "integrationsContributors": "ReVanced ইন্ট্রিগ্রেশন", + "cliContributors": "ReVanced CLI", + "managerContributors": "ReVanced Manager" }, "installErrorDialog": { "mount_version_mismatch": "সংস্করণ মেলেনি", @@ -267,6 +286,12 @@ "install_failed_verification_failure": "যাচাইকরণ ব্যর্থ হয়েছে", "status_failure_invalid": "ইনস্টল সঠিক নয়", "install_failed_version_downgrade": "ডাউনগ্রেড সম্ভব নয়", - "status_failure_conflict": "ইনস্টল কনফ্লিক্ট হচ্ছে" + "status_failure_conflict": "ইনস্টল কনফ্লিক্ট হচ্ছে", + "status_failure_storage": "ইনস্টলেশন স্টোরেজ সমস্যা", + "status_failure_incompatible": "ইনস্টলেশন অনুপযুক্ত", + "status_failure_timeout": "ইনস্টলেশন সময় পার হয়েছে", + "status_unknown": "ইনস্টলেশন ব্যর্থ হয়েছে", + "mount_version_mismatch_description": "প্যাচ অ্যাপ ও ইনস্টলকৃত অ্যাপের সংস্করণ ভিন্ন হওয়ার কারণে ইনস্টলেশন ব্যর্থ হয়েছে।\n\nআপনি যে সংস্করণটি মাউন্ট করতে চাচ্ছেন তা আগে ইনস্টল করুন অতঃপর আবার চেষ্টা করুন।", + "mount_no_root_description": "রুট প্রবেশাধিকারের অনুমতি না দেয়ার কারণে ইনস্টলেশন ব্যর্থ হয়েছে।\n\nReVanced Manager এর রুট প্রবেশাধিকার অনুমতি দিন এবং আবার চেষ্টা করুন।" } } \ No newline at end of file diff --git a/assets/i18n/strings_el_GR.i18n.json b/assets/i18n/strings_el_GR.i18n.json index a0f7c645..f9b57939 100755 --- a/assets/i18n/strings_el_GR.i18n.json +++ b/assets/i18n/strings_el_GR.i18n.json @@ -16,7 +16,7 @@ "noShowAgain": "Να μην ξαναεμφανιστεί", "add": "Προσθήκη", "remove": "Αφαίρεση", - "showChangelogButton": "Εμφάνιση αρχείου καταγραφής αλλαγών", + "showChangelogButton": "Εμφάνιση αλλαγών", "showUpdateButton": "Εμφάνιση ενημέρωσης", "navigationView": { "dashboardTab": "Πίνακας Ελέγχου", @@ -178,11 +178,11 @@ "sourcesLabelHint": "Ρυθμίστε τις εναλλακτικές πηγές για τις τροποποιήσεις ReVanced και τις ενσωματώσεις ReVanced", "sourcesIntegrationsLabel": "Πηγή ενσωματώσεων", "useAlternativeSources": "Χρήση εναλλακτικών πηγών", - "useAlternativeSourcesHint": "Χρήση εναλλακτικών πηγών για των τροποποιήσεων ReVanced και των ενσωματώσεων ReVanced αντί για το API", + "useAlternativeSourcesHint": "Χρήση εναλλακτικών πηγών για τις τροποποιήσεις και τις ενσωματώσεις ReVanced αντί του API", "sourcesResetDialogTitle": "Επαναφορά", "sourcesResetDialogText": "Είστε βέβαιοι ότι θέλετε να επαναφέρετε τις πηγές σας στις προεπιλεγμένες τιμές τους;", "apiURLResetDialogText": "Είστε βέβαιοι ότι θέλετε να επαναφέρετε την API URL σας στην προεπιλεγμένη τιμή της;", - "sourcesUpdateNote": "Σημείωση: Αυτό θα κάνει αυτόματη λήψη των τροποποιήσεων ReVanced και των ενσωματώσεων ReVanced από τις εναλλακτικές πηγές.\n\nΑυτό θα σας συνδέσει με την εναλλακτική πηγή.", + "sourcesUpdateNote": "Σημείωση: Θα γίνεται αυτόματη λήψη των τροποποιήσεων και των ενσωματώσεων ReVanced από τις εναλλακτικές πηγές.\n\nΟπότε θα συνδέεστε με τις εναλλακτικές πηγές.", "apiURLLabel": "API URL", "apiURLHint": "Ρύθμιση διεύθυνσης URL του API του ReVanced Manager", "selectApiURL": "API URL", diff --git a/assets/i18n/strings_es_AR.i18n.json b/assets/i18n/strings_es_AR.i18n.json index c234566d..da67d437 100755 --- a/assets/i18n/strings_es_AR.i18n.json +++ b/assets/i18n/strings_es_AR.i18n.json @@ -1,5 +1,5 @@ { - "okButton": "Está bien", + "okButton": "Aceptar", "cancelButton": "Cancelar", "dismissButton": "Descartar", "quitButton": "Salir", @@ -8,35 +8,35 @@ "disabledLabel": "Desactivado", "installed": "Instalada: ${version}", "suggested": "Sugerida: ${version}", - "yesButton": "Si", + "yesButton": "Sí", "noButton": "No", - "warning": "Atención", + "warning": "Advertencia", "options": "Opciones", "notice": "Aviso", - "noShowAgain": "No mostrar de nuevo", + "noShowAgain": "No volver a mostrar", "add": "Agregar", "remove": "Eliminar", - "showChangelogButton": "Mostrar historial de cambios", - "showUpdateButton": "Mostrar actualización", + "showChangelogButton": "Notas de la versión", + "showUpdateButton": "Actualizar", "navigationView": { - "dashboardTab": "Panel", + "dashboardTab": "Panel de control", "patcherTab": "Parcheador", "settingsTab": "Configuración" }, "homeView": { - "refreshSuccess": "Se ha refrescado satisfactoriamente", - "widgetTitle": "Panel", + "refreshSuccess": "Refrescado satisfactoriamente", + "widgetTitle": "Panel de control", "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": "No hay aplicaciones parcheadas instaladas", - "installUpdate": "¿Continuar instalando la actualización?", + "noInstallations": "Aún no parcheaste ninguna aplicación", + "installUpdate": "¿Instalar actualización?", "updateSheetTitle": "Actualizar ReVanced Manager", "updateDialogTitle": "Nueva actualización disponible", "updatePatchesSheetTitle": "Actualizar ReVanced Patches", - "updateChangelogTitle": "Registro de cambios", + "updateChangelogTitle": "Notas de la versión", "updateDialogText": "Hay una nueva actualización disponible para ${file}.\n\nLa versión instalada actualmente es la ${version}.", "downloadConsentDialogTitle": "¿Descargar archivos necesarios?", "downloadConsentDialogText": "ReVanced Manager necesita descargar los archivos necesarios para funcionar correctamente.", @@ -50,11 +50,11 @@ "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", + "noConnection": "No tenés conexión a Internet", "updatesDisabled": "Por ahora no podés actualizar una app parcheada. Parcheala de nuevo." }, "applicationItem": { - "infoButton": "Información" + "infoButton": "Info. aplicación" }, "latestCommitCard": { "loadingLabel": "Cargando...", @@ -66,14 +66,14 @@ "patcherView": { "widgetTitle": "Parcheador", "patchButton": "Parchear", - "armv7WarningDialogText": "El parcheo en dispositivos ARMv7 aún no está soportado y podría fallar. ¿Querés continuar igual?", + "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." }, "appSelectorCard": { - "widgetTitle": "Seleccionar una app", - "widgetTitleSelected": "App seleccionada", - "widgetSubtitle": "Ninguna app seleccionada", + "widgetTitle": "Seleccionar una aplicación", + "widgetTitleSelected": "Aplicación seleccionada", + "widgetSubtitle": "Ninguna aplicación seleccionada", "noAppsLabel": "No se encontró ninguna aplicación", "currentVersion": "Actual", "suggestedVersion": "Sugerida", @@ -82,68 +82,69 @@ "patchSelectorCard": { "widgetTitle": "Seleccionar parches", "widgetTitleSelected": "Parches seleccionados", - "widgetSubtitle": "Seleccioná una aplicación primero", - "widgetEmptySubtitle": "No hay ningún parche seleccionado" + "widgetSubtitle": "Ninguna aplicación seleccionada", + "widgetEmptySubtitle": "Ningún parche seleccionado" }, "socialMediaCard": { - "widgetTitle": "Redes sociales", + "widgetTitle": "Nuestras redes sociales", "widgetSubtitle": "¡Estamos en línea!" }, "appSelectorView": { - "viewTitle": "Seleccionar una app", - "searchBarHint": "Buscar app", - "storageButton": "Almacenamiento", - "selectFromStorageButton": "Seleccionar desde el almacenamiento", - "errorMessage": "No se puede usar la aplicación seleccionada", - "downloadToast": "La función de descarga aún no está disponible", + "viewTitle": "Seleccionar una aplicación", + "searchBarHint": "Buscar...", + "storageButton": "Seleccionar desde\\nel almacenamiento", + "selectFromStorageButton": "Seleccionar desde\\nel almacenamiento", + "errorMessage": "El archivo que seleccionaste no es una aplicación o está dañado", + "downloadToast": "La descarga de aplicaciones aún no está disponible", "requireSuggestedAppVersionDialogText": "La versión de la app que seleccionaste no coincide con la versión sugerida, lo que puede causar errores inesperados. Por favor, usá la versión sugerida.\n\nVersión seleccionada: ${selected}\nVersión sugerida: ${suggested}\n\nPara continuar de todas formas, desactivá \"Requerir versión sugerida de la app\" en los ajustes.", - "featureNotAvailable": "Función no implementada" + "featureNotAvailable": "Función no implementada", + "featureNotAvailableText": "Esta aplicación está instalada en formato AAB (Android App Bundle) y solo se puede parchear e instalar de forma fiable mediante el montaje con acceso root. Sin embargo, podés parchear e instalar una aplicación en formato APK seleccionándola desde el almacenamiento." }, "patchesSelectorView": { "viewTitle": "Seleccionar parches", - "searchBarHint": "Buscar parches", + "searchBarHint": "Buscar...", "universalPatches": "Parches universales", - "newPatches": "Nuevos parches", + "newPatches": "Parches nuevos", "patches": "Parches", - "doneButton": "Listo", + "doneButton": "Guardar selección", "defaultChip": "Por defecto", - "defaultTooltip": "Seleccioná todos los parches por defecto", + "defaultTooltip": "Selecciona los parches por defecto", "noneChip": "Ninguno", - "noneTooltip": "Deseleccionar todos los parches", + "noneTooltip": "Deselecciona todos los parches", "loadPatchesSelection": "Cargar selección de parches", - "noSavedPatches": "No se guardó ninguna selección de parches para la aplicación seleccionada.\nApretá Listo para guardar la selección actual.", - "noPatchesFound": "No se encontraron parches para la app seleccionada", - "setRequiredOption": "Algunos parches requieren establecer algunas opciones:\n\n${patches}\n\nPor favor, configúrelas antes de continuar." + "noSavedPatches": "No se guardó ninguna selección de parches para la aplicación seleccionada.\nApretá 'Guardar selección' para guardar la selección actual.", + "noPatchesFound": "No se encontraron parches para la aplicación seleccionada", + "setRequiredOption": "Los siguientes parches requieren su propia configuración:\\n\\n${patches}\\n\\nPor favor, configuralos antes de continuar." }, "patchOptionsView": { "customValue": "Valor personalizado", - "resetOptionsTooltip": "Restablecer las opciones de parche", - "viewTitle": "Opciones de parche", - "saveOptions": "Guardar", - "addOptions": "Agregar opciones", + "resetOptionsTooltip": "Restablecer a los valores por defecto", + "viewTitle": "Configuración\\ndel parche", + "saveOptions": "Guardar configuración", + "addOptions": "Agregar configuración", "deselectPatch": "Deseleccionar parche", "tooltip": "Más opciones de entrada", - "selectFilePath": "Selecciona la ruta del archivo", - "selectFolder": "Selecciona la carpeta", + "selectFilePath": "Seleccionar ruta del archivo", + "selectFolder": "Seleccionar carpeta", "selectOption": "Seleccionar opción", "requiredOption": "Esta opción es requerida", "unsupportedOption": "Esta opción no es compatible", - "requiredOptionNull": "Hay que configurar las siguientes opciones:\n\n${options}" + "requiredOptionNull": "Tenés que configurar las siguientes opciones:\\n\\n${options}" }, "patchItem": { "unsupportedDialogText": "Seleccionar este parche puede provocar errores en el parcheo.\n\nVersión de la app: ${packageVersion}\nVersiones soportadas:\n${supportedVersions}", - "unsupportedPatchVersion": "El parche no es compatible con esta versión de la app.", - "unsupportedRequiredOption": "Este parche contiene una opción necesaria que no es compatible con esta aplicación", - "patchesChangeWarningDialogText": "Se recomienda utilizar la selección y opciones de parches por defecto. Cambiarlas puede causar problemas inesperados.\n\nTendrás que activar \"Permitir cambiar la selección de parches\" en los ajustes antes de cambiar cualquier selección de parche.", + "unsupportedPatchVersion": "El parche no es compatible con esta versión de la aplicación.", + "unsupportedRequiredOption": "El parche contiene una opción necesaria que no es compatible con esta aplicación", + "patchesChangeWarningDialogText": "Te recomendamos que utilices la selección y opciones de parches por defecto; cambiarlas puede causar problemas inesperados.\\n\\nTendrás que activar \\\"Permitir cambiar la selección de parches\\\" en la configuración antes de poder hacerlo.", "patchesChangeWarningDialogButton": "Utilizar la opción por defecto" }, "installerView": { "widgetTitle": "Instalador", - "installType": "Seleccione el tipo de instalación", + "installType": "Tipo de instalación", "installTypeDescription": "Seleccioná el tipo de instalación para continuar.", "installButton": "Instalar", - "installRootType": "Montar", - "installNonRootType": "Normal", + "installRootType": "Instalación por montaje (requiere root)", + "installNonRootType": "Instalación normal", "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", @@ -152,8 +153,8 @@ "notificationText": "Apretá para volver al instalador", "exportApkButtonTooltip": "Exportar APK parcheado", "exportLogButtonTooltip": "Exportar registro", - "screenshotDetected": "Se ha detectado una captura de pantalla. Si está intentando compartir el registro, por favor comparta una copia de texto en su lugar.\n\n¿Copiar registro al portapapeles?", - "copiedToClipboard": "Registro copiado en el portapapeles", + "screenshotDetected": "Detectamos que hiciste una captura de pantalla. Si estás intentando compartir el registro, por favor compartilo en formato de texto.\\n\\n¿Copiar registro al portapapeles?", + "copiedToClipboard": "Registro copiado al portapapeles", "noExit": "El instalador aún se está ejecutando, no te podés salir..." }, "settingsView": { @@ -163,6 +164,7 @@ "debugSectionTitle": "Depurando", "advancedSectionTitle": "Avanzado", "exportSectionTitle": "Importación y exportación", + "dataSectionTitle": "Fuentes de datos", "themeModeLabel": "Tema de la app", "systemThemeLabel": "Sistema", "lightThemeLabel": "Luz", @@ -172,11 +174,17 @@ "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", + "useAlternativeSources": "Usar fuentes alternativas", + "useAlternativeSourcesHint": "Usá fuentes alternativas para ReVanced Patches y ReVanced Integrations en lugar de la API", "sourcesResetDialogTitle": "Resetear", "sourcesResetDialogText": "¿Estás seguro de que quieres restablecer las fuentes a sus valores por defecto?", "apiURLResetDialogText": "¿Estás seguro de que quieres restablecer la URL de tu API a su valor por defecto?", + "sourcesUpdateNote": "Nota: Esto descargará de forma automática ReVanced Patches y ReVanced Integrations desde las fuentes alternativas.\n\nEsto te va a conectar a la fuente alternativa.", "apiURLLabel": "URL de la API", + "apiURLHint": "Configurá la URL de la API del ReVanced Manager", "selectApiURL": "URL de la API", "orgPatchesLabel": "Organización de los parches", "sourcesPatchesLabel": "Fuente de los parches", @@ -186,14 +194,19 @@ "logsLabel": "Compartir registros", "logsHint": "Compartir los registros de ReVanced Manager", "enablePatchesSelectionLabel": "Permitir cambiar la selección de parches", + "enablePatchesSelectionHint": "No impedir la selección o deselección de parches", "enablePatchesSelectionWarningText": "Cambiar la selección de parches puede causar problemas inesperados.\n\n¿Habilitar de todos modos?", "disablePatchesSelectionWarningText": "Está a punto de desactivar el cambio de la selección de parches.\nSe restablecerá la selección de parches por defecto.\n\n¿Desactivar de todos modos?", "autoUpdatePatchesLabel": "Actualizar parches automáticamente", "autoUpdatePatchesHint": "Actualice automáticamente los parches a la última versión", + "showUpdateDialogLabel": "Mostrar diálogo de actualización", + "showUpdateDialogHint": "Muestra un diálogo cuando haya una nueva actualización disponible", "universalPatchesLabel": "Mostrar parches universales", "universalPatchesHint": "Mostrar todas las aplicaciones y parches universales (puede ralentizar la lista de aplicaciones)", "versionCompatibilityCheckLabel": "Comprobación de compatibilidad de versiones", + "versionCompatibilityCheckHint": "Impedir la selección de parches que no sean compatibles con la versión de la aplicación seleccionada", "requireSuggestedAppVersionLabel": "Requiere la versión de aplicación sugerida", + "requireSuggestedAppVersionHint": "Impedir seleccionar una aplicación cuya versión no sea la sugerida", "requireSuggestedAppVersionDialogText": "Seleccionar una aplicación que no es la versión sugerida puede causar problemas inesperados.\n\n¿Desea continuar de todos modos?", "aboutLabel": "Acerca de", "snackbarMessage": "Copiado al portapapeles", @@ -242,10 +255,15 @@ "widgetTitle": "Información de la app", "openButton": "Abrir", "uninstallButton": "Desinstalar", + "unmountButton": "Desmontar", "rootDialogTitle": "Error", + "unmountDialogText": "¿Seguro que querés desmontar esta aplicación?", + "uninstallDialogText": "¿Seguro que querés desinstalar esta aplicación?", "rootDialogText": "La app se instaló con permisos de superusuario, pero ReVanced Manager no los tiene.\nPor favor, concedele permisos de superusuario.", "packageNameLabel": "Nombre del paquete", "installTypeLabel": "Tipo de instalación", + "mountTypeLabel": "Instalación por montaje (requiere root)", + "regularTypeLabel": "Instalación normal", "patchedDateLabel": "Fecha de parcheo", "appliedPatchesLabel": "Parches aplicados", "patchedDateHint": "${date} a las ${time}", @@ -253,7 +271,37 @@ "updateNotImplemented": "Esta función no se implementó aún" }, "contributorsView": { - "widgetTitle": "Contribuidores" + "widgetTitle": "Contribuidores", + "patcherContributors": "ReVanced Patcher", + "patchesContributors": "ReVanced Patches", + "integrationsContributors": "ReVanced Integrations", + "cliContributors": "ReVanced CLI", + "managerContributors": "ReVanced Manager" }, - "installErrorDialog": {} + "installErrorDialog": { + "mount_version_mismatch": "La versión no coincide", + "mount_no_root": "Sin acceso root", + "mount_missing_installation": "Instalación no encontrada", + "status_failure_blocked": "Instalación bloqueada", + "install_failed_verification_failure": "Verificación fallida", + "status_failure_invalid": "Instalación inválida", + "install_failed_version_downgrade": "No se puede degradar", + "status_failure_conflict": "Conflicto de instalación", + "status_failure_storage": "Problema de almacenamiento en la instalación", + "status_failure_incompatible": "Instalación incompatible", + "status_failure_timeout": "Tiempo de instalación agotado", + "status_unknown": "Instalación fallida", + "mount_version_mismatch_description": "La instalación fallo debido a que la aplicación instalada es una versión diferente a la parcheada.\n\nInstalá la versión de la aplicación que intentás montar y volvé a intentarlo.", + "mount_no_root_description": "La instalación falló debido a que no concediste acceso root.\n\nConcedele acceso root a ReVanced Manager y volvé a intentarlo.", + "mount_missing_installation_description": "La instalación falló debido a que no instalaste la aplicación original en el dispositivo para poder montar la aplicación modificada sobre ella.\n\nInstalá la aplicación original antes de montar y volvé a intentarlo.", + "status_failure_timeout_description": "La instalación tardó demasiado tiempo en terminar.\n\n¿Querés volver a intentarlo?", + "status_failure_storage_description": "La instalación falló debido a falta de almacenamiento.\n\nLiberá algo de espacio y volvé a intentarlo.", + "status_failure_invalid_description": "La instalación falló debido a que la aplicación parcheada es inválida.\n\n¿Querés desinstalar la aplicación y volver a intentarlo?", + "status_failure_incompatible_description": "La aplicación es incompatible con este dispositivo.\n\nContactá con el desarrollador de la aplicación y solicitá asistencia.", + "status_failure_conflict_description": "Una instalación existente de la aplicación impidió la instalación.\n\n¿Querés desinstalar la aplicación instalada y volver a intentarlo?", + "status_failure_blocked_description": "${packageName} bloqueó la instalación.\n\nAjustá la configuración de seguridad y volvé a intentarlo.", + "install_failed_verification_failure_description": "La instalación falló debido a un problema de verificación.\n\nAjustá la configuración de seguridad y volvé a intentarlo.", + "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." + } } \ No newline at end of file diff --git a/assets/i18n/strings_es_MX.i18n.json b/assets/i18n/strings_es_MX.i18n.json index a73a5dfe..283abf95 100755 --- a/assets/i18n/strings_es_MX.i18n.json +++ b/assets/i18n/strings_es_MX.i18n.json @@ -1,31 +1,51 @@ { - "okButton": "ACEPTAR", + "okButton": "Aceptar", "cancelButton": "Cancelar", - "quitButton": "Quit", + "dismissButton": "Descartar", + "quitButton": "Salir", "updateButton": "Actualizar", - "installed": "Instalado: ${version}", - "suggested": "Sugerido: ${version}", + "enabledLabel": "Activado", + "disabledLabel": "Desactivado", + "installed": "Instalada: ${version}", + "suggested": "Sugerida: ${version}", "yesButton": "Sí", "noButton": "No", "warning": "Advertencia", "options": "Opciones", - "notice": "Notice", + "notice": "Aviso", "noShowAgain": "No volver a mostrar", "add": "Añadir", + "remove": "Quitar", + "showChangelogButton": "Registro de cambios", + "showUpdateButton": "Actualizar", "navigationView": { "dashboardTab": "Panel de control", - "patcherTab": "Aplicador de parches", - "settingsTab": "Ajustes" + "patcherTab": "Parcheador", + "settingsTab": "Configuración" }, "homeView": { - "refreshSuccess": "Actualizado con éxito", + "refreshSuccess": "Refrescado satisfactoriamente", "widgetTitle": "Panel de control", "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", + "updateDialogTitle": "Nueva actualización disponible", + "updatePatchesSheetTitle": "Actualizar ReVanced Patches", "updateChangelogTitle": "Registro de cambios", + "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", @@ -37,7 +57,8 @@ }, "latestCommitCard": { "loadingLabel": "Cargando...", - "timeagoLabel": "Hace ${time}" + "timeagoLabel": "Hace ${time}", + "patcherLabel": "Parcheador: " }, "patcherView": { "widgetTitle": "Parcheador", diff --git a/assets/i18n/strings_hi_IN.i18n.json b/assets/i18n/strings_hi_IN.i18n.json index ddfbdb1a..4016e97c 100755 --- a/assets/i18n/strings_hi_IN.i18n.json +++ b/assets/i18n/strings_hi_IN.i18n.json @@ -1,8 +1,10 @@ { "okButton": "ठीक है", "cancelButton": "रद्द करें", + "dismissButton": "बंद करें", "quitButton": "छोड़ें", "updateButton": "अपडेट करें", + "enabledLabel": "सक्रिय", "installed": "इंस्टॉल्ड: ${version}", "suggested": "सुझाया गया: ${version}", "yesButton": "हाँ", @@ -13,6 +15,7 @@ "noShowAgain": "इसे पुनः न दिखाएँ", "add": "ऐड करें", "remove": "हटाएं", + "showChangelogButton": "बदलाव दिखाएं", "navigationView": { "dashboardTab": "नियंत्रण-पट्ट", "patcherTab": "पैचर", diff --git a/assets/i18n/strings_hu_HU.i18n.json b/assets/i18n/strings_hu_HU.i18n.json index 32199824..c9fffafe 100755 --- a/assets/i18n/strings_hu_HU.i18n.json +++ b/assets/i18n/strings_hu_HU.i18n.json @@ -66,7 +66,7 @@ "patcherView": { "widgetTitle": "Patchelő", "patchButton": "Patch", - "armv7WarningDialogText": "A javítás az ARMv7 eszközökön még nem támogatott, és sikertelen lehet. Folytatja?", + "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." }, @@ -98,7 +98,7 @@ "downloadToast": "A letöltés funkció még nem érhető el", "requireSuggestedAppVersionDialogText": "Az alkalmazás kiválasztott verziója nem egyezik a javasolt verzióval. Kérjük, válassza ki a javasolt verziónak megfelelő alkalmazást.\n\nKiválasztott verzió: ${selected}\nJavasolt verzió: ${suggested}\n\nA folytatáshoz kapcsolja ki a „Javasolt alkalmazásverzió megkövetelése” lehetőséget a beállításokban.", "featureNotAvailable": "A funkció nincs megvalósítva", - "featureNotAvailableText": "Ez az alkalmazás egy osztott APK, és csak root jogosultságokkal javítható és telepíthető megbízhatóan. A teljes APK-t azonban javíthatja és telepítheti, ha kiválasztja azt a tárhelyről." + "featureNotAvailableText": "Ez az alkalmazás egy osztott APK, és csak root jogosultságokkal patchelhető és telepíthető megbízhatóan. A teljes APK-t azonban patchelheti és telepítheti, ha kiválasztja azt a tárhelyről." }, "patchesSelectorView": { "viewTitle": "Patchek kiválasztása", @@ -110,7 +110,7 @@ "defaultChip": "Alapértelmezett", "defaultTooltip": "Összes alapértelmezett patch kiválasztása", "noneChip": "Semmi", - "noneTooltip": "Összes javítás kijelölésének törlése", + "noneTooltip": "Összes patch kijelölésének törlése", "loadPatchesSelection": "Patch kiválasztás betöltése", "noSavedPatches": "Nincs mentett patch a kiválasztott alkalmazáshoz.\nNyomja meg a Kész gombot az aktuális kijelölés mentéséhez.", "noPatchesFound": "A kiválasztott alkalmazáshoz nem találhatóak patchek", @@ -145,7 +145,7 @@ "installButton": "Telepítés", "installRootType": "Felcsatolás", "installNonRootType": "Hagyományos", - "warning": "A váratlan problémák elkerülése érdekében tiltsa le a javított alkalmazás automatikus frissítéseit.", + "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 ismét a vissza gombot", "openButton": "Megnyitás", "shareButton": "Fájl megosztása", @@ -194,9 +194,9 @@ "logsLabel": "Naplók megosztása", "logsHint": "ReVanced Manager naplók megosztása", "enablePatchesSelectionLabel": "Engedélyezze a patch kiválasztásának módosítását", - "enablePatchesSelectionHint": "Ne akadályozza meg a javítások kiválasztását vagy megszüntetését", + "enablePatchesSelectionHint": "Ne akadályozza meg a patchek kiválasztását vagy megszüntetését", "enablePatchesSelectionWarningText": "A patchek kiválasztásának megváltoztatása váratlan problémákat okozhat.\n\nMindenképpen engedélyezi?", - "disablePatchesSelectionWarningText": "Arra készül, hogy letiltja a patchek kiválasztásának módosítását.\nA javítások alapértelmezett kiválasztása visszaáll.\n\nMindenképpen letiltja?", + "disablePatchesSelectionWarningText": "Arra készül, hogy letiltja a patchek kiválasztásának módosítását.\nA patchek alapértelmezett kiválasztása visszaáll.\n\nMindenképpen letiltja?", "autoUpdatePatchesLabel": "Patchek automatikus frissítése", "autoUpdatePatchesHint": "A patchek automatikus frissítése a legújabb verzióra", "showUpdateDialogLabel": "Frissítési panel megjelenítése", @@ -204,7 +204,7 @@ "universalPatchesLabel": "Univerzális patchek megjelenítése", "universalPatchesHint": "Az összes alkalmazás és univerzális patch megjelenítése (lassíthatja az alkalmazáslistát)", "versionCompatibilityCheckLabel": "Verziókompatibilitás ellenőrzése", - "versionCompatibilityCheckHint": "Akadályozza meg a kiválasztott alkalmazásverzióval nem kompatibilis javítások kiválasztását", + "versionCompatibilityCheckHint": "Akadályozza meg a kiválasztott alkalmazásverzióval nem kompatibilis patchek kiválasztását", "requireSuggestedAppVersionLabel": "Javasolt alkalmazás verzió kötelező", "requireSuggestedAppVersionHint": "Akadályozza meg, hogy olyan alkalmazást válasszon ki, amelynek verziója nem a javasolt", "requireSuggestedAppVersionDialogText": "Egy nem a javasolt verziótól eltérő alkalmazás kiválasztása váratlan problémákat okozhat.\n\nMindenképpen folytatni szeretné?", @@ -237,7 +237,7 @@ "regenerateKeystoreLabel": "Kulcstár újragenerálása", "regenerateKeystoreHint": "Újragenerálja az alkalmazások aláírásához használt kulcstárolót", "regenerateKeystoreDialogTitle": "Kulcstár újragenerálása?", - "regenerateKeystoreDialogText": "A régi kulcstárolóval aláírt javított alkalmazásokat a továbbiakban nem lehet majd frissíteni.", + "regenerateKeystoreDialogText": "A régi kulcstárolóval aláírt patchelt alkalmazásokat a továbbiakban nem lehet majd frissíteni.", "regeneratedKeystore": "A kulcstár újra létrehozva", "exportKeystoreLabel": "Kulcstároló exportálása", "exportKeystoreHint": "Exportálja az alkalmazások aláírásához használt kulcstárolót", @@ -291,9 +291,9 @@ "status_failure_incompatible": "A telepítés nem kompatibilis", "status_failure_timeout": "Telepítési időtúllépés", "status_unknown": "A telepítés sikertelen", - "mount_version_mismatch_description": "A telepítés meghiúsult, mert a telepített alkalmazás verziója eltér a javított alkalmazástól.\n\nTelepítse a csatlakoztatott alkalmazás verzióját, és próbálja újra.", + "mount_version_mismatch_description": "A telepítés meghiúsult, mert a telepített alkalmazás verziója eltér a patchelt alkalmazástól.\n\nTelepítse a csatlakoztatott alkalmazás verzióját, és próbálja újra.", "mount_no_root_description": "A telepítés meghiúsult, mert nem biztosított a root hozzáférés.\n\nAdjon root hozzáférést a ReVanced Manager számára, és próbálja újra.", - "mount_missing_installation_description": "A telepítés meghiúsult, mert a kijavítatlan alkalmazás nincs telepítve erre az eszközre ahhoz, hogy rácsatlakozhasson.\n\nFelszerelés előtt telepítse a nem javított alkalmazást, és próbálkozzon újra.", + "mount_missing_installation_description": "A telepítés sikertelen volt, mivel a nem patchelt alkalmazás nem volt telepítve az eszközre, hogy csatlakoztatni lehessen.\n\nTelepítse a nem patchelt alkalmazást a csatlakoztatás előtt, és próbálja meg újra.", "status_failure_timeout_description": "A telepítés túl sokáig tartott.\n\nSzeretné újra megpróbálni?", "status_failure_storage_description": "A telepítés meghiúsult a nem elegendő tárhely miatt.\n\nSzabadítson fel helyet, és próbálja újra.", "status_failure_invalid_description": "A telepítés meghiúsult, mert a patchelt alkalmazás érvénytelen.\n\nTávolítsa el az alkalmazást, és próbálja újra?", diff --git a/assets/i18n/strings_id_ID.i18n.json b/assets/i18n/strings_id_ID.i18n.json index afa90761..f33696f2 100755 --- a/assets/i18n/strings_id_ID.i18n.json +++ b/assets/i18n/strings_id_ID.i18n.json @@ -3,12 +3,12 @@ "cancelButton": "Batal", "dismissButton": "Abaikan", "quitButton": "Keluar", - "updateButton": "Pembaruan", + "updateButton": "Memperbarui", "enabledLabel": "Aktif", "disabledLabel": "Tidak Aktif", "installed": "Terpasang: ${version}", "suggested": "Disarankan: ${version}", - "yesButton": "Ya", + "yesButton": "Iya", "noButton": "Tidak", "warning": "Peringatan", "options": "Pengaturan", @@ -27,7 +27,7 @@ "refreshSuccess": "Berhasil Memuat Ulang", "widgetTitle": "Dasbor", "updatesSubtitle": "Pembaruan", - "patchedSubtitle": "Aplikasi tertambal", + "patchedSubtitle": "Aplikasi yang dimodifikasi", "changeLaterSubtitle": "Anda dapat mengubahnya di pengaturan nanti.", "noUpdates": "Tidak ada pembaruan", "WIP": "Sedang dikerjakan...", @@ -60,7 +60,7 @@ "loadingLabel": "Memuat...", "timeagoLabel": "${time} yang lalu", "patcherLabel": "Penambal: ", - "managerLabel": "Manager: ", + "managerLabel": "Pengelola: ", "updateButton": "Perbarui Manager" }, "patcherView": { @@ -200,23 +200,51 @@ "autoUpdatePatchesLabel": "Otomatis perbarui tambalan", "autoUpdatePatchesHint": "Otomatis perbarui tambalan ke versi terkini", "showUpdateDialogLabel": "Tampilkan dialog pembaruan", + "showUpdateDialogHint": "Tampilkan dialog ketika pembaruan tersedia", "universalPatchesLabel": "Tampilkan tambalan universal", + "universalPatchesHint": "Menampilkan semua aplikasi dan tambalan universal (dapat memperlambat daftar aplikasi)", "versionCompatibilityCheckLabel": "Periksa versi kompatibilitas", + "versionCompatibilityCheckHint": "Cegah pemilihan tambalan yang tidak kompatibel dengan versi aplikasi yang dipilih", + "requireSuggestedAppVersionLabel": "Memerlukan versi aplikasi yang disarankan", + "requireSuggestedAppVersionHint": "Cegah memilih versi aplikasi yang tidak disarankan", + "requireSuggestedAppVersionDialogText": "Memilih versi aplikasi yang tidak disarankan dapat menyebabkan masalah yang tidak terduga.\n\nApakah anda ingin melanjutkan?", "aboutLabel": "Tentang", "snackbarMessage": "Disalin ke papan klip", "restartAppForChanges": "Mulai ulang aplikasi untuk menerapkan perubahan", "deleteTempDirLabel": "Hapus berkas sementara", "deleteTempDirHint": "Hapus berkas sementara yang tidak dipakai", "deletedTempDir": "Berkas sementara dihapus", + "exportPatchesLabel": "Ekspor tambalan pilihan", "exportPatchesHint": "Ekspor tambalan terpilih ke berkas JSON", + "exportedPatches": "Tambalan pilihan diekspor", "noExportFileFound": "Belum pilih tambalan untuk diekspor", + "importPatchesLabel": "Impor modifikasi terpilih", "importPatchesHint": "Impor tembalan terpilih dari berkas JSON", + "importedPatches": "Tambalan pilihan diimpor", + "resetStoredPatchesLabel": "Setel ulang tambalan pilihan", + "resetStoredPatchesHint": "Mulai ulang tambalan pilihan yang disimpan", + "resetStoredPatchesDialogTitle": "Mulai ulang tambalan pilihan?", + "resetStoredPatchesDialogText": "Tambalan pilihan bawaan akan dikembalikan.", + "resetStoredPatches": "Tambalan pilihan telah diatur ulang", + "resetStoredOptionsLabel": "Setel ulang opsi tambalan", + "resetStoredOptionsHint": "Setel ulang semua opsi tambalan", + "resetStoredOptionsDialogTitle": "Setel ulang opsi tambalan?", + "resetStoredOptionsDialogText": "Menyetel ulang opsi tambalan akan menghapus semua opsi yang disimpan.", + "resetStoredOptions": "Opsi telah diatur ulang", + "deleteLogsLabel": "Hapus riwayat", "deleteLogsHint": "Hapus log ReVanced Manager terkumpul", "deletedLogs": "Log dihapus", + "regenerateKeystoreLabel": "Menghasilkan penyimpanan kunci", + "regenerateKeystoreHint": "Buat ulang penyimpanan kunci yang digunakan untuk menandatangani aplikasi", + "regenerateKeystoreDialogTitle": "Membuat ulang kunci penyimpanan?", + "regenerateKeystoreDialogText": "Aplikasi tambalan yang ditandatangani dengan kunci penyimpanan lama tidak dapat diperbarui lagi.", + "regeneratedKeystore": "Kunci penyimpanan dibuat ulang", "exportKeystoreLabel": "Ekspor keystore", + "exportKeystoreHint": "Ekspor kunci penyimpanan yang digunakan untuk menandatangani aplikasi", "exportedKeystore": "Keystore diekspor", "noKeystoreExportFileFound": "Tidak ada keystore untuk diekspor", "importKeystoreLabel": "Impor keystore", + "importKeystoreHint": "Impor kunci penyimpanan yang digunakan untuk menandatangani aplikasi", "importedKeystore": "Keystore diimpor", "selectKeystorePassword": "Kata Sandi Keystore", "selectKeystorePasswordHint": "Pilih kata sandi keystore yang digunakan untuk menandatangani aplikasi", @@ -263,6 +291,17 @@ "status_failure_incompatible": "Pemasangan tidak kompatibel", "status_failure_timeout": "Pemasangan kelamaan", "status_unknown": "Pemasangan gagal", - "mount_no_root_description": "Pemasangan ini gagal karena akses root belum dizinkan.\n\nIzinkan akses root ke ReVanced Manager dan coba lagi." + "mount_version_mismatch_description": "Penginstalan gagal karena aplikasi yang diinstal merupakan versi yang berbeda dari aplikasi yang ditambal.\n\nInstal versi aplikasi yang anda pasang dan coba lagi.", + "mount_no_root_description": "Pemasangan ini gagal karena akses root belum dizinkan.\n\nIzinkan akses root ke ReVanced Manager dan coba lagi.", + "mount_missing_installation_description": "Penginstalan gagal karena aplikasi yang belum ditambal tidak diinstal pada perangkat ini untuk dipasang di atasnya.\n\nInstal aplikasi yang belum ditambal sebelum memasang dan coba lagi.", + "status_failure_timeout_description": "Instalasi memakan waktu terlalu lama untuk diselesaikan.\n\nApakah anda ingin mencoba lagi?", + "status_failure_storage_description": "Instalasi gagal karena penyimpanan tidak mencukupi.\n\nKosongkan sebagian ruang dan coba kembali.", + "status_failure_invalid_description": "Instalasi gagal karena aplikasi yang ditambal tidak valid.\n\nCopot pemasangan aplikasi dan coba lagi?", + "status_failure_incompatible_description": "Aplikasi ini tidak kompatibel dengan perangkat anda.\n\nHubungi pengembang aplikasi dan minta dukungan.", + "status_failure_conflict_description": "Penginstalan dicegah oleh aplikasi yang sudah ada.\n\nCopot pemasangan aplikasi yang terpasang dan coba kembali?", + "status_failure_blocked_description": "Instalasi diblokir oleh ${packageName}.\n\nSesuaikan pengaturan keamanan anda dan coba kembali.", + "install_failed_verification_failure_description": "Instalasi gagal karena masalah verifikasi.\n\nSesuaikan pengaturan keamanan anda dan coba kembali.", + "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." } } \ No newline at end of file diff --git a/assets/i18n/strings_ja_JP.i18n.json b/assets/i18n/strings_ja_JP.i18n.json index 8c6ba0eb..83d70deb 100755 --- a/assets/i18n/strings_ja_JP.i18n.json +++ b/assets/i18n/strings_ja_JP.i18n.json @@ -1,8 +1,11 @@ { "okButton": "OK", "cancelButton": "キャンセル", + "dismissButton": "取り消し", "quitButton": "中止", "updateButton": "更新", + "enabledLabel": "有効", + "disabledLabel": "無効", "installed": "インストール済み: ${version}", "suggested": "推奨: ${version}", "yesButton": "はい", @@ -13,6 +16,8 @@ "noShowAgain": "今後は表示しない", "add": "追加", "remove": "削除", + "showChangelogButton": "更新履歴を確認", + "showUpdateButton": "アップデート内容を見せる", "navigationView": { "dashboardTab": "一覧", "patcherTab": "パッチャー", @@ -23,11 +28,25 @@ "widgetTitle": "一覧", "updatesSubtitle": "更新", "patchedSubtitle": "パッチ適用済みのアプリ", + "changeLaterSubtitle": "この設定はあとでも変更できます", "noUpdates": "利用可能なアップデートはありません", + "WIP": "制作中", "noInstallations": "パッチ済みのアプリはインストールされていません", "installUpdate": "更新を適用しますか?", + "updateSheetTitle": "ReVanced Managerをアップデート", + "updateDialogTitle": "新しいアップデートが利用可能", + "updatePatchesSheetTitle": "ReVancedパッチを更新", "updateChangelogTitle": "変更履歴", + "updateDialogText": "新しいアップデートが${file} 向けにあります。\n現在のインストールされているバージョンは${version} です。", + "downloadConsentDialogTitle": "必要なファイルをダウンロードしますか?", + "downloadConsentDialogText": "ReVanced Managerは正常に動作するために必要なファイルをダウンロードする必要があります。", + "downloadConsentDialogText2": "これにより${url} に接続します", + "checkUpdateDialogTitle": "アップデートを確認しますか?", + "checkUpdateDialogText": "ReVanced Managerのアップデートを自動チェックしますか?", + "notificationTitle": "アップデートをダウンロードしました", + "notificationText": "タップしてアップデートをインストール", "downloadingMessage": "更新データをダウンロードしています...", + "downloadedMessage": "アップデートのダウンロードが完了しました", "installingMessage": "更新を適用しています...", "errorDownloadMessage": "更新データをダウンロードできません", "errorInstallMessage": "更新を適用できませんでした", @@ -39,17 +58,26 @@ }, "latestCommitCard": { "loadingLabel": "読み込み中...", - "timeagoLabel": "${time} 前" + "timeagoLabel": "${time} 前", + "patcherLabel": "Patcher: ", + "managerLabel": "Manager: ", + "updateButton": "アップデートマネージャー" }, "patcherView": { "widgetTitle": "パッチャー", "patchButton": "パッチ", + "armv7WarningDialogText": "ARMv7デバイスではパッチがサポートされていません。失敗する可能性がありますが、続行しますか?", + "removedPatchesWarningDialogText": "以下のパッチはもう使用できません。\n\n${patches}\n\n続行しますか?", "requiredOptionDialogText": "一部のパッチオプションを設定する必要があります。" }, "appSelectorCard": { + "widgetTitle": "アプリを選択", + "widgetTitleSelected": "選択済のアプリ", + "widgetSubtitle": "アプリが選択されていません", "noAppsLabel": "アプリが見つかりません", "currentVersion": "選択", - "suggestedVersion": "推奨" + "suggestedVersion": "推奨", + "anyVersion": "任意のバージョン" }, "patchSelectorCard": { "widgetTitle": "パッチを選択", @@ -62,11 +90,15 @@ "widgetSubtitle": "私たちは活動しています!" }, "appSelectorView": { + "viewTitle": "アプリを選択", + "searchBarHint": "アプリを検索", "storageButton": "APKを選択", "selectFromStorageButton": "ストレージから選択", "errorMessage": "選択されたアプリは使用できません", "downloadToast": "現在、ダウンロード機能は利用できません", - "featureNotAvailable": "この機能は未実装です" + "requireSuggestedAppVersionDialogText": "選択されたアプリのバージョンは推奨バージョン外です。\n推奨バージョンのアプリを選択してください。\n選択されたバージョン ${selected}\n推奨バージョン ${suggested}\n\n選択されたバージョンを使用する場合、設定から「推奨バージョンの使用を強制」を無効にしてください。", + "featureNotAvailable": "この機能は未実装です", + "featureNotAvailableText": "このアプリは分割された APK であり、root 権限でマウントすることによってのみ確実にパッチを適用してインストールできます。 ただし、ストレージから選択することで完全な APK をパッチしてインストールすることができます。" }, "patchesSelectorView": { "viewTitle": "パッチを選択", @@ -75,7 +107,9 @@ "newPatches": "新しいパッチ", "patches": "パッチ", "doneButton": "完了", + "defaultChip": "既定", "defaultTooltip": "すべてのデフォルトのパッチを選択", + "noneChip": "なし", "noneTooltip": "すべてのパッチの選択を解除", "loadPatchesSelection": "パッチの選択を読み込む", "noSavedPatches": "選択したアプリに保存されたパッチはありません。\n「完了」を押して現在の選択を保存します。", @@ -99,13 +133,19 @@ }, "patchItem": { "unsupportedDialogText": "このパッチを選択するとエラーが発生する可能性があります。\n\n現在のバージョン: ${packageVersion}\nサポートされているバージョン: ${supportedVersions}", + "unsupportedPatchVersion": "このアプリのバージョンではパッチはサポートされていません.", "unsupportedRequiredOption": "このパッチには、このアプリではサポートされていない必須オプションが含まれています", + "patchesChangeWarningDialogText": "デフォルトのパッチの選択とオプションを使用することを推奨します。変更すると予期せぬ問題が発生する可能性があります。\n\nパッチの選択を続ける場合、設定で「パッチの選択の変更を許可」をオンにする必要があります。", "patchesChangeWarningDialogButton": "デフォルトの選択を使用" }, "installerView": { + "widgetTitle": "インストーラー", "installType": "インストールの種類を選択", + "installTypeDescription": "インストールの種類を選択して続行します。", "installButton": "インストール", "installRootType": "マウント", + "installNonRootType": "標準", + "warning": "予期しない問題を避けるため、パッチを適用したアプリの自動更新を無効にします。", "pressBackAgain": "キャンセルするには、もう一度戻るを押してください", "openButton": "開く", "shareButton": "ファイルを共有", @@ -124,6 +164,7 @@ "debugSectionTitle": "デバッグ", "advancedSectionTitle": "高度な設定", "exportSectionTitle": "インポート&エクスポート", + "dataSectionTitle": "データソース", "themeModeLabel": "アプリのテーマ", "systemThemeLabel": "システム", "lightThemeLabel": "ライト", @@ -131,12 +172,19 @@ "dynamicThemeLabel": "Material You", "dynamicThemeHint": "よりデバイスに近い体験が楽しめます", "languageLabel": "言語", + "languageUpdated": "言語が更新されました", "englishOption": "英語", + "sourcesLabel": "他のソース", + "sourcesLabelHint": "ReVanded PatchesとReVanced Integrationsの代替ソースを設定", "sourcesIntegrationsLabel": "Integrations のソース", + "useAlternativeSources": "他のソースを使用", + "useAlternativeSourcesHint": "APIの代わりにReVanced PatchesとReVanced Integrationsの他のソースを使用する", "sourcesResetDialogTitle": "リセット", "sourcesResetDialogText": "ソースをデフォルト値にリセットしてもよろしいですか?", "apiURLResetDialogText": "API の URL をデフォルト値にリセットしてもよろしいですか?", + "sourcesUpdateNote": "注: ReVeded PatchesとReVanced Integrationsを別のソースから自動的にダウンロードします。\n\nこれにより、他のソースに接続されます。", "apiURLLabel": "API の URL", + "apiURLHint": "ReVanced ManagerのAPIのURLを設定する", "selectApiURL": "API の URL", "orgPatchesLabel": "パッチの組織", "sourcesPatchesLabel": "パッチのソース", @@ -146,10 +194,13 @@ "logsLabel": "ログを共有", "logsHint": "ReVanced Manager のログを共有します", "enablePatchesSelectionLabel": "パッチの選択の変更を許可", + "enablePatchesSelectionHint": "パッチの選択と解除を防止しない", "enablePatchesSelectionWarningText": "パッチの選択を変更すると、予期せぬ問題が起こる可能性があります。\n\n有効にしますか?", "disablePatchesSelectionWarningText": "パッチの選択の変更を無効にしようとしています。\nデフォルトのパッチの選択が復元されます。\n\n無効にしますか?", "autoUpdatePatchesLabel": "パッチの自動アップデート", "autoUpdatePatchesHint": "パッチを自動的に最新バージョンに更新します", + "showUpdateDialogLabel": "更新ダイアログを表示", + "showUpdateDialogHint": "新しいアップデートが利用可能な場合にダイアログを表示する", "universalPatchesLabel": "共通パッチの表示", "universalPatchesHint": "すべてのアプリと共通パッチを表示します (アプリのリストの読み込みが遅くなる可能性があります)", "versionCompatibilityCheckLabel": "バージョンの互換性チェック", diff --git a/assets/i18n/strings_ko_KR.i18n.json b/assets/i18n/strings_ko_KR.i18n.json index cc0204b6..ef72e15c 100755 --- a/assets/i18n/strings_ko_KR.i18n.json +++ b/assets/i18n/strings_ko_KR.i18n.json @@ -16,7 +16,7 @@ "noShowAgain": "다시 보지 않기", "add": "추가", "remove": "제거", - "showChangelogButton": "변경 내역 보기", + "showChangelogButton": "변경 사항 보기", "showUpdateButton": "업데이트 보기", "navigationView": { "dashboardTab": "대시보드", @@ -142,7 +142,7 @@ "widgetTitle": "설치 관리자", "installType": "설치 유형 선택", "installTypeDescription": "설치를 진행할 유형을 선택해주세요.", - "installButton": "설치", + "installButton": "설치하기", "installRootType": "마운트", "installNonRootType": "일반", "warning": "패치한 앱의 자동 업데이트를 꺼서 예기치 못한 오류를 예방하세요.", @@ -254,7 +254,7 @@ "appInfoView": { "widgetTitle": "앱 정보", "openButton": "열기", - "uninstallButton": "제거", + "uninstallButton": "제거하기", "unmountButton": "마운트 해제", "rootDialogTitle": "오류", "unmountDialogText": "이 앱의 마운트를 해제할까요?", diff --git a/assets/i18n/strings_nl_NL.i18n.json b/assets/i18n/strings_nl_NL.i18n.json index 3ccfef74..7035a96d 100755 --- a/assets/i18n/strings_nl_NL.i18n.json +++ b/assets/i18n/strings_nl_NL.i18n.json @@ -16,7 +16,7 @@ "noShowAgain": "Niet meer tonen", "add": "Voeg toe", "remove": "Verwijderen", - "showChangelogButton": "Laat wijzigingslogboek zien", + "showChangelogButton": "Wijzigingslogboek tonen", "showUpdateButton": "Update weergeven", "navigationView": { "dashboardTab": "Overzicht", @@ -28,14 +28,25 @@ "widgetTitle": "Overzicht", "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", + "updateDialogTitle": "Nieuwe update beschikbaar", + "updatePatchesSheetTitle": "Update ReVanced Patches", "updateChangelogTitle": "Wijzigingslogboek", + "updateDialogText": "Er is een nieuwe update beschikbaar voor ${file}.\n\nDe momenteel geïnstalleerde versie is ${version}.", + "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", @@ -55,12 +66,18 @@ "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." }, "appSelectorCard": { + "widgetTitle": "Selecteer een app", + "widgetTitleSelected": "Geselecteerde app", + "widgetSubtitle": "Geen app geselecteerd", "noAppsLabel": "Geen applicatie gevonden", "currentVersion": "Huidige", - "suggestedVersion": "Voorgesteld" + "suggestedVersion": "Voorgesteld", + "anyVersion": "Iedere versie" }, "patchSelectorCard": { "widgetTitle": "Selecteer patches", @@ -73,11 +90,15 @@ "widgetSubtitle": "We zijn online!" }, "appSelectorView": { + "viewTitle": "Selecteer een app", + "searchBarHint": "Zoek naar apps", "storageButton": "Opslag", "selectFromStorageButton": "Selecteer uit opslag", "errorMessage": "Kan geselecteerde applicatie niet gebruiken", "downloadToast": "Download functie is nog niet beschikbaar", - "featureNotAvailable": "Functie niet geïmplementeerd" + "requireSuggestedAppVersionDialogText": "De versie van de app die u hebt geselecteerd komt niet overeen met de voorgestelde versie die onverwachte problemen kan veroorzaken. Gebruik de voorgestelde versie.\n\nGeselecteerde versie: ${selected}\nSuggeert versie: ${suggested}\n\nOm toch verder te gaan, schakel \"Vereis app versie\" uit in de instellingen.", + "featureNotAvailable": "Functie niet geïmplementeerd", + "featureNotAvailableText": "Deze app is een gesplitste APK en kan alleen op betrouwbare wijze worden gepatenteerd en geïnstalleerd door te koppelen met root-machtigingen. Je kunt echter wel een volledige APK patchen en installeren door deze uit de opslag te selecteren." }, "patchesSelectorView": { "viewTitle": "Selecteer patches", @@ -86,7 +107,9 @@ "newPatches": "Nieuwe patches", "patches": "Patches", "doneButton": "Gereed", + "defaultChip": "Standaard", "defaultTooltip": "Selecteer alle standaard patches", + "noneChip": "Geen", "noneTooltip": "Alle patches deselecteren", "loadPatchesSelection": "Laad patch selectie", "noSavedPatches": "Geen opgeslagen patch selectie voor de geselecteerde app.\nDruk op Klaar om de huidige selectie op te slaan.", @@ -112,11 +135,13 @@ "unsupportedDialogText": "Het selecteren van deze patch kan leiden tot patch fouten.\n\nApp-versie: ${packageVersion}\nOndersteunde versies:\n${supportedVersions}", "unsupportedPatchVersion": "Patch wordt niet ondersteund voor deze app versie.", "unsupportedRequiredOption": "Deze patch bevat een verplichte optie die niet wordt ondersteund door deze app", + "patchesChangeWarningDialogText": "Het wordt aangeraden om de standaard patch selectie en opties te gebruiken. Wijzigen van deze opties kan leiden tot onverwachte problemen.\n\nJe moet \"Veranderen van patch-selectie toestaan\" inschakelen in de instellingen voordat je de patch-selectie wijzigt.", "patchesChangeWarningDialogButton": "Gebruik standaard selectie" }, "installerView": { "widgetTitle": "Installatieprogramma", "installType": "Selecteer installatietype", + "installTypeDescription": "Selecteer het installatietype om mee door te gaan.", "installButton": "Installeren", "installRootType": "Bestijgen", "installNonRootType": "Normaal", @@ -139,6 +164,7 @@ "debugSectionTitle": "Foutopsporing", "advancedSectionTitle": "Geavanceerd", "exportSectionTitle": "Importeren & exporteren", + "dataSectionTitle": "Gegevensbronnen", "themeModeLabel": "App thema", "systemThemeLabel": "Systeem", "lightThemeLabel": "Licht", @@ -146,12 +172,19 @@ "dynamicThemeLabel": "Materiaal jij", "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", + "useAlternativeSources": "Gebruik alternatieve bronnen", + "useAlternativeSourcesHint": "Gebruik alternatieve bronnen voor ReVanced Patches en ReVanced Integrations in plaats van de API", "sourcesResetDialogTitle": "Herstellen naar standaard", "sourcesResetDialogText": "Weet u zeker dat u uw bronnen op hun standaardwaarden wilt herstellen?", "apiURLResetDialogText": "Weet u zeker dat u uw API-URL wilt resetten naar de standaardwaarde?", + "sourcesUpdateNote": "Opmerking: Dit zal automatisch ReVanceerde Patches en verbeterde integraties uit de alternatieve bronnen downloaden.\n\nDit verbindt je met de alternatieve bron.", "apiURLLabel": "API URL", + "apiURLHint": "Configureer de API URL van ReVanced Manager", "selectApiURL": "API URL", "orgPatchesLabel": "Organisatie van patches", "sourcesPatchesLabel": "Bronnen voor patches", @@ -166,6 +199,8 @@ "disablePatchesSelectionWarningText": "U staat op het punt om de selectie van patches uit te schakelen.\nDe standaard selectie van patches zal worden hersteld.\n\nToch uitschakelen?", "autoUpdatePatchesLabel": "Patch automatisch bijwerken", "autoUpdatePatchesHint": "Patch automatisch bijwerken naar de laatste versie", + "showUpdateDialogLabel": "Toon update dialoogvenster", + "showUpdateDialogHint": "Een dialoogvenster weergeven wanneer een nieuwe update beschikbaar is", "universalPatchesLabel": "Toon universele patches", "universalPatchesHint": "Alle apps en universele patches weergeven (kan de app-lijst vertragen)", "versionCompatibilityCheckLabel": "Versie compatibiliteitscontrole", @@ -236,7 +271,12 @@ "updateNotImplemented": "Deze functie is nog niet geïmplementeerd" }, "contributorsView": { - "widgetTitle": "Bijdragers" + "widgetTitle": "Bijdragers", + "patcherContributors": "ReVanced Patcher", + "patchesContributors": "ReVanced patches", + "integrationsContributors": "ReVanced integrations", + "cliContributors": "ReVanced CLI", + "managerContributors": "ReVanced Manager" }, "installErrorDialog": { "mount_version_mismatch": "Verkeerde versie", diff --git a/assets/i18n/strings_ro_RO.i18n.json b/assets/i18n/strings_ro_RO.i18n.json index c3264a71..3bf3cd79 100755 --- a/assets/i18n/strings_ro_RO.i18n.json +++ b/assets/i18n/strings_ro_RO.i18n.json @@ -72,7 +72,7 @@ }, "appSelectorCard": { "widgetTitle": "Selectați o aplicație", - "widgetTitleSelected": "Aplicația selectata", + "widgetTitleSelected": "Aplicația selectată", "widgetSubtitle": "Nici o aplicație selectată", "noAppsLabel": "Nu s-au găsit aplicații", "currentVersion": "Actual", diff --git a/assets/i18n/strings_ru_RU.i18n.json b/assets/i18n/strings_ru_RU.i18n.json index 0fdc6001..88512d94 100755 --- a/assets/i18n/strings_ru_RU.i18n.json +++ b/assets/i18n/strings_ru_RU.i18n.json @@ -7,7 +7,7 @@ "enabledLabel": "Включено", "disabledLabel": "Отключено", "installed": "Установлено: ${version}", - "suggested": "Предложено: ${version}", + "suggested": "Рекомендуемая: ${version}", "yesButton": "Да", "noButton": "Нет", "warning": "Внимание", diff --git a/assets/i18n/strings_sr_CS.i18n.json b/assets/i18n/strings_sr_CS.i18n.json index 26944443..f248a709 100755 --- a/assets/i18n/strings_sr_CS.i18n.json +++ b/assets/i18n/strings_sr_CS.i18n.json @@ -80,7 +80,7 @@ "anyVersion": "Bilo koja verzija" }, "patchSelectorCard": { - "widgetTitle": "Izaberite pečeve", + "widgetTitle": "Izaberi pečeve", "widgetTitleSelected": "Izabrani pečevi", "widgetSubtitle": "Prvo izaberite aplikaciju", "widgetEmptySubtitle": "Nema izabranih pečeva" @@ -91,7 +91,7 @@ }, "appSelectorView": { "viewTitle": "Izaberite aplikaciju", - "searchBarHint": "Tražite aplikaciju", + "searchBarHint": "Pretražite aplikaciju", "storageButton": "Memorija", "selectFromStorageButton": "Izaberi iz memorije", "errorMessage": "Nije moguće koristiti izabranu aplikaciju", @@ -231,7 +231,7 @@ "resetStoredOptionsDialogTitle": "Resetovati opcije peča?", "resetStoredOptionsDialogText": "Resetovanjem opcija peča uklanjate sve sačuvane opcije.", "resetStoredOptions": "Opcije su resetovane", - "deleteLogsLabel": "Obriši evidencije", + "deleteLogsLabel": "Izbriši evidencije", "deleteLogsHint": "Izbrišite prikupljene evidencije ReVanced Managera", "deletedLogs": "Evidencije su izbrisane", "regenerateKeystoreLabel": "Generiši novo skladište ključeva", diff --git a/assets/i18n/strings_sr_SP.i18n.json b/assets/i18n/strings_sr_SP.i18n.json index b2ccd1e6..4683df42 100755 --- a/assets/i18n/strings_sr_SP.i18n.json +++ b/assets/i18n/strings_sr_SP.i18n.json @@ -80,7 +80,7 @@ "anyVersion": "Било која верзија" }, "patchSelectorCard": { - "widgetTitle": "Изаберите печеве", + "widgetTitle": "Изабери печеве", "widgetTitleSelected": "Изабрани печеви", "widgetSubtitle": "Прво изаберите апликацију", "widgetEmptySubtitle": "Нема изабраних печева" @@ -91,7 +91,7 @@ }, "appSelectorView": { "viewTitle": "Изаберите апликацију", - "searchBarHint": "Тражите апликацију", + "searchBarHint": "Претражите апликацију", "storageButton": "Из меморије", "selectFromStorageButton": "Изабери из меморије", "errorMessage": "Није могуће користити изабрану апликацију", @@ -231,7 +231,7 @@ "resetStoredOptionsDialogTitle": "Ресетовати опције печа?", "resetStoredOptionsDialogText": "Ресетовањем опција печа уклањате све сачуване опције.", "resetStoredOptions": "Опције су ресетоване", - "deleteLogsLabel": "Обриши евиденције", + "deleteLogsLabel": "Избриши евиденције", "deleteLogsHint": "Избришите прикупљене евиденције ReVanced Manager-а", "deletedLogs": "Евиденције су избрисане", "regenerateKeystoreLabel": "Генериши ново складиште кључева", diff --git a/assets/i18n/strings_vi_VN.i18n.json b/assets/i18n/strings_vi_VN.i18n.json index 224a6e40..20898f2a 100755 --- a/assets/i18n/strings_vi_VN.i18n.json +++ b/assets/i18n/strings_vi_VN.i18n.json @@ -164,6 +164,7 @@ "debugSectionTitle": "Gỡ Lỗi", "advancedSectionTitle": "Nâng cao", "exportSectionTitle": "Nhập và xuất", + "dataSectionTitle": "Nguồn dữ liệu", "themeModeLabel": "Chủ đề ứng dụng", "systemThemeLabel": "Hệ thống", "lightThemeLabel": "Sáng", @@ -173,11 +174,17 @@ "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", + "useAlternativeSources": "Dùng nguồn thay thế", + "useAlternativeSourcesHint": "Dùng nguồn thay thế cho Bản vá ReVanced và Tích hợp ReVanced thay cho API", "sourcesResetDialogTitle": "Đặt lại", "sourcesResetDialogText": "Bạn có chắc chắn muốn đặt lại nguồn của mình về giá trị mặc định không?", "apiURLResetDialogText": "Bạn có chắc bạn muốn đặt lại API URL của bạn về giá trị mặc định của nó không?", + "sourcesUpdateNote": "Lưu ý: Việc này sẽ tự động tải Bản vá ReVanced và Tích hợp ReVanced từ nguồn thay thế.", "apiURLLabel": "Địa chỉ URL của API", + "apiURLHint": "Cấu hình địa chỉ URL API của ReVanced Manager", "selectApiURL": "Địa chỉ URL của API", "orgPatchesLabel": "Tác giả bản vá", "sourcesPatchesLabel": "Nguồn bản vá", From a71a9301254559b28423a605dba8a6c2df02b7b5 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 23 Mar 2024 11:03:27 +0000 Subject: [PATCH 12/40] chore(release): 1.19.4-dev.2 [skip ci] ## [1.19.4-dev.2](https://github.com/ReVanced/revanced-manager/compare/v1.19.4-dev.1...v1.19.4-dev.2) (2024-03-23) ### Bug Fixes * Ensure safe area usage in Changelogs Modal Bottom Sheet ([#1772](https://github.com/ReVanced/revanced-manager/issues/1772)) ([c981cb4](https://github.com/ReVanced/revanced-manager/commit/c981cb4a41051bc68b14cec55520c808311952b7)) --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index db82054b..e2e193ef 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ homepage: https://github.com/ReVanced/revanced-manager publish_to: 'none' -version: 1.19.4-dev.1+101800007 +version: 1.19.4-dev.2+101800008 environment: sdk: '>=3.0.0 <4.0.0' From bb105b5662286d4064c5494087b1b8448756ae9c Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Wed, 27 Mar 2024 17:33:42 +0700 Subject: [PATCH 13/40] chore(Branding): Update ReVanced Logo name (#1794) --- CONTRIBUTING.md | 4 ++-- README.md | 4 ++-- SECURITY.md | 4 ++-- .../{revanced-logo-round.svg => revanced-logo.svg} | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) rename assets/revanced-logo/{revanced-logo-round.svg => revanced-logo.svg} (99%) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index db86a455..58410499 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -13,8 +13,8 @@
- - + +     diff --git a/README.md b/README.md index 633878f5..7d0ffb77 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@
- - + +     diff --git a/SECURITY.md b/SECURITY.md index 0ff47660..15e3660d 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -13,8 +13,8 @@
- - + +     diff --git a/assets/revanced-logo/revanced-logo-round.svg b/assets/revanced-logo/revanced-logo.svg similarity index 99% rename from assets/revanced-logo/revanced-logo-round.svg rename to assets/revanced-logo/revanced-logo.svg index 901e1914..0ab29473 100644 --- a/assets/revanced-logo/revanced-logo-round.svg +++ b/assets/revanced-logo/revanced-logo.svg @@ -1 +1 @@ - \ No newline at end of file + From 58d8e7f34f25a8e0613744af7093c51558bbebbe Mon Sep 17 00:00:00 2001 From: kitadai31 <90122968+kitadai31@users.noreply.github.com> Date: Wed, 27 Mar 2024 21:46:37 +0900 Subject: [PATCH 14/40] build: Bump dependencies (#1796) --- android/app/build.gradle | 2 -- android/settings.gradle | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 59533e3a..7a34e024 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -113,8 +113,6 @@ flutter { } dependencies { - implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.22") - implementation("app.revanced:revanced-patcher:19.3.1") implementation("app.revanced:revanced-library:2.2.1") } diff --git a/android/settings.gradle b/android/settings.gradle index ad78d23e..02488bfc 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -19,7 +19,7 @@ pluginManagement { plugins { id "dev.flutter.flutter-plugin-loader" version "1.0.0" id "com.android.application" version "8.1.2" apply false - id "org.jetbrains.kotlin.android" version "1.9.10" apply false + id "org.jetbrains.kotlin.android" version "1.9.23" apply false } include ":app" From ad416387c297610e4e40027cc3aeab230a31aaaa Mon Sep 17 00:00:00 2001 From: Ushie Date: Thu, 28 Mar 2024 02:02:55 +0300 Subject: [PATCH 15/40] ci(Crowdin): Specify bundle to download --- .github/workflows/sync_crowdin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_crowdin.yml b/.github/workflows/sync_crowdin.yml index f750dd7e..dbec480c 100644 --- a/.github/workflows/sync_crowdin.yml +++ b/.github/workflows/sync_crowdin.yml @@ -29,7 +29,7 @@ jobs: config: crowdin.yml upload_sources: true upload_translations: false - download_translations: true + download_bundle: 16 localization_branch_name: feat/translations create_pull_request: true pull_request_title: "chore: Sync translations" From e85ed5a8e374a2a07850893922c35f2fa0e85d69 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Thu, 28 Mar 2024 04:06:52 +0000 Subject: [PATCH 16/40] build: Bump language_code to v0.4.2 This fix #1714 regarding country name of es-AR (Argentina) does not exist. Signed-off-by: Pun Butrach --- pubspec.lock | 4 ++-- pubspec.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index 0842621f..eb80debd 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -563,10 +563,10 @@ packages: dependency: "direct main" description: name: language_code - sha256: cbd50546df7c21857a7cfa35f97943f8759705d0c17f9282593abe654cbbdf38 + sha256: "3124246f599039a89c990d007b00bc41b1526d6400de97cf13a478b7f4b16a83" url: "https://pub.dev" source: hosted - version: "0.4.1" + version: "0.4.2" leak_tracker: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index e2e193ef..dcb54edc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -41,7 +41,7 @@ dependencies: injectable: ^2.1.1 intl: ^0.18.0 json_annotation: ^4.8.1 - language_code: ^0.4.1 + language_code: ^0.4.2 logcat: git: url: https://github.com/BenjaminHalko/logcat From 6f70a079701be63fc59b7272d0ddc4334c89d798 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Thu, 28 Mar 2024 11:38:07 +0700 Subject: [PATCH 17/40] fix: Replace Spacer with Expanded to avoid overflow (#1791) --- .../settings/settingsFragment/settings_manage_api_url.dart | 5 +++-- .../settingsFragment/settings_manage_keystore_password.dart | 5 +++-- .../settings/settingsFragment/settings_manage_sources.dart | 5 +++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/lib/ui/views/settings/settingsFragment/settings_manage_api_url.dart b/lib/ui/views/settings/settingsFragment/settings_manage_api_url.dart index 7de77b87..52c706ed 100644 --- a/lib/ui/views/settings/settingsFragment/settings_manage_api_url.dart +++ b/lib/ui/views/settings/settingsFragment/settings_manage_api_url.dart @@ -20,8 +20,9 @@ class SManageApiUrl extends BaseViewModel { builder: (context) => AlertDialog( title: Row( children: [ - Text(t.settingsView.apiURLLabel), - const Spacer(), + Expanded( + child: Text(t.settingsView.apiURLLabel), + ), IconButton( icon: const Icon(Icons.manage_history_outlined), onPressed: () => showApiUrlResetDialog(context), diff --git a/lib/ui/views/settings/settingsFragment/settings_manage_keystore_password.dart b/lib/ui/views/settings/settingsFragment/settings_manage_keystore_password.dart index 015f2aee..7b82263b 100644 --- a/lib/ui/views/settings/settingsFragment/settings_manage_keystore_password.dart +++ b/lib/ui/views/settings/settingsFragment/settings_manage_keystore_password.dart @@ -21,8 +21,9 @@ class SManageKeystorePassword extends BaseViewModel { builder: (context) => AlertDialog( title: Row( children: [ - Text(t.settingsView.selectKeystorePassword), - const Spacer(), + Expanded( + child: Text(t.settingsView.selectKeystorePassword), + ), IconButton( icon: const Icon(Icons.manage_history_outlined), onPressed: () => _keystorePasswordController.text = diff --git a/lib/ui/views/settings/settingsFragment/settings_manage_sources.dart b/lib/ui/views/settings/settingsFragment/settings_manage_sources.dart index 14f3fec4..8e7cbea9 100644 --- a/lib/ui/views/settings/settingsFragment/settings_manage_sources.dart +++ b/lib/ui/views/settings/settingsFragment/settings_manage_sources.dart @@ -29,8 +29,9 @@ class SManageSources extends BaseViewModel { builder: (context) => AlertDialog( title: Row( children: [ - Text(t.settingsView.sourcesLabel), - const Spacer(), + Expanded( + child: Text(t.settingsView.sourcesLabel), + ), IconButton( icon: const Icon(Icons.manage_history_outlined), onPressed: () => showResetConfirmationDialog(context), From 2d19f369012f53b578362d246ef90a76b72d968d Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 28 Mar 2024 04:45:28 +0000 Subject: [PATCH 18/40] chore(release): 1.19.4-dev.3 [skip ci] ## [1.19.4-dev.3](https://github.com/ReVanced/revanced-manager/compare/v1.19.4-dev.2...v1.19.4-dev.3) (2024-03-28) ### Bug Fixes * Replace Spacer with Expanded to avoid overflow ([#1791](https://github.com/ReVanced/revanced-manager/issues/1791)) ([6f70a07](https://github.com/ReVanced/revanced-manager/commit/6f70a079701be63fc59b7272d0ddc4334c89d798)) --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index dcb54edc..8f4f2176 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ homepage: https://github.com/ReVanced/revanced-manager publish_to: 'none' -version: 1.19.4-dev.2+101800008 +version: 1.19.4-dev.3+101800009 environment: sdk: '>=3.0.0 <4.0.0' From 966796dfec0691bac87960f508dd0351a8fd1d77 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Thu, 28 Mar 2024 05:15:02 +0000 Subject: [PATCH 19/40] fix: Set text colour on dropdown menu for Custom Value This fix #1584 and a continuation of acb1e2434b28efca852297e0a0a8ffce155e67e4 Signed-off-by: Pun Butrach --- lib/ui/widgets/patchesSelectorView/patch_options_fields.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/ui/widgets/patchesSelectorView/patch_options_fields.dart b/lib/ui/widgets/patchesSelectorView/patch_options_fields.dart index 4dabc405..9c32d5e2 100644 --- a/lib/ui/widgets/patchesSelectorView/patch_options_fields.dart +++ b/lib/ui/widgets/patchesSelectorView/patch_options_fields.dart @@ -445,8 +445,11 @@ class _TextFieldForPatchOptionState extends State { value: '', child: Text( t.patchOptionsView.customValue, - style: const TextStyle( + style: TextStyle( fontSize: 16, + color: Theme.of(context) + .colorScheme + .onSecondaryContainer, ), ), ), From 7833a0d552d05946f50434e799c46272e6eb30a3 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Thu, 28 Mar 2024 05:17:49 +0000 Subject: [PATCH 20/40] build: Switch flutter_background to official sources https://github.com/JulianAssmann/flutter_background/pull/79 is merged. --- pubspec.lock | 6 +++--- pubspec.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index eb80debd..cc786faf 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -323,9 +323,9 @@ packages: dependency: "direct main" description: path: "." - ref: "560d21c4148b53933313573e7eafca0b0eb9aadf" - resolved-ref: "560d21c4148b53933313573e7eafca0b0eb9aadf" - url: "https://github.com/BenjaminHalko/flutter_background" + ref: "65cf0ec93486b3a6c74339aadaeb384cf2c9a24b" + resolved-ref: "65cf0ec93486b3a6c74339aadaeb384cf2c9a24b" + url: "https://github.com/JulianAssmann/flutter_background" source: git version: "1.2.0" flutter_cache_manager: diff --git a/pubspec.yaml b/pubspec.yaml index 8f4f2176..372fc0f1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -26,9 +26,9 @@ dependencies: flutter: sdk: flutter flutter_background: - git: # remove once https://github.com/JulianAssmann/flutter_background/pull/79 is merged - url: https://github.com/BenjaminHalko/flutter_background - ref: 560d21c4148b53933313573e7eafca0b0eb9aadf # Branch: specify-namespace + git: # Switch to 'flutter_background' once new version is released + url: https://github.com/JulianAssmann/flutter_background + ref: 65cf0ec93486b3a6c74339aadaeb384cf2c9a24b # Branch: master flutter_cache_manager: ^3.3.0 flutter_file_dialog: ^3.0.2 flutter_local_notifications: ^16.1.0 From 63d83a43ad60fdf68ee48431593767a8903de6d7 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Thu, 28 Mar 2024 05:20:32 +0000 Subject: [PATCH 21/40] chore: Remove unused en_US file This file contains absolulely nothing, whereabout: Unknown. --- assets/i18n/en_US.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100755 assets/i18n/en_US.json diff --git a/assets/i18n/en_US.json b/assets/i18n/en_US.json deleted file mode 100755 index e69de29b..00000000 From 9a66357f7a2f5cdd4275bcbe85846dfe904db499 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Thu, 28 Mar 2024 05:26:35 +0000 Subject: [PATCH 22/40] refactor: slight format change This is so unreadable, there must've been a better way to do this. --- .../settings/settingsFragment/settings_update_language.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/ui/views/settings/settingsFragment/settings_update_language.dart b/lib/ui/views/settings/settingsFragment/settings_update_language.dart index 9f5315e9..f7b4a2f2 100644 --- a/lib/ui/views/settings/settingsFragment/settings_update_language.dart +++ b/lib/ui/views/settings/settingsFragment/settings_update_language.dart @@ -63,9 +63,11 @@ class SUpdateLanguage extends BaseViewModel { child: ListBody( children: [ RadioListTile( + // TODO(Someone): There must've been a better way to do this. title: Text(currentlyUsedLanguage.englishName), subtitle: Text( - '${currentlyUsedLanguage.nativeName} (${LocaleSettings.currentLocale.languageCode}${LocaleSettings.currentLocale.countryCode != null ? '-${LocaleSettings.currentLocale.countryCode}' : ''})'), + '${currentlyUsedLanguage.nativeName} (${LocaleSettings.currentLocale.languageCode}${LocaleSettings.currentLocale.countryCode != null ? '-${LocaleSettings.currentLocale.countryCode}' : ''})', + ), value: '${LocaleSettings.currentLocale.languageCode}-${LocaleSettings.currentLocale.countryCode}' == selectedLanguageCode.value, @@ -110,6 +112,7 @@ class SUpdateLanguage extends BaseViewModel { ), TextButton( onPressed: () { + // TODO(nullcube): Translation will not update until we refresh the page. updateLocale(selectedLanguageCode.value); Navigator.of(context).pop(); }, From ecadb80113b8d5c9676a353173ba7021b8c1d5d2 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 28 Mar 2024 05:35:25 +0000 Subject: [PATCH 23/40] chore(release): 1.19.4-dev.4 [skip ci] ## [1.19.4-dev.4](https://github.com/ReVanced/revanced-manager/compare/v1.19.4-dev.3...v1.19.4-dev.4) (2024-03-28) ### Bug Fixes * Set text colour on dropdown menu for Custom Value ([966796d](https://github.com/ReVanced/revanced-manager/commit/966796dfec0691bac87960f508dd0351a8fd1d77)), closes [#1584](https://github.com/ReVanced/revanced-manager/issues/1584) --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 372fc0f1..4e75f8f5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ homepage: https://github.com/ReVanced/revanced-manager publish_to: 'none' -version: 1.19.4-dev.3+101800009 +version: 1.19.4-dev.4+101800010 environment: sdk: '>=3.0.0 <4.0.0' From c265794d0efbc3ed2dea7a60c7ebd461f711799a Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Thu, 28 Mar 2024 06:13:05 +0000 Subject: [PATCH 24/40] fix: Don't translation ReVanced repository Regex: , "patcherContributors":.*, "patchesContributors":.*, "integrationsContributors":.*, "cliContributors":.*, "managerContributors":.* --- assets/i18n/strings.i18n.json | 7 +------ assets/i18n/strings_az_AZ.i18n.json | 7 +------ assets/i18n/strings_be_BY.i18n.json | 7 +------ assets/i18n/strings_bn_BD.i18n.json | 7 +------ assets/i18n/strings_de_DE.i18n.json | 7 +------ assets/i18n/strings_el_GR.i18n.json | 7 +------ assets/i18n/strings_es_AR.i18n.json | 7 +------ assets/i18n/strings_es_ES.i18n.json | 7 +------ assets/i18n/strings_fr_FR.i18n.json | 7 +------ assets/i18n/strings_hu_HU.i18n.json | 7 +------ assets/i18n/strings_id_ID.i18n.json | 7 +------ assets/i18n/strings_it_IT.i18n.json | 7 +------ assets/i18n/strings_ko_KR.i18n.json | 7 +------ assets/i18n/strings_nl_NL.i18n.json | 7 +------ assets/i18n/strings_pl_PL.i18n.json | 7 +------ assets/i18n/strings_pt_PT.i18n.json | 7 +------ assets/i18n/strings_ro_RO.i18n.json | 7 +------ assets/i18n/strings_ru_RU.i18n.json | 7 +------ assets/i18n/strings_sr_CS.i18n.json | 7 +------ assets/i18n/strings_sr_SP.i18n.json | 7 +------ assets/i18n/strings_sv_SE.i18n.json | 7 +------ assets/i18n/strings_tr_TR.i18n.json | 7 +------ assets/i18n/strings_uk_UA.i18n.json | 7 +------ assets/i18n/strings_vi_VN.i18n.json | 7 +------ assets/i18n/strings_zh_TW.i18n.json | 7 +------ lib/ui/views/contributors/contributors_view.dart | 10 +++++----- 26 files changed, 30 insertions(+), 155 deletions(-) diff --git a/assets/i18n/strings.i18n.json b/assets/i18n/strings.i18n.json index fa08eb02..3884b01e 100755 --- a/assets/i18n/strings.i18n.json +++ b/assets/i18n/strings.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "This feature has not been implemented yet" }, "contributorsView": { - "widgetTitle": "Contributors", - "patcherContributors": "ReVanced Patcher", - "patchesContributors": "ReVanced Patches", - "integrationsContributors": "ReVanced Integrations", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Contributors" }, "installErrorDialog": { "mount_version_mismatch": "Version mismatch", diff --git a/assets/i18n/strings_az_AZ.i18n.json b/assets/i18n/strings_az_AZ.i18n.json index 9e690b21..fc563d55 100755 --- a/assets/i18n/strings_az_AZ.i18n.json +++ b/assets/i18n/strings_az_AZ.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Bu özəllik hələ tətbiq olunmayıb" }, "contributorsView": { - "widgetTitle": "Töhfə verənlər", - "patcherContributors": "ReVanced Patcher", - "patchesContributors": "ReVanced Yamaqları", - "integrationsContributors": "ReVanced İnteqrasiyaları", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Töhfə verənlər" }, "installErrorDialog": { "mount_version_mismatch": "Versiya uyuşmur", diff --git a/assets/i18n/strings_be_BY.i18n.json b/assets/i18n/strings_be_BY.i18n.json index f7562fdc..b957fdd4 100755 --- a/assets/i18n/strings_be_BY.i18n.json +++ b/assets/i18n/strings_be_BY.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Пакуль яшчэ гэта функцыя не рэалізавана" }, "contributorsView": { - "widgetTitle": "Удзельнікі", - "patcherContributors": "ReVanced Patcher", - "patchesContributors": "Выпраўленні ReVanced", - "integrationsContributors": "Інтэграцыі ReVanced", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Удзельнікі" }, "installErrorDialog": { "mount_version_mismatch": "Неадпаведнасць версій", diff --git a/assets/i18n/strings_bn_BD.i18n.json b/assets/i18n/strings_bn_BD.i18n.json index ef965429..d3d681f6 100755 --- a/assets/i18n/strings_bn_BD.i18n.json +++ b/assets/i18n/strings_bn_BD.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "এই ফিচারটি এখনো কার্যকর করা হয়নি" }, "contributorsView": { - "widgetTitle": "অবদানকারীগণ", - "patcherContributors": "ReVanced প্যাচার", - "patchesContributors": "ReVanced প্যাচসমূহ", - "integrationsContributors": "ReVanced ইন্ট্রিগ্রেশন", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Manager" + "widgetTitle": "অবদানকারীগণ" }, "installErrorDialog": { "mount_version_mismatch": "সংস্করণ মেলেনি", diff --git a/assets/i18n/strings_de_DE.i18n.json b/assets/i18n/strings_de_DE.i18n.json index 6f60900d..0ce83e66 100755 --- a/assets/i18n/strings_de_DE.i18n.json +++ b/assets/i18n/strings_de_DE.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Diese Funktion ist noch nicht implementiert" }, "contributorsView": { - "widgetTitle": "Mitwirkende", - "patcherContributors": "ReVanced Patcher", - "patchesContributors": "ReVanced Patches", - "integrationsContributors": "ReVanced Integrations", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Mitwirkende" }, "installErrorDialog": { "mount_version_mismatch": "Versionskonflikt", diff --git a/assets/i18n/strings_el_GR.i18n.json b/assets/i18n/strings_el_GR.i18n.json index f9b57939..8a671c83 100755 --- a/assets/i18n/strings_el_GR.i18n.json +++ b/assets/i18n/strings_el_GR.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Αυτή η δυνατότητα δεν είναι ακόμα διαθέσιμη" }, "contributorsView": { - "widgetTitle": "Συνεισφέροντες", - "patcherContributors": "Τροποποιητής ReVanced", - "patchesContributors": "Τροποποιήσεις ReVanced", - "integrationsContributors": "Ενσωματώσεις ReVanced", - "cliContributors": "Τερματικό ReVanced", - "managerContributors": "Διαχειριστής ReVanced" + "widgetTitle": "Συνεισφέροντες" }, "installErrorDialog": { "mount_version_mismatch": "Ασυμφωνία έκδοσης", diff --git a/assets/i18n/strings_es_AR.i18n.json b/assets/i18n/strings_es_AR.i18n.json index da67d437..fe04d092 100755 --- a/assets/i18n/strings_es_AR.i18n.json +++ b/assets/i18n/strings_es_AR.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Esta función no se implementó aún" }, "contributorsView": { - "widgetTitle": "Contribuidores", - "patcherContributors": "ReVanced Patcher", - "patchesContributors": "ReVanced Patches", - "integrationsContributors": "ReVanced Integrations", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Contribuidores" }, "installErrorDialog": { "mount_version_mismatch": "La versión no coincide", diff --git a/assets/i18n/strings_es_ES.i18n.json b/assets/i18n/strings_es_ES.i18n.json index fedd2d08..de0cf328 100755 --- a/assets/i18n/strings_es_ES.i18n.json +++ b/assets/i18n/strings_es_ES.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Esta función no se ha implementado aún" }, "contributorsView": { - "widgetTitle": "Contribuidores", - "patcherContributors": "Parcheador de ReVanced", - "patchesContributors": "Parches de ReVanced", - "integrationsContributors": "Integraciones de ReVanced", - "cliContributors": "CLI de ReVanced", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Contribuidores" }, "installErrorDialog": { "mount_version_mismatch": "La versión no coincide", diff --git a/assets/i18n/strings_fr_FR.i18n.json b/assets/i18n/strings_fr_FR.i18n.json index 90ac327b..bde29ad6 100755 --- a/assets/i18n/strings_fr_FR.i18n.json +++ b/assets/i18n/strings_fr_FR.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Cette fonctionnalité n'est pas encore disponible" }, "contributorsView": { - "widgetTitle": "Contributeurs", - "patcherContributors": "ReVanced Patcher", - "patchesContributors": "ReVanced Patches", - "integrationsContributors": "ReVanced Integrations", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Contributeurs" }, "installErrorDialog": { "mount_version_mismatch": "Incompatibilité de version", diff --git a/assets/i18n/strings_hu_HU.i18n.json b/assets/i18n/strings_hu_HU.i18n.json index c9fffafe..ccc9e488 100755 --- a/assets/i18n/strings_hu_HU.i18n.json +++ b/assets/i18n/strings_hu_HU.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Ez a funkció még nem készült el" }, "contributorsView": { - "widgetTitle": "Közreműködők", - "patcherContributors": "ReVanced Patchelő", - "patchesContributors": "ReVanced Patchek", - "integrationsContributors": "ReVanced Integrációk", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Közreműködők" }, "installErrorDialog": { "mount_version_mismatch": "Verzió ütközés", diff --git a/assets/i18n/strings_id_ID.i18n.json b/assets/i18n/strings_id_ID.i18n.json index f33696f2..77f4c892 100755 --- a/assets/i18n/strings_id_ID.i18n.json +++ b/assets/i18n/strings_id_ID.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Fitur ini belum diimplementasikan" }, "contributorsView": { - "widgetTitle": "Kontributor", - "patcherContributors": "ReVanced Patcher", - "patchesContributors": "ReVanced Patches", - "integrationsContributors": "ReVanced Integrations", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Kontributor" }, "installErrorDialog": { "mount_version_mismatch": "Versi tidak cocok", diff --git a/assets/i18n/strings_it_IT.i18n.json b/assets/i18n/strings_it_IT.i18n.json index 3d17b45f..8807b576 100755 --- a/assets/i18n/strings_it_IT.i18n.json +++ b/assets/i18n/strings_it_IT.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Questa funzionalità non è stata ancora implementata" }, "contributorsView": { - "widgetTitle": "Contributori", - "patcherContributors": "ReVanced Patcher", - "patchesContributors": "Patches di ReVanced", - "integrationsContributors": "Integrazioni di ReVanced", - "cliContributors": "CLI di ReVanced", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Contributori" }, "installErrorDialog": { "mount_version_mismatch": "Versione non corrispondente", diff --git a/assets/i18n/strings_ko_KR.i18n.json b/assets/i18n/strings_ko_KR.i18n.json index ef72e15c..6acc6d7a 100755 --- a/assets/i18n/strings_ko_KR.i18n.json +++ b/assets/i18n/strings_ko_KR.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "이 기능은 아직 구현되지 않았습니다." }, "contributorsView": { - "widgetTitle": "도움을 주신 분들", - "patcherContributors": "ReVanced Patcher", - "patchesContributors": "ReVanced Patches", - "integrationsContributors": "ReVanced Integrations", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Manager" + "widgetTitle": "도움을 주신 분들" }, "installErrorDialog": { "mount_version_mismatch": "버전 불일치", diff --git a/assets/i18n/strings_nl_NL.i18n.json b/assets/i18n/strings_nl_NL.i18n.json index 7035a96d..3ce812be 100755 --- a/assets/i18n/strings_nl_NL.i18n.json +++ b/assets/i18n/strings_nl_NL.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Deze functie is nog niet geïmplementeerd" }, "contributorsView": { - "widgetTitle": "Bijdragers", - "patcherContributors": "ReVanced Patcher", - "patchesContributors": "ReVanced patches", - "integrationsContributors": "ReVanced integrations", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Bijdragers" }, "installErrorDialog": { "mount_version_mismatch": "Verkeerde versie", diff --git a/assets/i18n/strings_pl_PL.i18n.json b/assets/i18n/strings_pl_PL.i18n.json index 223e402b..1f11854d 100755 --- a/assets/i18n/strings_pl_PL.i18n.json +++ b/assets/i18n/strings_pl_PL.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Ta funkcja nie została jeszcze zaimplementowana" }, "contributorsView": { - "widgetTitle": "Współtwórcy", - "patcherContributors": "Program łatający ReVanced", - "patchesContributors": "Łatki ReVanced", - "integrationsContributors": "Integracje ReVanced", - "cliContributors": "CLI ReVanced", - "managerContributors": "Menedżer ReVanced" + "widgetTitle": "Współtwórcy" }, "installErrorDialog": { "mount_version_mismatch": "Niezgodność wersji", diff --git a/assets/i18n/strings_pt_PT.i18n.json b/assets/i18n/strings_pt_PT.i18n.json index 47e04d63..832983dc 100755 --- a/assets/i18n/strings_pt_PT.i18n.json +++ b/assets/i18n/strings_pt_PT.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Este recurso ainda não foi implementado" }, "contributorsView": { - "widgetTitle": "Contribuidores", - "patcherContributors": "Modificador ReVanced", - "patchesContributors": "Modificações ReVanced", - "integrationsContributors": "Integrações ReVanced", - "cliContributors": "Cliente ReVanced", - "managerContributors": "Gestor ReVanced" + "widgetTitle": "Contribuidores" }, "installErrorDialog": { "mount_version_mismatch": "Versão incompatível", diff --git a/assets/i18n/strings_ro_RO.i18n.json b/assets/i18n/strings_ro_RO.i18n.json index 3bf3cd79..d0c43b63 100755 --- a/assets/i18n/strings_ro_RO.i18n.json +++ b/assets/i18n/strings_ro_RO.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Această funcție nu a fost încă implementată" }, "contributorsView": { - "widgetTitle": "Contribuitori", - "patcherContributors": "Patcher ReVanced", - "patchesContributors": "Patch-uri ReVanced", - "integrationsContributors": "Integrări ReVanced", - "cliContributors": "CLI ReVanced", - "managerContributors": "Manager ReVanced" + "widgetTitle": "Contribuitori" }, "installErrorDialog": { "mount_version_mismatch": "Versiune nepotrivită", diff --git a/assets/i18n/strings_ru_RU.i18n.json b/assets/i18n/strings_ru_RU.i18n.json index 88512d94..04a7fe21 100755 --- a/assets/i18n/strings_ru_RU.i18n.json +++ b/assets/i18n/strings_ru_RU.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Эта возможность ещё не реализована" }, "contributorsView": { - "widgetTitle": "Соучастники проекта", - "patcherContributors": "ReVanced патчер", - "patchesContributors": "ReVanced патчи", - "integrationsContributors": "Интеграции ReVanced", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Менеджер" + "widgetTitle": "Соучастники проекта" }, "installErrorDialog": { "mount_version_mismatch": "Несовпадение версий", diff --git a/assets/i18n/strings_sr_CS.i18n.json b/assets/i18n/strings_sr_CS.i18n.json index f248a709..d0110352 100755 --- a/assets/i18n/strings_sr_CS.i18n.json +++ b/assets/i18n/strings_sr_CS.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Ova funkcija još uvek nije implementirana" }, "contributorsView": { - "widgetTitle": "Saradnici", - "patcherContributors": "ReVanced Patcher", - "patchesContributors": "ReVanced pečevi", - "integrationsContributors": "ReVanced integracije", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Saradnici" }, "installErrorDialog": { "mount_version_mismatch": "Verzija se ne poklapa", diff --git a/assets/i18n/strings_sr_SP.i18n.json b/assets/i18n/strings_sr_SP.i18n.json index 4683df42..0cac9603 100755 --- a/assets/i18n/strings_sr_SP.i18n.json +++ b/assets/i18n/strings_sr_SP.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Ова функција још увек није имплементирана" }, "contributorsView": { - "widgetTitle": "Сарадници", - "patcherContributors": "ReVanced Patcher", - "patchesContributors": "ReVanced печеви", - "integrationsContributors": "ReVanced интеграције", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Сарадници" }, "installErrorDialog": { "mount_version_mismatch": "Верзија се не поклапа", diff --git a/assets/i18n/strings_sv_SE.i18n.json b/assets/i18n/strings_sv_SE.i18n.json index 3f716ac4..6fd0da77 100755 --- a/assets/i18n/strings_sv_SE.i18n.json +++ b/assets/i18n/strings_sv_SE.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Denna funktionen har inte lagts till ännu" }, "contributorsView": { - "widgetTitle": "Bidragsgivare", - "patcherContributors": "Revanced-patcher", - "patchesContributors": "Revanced-patchar", - "integrationsContributors": "ReVanced-integrationer", - "cliContributors": "ReVanced-CLI", - "managerContributors": "ReVanced-hanterare" + "widgetTitle": "Bidragsgivare" }, "installErrorDialog": { "mount_version_mismatch": "Versionerna stämmer inte överens", diff --git a/assets/i18n/strings_tr_TR.i18n.json b/assets/i18n/strings_tr_TR.i18n.json index b25556b4..996823e9 100755 --- a/assets/i18n/strings_tr_TR.i18n.json +++ b/assets/i18n/strings_tr_TR.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Bu özellik henüz geliştirilmedi" }, "contributorsView": { - "widgetTitle": "Katkıda bulunanlar", - "patcherContributors": "ReVanced Patcher", - "patchesContributors": "ReVanced Patches", - "integrationsContributors": "ReVanced Integrations", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Katkıda bulunanlar" }, "installErrorDialog": { "mount_version_mismatch": "Sürüm uyuşmazlığı", diff --git a/assets/i18n/strings_uk_UA.i18n.json b/assets/i18n/strings_uk_UA.i18n.json index 7d064f07..e42f48c7 100755 --- a/assets/i18n/strings_uk_UA.i18n.json +++ b/assets/i18n/strings_uk_UA.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Ця можливість ще не реалізована" }, "contributorsView": { - "widgetTitle": "Розробники", - "patcherContributors": "ReVanced Patcher", - "patchesContributors": "ReVanced Patches", - "integrationsContributors": "ReVanced Integrations", - "cliContributors": "ReVanced CLI", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Розробники" }, "installErrorDialog": { "mount_version_mismatch": "Невідповідність версії", diff --git a/assets/i18n/strings_vi_VN.i18n.json b/assets/i18n/strings_vi_VN.i18n.json index 20898f2a..89166d23 100755 --- a/assets/i18n/strings_vi_VN.i18n.json +++ b/assets/i18n/strings_vi_VN.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "Tính năng này chưa được triển khai" }, "contributorsView": { - "widgetTitle": "Những người đóng góp", - "patcherContributors": "Trình vá ReVanced", - "patchesContributors": "Bản vá ReVanced", - "integrationsContributors": "Tích hợp ReVanced", - "cliContributors": "Giao tiếp dòng lệnh (CLI) ReVanced", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Những người đóng góp" }, "installErrorDialog": { "mount_version_mismatch": "Phiên bản không phù hợp", diff --git a/assets/i18n/strings_zh_TW.i18n.json b/assets/i18n/strings_zh_TW.i18n.json index 08867e32..6cd6d0bc 100755 --- a/assets/i18n/strings_zh_TW.i18n.json +++ b/assets/i18n/strings_zh_TW.i18n.json @@ -271,12 +271,7 @@ "updateNotImplemented": "這項功能尚未實作" }, "contributorsView": { - "widgetTitle": "貢獻者", - "patcherContributors": "ReVanced 修補程式", - "patchesContributors": "ReVanced 補丁", - "integrationsContributors": "ReVanced 整合", - "cliContributors": "ReVanced 命令行介面", - "managerContributors": "ReVanced 管理器" + "widgetTitle": "貢獻者" }, "installErrorDialog": { "mount_version_mismatch": "版本不相符", diff --git a/lib/ui/views/contributors/contributors_view.dart b/lib/ui/views/contributors/contributors_view.dart index 33740a7b..c2b91b3a 100644 --- a/lib/ui/views/contributors/contributors_view.dart +++ b/lib/ui/views/contributors/contributors_view.dart @@ -31,27 +31,27 @@ class ContributorsView extends StatelessWidget { delegate: SliverChildListDelegate.fixed( [ ContributorsCard( - title: t.contributorsView.patcherContributors, + title: 'ReVanced Patcher', contributors: model.patcherContributors, ), const SizedBox(height: 20), ContributorsCard( - title: t.contributorsView.patchesContributors, + title: 'ReVanced Patches', contributors: model.patchesContributors, ), const SizedBox(height: 20), ContributorsCard( - title: t.contributorsView.integrationsContributors, + title: 'ReVanced Integrations', contributors: model.integrationsContributors, ), const SizedBox(height: 20), ContributorsCard( - title: t.contributorsView.cliContributors, + title: 'ReVanced CLI', contributors: model.cliContributors, ), const SizedBox(height: 20), ContributorsCard( - title: t.contributorsView.managerContributors, + title: 'ReVanced Manager', contributors: model.managerContributors, ), SizedBox(height: MediaQuery.viewPaddingOf(context).bottom), From a971cbd5195b2ac7230b2de3c8c2c90a88272953 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 28 Mar 2024 06:23:34 +0000 Subject: [PATCH 25/40] chore(release): 1.19.4-dev.5 [skip ci] ## [1.19.4-dev.5](https://github.com/ReVanced/revanced-manager/compare/v1.19.4-dev.4...v1.19.4-dev.5) (2024-03-28) ### Bug Fixes * Don't translation ReVanced repository ([c265794](https://github.com/ReVanced/revanced-manager/commit/c265794d0efbc3ed2dea7a60c7ebd461f711799a)) --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 4e75f8f5..fee25dca 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ homepage: https://github.com/ReVanced/revanced-manager publish_to: 'none' -version: 1.19.4-dev.4+101800010 +version: 1.19.4-dev.5+101800011 environment: sdk: '>=3.0.0 <4.0.0' From 076e17d6700701e99835952ac80fa5654f06d137 Mon Sep 17 00:00:00 2001 From: Ushie Date: Sat, 30 Mar 2024 03:12:06 +0300 Subject: [PATCH 26/40] chore: Don't preserve hierachy in Crowdin --- crowdin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crowdin.yml b/crowdin.yml index 7dabb6a9..be872744 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,7 +1,7 @@ project_id_env: "CROWDIN_PROJECT_ID" api_token_env: "CROWDIN_PERSONAL_TOKEN" -preserve_hierarchy: true +preserve_hierarchy: false files: - source: /assets/i18n/strings.i18n.json translation: /assets/i18n/strings_%locale_with_underscore%.i18n.json From aba2ed4378a0dbe7445acbf86be83265f495a6cf Mon Sep 17 00:00:00 2001 From: Ushie Date: Sat, 30 Mar 2024 03:16:39 +0300 Subject: [PATCH 27/40] ci: Don't specify bundle --- .github/workflows/sync_crowdin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_crowdin.yml b/.github/workflows/sync_crowdin.yml index dbec480c..f750dd7e 100644 --- a/.github/workflows/sync_crowdin.yml +++ b/.github/workflows/sync_crowdin.yml @@ -29,7 +29,7 @@ jobs: config: crowdin.yml upload_sources: true upload_translations: false - download_bundle: 16 + download_translations: true localization_branch_name: feat/translations create_pull_request: true pull_request_title: "chore: Sync translations" From fb29036d0a5cfa87a94eeaf148adfb2d2c26d3de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 10:18:52 +0700 Subject: [PATCH 28/40] build(deps): bump flutter_lints from 3.0.1 to 3.0.2 (#1805) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pubspec.lock | 4 ++-- pubspec.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index cc786faf..e8dd2346 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -348,10 +348,10 @@ packages: dependency: "direct dev" description: name: flutter_lints - sha256: e2a421b7e59244faef694ba7b30562e489c2b489866e505074eb005cd7060db7 + sha256: "9e8c3858111da373efc5aa341de011d9bd23e2c5c5e0c62bccf32438e192d7b1" url: "https://pub.dev" source: hosted - version: "3.0.1" + version: "3.0.2" flutter_local_notifications: dependency: "direct main" description: diff --git a/pubspec.yaml b/pubspec.yaml index fee25dca..f51c09dd 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -74,7 +74,7 @@ dependencies: dev_dependencies: analyzer: ^6.4.1 build_runner: any - flutter_lints: ^3.0.1 + flutter_lints: ^3.0.2 injectable_generator: ^2.1.5 json_serializable: ^6.7.1 From 1fd44e1cfccbb07d7889086a92c238d7b5307f10 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 11:43:29 +0700 Subject: [PATCH 29/40] build(deps-dev): bump @droidsolutions-oss/semantic-release-update-file from 1.4.0-beta.1 to 1.4.0 (#1815) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index bf706cdf..274c9ea3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5,7 +5,7 @@ "packages": { "": { "devDependencies": { - "@droidsolutions-oss/semantic-release-update-file": "^1.4.0-beta.1", + "@droidsolutions-oss/semantic-release-update-file": "^1.4.0", "@saithodev/semantic-release-backmerge": "^4.0.1", "@semantic-release/changelog": "^6.0.3", "@semantic-release/exec": "^6.0.3", @@ -60,9 +60,9 @@ } }, "node_modules/@droidsolutions-oss/semantic-release-update-file": { - "version": "1.4.0-beta.1", - "resolved": "https://registry.npmjs.org/@droidsolutions-oss/semantic-release-update-file/-/semantic-release-update-file-1.4.0-beta.1.tgz", - "integrity": "sha512-CdqG3vIceWFBmwz0qcY0NdqaE+TGNuhhbgFXHIj/M1fYAD1lQ4QyGEaoD3d4F4ZHYsBqR0HrHNMTG4bycBRKNw==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@droidsolutions-oss/semantic-release-update-file/-/semantic-release-update-file-1.4.0.tgz", + "integrity": "sha512-kl9krFVGLOklI7YswoghWkI4muQ8iV6mDg/3lAed0dlZGsoRvdH5IMLxQ2FeJzvcgh7QjuZN1SggzsOo9AV+9w==", "dev": true, "dependencies": { "aggregate-error": "^3.1.0", diff --git a/package.json b/package.json index 3e5d19e3..71158f38 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "devDependencies": { - "@droidsolutions-oss/semantic-release-update-file": "^1.4.0-beta.1", + "@droidsolutions-oss/semantic-release-update-file": "^1.4.0", "@saithodev/semantic-release-backmerge": "^4.0.1", "@semantic-release/changelog": "^6.0.3", "@semantic-release/exec": "^6.0.3", From ecb041187ba3b8ff8c92a46671ff550093c6ae76 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 11:43:57 +0700 Subject: [PATCH 30/40] build(deps-dev): bump semantic-release from 23.0.2 to 23.0.6 (#1816) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 287 ++++++++++++++++++++++++++++++++++++++++++++-- package.json | 2 +- 2 files changed, 280 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 274c9ea3..84eb9bc3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,7 @@ "@semantic-release/changelog": "^6.0.3", "@semantic-release/exec": "^6.0.3", "@semantic-release/git": "^10.0.1", - "semantic-release": "^23.0.2" + "semantic-release": "^23.0.6" } }, "node_modules/@babel/code-frame": { @@ -6132,16 +6132,16 @@ "dev": true }, "node_modules/semantic-release": { - "version": "23.0.2", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-23.0.2.tgz", - "integrity": "sha512-OnVYJ6Xgzwe1x8MKswba7RU9+5djS1MWRTrTn5qsq3xZYpslroZkV9Pt0dA2YcIuieeuSZWJhn+yUWoBUHO5Fw==", + "version": "23.0.6", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-23.0.6.tgz", + "integrity": "sha512-/r62F4PNhJZhyZYMobcpcACGwpFNQyaVcSmqZQXG50GMbHSBVZQLCvwafqxO1lDQKVgmGmyCEtOVYzwvzvyhVw==", "dev": true, "dependencies": { - "@semantic-release/commit-analyzer": "^11.0.0", + "@semantic-release/commit-analyzer": "^12.0.0", "@semantic-release/error": "^4.0.0", - "@semantic-release/github": "^9.0.0", - "@semantic-release/npm": "^11.0.0", - "@semantic-release/release-notes-generator": "^12.0.0", + "@semantic-release/github": "^10.0.0", + "@semantic-release/npm": "^12.0.0", + "@semantic-release/release-notes-generator": "^13.0.0", "aggregate-error": "^5.0.0", "cosmiconfig": "^9.0.0", "debug": "^4.0.0", @@ -6174,6 +6174,156 @@ "node": ">=20.8.1" } }, + "node_modules/semantic-release/node_modules/@octokit/auth-token": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-5.0.1.tgz", + "integrity": "sha512-RTmWsLfig8SBoiSdgvCht4BXl1CHU89Co5xiQ5JF19my/sIRDFCQ1RPrmK0exgqUZuNm39C/bV8+/83+MJEjGg==", + "dev": true, + "engines": { + "node": ">= 18" + } + }, + "node_modules/semantic-release/node_modules/@octokit/core": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.0.1.tgz", + "integrity": "sha512-MIpPQXu8Y8GjHwXM81JLveiV+DHJZtLMcB5nKekBGOl3iAtk0HT3i12Xl8Biybu+bCS1+k4qbuKEq5d0RxNRnQ==", + "dev": true, + "dependencies": { + "@octokit/auth-token": "^5.0.0", + "@octokit/graphql": "^8.0.0", + "@octokit/request": "^9.0.0", + "@octokit/request-error": "^6.0.1", + "@octokit/types": "^12.0.0", + "before-after-hook": "^3.0.2", + "universal-user-agent": "^7.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/semantic-release/node_modules/@octokit/endpoint": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-10.0.0.tgz", + "integrity": "sha512-emBcNDxBdC1y3+knJonS5zhUB/CG6TihubxM2U1/pG/Z1y3a4oV0Gzz3lmkCvWWQI6h3tqBAX9MgCBFp+M68Jw==", + "dev": true, + "dependencies": { + "@octokit/types": "^12.0.0", + "universal-user-agent": "^7.0.2" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/semantic-release/node_modules/@octokit/graphql": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-8.0.1.tgz", + "integrity": "sha512-lLDb6LhC1gBj2CxEDa5Xk10+H/boonhs+3Mi6jpRyetskDKNHe6crMeKmUE2efoLofMP8ruannLlCUgpTFmVzQ==", + "dev": true, + "dependencies": { + "@octokit/request": "^9.0.0", + "@octokit/types": "^12.0.0", + "universal-user-agent": "^7.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/semantic-release/node_modules/@octokit/plugin-paginate-rest": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-10.0.0.tgz", + "integrity": "sha512-G1Z67qOiFneKDJyMafHQkWnKm1kU3FfbRZLzxgsFg4dOa3pRNdABbdk+xo/oev6P88lnbt7GKdBNB6dJZuPphA==", + "dev": true, + "dependencies": { + "@octokit/types": "^12.6.0" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": ">=6" + } + }, + "node_modules/semantic-release/node_modules/@octokit/plugin-retry": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-7.0.3.tgz", + "integrity": "sha512-T9l5Z7XnDZ7dkyNmhJPSUq0YjbqUT/xn4yQbhcSuv4WGC/LqM73/mKwkl68VDPoLw20e8oz4L7qQopWt9v6sow==", + "dev": true, + "dependencies": { + "@octokit/request-error": "^6.0.0", + "@octokit/types": "^12.0.0", + "bottleneck": "^2.15.3" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": ">=6" + } + }, + "node_modules/semantic-release/node_modules/@octokit/plugin-throttling": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-9.0.3.tgz", + "integrity": "sha512-DReKamrLBJOzld73dmmxV2H137QKJfsxszAczEZXeAJQ/Po6bzQacKajPdodA6T1jfmP9+waImus+d/R2j+R7Q==", + "dev": true, + "dependencies": { + "@octokit/types": "^12.6.0", + "bottleneck": "^2.15.3" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": "^6.0.0" + } + }, + "node_modules/semantic-release/node_modules/@octokit/request": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-9.0.1.tgz", + "integrity": "sha512-kL+cAcbSl3dctYLuJmLfx6Iku2MXXy0jszhaEIjQNaCp4zjHXrhVAHeuaRdNvJjW9qjl3u1MJ72+OuBP0YW/pg==", + "dev": true, + "dependencies": { + "@octokit/endpoint": "^10.0.0", + "@octokit/request-error": "^6.0.1", + "@octokit/types": "^12.0.0", + "universal-user-agent": "^7.0.2" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/semantic-release/node_modules/@octokit/request-error": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-6.0.2.tgz", + "integrity": "sha512-WtRVpoHcNXs84+s9s/wqfHaxM68NGMg8Av7h59B50OVO0PwwMx+2GgQ/OliUd0iQBSNWgR6N8afi/KjSHbXHWw==", + "dev": true, + "dependencies": { + "@octokit/types": "^12.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/semantic-release/node_modules/@semantic-release/commit-analyzer": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-12.0.0.tgz", + "integrity": "sha512-qG+md5gdes+xa8zP7lIo1fWE17zRdO8yMCaxh9lyL65TQleoSv8WHHOqRURfghTytUh+NpkSyBprQ5hrkxOKVQ==", + "dev": true, + "dependencies": { + "conventional-changelog-angular": "^7.0.0", + "conventional-commits-filter": "^4.0.0", + "conventional-commits-parser": "^5.0.0", + "debug": "^4.0.0", + "import-from-esm": "^1.0.3", + "lodash-es": "^4.17.21", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=20.8.1" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, "node_modules/semantic-release/node_modules/@semantic-release/error": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", @@ -6183,6 +6333,99 @@ "node": ">=18" } }, + "node_modules/semantic-release/node_modules/@semantic-release/github": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-10.0.2.tgz", + "integrity": "sha512-SP5ihhv/uQa8vPuWKmbJrrzfv8lRUkDFC6qwgaWoorrflN1DEW0IGCa9w/PxUp8Ad3dbvXZPmpXdGiP3eyTzhg==", + "dev": true, + "dependencies": { + "@octokit/core": "^6.0.0", + "@octokit/plugin-paginate-rest": "^10.0.0", + "@octokit/plugin-retry": "^7.0.0", + "@octokit/plugin-throttling": "^9.0.0", + "@semantic-release/error": "^4.0.0", + "aggregate-error": "^5.0.0", + "debug": "^4.3.4", + "dir-glob": "^3.0.1", + "globby": "^14.0.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "issue-parser": "^7.0.0", + "lodash-es": "^4.17.21", + "mime": "^4.0.0", + "p-filter": "^4.0.0", + "url-join": "^5.0.0" + }, + "engines": { + "node": ">=20.8.1" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, + "node_modules/semantic-release/node_modules/@semantic-release/npm": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-12.0.0.tgz", + "integrity": "sha512-72TVYQCH9NvVsO/y13eF8vE4bNnfls518+4KcFwJUKi7AtA/ZXoNgSg9gTTfw5eMZMkiH0izUrpGXgZE/cSQhA==", + "dev": true, + "dependencies": { + "@semantic-release/error": "^4.0.0", + "aggregate-error": "^5.0.0", + "execa": "^8.0.0", + "fs-extra": "^11.0.0", + "lodash-es": "^4.17.21", + "nerf-dart": "^1.0.0", + "normalize-url": "^8.0.0", + "npm": "^10.5.0", + "rc": "^1.2.8", + "read-pkg": "^9.0.0", + "registry-auth-token": "^5.0.0", + "semver": "^7.1.2", + "tempy": "^3.0.0" + }, + "engines": { + "node": ">=20.8.1" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, + "node_modules/semantic-release/node_modules/@semantic-release/release-notes-generator": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-13.0.0.tgz", + "integrity": "sha512-LEeZWb340keMYuREMyxrODPXJJ0JOL8D/mCl74B4LdzbxhtXV2LrPN2QBEcGJrlQhoqLO0RhxQb6masHytKw+A==", + "dev": true, + "dependencies": { + "conventional-changelog-angular": "^7.0.0", + "conventional-changelog-writer": "^7.0.0", + "conventional-commits-filter": "^4.0.0", + "conventional-commits-parser": "^5.0.0", + "debug": "^4.0.0", + "get-stream": "^7.0.0", + "import-from-esm": "^1.0.3", + "into-stream": "^7.0.0", + "lodash-es": "^4.17.21", + "read-pkg-up": "^11.0.0" + }, + "engines": { + "node": ">=20.8.1" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, + "node_modules/semantic-release/node_modules/@semantic-release/release-notes-generator/node_modules/get-stream": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-7.0.1.tgz", + "integrity": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==", + "dev": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/semantic-release/node_modules/aggregate-error": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", @@ -6199,6 +6442,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/semantic-release/node_modules/before-after-hook": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-3.0.2.tgz", + "integrity": "sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==", + "dev": true + }, "node_modules/semantic-release/node_modules/clean-stack": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", @@ -6294,6 +6543,22 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/semantic-release/node_modules/issue-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-7.0.0.tgz", + "integrity": "sha512-jgAw78HO3gs9UrKqJNQvfDj9Ouy8Mhu40fbEJ8yXff4MW8+/Fcn9iFjyWUQ6SKbX8ipPk3X5A3AyfYHRu6uVLw==", + "dev": true, + "dependencies": { + "lodash.capitalize": "^4.2.1", + "lodash.escaperegexp": "^4.1.2", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.uniqby": "^4.7.0" + }, + "engines": { + "node": "^18.17 || >=20.6.1" + } + }, "node_modules/semantic-release/node_modules/mimic-fn": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", @@ -6384,6 +6649,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/semantic-release/node_modules/universal-user-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz", + "integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==", + "dev": true + }, "node_modules/semver": { "version": "7.6.0", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", diff --git a/package.json b/package.json index 71158f38..15c60042 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,6 @@ "@semantic-release/changelog": "^6.0.3", "@semantic-release/exec": "^6.0.3", "@semantic-release/git": "^10.0.1", - "semantic-release": "^23.0.2" + "semantic-release": "^23.0.6" } } From 04a3df3642d86f329c21860800c573109c803c92 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 11:48:46 +0700 Subject: [PATCH 31/40] build(deps): bump package_info_plus from 5.0.1 to 6.0.0 (#1806) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pubspec.lock | 36 ++++++++++++++++++------------------ pubspec.yaml | 2 +- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index e8dd2346..473fba63 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -181,10 +181,10 @@ packages: dependency: transitive description: name: cross_file - sha256: fedaadfa3a6996f75211d835aaeb8fede285dae94262485698afd832371b9a5e + sha256: "55d7b444feb71301ef6b8838dbc1ae02e63dd48c8773f3810ff53bb1e2945b32" url: "https://pub.dev" source: hosted - version: "0.3.3+8" + version: "0.3.4+1" crypto: dependency: transitive description: @@ -475,10 +475,10 @@ packages: dependency: transitive description: name: http - sha256: a2bbf9d017fcced29139daa8ed2bba4ece450ab222871df93ca9eec6f80c34ba + sha256: "761a297c042deedc1ffbb156d6e2af13886bb305c2a343a4d972504cd67dd938" url: "https://pub.dev" source: hosted - version: "1.2.0" + version: "1.2.1" http_multi_server: dependency: transitive description: @@ -692,10 +692,10 @@ packages: dependency: "direct main" description: name: package_info_plus - sha256: "88bc797f44a94814f2213db1c9bd5badebafdfb8290ca9f78d4b9ee2a3db4d79" + sha256: cb44f49b6e690fa766f023d5b22cac6b9affe741dd792b6ac7ad4fabe0d7b097 url: "https://pub.dev" source: hosted - version: "5.0.1" + version: "6.0.0" package_info_plus_platform_interface: dependency: transitive description: @@ -958,10 +958,10 @@ packages: dependency: transitive description: name: shared_preferences_web - sha256: "7b15ffb9387ea3e237bb7a66b8a23d2147663d391cafc5c8f37b2e7b4bde5d21" + sha256: "9aee1089b36bd2aafe06582b7d7817fd317ef05fc30e6ba14bff247d0933042a" url: "https://pub.dev" source: hosted - version: "2.2.2" + version: "2.3.0" shared_preferences_windows: dependency: transitive description: @@ -1243,10 +1243,10 @@ packages: dependency: transitive description: name: url_launcher_web - sha256: fff0932192afeedf63cdd50ecbb1bc825d31aed259f02bb8dba0f3b729a5e88b + sha256: "3692a459204a33e04bc94f5fb91158faf4f2c8903281ddd82915adecdb1a901d" url: "https://pub.dev" source: hosted - version: "2.2.3" + version: "2.3.0" url_launcher_windows: dependency: transitive description: @@ -1283,18 +1283,18 @@ packages: dependency: "direct main" description: name: wakelock_plus - sha256: f268ca2116db22e57577fb99d52515a24bdc1d570f12ac18bb762361d43b043d + sha256: "104d94837bb28c735894dcd592877e990149c380e6358b00c04398ca1426eed4" url: "https://pub.dev" source: hosted - version: "1.1.4" + version: "1.2.1" wakelock_plus_platform_interface: dependency: transitive description: name: wakelock_plus_platform_interface - sha256: "40fabed5da06caff0796dc638e1f07ee395fb18801fbff3255a2372db2d80385" + sha256: "582f2f7aecc7376332d961a0dd1efa9378ce117657e0ade55d9ff72699a55e82" url: "https://pub.dev" source: hosted - version: "1.1.0" + version: "1.2.0" watcher: dependency: transitive description: @@ -1307,18 +1307,18 @@ packages: dependency: transitive description: name: web - sha256: "4188706108906f002b3a293509234588823c8c979dc83304e229ff400c996b05" + sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27" url: "https://pub.dev" source: hosted - version: "0.4.2" + version: "0.5.1" web_socket_channel: dependency: transitive description: name: web_socket_channel - sha256: "939ab60734a4f8fa95feacb55804fa278de28bdeef38e616dc08e44a84adea23" + sha256: "1d8e795e2a8b3730c41b8a98a2dff2e0fb57ae6f0764a1c46ec5915387d257b2" url: "https://pub.dev" source: hosted - version: "2.4.3" + version: "2.4.4" win32: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index f51c09dd..d63db242 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -46,7 +46,7 @@ dependencies: git: url: https://github.com/BenjaminHalko/logcat ref: 4a6d5e0e22292c8eb160cfb9365b9ea29735fd43 # Branch: master - package_info_plus: ^5.0.1 + package_info_plus: ^6.0.0 path_provider: ^2.0.14 permission_handler: ^11.0.1 root: From a62a8852e7eda1a648584501530726522cdae4cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 11:49:03 +0700 Subject: [PATCH 32/40] build(deps): bump connectivity_plus from 5.0.2 to 6.0.1 (#1808) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pubspec.lock | 8 ++++---- pubspec.yaml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index 473fba63..6377e6f0 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -157,18 +157,18 @@ packages: dependency: "direct main" description: name: connectivity_plus - sha256: "224a77051d52a11fbad53dd57827594d3bd24f945af28bd70bab376d68d437f0" + sha256: e9feae83b1849f61bad9f6f33ee00646e3410d54ce0821e02f262f9901dad3c9 url: "https://pub.dev" source: hosted - version: "5.0.2" + version: "6.0.1" connectivity_plus_platform_interface: dependency: transitive description: name: connectivity_plus_platform_interface - sha256: cf1d1c28f4416f8c654d7dc3cd638ec586076255d407cef3ddbdaf178272a71a + sha256: b6a56efe1e6675be240de39107281d4034b64ac23438026355b4234042a35adb url: "https://pub.dev" source: hosted - version: "1.2.4" + version: "2.0.0" convert: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index d63db242..bf058189 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -12,7 +12,7 @@ environment: dependencies: animations: ^2.0.7 collection: ^1.17.0 - connectivity_plus: ^5.0.1 + connectivity_plus: ^6.0.1 device_apps: git: url: https://github.com/ponces/flutter_plugin_device_apps From 401646ace4e2dc2ec12c403dc6011aaed878dcda Mon Sep 17 00:00:00 2001 From: Ax333l Date: Tue, 2 Apr 2024 18:09:38 +0200 Subject: [PATCH 33/40] fix: disable proguard obfuscation --- android/app/proguard-rules.pro | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/app/proguard-rules.pro b/android/app/proguard-rules.pro index 56ae0a50..ce5df91f 100644 --- a/android/app/proguard-rules.pro +++ b/android/app/proguard-rules.pro @@ -5,6 +5,8 @@ # For more details, see # http://developer.android.com/guide/developing/tools/proguard.html +-dontobfuscate + -keep class app.revanced.** { *; } -keep class com.android.tools.smali.** { *; } -keep class kotlin.** { *; } From 35fdbb59885b438be8548147b8f90541b901493c Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 2 Apr 2024 16:19:30 +0000 Subject: [PATCH 34/40] chore(release): 1.19.4-dev.6 [skip ci] ## [1.19.4-dev.6](https://github.com/ReVanced/revanced-manager/compare/v1.19.4-dev.5...v1.19.4-dev.6) (2024-04-02) ### Bug Fixes * disable proguard obfuscation ([401646a](https://github.com/ReVanced/revanced-manager/commit/401646ace4e2dc2ec12c403dc6011aaed878dcda)) --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index bf058189..7b5332b7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ homepage: https://github.com/ReVanced/revanced-manager publish_to: 'none' -version: 1.19.4-dev.5+101800011 +version: 1.19.4-dev.6+101800012 environment: sdk: '>=3.0.0 <4.0.0' From 025ff527ee8bfc01767c5df94cb399ca3b98cf27 Mon Sep 17 00:00:00 2001 From: DMzS <75044136+Domenic-MZS@users.noreply.github.com> Date: Wed, 3 Apr 2024 22:27:47 -0400 Subject: [PATCH 35/40] fix(ui): Support free-scroll and auto-scroll for the installer logs (#1736) (#1836) --- lib/ui/views/installer/installer_view.dart | 87 ++++++++++++------- .../views/installer/installer_viewmodel.dart | 62 +++++++++++-- 2 files changed, 109 insertions(+), 40 deletions(-) diff --git a/lib/ui/views/installer/installer_view.dart b/lib/ui/views/installer/installer_view.dart index c3175b7f..4d16b750 100644 --- a/lib/ui/views/installer/installer_view.dart +++ b/lib/ui/views/installer/installer_view.dart @@ -75,43 +75,64 @@ class InstallerView extends StatelessWidget { ), ), ), - body: CustomScrollView( - controller: model.scrollController, - slivers: [ - CustomSliverAppBar( - title: Text( - model.headerLogs, - style: GoogleFonts.inter( - color: Theme.of(context).textTheme.titleLarge!.color, - ), - maxLines: 1, - overflow: TextOverflow.ellipsis, - ), - onBackButtonPressed: () => Navigator.maybePop(context), - bottom: PreferredSize( - preferredSize: const Size(double.infinity, 1.0), - child: GradientProgressIndicator(progress: model.progress), - ), - ), - SliverPadding( - padding: const EdgeInsets.all(20.0), - sliver: SliverList( - delegate: SliverChildListDelegate.fixed( - [ - CustomCard( - child: Text( - model.logs, - style: GoogleFonts.jetBrainsMono( - fontSize: 13, - height: 1.5, - ), + body: NotificationListener( + onNotification: model.handleAutoScrollNotification, + child: Stack( + children: [ + CustomScrollView( + key: model.logCustomScrollKey, + controller: model.scrollController, + slivers: [ + CustomSliverAppBar( + title: Text( + model.headerLogs, + style: GoogleFonts.inter( + color: + Theme.of(context).textTheme.titleLarge!.color, + ), + maxLines: 1, + overflow: TextOverflow.ellipsis, + ), + onBackButtonPressed: () => Navigator.maybePop(context), + bottom: PreferredSize( + preferredSize: const Size(double.infinity, 1.0), + child: GradientProgressIndicator( + progress: model.progress, ), ), - ], + ), + SliverPadding( + padding: const EdgeInsets.all(20.0), + sliver: SliverList( + delegate: SliverChildListDelegate.fixed( + [ + CustomCard( + child: Text( + model.logs, + style: GoogleFonts.jetBrainsMono( + fontSize: 13, + height: 1.5, + ), + ), + ), + ], + ), + ), + ), + ], + ), + Visibility( + visible: model.showAutoScrollButton, + child: Align( + alignment: const Alignment(0.9, 0.97), + child: FloatingActionButton( + onPressed: model.scrollToBottom, + child: const Icon(Icons.arrow_downward_rounded), + ), ), ), - ), - ], + ], + ), ), ), ), diff --git a/lib/ui/views/installer/installer_viewmodel.dart b/lib/ui/views/installer/installer_viewmodel.dart index 0602eec7..c806a839 100644 --- a/lib/ui/views/installer/installer_viewmodel.dart +++ b/lib/ui/views/installer/installer_viewmodel.dart @@ -30,6 +30,7 @@ class InstallerViewModel extends BaseViewModel { static const _installerChannel = MethodChannel( 'app.revanced.manager.flutter/installer', ); + final Key logCustomScrollKey = UniqueKey(); final ScrollController scrollController = ScrollController(); final ScreenshotCallback screenshotCallback = ScreenshotCallback(); double? progress = 0.0; @@ -44,6 +45,57 @@ class InstallerViewModel extends BaseViewModel { bool cancel = false; bool showPopupScreenshotWarning = true; + bool showAutoScrollButton = false; + bool _isAutoScrollEnabled = true; + bool _isAutoScrolling = false; + + double get getCurrentScrollPercentage { + final maxScrollExtent = scrollController.position.maxScrollExtent; + final currentPosition = scrollController.position.pixels; + + return currentPosition / maxScrollExtent; + } + + bool handleAutoScrollNotification(ScrollNotification event) { + if (_isAutoScrollEnabled && event is ScrollStartNotification) { + _isAutoScrollEnabled = _isAutoScrolling; + showAutoScrollButton = false; + notifyListeners(); + + return true; + } + + if (event is ScrollEndNotification) { + const anchorThreshold = 0.987; + + _isAutoScrollEnabled = + _isAutoScrolling || getCurrentScrollPercentage >= anchorThreshold; + + showAutoScrollButton = !_isAutoScrollEnabled && !_isAutoScrolling; + notifyListeners(); + + return true; + } + + return false; + } + + void scrollToBottom() { + _isAutoScrolling = true; + + WidgetsBinding.instance.addPostFrameCallback((_) async { + final maxScrollExtent = scrollController.position.maxScrollExtent; + + await scrollController.animateTo( + maxScrollExtent, + duration: const Duration(milliseconds: 100), + curve: Curves.fastOutSlowIn, + ); + + _isAutoScrolling = false; + }); + } + Future initialize(BuildContext context) async { isRooted = await _rootAPI.isRooted(); if (await Permission.ignoreBatteryOptimizations.isGranted) { @@ -123,13 +175,9 @@ class InstallerViewModel extends BaseViewModel { if (logs[logs.length - 1] == '\n') { logs = logs.substring(0, logs.length - 1); } - Future.delayed(const Duration(milliseconds: 100)).then((value) { - scrollController.animateTo( - scrollController.position.maxScrollExtent, - duration: const Duration(milliseconds: 100), - curve: Curves.fastOutSlowIn, - ); - }); + if (_isAutoScrollEnabled) { + scrollToBottom(); + } } notifyListeners(); } From e80ee098930a70bb3ddd6d8cf293adf917eb95f1 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 4 Apr 2024 02:35:20 +0000 Subject: [PATCH 36/40] chore(release): 1.19.4-dev.7 [skip ci] ## [1.19.4-dev.7](https://github.com/ReVanced/revanced-manager/compare/v1.19.4-dev.6...v1.19.4-dev.7) (2024-04-04) ### Bug Fixes * **ui:** Support free-scroll and auto-scroll for the installer logs ([#1736](https://github.com/ReVanced/revanced-manager/issues/1736)) ([#1836](https://github.com/ReVanced/revanced-manager/issues/1836)) ([025ff52](https://github.com/ReVanced/revanced-manager/commit/025ff527ee8bfc01767c5df94cb399ca3b98cf27)) --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 7b5332b7..3c8f0eb3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ homepage: https://github.com/ReVanced/revanced-manager publish_to: 'none' -version: 1.19.4-dev.6+101800012 +version: 1.19.4-dev.7+101800013 environment: sdk: '>=3.0.0 <4.0.0' From f9e6ef3fd3612e72de358beb9f5d33b827dd2441 Mon Sep 17 00:00:00 2001 From: Lam Thanh Nhan Date: Fri, 5 Apr 2024 07:55:16 +0700 Subject: [PATCH 37/40] feat: Improve language update settings (#1838) --- .../settings_update_language.dart | 43 +++++++++---------- pubspec.yaml | 2 +- 2 files changed, 21 insertions(+), 24 deletions(-) diff --git a/lib/ui/views/settings/settingsFragment/settings_update_language.dart b/lib/ui/views/settings/settingsFragment/settings_update_language.dart index f7b4a2f2..2494a6f4 100644 --- a/lib/ui/views/settings/settingsFragment/settings_update_language.dart +++ b/lib/ui/views/settings/settingsFragment/settings_update_language.dart @@ -34,17 +34,18 @@ class SUpdateLanguage extends BaseViewModel { } Future showLanguagesDialog(BuildContext parentContext) { - final ValueNotifier selectedLanguageCode = ValueNotifier( - '${LocaleSettings.currentLocale.languageCode}-${LocaleSettings.currentLocale.countryCode}', + final ValueNotifier selectedLanguageCode = ValueNotifier( + LocaleSettings.currentLocale, ); - LanguageCodes getLanguageCode(locale) { - return LanguageCodes.fromCode( - '${locale.languageCode}_${locale.countryCode}', + LanguageCodes getLanguageCode(Locale locale) { + return LanguageCodes.fromLocale( + locale, orElse: () => LanguageCodes.fromCode(locale.languageCode), ); } - final currentlyUsedLanguage = getLanguageCode(LocaleSettings.currentLocale); + final currentlyUsedLanguage = + getLanguageCode(LocaleSettings.currentLocale.flutterLocale); // initLang(); // Return a dialog with list for each language supported by the application. @@ -63,38 +64,34 @@ class SUpdateLanguage extends BaseViewModel { child: ListBody( children: [ RadioListTile( - // TODO(Someone): There must've been a better way to do this. title: Text(currentlyUsedLanguage.englishName), subtitle: Text( - '${currentlyUsedLanguage.nativeName} (${LocaleSettings.currentLocale.languageCode}${LocaleSettings.currentLocale.countryCode != null ? '-${LocaleSettings.currentLocale.countryCode}' : ''})', + '${currentlyUsedLanguage.nativeName}\n' + '(${LocaleSettings.currentLocale.languageTag})', ), - value: - '${LocaleSettings.currentLocale.languageCode}-${LocaleSettings.currentLocale.countryCode}' == - selectedLanguageCode.value, + value: LocaleSettings.currentLocale == + selectedLanguageCode.value, groupValue: true, onChanged: (value) { - selectedLanguageCode.value = - '${LocaleSettings.currentLocale.languageCode}-${LocaleSettings.currentLocale.countryCode}'; + selectedLanguageCode.value = LocaleSettings.currentLocale; }, ), ...AppLocale.values .where( - (locale) => - locale.languageCode != currentlyUsedLanguage.code, + (locale) => locale != LocaleSettings.currentLocale, ) .map((locale) { - final languageCode = getLanguageCode(locale); + final languageCode = getLanguageCode(locale.flutterLocale); return RadioListTile( title: Text(languageCode.englishName), subtitle: Text( - '${languageCode.nativeName} (${locale.languageCode}${locale.countryCode != null ? '-${locale.countryCode}' : ''})', + '${languageCode.nativeName}\n' + '(${locale.languageTag})', ), - value: '${locale.languageCode}-${locale.countryCode}' == - selectedLanguageCode.value, + value: locale == selectedLanguageCode.value, groupValue: true, onChanged: (value) { - selectedLanguageCode.value = - '${locale.languageCode}-${locale.countryCode}'; + selectedLanguageCode.value = locale; }, ); }), @@ -113,7 +110,7 @@ class SUpdateLanguage extends BaseViewModel { TextButton( onPressed: () { // TODO(nullcube): Translation will not update until we refresh the page. - updateLocale(selectedLanguageCode.value); + updateLocale(selectedLanguageCode.value.languageTag); Navigator.of(context).pop(); }, child: Text(t.okButton), @@ -133,7 +130,7 @@ class SUpdateLanguageUI extends StatelessWidget { padding: const EdgeInsets.symmetric(horizontal: 20.0), title: t.settingsView.languageLabel, subtitle: - LanguageCodes.fromCode(LocaleSettings.currentLocale.languageCode) + LanguageCodes.fromLocale(LocaleSettings.currentLocale.flutterLocale) .nativeName, onTap: () => _settingViewModel.sUpdateLanguage.showLanguagesDialog(context), diff --git a/pubspec.yaml b/pubspec.yaml index 3c8f0eb3..4ec89a46 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -41,7 +41,7 @@ dependencies: injectable: ^2.1.1 intl: ^0.18.0 json_annotation: ^4.8.1 - language_code: ^0.4.2 + language_code: ^0.5.1 logcat: git: url: https://github.com/BenjaminHalko/logcat From 8564c1a72e7f9d2c546fa0025b0626cfba26959e Mon Sep 17 00:00:00 2001 From: aAbed <39409020+TheAabedKhan@users.noreply.github.com> Date: Fri, 5 Apr 2024 06:43:59 +0545 Subject: [PATCH 38/40] fix: Do not crash when selecting an APK from storage (#1768) --- lib/ui/views/app_selector/app_selector_viewmodel.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/views/app_selector/app_selector_viewmodel.dart b/lib/ui/views/app_selector/app_selector_viewmodel.dart index bb6ad937..bc8d9c28 100644 --- a/lib/ui/views/app_selector/app_selector_viewmodel.dart +++ b/lib/ui/views/app_selector/app_selector_viewmodel.dart @@ -258,7 +258,7 @@ class AppSelectorViewModel extends BaseViewModel { try { final String? result = await FlutterFileDialog.pickFile( params: const OpenFileDialogParams( - fileExtensionsFilter: ['apk'], + mimeTypesFilter: ['application/vnd.android.package-archive'], ), ); if (result != null) { From 4293e276810c2881cfde10c994381af707e7d0ca Mon Sep 17 00:00:00 2001 From: ReVanced Bot Date: Fri, 5 Apr 2024 03:03:11 +0200 Subject: [PATCH 39/40] chore: Sync translations (#1804) --- assets/i18n/strings_ar_SA.i18n.json | 30 ++++++- assets/i18n/strings_bn_BD.i18n.json | 5 +- assets/i18n/strings_cs_CZ.i18n.json | 4 +- assets/i18n/strings_es_AR.i18n.json | 74 ++++++++-------- assets/i18n/strings_es_MX.i18n.json | 117 +++++++++++++++++++++++-- assets/i18n/strings_he_IL.i18n.json | 30 ++++++- assets/i18n/strings_ja_JP.i18n.json | 31 ++++--- assets/i18n/strings_kk_KZ.i18n.json | 43 +++++++++- assets/i18n/strings_ko_KR.i18n.json | 4 +- assets/i18n/strings_pt_PT.i18n.json | 6 +- assets/i18n/strings_zh_CN.i18n.json | 129 ++++++++++++++++++++++++++-- 11 files changed, 394 insertions(+), 79 deletions(-) diff --git a/assets/i18n/strings_ar_SA.i18n.json b/assets/i18n/strings_ar_SA.i18n.json index 143d7f27..8dfed7ea 100755 --- a/assets/i18n/strings_ar_SA.i18n.json +++ b/assets/i18n/strings_ar_SA.i18n.json @@ -96,7 +96,9 @@ "selectFromStorageButton": "اختيار من التخزين", "errorMessage": "لا يمكن استخدام التطبيق المحدد", "downloadToast": "خاصية التحميل غير متوفرة بعد", - "featureNotAvailable": "الميزة غير مُدمَجة بعد" + "requireSuggestedAppVersionDialogText": "الإصدار من التطبيق الذي حددته لا يتطابق مع الإصدار المقترح الذي يمكن أن يؤدي إلى مشاكل غير متوقعة. الرجاء استخدام الإصدار المقترح.\n\nالإصدار المحدد: ${selected}\nالإصدار المقترح: ${suggested}\n\nللاستمرار على أي حال، قم بتعطيل \"طلب إصدار التطبيق المقترح\" في الإعدادات.", + "featureNotAvailable": "الميزة غير مُدمَجة بعد", + "featureNotAvailableText": "هذا التطبيق عبارة عن ملف Spilt APK ولا يمكن تعديله وتثبيته بشكل موثوق إلا عن طريق التثبيت باستخدام أذونات Root. ومع ذلك، يمكنك تعديل وتثبيت ملف APK كاملًا عن طريق تحديده من وحدة التخزين." }, "patchesSelectorView": { "viewTitle": "حدد التعديلات", @@ -133,6 +135,7 @@ "unsupportedDialogText": "قد يؤدي تحديد هذا التعديل إلى حدوث أخطاء في عملية التعديل.\n\nإصدار التطبيق: ${packageVersion}\nالإصدارات المدعومة حالياً:\n${supportedVersions}", "unsupportedPatchVersion": "التعديل غير مدعوم لإصدار التطبيق هذا.", "unsupportedRequiredOption": "يحتوي هذا التعديل على خيار مطلوب لا يدعمه هذا التطبيق", + "patchesChangeWarningDialogText": "يوصى باستخدام تحديد التعديل وخياراته الافتراضية. قد يؤدي تغييرها إلى حدوث مشكلات غير متوقعة.\n\nستحتاج إلى تشغيل \"السماح بتغيير تحديد التعديل\" في الإعدادات قبل تغيير أي تحديد تعديل.", "patchesChangeWarningDialogButton": "استخدام التحديد الافتراضي" }, "installerView": { @@ -142,6 +145,7 @@ "installButton": "تثبيت", "installRootType": "تحميل", "installNonRootType": "عادي", + "warning": "قم بتعطيل التحديثات التلقائية للتطبيق المعدل لتجنب المشكلات غير المتوقعة.", "pressBackAgain": "اضغط رجوع مرة اخرى للإلغاء", "openButton": "فتح", "shareButton": "شارك ملف", @@ -171,12 +175,16 @@ "languageUpdated": "تم تحديث اللغة", "englishOption": "الإنجليزية", "sourcesLabel": "مصادر بديلة", + "sourcesLabelHint": "قم بتكوين المصادر البديلة لتعديلات ReVanced وتكاملات ReVanced", "sourcesIntegrationsLabel": "مصدر الـدمج", "useAlternativeSources": "استخدام مصادر بديلة", + "useAlternativeSourcesHint": "استخدم مصادر بديلة لتعديلات ReVanced وعمليات التكامل ReVanced بدلاً من API", "sourcesResetDialogTitle": "إعادة التعيين", "sourcesResetDialogText": "هل أنت متأكد من أنك تريد إعادة تعيين المصادر الخاصة بك إلى قيمها الافتراضية؟", "apiURLResetDialogText": "هل أنت متأكد من أنك تريد إعادة تعيين رابط API الخاص بك إلى قيمته الافتراضية؟", + "sourcesUpdateNote": "ملاحظة: سيؤدي هذا إلى تنزيل تعديلات ReVanced وتكاملات ReVanced تلقائيًا من المصادر البديلة.\n\nسيؤدي هذا إلى توصيلك بالمصدر البديل.", "apiURLLabel": "رابط API", + "apiURLHint": "تكوين عنوان URL لواجهة برمجة التطبيقات الخاصة بـ ReVanced Manager", "selectApiURL": "رابط API", "orgPatchesLabel": "تنظيم التعديلات", "sourcesPatchesLabel": "مصدر التعديلات", @@ -186,6 +194,7 @@ "logsLabel": "مشاركة السجلات", "logsHint": "مشاركة سجلات ReVanced Manager", "enablePatchesSelectionLabel": "السماح بتغيير تحديد التعديل", + "enablePatchesSelectionHint": "لا تمنع تحديد أو إلغاء تحديد التعديلات", "enablePatchesSelectionWarningText": "قد يؤدي تغيير تحديد التعديلات إلى حدوث مشكلات غير متوقعة.\n\nهل تريد التمكين على أي حال؟", "disablePatchesSelectionWarningText": "أنت على وشك تعطيل تغيير تحديد التعديلات.\nستتم استعادة التحديد الافتراضي للتعديلات.\n\nهل تريد التعطيل على أي حال؟", "autoUpdatePatchesLabel": "تحديث التعديلات تلقائيًا", @@ -195,7 +204,9 @@ "universalPatchesLabel": "عرض التعديلات العامة", "universalPatchesHint": "عرض جميع التطبيقات والتعديلات العامة (قد تؤدي إلى إبطاء قائمة التطبيقات)", "versionCompatibilityCheckLabel": "التحقق من توافق الإصدار", + "versionCompatibilityCheckHint": "منع تحديد التعديلات غير المتوافقة مع إصدار التطبيق المحدد", "requireSuggestedAppVersionLabel": "يتطلب إصدار التطبيق المقترح", + "requireSuggestedAppVersionHint": "منع تحديد تطبيق بإصدار غير المقترح", "requireSuggestedAppVersionDialogText": "قد يؤدي تحديد تطبيق ليس هو الإصدار المقترح إلى حدوث مشكلات غير متوقعة.\n\nهل تريد المتابعة على أية حال؟", "aboutLabel": "لمحة", "snackbarMessage": "نُسِخ إلى الحافظة", @@ -262,10 +273,27 @@ "installErrorDialog": { "mount_version_mismatch": "نسخة غير متطابقة", "mount_no_root": "لا توجد صلاحيات روت", + "mount_missing_installation": "التثبيت غير متوفر", + "status_failure_blocked": "التثبيت محظور", "install_failed_verification_failure": "فشل التحقق", "status_failure_invalid": "التثبيت غير صالح", + "install_failed_version_downgrade": "لا يمكن الرجوع إلى إصدار سابق", + "status_failure_conflict": "تعارض التثبيت", + "status_failure_storage": "مشكلة تخزين التثبيت", "status_failure_incompatible": "التثبيت غير متوافق", + "status_failure_timeout": "مهلة التثبيت", "status_unknown": "فشل التثبيت", + "mount_version_mismatch_description": "فشل التثبيت نظرًا لكون التطبيق المثبت إصدارًا مختلفًا عن التطبيق الذي تم تعديله.\n\nقم بتثبيت إصدار التطبيق الذي تقوم بتثبيته وحاول مرة أخرى.", + "mount_no_root_description": "فشل التثبيت بسبب عدم منح الوصول إلى Root.\n\nامنح حق الوصول Root إلى ReVanced Manager وحاول مرة أخرى.", + "mount_missing_installation_description": "فشل التثبيت بسبب عدم تثبيت التطبيق غير المعدل على هذا الجهاز من أجل تثبيته عليه.\n\nقم بتثبيت التطبيق غير المعدل قبل التثبيت وحاول مرة أخرى.", + "status_failure_timeout_description": "استغرق التثبيت وقتا طويلا للانتهاء.\n\nهل تود أن تجرب مجددا؟", + "status_failure_storage_description": "فشل التثبيت بسبب عدم كفاية مساحة التخزين.\n\nقم بتحرير بعض المساحة وحاول مرة أخرى.", + "status_failure_invalid_description": "فشل التثبيت نظرًا لأن التطبيق المعدل غير صالح.\n\nهل تريد إلغاء تثبيت التطبيق والمحاولة مرة أخرى؟", + "status_failure_incompatible_description": "التطبيق غير متوافق مع هذا الجهاز.\n\nاتصل بمطور التطبيق واطلب الدعم.", + "status_failure_conflict_description": "تم منع التثبيت من خلال تثبيت موجود للتطبيق.\n\nهل ترغب في إلغاء تثبيت التطبيق المثبت والمحاولة مرة أخرى؟", + "status_failure_blocked_description": "تم حظر التثبيت بواسطة ${packageName}.\n\nاضبط إعدادات الأمان الخاصة بك وحاول مرة أخرى.", + "install_failed_verification_failure_description": "فشل التثبيت بسبب مشكلة التحقق.\n\nاضبط إعدادات الأمان وحاول مرة أخرى.", + "install_failed_version_downgrade_description": "فشل التثبيت نظرًا لكون التطبيق المعدل إصدارًا أقل من التطبيق المثبت.\n\nهل تريد إلغاء تثبيت التطبيق والمحاولة مرة أخرى؟", "status_unknown_description": "فشل التثبيت لسبب غير معروف. الرجاء المحاولة مرة أخرى." } } \ No newline at end of file diff --git a/assets/i18n/strings_bn_BD.i18n.json b/assets/i18n/strings_bn_BD.i18n.json index d3d681f6..3d0bba7a 100755 --- a/assets/i18n/strings_bn_BD.i18n.json +++ b/assets/i18n/strings_bn_BD.i18n.json @@ -287,6 +287,9 @@ "status_failure_timeout": "ইনস্টলেশন সময় পার হয়েছে", "status_unknown": "ইনস্টলেশন ব্যর্থ হয়েছে", "mount_version_mismatch_description": "প্যাচ অ্যাপ ও ইনস্টলকৃত অ্যাপের সংস্করণ ভিন্ন হওয়ার কারণে ইনস্টলেশন ব্যর্থ হয়েছে।\n\nআপনি যে সংস্করণটি মাউন্ট করতে চাচ্ছেন তা আগে ইনস্টল করুন অতঃপর আবার চেষ্টা করুন।", - "mount_no_root_description": "রুট প্রবেশাধিকারের অনুমতি না দেয়ার কারণে ইনস্টলেশন ব্যর্থ হয়েছে।\n\nReVanced Manager এর রুট প্রবেশাধিকার অনুমতি দিন এবং আবার চেষ্টা করুন।" + "mount_no_root_description": "রুট প্রবেশাধিকারের অনুমতি না দেয়ার কারণে ইনস্টলেশন ব্যর্থ হয়েছে।\n\nReVanced Manager এর রুট প্রবেশাধিকার অনুমতি দিন এবং আবার চেষ্টা করুন।", + "mount_missing_installation_description": "এটির উপর মাউন্ট করার জন্য এই ডিভাইসে আনপ্যাচড অ্যাপ ইনস্টল না হওয়ার কারণে ইনস্টলেশন ব্যর্থ হয়েছে.\n\nমাউন্ট করার আগে আনপ্যাচড অ্যাপ ইনস্টল করুন এবং আবার চেষ্টা করুন.", + "status_failure_timeout_description": "ইন্সটলেশন শেষ হতে অনেক সময় লেগেছে.\n\nআপনি আবার চেষ্টা করতে চান?", + "status_failure_storage_description": "অপর্যাপ্ত সঞ্চয়স্থানের কারণে ইনস্টলেশন ব্যর্থ হয়েছে.\n\nকিছু জায়গা খালি করুন এবং আবার চেষ্টা করুন." } } \ No newline at end of file diff --git a/assets/i18n/strings_cs_CZ.i18n.json b/assets/i18n/strings_cs_CZ.i18n.json index 759c989f..e0a71066 100755 --- a/assets/i18n/strings_cs_CZ.i18n.json +++ b/assets/i18n/strings_cs_CZ.i18n.json @@ -203,9 +203,7 @@ "updateNotImplemented": "Tato funkce ještě není implementována" }, "contributorsView": { - "widgetTitle": "Přispěvatelé", - "integrationsContributors": "ReVanced Integrace", - "managerContributors": "ReVanced Manager" + "widgetTitle": "Přispěvatelé" }, "installErrorDialog": { "mount_version_mismatch": "Verse neshodná", diff --git a/assets/i18n/strings_es_AR.i18n.json b/assets/i18n/strings_es_AR.i18n.json index fe04d092..b4163fb5 100755 --- a/assets/i18n/strings_es_AR.i18n.json +++ b/assets/i18n/strings_es_AR.i18n.json @@ -54,7 +54,7 @@ "updatesDisabled": "Por ahora no podés actualizar una app parcheada. Parcheala de nuevo." }, "applicationItem": { - "infoButton": "Info. aplicación" + "infoButton": "Gestionar" }, "latestCommitCard": { "loadingLabel": "Cargando...", @@ -158,17 +158,17 @@ "noExit": "El instalador aún se está ejecutando, no te podés salir..." }, "settingsView": { - "widgetTitle": "Ajustes", + "widgetTitle": "Configuración", "appearanceSectionTitle": "Apariencia", "teamSectionTitle": "Equipo", - "debugSectionTitle": "Depurando", + "debugSectionTitle": "Depuración", "advancedSectionTitle": "Avanzado", "exportSectionTitle": "Importación y exportación", "dataSectionTitle": "Fuentes de datos", - "themeModeLabel": "Tema de la app", - "systemThemeLabel": "Sistema", - "lightThemeLabel": "Luz", - "darkThemeLabel": "Modo oscuro", + "themeModeLabel": "Tema de la aplicación", + "systemThemeLabel": "Igual que el sistema", + "lightThemeLabel": "Claro", + "darkThemeLabel": "Oscuro", "dynamicThemeLabel": "Material You", "dynamicThemeHint": "Disfrutá de una experiencia más acorde a tu dispositivo", "languageLabel": "Idioma", @@ -184,7 +184,7 @@ "apiURLResetDialogText": "¿Estás seguro de que quieres restablecer la URL de tu API a su valor por defecto?", "sourcesUpdateNote": "Nota: Esto descargará de forma automática ReVanced Patches y ReVanced Integrations desde las fuentes alternativas.\n\nEsto te va a conectar a la fuente alternativa.", "apiURLLabel": "URL de la API", - "apiURLHint": "Configurá la URL de la API del ReVanced Manager", + "apiURLHint": "Configurá la URL de la API de ReVanced Manager", "selectApiURL": "URL de la API", "orgPatchesLabel": "Organización de los parches", "sourcesPatchesLabel": "Fuente de los parches", @@ -192,35 +192,35 @@ "contributorsLabel": "Contribuidores", "contributorsHint": "Una lista de los contribuidores de ReVanced", "logsLabel": "Compartir registros", - "logsHint": "Compartir los registros de ReVanced Manager", + "logsHint": "Comparte los registros de ReVanced Manager", "enablePatchesSelectionLabel": "Permitir cambiar la selección de parches", - "enablePatchesSelectionHint": "No impedir la selección o deselección de parches", + "enablePatchesSelectionHint": "Permite la selección o deselección de parches", "enablePatchesSelectionWarningText": "Cambiar la selección de parches puede causar problemas inesperados.\n\n¿Habilitar de todos modos?", "disablePatchesSelectionWarningText": "Está a punto de desactivar el cambio de la selección de parches.\nSe restablecerá la selección de parches por defecto.\n\n¿Desactivar de todos modos?", "autoUpdatePatchesLabel": "Actualizar parches automáticamente", - "autoUpdatePatchesHint": "Actualice automáticamente los parches a la última versión", + "autoUpdatePatchesHint": "Actualiza automáticamente los parches a la última versión", "showUpdateDialogLabel": "Mostrar diálogo de actualización", "showUpdateDialogHint": "Muestra un diálogo cuando haya una nueva actualización disponible", "universalPatchesLabel": "Mostrar parches universales", "universalPatchesHint": "Mostrar todas las aplicaciones y parches universales (puede ralentizar la lista de aplicaciones)", - "versionCompatibilityCheckLabel": "Comprobación de compatibilidad de versiones", - "versionCompatibilityCheckHint": "Impedir la selección de parches que no sean compatibles con la versión de la aplicación seleccionada", - "requireSuggestedAppVersionLabel": "Requiere la versión de aplicación sugerida", - "requireSuggestedAppVersionHint": "Impedir seleccionar una aplicación cuya versión no sea la sugerida", + "versionCompatibilityCheckLabel": "Comprobar compatibilidad de versiones", + "versionCompatibilityCheckHint": "Impide la selección de parches que no sean compatibles con la versión de la aplicación seleccionada", + "requireSuggestedAppVersionLabel": "Requerir versión sugerida de la aplicación", + "requireSuggestedAppVersionHint": "Impide seleccionar una aplicación cuya versión no sea la sugerida", "requireSuggestedAppVersionDialogText": "Seleccionar una aplicación que no es la versión sugerida puede causar problemas inesperados.\n\n¿Desea continuar de todos modos?", "aboutLabel": "Acerca de", "snackbarMessage": "Copiado al portapapeles", "restartAppForChanges": "Reiniciá la app para aplicar los cambios", "deleteTempDirLabel": "Eliminar archivos temporales", - "deleteTempDirHint": "Eliminá los archivos temporales que no se usan", + "deleteTempDirHint": "Elimina los archivos temporales que no se usan", "deletedTempDir": "Archivos temporales eliminados", - "exportPatchesLabel": "Exportar parche seleccionado", - "exportPatchesHint": "Exportar parche seleccionado en un archivo JSON", - "exportedPatches": "Parche seleccionado exportado", - "noExportFileFound": "Ningún parche seleccionado para exportar", - "importPatchesLabel": "Importar parche seleccionado", - "importPatchesHint": "Importar parche seleccionado de un archivo JSON", - "importedPatches": "Parche seleccionado importado", + "exportPatchesLabel": "Exportar selección de parches", + "exportPatchesHint": "Exporta la selección de parches a un archivo JSON", + "exportedPatches": "Selección de parches exportada", + "noExportFileFound": "No hay selección de parches para exportar", + "importPatchesLabel": "Importar selección de parches", + "importPatchesHint": "Importa la selección de parches desde un archivo JSON", + "importedPatches": "Selección de parches importada", "resetStoredPatchesLabel": "Restablecer selección de parches", "resetStoredPatchesHint": "Restablecer selección de parches guardada", "resetStoredPatchesDialogTitle": "¿Restablecer selección de parches?", @@ -232,27 +232,27 @@ "resetStoredOptionsDialogText": "Restablecer las opciones de parche eliminará todas las opciones guardadas.", "resetStoredOptions": "Las opciones se han restablecido", "deleteLogsLabel": "Borrar registros", - "deleteLogsHint": "Eliminar los registros recopilados de ReVanced Manager", + "deleteLogsHint": "Elimina los registros recopilados por ReVanced Manager", "deletedLogs": "Registros eliminados", - "regenerateKeystoreLabel": "Regenerar almacén de claves", - "regenerateKeystoreHint": "Regenerar el almacén de claves utilizado para firmar aplicaciones", - "regenerateKeystoreDialogTitle": "¿Regenerar almacén de claves?", - "regenerateKeystoreDialogText": "Las aplicaciones parcheadas firmadas con el antiguo almacén de claves ya no podrán actualizarse.", - "regeneratedKeystore": "Almacén de claves regenerado", - "exportKeystoreLabel": "Exportar almacén de claves", - "exportKeystoreHint": "Exportar el almacén de llaves utilizado para firmar aplicaciones", + "regenerateKeystoreLabel": "Regenerar repositorio de claves", + "regenerateKeystoreHint": "Regenera el repositorio de claves utilizado para firmar aplicaciones", + "regenerateKeystoreDialogTitle": "¿Regenerar repositorio de claves?", + "regenerateKeystoreDialogText": "Las aplicaciones parcheadas firmadas con el antiguo repositorio de claves ya no podrán actualizarse.", + "regeneratedKeystore": "Repositorio de claves regenerado", + "exportKeystoreLabel": "Exportar repositorio de claves", + "exportKeystoreHint": "Exporta el repositorio de claves utilizado para firmar aplicaciones", "exportedKeystore": "Repositorio de claves exportado", - "noKeystoreExportFileFound": "No hay un almacén de claves para exportar", + "noKeystoreExportFileFound": "No hay repositorio de claves para exportar", "importKeystoreLabel": "Importar repositorio de claves", - "importKeystoreHint": "Importar un almacén de llaves utilizado para firmar aplicaciones", + "importKeystoreHint": "Importar un repositorio de claves utilizado para firmar aplicaciones", "importedKeystore": "Repositorio de claves importado", - "selectKeystorePassword": "Contraseña del almacén de llaves", - "selectKeystorePasswordHint": "Seleccionar la contraseña del almacén de llaves utilizada para firmar aplicaciones", + "selectKeystorePassword": "Contraseña del repositorio de claves", + "selectKeystorePasswordHint": "Selecciona la contraseña del repositorio de claves utilizada para firmar aplicaciones", "jsonSelectorErrorMessage": "No se puede usar el archivo JSON seleccionado", - "keystoreSelectorErrorMessage": "No se puede utilizar el archivo de almacén de llaves seleccionado" + "keystoreSelectorErrorMessage": "No se puede utilizar el archivo de repositorio de claves seleccionado" }, "appInfoView": { - "widgetTitle": "Información de la app", + "widgetTitle": "Información de la aplicación", "openButton": "Abrir", "uninstallButton": "Desinstalar", "unmountButton": "Desmontar", diff --git a/assets/i18n/strings_es_MX.i18n.json b/assets/i18n/strings_es_MX.i18n.json index 283abf95..e15d0e32 100755 --- a/assets/i18n/strings_es_MX.i18n.json +++ b/assets/i18n/strings_es_MX.i18n.json @@ -37,6 +37,7 @@ "updateDialogTitle": "Nueva actualización disponible", "updatePatchesSheetTitle": "Actualizar ReVanced Patches", "updateChangelogTitle": "Registro de cambios", + "updateDialogText": "Hay una nueva versión disponible para ${file}.\n\nLa versión actualmente instalada es la ${version}.", "downloadConsentDialogTitle": "¿Descargar archivos necesarios?", "downloadConsentDialogText": "ReVanced Manager necesita descargar los archivos necesarios para funcionar correctamente.", "downloadConsentDialogText2": "Esto te conectará a ${url}.", @@ -58,17 +59,25 @@ "latestCommitCard": { "loadingLabel": "Cargando...", "timeagoLabel": "Hace ${time}", - "patcherLabel": "Parcheador: " + "patcherLabel": "Parcheador: ", + "managerLabel": "Manager: ", + "updateButton": "Actualizar ReVanced Manager" }, "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." }, "appSelectorCard": { + "widgetTitle": "Seleccionar una aplicación", + "widgetTitleSelected": "Aplicación seleccionada", + "widgetSubtitle": "No se seleccionó ninguna aplicación", "noAppsLabel": "No se encontraron aplicaciones", "currentVersion": "Versión actual", - "suggestedVersion": "Version sugerida" + "suggestedVersion": "Version sugerida", + "anyVersion": "Cualquier versión" }, "patchSelectorCard": { "widgetTitle": "Seleccionar parches", @@ -81,11 +90,15 @@ "widgetSubtitle": "¡Estamos en línea!" }, "appSelectorView": { + "viewTitle": "Seleccionar una aplicación", + "searchBarHint": "Buscar...", "storageButton": "Almacenamiento", "selectFromStorageButton": "Seleccionar desde almacenamiento", "errorMessage": "No se puede usar la aplicación seleccionada", "downloadToast": "La función de descarga aún no está disponible", - "featureNotAvailable": "Característica no implementada" + "requireSuggestedAppVersionDialogText": "La versión de la aplicación que has seleccionado no coincide con la versión sugerida, lo que podría causar errores inesperados. Por favor, utiliza la versión sugerida.\n\nVersión seleccionada: ${selected}\nVersión sugerida: ${suggested}\n\nPara continuar de todas formas, desactiva \"Requerir versión sugerida de la aplicación\" en la configuración.", + "featureNotAvailable": "Característica no implementada", + "featureNotAvailableText": "Esta aplicación está instalada en formato AAB (Android App Bundle) y solo se puede parchear e instalar de forma fiable mediante el montaje con acceso root. Sin embargo, puedes parchear e instalar una aplicación en formato APK seleccionándola desde el almacenamiento." }, "patchesSelectorView": { "viewTitle": "Selecciona parches", @@ -94,7 +107,9 @@ "newPatches": "Nuevos parches", "patches": "Parches", "doneButton": "Completado", + "defaultChip": "Por defecto", "defaultTooltip": "Seleccionar todos los parches predeterminados", + "noneChip": "Ninguno", "noneTooltip": "Deseleccionar todos los elementos", "loadPatchesSelection": "Cargar selección de parches", "noSavedPatches": "No se ha guardado ninguna selección de parches para la aplicación seleccionada.\nPresione Hecho para guardar la selección actual.", @@ -111,21 +126,29 @@ "tooltip": "Más opciones de entrada", "selectFilePath": "Selecciona la ruta del archivo", "selectFolder": "Selecciona la carpeta", + "selectOption": "Seleccionar opción", "requiredOption": "Esta opción es requerida", "unsupportedOption": "Esta opción no está disponible", "requiredOptionNull": "Hay que configurar las siguientes opciones:\n\n${options}" }, "patchItem": { "unsupportedDialogText": "Seleccionar este parche puede causar errores.\n\nVersión de la app: ${packageVersion}\nVersiones compatibles:\n${supportedVersions}", + "unsupportedPatchVersion": "El parche no es compatible con esta versión de la aplicación.", "unsupportedRequiredOption": "Este parche contiene una opción necesaria que no es compatible con esta aplicación", + "patchesChangeWarningDialogText": "Se recomienda utilizar la selección y opciones de parches por defecto. Cambiarlas puede resultar en problemas inesperados.\n\nTendrás que activar \"Permitir cambiar la selección de parches\" en la configuración antes de cambiar cualquier selección de parches.", "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", - "installRootType": "Montar", + "installRootType": "Montar (requiere acceso root)", + "installNonRootType": "Normal", + "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", @@ -141,6 +164,7 @@ "debugSectionTitle": "Depurando", "advancedSectionTitle": "Avanzado", "exportSectionTitle": "Importar y Exportar", + "dataSectionTitle": "Fuentes de datos", "themeModeLabel": "Tema de la app", "systemThemeLabel": "Sistema", "lightThemeLabel": "Claro", @@ -148,11 +172,19 @@ "dynamicThemeLabel": "Material para ti", "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", + "useAlternativeSources": "Usar fuentes alternativas", + "useAlternativeSourcesHint": "Usa fuentes alternativas para ReVanced Patches y ReVanced Integrations en lugar de la API", "sourcesResetDialogTitle": "Reiniciar", "sourcesResetDialogText": "¿Estás seguro de que quieres restablecer las fuentes a sus valores por defecto?", "apiURLResetDialogText": "¿Estás seguro de que quieres restablecer la URL de tu API a su valor por defecto?", + "sourcesUpdateNote": "Nota: Se descargarán de forma automática ReVanced Patches y ReVanced Integrations desde las fuentes alternativas.\n\nEsto te conectará a la misma.", "apiURLLabel": "URL API", + "apiURLHint": "Configura la URL de la API de ReVanced Manager", "selectApiURL": "URL de la API", "orgPatchesLabel": "Organización de parches", "sourcesPatchesLabel": "Fuente de los parches", @@ -162,28 +194,76 @@ "logsLabel": "Compartir registros", "logsHint": "Compartir los registros de ReVanced Manager", "enablePatchesSelectionLabel": "Permitir cambiar la selección de parches", + "enablePatchesSelectionHint": "No prevenir la selección o deselección de parches", + "enablePatchesSelectionWarningText": "Cambiar la selección de parches puede cauar problemas inespereados.\n\n¿Quieres activarlo de todas formas?", + "disablePatchesSelectionWarningText": "Estás a punto de desactivar el cambiar la selección de parches.\nSe restaurará la selección de parches por defecto.", + "autoUpdatePatchesLabel": "Actualizar parches automáticamente", + "autoUpdatePatchesHint": "Actualiza los parches a la última versión automáticamente", + "showUpdateDialogLabel": "Mostrar diálogo de actualización", + "showUpdateDialogHint": "Muestra un diálogo cuando una nueva actualización esté disponible", + "universalPatchesLabel": "Mostrar parches universales", + "universalPatchesHint": "Muestra todas las aplicaciones y los parches universales (puede ralentizar la carga de la lista de aplicaciones)", + "versionCompatibilityCheckLabel": "Comprobar compatibilidad de versiones", + "versionCompatibilityCheckHint": "Previene seleccionar parches que no sean compatibles con la versión de la aplicación seleccionada", + "requireSuggestedAppVersionLabel": "Requerir versión sugerida de la aplicación", + "requireSuggestedAppVersionHint": "Previene seleccionar una aplicación cuya versión no sea la sugerida", + "requireSuggestedAppVersionDialogText": "Seleccionar una aplicación cuya versión no sea la sugerida puede causar problemas inesperados.\n\n¿Quieres continuar de todas formas?", "aboutLabel": "Acerca de", "snackbarMessage": "Copiado al portapapeles", "restartAppForChanges": "Reinicie la aplicación para aplicar los cambios", "deleteTempDirLabel": "Borrar archivos temporales", "deleteTempDirHint": "Eliminar archivos temporales no utilizados", "deletedTempDir": "Archivos temporales eliminados", + "exportPatchesLabel": "Exportar selección de parches", + "exportPatchesHint": "Exporta la selección de parches a un archivo JSON", + "exportedPatches": "Selección de parches exportada", + "noExportFileFound": "No hay selección de parches para exportar", + "importPatchesLabel": "Importar selección de parches", + "importPatchesHint": "Importa la selección de parches desde un archivo JSON", + "importedPatches": "Selección de parches importada", + "resetStoredPatchesLabel": "Restablecer selección de parches", + "resetStoredPatchesHint": "Restablece la selección de parches almacenada", + "resetStoredPatchesDialogTitle": "¿Restablecer selección de parches?", + "resetStoredPatchesDialogText": "Se restaurará la selección de parches por defecto.", + "resetStoredPatches": "Selección de parches restablecida", + "resetStoredOptionsLabel": "Restablecer configuración de parches", + "resetStoredOptionsHint": "Restablece la configuración de todos los parches", + "resetStoredOptionsDialogTitle": "¿Restablecer configuración de parches?", + "resetStoredOptionsDialogText": "Restablecer la configuración de parches eliminará todas las opciones guardadas.", + "resetStoredOptions": "Configuración de parches restablecida", + "deleteLogsLabel": "Borrar registros", + "deleteLogsHint": "Elimina los registros recopilados por ReVanced Manager", "deletedLogs": "Registros eliminados", + "regenerateKeystoreLabel": "Regenerar repositorio de claves", + "regenerateKeystoreHint": "Regenera el repositorio de claves utilizado para firmar aplicaciones", + "regenerateKeystoreDialogTitle": "¿Regenerar repositorio de claves?", + "regenerateKeystoreDialogText": "Las aplicaciones parcheadas con el repositorio de claves anterior ya no podrán actualizarse.", + "regeneratedKeystore": "Repositorio de claves regenerado", "exportKeystoreLabel": "Exportar repositorio de claves", + "exportKeystoreHint": "Exporta el repositorio de claves utilizado para firmar aplicaciones", "exportedKeystore": "Repositorio de claves exportado", "noKeystoreExportFileFound": "No hay repositorio de claves para exportar", "importKeystoreLabel": "Importar repositorio de claves", + "importKeystoreHint": "Importa el repositorio de claves utilizado para firmar aplicaciones", "importedKeystore": "Repositorio de claves importado", - "jsonSelectorErrorMessage": "No se puede utilizar el archivo JSON seleccionado" + "selectKeystorePassword": "Contraseña del repositorio de claves", + "selectKeystorePasswordHint": "Introduce la contraseña del repositorio de claves utilizado para firmar aplicaciones", + "jsonSelectorErrorMessage": "No se puede utilizar el archivo JSON seleccionado", + "keystoreSelectorErrorMessage": "No se puede utilizar el archivo de repositorio de claves seleccionado" }, "appInfoView": { "widgetTitle": "Informacion de la applicacion", "openButton": "Abrir", "uninstallButton": "Desinstalar", + "unmountButton": "Desmontar", "rootDialogTitle": "Ocurrió un error", + "unmountDialogText": "¿Seguro que quieres desmontar esta aplicación?", + "uninstallDialogText": "¿Seguro que quieres desinstalar esta aplicación?", "rootDialogText": "La aplicación se instaló con permisos de root, pero actualmente ReVanced Manager no tiene permisos root.\nPor favor, conceda primero los permisos de root.", "packageNameLabel": "Nombre del paquete", "installTypeLabel": "Tipo de instalación", + "mountTypeLabel": "Montar (requiere acceso root)", + "regularTypeLabel": "Normal", "patchedDateLabel": "Fecha de parcheo", "appliedPatchesLabel": "Parches aplicados", "patchedDateHint": "${date} a las ${time}", @@ -193,5 +273,30 @@ "contributorsView": { "widgetTitle": "Contribuidores" }, - "installErrorDialog": {} + "installErrorDialog": { + "mount_version_mismatch": "La versión no coincide", + "mount_no_root": "Sin acceso root", + "mount_missing_installation": "No se encontró la instalación", + "status_failure_blocked": "Instalación bloqueada", + "install_failed_verification_failure": "Verificación fallida", + "status_failure_invalid": "Instalación inválida", + "install_failed_version_downgrade": "No se puede bajar de versión", + "status_failure_conflict": "Conflicto de instalación", + "status_failure_storage": "Problema de almacenamiento de la instalación", + "status_failure_incompatible": "Instalación incompatible", + "status_failure_timeout": "Tiempo de instalación agotado", + "status_unknown": "Instalación fallida", + "mount_version_mismatch_description": "La instalación falló debido a que la versión de la aplicación instalada es diferente a la de la aplicación parcheada.\n\nInstala la versión de la aplicación que intentas montar e inténtalo de nuevo.", + "mount_no_root_description": "La instalación falló debido a que no se ha concedido acceso root.\n\nConcédele acceso root a ReVanced Manager y vuelve a intentarlo.", + "mount_missing_installation_description": "La instalación falló debido a que la aplicación original no ha sido instalada en este dispositivo para montar la versión parcheada sobre ella.\n\nInstala la aplicación original antes de montar y vuelve a intentarlo.", + "status_failure_timeout_description": "La instalación tardó demasiado en finalizar.\n\n¿Quieres intentarlo de nuevo?", + "status_failure_storage_description": "La instalación falló debido a falta de almacenamiento.\n\nLibera algo de espacio y vuelve a intentarlo.", + "status_failure_invalid_description": "La instalación falló debido a que la aplicación parcheada es inválida.\n\n¿Quieres desinstalar la aplicación e intentarlo de nuevo?", + "status_failure_incompatible_description": "La aplicación es incompatible con este dispositivo.\n\nContacta con el desarrollador de la aplicación y solicita asistencia.", + "status_failure_conflict_description": "Se impidió la instalación debido a una instalación existente de la aplicación.\n\n¿Quieres desinstalar la aplicación instalada e intentarlo de nuevo?", + "status_failure_blocked_description": "${packageName} bloqueó la instalación.\n\nAjusta la configuración de seguridad e inténtalo de nuevo.", + "install_failed_verification_failure_description": "La instalación falló debido a un problema de verificación.\n\nAjusta la configuración de seguridad e inténtalo de nuevo.", + "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." + } } \ No newline at end of file diff --git a/assets/i18n/strings_he_IL.i18n.json b/assets/i18n/strings_he_IL.i18n.json index b6bb206e..9987a2d1 100755 --- a/assets/i18n/strings_he_IL.i18n.json +++ b/assets/i18n/strings_he_IL.i18n.json @@ -1,6 +1,7 @@ { "okButton": "אישור", "cancelButton": "ביטול", + "dismissButton": "התעלם", "quitButton": "יציאה", "updateButton": "עדכן", "enabledLabel": "הופעל", @@ -15,6 +16,8 @@ "noShowAgain": "אל תציג זאת שוב", "add": "הוסף", "remove": "הסר", + "showChangelogButton": "הצגת יומן שינויים", + "showUpdateButton": "הצג עדכון", "navigationView": { "dashboardTab": "לוח בקרה", "patcherTab": "מתקן", @@ -25,14 +28,25 @@ "widgetTitle": "לוח בקרה", "updatesSubtitle": "עדכונים", "patchedSubtitle": "אפליקציות מתוקנות", + "changeLaterSubtitle": "ניתן לשנות זאת בהגדרות מאוחר יותר.", "noUpdates": "אין עדכונים זמינים", "WIP": "עבודה בתהליך...", "noInstallations": "אין אפליקציות מתוקנת מותקנות", "installUpdate": "המשך להתקין את העדכון?", + "updateSheetTitle": "עדכן את ReVanced Manager", + "updateDialogTitle": "עידכון חדש זמין", + "updatePatchesSheetTitle": "עדכן את ReVanced Patches", "updateChangelogTitle": "היסטורית שינויים", + "updateDialogText": "עדכון חדש זמין עבור ${file}.\n\nהגרסה המותקנת כרגע היא ${version}.", + "downloadConsentDialogTitle": "להוריד קבצי עזר?", + "downloadConsentDialogText": "ReVanced Manager צריך להוריד קבצי עזר על מנת לעבוד כמו שצריך.", + "downloadConsentDialogText2": "זה יחבר אותך ל${url}.", + "checkUpdateDialogTitle": "לבדוק עדכונים?", + "checkUpdateDialogText": "מעדיף ש-ReVanced Manager יבדוק עדכונים אוטומטית?", "notificationTitle": "העדכון הורד", "notificationText": "הקש כדי להתקין את העדכון", "downloadingMessage": "מוריד עדכון...", + "downloadedMessage": "עדכון הורד", "installingMessage": "מתקין עדכון...", "errorDownloadMessage": "הורדת קובץ העדכון נכשלה", "errorInstallMessage": "לא ניתן להתקין את העדכון", @@ -46,17 +60,24 @@ "loadingLabel": "טוען...", "timeagoLabel": "לפני ${time}", "patcherLabel": "מתקן: ", - "managerLabel": "מנהל: " + "managerLabel": "מנהל: ", + "updateButton": "עדכן את Manager" }, "patcherView": { "widgetTitle": "מתקן", "patchButton": "תיקון", + "armv7WarningDialogText": "תיקון במכשירי ARMv7 לא נתמך כרגע ואולי יכשל. להמשיך בכל זאת?", + "removedPatchesWarningDialogText": "התיקונים הבאים הוסרו מאז הפעם האחרונה שהשתמשת בהם.\n${patches}\nלהמשיך בכל זאת?", "requiredOptionDialogText": "כמה אפשרויות תיקון חייבות להיקבע." }, "appSelectorCard": { + "widgetTitle": "בחר אפליקציה", + "widgetTitleSelected": "אפליקציה שנבחרה", + "widgetSubtitle": "לא נבחרה אפליקציה", "noAppsLabel": "לא נמצאו יישומים", "currentVersion": "נוֹכְחִי", - "suggestedVersion": "מוצע" + "suggestedVersion": "מוצע", + "anyVersion": "כל גרסה" }, "patchSelectorCard": { "widgetTitle": "בחר תיקונים", @@ -69,10 +90,13 @@ "widgetSubtitle": "אנחנו מחוברים!" }, "appSelectorView": { + "viewTitle": "בחר אפליקציה", + "searchBarHint": "חיפוש אפליקציה", "storageButton": "אחסון", "selectFromStorageButton": "בחירה מהאחסון", "errorMessage": "לא ניתן להשתמש ביישום שנבחר", "downloadToast": "פונקציית ההורדה אינה זמינה כעת", + "requireSuggestedAppVersionDialogText": "גרסת האפליקציה שבחרת אינה תואמת את הגרסה המומלצת, מה שעלול להוביל לבעיות בלתי צפויות. אנא השתמש בגרסה המומלצת.\n\nהגרסה שנבחרה: ${selected}\nהגרסה המומלצת: ${suggested}\n\nכדי להמשיך בכל זאת, כבה את \"דרוש גרסת אפליקציה מומלצת\" בהגדרות.", "featureNotAvailable": "תכונה לא מיושמת" }, "patchesSelectorView": { @@ -82,7 +106,9 @@ "newPatches": "תיקונים חדשים", "patches": "תיקונים", "doneButton": "בוצע", + "defaultChip": "ברירת מחדל", "defaultTooltip": "בחר את כל תיקוני ברירת המחדל", + "noneChip": "כלום", "noneTooltip": "בטל את בחירת כל התיקונים", "loadPatchesSelection": "טען בחירת תיקונים", "noSavedPatches": "אין תיקונים שמורים עבור האפליקציה שנבחרה.\nלחץ על בוצע כדי לשמור את הבחירה הנוכחית.", diff --git a/assets/i18n/strings_ja_JP.i18n.json b/assets/i18n/strings_ja_JP.i18n.json index 83d70deb..236151cb 100755 --- a/assets/i18n/strings_ja_JP.i18n.json +++ b/assets/i18n/strings_ja_JP.i18n.json @@ -27,7 +27,7 @@ "refreshSuccess": "正常に更新されました", "widgetTitle": "一覧", "updatesSubtitle": "更新", - "patchedSubtitle": "パッチ適用済みのアプリ", + "patchedSubtitle": "パッチ済みのアプリ", "changeLaterSubtitle": "この設定はあとでも変更できます", "noUpdates": "利用可能なアップデートはありません", "WIP": "制作中", @@ -77,7 +77,7 @@ "noAppsLabel": "アプリが見つかりません", "currentVersion": "選択", "suggestedVersion": "推奨", - "anyVersion": "任意のバージョン" + "anyVersion": "全てのバージョン" }, "patchSelectorCard": { "widgetTitle": "パッチを選択", @@ -92,7 +92,7 @@ "appSelectorView": { "viewTitle": "アプリを選択", "searchBarHint": "アプリを検索", - "storageButton": "APKを選択", + "storageButton": "APKファイルを選択", "selectFromStorageButton": "ストレージから選択", "errorMessage": "選択されたアプリは使用できません", "downloadToast": "現在、ダウンロード機能は利用できません", @@ -189,8 +189,8 @@ "orgPatchesLabel": "パッチの組織", "sourcesPatchesLabel": "パッチのソース", "orgIntegrationsLabel": "Integrations の組織", - "contributorsLabel": "コントリビューター", - "contributorsHint": "ReVanced のコントリビューターの一覧", + "contributorsLabel": "貢献者", + "contributorsHint": "ReVancedの貢献者一覧", "logsLabel": "ログを共有", "logsHint": "ReVanced Manager のログを共有します", "enablePatchesSelectionLabel": "パッチの選択の変更を許可", @@ -198,13 +198,13 @@ "enablePatchesSelectionWarningText": "パッチの選択を変更すると、予期せぬ問題が起こる可能性があります。\n\n有効にしますか?", "disablePatchesSelectionWarningText": "パッチの選択の変更を無効にしようとしています。\nデフォルトのパッチの選択が復元されます。\n\n無効にしますか?", "autoUpdatePatchesLabel": "パッチの自動アップデート", - "autoUpdatePatchesHint": "パッチを自動的に最新バージョンに更新します", - "showUpdateDialogLabel": "更新ダイアログを表示", + "autoUpdatePatchesHint": "パッチを自動的に最新バージョンに更新する", + "showUpdateDialogLabel": "アップデートの通知を表示", "showUpdateDialogHint": "新しいアップデートが利用可能な場合にダイアログを表示する", "universalPatchesLabel": "共通パッチの表示", - "universalPatchesHint": "すべてのアプリと共通パッチを表示します (アプリのリストの読み込みが遅くなる可能性があります)", - "versionCompatibilityCheckLabel": "バージョンの互換性チェック", - "requireSuggestedAppVersionLabel": "推奨されたアプリのバージョンが必要です", + "universalPatchesHint": "すべてのアプリと共通パッチを表示します(アプリ一覧の読み込みが遅くなる可能性があります)", + "versionCompatibilityCheckLabel": "バージョンの互換性の確認", + "requireSuggestedAppVersionLabel": "推奨するアプリバージョンの要求", "requireSuggestedAppVersionDialogText": "推奨されているバージョンではないアプリを選択すると、予期しない問題が発生する可能性があります。\n\nこのまま続行しますか?", "aboutLabel": "情報", "snackbarMessage": "クリップボードにコピーしました", @@ -213,19 +213,19 @@ "deleteTempDirHint": "未使用の一時ファイルを削除", "deletedTempDir": "一時ファイルを削除しました", "exportPatchesLabel": "パッチの選択をエクスポート", - "exportPatchesHint": "パッチの選択を JSON ファイルにエクスポートします", + "exportPatchesHint": "パッチの選択を JSON ファイルにエクスポートする", "exportedPatches": "パッチの選択をエクスポートしました", "noExportFileFound": "エクスポートするパッチの選択がありません", "importPatchesLabel": "パッチの選択をインポート", - "importPatchesHint": "パッチの選択を JSON ファイルからインポートします", + "importPatchesHint": "パッチの選択を JSON ファイルからインポートする", "importedPatches": "パッチの選択をインポートしました", "resetStoredPatchesLabel": "パッチの選択をリセット", - "resetStoredPatchesHint": "保存されたパッチの選択をリセットします", + "resetStoredPatchesHint": "保存されたパッチの選択をリセットする", "resetStoredPatchesDialogTitle": "パッチの選択をリセット", "resetStoredPatchesDialogText": "デフォルトのパッチの選択が復元されます。", "resetStoredPatches": "パッチの選択をリセットしました", "resetStoredOptionsLabel": "パッチオプションをリセット", - "resetStoredOptionsHint": "すべてのパッチオプションをリセットします", + "resetStoredOptionsHint": "すべてのパッチオプションをリセットする", "resetStoredOptionsDialogTitle": "パッチオプションをリセットしますか?", "resetStoredOptionsDialogText": "パッチオプションをリセットすると、保存されたすべてのオプションが削除されます。", "resetStoredOptions": "オプションをリセットしました", @@ -254,9 +254,12 @@ "openButton": "開く", "uninstallButton": "アンインストール", "rootDialogTitle": "エラー", + "unmountDialogText": "このアプリをアンマウントしてもよろしいですか?", "rootDialogText": "アプリはスーパーユーザー権限でインストールされましたが、現在 ReVanced Manager にはその権限がありません。 スーパーユーザー権限を付与してください。", "packageNameLabel": "パッケージ名", "installTypeLabel": "インストールの種類", + "mountTypeLabel": "マウント", + "regularTypeLabel": "通常", "patchedDateLabel": "パッチ適用日時", "appliedPatchesLabel": "適用されたパッチ", "patchedDateHint": "${date} ${time}", diff --git a/assets/i18n/strings_kk_KZ.i18n.json b/assets/i18n/strings_kk_KZ.i18n.json index 4d40483d..b4f39923 100755 --- a/assets/i18n/strings_kk_KZ.i18n.json +++ b/assets/i18n/strings_kk_KZ.i18n.json @@ -1,6 +1,45 @@ { - "navigationView": {}, - "homeView": {}, + "okButton": "ОК", + "cancelButton": "Артқа", + "dismissButton": "Елемеу", + "quitButton": "Шығу", + "updateButton": "Жаңарту", + "enabledLabel": "Қосулы", + "disabledLabel": "Сөндірулі", + "installed": "Орнатылған: ${version}", + "suggested": "Ұсынылған: ${version}", + "yesButton": "Иә", + "noButton": "Жоқ", + "warning": "Назар аударыңыз", + "options": "Баптау", + "notice": "Ескерту", + "noShowAgain": "Енді көрсетілмесін", + "add": "Қосу", + "remove": "Жою", + "showChangelogButton": "Өзгерту тарихын көрсету", + "showUpdateButton": "Жаңартуды көрсету", + "navigationView": { + "dashboardTab": "Басқару тақтасы", + "patcherTab": "Patcher", + "settingsTab": "Баптау" + }, + "homeView": { + "refreshSuccess": "Сәтті жаңартылды", + "widgetTitle": "Бақылау тақтасы", + "updatesSubtitle": "Жаңартулар", + "patchedSubtitle": "Патчталған қолданбалар", + "changeLaterSubtitle": "Мұны кейінірек баптауда өзгертіп ала аласыз.", + "noUpdates": "Жаңарту жоқ", + "WIP": "Жүктеліп жатыр...", + "noInstallations": "Патчталған қолданбалар орнатылмаған", + "installUpdate": "Жаңартуды әрі қарай орната берейік пе?", + "updateSheetTitle": "ReVanced Manager-ді жаңарту", + "updateDialogTitle": "Жаңарту қолжетімді", + "updatePatchesSheetTitle": "ReVanced патчін жаңарту", + "updateChangelogTitle": "Өзгерту тарихы", + "updateDialogText": "${file} үшін жаңарту қолжетімді.\n\nҚазіргі ${version} нұсқасы орнатылып тұр.", + "downloadConsentDialogTitle": "Керек файлды жүктеп алайық па?" + }, "applicationItem": {}, "latestCommitCard": {}, "patcherView": {}, diff --git a/assets/i18n/strings_ko_KR.i18n.json b/assets/i18n/strings_ko_KR.i18n.json index 6acc6d7a..8405a4ca 100755 --- a/assets/i18n/strings_ko_KR.i18n.json +++ b/assets/i18n/strings_ko_KR.i18n.json @@ -19,13 +19,13 @@ "showChangelogButton": "변경 사항 보기", "showUpdateButton": "업데이트 보기", "navigationView": { - "dashboardTab": "대시보드", + "dashboardTab": "Dashboard", "patcherTab": "Patcher", "settingsTab": "설정" }, "homeView": { "refreshSuccess": "새로고침을 성공했습니다.", - "widgetTitle": "대시보드", + "widgetTitle": "Dashboard", "updatesSubtitle": "업데이트", "patchedSubtitle": "설치된 앱", "changeLaterSubtitle": "나중에 설정에서 바꿀 수 있습니다.", diff --git a/assets/i18n/strings_pt_PT.i18n.json b/assets/i18n/strings_pt_PT.i18n.json index 832983dc..16f0de97 100755 --- a/assets/i18n/strings_pt_PT.i18n.json +++ b/assets/i18n/strings_pt_PT.i18n.json @@ -16,16 +16,16 @@ "noShowAgain": "Não mostrar isto novamente", "add": "Adicionar", "remove": "Remover", - "showChangelogButton": "Mostrar o registo de modificações", + "showChangelogButton": "Mostrar as correções", "showUpdateButton": "Mostrar atualização", "navigationView": { - "dashboardTab": "Painel de controlo", + "dashboardTab": "Painel de Controlo", "patcherTab": "Modificador", "settingsTab": "Definições" }, "homeView": { "refreshSuccess": "Atualizado com sucesso", - "widgetTitle": "Painel de controlo", + "widgetTitle": "Painel de Controlo", "updatesSubtitle": "Atualizações", "patchedSubtitle": "Aplicações Modificadas", "changeLaterSubtitle": "Podes modificar esta definição mais tarde.", diff --git a/assets/i18n/strings_zh_CN.i18n.json b/assets/i18n/strings_zh_CN.i18n.json index 693e0b07..6910ce8d 100755 --- a/assets/i18n/strings_zh_CN.i18n.json +++ b/assets/i18n/strings_zh_CN.i18n.json @@ -1,8 +1,11 @@ { "okButton": "确定", "cancelButton": "取消", + "dismissButton": "忽略", "quitButton": "退出", "updateButton": "更新", + "enabledLabel": "已启用", + "disabledLabel": "已禁用", "installed": "已安装版本:${version}", "suggested": "建议的版本:${version}", "yesButton": "是", @@ -14,6 +17,7 @@ "add": "添加", "remove": "移除", "showChangelogButton": "显示更新日志", + "showUpdateButton": "显示更新", "navigationView": { "dashboardTab": "控制面板", "patcherTab": "补丁程序", @@ -25,15 +29,20 @@ "updatesSubtitle": "更新", "patchedSubtitle": "已应用补丁的应用程序", "changeLaterSubtitle": "您可以稍后在设置中更改此设置。", + "noUpdates": "暂无更新", + "WIP": "正在执行操作…", "noInstallations": "没有安装已修补的应用", "installUpdate": "继续安装该更新?", "updateSheetTitle": "更新 ReVanced Manager", "updateDialogTitle": "有可用的更新", "updatePatchesSheetTitle": "更新 ReVanced 补丁", "updateChangelogTitle": "更新日志", + "updateDialogText": "${file} 有新的更新可用。\n\n当前安装的版本是${version}。", "downloadConsentDialogTitle": "下载必要文件吗?", "downloadConsentDialogText": "ReVanced Manager 需要下载必要的文件才能正常工作。", + "downloadConsentDialogText2": "这会将您连接到 ${url}。", "checkUpdateDialogTitle": "要检查更新吗?", + "checkUpdateDialogText": "您想要ReVanced Manager自动检查更新吗?", "notificationTitle": "更新下载完成!", "notificationText": "点击安装更新", "downloadingMessage": "正在下载更新…", @@ -49,11 +58,17 @@ }, "latestCommitCard": { "loadingLabel": "正在加载…", - "timeagoLabel": "${time}前" + "timeagoLabel": "${time}前", + "patcherLabel": "补丁程序: ", + "managerLabel": "管理器: ", + "updateButton": "更新管理器" }, "patcherView": { "widgetTitle": "修补器", - "patchButton": "修补" + "patchButton": "修补", + "armv7WarningDialogText": "尚不支持在 ARMv7 设备上进行修补并且可能会失败。仍要继续吗?", + "removedPatchesWarningDialogText": "自您上次使用以下补丁以来,它们已被删除。\n\n${patches}\n\n还是继续吗?", + "requiredOptionDialogText": "某些补丁选项必须设置。" }, "appSelectorCard": { "widgetTitle": "选择一个应用", @@ -61,7 +76,8 @@ "widgetSubtitle": "未选择任何应用", "noAppsLabel": "未发现应用程序", "currentVersion": "当前", - "suggestedVersion": "建议" + "suggestedVersion": "建议", + "anyVersion": "所有版本" }, "patchSelectorCard": { "widgetTitle": "选择补丁", @@ -81,7 +97,8 @@ "errorMessage": "无法使用所选应用程序。", "downloadToast": "下载功能尚不可用", "requireSuggestedAppVersionDialogText": "你所选择的应用版本与推荐的版本不一致,这可能会导致不可预料的问题。请使用推荐的版本。\n\n选择的版本:${selected}\n推荐的版本:${suggested}", - "featureNotAvailable": "功能未实现" + "featureNotAvailable": "功能未实现", + "featureNotAvailableText": "此应用程序是一个拆分的 APK,只能通过安装root 权限来修补和可靠安装。 然而,您可以通过从存储中选择一个完整的 APK来修补和安装。" }, "patchesSelectorView": { "viewTitle": "选择补丁", @@ -90,10 +107,14 @@ "newPatches": "新补丁", "patches": "补丁", "doneButton": "完成", + "defaultChip": "默认", "defaultTooltip": "选择所有默认补丁", + "noneChip": "无", "noneTooltip": "取消选择所有补丁", "loadPatchesSelection": "加载补丁选项", - "noPatchesFound": "未找到适用于所选应用程序的补丁" + "noSavedPatches": "所选应用没有保存补丁选择。\n按完成保存当前选择。", + "noPatchesFound": "未找到适用于所选应用程序的补丁", + "setRequiredOption": "某些补丁需要设置选项:\n\n${patches}\n\n请设置后再继续。" }, "patchOptionsView": { "customValue": "自定义值", @@ -105,22 +126,34 @@ "tooltip": "更多输入选项", "selectFilePath": "选择文件路径", "selectFolder": "选择文件夹", - "unsupportedOption": "不支持此选项" + "selectOption": "选择选项", + "requiredOption": "必须填写此选项", + "unsupportedOption": "不支持此选项", + "requiredOptionNull": "必须设置以下选项:\n\n${options}" }, "patchItem": { "unsupportedDialogText": "选择此补丁可能导致修补错误。\n\n应用版本: ${packageVersion}\n当前支持的版本:\n${supportedVersions}", + "unsupportedPatchVersion": "此应用版本不支持补丁。", + "unsupportedRequiredOption": "此补丁包含不支持此应用程序的必填选项", + "patchesChangeWarningDialogText": "建议使用默认补丁选择和选项。更改它们可能会导致意外问题。\n\n您需要在更改任何补丁选择之前在设置中打开\"允许更改补丁选择\"。", "patchesChangeWarningDialogButton": "使用默认选择" }, "installerView": { + "widgetTitle": "安装器", "installType": "选择安装类型", + "installTypeDescription": "选择要继续的安装类型。", "installButton": "安装", "installRootType": "挂载", + "installNonRootType": "常规", + "warning": "禁用补丁应用的自动更新,以避免意外问题。", "pressBackAgain": "再次按返回键取消", "openButton": "打开", + "shareButton": "分享文件", "notificationTitle": "ReVanced Manager 正在应用补丁", "notificationText": "点击返回到安装器", "exportApkButtonTooltip": "导出已修补的 APK", "exportLogButtonTooltip": "导出日志", + "screenshotDetected": "已检测到截图。如果您要共享日志,请共享文本副本。\n\n将日志复制到剪贴板?", "copiedToClipboard": "复制日志至剪贴板", "noExit": "安装程序仍在运行,无法退出..." }, @@ -131,15 +164,27 @@ "debugSectionTitle": "调试", "advancedSectionTitle": "高级", "exportSectionTitle": "导入与导出", + "dataSectionTitle": "数据来源", "themeModeLabel": "应用主题", "systemThemeLabel": "系统", "lightThemeLabel": "亮色主题", "darkThemeLabel": "深色模式", + "dynamicThemeLabel": "Material You 风格", "dynamicThemeHint": "享受更贴近你的设备的体验", "languageLabel": "语言", + "languageUpdated": "语言已更新", + "englishOption": "英语", + "sourcesLabel": "其他来源", + "sourcesLabelHint": "配置 ReVanced 补丁和 ReVanced 集成的替代源", "sourcesIntegrationsLabel": "集成源", + "useAlternativeSources": "使用其他来源", + "useAlternativeSourcesHint": "使用 ReVanced 补丁和 ReVanced 集成的替代来源而不是 API", "sourcesResetDialogTitle": "重置", + "sourcesResetDialogText": "您确定要将源重置为默认值吗?", + "apiURLResetDialogText": "您确定要重置你的 API URL 为默认值吗?", + "sourcesUpdateNote": "注意:这将自动从其他来源下载 ReVanced 补丁和 ReVanced 集成。\n\n这将连接到替代源。", "apiURLLabel": "API 地址", + "apiURLHint": "配置 ReVanced Manager 的 API URL", "selectApiURL": "API 地址", "orgPatchesLabel": "补丁组织", "sourcesPatchesLabel": "补丁来源", @@ -147,35 +192,78 @@ "contributorsLabel": "贡献者", "contributorsHint": "ReVanced 贡献者列表", "logsLabel": "分享日志", + "logsHint": "分享ReVanced Manager日志", + "enablePatchesSelectionLabel": "允许更改补丁选项", + "enablePatchesSelectionHint": "不要阻止选择或发送补丁", + "enablePatchesSelectionWarningText": "更改补丁选择可能会导致意外的问题。\n\n仍然启用吗?", + "disablePatchesSelectionWarningText": "您将禁用更改补丁选择。\n将恢复默认的补丁选择。\n\n无论如何都要禁用?", "autoUpdatePatchesLabel": "自动更新补丁", "autoUpdatePatchesHint": "自动更新补丁至最新版本", + "showUpdateDialogLabel": "显示更新提示", + "showUpdateDialogHint": "当有新的更新时显示对话框", "universalPatchesLabel": "显示通用补丁", "universalPatchesHint": "显示所有应用和通用补丁(可能会减慢应用列表)", "versionCompatibilityCheckLabel": "版本兼容性检查", + "versionCompatibilityCheckHint": "禁止选择与所选应用版本不兼容的补丁", "requireSuggestedAppVersionLabel": "需要推荐的应用版本", + "requireSuggestedAppVersionHint": "阻止选择版本不是建议版本的应用", + "requireSuggestedAppVersionDialogText": "选择非建议版本的应用程序可能会导致意想不到的问题。\n\n您还想继续吗?", "aboutLabel": "关于", "snackbarMessage": "已复制到剪贴板", "restartAppForChanges": "重启应用以生效", "deleteTempDirLabel": "删除临时文件", "deleteTempDirHint": "删除未使用的临时文件", "deletedTempDir": "已删除临时文件", + "exportPatchesLabel": "导出选择的补丁", + "exportPatchesHint": "将选择的补丁导出到 JSON 文件", + "exportedPatches": "导出选择的修补程序", + "noExportFileFound": "没有选择要导出的补丁", + "importPatchesLabel": "导入选择的补丁", + "importPatchesHint": "从 JSON 文件导入补丁选择", + "importedPatches": "已导入的补丁选择", + "resetStoredPatchesLabel": "重置补丁选择", + "resetStoredPatchesHint": "重置存储的补丁选择", + "resetStoredPatchesDialogTitle": "重置补丁选择?", + "resetStoredPatchesDialogText": "补丁的默认选择将被恢复。", + "resetStoredPatches": "补丁选择已重置", + "resetStoredOptionsLabel": "重置补丁选项", + "resetStoredOptionsHint": "重置全部补丁选项", + "resetStoredOptionsDialogTitle": "重置补丁选项?", + "resetStoredOptionsDialogText": "重置补丁选项将删除所有已保存的选项。", + "resetStoredOptions": "选项已重置", "deleteLogsLabel": "清除日志", + "deleteLogsHint": "删除收集的 ReVanced Manager 日志", "deletedLogs": "已删除日志", + "regenerateKeystoreLabel": "重新生成密钥存储", + "regenerateKeystoreHint": "重新生成用于签署应用程序的密钥存储", + "regenerateKeystoreDialogTitle": "重新生成密钥存储?", + "regenerateKeystoreDialogText": "使用旧密钥库签名的已打补丁应用程序将无法更新。", + "regeneratedKeystore": "重新生成密钥库", "exportKeystoreLabel": "导出密钥库", + "exportKeystoreHint": "导出用于签署应用程序的密钥存储", "exportedKeystore": "已导出密钥库", "noKeystoreExportFileFound": "没有要导出的密钥库", "importKeystoreLabel": "导入密钥库", + "importKeystoreHint": "导入用于签署应用程序的密钥库", "importedKeystore": "密钥库已导入\n\n", - "jsonSelectorErrorMessage": "无法使用所选的 json 文件" + "selectKeystorePassword": "密钥存储密码", + "selectKeystorePasswordHint": "选择用于签署应用程序的密钥库密码", + "jsonSelectorErrorMessage": "无法使用所选的 json 文件", + "keystoreSelectorErrorMessage": "无法使用选定的密钥存储文件" }, "appInfoView": { "widgetTitle": "应用信息", "openButton": "打开", "uninstallButton": "卸载", + "unmountButton": "卸载", "rootDialogTitle": "错误", + "unmountDialogText": "您确定要卸载此应用程序吗?", + "uninstallDialogText": "您确定要卸载此应用程序吗?", "rootDialogText": "应用程序曾以超级用户权限安装,但是 ReVanced 管理器目前没有权限。\n请先授予超级用户权限。", "packageNameLabel": "包名", "installTypeLabel": "安装类型", + "mountTypeLabel": "安装", + "regularTypeLabel": "常规", "patchedDateLabel": "修补日期", "appliedPatchesLabel": "应用的补丁", "patchedDateHint": "${date} 于 ${time}", @@ -185,5 +273,30 @@ "contributorsView": { "widgetTitle": "贡献者" }, - "installErrorDialog": {} + "installErrorDialog": { + "mount_version_mismatch": "版本不兼容", + "mount_no_root": "无超级用户权限", + "mount_missing_installation": "未找到安装", + "status_failure_blocked": "安装已被阻止", + "install_failed_verification_failure": "校验失败", + "status_failure_invalid": "安装失败", + "install_failed_version_downgrade": "无法降级", + "status_failure_conflict": "安装冲突", + "status_failure_storage": "安装存储错误", + "status_failure_incompatible": "安装不兼容", + "status_failure_timeout": "安装超时", + "status_unknown": "安装失败", + "mount_version_mismatch_description": "安装失败,因为已安装的应用不同于已修补的应用。\n\n安装您正在挂载的应用程序版本,然后重试。", + "mount_no_root_description": "由于未授予 root 访问权限,安装失败。\n\n授予 ReVanced Manager root 访问权限,然后重试。", + "mount_missing_installation_description": "安装失败,因为此设备上没有安装未经修补的应用以挂载它。\n\n在安装前安装未经修补的应用,然后重试。", + "status_failure_timeout_description": "安装时间太长。\n\n您想再试一次吗?", + "status_failure_storage_description": "由于存储空间不足,安装失败。\n\n释放一些空间,然后重试。", + "status_failure_invalid_description": "由于修补的应用程序无效,安装失败。\n\n卸载该应用程序并重试?", + "status_failure_incompatible_description": "该应用程序与此设备不兼容。\n\n请联系应用程序的开发者并寻求支持。", + "status_failure_conflict_description": "该应用程序的现有安装阻止了安装。\n\n卸载已安装的应用程序并重试?", + "status_failure_blocked_description": "安装被 ${packageName} 阻止。\n\n调整您的安全设置并重试。", + "install_failed_verification_failure_description": "由于验证问题,安装失败。\n\n请调整安全设置并重试。", + "install_failed_version_downgrade_description": "由于修补的应用程序版本低于已安装的应用程序,安装失败。\n\n卸载该应用程序并重试?", + "status_unknown_description": "由于未知原因,安装失败。请重试。" + } } \ No newline at end of file From 3776674eb4c750a0d434769e45005e9fbe5836a1 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 5 Apr 2024 01:10:39 +0000 Subject: [PATCH 40/40] chore(release): 1.20.0-dev.1 [skip ci] # [1.20.0-dev.1](https://github.com/ReVanced/revanced-manager/compare/v1.19.4-dev.7...v1.20.0-dev.1) (2024-04-05) ### Bug Fixes * Do not crash when selecting an APK from storage ([#1768](https://github.com/ReVanced/revanced-manager/issues/1768)) ([8564c1a](https://github.com/ReVanced/revanced-manager/commit/8564c1a72e7f9d2c546fa0025b0626cfba26959e)) ### Features * Improve language update settings ([#1838](https://github.com/ReVanced/revanced-manager/issues/1838)) ([f9e6ef3](https://github.com/ReVanced/revanced-manager/commit/f9e6ef3fd3612e72de358beb9f5d33b827dd2441)) --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 4ec89a46..92ba2c6a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ homepage: https://github.com/ReVanced/revanced-manager publish_to: 'none' -version: 1.19.4-dev.7+101800013 +version: 1.20.0-dev.1+101800014 environment: sdk: '>=3.0.0 <4.0.0'