Skip to content

Commit

Permalink
fixing quotations, remove empty files
Browse files Browse the repository at this point in the history
  • Loading branch information
LisoUseInAIKyrios committed Jan 1, 2024
1 parent e61105d commit ea7b64d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ class TextPreference(
summaryKey: String?,
val inputType: InputType = InputType.TEXT,
default: String? = null,
tag: String = "app.revanced.integrations.settingsmenu.ResettableEditTextPreference"
tag: String = "app.revanced.integrations.shared.settings.preference.ResettableEditTextPreference"
) : DefaultBasePreference<String>(key, titleKey, summaryKey, tag, default) {

/**
* Initialize using title and summary keys with the suffix "_title", "_summary_on", "_summary_off"
*/
constructor(
key: String, inputType: InputType = InputType.TEXT, default: String? = null,
tag: String = "app.revanced.integrations.settingsmenu.ResettableEditTextPreference"
tag: String = "app.revanced.integrations.shared.settings.preference.ResettableEditTextPreference"
) : this(key, "${key}_title", "${key}_summary", inputType, default, tag)


Expand Down
Empty file.
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
<resources>
<string name="revanced_spoof_device_dimensions_title">Spoof device dimensions</string>
<string name="revanced_spoof_device_dimensions_summary_on">Device dimensions spoofed</string>
<string name="revanced_spoof_device_dimensions_summary_off">"Device dimensions not spoofed.\n\nSpoofing the device dimensions can unlock higher video qualities but unknown side effects may occur"</string>
<string name="revanced_spoof_device_dimensions_summary_off">Device dimensions not spoofed.\n\nSpoofing the device dimensions can unlock higher video qualities but unknown side effects may occur</string>
</resources>

0 comments on commit ea7b64d

Please sign in to comment.