1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-26 18:10:39 +12:00

Firefox: set "en" as default locale

This commit is contained in:
Deathamns 2014-12-19 13:15:43 +01:00 committed by gorhill
parent 5bef16d88d
commit 3de061b92b

View file

@ -50,10 +50,11 @@ for alpha2 in os.listdir(source_locale_dir):
chrome_manifest = pj(build_dir, 'chrome.manifest')
with open(chrome_manifest, 'at', encoding='utf-8', newline='\n') as f:
f.write('\n')
f.write('\nlocale ublock en ./locale/en/\n')
for alpha2 in language_codes:
f.write('locale ublock ' + alpha2 + ' ./locale/' + alpha2 + '/\n')
if alpha2 != 'en':
f.write('locale ublock ' + alpha2 + ' ./locale/' + alpha2 + '/\n')
rmtree(source_locale_dir)