diff options
author | Stephen Finucane <stephen@that.guru> | 2019-11-30 17:11:13 +0000 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2019-11-30 17:16:15 +0000 |
commit | 683b9aa0edbc77e7782576316e0317bd51bcd110 (patch) | |
tree | 4f1e47053da26fbf5b4d9bc266fe8d889b30858f /templates/base.html | |
parent | e7651eab16e1ac2beb24dbbd879ba865bcb139b2 (diff) | |
download | patchwork-683b9aa0edbc77e7782576316e0317bd51bcd110.tar patchwork-683b9aa0edbc77e7782576316e0317bd51bcd110.tar.gz |
templates: Use 'en' locale
As discussed at [1], the UI was originally written in Australian English
but as it's been through a couple of pairs of hands since the chances
are things are more than a little messed up. Just use 'en' as our locale
rather than 'en-US', 'en-AU' or anything else.
[1] https://lists.ozlabs.org/pipermail/patchwork/2019-November/006342.html
Signed-off-by: Stephen Finucane <stephen@that.guru>
Suggested-by: Daniel Axtens <dja@axtens.net>
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index 27db7f5..8accb4c 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,6 +1,6 @@ {% load static %} <!DOCTYPE html> -<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"> +<html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <title>{% block title %}Patchwork{% endblock %} - Patchwork</title> |