added recovery mode
This commit is contained in:
parent
f6030910e8
commit
b21d28f251
2 changed files with 13 additions and 7 deletions
|
@ -35,14 +35,14 @@
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Start normally"
|
android:text="@string/start_normally"
|
||||||
android:textAppearance="?attr/textAppearanceTitleMedium" />
|
android:textAppearance="?attr/textAppearanceTitleMedium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="8dp"
|
android:layout_marginTop="8dp"
|
||||||
android:text="Don't do anything and start the app normally."
|
android:text="@string/start_normally_desc"
|
||||||
android:textAppearance="?attr/textAppearanceBodyMedium"
|
android:textAppearance="?attr/textAppearanceBodyMedium"
|
||||||
android:textColor="?android:attr/textColorSecondary" />
|
android:textColor="?android:attr/textColorSecondary" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
@ -65,14 +65,14 @@
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Safe mode"
|
android:text="@string/safe_mode"
|
||||||
android:textAppearance="?attr/textAppearanceTitleMedium" />
|
android:textAppearance="?attr/textAppearanceTitleMedium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="8dp"
|
android:layout_marginTop="8dp"
|
||||||
android:text="Use this option to launch the app and load Discord, but without Vencord or any VendroidEnhanced tweak injected."
|
android:text="@string/safe_mode_desc"
|
||||||
android:textAppearance="?attr/textAppearanceBodyMedium"
|
android:textAppearance="?attr/textAppearanceBodyMedium"
|
||||||
android:textColor="?android:attr/textColorSecondary" />
|
android:textColor="?android:attr/textColorSecondary" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
@ -95,14 +95,14 @@
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Open settings"
|
android:text="@string/open_settings"
|
||||||
android:textAppearance="?attr/textAppearanceTitleMedium" />
|
android:textAppearance="?attr/textAppearanceTitleMedium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="8dp"
|
android:layout_marginTop="8dp"
|
||||||
android:text="Configure VendroidEnhanced."
|
android:text="@string/open_settings_desc"
|
||||||
android:textAppearance="?attr/textAppearanceBodyMedium"
|
android:textAppearance="?attr/textAppearanceBodyMedium"
|
||||||
android:textColor="?android:attr/textColorSecondary" />
|
android:textColor="?android:attr/textColorSecondary" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<string name="custom_location_url">Custom location URL</string>
|
<string name="custom_location_url">Custom location URL</string>
|
||||||
<string name="no">No</string>
|
<string name="no">No</string>
|
||||||
<string name="yes">Yes</string>
|
<string name="yes">Yes</string>
|
||||||
<string name="vendroid_update_available">Vendroid update available</string>
|
<string name="vendroid_update_available">VendroidEnhanced update available</string>
|
||||||
<string name="update">Update</string>
|
<string name="update">Update</string>
|
||||||
<string name="later">Later</string>
|
<string name="later">Later</string>
|
||||||
<string name="viggy">Viggy, by shoritsu</string>
|
<string name="viggy">Viggy, by shoritsu</string>
|
||||||
|
@ -24,4 +24,10 @@
|
||||||
<string name="splashscreen">Splash screen</string>
|
<string name="splashscreen">Splash screen</string>
|
||||||
<string name="recovery_shortcut_name">Recovery mode</string>
|
<string name="recovery_shortcut_name">Recovery mode</string>
|
||||||
<string name="cleared_all">Cleared all cookies</string>
|
<string name="cleared_all">Cleared all cookies</string>
|
||||||
|
<string name="start_normally">Start normally</string>
|
||||||
|
<string name="start_normally_desc">Don\'t do anything and start the app normally.</string>
|
||||||
|
<string name="safe_mode">Safe mode</string>
|
||||||
|
<string name="safe_mode_desc">Use this option to launch the app and load Discord, but without Vencord or any VendroidEnhanced tweak injected.</string>
|
||||||
|
<string name="open_settings">Open settings</string>
|
||||||
|
<string name="open_settings_desc">Configure VendroidEnhanced.</string>
|
||||||
</resources>
|
</resources>
|
Loading…
Reference in a new issue