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:
parent
1f6629f4b6
commit
a4e65ac836
1 changed files with 1 additions and 0 deletions
|
|
@ -735,5 +735,6 @@ language_init (const gchar *language)
|
|||
return;
|
||||
|
||||
g_setenv ("LANGUAGE", language, TRUE);
|
||||
g_setenv ("LC_TIME", language, TRUE);
|
||||
setlocale (LC_ALL, "");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue