Thunderbird Betterbird force proper date format
They insist on having month/day/year which is silly. Setting the pref to use the system format doesn’t work. The prefs about:config thing has no way to add a setting even though it says it does, so just edit the file itself.
What to do:
- Close Betterbird completely
- Go to profile folder (Help > Troubleshooting Information > Open Directory)
- Create a new text file in that folder called
user.js - Open
user.jsin a text editor and paste this:
javascript
// Override date format to DD/MM/YYYY
user_pref("intl.date_time.pattern_override.date_short", "dd/MM/yyyy");
user_pref("intl.date_time.pattern_override.date_medium", "dd MMM yyyy");
user_pref("intl.date_time.pattern_override.date_long", "dd MMMM yyyy");
- Save the file and restart Betterbird