Make "About" string translatable

This commit is contained in:
Oizaro 2020-10-15 14:32:34 +02:00 committed by GitHub
parent 2cc648897f
commit dd74632173
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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