Currently Thunderbird displays time in AM/PM mode.
How can I change it to 24h mode?
UPDATE 1:
$ locale |grep LC_TIME
LC_TIME="en_US.UTF-8"
Currently Thunderbird displays time in AM/PM mode.
How can I change it to 24h mode?
UPDATE 1:
$ locale |grep LC_TIME
LC_TIME="en_US.UTF-8"
Ok, solved it:
1) Make sure you have the locale you need, can't say which you specifically need but when you know you create it like this (using en_DK.utf8)
2) To make sure this locale is in effect for thunderbird you add it to the script that starts thunderbird, so first find that script:
2a) find the right script
In my case: /usr/bin/thunderbird
2b) add locale to the script (I use the editor geany):
Add this in the beginning of the script (I just put at the very beginning):
Just want to add this:
https://help.ubuntu.com/community/Locale
EDIT: as pointed out by pl1nk A better solution would be to NOT touch the /usr/bin/thunderbird script and instead create the script '/usr/local/bin/thunderbird' with this content
make sure it's executable
Then check if it's being used to start thunderbird:
should respond with this:
Now thunderbird can be started as before.
There's a Super Date Format thunderbird addon:
Thunderbird 60
The way dates and times are formatted in Thunderbird 60 has changed. The following will provide a date/time format that will look like this:
2018-12-04 14:23
:Create the root locale
Copy the Thunderbird launcher locally
Change the date/time locale for Thunderbird
Thunderbird 59 and below
Fsando's answer works, but LC_ALL will change the entire locale (date, number, currency format, etc) used by Thunderbird instead of just the date/time format, which is all that's asked for in the question. Not only that, but I don't like creating extra scripts if I don't have to. Here's what I did:
Make sure the en_DK.utf8 locale is available (it should already be available if your desktop language is English):
If it's not, install the locale, the official way:
Or if you don't feel like installing extra packages:
Copy the Thunderbird launcher locally
Change just the date/time locale for Thunderbird
If you're using Xfce the change is picked up right away, but if you're using Unity you may have to log out/log back in. Not sure about GNOME.
Next time you open Thunderbird from your launcher, it should use the new date/time format.
Advantages:
And as a bonus, the change shouldn't get overwritten when the thunderbird package gets updated, because it won't touch your local launcher file.
Source:
http://kb.mozillazine.org/Date_display_format
Note: As Sparhawk mentions, LC_TIME will change date format as well as time format. However, you can find a locale with the same date format and different time format, and thereby change only the time format.
For example, this is what the
en_US.utf8
locale looks like:Changing the locale to
en_DK.utf8
will change the date format too:I run my system as en_US.UTF-8 too, just in case....
I just added
LC_TIME=en_DK.UTF-8
to/etc/default/locale
. Works fine on Linux Mint 17.3, should work in Ubuntu too.1) open
/etc/default/locale
in your editor. The content of the file should look something like this:2) add
LC_TIME=en_DK.UTF-8
. IfLC_TIME=
is already there, change its value toen_DK.UTF-8
.3) Save and restart OS.
/etc/default/locale
is not thunderbird specific. If you change the format there it will probably apply to other applications as well.In Ubuntu 18.04 and later (and probably other Gnome-based distros), date format is controlled by Gnome for each user. Open
Terminal
and type:Then restart Thunderbird.
Credit: a comment from PRATAP on a related question How to set date format from 12 hour to 24 hour at the command line
There is a simple solution for the time and date format issues - a newer plugin works for Thunderbird 60+ that allows full customization of the time and date formats. It's called "Enhanced Date Formatter" and is in the list of extensions inside Thunderbird. Just fire up Thunderbird and search for it, install it, and customize however you want.