mirror of
https://github.com/ActivityLauncher/ActivityLauncher.git
synced 2026-08-04 13:19:57 +00:00
chore(docs): links to organization and discord
This commit is contained in:
parent
6a29110f88
commit
26513fb60c
103 changed files with 329 additions and 211 deletions
13
README.md
13
README.md
|
|
@ -1,21 +1,28 @@
|
|||
[](https://github.com/butzist/ActivityLauncher/actions/workflows/android-master.yml)
|
||||
[](https://github.com/orgs/ActivityLauncher/repositories)
|
||||
[](https://discord.gg/a4WSmdHZTa)
|
||||
|
||||
# Activity Launcher
|
||||
|
||||
Launches hidden activities and creates shortcuts for installed apps
|
||||
Launches hidden activities and creates shortcuts for installed apps.
|
||||
|
||||
This organization contains the app's source code and related projects like plugins for launching (e.g., Shizuku) and shortcut creation.
|
||||
|
||||
<a href="https://f-droid.org/packages/de.szalkowski.activitylauncher/" target="_blank">
|
||||
<img src="https://f-droid.org/badge/get-it-on.png" alt="Get it on F-Droid" height="80"/></a>
|
||||
<a href="https://play.google.com/store/apps/details?id=de.szalkowski.activitylauncher.pro" target="_blank">
|
||||
<img src="https://play.google.com/intl/en_us/badges/images/generic/en-play-badge.png" alt="Get it on Google Play" height="80"/></a>
|
||||
|
||||
## Support and Feature Requests
|
||||
|
||||
Join our [Discord server](https://discord.gg/a4WSmdHZTa) for support, feature requests, and community discussions.
|
||||
|
||||
## Shortcuts not created
|
||||
|
||||
In case the shortcuts are not created in your home screen, make sure Activity Launcher has the "Home screen shortcuts" permission.
|
||||
|
||||
Click on Settings -> Apps -> Manage apps -> Activity Launcher -> Other permissions -> Home screen shortcuts.
|
||||
|
||||
See [#267](https://github.com/butzist/ActivityLauncher/issues/267).
|
||||
See [#267](https://github.com/orgs/ActivityLauncher/repositories).
|
||||
|
||||
## Translations
|
||||
|
||||
|
|
|
|||
|
|
@ -23,6 +23,15 @@
|
|||
android:action="android.intent.action.VIEW"
|
||||
android:data="@string/url_github_project" />
|
||||
</Preference>
|
||||
<Preference
|
||||
android:key="action_support_discord"
|
||||
android:summary="@string/settings_summary_support_discord"
|
||||
android:title="@string/settings_support_discord"
|
||||
app:singleLineTitle="true">
|
||||
<intent
|
||||
android:action="android.intent.action.VIEW"
|
||||
android:data="@string/url_discord" />
|
||||
</Preference>
|
||||
</PreferenceCategory>
|
||||
|
||||
<PreferenceCategory
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
<resources>
|
||||
<string name="url_pro" translatable="false">https://play.google.com/store/apps/details?id=de.szalkowski.activitylauncher.pro</string>
|
||||
<string name="url_github_project" translatable="false">https://github.com/butzist/ActivityLauncher</string>
|
||||
<string name="url_github_project" translatable="false">https://github.com/orgs/ActivityLauncher/repositories</string>
|
||||
<string name="url_discord" translatable="false">https://discord.gg/a4WSmdHZTa</string>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
<string name="exception_invalid_component_name" comment="Error message for dangerous or invalid component names. %s is the problematic component">Invalid or potentially harmful component name: %s</string>
|
||||
<string name="category_title_about" comment="Settings category header for about and info section">About</string>
|
||||
<string name="action_view_source" comment="Settings action to view the app\'s source code on GitHub">View source code</string>
|
||||
<string name="summary_action_view_source" comment="Description for the view source code setting">The source code of this App is available for reading and modifying on GitHub. Feel free to send us pull requests with improvements and bugfixes.</string>
|
||||
<string name="summary_action_view_source" comment="Description for the view source code setting">The source code of this App and related projects like plugins for launching (e.g., Shizuku) and shortcut creation are available on GitHub. Feel free to send us pull requests with improvements and bugfixes.</string>
|
||||
<string name="filter_hint" comment="Hint text in the filter search input field">package/action</string>
|
||||
<string name="activity_settings" comment="Navigation item label for the settings screen">Settings</string>
|
||||
<string name="settings_hide_private" comment="Settings switch to hide private/unexported activities">Hide private activities</string>
|
||||
|
|
@ -46,7 +46,9 @@
|
|||
<string name="settings_pro_version" comment="Settings link to the Pro/ad-free version of the app">Activity Launcher Pro</string>
|
||||
<string name="settings_summary_pro_version" comment="Description for the Pro version setting">Want to support the app and remove ads? Get Activity Launcher Pro on Google Play — it helps fund development and is fully open-source.</string>
|
||||
<string name="settings_github" comment="Settings link to the GitHub project page">GitHub project</string>
|
||||
<string name="settings_summary_github" comment="Description for the GitHub project setting">You can download the pre-built APK from the Activity Launcher open-source project on GitHub. Advanced users can also explore the source code, support the developers, and contribute with translations or pull requests.</string>
|
||||
<string name="settings_summary_github" comment="Description for the GitHub project setting">You can download the pre-built APK from our GitHub organization. Explore the source code of the app and related projects like plugins for launching (e.g., Shizuku) and shortcut creation.</string>
|
||||
<string name="settings_support_discord">Support and Feature Requests</string>
|
||||
<string name="settings_summary_support_discord">Join our Discord server for support, feature requests, and community discussions.</string>
|
||||
<string name="category_title_ad_free" comment="Settings category header for ad-free version options">Ad-free versions</string>
|
||||
<string name="title_dialog_support" comment="Dialog title for the support/donate dialog">Thanks for using Activity Launcher</string>
|
||||
<string name="dialog_support" comment="Dialog message encouraging users to support the app">We\'ve added ads to help fund future development. Prefer no ads? Upgrade to Activity Launcher Pro on Google Play — it\'s fully open-source and supports continued work on the app. You can also get the app for free on GitHub. Support there is optional but helps us a lot.</string>
|
||||
|
|
|
|||
|
|
@ -35,5 +35,14 @@
|
|||
android:action="android.intent.action.VIEW"
|
||||
android:data="@string/url_github_project" />
|
||||
</Preference>
|
||||
<Preference
|
||||
android:key="action_support_discord"
|
||||
android:summary="@string/settings_summary_support_discord"
|
||||
android:title="@string/settings_support_discord"
|
||||
app:singleLineTitle="true">
|
||||
<intent
|
||||
android:action="android.intent.action.VIEW"
|
||||
android:data="@string/url_discord" />
|
||||
</Preference>
|
||||
</PreferenceCategory>
|
||||
</PreferenceScreen>
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Of jy nou 'n kraggebruiker, ontwikkelaar of net nuuskierig is, Aktiwiteit Launch
|
|||
- Skoon en liggewig met 'n eenvoudige koppelvlak
|
||||
|
||||
💡 Oor die Projek:
|
||||
Aktiwiteit Launcher Pro is 'n oopbronprojek beskikbaar by https://github.com/butzist/ActivityLauncher.
|
||||
Aktiwiteit Launcher Pro is 'n oopbronprojek beskikbaar by https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Raak Betrokke:
|
||||
Dit is 'n gemeenskapsgedrewe projek – jy is welkom om kode, vertalings of idees by te dra. Help ons om te verbeter en te groei!
|
||||
|
||||
Webwerf: https://activitylauncher.net
|
||||
Bronkode en vertalings: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Bronkode en vertalings: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Kies in vir Beta-vrystelling: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
- نظيف وخفيف الوزن مع واجهة بسيطة
|
||||
|
||||
💡 حول المشروع:
|
||||
مشغل النشاط برو هو مشروع مفتوح المصدر متاح على: https://github.com/butzist/ActivityLauncher.
|
||||
مشغل النشاط برو هو مشروع مفتوح المصدر متاح على: https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 شارك:
|
||||
هذا مشروع مجتمعي - نرحب بك للمساهمة بالكود أو الترجمات أو الأفكار. ساعدنا على التحسين والتطور!
|
||||
|
||||
الموقع الإلكتروني: https://activitylauncher.net
|
||||
الكود المصدري والترجمات: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
الكود المصدري والترجمات: https://github.com/orgs/ActivityLauncher/repositories
|
||||
الاشتراك في الإصدار التجريبي: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Activity Launcher-in gələcək təkmilləşdirilməsini təmin etmək, gizli t
|
|||
- Sadə interfeys ilə səliqəli və yüngül
|
||||
|
||||
💡 Layihə Haqqında:
|
||||
Activity Launcher Pro https://github.com/butzist/ActivityLauncher ünvanında mövcud olan açıq mənbəli layihədir.
|
||||
Activity Launcher Pro https://github.com/orgs/ActivityLauncher/repositories ünvanında mövcud olan açıq mənbəli layihədir.
|
||||
|
||||
🤝 İştirak Edin:
|
||||
Bu, icma tərəfindən idarə olunan bir layihədir – siz kodu, tərcümələri və ya ideyaları təqdim edə bilərsiniz. Təkmilləşdirməyə və böyüməyə kömək edin!
|
||||
|
||||
Veb sayt: https://activitylauncher.net
|
||||
Mənbə kodu və tərcümələr: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Mənbə kodu və tərcümələr: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Beta buraxılışı üçün abunə olun: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,12 +8,12 @@
|
|||
- Изчистен и лек с прост интерфейс
|
||||
|
||||
💡 Относно проекта:
|
||||
Activity Launcher Pro е проект с отворен код, достъпен на https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro е проект с отворен код, достъпен на https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Включете се:
|
||||
Това е проект, управляван от общността – добре дошли сте да допринесете с код, преводи или идеи. Помогнете ни да се подобрим и да растем!
|
||||
|
||||
Уебсайт: https://activitylauncher.net
|
||||
Уебсайт: https://activitylauncher.net
|
||||
Програмен код и преводи: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Програмен код и преводи: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Включете се за Beta версия: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Tant si ets un usuari avançat, un desenvolupador o simplement tens curiositat,
|
|||
- Neteja i lleugera amb una interfície senzilla
|
||||
|
||||
💡 Quant al projecte:
|
||||
Activity Launcher Pro és un projecte de codi obert disponible a https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro és un projecte de codi obert disponible a https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Participa:
|
||||
Aquest és un projecte impulsat per la comunitat: pots contribuir amb codi, traduccions o idees. Ajuda'ns a millorar i créixer!
|
||||
|
||||
Lloc web: https://activitylauncher.net
|
||||
Codi font i traduccions: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Codi font i traduccions: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Participa a la versió beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Ať už jste pokročilý uživatel, vývojář nebo jen zvědaví, Activity Laun
|
|||
- Čistý a nenáročný s jednoduchým rozhraním
|
||||
|
||||
💡 O projektu:
|
||||
Activity Launcher Pro je open-source projekt dostupný na https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro je open-source projekt dostupný na https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Zapojte se:
|
||||
Toto je komunitní projekt. Jsou vítány příspěvky do kódu, do překladu nebo čistě jen nápady. Pomozte nám aplikaci vylepšovat a růst!
|
||||
|
||||
Web: https://activitylauncher.net
|
||||
Zdrojový kód a překlady: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Zdrojový kód a překlady: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Přihlaste se k odběru beta verzí: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Uanset om man er superbruger, udvikler eller blot nysgerrig, muliggør Activity
|
|||
- Ren og letvægt med en enkel brugerflade
|
||||
|
||||
💡 Om projektet:
|
||||
Activity Launcher Pro er et open source-projekt, der er tilgængeligt på https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro er et open source-projekt, der er tilgængeligt på https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Bliv involveret:
|
||||
Dette er et fællesskabsdrevet projekt – man er velkommen til at bidrage med kode, oversættelser eller idéer. Hjælp os med at forbedre og vokse!
|
||||
|
||||
Websted: https://activitylauncher.net
|
||||
Kildekode og oversættelser: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Kildekode og oversættelser: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Tilvælg Beta-versionen: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Egal, ob du ein Poweruser, Entwickler oder einfach nur neugierig bist, Activity
|
|||
- Sauber und schlank mit einer einfachen Benutzeroberfläche
|
||||
|
||||
💡 Über das Projekt:
|
||||
Activity Launcher Pro ist ein Open-Source-Projekt, das unter https://github.com/butzist/ActivityLauncher verfügbar ist.
|
||||
Activity Launcher Pro ist ein Open-Source-Projekt, das unter https://github.com/orgs/ActivityLauncher/repositories verfügbar ist.
|
||||
|
||||
🤝 Mitmachen:
|
||||
Dies ist ein Community-gesteuertes Projekt – du kannst gerne Code, Übersetzungen oder Ideen beitragen. Hilf uns, uns zu verbessern und zu wachsen!
|
||||
|
||||
Webseite: https://activitylauncher.net
|
||||
Quellcode und Übersetzungen: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Quellcode und Übersetzungen: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Opt-in für Beta-Version: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
- Καθαρό και ελαφρύ με απλή διεπαφή
|
||||
|
||||
💡 Σχετικά με το έργο:
|
||||
Το Εκκινητής Δραστηριότητας είναι ένα έργο ανοιχτού κώδικα διαθέσιμο στη διεύθυνση https://github.com/butzist/ActivityLauncher.
|
||||
Το Εκκινητής Δραστηριότητας είναι ένα έργο ανοιχτού κώδικα διαθέσιμο στη διεύθυνση https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Εμπλακείτε:
|
||||
Αυτό είναι ένα έργο που καθοδηγείται από την κοινότητα – μπορείτε να συνεισφέρετε κώδικα, μεταφράσεις ή ιδέες. Βοηθήστε μας να βελτιωθούμε και να αναπτυχθούμε!
|
||||
|
||||
Ιστότοπος: https://activitylauncher.net
|
||||
Πηγαίος κώδικας και μεταφράσεις: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Πηγαίος κώδικας και μεταφράσεις: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Εγγραφείτε για την Beta έκδοση: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Whether you're a power user, developer or just curious, Activity Launcher Pro gi
|
|||
- Clean and lightweight with a simple interface
|
||||
|
||||
💡 About the Project:
|
||||
Activity Launcher Pro is an open-source project available at https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro is an open-source project available at https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Get Involved:
|
||||
This is a community-driven project – you're welcome to contribute code, translations, or ideas. Help us improve and grow!
|
||||
|
||||
Website: https://activitylauncher.net
|
||||
Source code and translations: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Source code and translations: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Opt-in for Beta release: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Whether you're a power user, developer, or just curious, Activity Launcher Pro g
|
|||
- Clean and lightweight with a simple interface
|
||||
|
||||
💡 About the Project:
|
||||
Activity Launcher Pro is an open-source project available at https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro is an open-source project available at https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Get Involved:
|
||||
This is a community-driven project – you're welcome to contribute code, translations, or ideas. Help us improve and grow!
|
||||
|
||||
Website: https://activitylauncher.net
|
||||
Source code and translations: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Source code and translations: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Opt-in for Beta release: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Tanto si eres un usuario avanzado, un desarrollador o simplemente tienes curiosi
|
|||
- Limpio y ligero con una interfaz sencilla
|
||||
|
||||
💡 Acerca del proyecto:
|
||||
Activity Launcher Pro es un proyecto de código abierto disponible en https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro es un proyecto de código abierto disponible en https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Participa:
|
||||
Este es un proyecto impulsado por la comunidad: puedes contribuir con código, traducciones o ideas. ¡Ayúdanos a mejorar y crecer!
|
||||
|
||||
Sitio web: https://activitylauncher.net
|
||||
Código fuente y traducciones: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Código fuente y traducciones: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Participa en la versión Beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
- تمیز و سبک با یک رابط کاربری ساده
|
||||
|
||||
💡 درباره پروژه:
|
||||
اکتیویتی لانچر حرفه ای یک پروژه منبع باز است که در https://github.com/butzist/ActivityLauncher موجود است.
|
||||
اکتیویتی لانچر حرفه ای یک پروژه منبع باز است که در https://github.com/orgs/ActivityLauncher/repositories موجود است.
|
||||
|
||||
🤝 مشارکت کنید:
|
||||
این یک پروژه مبتنی بر جامعه است - شما می توانید کد، ترجمه یا ایده ها را به اشتراک بگذارید. به ما در بهبود و رشد کمک کنید!
|
||||
|
||||
وب سایت: https://activitylauncher.net
|
||||
کد منبع و ترجمهها: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
کد منبع و ترجمهها: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Opt-in برای نسخه بتا: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Olitpa tehokäyttäjä, kehittäjä tai vain utelias, Activity Launcher Pro anta
|
|||
- Puhdas ja kevyt yksinkertaisella käyttöliittymällä
|
||||
|
||||
💡 Tietoja projektista:
|
||||
Activity Launcher Pro on avoimen lähdekoodin projekti, joka on saatavilla osoitteessa https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro on avoimen lähdekoodin projekti, joka on saatavilla osoitteessa https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Osallistu:
|
||||
Tämä on yhteisölähtöinen projekti – olet tervetullut osallistumaan koodilla, käännöksillä tai ideoilla. Auta meitä kehittämään ja kasvamaan!
|
||||
|
||||
Verkkosivusto: https://activitylauncher.net
|
||||
Lähdekoodi ja käännökset: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Lähdekoodi ja käännökset: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Osallistu Beta-julkaisuun: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Que vous soyez un utilisateur expérimenté, un développeur ou simplement curie
|
|||
- Propre et léger avec une interface simple
|
||||
|
||||
💡 À propos du projet :
|
||||
Lanceur d'activités Pro est un projet open source disponible sur https://github.com/butzist/ActivityLauncher.
|
||||
Lanceur d'activités Pro est un projet open source disponible sur https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Impliquez-vous :
|
||||
Il s'agit d'un projet communautaire : vous êtes invités à contribuer du code, des traductions ou des idées. Aidez-nous à nous améliorer et à nous développer !
|
||||
|
||||
Site Web : https://activitylauncher.net
|
||||
Code source et traductions : https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Code source et traductions : https://github.com/orgs/ActivityLauncher/repositories
|
||||
Inscrivez-vous à la version bêta : https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Of jy nou 'n kraggebruiker, ontwikkelaar of net nuuskierig is, Aktiwiteit Launch
|
|||
- Skoon en liggewig met 'n eenvoudige koppelvlak
|
||||
|
||||
💡 Oor die Projek:
|
||||
Aktiwiteit Launcher is gebaseer op die oopbronprojek beskikbaar by https://github.com/butzist/ActivityLauncher.
|
||||
Aktiwiteit Launcher is gebaseer op die oopbronprojek beskikbaar by https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Skakel oor na advertensievry & steun ons
|
||||
Lewer jy ’n voorkeur vir ’n advertensievrye ervaring? Laai Aktiwiteit Launcher Pro af by die Play Store:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Dit is 'n gemeenskapsgedrewe projek – jy is welkom om kode, vertalings of idees by te dra. Help ons om te verbeter en te groei!
|
||||
|
||||
Webwerf: https://activitylauncher.net
|
||||
Bronkode en vertalings: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Bronkode en vertalings: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Kies in vir Beta-vrystelling: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- نظيف وخفيف الوزن مع واجهة بسيطة
|
||||
|
||||
💡 حول المشروع:
|
||||
يعتمد Activity Launcher على مشروع مفتوح المصدر متاح على https://github.com/butzist/ActivityLauncher.
|
||||
يعتمد Activity Launcher على مشروع مفتوح المصدر متاح على https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 توقف عن الإعلانات وادعمنا
|
||||
تُفضل تجربة خالية من الإعلانات؟ احصل على مشغل النشاط برو من متجر التطبيقات:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
هذا مشروع مجتمعي - نرحب بك للمساهمة بالكود أو الترجمات أو الأفكار. ساعدنا على التحسين والتطور!
|
||||
|
||||
الموقع الإلكتروني: https://activitylauncher.net
|
||||
الكود المصدري والترجمات: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
الكود المصدري والترجمات: https://github.com/orgs/ActivityLauncher/repositories
|
||||
الاشتراك في الإصدار التجريبي: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Activity Launcher ilə Android proqramlarınızın tam potensialını kəşf edi
|
|||
- Sadə interfeys ilə səliqəli və yüngül
|
||||
|
||||
💡 Layihə Haqqında:
|
||||
Activity Launcher https://github.com/butzist/ActivityLauncher ünvanında mövcud olan açıq mənbəli layihəyə əsaslanır.
|
||||
Activity Launcher https://github.com/orgs/ActivityLauncher/repositories ünvanında mövcud olan açıq mənbəli layihəyə əsaslanır.
|
||||
|
||||
🎁 Reklamsız versiyaya keçin və bizi dəstəkləyin
|
||||
Reklamsız təcrübəyə üstünlük verirsiniz? Activity Launcher Pro tətbiqini Play Store-dan yükləyin:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Bu, icma tərəfindən idarə olunan bir layihədir – siz kodu, tərcümələri və ya ideyaları təqdim edə bilərsiniz. Təkmilləşdirməyə və böyüməyə kömək edin!
|
||||
|
||||
Veb sayt: https://activitylauncher.net
|
||||
Mənbə kodu və tərcümələr: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Mənbə kodu və tərcümələr: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Beta versiyasına abunə olun: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- Изчистен и лек с прост интерфейс
|
||||
|
||||
💡 Относно проекта:
|
||||
Activity Launcher е базиран на проекта с отворен код, достъпен на https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher е базиран на проекта с отворен код, достъпен на https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Преминете към версия без реклами и ни подкрепете
|
||||
Предпочитате изживяване без реклами? Изтеглете Activity Launcher Pro от Play Store:
|
||||
|
|
@ -23,6 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Това е проект, управляван от общността – добре дошли сте да допринесете с код, преводи или идеи. Помогнете ни да се подобрим и да растем!
|
||||
|
||||
Уебсайт: https://activitylauncher.net
|
||||
Уебсайт: https://activitylauncher.net
|
||||
Програмен код и преводи: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Програмен код и преводи: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Включете се за бета версия: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Tant si sou un usuari avançat, un desenvolupador o simplement teniu curiositat,
|
|||
- Neteja i lleugera amb una interfície senzilla
|
||||
|
||||
💡 Quant al projecte:
|
||||
Activity Launcher es basa en el projecte de codi obert disponible a https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher es basa en el projecte de codi obert disponible a https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Passa’t a la versió sense anuncis i dona’ns suport
|
||||
Prefereixes una experiència sense anuncis? Descarrega Activity Launcher Pro des de la Play Store:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Aquest és un projecte impulsat per la comunitat: pots contribuir amb codi, traduccions o idees. Ajuda'ns a millorar i créixer!
|
||||
|
||||
Lloc web: https://activitylauncher.net
|
||||
Codi font i traduccions: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Codi font i traduccions: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Participa en la versió beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Ať už jste pokročilý uživatel, vývojář nebo jen zvědavý, Activity Laun
|
|||
- Čistý a nenáročný s jednoduchým rozhraním
|
||||
|
||||
💡 O projektu:
|
||||
Activity Launcher je založen na open-source projektu dostupném na https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher je založen na open-source projektu dostupném na https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Vyberte si verzi bez reklam a podpořte nás
|
||||
Upřednostňujete zážitek bez reklam? Stáhněte si Activity Launcher Pro v Obchodě Google Play:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Toto je komunitní projekt. Jsou vítány příspěvky do kódu, do překladu nebo čistě jen nápady. Pomozte nám aplikaci vylepšovat a růst!
|
||||
|
||||
Web: https://activitylauncher.net
|
||||
Zdrojový kód a překlady: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Zdrojový kód a překlady: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Přihlaste se k odběru beta verze: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Uanset om man er superbruger, udvikler eller blot nysgerrig, muliggør Activity
|
|||
- Ren og letvægt med en enkel brugerflade
|
||||
|
||||
💡 Om projektet:
|
||||
Activity Launcher er baseret på open source-projektet, der er tilgængeligt på https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher er baseret på open source-projektet, der er tilgængeligt på https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Gå til en reklamefri version og støt os
|
||||
Foretrækker du en oplevelse uden reklamer? Hent Activity Launcher Pro fra Play Store:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Dette er et fællesskabsdrevet projekt – man er velkommen til at bidrage med kode, oversættelser eller idéer. Hjælp os med at forbedre og vokse!
|
||||
|
||||
Websted: https://activitylauncher.net
|
||||
Kildekode og oversættelser: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Kildekode og oversættelser: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Tilvælg betaudgivelsen: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Egal, ob du ein Poweruser, Entwickler oder einfach nur neugierig bist, Activity
|
|||
- Sauber und schlank mit einer einfachen Benutzeroberfläche
|
||||
|
||||
💡 Über das Projekt:
|
||||
Activity Launcher basiert auf dem Open-Source-Projekt, das unter https://github.com/butzist/ActivityLauncher verfügbar ist.
|
||||
Activity Launcher basiert auf dem Open-Source-Projekt, das unter https://github.com/orgs/ActivityLauncher/repositories verfügbar ist.
|
||||
|
||||
🎁 Gehen Sie werbefrei und unterstützen Sie uns
|
||||
Bevorzugen Sie ein werbefreies Erlebnis? Laden Sie Activity Launcher Pro im Play Store herunter:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Dies ist ein Community-gesteuertes Projekt – du kannst gerne Code, Übersetzungen oder Ideen beitragen. Hilf uns, uns zu verbessern und zu wachsen!
|
||||
|
||||
Webseite: https://activitylauncher.net
|
||||
Quellcode und Übersetzungen: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Quellcode und Übersetzungen: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Opt-in für Beta-Version: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- Καθαρό και ελαφρύ με απλή διεπαφή
|
||||
|
||||
💡 Σχετικά με το έργο:
|
||||
Ο Εκκινητής Δραστηριοτήτων βασίζεται στο έργο ανοιχτού κώδικα που είναι διαθέσιμο στη διεύθυνση https://github.com/butzist/ActivityLauncher.
|
||||
Ο Εκκινητής Δραστηριοτήτων βασίζεται στο έργο ανοιχτού κώδικα που είναι διαθέσιμο στη διεύθυνση https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Περάστε σε έκδοση χωρίς διαφημίσεις και υποστηρίξτε μας
|
||||
Προτιμάτε μια εμπειρία χωρίς διαφημίσεις; Κατεβάστε τον Εκκινητή Δραστηριότητας Pro από το Play Store:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Αυτό είναι ένα έργο που καθοδηγείται από την κοινότητα – μπορείτε να συνεισφέρετε κώδικα, μεταφράσεις ή ιδέες. Βοηθήστε μας να βελτιωθούμε και να αναπτυχθούμε!
|
||||
|
||||
Ιστότοπος: https://activitylauncher.net
|
||||
Πηγαίος κώδικας και μεταφράσεις: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Πηγαίος κώδικας και μεταφράσεις: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Συμμετοχή στην Beta έκδοση: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Whether you're a power user, developer, or just curious, Activity Launcher gives
|
|||
- Clean and lightweight with a simple interface
|
||||
|
||||
💡 About the Project:
|
||||
Activity Launcher is based on the open-source project available at https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher is based on the open-source project available at https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Go Ad‑Free & Support Us
|
||||
Prefer an ad‑free experience? Get Activity Launcher Pro on the Play Store:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
This is a community-driven project – you're welcome to contribute code, translations, or ideas. Help us improve and grow!
|
||||
|
||||
Website: https://activitylauncher.net
|
||||
Source code and translations: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Source code and translations: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Opt-in for Beta release: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Whether you're a power user, developer, or just curious, Activity Launcher gives
|
|||
- Clean and lightweight with a simple interface
|
||||
|
||||
💡 About the Project:
|
||||
Activity Launcher is based on the open-source project available at https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher is based on the open-source project available at https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Go Ad‑Free & Support Us
|
||||
Prefer an ad‑free experience? Get Activity Launcher Pro on the Play Store:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
This is a community-driven project – you're welcome to contribute code, translations, or ideas. Help us improve and grow!
|
||||
|
||||
Website: https://activitylauncher.net
|
||||
Source code and translations: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Source code and translations: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Opt-in for Beta release: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Tanto si eres un usuario avanzado, un desarrollador o simplemente tienes curiosi
|
|||
- Limpio y ligero con una interfaz sencilla
|
||||
|
||||
💡 Acerca del proyecto:
|
||||
Activity Launcher se basa en el proyecto de código abierto disponible en https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher se basa en el proyecto de código abierto disponible en https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Pásate a la versión sin anuncios y apóyanos
|
||||
¿Prefieres una experiencia sin anuncios? Descarga Activity Launcher Pro desde Google Play:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Este es un proyecto impulsado por la comunidad: puedes contribuir con código, traducciones o ideas. ¡Ayúdanos a mejorar y crecer!
|
||||
|
||||
Sitio web: https://activitylauncher.net
|
||||
Código fuente y traducciones: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Código fuente y traducciones: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Participa en la versión beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- تمیز و سبک با یک رابط کاربری ساده
|
||||
|
||||
💡 درباره پروژه:
|
||||
اکتیویتی لانچر مبتنی بر پروژه متنباز موجود در https://github.com/butzist/ActivityLauncher است.
|
||||
اکتیویتی لانچر مبتنی بر پروژه متنباز موجود در https://github.com/orgs/ActivityLauncher/repositories است.
|
||||
|
||||
🎁 به نسخه بدون تبلیغات بروید و از ما حمایت کنید
|
||||
آیا تجربهای بدون تبلیغات را ترجیح میدهید؟ اکتیویتی لانچر حرفهای را از فروشگاه Play دانلود کنید:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
این یک پروژه مبتنی بر جامعه است - شما می توانید کد، ترجمه یا ایده ها را به اشتراک بگذارید. به ما در بهبود و رشد کمک کنید!
|
||||
|
||||
وب سایت: https://activitylauncher.net
|
||||
کد منبع و ترجمهها: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
کد منبع و ترجمهها: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Opt-in برای نسخه بتا: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Olitpa kokenut käyttäjä, kehittäjä tai vain utelias, Activity Launcher anta
|
|||
- Puhdas ja kevyt yksinkertaisella käyttöliittymällä
|
||||
|
||||
💡 Tietoja projektista:
|
||||
Activity Launcher perustuu avoimen lähdekoodin projektiin, joka on saatavilla osoitteessa https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher perustuu avoimen lähdekoodin projektiin, joka on saatavilla osoitteessa https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Siirry mainoksettomaan versioon ja tue meitä
|
||||
Haluatko mainoksettomman käyttökokemuksen? Lataa Activity Launcher Pro Play Storesta:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Tämä on yhteisölähtöinen projekti – olet tervetullut osallistumaan koodilla, käännöksillä tai ideoilla. Auta meitä kehittämään ja kasvamaan!
|
||||
|
||||
Verkkosivusto: https://activitylauncher.net
|
||||
Lähdekoodi ja käännökset: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Lähdekoodi ja käännökset: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Beetaversioon tilaus: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Que vous soyez un utilisateur expérimenté, un développeur ou simplement curie
|
|||
- Propre et léger avec une interface simple
|
||||
|
||||
💡 À propos du projet :
|
||||
Lanceur d'activités est basé sur le projet open source disponible sur https://github.com/butzist/ActivityLauncher.
|
||||
Lanceur d'activités est basé sur le projet open source disponible sur https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Passez à la version sans publicité et soutenez-nous
|
||||
Vous préférez une expérience sans publicité? Téléchargez Lanceur d'activités Pro sur le Play Store:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Il s'agit d'un projet communautaire : vous êtes invités à contribuer du code, des traductions ou des idées. Aidez-nous à nous améliorer et à nous développer !
|
||||
|
||||
Site Web : https://activitylauncher.net
|
||||
Code source et traductions : https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Code source et traductions : https://github.com/orgs/ActivityLauncher/repositories
|
||||
Inscription à la version bêta : https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- एक सरल इंटरफ़ेस के साथ स्वच्छ और हल्का
|
||||
|
||||
💡 परियोजना के बारे में:
|
||||
एक्टिविटी लॉन्चर https://github.com/butzist/ActivityLauncher पर उपलब्ध ओपन-सोर्स प्रोजेक्ट पर आधारित है।
|
||||
एक्टिविटी लॉन्चर https://github.com/orgs/ActivityLauncher/repositories पर उपलब्ध ओपन-सोर्स प्रोजेक्ट पर आधारित है।
|
||||
|
||||
🎁 विज्ञापन-मुक्त संस्करण चुनें और हमारा समर्थन करें
|
||||
क्या आप बिना विज्ञापनों का अनुभव पसंद करते हैं? एक्टिविटी लॉन्चर प्रो को Play Store से डाउनलोड करें:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
यह एक समुदाय-संचालित परियोजना है - कोड, अनुवाद या विचारों का योगदान करने के लिए आपका स्वागत है। हमें बेहतर बनाने और विकसित करने में मदद करें!
|
||||
|
||||
वेबसाइट: https://activitylauncher.net
|
||||
सोर्स कोड और अनुवाद: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
सोर्स कोड और अनुवाद: https://github.com/orgs/ActivityLauncher/repositories
|
||||
बीटा रिलीज के लिए ऑप्ट-इन करें: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Akár tapasztalt felhasználó, fejlesztő vagy csak kíváncsi, a Tevékenység
|
|||
- Tiszta és könnyű, egyszerű felülettel
|
||||
|
||||
💡 A projektről:
|
||||
A Tevékenység Launcher a https://github.com/butzist/ActivityLauncher címen elérhető nyílt forráskódú projekten alapul.
|
||||
A Tevékenység Launcher a https://github.com/orgs/ActivityLauncher/repositories címen elérhető nyílt forráskódú projekten alapul.
|
||||
|
||||
🎁 Váltson hirdetésmentes verzióra és támogasson minket
|
||||
Előnyben részesíti a hirdetésmentes élményt? Töltse le az Activity Launcher Pro alkalmazást a Play Áruházból:
|
||||
|
|
@ -23,6 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Ez egy közösség által vezérelt projekt – szívesen fogadunk kódokat, fordításokat vagy ötleteket. Segítsen nekünk fejlődni és növekedni!
|
||||
|
||||
Weboldal: https://activitylauncher.net
|
||||
Weboldal: https://activitylauncher.net
|
||||
Forráskód és fordítások: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Forráskód és fordítások: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Feliratkozás a béta verzióra: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- Մաքուր և թեթև պարզ ինտերֆեյսով
|
||||
|
||||
💡 Նախագծի մասին.
|
||||
Activity Launcher-ը հիմնված է https://github.com/butzist/ActivityLauncher-ում առկա բաց կոդով նախագծի վրա:
|
||||
Activity Launcher-ը հիմնված է https://github.com/orgs/ActivityLauncher/repositories-ում առկա բաց կոդով նախագծի վրա:
|
||||
|
||||
🎁 Գնացեք առանց գովազդների և աջակցեք մեզ
|
||||
Նախընտրու՞մ եք գովազդազուրկ փորձառություն? Ստացեք Activity Launcher Pro-ը Play Store-ից:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Սա համայնքի կողմից իրականացվող նախագիծ է. դուք կարող եք ներդնել կոդ, թարգմանություններ կամ գաղափարներ: Օգնե՛ք մեզ բարելավել և զարգացնել:
|
||||
|
||||
Կայք՝ https://activitylauncher.net
|
||||
Ծրագրի կոդը և թարգմանությունները՝ https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Ծրագրի կոդը և թարգմանությունները՝ https://github.com/orgs/ActivityLauncher/repositories
|
||||
Միացեք Beta թողարկմանը․ https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Baik Anda pengguna tingkat lanjut, pengembang, atau hanya ingin tahu, Peluncur A
|
|||
- Bersih dan ringan dengan antarmuka yang sederhana
|
||||
|
||||
💡 Tentang Proyek:
|
||||
Peluncur Aktivitas didasarkan pada proyek sumber terbuka yang tersedia di https://github.com/butzist/ActivityLauncher.
|
||||
Peluncur Aktivitas didasarkan pada proyek sumber terbuka yang tersedia di https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Beralih ke versi tanpa iklan dan dukung kami
|
||||
Lebih suka pengalaman tanpa iklan? Unduh Peluncur Aktivitas Pro dari Play Store:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Ini adalah proyek yang digerakkan oleh komunitas – Anda dipersilakan untuk menyumbangkan kode, terjemahan, atau ide. Bantu kami meningkatkan dan berkembang!
|
||||
|
||||
Situs web: https://activitylauncher.net
|
||||
Kode sumber dan terjemahan: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Kode sumber dan terjemahan: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Ikut serta untuk rilis Beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Che tu sia un utente esperto, uno sviluppatore o semplicemente curioso, Activity
|
|||
- Pulito e leggero con un'interfaccia semplice
|
||||
|
||||
💡 Informazioni sul progetto:
|
||||
Activity Launcher si basa sul progetto open source disponibile all'indirizzo https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher si basa sul progetto open source disponibile all'indirizzo https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Passa alla versione senza pubblicità e supportaci
|
||||
Preferisci un'esperienza senza annunci? Scarica Activity Launcher Pro dal Play Store:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Questo è un progetto guidato dalla comunità: sei invitato a contribuire con codice, traduzioni o idee. Aiutaci a migliorare e crescere!
|
||||
|
||||
Sito web: https://activitylauncher.net
|
||||
Codice sorgente e traduzioni: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Codice sorgente e traduzioni: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Iscriviti alla versione beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- נקי וקל משקל עם ממשק פשוט
|
||||
|
||||
💡 על הפרויקט:
|
||||
מריץ הפעולות מבוסס על פרויקט קוד פתוח הזמין בכתובת https://github.com/butzist/ActivityLauncher.
|
||||
מריץ הפעולות מבוסס על פרויקט קוד פתוח הזמין בכתובת https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 עברו לגרסה ללא פרסומות ותמכו בנו
|
||||
מעדיפים חוויה ללא פרסומות? הורידו את Activity Launcher Pro מחנות Play:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
זהו פרויקט מונחה קהילה – אתם מוזמנים לתרום קוד, תרגומים או רעיונות. עזרו לנו להשתפר ולגדול!
|
||||
|
||||
אתר אינטרנט: https://activitylauncher.net
|
||||
קוד מקור ותרגומים: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
קוד מקור ותרגומים: https://github.com/orgs/ActivityLauncher/repositories
|
||||
הצטרפות לגרסת בטא: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Activity Launcher で Android アプリの可能性を最大限に引き出し
|
|||
- シンプルなインターフェースを備えたクリーンで軽量
|
||||
|
||||
💡 プロジェクトについて:
|
||||
Activity Launcher は、https://github.com/butzist/ActivityLauncher で公開されているオープンソースプロジェクトに基づいています。
|
||||
Activity Launcher は、https://github.com/orgs/ActivityLauncher/repositories で公開されているオープンソースプロジェクトに基づいています。
|
||||
|
||||
🎁 広告なしバージョンに切り替えて、私たちをサポートしよう
|
||||
広告のない体験を好みますか? Playストアから Activity Launcher Pro をダウンロード:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
これはコミュニティ主導のプロジェクトです。コード、翻訳、またはアイデアを貢献することを歓迎します。 改善と成長にご協力ください!
|
||||
|
||||
ウェブサイト: https://activitylauncher.net
|
||||
ソースコードと翻訳: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
ソースコードと翻訳: https://github.com/orgs/ActivityLauncher/repositories
|
||||
ベータ版へのオプトイン: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Bi Activity Launcher-ê potansiyela tevahî ya sepanên xwe yên Android-ê kif
|
|||
- Paqij û sivik bi navgînek sade
|
||||
|
||||
💡 Derbarê Projeyê:
|
||||
Activity Launcher li ser projeya çavkaniya vekirî ya ku li https://github.com/butzist/ActivityLauncher heye, hatî damezrandin.
|
||||
Activity Launcher li ser projeya çavkaniya vekirî ya ku li https://github.com/orgs/ActivityLauncher/repositories heye, hatî damezrandin.
|
||||
|
||||
🎁 Bi guhertoya bê-reklam ve bibin û alîkarî me bikin
|
||||
Dixwazî tecrûbeyek bê-reklam? Activity Launcher Pro ji Play Store-ê daxwazê:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Ev proje ji hêla civakê ve tê rêvebirin - hûn bi xêr hatin ku hûn kod, werger an ramanan bexşînin. Alîkariya me bikin ku em baştir bibin û mezin bibin!
|
||||
|
||||
Malper: https://activitylauncher.net
|
||||
کۆدی سەرچاوە و وەرگێڕان: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
کۆدی سەرچاوە و وەرگێڕان: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Ji bo beta release opt-in: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- 간단한 인터페이스로 깔끔하고 가벼움
|
||||
|
||||
💡 프로젝트 정보:
|
||||
액티비티 런처는 https://github.com/butzist/ActivityLauncher에서 사용할 수 있는 오픈 소스 프로젝트를 기반으로 합니다.
|
||||
액티비티 런처는 https://github.com/orgs/ActivityLauncher/repositories에서 사용할 수 있는 오픈 소스 프로젝트를 기반으로 합니다.
|
||||
|
||||
🎁 광고 없는 버전으로 전환하고 저희를 지원해 주세요
|
||||
광고 없는 사용 환경을 선호하시나요? Play 스토어에서 액티비티 런처 프로를 다운로드하세요:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
이것은 커뮤니티 기반 프로젝트입니다. 코드, 번역 또는 아이디어를 자유롭게 기여해 주세요. 개선하고 성장하도록 도와주세요!
|
||||
|
||||
웹사이트: https://activitylauncher.net
|
||||
소스 코드 및 번역: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
소스 코드 및 번역: https://github.com/orgs/ActivityLauncher/repositories
|
||||
베타 버전 옵트인: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- پاک و سووکە لەگەڵ ڕووکارێکی سادە
|
||||
|
||||
💡 دەربارەی پرۆژەکە:
|
||||
Activity Launcher سەردەمی پرۆژەی کرانەوەی سەرچاوەیە کە لە https://github.com/butzist/ActivityLauncher دەستگەیشتەوە.
|
||||
Activity Launcher سەردەمی پرۆژەی کرانەوەی سەرچاوەیە کە لە https://github.com/orgs/ActivityLauncher/repositories دەستگەیشتەوە.
|
||||
|
||||
🎁 بگۆڕە بۆ وەشانی بێ ئاگاداری و پشتیوانی لە مە بکە
|
||||
دەتەوێت ئەزموونێک بێ ئاگاداری؟ Activity Launcher Pro لە فەرمییەکانی Play Store دابگرە:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
ئەمە پڕۆژەیەکی بەڕێوەبردنی کۆمەڵگایە – بەخێربێیت بۆ بەشداریکردن لە کۆد، وەرگێڕان، یان بیرۆکەکان. یارمەتیمان بدە بۆ باشترکردن و گەشەکردن!
|
||||
|
||||
ماڵپەڕ: https://activitylauncher.net
|
||||
کۆدی سەرچاوە و وەرگێڕانەکان: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
کۆدی سەرچاوە و وەرگێڕانەکان: https://github.com/orgs/ActivityLauncher/repositories
|
||||
بۆ بەشداری لە بەرەشێوەی بتا خۆت تۆمار بکە: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Neatkarīgi no tā, vai esat pieredzējis lietotājs, izstrādātājs vai vienk
|
|||
- Tīrs un viegls ar vienkāršu saskarni
|
||||
|
||||
💡 Par projektu:
|
||||
Darbību palaidējs ir balstīts uz atvērtā pirmkoda projektu, kas pieejams vietnē https://github.com/butzist/ActivityLauncher.
|
||||
Darbību palaidējs ir balstīts uz atvērtā pirmkoda projektu, kas pieejams vietnē https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Pārejiet uz versiju bez reklāmām un atbalstiet mūs
|
||||
Vēlaties pieredzi bez reklāmām? Lejupielādējiet Activity Launcher Pro no Play veikala:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Šis ir kopienas virzīts projekts — esat laipni aicināti sniegt ieguldījumu kodā, tulkojumos vai idejās. Palīdziet mums uzlabot un augt!
|
||||
|
||||
Vietne: https://activitylauncher.net
|
||||
Pirmkods un tulkojumi: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Pirmkods un tulkojumi: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Pievienojieties Beta versijai: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Of u nu een power user, ontwikkelaar of gewoon nieuwsgierig bent, Activity Launc
|
|||
- Schoon en lichtgewicht met een eenvoudige interface
|
||||
|
||||
💡 Over het project:
|
||||
Activity Launcher is gebaseerd op het open-source project dat beschikbaar is op https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher is gebaseerd op het open-source project dat beschikbaar is op https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Ga voor een advertentievrije versie en steun ons
|
||||
Geef je de voorkeur aan een ervaring zonder advertenties? Download Activity Launcher Pro via de Play Store:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Dit is een project dat door de gemeenschap wordt gedreven – je bent welkom om code, vertalingen of ideeën bij te dragen. Help ons verbeteren en groeien!
|
||||
|
||||
Website: https://activitylauncher.net
|
||||
Broncode en vertalingen: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Broncode en vertalingen: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Aanmelden voor bètaversie: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Enten du er superbruker, utvikler eller bare nysgjerrig, gir Activity Launcher d
|
|||
- Rent og lett med et enkelt grensesnitt
|
||||
|
||||
💡 Om prosjektet:
|
||||
Activity Launcher er basert på åpen kildekode-prosjektet som er tilgjengelig på https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher er basert på åpen kildekode-prosjektet som er tilgjengelig på https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Gå over til annonsefri versjon og støtt oss
|
||||
Foretrekker du en annonsefri opplevelse? Last ned Activity Launcher Pro fra Play Store:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Dette er et fellesskapsdrevet prosjekt – du er velkommen til å bidra med kode, oversettelser eller ideer. Hjelp oss å forbedre og vokse!
|
||||
|
||||
Nettsted: https://activitylauncher.net
|
||||
Kildekode og oversettelser: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Kildekode og oversettelser: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Meld deg på for betaversjonen: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- ਇੱਕ ਸਧਾਰਨ ਇੰਟਰਫੇਸ ਨਾਲ ਸਾਫ਼ ਅਤੇ ਹਲਕਾ
|
||||
|
||||
💡 ਪ੍ਰੋਜੈਕਟ ਬਾਰੇ:
|
||||
ਐਕਟੀਵਿਟੀ ਲਾਂਚਰ ਓਪਨ-ਸੋਰਸ ਪ੍ਰੋਜੈਕਟ 'ਤੇ ਅਧਾਰਤ ਹੈ ਜੋ https://github.com/butzist/ActivityLauncher 'ਤੇ ਉਪਲਬਧ ਹੈ।
|
||||
ਐਕਟੀਵਿਟੀ ਲਾਂਚਰ ਓਪਨ-ਸੋਰਸ ਪ੍ਰੋਜੈਕਟ 'ਤੇ ਅਧਾਰਤ ਹੈ ਜੋ https://github.com/orgs/ActivityLauncher/repositories 'ਤੇ ਉਪਲਬਧ ਹੈ।
|
||||
|
||||
🎁 ਵਿਗਿਆਪਨਾਂ ਤੋਂ ਮੁਕਤ ਵਰਜ਼ਨ ਚੁਣੋ ਅਤੇ ਸਾਡੀ ਸਹਾਇਤਾ ਕਰੋ
|
||||
ਕੀ ਤੁਸੀਂ ਵਿਗਿਆਪਨਾਂ ਤੋਂ ਮੁਕਤ ਅਨੁਭਵ ਪਸੰਦ ਕਰਦੇ ਹੋ? ਐਕਟੀਵਿਟੀ ਲਾਂਚਰ ਪ੍ਰੋ ਨੂੰ Google Play Store ਤੋਂ ਡਾਊਨਲੋਡ ਕਰੋ:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
ਇਹ ਇੱਕ ਕਮਿਊਨਿਟੀ-ਅਧਾਰਿਤ ਪ੍ਰੋਜੈਕਟ ਹੈ – ਤੁਹਾਡਾ ਕੋਡ, ਅਨੁਵਾਦਾਂ ਜਾਂ ਵਿਚਾਰਾਂ ਦਾ ਯੋਗਦਾਨ ਕਰਨ ਲਈ ਸੁਆਗਤ ਹੈ। ਸਾਡੀ ਬਿਹਤਰੀ ਅਤੇ ਵਿਕਾਸ ਵਿੱਚ ਮਦਦ ਕਰੋ!
|
||||
|
||||
ਵੈੱਬਸਾਈਟ: https://activitylauncher.net
|
||||
ਸਰੋਤ ਕੋਡ ਅਤੇ ਅਨੁਵਾਦ: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
ਸਰੋਤ ਕੋਡ ਅਤੇ ਅਨੁਵਾਦ: https://github.com/orgs/ActivityLauncher/repositories
|
||||
ਬੀਟਾ ਰੀਲੀਜ਼ ਲਈ ਆਪਟ-ਇਨ ਕਰੋ: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Niezależnie od tego, czy jesteś zaawansowanym użytkownikiem, programistą, cz
|
|||
- Czysty i lekki z prostym interfejsem
|
||||
|
||||
💡 O projekcie:
|
||||
Launcher Aktywności jest oparty na projekcie open-source dostępnym na stronie https://github.com/butzist/ActivityLauncher.
|
||||
Launcher Aktywności jest oparty na projekcie open-source dostępnym na stronie https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Przejdź na wersję bez reklam i wesprzyj nas
|
||||
Wolisz korzystać z aplikacji bez reklam? Pobierz Launcher Aktywności Pro ze Sklepu Play:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Jest to projekt tworzony przez społeczność – możesz wnosić wkład w postaci kodu, tłumaczeń lub pomysłów. Pomóż nam ulepszać i rozwijać się!
|
||||
|
||||
Strona internetowa: https://activitylauncher.net
|
||||
Kod źródłowy i tłumaczenia: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Kod źródłowy i tłumaczenia: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Zapisz się do wersji Beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Seja você um usuário avançado, desenvolvedor ou apenas curioso, o Activity La
|
|||
- Limpo e leve, com uma interface simples
|
||||
|
||||
💡 Sobre o projeto:
|
||||
O Activity Launcher é baseado no projeto de código aberto disponível em https://github.com/butzist/ActivityLauncher.
|
||||
O Activity Launcher é baseado no projeto de código aberto disponível em https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Vá para a versão sem anúncios e nos apoie
|
||||
Prefere uma experiência sem anúncios? Baixe o Activity Launcher Pro na Google Play Store:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Este é um projeto orientado pela comunidade – você pode contribuir com código, traduções ou ideias. Ajude-nos a melhorar e crescer!
|
||||
|
||||
Website: https://activitylauncher.net
|
||||
Código fonte e traduções: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Código fonte e traduções: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Participe da versão Beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Se você é um usuário avançado, desenvolvedor ou apenas curioso, o Activity L
|
|||
- Limpo e leve com uma interface simples
|
||||
|
||||
💡 Sobre o Projeto:
|
||||
O Activity Launcher é baseado no projeto de código aberto disponível em https://github.com/butzist/ActivityLauncher.
|
||||
O Activity Launcher é baseado no projeto de código aberto disponível em https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Vá para a versão sem anúncios e apoie-nos
|
||||
Prefere uma experiência sem anúncios? Descarregue o Activity Launcher Pro na Play Store:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Este é um projeto conduzido pela comunidade – você pode contribuir com código, traduções ou ideias. Ajude-nos a melhorar e crescer!
|
||||
|
||||
Website: https://activitylauncher.net
|
||||
Código fonte e traduções: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Código fonte e traduções: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Ative a versão Beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Fie că ești un utilizator avansat, dezvoltator sau doar curios, Lansator Activ
|
|||
- Curat și ușor, cu o interfață simplă
|
||||
|
||||
💡 Despre proiect:
|
||||
Lansator Activități are la bază proiectul open-source disponibil la https://github.com/butzist/ActivityLauncher.
|
||||
Lansator Activități are la bază proiectul open-source disponibil la https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Treceți la versiunea fără reclame și susțineți-ne
|
||||
Preferi o experiență fără reclame? Descarcă Lansator Activități Pro din Magazinul Play:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Acesta este un proiect bazat pe comunitate – ești binevenit să contribui cu cod, traduceri sau idei. Ajută-ne să ne îmbunătățim și să creștem!
|
||||
|
||||
Site web: https://activitylauncher.net
|
||||
Cod sursă și traduceri: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Cod sursă și traduceri: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Înscrie-te pentru versiunea Beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- Чистый и легкий с простым интерфейсом
|
||||
|
||||
💡 О проекте:
|
||||
Запуск Activity основан на проекте с открытым исходным кодом, доступном по адресу https://github.com/butzist/ActivityLauncher.
|
||||
Запуск Activity основан на проекте с открытым исходным кодом, доступном по адресу https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Перейдите на версию без рекламы и поддержите нас
|
||||
Предпочитаете опыт без рекламы? Скачайте Запуск Activity Pro в магазине Play:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Это проект, управляемый сообществом — вы можете внести свой вклад в код, переводы или идеи. Помогите нам улучшить и развиваться!
|
||||
|
||||
Веб-сайт: https://activitylauncher.net
|
||||
Исходный код и переводы: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Исходный код и переводы: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Примите участие в бета-тестировании: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- Чистий і легкий з простим інтерфейсом
|
||||
|
||||
💡 Про проєкт:
|
||||
Запуск Activity базується на проекті з відкритим кодом, доступному за адресою https://github.com/butzist/ActivityLauncher.
|
||||
Запуск Activity базується на проекті з відкритим кодом, доступному за адресою https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Перейдите на версию без рекламы и поддержите нас
|
||||
Предпочитаете опыт без рекламы? Скачайте Запуск Activity Pro в магазине Play:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Це проєкт, керований спільнотою – ви можете долучатися до коду, перекладів чи ідей. Допоможіть нам покращити та розвиватися!
|
||||
|
||||
Веб-сайт: https://activitylauncher.net
|
||||
Исходный код и переводы: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Исходный код и переводы: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Зареєструйтеся для бета-версії: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- සරල අතුරු මුහුණතක් සහිත පිරිසිදු හා සැහැල්ලු
|
||||
|
||||
💡 ව්යාපෘතිය ගැන:
|
||||
ක්රියාකාරකම් දියත්කරණය https://github.com/butzist/ActivityLauncher හි ඇති විවෘත මූලාශ්ර ව්යාපෘතිය මත පදනම් වේ.
|
||||
ක්රියාකාරකම් දියත්කරණය https://github.com/orgs/ActivityLauncher/repositories හි ඇති විවෘත මූලාශ්ර ව්යාපෘතිය මත පදනම් වේ.
|
||||
|
||||
🎁 දැන්වීම් රහිත සංස්කරණයට මාරුවී අපව සහය දක්වන්න
|
||||
ඔබ දැන්වීම් රහිත අත්දැකීමක් කැමතිද? ක්රියාකාරකම් දියත්කරණය ප්රෝ Google Play Store එකෙන් බාගන්න:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
මෙය ප්රජාව විසින් මෙහෙයවනු ලබන ව්යාපෘතියකි - කේත, පරිවර්තන හෝ අදහස් සඳහා දායක වීමට ඔබට සාදරයෙන් පිළිගනිමු. වැඩිදියුණු කිරීමට සහ වර්ධනය වීමට අපට උදව් කරන්න!
|
||||
|
||||
වෙබ් අඩවිය: https://activitylauncher.net
|
||||
මූලාශ්ර කේතය සහ පරිවර්තන: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
මූලාශ්ර කේතය සහ පරිවර්තන: https://github.com/orgs/ActivityLauncher/repositories
|
||||
බීටා නිකුතුව සඳහා සම්බන්ධ වන්න: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Objavte plný potenciál svojich aplikácií pre Android s Activity Launcher –
|
|||
- Čistý a ľahký s jednoduchým rozhraním
|
||||
|
||||
💡 Informácie o projekte:
|
||||
Activity Launcher je založený na open-source projekte dostupnom na https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher je založený na open-source projekte dostupnom na https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Prejdite na verziu bez reklám a podporte nás
|
||||
Uprednostňujete používanie bez reklám? Stiahnite si Activity Launcher Pro z Obchodu Play:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Toto je komunitný projekt – môžete prispievať kódom, prekladmi alebo nápadmi. Pomôžte nám zlepšovať sa a rásť!
|
||||
|
||||
Webová stránka: https://activitylauncher.net
|
||||
Zdrojový kód a preklady: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Zdrojový kód a preklady: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Prihláste sa na odber Beta verzie: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Ne glede na to, ali ste zahteven uporabnik, razvijalec ali samo radovedni, vam Z
|
|||
- Čist in lahek s preprostim vmesnikom
|
||||
|
||||
💡 O projektu:
|
||||
Activity Launcher temelji na odprtokodnem projektu, ki je na voljo na https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher temelji na odprtokodnem projektu, ki je na voljo na https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Preklopite na različico brez oglasov in nas podprite
|
||||
Imate raje izkušnjo brez oglasov? Prenesite Activity Launcher Pro iz Trgovine Play:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
To je projekt, ki ga vodi skupnost – dobrodošli ste, da prispevate kodo, prevode ali ideje. Pomagajte nam izboljšati in rasti!
|
||||
|
||||
Spletna stran: https://activitylauncher.net
|
||||
Izvorna koda in prevodi: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Izvorna koda in prevodi: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Vključitev v beta različico: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Bez obzira da li ste napredni korisnik, programer, ili ste samo radoznali, Activ
|
|||
-Čist i lagan sa jednostavnim interfejsom
|
||||
|
||||
💡 О projektu:
|
||||
Pokretač aktivnosti je zasnovan na projektu otvorenog koda dostupnom na https://github.com/butzist/ActivityLauncher.
|
||||
Pokretač aktivnosti je zasnovan na projektu otvorenog koda dostupnom na https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Pređite na verziju bez reklama & podržite nas
|
||||
Više volite iskustvo bez reklama? Preuzmite Activity Launcher Pro na Play prodavnici:
|
||||
|
|
@ -22,7 +22,7 @@ https://github.com/sponsors/butzist
|
|||
🤝 Uključite se:
|
||||
Ovo je projekat koji pokreće zajednica – dobrodošli ste da doprinesete kodom, prevodima ili idejama. Pomozite nam da se poboljšamo i da rastemo!
|
||||
|
||||
Sajt: https://activitylauncher.net
|
||||
Veb sajt: https://activitylauncher.net
|
||||
Izvorni kod i prevodi: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Izvorni kod i prevodi: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Prijavite se za beta izdanje aplikacije: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Oavsett om du är en avancerad användare, utvecklare eller bara nyfiken, ger Ac
|
|||
- Ren och lätt med ett enkelt gränssnitt
|
||||
|
||||
💡 Om projektet:
|
||||
Activity Launcher är baserad på open source-projektet som finns på https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher är baserad på open source-projektet som finns på https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Byt till en reklamfri version och stöd oss
|
||||
Föredrar du en upplevelse utan annonser? Ladda ner Activity Launcher Pro från Play Butiken:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Detta är ett gemenskapsdrivet projekt – du är välkommen att bidra med kod, översättningar eller idéer. Hjälp oss att förbättra och växa!
|
||||
|
||||
Webbplats: https://activitylauncher.net
|
||||
Källkod och översättningar: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Källkod och översättningar: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Anmäl dig till betaversionen: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- எளிய இடைமுகத்துடன் சுத்தமான மற்றும் இலகுரக
|
||||
|
||||
💡 திட்டத்தைப் பற்றி:
|
||||
செயல்பாடு துவக்கி https://github.com/butzist/ActivityLauncher இல் கிடைக்கும் திறந்த மூல திட்டத்தை அடிப்படையாகக் கொண்டது.
|
||||
செயல்பாடு துவக்கி https://github.com/orgs/ActivityLauncher/repositories இல் கிடைக்கும் திறந்த மூல திட்டத்தை அடிப்படையாகக் கொண்டது.
|
||||
|
||||
🎁 விளம்பரமற்ற பதிப்பிற்கு மாற்றி எங்களை ஆதரிக்கவும்
|
||||
விளம்பரமில்லா அனுபவத்தை விரும்புகிறீர்களா? செயல்பாடு துவக்கி Pro ஐ Play Store-இல் பதிவிறக்கம் செய்யவும்:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
இது சமூகம் சார்ந்த திட்டம் - குறியீடு, மொழிபெயர்ப்புகள் அல்லது யோசனைகளை வழங்க நீங்கள் வரவேற்கப்படுகிறீர்கள். நாங்கள் மேம்படுத்தவும் வளரவும் உதவுங்கள்!
|
||||
|
||||
இணையதளம்: https://activitylauncher.net
|
||||
மூலக் குறியீடு மற்றும் மொழிபெயர்ப்புகள்: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
மூலக் குறியீடு மற்றும் மொழிபெயர்ப்புகள்: https://github.com/orgs/ActivityLauncher/repositories
|
||||
பீட்டா வெளியீட்டிற்குச் சேரவும்: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- สะอาดและเรียบง่ายด้วยอินเทอร์เฟซที่ใช้งานง่าย
|
||||
|
||||
💡 เกี่ยวกับโครงการ:
|
||||
Activity Launcher อิงตามโปรเจ็กต์โอเพนซอร์สที่มีอยู่ที่ https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher อิงตามโปรเจ็กต์โอเพนซอร์สที่มีอยู่ที่ https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 เปลี่ยนเป็นเวอร์ชันไม่มีโฆษณาและสนับสนุนเรา
|
||||
คุณชอบประสบการณ์ที่ไม่มีโฆษณาหรือไม่? ดาวน์โหลด Activity Launcher Pro จาก Play Store:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
นี่คือโครงการที่ขับเคลื่อนโดยชุมชน – คุณสามารถมีส่วนร่วมในการเขียนโค้ด แปล หรือเสนอแนวคิดได้ ช่วยเราปรับปรุงและเติบโต!
|
||||
|
||||
เว็บไซต์: https://activitylauncher.net
|
||||
โค้ดต้นฉบับและการแปล: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
โค้ดต้นฉบับและการแปล: https://github.com/orgs/ActivityLauncher/repositories
|
||||
เข้าร่วมรุ่นเบต้า: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Qu' taghmoHwI'Daq DaHjaj Android app, vaj qIchlIj Home Screen shortcut installed
|
|||
- wIleghmey 'ej nItebHa' 'ej tIq qonwI' pagh
|
||||
|
||||
💡 De'vam'e' Qu'vam:
|
||||
Activity Launcher vItlhutlh vIqIj 'ej De'vam'e' Qu'vam github.com/butzist/ActivityLauncher Dalo'lu'.
|
||||
Activity Launcher vItlhutlh vIqIj 'ej De'vam'e' Qu'vam github.com/orgs/ActivityLauncher/repositories Dalo'lu'.
|
||||
|
||||
🎁 yIqawbe' tlhutlhmey 'ej maH qo'
|
||||
tlhutlhmey 'e' HIvje'chu'? Qu' taghmoHwI' Pro law' chu' Play StoreDaq lo'
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
maQa’pu’ ‘ej maHvaD – tlhIngan Hol, QInmey, HIvje’ ghojmoHmey, pagh wIqel! Qapchu' wIleghmeH 'ej wIbuS!
|
||||
|
||||
Website: https://activitylauncher.net
|
||||
mung De'pu' mughtaHghach: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
mung De'pu' mughtaHghach: https://github.com/orgs/ActivityLauncher/repositories
|
||||
yItIv Beta qelDaq: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Activity Launcher ile Android uygulamalarınızın tüm potansiyelini keşfedin
|
|||
- Basit bir arayüze sahip temiz ve hafif
|
||||
|
||||
💡 Proje Hakkında:
|
||||
Activity Launcher, https://github.com/butzist/ActivityLauncher adresinde bulunan açık kaynaklı projeye dayanmaktadır.
|
||||
Activity Launcher, https://github.com/orgs/ActivityLauncher/repositories adresinde bulunan açık kaynaklı projeye dayanmaktadır.
|
||||
|
||||
🎁 Reklamsız sürüme geçin ve bizi destekleyin
|
||||
Reklamsız bir deneyim mi tercih ediyorsunuz? Activity Launcher Pro uygulamasını Play Store’dan indirin:
|
||||
|
|
@ -23,6 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Bu, topluluk odaklı bir projedir; kod, çeviri veya fikir katkısında bulunabilirsiniz. Gelişmemize ve büyümemize yardım edin!
|
||||
|
||||
Web sitesi: https://activitylauncher.net
|
||||
Web sitesi: https://activitylauncher.net
|
||||
Kaynak kod ve çeviriler: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Kaynak kod ve çeviriler: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Beta sürümüne kaydolun: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- Чистий і легкий з простим інтерфейсом
|
||||
|
||||
💡 Про проєкт:
|
||||
Лаунчер Активіті базується на проєкті з відкритим кодом, доступному за адресою https://github.com/butzist/ActivityLauncher.
|
||||
Лаунчер Активіті базується на проєкті з відкритим кодом, доступному за адресою https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Перейдіть на версію без реклами та підтримайте нас
|
||||
Віддаєте перевагу використанню без реклами? Завантажте Лаунчер Активіті Pro з Play Маркету:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Це проєкт, керований спільнотою – ви можете долучитися до розробки коду, перекладів або ідей. Допоможіть нам покращити та розвиватись!
|
||||
|
||||
Вебсайт: https://activitylauncher.net
|
||||
Вихідний код і переклади: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Вихідний код і переклади: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Реєстрація для бета-версії: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- ایک سادہ انٹرفیس کے ساتھ صاف اور ہلکا پھلکا
|
||||
|
||||
💡 پروجیکٹ کے بارے میں:
|
||||
Activity Launcher اوپن سورس پروجیکٹ پر مبنی ہے جو https://github.com/butzist/ActivityLauncher پر دستیاب ہے۔
|
||||
Activity Launcher اوپن سورس پروجیکٹ پر مبنی ہے جو https://github.com/orgs/ActivityLauncher/repositories پر دستیاب ہے۔
|
||||
|
||||
🎁 اشتہارات کے بغیر ورژن پر جائیں اور ہماری مدد کریں
|
||||
کیا آپ اشتہارات کے بغیر تجربہ پسند کرتے ہیں؟ Activity Launcher Pro کو Play Store سے ڈاؤن لوڈ کریں:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
یہ ایک کمیونٹی پر مبنی پروجیکٹ ہے – آپ کوڈ، تراجم یا آئیڈیاز میں حصہ لینے کے لیے خوش آمدید ہیں۔ بہتر بنانے اور بڑھنے میں ہماری مدد کریں!
|
||||
|
||||
ویب سائٹ: https://activitylauncher.net
|
||||
ذریعہ کوڈ اور ترجمے: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
ذریعہ کوڈ اور ترجمے: https://github.com/orgs/ActivityLauncher/repositories
|
||||
بیٹا ریلیز کے لئے آپٹ ان کریں: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Cho dù bạn là người dùng thành thạo, nhà phát triển hay chỉ đ
|
|||
- Giao diện gọn gàng và nhẹ với giao diện đơn giản
|
||||
|
||||
💡 Giới thiệu về dự án:
|
||||
Activity Launcher dựa trên dự án mã nguồn mở có tại https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher dựa trên dự án mã nguồn mở có tại https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🎁 Chuyển sang phiên bản không quảng cáo và ủng hộ chúng tôi
|
||||
Bạn muốn trải nghiệm không quảng cáo? Tải Activity Launcher Pro từ cửa hàng Play Store:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
Đây là một dự án do cộng đồng điều hành – bạn có thể đóng góp mã, bản dịch hoặc ý tưởng. Giúp chúng tôi cải thiện và phát triển!
|
||||
|
||||
Trang web: https://activitylauncher.net
|
||||
Mã nguồn và bản dịch: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Mã nguồn và bản dịch: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Tham gia bản Beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- 简洁轻巧,界面简单
|
||||
|
||||
💡 关于项目:
|
||||
活动启动器基于 https://github.com/butzist/ActivityLauncher 提供的开源项目。
|
||||
活动启动器基于 https://github.com/orgs/ActivityLauncher/repositories 提供的开源项目。
|
||||
|
||||
🎁 升级至无广告版本并支持我们
|
||||
您更喜欢无广告的使用体验吗? 请在应用商店下载 活动启动器专业版:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
这是一个社区驱动的项目——欢迎您贡献代码、翻译或想法。 帮助我们改进和发展!
|
||||
|
||||
网站:https://activitylauncher.net
|
||||
源代码和翻译:https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
源代码和翻译:https://github.com/orgs/ActivityLauncher/repositories
|
||||
选择加入 Beta 版本:https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
- 乾淨輕巧,介面簡單
|
||||
|
||||
💡 關於專案:
|
||||
Activity Launcher 基於 https://github.com/butzist/ActivityLauncher 提供的開放原始碼專案。
|
||||
Activity Launcher 基於 https://github.com/orgs/ActivityLauncher/repositories 提供的開放原始碼專案。
|
||||
|
||||
🎁 升級至無廣告版本並支持我們
|
||||
您偏好無廣告的使用體驗嗎? 請在應用商店下載 Activity Launcher Pro:
|
||||
|
|
@ -23,5 +23,6 @@ https://github.com/sponsors/butzist
|
|||
這是一個社群驅動的專案 – 歡迎您貢獻程式碼、翻譯或想法。 幫助我們改進和成長!
|
||||
|
||||
網站:https://activitylauncher.net
|
||||
原始碼和翻譯:https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
原始碼和翻譯:https://github.com/orgs/ActivityLauncher/repositories
|
||||
選擇加入 Beta 版本:https://play.google.com/apps/testing/de.szalkowski.activitylauncher
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
- एक सरल इंटरफ़ेस के साथ स्वच्छ और हल्का
|
||||
|
||||
💡 परियोजना के बारे में:
|
||||
एक्टिविटी लॉन्चर प्रो एक ओपन-सोर्स प्रोजेक्ट है जो https://github.com/butzist/ActivityLauncher पर उपलब्ध है।
|
||||
एक्टिविटी लॉन्चर प्रो एक ओपन-सोर्स प्रोजेक्ट है जो https://github.com/orgs/ActivityLauncher/repositories पर उपलब्ध है।
|
||||
|
||||
🤝 शामिल हों:
|
||||
यह एक समुदाय-संचालित परियोजना है - कोड, अनुवाद या विचारों का योगदान करने के लिए आपका स्वागत है। हमें बेहतर बनाने और विकसित करने में मदद करें!
|
||||
|
||||
वेबसाइट: https://activitylauncher.net
|
||||
सोर्स कोड और अनुवाद: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
सोर्स कोड और अनुवाद: https://github.com/orgs/ActivityLauncher/repositories
|
||||
बीटा रिलीज के लिए ऑप्ट-इन करें: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,12 +8,12 @@ Akár tapasztalt felhasználó, fejlesztő vagy, akár csak kíváncsi, az Activ
|
|||
- Tiszta és könnyű, egyszerű felülettel
|
||||
|
||||
💡 A projektről:
|
||||
Az Activity Launcher Pro egy nyílt forráskódú projekt, amely a https://github.com/butzist/ActivityLauncher címen érhető el.
|
||||
Az Activity Launcher Pro egy nyílt forráskódú projekt, amely a https://github.com/orgs/ActivityLauncher/repositories címen érhető el.
|
||||
|
||||
🤝 Vegyen részt:
|
||||
Ez egy közösség által vezérelt projekt – szívesen fogadunk kódokat, fordításokat vagy ötleteket. Segítsen nekünk fejlődni és növekedni!
|
||||
|
||||
Weboldal: https://activitylauncher.net
|
||||
Weboldal: https://activitylauncher.net
|
||||
Forráskód és fordítások: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Forráskód és fordítások: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Iratkozzon fel a béta verzióra: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
- Մաքուր և թեթև պարզ ինտերֆեյսով
|
||||
|
||||
💡 Նախագծի մասին.
|
||||
Activity Launcher Pro-ն բաց կոդով նախագիծ է, որը հասանելի է https://github.com/butzist/ActivityLauncher հասցեով:
|
||||
Activity Launcher Pro-ն բաց կոդով նախագիծ է, որը հասանելի է https://github.com/orgs/ActivityLauncher/repositories հասցեով:
|
||||
|
||||
🤝 Ներգրավվե՛ք.
|
||||
Սա համայնքի կողմից իրականացվող նախագիծ է. դուք կարող եք ներդնել կոդ, թարգմանություններ կամ գաղափարներ: Օգնե՛ք մեզ բարելավել և զարգացնել:
|
||||
|
||||
Կայք՝ https://activitylauncher.net
|
||||
Ծրագրի կոդը և թարգմանությունները՝ https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Ծրագրի կոդը և թարգմանությունները՝ https://github.com/orgs/ActivityLauncher/repositories
|
||||
Միացե՛ք Beta թողարկմանը՝ https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Baik Anda pengguna tingkat lanjut, pengembang, atau hanya ingin tahu, Peluncur A
|
|||
- Bersih dan ringan dengan antarmuka yang sederhana
|
||||
|
||||
💡 Tentang Proyek:
|
||||
Peluncur Aktivitas Pro adalah proyek sumber terbuka yang tersedia di https://github.com/butzist/ActivityLauncher.
|
||||
Peluncur Aktivitas Pro adalah proyek sumber terbuka yang tersedia di https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Terlibat:
|
||||
Ini adalah proyek yang digerakkan oleh komunitas – Anda dipersilakan untuk menyumbangkan kode, terjemahan, atau ide. Bantu kami meningkatkan dan berkembang!
|
||||
|
||||
Situs web: https://activitylauncher.net
|
||||
Kode sumber dan terjemahan: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Kode sumber dan terjemahan: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Ikut serta untuk rilis Beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Che tu sia un utente esperto, uno sviluppatore o semplicemente curioso, Avvio di
|
|||
- Pulito e leggero con un'interfaccia semplice
|
||||
|
||||
💡 Informazioni sul progetto:
|
||||
Avvio di attività Pro è un progetto open source disponibile all'indirizzo https://github.com/butzist/ActivityLauncher.
|
||||
Avvio di attività Pro è un progetto open source disponibile all'indirizzo https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Partecipa:
|
||||
Questo è un progetto guidato dalla comunità: sei invitato a contribuire con codice, traduzioni o idee. Aiutaci a migliorare e crescere!
|
||||
|
||||
Sito web: https://activitylauncher.net
|
||||
Codice sorgente e traduzioni: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Codice sorgente e traduzioni: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Opt-in per la versione beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
- נקי וקל משקל עם ממשק פשוט
|
||||
|
||||
💡 על הפרויקט:
|
||||
מריץ הפעולות Pro הוא פרויקט קוד פתוח הזמין בכתובת https://github.com/butzist/ActivityLauncher.
|
||||
מריץ הפעולות Pro הוא פרויקט קוד פתוח הזמין בכתובת https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 השתתפו:
|
||||
זהו פרויקט מונחה קהילה – אתם מוזמנים לתרום קוד, תרגומים או רעיונות. עזרו לנו להשתפר ולגדול!
|
||||
|
||||
אתר אינטרנט: https://activitylauncher.net
|
||||
קוד מקור ותרגומים: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
קוד מקור ותרגומים: https://github.com/orgs/ActivityLauncher/repositories
|
||||
הצטרפו לגרסת הבטא: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Activity Launcher Proにアップグレードして、Activity Launcherの継続
|
|||
- シンプルなインターフェースを備えたクリーンで軽量
|
||||
|
||||
💡 プロジェクトについて:
|
||||
Activity Launcher Proは、https://github.com/butzist/ActivityLauncherで入手可能なオープンソースプロジェクトです。
|
||||
Activity Launcher Proは、https://github.com/orgs/ActivityLauncher/repositoriesで入手可能なオープンソースプロジェクトです。
|
||||
|
||||
🤝 参加する:
|
||||
これはコミュニティ主導のプロジェクトです。コード、翻訳、またはアイデアを貢献することを歓迎します。 改善と成長にご協力ください!
|
||||
|
||||
ウェブサイト: https://activitylauncher.net
|
||||
ソースコードと翻訳: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
ソースコードと翻訳: https://github.com/orgs/ActivityLauncher/repositories
|
||||
ベータ版リリースにオプトイン: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Ka hûn bikarhênerek hêzdar, pêşdebir an tenê meraqdar bin, Aktivit desbeki
|
|||
- Paqij û sivik bi navgînek sade
|
||||
|
||||
💡 Derbarê Projeyê:
|
||||
Aktivit desbekirin Pro projeyek çavkaniya vekirî ye ku li https://github.com/butzist/ActivityLauncher heye.
|
||||
Aktivit desbekirin Pro projeyek çavkaniya vekirî ye ku li https://github.com/orgs/ActivityLauncher/repositories heye.
|
||||
|
||||
🤝 Tevlî Bibin:
|
||||
Ev proje ji hêla civakê ve tê rêvebirin - hûn bi xêr hatin ku hûn kod, werger an ramanan bexşînin. Alîkariya me bikin ku em baştir bibin û mezin bibin!
|
||||
|
||||
Malper: https://activitylauncher.net
|
||||
کۆدی سەرچاوە و وەرگێڕان: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
کۆدی سەرچاوە و وەرگێڕان: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Ji bo serbestberdana Beta hilbijêrin: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
- 간단한 인터페이스로 깔끔하고 가벼움
|
||||
|
||||
💡 프로젝트 정보:
|
||||
액티비티 런처 프로는 https://github.com/butzist/ActivityLauncher 에서 확인할 수 있는 오픈 소스 프로젝트입니다.
|
||||
액티비티 런처 프로는 https://github.com/orgs/ActivityLauncher/repositories 에서 확인할 수 있는 오픈 소스 프로젝트입니다.
|
||||
|
||||
🤝 참여하기:
|
||||
이것은 커뮤니티 기반 프로젝트입니다. 코드, 번역 또는 아이디어를 자유롭게 기여해 주세요. 개선하고 성장하도록 도와주세요!
|
||||
|
||||
웹사이트: https://activitylauncher.net
|
||||
소스 코드 및 번역: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
소스 코드 및 번역: https://github.com/orgs/ActivityLauncher/repositories
|
||||
베타 릴리스 옵트인: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
- پاک و سووکە لەگەڵ ڕووکارێکی سادە
|
||||
|
||||
💡 دەربارەی پرۆژەکە:
|
||||
Activity Launcher Pro پڕۆژەیەکی سەرچاوە کراوەیە کە لە https://github.com/butzist/ActivityLauncher بەردەستە.
|
||||
Activity Launcher Pro پڕۆژەیەکی سەرچاوە کراوەیە کە لە https://github.com/orgs/ActivityLauncher/repositories بەردەستە.
|
||||
|
||||
🤝 بەشدار بە:
|
||||
ئەمە پڕۆژەیەکی بەڕێوەبردنی کۆمەڵگایە – بەخێربێیت بۆ بەشداریکردن لە کۆد، وەرگێڕان، یان بیرۆکەکان. یارمەتیمان بدە بۆ باشترکردن و گەشەکردن!
|
||||
|
||||
ماڵپەڕ: https://activitylauncher.net
|
||||
کۆدی سەرچاوە و وەرگێڕانەکان: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
کۆدی سەرچاوە و وەرگێڕانەکان: https://github.com/orgs/ActivityLauncher/repositories
|
||||
بۆ بەشداری لە بەرەشێوەی بتا خۆت تۆمار بکە: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Neatkarīgi no tā, vai esat pieredzējis lietotājs, izstrādātājs vai vienk
|
|||
- Tīrs un viegls ar vienkāršu saskarni
|
||||
|
||||
💡 Par projektu:
|
||||
Activity Launcher Pro ir atvērtā pirmkoda projekts, kas pieejams vietnē https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro ir atvērtā pirmkoda projekts, kas pieejams vietnē https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Iesaistieties:
|
||||
Šis ir kopienas virzīts projekts — esat laipni aicināti sniegt ieguldījumu kodā, tulkojumos vai idejās. Palīdziet mums uzlabot un augt!
|
||||
|
||||
Vietne: https://activitylauncher.net
|
||||
Pirmkods un tulkojumi: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Pirmkods un tulkojumi: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Pievienojieties Beta versijai: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Of je nu een power user, ontwikkelaar of gewoon nieuwsgierig bent, Activity Laun
|
|||
- Schoon en lichtgewicht met een eenvoudige interface
|
||||
|
||||
💡 Over het project:
|
||||
Activity Launcher Pro is een open-source project dat beschikbaar is op https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro is een open-source project dat beschikbaar is op https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Doe mee:
|
||||
Dit is een project dat door de gemeenschap wordt gedreven – je bent welkom om code, vertalingen of ideeën bij te dragen. Help ons verbeteren en groeien!
|
||||
|
||||
Website: https://activitylauncher.net
|
||||
Broncode en vertalingen: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Broncode en vertalingen: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Meld je aan voor de bètaversie: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Enten du er en superbruker, utvikler eller bare nysgjerrig, gir Activity Launche
|
|||
- Rent og lett med et enkelt grensesnitt
|
||||
|
||||
💡 Om prosjektet:
|
||||
Activity Launcher Pro er et åpen kildekode-prosjekt som er tilgjengelig på https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro er et åpen kildekode-prosjekt som er tilgjengelig på https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Bli involvert:
|
||||
Dette er et fellesskapsdrevet prosjekt – du er velkommen til å bidra med kode, oversettelser eller ideer. Hjelp oss å forbedre og vokse!
|
||||
|
||||
Nettsted: https://activitylauncher.net
|
||||
Kildekode og oversettelser: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Kildekode og oversettelser: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Meld deg på for Beta-utgivelse: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
- ਇੱਕ ਸਧਾਰਨ ਇੰਟਰਫੇਸ ਨਾਲ ਸਾਫ਼ ਅਤੇ ਹਲਕਾ
|
||||
|
||||
💡 ਪ੍ਰੋਜੈਕਟ ਬਾਰੇ:
|
||||
ਐਕਟੀਵਿਟੀ ਲਾਂਚਰ ਪ੍ਰੋ ਇੱਕ ਖੁੱਲ੍ਹਾ ਸੋਰਸ ਪ੍ਰੋਜੈਕਟ ਹੈ ਜੋ https://github.com/butzist/ActivityLauncher ‘ਤੇ ਉਪਲਬਧ ਹੈ।.
|
||||
ਐਕਟੀਵਿਟੀ ਲਾਂਚਰ ਪ੍ਰੋ ਇੱਕ ਖੁੱਲ੍ਹਾ ਸੋਰਸ ਪ੍ਰੋਜੈਕਟ ਹੈ ਜੋ https://github.com/orgs/ActivityLauncher/repositories ‘ਤੇ ਉਪਲਬਧ ਹੈ।.
|
||||
|
||||
🤝 ਸ਼ਾਮਲ ਹੋਵੋ:
|
||||
ਇਹ ਇੱਕ ਕਮਿਊਨਿਟੀ-ਅਧਾਰਿਤ ਪ੍ਰੋਜੈਕਟ ਹੈ – ਤੁਹਾਡਾ ਕੋਡ, ਅਨੁਵਾਦਾਂ ਜਾਂ ਵਿਚਾਰਾਂ ਦਾ ਯੋਗਦਾਨ ਕਰਨ ਲਈ ਸੁਆਗਤ ਹੈ। ਸਾਡੀ ਬਿਹਤਰੀ ਅਤੇ ਵਿਕਾਸ ਵਿੱਚ ਮਦਦ ਕਰੋ!
|
||||
|
||||
ਵੈੱਬਸਾਈਟ: https://activitylauncher.net
|
||||
ਸਰੋਤ ਕੋਡ ਅਤੇ ਅਨੁਵਾਦ: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
ਸਰੋਤ ਕੋਡ ਅਤੇ ਅਨੁਵਾਦ: https://github.com/orgs/ActivityLauncher/repositories
|
||||
ਬੀਟਾ ਰੀਲੀਜ਼ ਲਈ ਔਪਟ-ਇਨ ਕਰੋ: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Niezależnie od tego, czy jesteś zaawansowanym użytkownikiem, programistą, cz
|
|||
- Czysty i lekki z prostym interfejsem
|
||||
|
||||
💡 O projekcie:
|
||||
Launcher Aktywności Pro to projekt o otwartym kodzie źródłowym dostępny na stronie https://github.com/butzist/ActivityLauncher.
|
||||
Launcher Aktywności Pro to projekt o otwartym kodzie źródłowym dostępny na stronie https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Zaangażuj się:
|
||||
Jest to projekt tworzony przez społeczność – możesz wnosić wkład w postaci kodu, tłumaczeń lub pomysłów. Pomóż nam ulepszać i rozwijać się!
|
||||
|
||||
Strona internetowa: https://activitylauncher.net
|
||||
Kod źródłowy i tłumaczenia: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Kod źródłowy i tłumaczenia: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Zapisz się do wersji Beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Seja você um usuário avançado, desenvolvedor ou apenas curioso, o Activity La
|
|||
- Limpo e leve, com uma interface simples
|
||||
|
||||
💡 Sobre o projeto:
|
||||
Activity Launcher Pro é um projeto de código aberto disponível em https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro é um projeto de código aberto disponível em https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Envolva-se:
|
||||
Este é um projeto orientado pela comunidade – você pode contribuir com código, traduções ou ideias. Ajude-nos a melhorar e crescer!
|
||||
|
||||
Website: https://activitylauncher.net
|
||||
Código fonte e traduções: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Código fonte e traduções: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Aceite a versão Beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Seja você um usuário avançado, desenvolvedor ou apenas curioso, o Activity La
|
|||
- Limpo e leve com uma interface simples
|
||||
|
||||
💡 Sobre o Projeto:
|
||||
Activity Launcher Pro é um projeto de código aberto disponível em https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro é um projeto de código aberto disponível em https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Envolva-se:
|
||||
Este é um projeto conduzido pela comunidade – você pode contribuir com código, traduções ou ideias. Ajude-nos a melhorar e crescer!
|
||||
|
||||
Website: https://activitylauncher.net
|
||||
Código fonte e traduções: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Código fonte e traduções: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Aceite a versão Beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Fie că ești un utilizator avansat, un dezvoltator sau doar un curios, Lansator
|
|||
- Curat și ușor, cu o interfață simplă
|
||||
|
||||
💡 Despre proiect:
|
||||
Lansatorul de activități Pro este un proiect open-source disponibil la https://github.com/butzist/ActivityLauncher.
|
||||
Lansatorul de activități Pro este un proiect open-source disponibil la https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Implică-te:
|
||||
Acesta este un proiect bazat pe comunitate – ești binevenit să contribui cu cod, traduceri sau idei. Ajută-ne să ne îmbunătățim și să creștem!
|
||||
|
||||
Site web: https://activitylauncher.net
|
||||
Cod sursă și traduceri: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Cod sursă și traduceri: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Înscrie-te pentru versiunea beta: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
- Чистый и легкий с простым интерфейсом
|
||||
|
||||
💡 О проекте:
|
||||
Activity Launcher Pro — это проект с открытым исходным кодом, доступный по адресу https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro — это проект с открытым исходным кодом, доступный по адресу https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Примите участие:
|
||||
Это проект, управляемый сообществом — вы можете внести свой вклад в код, переводы или идеи. Помогите нам улучшить и развиваться!
|
||||
|
||||
Веб-сайт: https://activitylauncher.net
|
||||
Исходный код и переводы: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Исходный код и переводы: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Подпишитесь на бета-версию: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
- Чистий і легкий з простим інтерфейсом
|
||||
|
||||
💡 Про проєкт:
|
||||
Activity Launcher Pro — це проєкт з відкритим кодом, доступний за адресою https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro — це проєкт з відкритим кодом, доступний за адресою https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Долучайтеся:
|
||||
Це проєкт, керований спільнотою – ви можете долучатися до коду, перекладів чи ідей. Допоможіть нам покращити та розвиватися!
|
||||
|
||||
Веб-сайт: https://activitylauncher.net
|
||||
Исходный код и переводы: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Исходный код и переводы: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Отримайте бета-версію: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
- සරල අතුරු මුහුණතක් සහිත පිරිසිදු හා සැහැල්ලු
|
||||
|
||||
💡 ව්යාපෘතිය ගැන:
|
||||
ක්රියාකාරකම් දියත්කරණය ප්රෝ යනු https://github.com/butzist/ActivityLauncher හි ඇති විවෘත මූලාශ්ර ව්යාපෘතියකි.
|
||||
ක්රියාකාරකම් දියත්කරණය ප්රෝ යනු https://github.com/orgs/ActivityLauncher/repositories හි ඇති විවෘත මූලාශ්ර ව්යාපෘතියකි.
|
||||
|
||||
🤝 සම්බන්ධ වන්න:
|
||||
මෙය ප්රජාව විසින් මෙහෙයවනු ලබන ව්යාපෘතියකි - කේත, පරිවර්තන හෝ අදහස් සඳහා දායක වීමට ඔබට සාදරයෙන් පිළිගනිමු. වැඩිදියුණු කිරීමට සහ වර්ධනය වීමට අපට උදව් කරන්න!
|
||||
|
||||
වෙබ් අඩවිය: https://activitylauncher.net
|
||||
මූලාශ්ර කේතය සහ පරිවර්තන: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
මූලාශ්ර කේතය සහ පරිවර්තන: https://github.com/orgs/ActivityLauncher/repositories
|
||||
බීටා නිකුතුව සඳහා සහභාගී වන්න: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Podporte neustály vývoj aplikácie Activity Launcher inováciou na Activity La
|
|||
- Čistý a ľahký s jednoduchým rozhraním
|
||||
|
||||
💡 Informácie o projekte:
|
||||
Activity Launcher Pro je projekt s otvoreným zdrojovým kódom dostupný na adrese https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro je projekt s otvoreným zdrojovým kódom dostupný na adrese https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Zapojte sa:
|
||||
Toto je komunitný projekt – môžete prispievať kódom, prekladmi alebo nápadmi. Pomôžte nám zlepšovať sa a rásť!
|
||||
|
||||
Webová stránka: https://activitylauncher.net
|
||||
Zdrojový kód a preklady: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Zdrojový kód a preklady: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Prihláste sa na odber beta verzie: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Ne glede na to, ali ste napredni uporabnik, razvijalec ali vas preprosto zanima,
|
|||
- Čist in lahek s preprostim vmesnikom
|
||||
|
||||
💡 O projektu:
|
||||
Activity Launcher Pro je odprtokodni projekt, ki je na voljo na https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro je odprtokodni projekt, ki je na voljo na https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Sodelujte:
|
||||
To je projekt, ki ga vodi skupnost – dobrodošli ste, da prispevate kodo, prevode ali ideje. Pomagajte nam izboljšati in rasti!
|
||||
|
||||
Spletna stran: https://activitylauncher.net
|
||||
Izvorna koda in prevodi: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Izvorna koda in prevodi: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Vključite se v beta različico: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Podržite dalji razvoj Activity Launcher-a nadogradnjom na Activity Launcher Pro — alat bez reklama i bez analitike koji otključava skrivene aktivnosti aplikacija, omogućava pravljenje prilagođenih prečica i pomaže u budućim unapređenjima.
|
||||
|
||||
Bez obzira da li ste napredni korisnik, programer, ili ste samo radoznali, Activity Launcher Pro vam daje kontrolu i mogućnost prilagođavanja vašeg uređaja.
|
||||
Bez obzira da li ste napredni korisnik, programer, ili ste samo radoznali, Activity Launcher Pro vam daje kontrolu i mogućnost prilagođavanja vašeg uređaja.
|
||||
|
||||
🔍 Ključne karakteristike:
|
||||
- Pokrenite skrivene ili interne aktivnosti unitar instaliranih aplikacija
|
||||
|
|
@ -8,12 +8,12 @@ Bez obzira da li ste napredni korisnik, programer, ili ste samo radoznali, Activ
|
|||
-Čist i lagan sa jednostavnim interfejsom
|
||||
|
||||
💡 О projektu:
|
||||
Activity Launcher Pro je open-source projekat, dostupan ovde https://github.com/butzist/ActivityLauncher
|
||||
Activity Launcher Pro je open-source projekat, dostupan ovde https://github.com/orgs/ActivityLauncher/repositories
|
||||
|
||||
🤝 Uključite se:
|
||||
Ovo je projekat koji pokreće zajednica – dobrodošli ste da doprinesete kodom, prevodima ili idejama. Помозите нам да се побољшамо и растемо!
|
||||
|
||||
Sajt: https://activitylauncher.net
|
||||
Veb sajt: https://activitylauncher.net
|
||||
Izvorni kod i prevodi: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Izvorni kod i prevodi: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Prijavite se za beta izdanje aplikacije: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Oavsett om du är en avancerad användare, utvecklare eller bara nyfiken, ger Ac
|
|||
- Ren och lätt med ett enkelt gränssnitt
|
||||
|
||||
💡 Om projektet:
|
||||
Activity Launcher Pro är ett projekt med öppen källkod som finns tillgängligt på https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro är ett projekt med öppen källkod som finns tillgängligt på https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Engagera dig:
|
||||
Detta är ett gemenskapsdrivet projekt – du är välkommen att bidra med kod, översättningar eller idéer. Hjälp oss att förbättra och växa!
|
||||
|
||||
Webbplats: https://activitylauncher.net
|
||||
Källkod och översättningar: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Källkod och översättningar: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Anmäl dig till betaversionen: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
- எளிய இடைமுகத்துடன் சுத்தமான மற்றும் இலகுரக
|
||||
|
||||
💡 திட்டத்தைப் பற்றி:
|
||||
செயல்பாடு துவக்கி புரோ என்பது https://github.com/butzist/ActivityLauncher இல் கிடைக்கும் திறந்த மூல திட்டமாகும்.
|
||||
செயல்பாடு துவக்கி புரோ என்பது https://github.com/orgs/ActivityLauncher/repositories இல் கிடைக்கும் திறந்த மூல திட்டமாகும்.
|
||||
|
||||
🤝 ஈடுபடுங்கள்:
|
||||
இது சமூகம் சார்ந்த திட்டம் - குறியீடு, மொழிபெயர்ப்புகள் அல்லது யோசனைகளை வழங்க நீங்கள் வரவேற்கப்படுகிறீர்கள். நாங்கள் மேம்படுத்தவும் வளரவும் உதவுங்கள்!
|
||||
|
||||
இணையதளம்: https://activitylauncher.net
|
||||
மூலக் குறியீடு மற்றும் மொழிபெயர்ப்புகள்: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
மூலக் குறியீடு மற்றும் மொழிபெயர்ப்புகள்: https://github.com/orgs/ActivityLauncher/repositories
|
||||
பீட்டா வெளியீட்டிற்கு பதிவு செய்யவும்: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
- สะอาดและเรียบง่ายด้วยอินเทอร์เฟซที่ใช้งานง่าย
|
||||
|
||||
💡 เกี่ยวกับโครงการ:
|
||||
Activity Launcher Pro เป็นโครงการโอเพนซอร์สที่ https://github.com/butzist/ActivityLauncher.
|
||||
Activity Launcher Pro เป็นโครงการโอเพนซอร์สที่ https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 เข้าร่วม:
|
||||
นี่คือโครงการที่ขับเคลื่อนโดยชุมชน – คุณสามารถมีส่วนร่วมในการเขียนโค้ด แปล หรือเสนอแนวคิดได้ ช่วยเราปรับปรุงและเติบโต!
|
||||
|
||||
เว็บไซต์: https://activitylauncher.net
|
||||
โค้ดต้นฉบับและการแปล: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
โค้ดต้นฉบับและการแปล: https://github.com/orgs/ActivityLauncher/repositories
|
||||
เข้าร่วมรุ่นเบต้า: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Qu' taghmoHwI' ghItlh development pat vIleghDI' Activity Launcher Pro—ad-free,
|
|||
- wIleghmey 'ej nItebHa' 'ej tIq qonwI' pagh
|
||||
|
||||
💡 De'vam'e' Qu'vam:
|
||||
Activity Launcher Pro vItlhutlh vIqIj 'ej De'vam'e' Qu'vam github.com/butzist/ActivityLauncher Dalo'lu'.
|
||||
Activity Launcher Pro vItlhutlh vIqIj 'ej De'vam'e' Qu'vam github.com/orgs/ActivityLauncher/repositories Dalo'lu'.
|
||||
|
||||
🤝 qatlh wej
|
||||
maQa’pu’ ‘ej maHvaD – tlhIngan Hol, QInmey, HIvje’ ghojmoHmey, pagh wIqel! Qapchu' wIleghmeH 'ej wIbuS!
|
||||
|
||||
Website: https://activitylauncher.net
|
||||
mung De'pu' mughtaHghach: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
mung De'pu' mughtaHghach: https://github.com/orgs/ActivityLauncher/repositories
|
||||
waHmeH SarvaD jeS 'e' SapmeH: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,12 +8,12 @@ Reklamsız, analiz içermeyen, gizli uygulama etkinliklerinin kilidini açan, ö
|
|||
- Basit bir arayüze sahip temiz ve hafif
|
||||
|
||||
💡 Proje Hakkında:
|
||||
Activity Launcher Pro, https://github.com/butzist/ActivityLauncher adresinde bulunan açık kaynaklı bir projedir.
|
||||
Activity Launcher Pro, https://github.com/orgs/ActivityLauncher/repositories adresinde bulunan açık kaynaklı bir projedir.
|
||||
|
||||
🤝 Katılın:
|
||||
Bu, topluluk odaklı bir projedir; kod, çeviri veya fikir katkısında bulunabilirsiniz. Gelişmemize ve büyümemize yardım edin!
|
||||
|
||||
Web sitesi: https://activitylauncher.net
|
||||
Web sitesi: https://activitylauncher.net
|
||||
Kaynak kod ve çeviriler: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Kaynak kod ve çeviriler: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Beta sürümüne kaydolun: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
- Чистий і легкий з простим інтерфейсом
|
||||
|
||||
💡 Про проєкт:
|
||||
Лаунчер Активіті Pro — це проєкт з відкритим вихідним кодом, доступний за адресою https://github.com/butzist/ActivityLauncher.
|
||||
Лаунчер Активіті Pro — це проєкт з відкритим вихідним кодом, доступний за адресою https://github.com/orgs/ActivityLauncher/repositories.
|
||||
|
||||
🤝 Долучайтеся:
|
||||
Це проєкт, керований спільнотою – ви можете долучитися до розробки коду, перекладів або ідей. Допоможіть нам покращити та розвиватись!
|
||||
|
||||
Вебсайт: https://activitylauncher.net
|
||||
Вихідний код і переклади: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
Вихідний код і переклади: https://github.com/orgs/ActivityLauncher/repositories
|
||||
Зареєструйтеся для бета-версії: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ Activity Launcher Pro میں اپ گریڈ کر کے Activity Launcher کی مس
|
|||
- ایک سادہ انٹرفیس کے ساتھ صاف اور ہلکا پھلکا
|
||||
|
||||
💡 پروجیکٹ کے بارے میں:
|
||||
Activity Launcher Pro ایک اوپن سورس پروجیکٹ ہے جو https://github.com/butzist/ActivityLauncher پر دستیاب ہے۔
|
||||
Activity Launcher Pro ایک اوپن سورس پروجیکٹ ہے جو https://github.com/orgs/ActivityLauncher/repositories پر دستیاب ہے۔
|
||||
|
||||
🤝 شامل ہوں:
|
||||
یہ ایک کمیونٹی پر مبنی پروجیکٹ ہے – آپ کوڈ، تراجم یا آئیڈیاز میں حصہ لینے کے لیے خوش آمدید ہیں۔ بہتر بنانے اور بڑھنے میں ہماری مدد کریں!
|
||||
|
||||
ویب سائٹ: https://activitylauncher.net
|
||||
ذریعہ کوڈ اور ترجمے: https://github.com/butzist/ActivityLauncher
|
||||
Discord: https://discord.gg/a4WSmdHZTa
|
||||
ذریعہ کوڈ اور ترجمے: https://github.com/orgs/ActivityLauncher/repositories
|
||||
بیٹا ریلیز کے لیے آپٹ ان کریں: https://play.google.com/apps/testing/de.szalkowski.activitylauncher.pro
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue