Skip to content

Commit

Permalink
Merge pull request #68 from zjns/dev
Browse files Browse the repository at this point in the history
fix: Setting backup preference title
  • Loading branch information
crimera authored Jul 21, 2024
2 parents b6436ca + ca2c5de commit ecf3694
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ public void onCreate(@Nullable Bundle savedInstanceState) {
LegacyTwitterPreferenceCategory backupPref = preferenceCategory(strRes("piko_title_backup"), screen);
backupPref.addPreference(
buttonPreference(
StringRef.str("piko_pref_export",strRes("notification_settings_preferences_category")),
StringRef.str("piko_pref_export",strRes("settings_notification_pref_item_title")),
"",
Settings.EXPORT_PREF.key
)
Expand All @@ -500,7 +500,7 @@ public void onCreate(@Nullable Bundle savedInstanceState) {
);
backupPref.addPreference(
buttonPreference(
StringRef.str("piko_pref_import",strRes("notification_settings_preferences_category")),
StringRef.str("piko_pref_import",strRes("settings_notification_pref_item_title")),
strRes("piko_pref_app_restart_rec"),
Settings.IMPORT_PREF.key
)
Expand All @@ -515,7 +515,7 @@ public void onCreate(@Nullable Bundle savedInstanceState) {

backupPref.addPreference(
buttonPreference(
strRes("delete")+": "+strRes("notification_settings_preferences_category"),
strRes("delete")+": "+strRes("settings_notification_pref_item_title"),
"",
Settings.RESET_PREF.key
)
Expand Down Expand Up @@ -730,4 +730,4 @@ private static void setSetPref(String key, Set<String> val) {
}

//end
}
}

0 comments on commit ecf3694

Please sign in to comment.