Browse Source

Temp workaround for Ubuntu 24.04 i18n GUI support (#4857)

Change default locale to "en_US.UTF-8" for test purposes.
Anton Pleskanovsky 1 year ago
parent
commit
9187d54683
1 changed files with 1 additions and 1 deletions
  1. 1 1
      web/inc/i18n.php

+ 1 - 1
web/inc/i18n.php

@@ -3,7 +3,7 @@
 // I18N support information here
 // I18N support information here
 
 
 putenv("LANGUAGE=" . detect_user_language());
 putenv("LANGUAGE=" . detect_user_language());
-setlocale(LC_ALL, "C.UTF-8");
+setlocale(LC_ALL, "en_US.UTF-8");
 
 
 $domain = "hestiacp";
 $domain = "hestiacp";
 $localedir = "/usr/local/hestia/web/locale";
 $localedir = "/usr/local/hestia/web/locale";