app: also localize LC_TIME to GUI language.

When we set the GUI language through Preferences, also set LC_TIME, so
that locale-aware date functions also produce the right formats.

For instance, I use this in the About dialog to format the release date
of the last version of GIMP.
This commit is contained in:
Jehan 2019-12-29 22:55:10 +01:00
parent 1f6629f4b6
commit a4e65ac836

View file

@ -735,5 +735,6 @@ language_init (const gchar *language)
return;
g_setenv ("LANGUAGE", language, TRUE);
g_setenv ("LC_TIME", language, TRUE);
setlocale (LC_ALL, "");
}