Changed string in options to say "reply header" instead of "reply quotes". Normalized locale in reply header when Hide timezone option is selected.

This commit is contained in:
ndew623 2017-03-26 13:52:12 -05:00
parent aac3b69c4f
commit b1f9b9ac6c
2 changed files with 8 additions and 3 deletions

View file

@ -28,10 +28,15 @@ class QuoteHelper {
final int dateStyle = DateFormat.LONG; final int dateStyle = DateFormat.LONG;
final int timeStyle = DateFormat.LONG; final int timeStyle = DateFormat.LONG;
Date date = message.getSentDate(); Date date = message.getSentDate();
Locale locale = resources.getConfiguration().locale; DateFormat dateFormat;
DateFormat dateFormat = DateFormat.getDateTimeInstance(dateStyle, timeStyle, locale); Locale locale;
if (K9.hideTimeZone()) { if (K9.hideTimeZone()) {
locale=Locale.ROOT;
dateFormat = DateFormat.getDateTimeInstance(dateStyle, timeStyle, locale);
dateFormat.setTimeZone(TimeZone.getTimeZone("UTC")); dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
} else {
locale = resources.getConfiguration().locale;
dateFormat = DateFormat.getDateTimeInstance(dateStyle, timeStyle, locale);
} }
return dateFormat.format(date); return dateFormat.format(date);
} catch (Exception e) { } catch (Exception e) {

View file

@ -342,7 +342,7 @@ Please submit bug reports, contribute new features and ask questions at
<string name="global_settings_privacy_hide_useragent">Hide mail client</string> <string name="global_settings_privacy_hide_useragent">Hide mail client</string>
<string name="global_settings_privacy_hide_useragent_detail">Remove K-9 User-Agent from mail headers</string> <string name="global_settings_privacy_hide_useragent_detail">Remove K-9 User-Agent from mail headers</string>
<string name="global_settings_privacy_hide_timezone">Hide timezone</string> <string name="global_settings_privacy_hide_timezone">Hide timezone</string>
<string name="global_settings_privacy_hide_timezone_detail">Use UTC instead of local timezone in mail headers and reply quotes</string> <string name="global_settings_privacy_hide_timezone_detail">Use UTC instead of local timezone in mail headers and reply header</string>
<string name="global_settings_notification_hide_subject_title">Hide subject in notifications</string> <string name="global_settings_notification_hide_subject_title">Hide subject in notifications</string>
<string name="global_settings_notification_hide_subject_never">Never</string> <string name="global_settings_notification_hide_subject_never">Never</string>
<string name="global_settings_notification_hide_subject_when_locked">When device is locked</string> <string name="global_settings_notification_hide_subject_when_locked">When device is locked</string>