0
0
Fork 0
mirror of https://github.com/YTVanced/Integrations synced 2024-11-30 15:13:03 +00:00

Merge pull request #3 from Oizaro/patch-1

Make "About" string translatable
This commit is contained in:
VancedOfficial 2020-10-15 15:35:56 +03:00 committed by GitHub
commit 59bec9f3a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -163,7 +163,7 @@ public class SponsorBlockPreferenceFragment extends PreferenceFragment implement
private void addAboutCategory(Context context, PreferenceScreen screen) { private void addAboutCategory(Context context, PreferenceScreen screen) {
PreferenceCategory category = new PreferenceCategory(context); PreferenceCategory category = new PreferenceCategory(context);
screen.addPreference(category); screen.addPreference(category);
category.setTitle("About"); category.setTitle(str("about"));
{ {
Preference preference = new Preference(context); Preference preference = new Preference(context);