Skip to content

Commit

Permalink
feat(app): Donate section
Browse files Browse the repository at this point in the history
  • Loading branch information
axel358 committed Oct 10, 2023
1 parent e7ce190 commit f2a4134
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 23 deletions.
4 changes: 2 additions & 2 deletions app/src/main/res/values-es/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,8 @@
<string name="join_telegram_summary">¿Tienes alguna pregunta? Únete al grupo de soporte de Telegram</string>
<string name="gnu_general_public_licence_v3">Licencia Pública General GNU v3.0</string>
<string name="license">Licencia</string>
<string name="options_marked_with__are_expe">Las opciones marcadas con * son experimentales y pueden causar problemas. Si experimenta bloqueos, desactívelos</string>

<string name="donate">Donar</string>
<string name="support_the_project">Apoyar el proyecto</string>
<!-- App menu -->
<string name="user">Usuario</string>
<string name="search">Buscar...</string>
Expand Down
7 changes: 4 additions & 3 deletions app/src/main/res/values-pa/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -270,9 +270,10 @@
<string name="join_telegram_summary">ਕੋਈ ਸਵਾਲ ਹਨ? ਟੈਲੀਗ੍ਰਾਮ ਸਹਾਇਤਾ ਸਮੂਹ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਵੋ</string>
<string name="gnu_general_public_licence_v3">GNU ਜਨਰਲ ਪਬਲਿਕ ਲਾਇਸੈਂਸ v3.0</string>
<string name="license">ਲਾਇਸੰਸ</string>
<string name="options_marked_with__are_expe">* ਨਾਲ ਚਿੰਨ੍ਹਿਤ ਵਿਕਲਪ ਪ੍ਰਯੋਗਾਤਮਕ ਹਨ ਅਤੇ ਸਮੱਸਿਆ ਪੈਦਾ ਕਰ ਸਕਦੇ ਹਨ। ਜੇ ਤੁਸੀਂ ਕਰੈਸ਼ਾਂ ਦਾ ਅਨੁਭਵ ਕਰਦੇ ਹੋ ਤਾਂ ਉਹਨਾਂ ਨੂੰ ਅਯੋਗ ਕਰੋ</string>

<!-- App menu -->
<string name="donate">Donate</string>
<string name="support_the_project">Support the project</string>

<!-- App menu -->
<string name="user">ਉਪਭੋਗਤਾ</string>
<string name="search">ਖੋਜ</string>
<string name="copied_to_clipboard">ਕਲਿੱਪਬੋਰਡ \'ਤੇ ਕਾਪੀ ਕੀਤਾ ਗਿਆ</string>
Expand Down
5 changes: 3 additions & 2 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,9 @@
<string name="join_telegram_summary">Got any questions? Join the Telegram support group</string>
<string name="gnu_general_public_licence_v3">GNU General Public Licence v3.0</string>
<string name="license">License</string>
<string name="options_marked_with__are_expe">Options marked with * are experimental and may cause trouble. If you experience crashes disable them</string>

<string name="donate">Donate</string>
<string name="support_the_project">Support the project</string>

<!-- App menu -->
<string name="user">User</string>
<string name="search">Search...</string>
Expand Down
35 changes: 19 additions & 16 deletions app/src/main/res/xml/preferences_help_about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,34 @@
<Preference
android:title="@string/app_name"
android:summary="@string/a_launcher_for_android_x86_by_" />
<Preference
android:title="@string/contributors"
android:summary="@string/tap_to_see_the_list_of_great_p" >
<intent android:action="android.intent.action.VIEW"
android:data="https://github.com/axel358/smartdock/blob/main/Contributors.md"/>
</Preference>
<Preference
android:key="show_help"
android:summary="@string/show_help_summary"
android:title="@string/help" >
</Preference>
<Preference
android:summary="@string/smart_dock_its_free_and_open_"
android:title="@string/github" >
<intent android:action="android.intent.action.VIEW"
android:data="https://github.com/axel358/smartdock"/>
</Preference>
<Preference
android:key="join_telegram"
android:title="@string/join_telegram_title"
android:summary="@string/join_telegram_summary" />
<Preference
android:summary="@string/gnu_general_public_licence_v3"
android:title="@string/license" />
android:summary="@string/smart_dock_its_free_and_open_"
android:title="@string/github" >
<intent android:action="android.intent.action.VIEW"
android:data="https://github.com/axel358/smartdock"/>
</Preference>
<Preference
android:icon="@drawable/ic_info"
android:title="@string/options_marked_with__are_expe"/>
android:summary="@string/support_the_project"
android:title="@string/donate" >
<intent android:action="android.intent.action.VIEW"
android:data="https://github.com/axel358/smartdock/blob/main/README.md#support-the-project"/>
</Preference>
<Preference
android:title="@string/contributors"
android:summary="@string/tap_to_see_the_list_of_great_p" >
<intent android:action="android.intent.action.VIEW"
android:data="https://github.com/axel358/smartdock/blob/main/Contributors.md"/>
</Preference>
<Preference
android:summary="@string/gnu_general_public_licence_v3"
android:title="@string/license" />
</PreferenceScreen>

0 comments on commit f2a4134

Please sign in to comment.