This commit is contained in:
tom79 2019-11-13 09:06:54 +01:00
parent 1556f23fca
commit 22766ded77
2 changed files with 3 additions and 2 deletions

View File

@ -82,7 +82,7 @@ public class ColorSettingsFragment extends PreferenceFragmentCompat implements
FragmentActivity context = getActivity(); FragmentActivity context = getActivity();
assert context != null; assert context != null;
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(context); AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(context);
dialogBuilder.setMessage(R.string.reset_color); dialogBuilder.setMessage(R.string.restore_default_theme);
dialogBuilder.setPositiveButton(R.string.disable, new DialogInterface.OnClickListener() { dialogBuilder.setPositiveButton(R.string.disable, new DialogInterface.OnClickListener() {
@Override @Override
public void onClick(DialogInterface dialog, int id) { public void onClick(DialogInterface dialog, int id) {

View File

@ -1278,8 +1278,9 @@
<string name="theming">Theming</string> <string name="theming">Theming</string>
<string name="store_before">Store before</string> <string name="store_before">Store before</string>
<string name="data_export_theme">The theme was exported</string> <string name="data_export_theme">The theme was exported</string>
<string name="data_export_theme_success">The theme has been successfuly exported in CSV</string> <string name="data_export_theme_success">The theme has been successfully exported in CSV</string>
<string name="pref_colored_status_bar_summary">Apply the primary color to the status bar</string> <string name="pref_colored_status_bar_summary">Apply the primary color to the status bar</string>
<string name="pref_colored_status_bar_title">Status bar color</string> <string name="pref_colored_status_bar_title">Status bar color</string>
<string name="restore_default_theme">Restore a default theme</string>
</resources> </resources>