diff options
author | Deathamns <deathamns@gmail.com> | 2015-01-27 12:44:35 +0100 |
---|---|---|
committer | Deathamns <deathamns@gmail.com> | 2015-01-27 12:44:35 +0100 |
commit | 7f877e64a3c41de951f36c828e7845e5cad41115 (patch) | |
tree | 7f55f33c703bf65d51b4a0a6c94a360c70ac5b61 /tools | |
parent | d24263aa1767dee9571b1bf66150acac318e481e (diff) | |
download | uBlock-7f877e64a3c41de951f36c828e7845e5cad41115.zip uBlock-7f877e64a3c41de951f36c828e7845e5cad41115.tar.gz uBlock-7f877e64a3c41de951f36c828e7845e5cad41115.tar.bz2 |
Firefox: add localized descriptions to install.rdf
Diffstat (limited to 'tools')
-rw-r--r-- | tools/make-firefox-meta.py | 39 |
1 files changed, 31 insertions, 8 deletions
diff --git a/tools/make-firefox-meta.py b/tools/make-firefox-meta.py index 55922d5..ba8e4ba 100644 --- a/tools/make-firefox-meta.py +++ b/tools/make-firefox-meta.py @@ -23,17 +23,16 @@ build_dir = os.path.abspath(sys.argv[1]) source_locale_dir = pj(build_dir, '_locales') target_locale_dir = pj(build_dir, 'locale') language_codes = [] -description = '' +descriptions = OrderedDict({}) for alpha2 in sorted(os.listdir(source_locale_dir)): locale_path = pj(source_locale_dir, alpha2, 'messages.json') with open(locale_path, encoding='utf-8') as f: string_data = json.load(f, object_pairs_hook=OrderedDict) - if alpha2 == 'en': - description = string_data['extShortDesc']['message'] - alpha2 = alpha2.replace('_', '-') + descriptions[alpha2] = string_data['extShortDesc']['message'] + del string_data['extShortDesc'] language_codes.append(alpha2) @@ -54,8 +53,10 @@ with open(chrome_manifest, 'at', encoding='utf-8', newline='\n') as f: f.write(u'\nlocale ublock en ./locale/en/\n') for alpha2 in language_codes: - if alpha2 != 'en': - f.write(u'locale ublock ' + alpha2 + ' ./locale/' + alpha2 + '/\n') + if alpha2 == 'en': + continue + + f.write(u'locale ublock ' + alpha2 + ' ./locale/' + alpha2 + '/\n') rmtree(source_locale_dir) @@ -66,10 +67,32 @@ chromium_manifest = pj(proj_dir, 'platform', 'chromium', 'manifest.json') with open(chromium_manifest, encoding='utf-8') as m: manifest = json.load(m) -manifest['description'] = description +manifest['homepage'] = 'https://github.com/gorhill/uBlock' +manifest['description'] = descriptions['en'] +del descriptions['en'] +manifest['localized'] = [] -install_rdf = pj(build_dir, 'install.rdf') +t = ' ' +t3 = 3 * t +for alpha2 in descriptions: + if alpha2 == 'en': + continue + + manifest['localized'].append( + '\n' + t*2 + '<localized><r:Description>\n' + + t3 + '<locale>' + alpha2 + '</locale>\n' + + t3 + '<name>' + manifest['name'] + '</name>\n' + + t3 + '<description>' + descriptions[alpha2] + '</description>\n' + + t3 + '<creator>' + manifest['author'] + '</creator>\n' + + # t3 + '<translator>' + ??? + '</translator>\n' + + t3 + '<homepageURL>' + manifest['homepage'] + '</homepageURL>\n' + + t*2 + '</r:Description></localized>' + ) + +manifest['localized'] = '\n'.join(manifest['localized']) + +install_rdf = pj(build_dir, 'install.rdf') with open(install_rdf, 'r+t', encoding='utf-8', newline='\n') as f: install_rdf = f.read() f.seek(0) |