├── .gitattributes ├── .gitignore ├── .idea ├── .gitignore ├── AndroidProjectSystem.xml ├── assetWizardSettings.xml ├── caches │ └── deviceStreaming.xml ├── codeStyles │ └── Project.xml ├── compiler.xml ├── copyright │ ├── GPL.xml │ └── profiles_settings.xml ├── deploymentTargetSelector.xml ├── dictionaries │ ├── Akhil.xml │ └── Akhil_Kedia.xml ├── encodings.xml ├── gradle.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── jarRepositories.xml ├── kotlinc.xml ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── migrations.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE.GPL ├── PlayStore ├── AllTrans-feature-graphic (1).png ├── AllTrans-feature-graphic-less-wide.png ├── AllTrans-feature-graphic.png ├── ContentTranslation-icon-notification.png ├── Description.html ├── JointPics_20170117_193806.PNG ├── JointPics_20170117_193847.PNG ├── JointPics_20170117_193926.PNG ├── Together.png ├── TogetherS.png ├── Trans.png ├── Trans_nexus6p-portrait.png ├── Untrans.png ├── Untrans_nexus6p-portrait.png ├── client_secrets.json ├── google-play-api-key.json ├── play_strings.xml ├── requirements.txt ├── translations │ ├── values-af │ │ └── strings.xml │ ├── values-ar │ │ └── strings.xml │ ├── values-bg │ │ └── strings.xml │ ├── values-bn │ │ └── strings.xml │ ├── values-bs │ │ └── strings.xml │ ├── values-ca │ │ └── strings.xml │ ├── values-cs │ │ └── strings.xml │ ├── values-cy │ │ └── strings.xml │ ├── values-da │ │ └── strings.xml │ ├── values-de │ │ └── strings.xml │ ├── values-el │ │ └── strings.xml │ ├── values-es │ │ └── strings.xml │ ├── values-et │ │ └── strings.xml │ ├── values-fa │ │ └── strings.xml │ ├── values-fi │ │ └── strings.xml │ ├── values-fil │ │ └── strings.xml │ ├── values-fj │ │ └── strings.xml │ ├── values-fr │ │ └── strings.xml │ ├── values-ga │ │ └── strings.xml │ ├── values-gu │ │ └── strings.xml │ ├── values-hi │ │ └── strings.xml │ ├── values-hr │ │ └── strings.xml │ ├── values-ht │ │ └── strings.xml │ ├── values-hu │ │ └── strings.xml │ ├── values-in │ │ └── strings.xml │ ├── values-is │ │ └── strings.xml │ ├── values-it │ │ └── strings.xml │ ├── values-iw │ │ └── strings.xml │ ├── values-ja │ │ └── strings.xml │ ├── values-kk │ │ └── strings.xml │ ├── values-kn │ │ └── strings.xml │ ├── values-ko │ │ └── strings.xml │ ├── values-lt │ │ └── strings.xml │ ├── values-lv │ │ └── strings.xml │ ├── values-mg │ │ └── strings.xml │ ├── values-mi │ │ └── strings.xml │ ├── values-ml │ │ └── strings.xml │ ├── values-mr │ │ └── strings.xml │ ├── values-ms │ │ └── strings.xml │ ├── values-mt │ │ └── strings.xml │ ├── values-nb │ │ └── strings.xml │ ├── values-nl │ │ └── strings.xml │ ├── values-pa │ │ └── strings.xml │ ├── values-pl │ │ └── strings.xml │ ├── values-pt │ │ └── strings.xml │ ├── values-ro │ │ └── strings.xml │ ├── values-ru │ │ └── strings.xml │ ├── values-sk │ │ └── strings.xml │ ├── values-sl │ │ └── strings.xml │ ├── values-sr │ │ └── strings.xml │ ├── values-sv │ │ └── strings.xml │ ├── values-sw │ │ └── strings.xml │ ├── values-ta │ │ └── strings.xml │ ├── values-te │ │ └── strings.xml │ ├── values-th │ │ └── strings.xml │ ├── values-to │ │ └── strings.xml │ ├── values-tr │ │ └── strings.xml │ ├── values-uk │ │ └── strings.xml │ ├── values-ur │ │ └── strings.xml │ ├── values-vi │ │ └── strings.xml │ ├── values-yue │ │ └── strings.xml │ └── values-zh │ │ └── strings.xml └── update_listings.py ├── README.md ├── android_sign_key.jks ├── app ├── .classpath ├── .gitignore ├── build.gradle ├── fabric.properties ├── google-services.json ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── README.md │ └── xposed_init │ ├── ic_launcher-playstore.png │ ├── ic_launcher-web.png │ ├── kotlin │ └── akhil │ │ └── alltrans │ │ ├── Alltrans.kt │ │ ├── AppListFragment.kt │ │ ├── AppOnCreateHookHandler.kt │ │ ├── AttachBaseContextHookHandler.kt │ │ ├── BatchTranslationManager.kt │ │ ├── CallbackInfo.kt │ │ ├── DrawTextHookHandler.kt │ │ ├── DynamicTextWatcher.kt │ │ ├── GetTranslate.kt │ │ ├── GetTranslateToken.kt │ │ ├── GlobalPreferencesFragment.kt │ │ ├── GtransProvider.kt │ │ ├── InstructionsFragment.kt │ │ ├── LanguageModelItem.kt │ │ ├── LocalPreferenceFragment.kt │ │ ├── MainActivity.kt │ │ ├── ModelManagerAdapter.kt │ │ ├── ModelManagerFragment.kt │ │ ├── MyActivityLifecycleCallbacks.kt │ │ ├── MyResultReceiver.kt │ │ ├── NotificationHookHandler.kt │ │ ├── OriginalCallable.kt │ │ ├── PreferenceList.kt │ │ ├── PreferenceManager.kt │ │ ├── SetTextHookHandler.kt │ │ ├── SharedPrefProvider.kt │ │ ├── ThreadPoolManager.kt │ │ ├── Utils.kt │ │ ├── VirtWebViewOnLoad.kt │ │ ├── WebViewClientWrapper.kt │ │ ├── WebViewOnCreateHookHandler.kt │ │ └── WebViewSetClientHookHandler.kt │ └── res │ ├── color │ ├── bottom_nav_item_color_selector_m3.xml │ └── tab_text_color_selector_m3.xml │ ├── drawable-anydpi │ └── ic_list_icon_placeholder.xml │ ├── drawable-hdpi │ └── ic_list_icon_placeholder.png │ ├── drawable-mdpi │ └── ic_list_icon_placeholder.png │ ├── drawable-xhdpi │ └── ic_list_icon_placeholder.png │ ├── drawable-xxhdpi │ └── ic_list_icon_placeholder.png │ ├── drawable │ ├── bottom_nav_background.xml │ ├── ic_apps.xml │ ├── ic_cloud_download.xml │ ├── ic_instructions.xml │ ├── ic_launcher_background.xml │ ├── ic_search_m3.xml │ └── ic_settings.xml │ ├── layout │ ├── activity_main.xml │ ├── apps_list.xml │ ├── fragment_model_manager.xml │ ├── item_model_manager.xml │ ├── list_item.xml │ ├── preference_material_item.xml │ ├── preference_material_switch.xml │ └── progress_dialog_layout.xml │ ├── menu │ ├── bottom_nav_menu.xml │ └── main_activity_menu.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── values-af │ └── strings.xml │ ├── values-am │ └── strings.xml │ ├── values-ar │ └── strings.xml │ ├── values-as │ └── strings.xml │ ├── values-az │ └── strings.xml │ ├── values-bg │ └── strings.xml │ ├── values-bn │ └── strings.xml │ ├── values-bo │ └── strings.xml │ ├── values-bs │ └── strings.xml │ ├── values-ca │ └── strings.xml │ ├── values-cs │ └── strings.xml │ ├── values-cy │ └── strings.xml │ ├── values-da │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-el │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-et │ └── strings.xml │ ├── values-fa │ └── strings.xml │ ├── values-fi │ └── strings.xml │ ├── values-fil │ └── strings.xml │ ├── values-fj │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-ga │ └── strings.xml │ ├── values-gu │ └── strings.xml │ ├── values-hi │ └── strings.xml │ ├── values-hr │ └── strings.xml │ ├── values-ht │ └── strings.xml │ ├── values-hu │ └── strings.xml │ ├── values-hy │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-is │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-iu │ └── strings.xml │ ├── values-iw │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ka │ └── strings.xml │ ├── values-kk │ └── strings.xml │ ├── values-km │ └── strings.xml │ ├── values-kn │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-ku │ └── strings.xml │ ├── values-ky │ └── strings.xml │ ├── values-lo │ └── strings.xml │ ├── values-lt │ └── strings.xml │ ├── values-lv │ └── strings.xml │ ├── values-mg │ └── strings.xml │ ├── values-mi │ └── strings.xml │ ├── values-mk │ └── strings.xml │ ├── values-ml │ └── strings.xml │ ├── values-mn │ └── strings.xml │ ├── values-mr │ └── strings.xml │ ├── values-ms │ └── strings.xml │ ├── values-mt │ └── strings.xml │ ├── values-my │ └── strings.xml │ ├── values-nb │ └── strings.xml │ ├── values-ne │ └── strings.xml │ ├── values-night │ ├── colors.xml │ ├── theme_overlays.xml │ └── themes.xml │ ├── values-nl │ └── strings.xml │ ├── values-or │ └── strings.xml │ ├── values-pa │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-ps │ └── strings.xml │ ├── values-pt │ └── strings.xml │ ├── values-ro │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-sk │ └── strings.xml │ ├── values-sl │ └── strings.xml │ ├── values-sq │ └── strings.xml │ ├── values-sr │ └── strings.xml │ ├── values-sv │ └── strings.xml │ ├── values-sw │ └── strings.xml │ ├── values-ta │ └── strings.xml │ ├── values-te │ └── strings.xml │ ├── values-th │ └── strings.xml │ ├── values-ti │ └── strings.xml │ ├── values-tk │ └── strings.xml │ ├── values-to │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-tt │ └── strings.xml │ ├── values-ug │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-ur │ └── strings.xml │ ├── values-uz │ └── strings.xml │ ├── values-vi │ └── strings.xml │ ├── values-w820dp │ └── dimens.xml │ ├── values-yue │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values-zh │ └── strings.xml │ ├── values │ ├── arrays.xml │ ├── colors.xml │ ├── dimens.xml │ ├── ids.xml │ ├── keys.xml │ ├── strings.xml │ ├── styles.xml │ ├── styles_preference.xml │ ├── theme_overlays.xml │ └── themes.xml │ └── xml │ ├── perappprefs.xml │ └── preferences.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshots ├── Joint1.png ├── Joint1S.png ├── Joint2.png ├── Joint2S.png ├── Joint3.png ├── Joint3S.png ├── Screen1.png ├── Screen1S.png ├── Screen2.png └── Screen2S.png └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/assetWizardSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/assetWizardSettings.xml -------------------------------------------------------------------------------- /.idea/caches/deviceStreaming.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/caches/deviceStreaming.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/GPL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/copyright/GPL.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/dictionaries/Akhil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/dictionaries/Akhil.xml -------------------------------------------------------------------------------- /.idea/dictionaries/Akhil_Kedia.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/dictionaries/Akhil_Kedia.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/LICENSE.GPL -------------------------------------------------------------------------------- /PlayStore/AllTrans-feature-graphic (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/AllTrans-feature-graphic (1).png -------------------------------------------------------------------------------- /PlayStore/AllTrans-feature-graphic-less-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/AllTrans-feature-graphic-less-wide.png -------------------------------------------------------------------------------- /PlayStore/AllTrans-feature-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/AllTrans-feature-graphic.png -------------------------------------------------------------------------------- /PlayStore/ContentTranslation-icon-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/ContentTranslation-icon-notification.png -------------------------------------------------------------------------------- /PlayStore/Description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/Description.html -------------------------------------------------------------------------------- /PlayStore/JointPics_20170117_193806.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/JointPics_20170117_193806.PNG -------------------------------------------------------------------------------- /PlayStore/JointPics_20170117_193847.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/JointPics_20170117_193847.PNG -------------------------------------------------------------------------------- /PlayStore/JointPics_20170117_193926.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/JointPics_20170117_193926.PNG -------------------------------------------------------------------------------- /PlayStore/Together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/Together.png -------------------------------------------------------------------------------- /PlayStore/TogetherS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/TogetherS.png -------------------------------------------------------------------------------- /PlayStore/Trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/Trans.png -------------------------------------------------------------------------------- /PlayStore/Trans_nexus6p-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/Trans_nexus6p-portrait.png -------------------------------------------------------------------------------- /PlayStore/Untrans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/Untrans.png -------------------------------------------------------------------------------- /PlayStore/Untrans_nexus6p-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/Untrans_nexus6p-portrait.png -------------------------------------------------------------------------------- /PlayStore/client_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/client_secrets.json -------------------------------------------------------------------------------- /PlayStore/google-play-api-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/google-play-api-key.json -------------------------------------------------------------------------------- /PlayStore/play_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/play_strings.xml -------------------------------------------------------------------------------- /PlayStore/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/requirements.txt -------------------------------------------------------------------------------- /PlayStore/translations/values-af/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-af/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-ar/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-bg/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-bn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-bn/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-bs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-bs/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-ca/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-cs/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-cy/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-cy/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-da/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-de/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-el/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-es/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-et/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-fa/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-fi/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-fil/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-fil/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-fj/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-fj/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-fr/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-ga/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-ga/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-gu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-gu/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-hi/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-hr/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-ht/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-ht/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-hu/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-in/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-is/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-is/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-it/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-iw/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-ja/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-kk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-kk/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-kn/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-ko/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-lt/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-lv/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-mg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-mg/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-mi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-mi/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-ml/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-mr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-mr/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-ms/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-mt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-mt/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-nb/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-nl/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-pa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-pa/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-pl/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-pt/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-ro/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-ru/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-sk/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-sl/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-sr/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-sv/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-sw/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-ta/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-te/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-te/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-th/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-to/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-to/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-tr/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-uk/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-ur/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-ur/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-vi/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-yue/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-yue/strings.xml -------------------------------------------------------------------------------- /PlayStore/translations/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/translations/values-zh/strings.xml -------------------------------------------------------------------------------- /PlayStore/update_listings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/PlayStore/update_listings.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/README.md -------------------------------------------------------------------------------- /android_sign_key.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/android_sign_key.jks -------------------------------------------------------------------------------- /app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/.classpath -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/fabric.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/fabric.properties -------------------------------------------------------------------------------- /app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/google-services.json -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/assets/README.md -------------------------------------------------------------------------------- /app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/assets/xposed_init -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/Alltrans.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/Alltrans.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/AppListFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/AppListFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/AppOnCreateHookHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/AppOnCreateHookHandler.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/AttachBaseContextHookHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/AttachBaseContextHookHandler.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/BatchTranslationManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/BatchTranslationManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/CallbackInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/CallbackInfo.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/DrawTextHookHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/DrawTextHookHandler.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/DynamicTextWatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/DynamicTextWatcher.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/GetTranslate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/GetTranslate.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/GetTranslateToken.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/GetTranslateToken.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/GlobalPreferencesFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/GlobalPreferencesFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/GtransProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/GtransProvider.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/InstructionsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/InstructionsFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/LanguageModelItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/LanguageModelItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/LocalPreferenceFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/LocalPreferenceFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/ModelManagerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/ModelManagerAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/ModelManagerFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/ModelManagerFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/MyActivityLifecycleCallbacks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/MyActivityLifecycleCallbacks.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/MyResultReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/MyResultReceiver.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/NotificationHookHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/NotificationHookHandler.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/OriginalCallable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/OriginalCallable.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/PreferenceList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/PreferenceList.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/PreferenceManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/PreferenceManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/SetTextHookHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/SetTextHookHandler.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/SharedPrefProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/SharedPrefProvider.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/ThreadPoolManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/ThreadPoolManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/Utils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/VirtWebViewOnLoad.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/VirtWebViewOnLoad.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/WebViewClientWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/WebViewClientWrapper.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/WebViewOnCreateHookHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/WebViewOnCreateHookHandler.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/akhil/alltrans/WebViewSetClientHookHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/kotlin/akhil/alltrans/WebViewSetClientHookHandler.kt -------------------------------------------------------------------------------- /app/src/main/res/color/bottom_nav_item_color_selector_m3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/color/bottom_nav_item_color_selector_m3.xml -------------------------------------------------------------------------------- /app/src/main/res/color/tab_text_color_selector_m3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/color/tab_text_color_selector_m3.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/ic_list_icon_placeholder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/drawable-anydpi/ic_list_icon_placeholder.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_list_icon_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/drawable-hdpi/ic_list_icon_placeholder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_list_icon_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/drawable-mdpi/ic_list_icon_placeholder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_list_icon_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/drawable-xhdpi/ic_list_icon_placeholder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_list_icon_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/drawable-xxhdpi/ic_list_icon_placeholder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_nav_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/drawable/bottom_nav_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/drawable/ic_apps.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cloud_download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/drawable/ic_cloud_download.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_instructions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/drawable/ic_instructions.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_search_m3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/drawable/ic_search_m3.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/apps_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/layout/apps_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_model_manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/layout/fragment_model_manager.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_model_manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/layout/item_model_manager.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/layout/list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/preference_material_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/layout/preference_material_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/preference_material_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/layout/preference_material_switch.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/progress_dialog_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/layout/progress_dialog_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/bottom_nav_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/menu/bottom_nav_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/main_activity_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/menu/main_activity_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-af/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-af/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-am/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-am/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-as/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-as/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-az/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-az/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-bn/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bo/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-bo/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-bs/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cy/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-cy/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-fa/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fil/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-fil/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fj/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-fj/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ga/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ga/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-gu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-gu/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-hi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ht/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ht/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hy/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-hy/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-is/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-is/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-iu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-iu/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ka/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ka/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-kk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-kk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-km/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-km/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-kn/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ku/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ku/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ky/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ky/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-lo/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-lo/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-lv/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-mg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-mg/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-mi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-mi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-mk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-mk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ml/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-mn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-mn/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-mr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-mr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ms/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-mt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-mt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-my/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-my/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-nb/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ne/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ne/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/theme_overlays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-night/theme_overlays.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-or/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-or/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-pa/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ps/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ps/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sq/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-sq/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-sw/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ta/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-te/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-te/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ti/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ti/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-tk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-to/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-to/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-tt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ug/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ug/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ur/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-ur/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uz/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-uz/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-yue/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-yue/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /app/src/main/res/values/keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values/keys.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles_preference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values/styles_preference.xml -------------------------------------------------------------------------------- /app/src/main/res/values/theme_overlays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values/theme_overlays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/perappprefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/xml/perappprefs.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/app/src/main/res/xml/preferences.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshots/Joint1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/screenshots/Joint1.png -------------------------------------------------------------------------------- /screenshots/Joint1S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/screenshots/Joint1S.png -------------------------------------------------------------------------------- /screenshots/Joint2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/screenshots/Joint2.png -------------------------------------------------------------------------------- /screenshots/Joint2S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/screenshots/Joint2S.png -------------------------------------------------------------------------------- /screenshots/Joint3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/screenshots/Joint3.png -------------------------------------------------------------------------------- /screenshots/Joint3S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/screenshots/Joint3S.png -------------------------------------------------------------------------------- /screenshots/Screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/screenshots/Screen1.png -------------------------------------------------------------------------------- /screenshots/Screen1S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/screenshots/Screen1S.png -------------------------------------------------------------------------------- /screenshots/Screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/screenshots/Screen2.png -------------------------------------------------------------------------------- /screenshots/Screen2S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pbzinwindows/AllTrans/HEAD/screenshots/Screen2S.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------