1
0
Fork 0
mirror of https://github.com/jrpie/Launcher.git synced 2025-05-02 16:50:56 +02:00
This commit is contained in:
Josia Pietsch 2024-07-02 21:21:51 +02:00
parent 0ed2f0d020
commit e85f00d293
Signed by: jrpie
GPG key ID: E70B571D66986A2D
51 changed files with 439 additions and 515 deletions

View file

@ -44,19 +44,4 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.finnmglas.launcher.libraries.FontAwesome
android:id="@+id/home_settings_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/fas_settings"
android:textColor="?attr/colorAccent"
android:textSize="36sp"
android:visibility="invisible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.95"
custom:type="solid" />
</androidx.constraintlayout.widget.ConstraintLayout>

View file

@ -23,7 +23,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.finnmglas.launcher.libraries.FontAwesome
<de.jrpie.android.launcher.libraries.FontAwesome
android:id="@+id/list_settings"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -55,7 +55,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.finnmglas.launcher.libraries.FontAwesome
<de.jrpie.android.launcher.libraries.FontAwesome
android:id="@+id/list_close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View file

@ -33,7 +33,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.finnmglas.launcher.libraries.FontAwesome
<de.jrpie.android.launcher.libraries.FontAwesome
android:id="@+id/list_apps_row_menu"
android:layout_width="30sp"
android:layout_height="0dp"

View file

@ -7,7 +7,7 @@
android:layout_height="wrap_content"
android:layout_margin="15sp">
<com.finnmglas.launcher.libraries.FontAwesome
<de.jrpie.android.launcher.libraries.FontAwesome
android:id="@+id/list_other_row_icon"
android:layout_width="35sp"
android:layout_height="35sp"

View file

@ -33,7 +33,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.finnmglas.launcher.libraries.FontAwesome
<de.jrpie.android.launcher.libraries.FontAwesome
android:id="@+id/settings_close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -50,7 +50,7 @@
app:layout_constraintTop_toTopOf="parent"
custom:type="solid" />
<com.finnmglas.launcher.libraries.FontAwesome
<de.jrpie.android.launcher.libraries.FontAwesome
android:id="@+id/settings_system"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View file

@ -11,7 +11,7 @@
<fragment
android:id="@+id/settings_actions_rview_fragment"
android:name="com.finnmglas.launcher.settings.actions.SettingsFragmentActionsRecycler"
android:name="de.jrpie.android.launcher.settings.actions.SettingsFragmentActionsRecycler"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginBottom="16dp"

View file

@ -32,7 +32,7 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.finnmglas.launcher.libraries.FontAwesome
<de.jrpie.android.launcher.libraries.FontAwesome
android:id="@+id/settings_actions_row_icon"
android:layout_width="@dimen/app_icon_side"
android:layout_height="@dimen/app_icon_side"
@ -55,7 +55,7 @@
app:layout_constraintTop_toTopOf="parent"
tools:ignore="ContentDescription" />
<com.finnmglas.launcher.libraries.FontAwesome
<de.jrpie.android.launcher.libraries.FontAwesome
android:id="@+id/settings_actions_row_remove"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View file

@ -36,62 +36,6 @@
android:text="@string/settings_meta_reset"
android:textAllCaps="false" />
<LinearLayout
android:id="@+id/settings_meta_layout_icons"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="32sp"
android:layout_marginBottom="32sp"
android:gravity="center"
android:orientation="horizontal">
<com.finnmglas.launcher.libraries.FontAwesome
android:id="@+id/settings_meta_icon_store"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_weight="1"
android:gravity="center"
android:includeFontPadding="true"
android:paddingLeft="16sp"
android:paddingRight="16sp"
android:text="@string/fas_store"
android:textColor="?attr/colorAccent"
android:textSize="40sp"
custom:type="solid" />
<com.finnmglas.launcher.libraries.FontAwesome
android:id="@+id/settings_meta_icon_github"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_weight="1"
android:gravity="center"
android:includeFontPadding="true"
android:paddingLeft="16sp"
android:paddingRight="16sp"
android:text="@string/fab_github"
android:textColor="?attr/colorAccent"
android:textSize="40sp"
custom:type="brands" />
<com.finnmglas.launcher.libraries.FontAwesome
android:id="@+id/settings_meta_icon_donate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:includeFontPadding="true"
android:paddingLeft="16sp"
android:paddingRight="16sp"
android:text="@string/fas_heart"
android:textColor="?attr/colorAccent"
android:textSize="40sp"
custom:type="solid" />
</LinearLayout>
<Button
android:id="@+id/settings_meta_button_report_bug"
@ -101,12 +45,6 @@
android:text="@string/settings_meta_report_bug"
android:textAllCaps="false" />
<Button
android:id="@+id/settings_meta_button_discord"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/settings_meta_discord"
android:textAllCaps="false" />
<Button
android:id="@+id/settings_meta_button_contact"
@ -115,4 +53,11 @@
android:text="@string/settings_meta_contact"
android:textAllCaps="false" />
<Button
android:id="@+id/settings_meta_button_fork_contact"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/settings_meta_fork_contact"
android:textAllCaps="false" />
</LinearLayout>

View file

@ -37,7 +37,7 @@
custom:layout_constraintStart_toStartOf="parent"
custom:layout_constraintTop_toTopOf="parent" />
<com.finnmglas.launcher.libraries.FontAwesome
<de.jrpie.android.launcher.libraries.FontAwesome
android:id="@+id/tutorial_close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View file

@ -36,7 +36,7 @@
<fragment
android:id="@+id/tutorial_setup_actions_rview_fragment"
android:name="com.finnmglas.launcher.settings.actions.SettingsFragmentActionsRecycler"
android:name="de.jrpie.android.launcher.settings.actions.SettingsFragmentActionsRecycler"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="32dp"

View file

@ -11,7 +11,7 @@
android:background="?attr/colorPrimary"
tools:context=".tutorial.tabs.TutorialFragmentStart">
<com.finnmglas.launcher.libraries.FontAwesome
<de.jrpie.android.launcher.libraries.FontAwesome
android:id="@+id/tutorial_start_icon_right_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -34,7 +34,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.finnmglas.launcher.libraries.FontAwesome
<de.jrpie.android.launcher.libraries.FontAwesome
android:id="@+id/tutorial_start_icon_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View file

@ -100,7 +100,7 @@
<string name="settings_meta_reset">Zurücksetzen</string>
<string name="settings_meta_reset_confirm">All deine Einstellungen gehen verloren. Weitermachen?</string>
<string name="settings_meta_link_github">https://github.com/finnmglas/Launcher#de</string>
<string name="settings_meta_link_github">https://github.de.jrpie.android.launcher#de</string>
<string name="settings_meta_report_bug">Einen Fehler melden</string>
@ -109,7 +109,6 @@
<string name="settings_meta_contact">Entwickler kontaktieren</string>
<string name="settings_meta_contact_url">https://www.finnmglas.com/de/kontakt/</string>
<string name="settings_meta_donate_url">https://www.finnmglas.com/de/sponsor</string>
<!--
-

View file

@ -124,15 +124,13 @@
<string name="settings_meta_reset">Configuración por defecto</string>
<string name="settings_meta_reset_confirm">Todas sus preferencias se eliminarán. Desea continuar?</string>
<string name="settings_meta_link_github">https://github.com/finnmglas/Launcher#en</string>
<string name="settings_meta_link_github">https://github.de.jrpie.android.launcher#en</string>
<string name="settings_meta_report_bug">Reportar un error</string>
<string name="settings_meta_contact">Contactar al desarrollador</string>
<string name="settings_meta_contact_url">https://www.finnmglas.com/contact/</string>
<string name="settings_meta_donate_url">https://www.finnmglas.com/sponsor</string>
<string name="settings_meta_discord">Unete a nuestro discord!</string>
<!--

View file

@ -100,7 +100,7 @@
<string name="settings_meta_reset">Réinitialiser</string>
<string name="settings_meta_reset_confirm">Vous allez supprimer toutes vos préférences. Continuer?</string>
<string name="settings_meta_link_github">https://github.com/finnmglas/Launcher#fr</string>
<string name="settings_meta_link_github">https://github.de.jrpie.android.launcher#fr</string>
<string name="settings_meta_report_bug">Signaler une erreur</string>
@ -109,7 +109,6 @@
<string name="settings_meta_contact">Contacter le développeur</string>
<string name="settings_meta_contact_url">https://www.finnmglas.com/fr/contact/</string>
<string name="settings_meta_donate_url">https://www.finnmglas.com/fr/sponsor</string>
<!--
-

View file

@ -1,4 +1,4 @@
vim<resources>
<resources>
<!--
-
- General
@ -122,15 +122,17 @@ vim<resources>
<string name="settings_meta_reset">Reset Settings</string>
<string name="settings_meta_reset_confirm">You are going to discard all your preferences. Continue?</string>
<string name="settings_meta_link_github">https://github.com/finnmglas/Launcher#en</string>
<string name="settings_meta_link_github">https://github.com/jrpie/Launcher</string>
<string name="settings_meta_report_bug">Report a bug</string>
<string name="settings_meta_report_bug_link" translatable="false">https://github.com/finnmglas/Launcher/issues/new</string>
<string name="settings_meta_report_bug_link" translatable="false">https://github.com/jrpie/Launcher/issues/new</string>
<string name="settings_meta_contact">Contact the developer</string>
<string name="settings_meta_fork_contact">Contact the developer of the fork</string>
<string name="settings_meta_fork_contact_url">https://jrpie.de/contact/</string>
<string name="settings_meta_contact">Contact the original developer</string>
<string name="settings_meta_contact_url">https://www.finnmglas.com/contact/</string>
<string name="settings_meta_donate_url">https://www.finnmglas.com/sponsor</string>
<string name="settings_meta_discord">Join us on discord!</string>
<string name="settings_meta_discord_url" translatable="false">https://discord.com/invite/jV2AhF8</string>