Add english to list of locales to pick

Useful to make F-Droid be in English if the system language is
different.

Fixes issue brought up in https://f-droid.org/forums/topic/f-droid-0-97-language-selection/
This commit is contained in:
Daniel Martí 2015-11-22 02:56:53 -08:00
parent 69fdaf874e
commit 9dceb60786
2 changed files with 2 additions and 1 deletions

View File

@ -25,6 +25,7 @@
<string-array name="languageValues">
<item></item>
<item>en</item>
<item>ar</item>
<item>ast</item>
<item>bg</item>

View File

@ -9,7 +9,7 @@ import re
from xml.etree import ElementTree
prefs = set([''])
trans = set([''])
trans = set(['', 'en'])
donottranslate = os.path.join('res', 'values', 'donottranslate.xml')