Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Vera-Firefly authored Aug 8, 2023
1 parent f33be76 commit 73bf28a
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -474,22 +474,22 @@
android:id="@+id/visibility_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Visibility"
android:text="@string/preference_category_visibility_title"
app:layout_constraintTop_toBottomOf="@+id/editButtonOpacity_seekbar"
tools:layout_editor_absoluteX="6dp" />

<CheckBox
android:id="@+id/visibility_game_checkbox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="In game"
android:text="@string/preference_category_in_game_title"
app:layout_constraintTop_toBottomOf="@+id/visibility_textview" />

<CheckBox
android:id="@+id/visibility_menu_checkbox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="In Menu"
android:text="@string/preference_category_in_menu_title"
app:layout_constraintTop_toBottomOf="@+id/visibility_game_checkbox" />


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
android:id="@+id/button_microsoft_authentication"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Microsoft Account"
android:text="@string/preference_category_microsoft_account_title"
android:textSize="@dimen/_12ssp"
android:layout_marginHorizontal="@dimen/_25sdp"
android:layout_marginBottom="@dimen/_20sdp"
Expand All @@ -43,7 +43,7 @@
android:id="@+id/button_local_authentication"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Local account"
android:text="@string/preference_category_local_account_title"
android:textSize="@dimen/_12ssp"
android:layout_marginHorizontal="@dimen/_25sdp"
app:layout_constraintBottom_toBottomOf="@id/login_menu"
Expand Down
14 changes: 14 additions & 0 deletions app_pojavlauncher/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -407,5 +407,19 @@
<string name="preference_gyro_damper_window_title">Smoothing time</string>
<string name="preference_gyro_damper_window_description">Reduce jitter in exchange of latency. 0 to disable it</string>

<!-- App New Annotation -->
<string name="preference_category_gestures_title">Gestures</string>
<string name="preference_category_buttons_title">Buttons</string>
<string name="preference_category_experimental_fuckury_title">Experimental fuckury</string>
<string name="preference_category_java_tweaks_title">Java Tweaks</string>
<string name="preference_category_categories_title">Categories</string>
<string name="preference_category_miscellaneous_settings_title">Miscellaneous settings</string>
<string name="preference_category_video_settings_title">Video settings</string>
<string name="preference_category_visibility_title">Visibility</string>
<string name="preference_category_in_game_title">In game</string>
<string name="preference_category_in_menu_title">In Menu</string>
<string name="preference_category_microsoft_account_title">Microsoft Account</string>
<string name="preference_category_local_account_title">Local account</string>


</resources>
4 changes: 2 additions & 2 deletions app_pojavlauncher/src/main/res/xml/pref_control.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</Preference>

<PreferenceCategory
android:title="Gestures ">
android:title="@string/preference_category_gestures_title">

<androidx.preference.SwitchPreferenceCompat
android:defaultValue="false"
Expand Down Expand Up @@ -42,7 +42,7 @@
</PreferenceCategory>

<PreferenceCategory
android:title="Buttons">
android:title="@string/preference_category_buttons_title">

<net.kdt.pojavlaunch.prefs.CustomSeekBarPreference
android:key="buttonscale"
Expand Down
2 changes: 1 addition & 1 deletion app_pojavlauncher/src/main/res/xml/pref_experimental.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app2="http://schemas.android.com/apk/res-auto">
<net.kdt.pojavlaunch.prefs.BackButtonPreference/>
<PreferenceCategory android:title="Experimental fuckury">
<PreferenceCategory android:title="@string/preference_category_experimental_fuckury_title">

<SwitchPreferenceCompat
android:key="dump_shaders"
Expand Down
2 changes: 1 addition & 1 deletion app_pojavlauncher/src/main/res/xml/pref_java.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<net.kdt.pojavlaunch.prefs.BackButtonPreference/>

<PreferenceCategory android:title="Java Tweaks">
<PreferenceCategory android:title="@string/preference_category_java_tweaks_title">
<net.kdt.pojavlaunch.prefs.RuntimeManagerPreference
android:summary="@string/multirt_subtitle"
android:title="@string/multirt_title"/>
Expand Down
2 changes: 1 addition & 1 deletion app_pojavlauncher/src/main/res/xml/pref_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<net.kdt.pojavlaunch.prefs.BackButtonPreference/>

<PreferenceCategory
android:title="Categories"
android:title="@string/preference_category_categories_title"
>

<Preference
Expand Down
2 changes: 1 addition & 1 deletion app_pojavlauncher/src/main/res/xml/pref_misc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<net.kdt.pojavlaunch.prefs.BackButtonPreference/>

<PreferenceCategory android:title="Miscellaneous settings">
<PreferenceCategory android:title="@string/preference_category_miscellaneous_settings_title">
<SwitchPreference
android:defaultValue="true"
android:icon="@drawable/ic_setting_hash_verification"
Expand Down
2 changes: 1 addition & 1 deletion app_pojavlauncher/src/main/res/xml/pref_video.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<net.kdt.pojavlaunch.prefs.BackButtonPreference/>

<PreferenceCategory android:title="Video settings" >
<PreferenceCategory android:title="@string/preference_category_video_settings_title" >
<androidx.preference.ListPreference
android:title="@string/mcl_setting_category_renderer"
android:key="renderer"
Expand Down

0 comments on commit 73bf28a

Please sign in to comment.