Skip to content

Commit

Permalink
Fixit
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamgilbert committed Feb 12, 2020
1 parent a334407 commit 85d368e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker/settings_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@
if "_" in getenv("LANG"):
LANGUAGE_CODE = getenv("LANG")
else:
LANGUAGE_CODE = "en_US"
LANGUAGE_CODE = "en-us"
elif locale.getdefaultlocale():
LANGUAGE_CODE = locale.getdefaultlocale()[0]
else:
LANGUAGE_CODE = "en_US"
LANGUAGE_CODE = "en-us"

# Set the display name from the $DISPLAY_NAME env var, or
# use the default
Expand Down
2 changes: 1 addition & 1 deletion fvserver/system_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE = "en-gb"
LANGUAGE_CODE = "en-us"

SITE_ID = 1

Expand Down
2 changes: 1 addition & 1 deletion fvserver/version.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<plist version="1.0">
<dict>
<key>version</key>
<string>3.0.5.279</string>
<string>3.0.5.280</string>
</dict>
</plist>

0 comments on commit 85d368e

Please sign in to comment.