aboutsummaryrefslogtreecommitdiffstats
path: root/tools/make-firefox-meta.py
diff options
context:
space:
mode:
authorgorhill <rhill@raymondhill.net>2015-04-09 07:15:14 -0400
committergorhill <rhill@raymondhill.net>2015-04-09 07:15:14 -0400
commitb9e07a16e3219a1db14f22c8b365172f7567893f (patch)
tree4a3954b6fdba2b940bfff6fe95181df5a57b4813 /tools/make-firefox-meta.py
parent66a5d34860e9806b9b604f49eb2dd8d49f618ee1 (diff)
downloaduBlock-b9e07a16e3219a1db14f22c8b365172f7567893f.zip
uBlock-b9e07a16e3219a1db14f22c8b365172f7567893f.tar.gz
uBlock-b9e07a16e3219a1db14f22c8b365172f7567893f.tar.bz2
this fixes https://github.com/chrisaljoudi/uBlock/issues/1219 for Firefox
Diffstat (limited to 'tools/make-firefox-meta.py')
-rw-r--r--tools/make-firefox-meta.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/make-firefox-meta.py b/tools/make-firefox-meta.py
index acf009b..284fa96 100644
--- a/tools/make-firefox-meta.py
+++ b/tools/make-firefox-meta.py
@@ -56,13 +56,13 @@ for alpha2 in sorted(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(u'\nlocale ublock en ./locale/en/\n')
+ f.write(u'\nlocale ublock0 en ./locale/en/\n')
for alpha2 in language_codes:
if alpha2 == 'en':
continue
- f.write(u'locale ublock ' + alpha2 + ' ./locale/' + alpha2 + '/\n')
+ f.write(u'locale ublock0 ' + alpha2 + ' ./locale/' + alpha2 + '/\n')
rmtree(source_locale_dir)