From 21204fc5528f496997ec3fd70222ac994a878d44 Mon Sep 17 00:00:00 2001 From: Marcel O'Neil Date: Tue, 17 Jul 2018 22:09:04 -0400 Subject: [PATCH] localization: fix download link + badge --- README.rst | 4 ++-- contrib/make_locale | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 4a201e811..c7665604e 100644 --- a/README.rst +++ b/README.rst @@ -15,9 +15,9 @@ Electrum - Lightweight Bitcoin client .. image:: https://coveralls.io/repos/github/spesmilo/electrum/badge.svg?branch=master :target: https://coveralls.io/github/spesmilo/electrum?branch=master :alt: Test coverage statistics -.. image:: https://img.shields.io/badge/help-translating-blue.svg +.. image:: https://d322cqt584bo4o.cloudfront.net/electrum/localized.svg :target: https://crowdin.com/project/electrum - :alt: Help translating Electrum online + :alt: Help translate Electrum online diff --git a/contrib/make_locale b/contrib/make_locale index 052f5d87f..3c28d5702 100755 --- a/contrib/make_locale +++ b/contrib/make_locale @@ -54,7 +54,7 @@ if crowdin_api_key: # Download & unzip print('Download translations') -s = requests.request('GET', 'https://crowdin.com/download/project/' + crowdin_identifier + '.zip').content +s = requests.request('GET', 'https://crowdin.com/backend/download/project/' + crowdin_identifier + '.zip').content zfobj = zipfile.ZipFile(io.BytesIO(s)) print('Unzip translations')