commit ac549585e12b45629280a289559a0277a8c522c5 Author: emma peel emma.peel@riseup.net Date: Wed Nov 6 11:03:12 2019 +0100
make more strings translatable on the templates folder --- templates/download-languages.html | 6 +++--- templates/download-options.html | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/templates/download-languages.html b/templates/download-languages.html index 2fd0372..4f7ec02 100644 --- a/templates/download-languages.html +++ b/templates/download-languages.html @@ -9,9 +9,9 @@ <thead> <tr> <th scope="col">{{ _('Language') }}</th> - <th scope="col">Windows</th> - <th scope="col">macOS</th> - <th scope="col">GNU/Linux</th> + <th scope="col">{{ _('Windows') }}</th> + <th scope="col">{{ _('macOS') }}</th> + <th scope="col">{{ _('GNU/Linux') }}</th> </tr> </thead> <tbody> diff --git a/templates/download-options.html b/templates/download-options.html index 075b158..0b8e663 100644 --- a/templates/download-options.html +++ b/templates/download-options.html @@ -9,9 +9,9 @@ <thead> <tr> <th scope="col">{{ _('Language') }}</th> - <th scope="col">Windows</th> - <th scope="col">MacOS</th> - <th scope="col">GNU/Linux</th> + <th scope="col">{{ _('Windows') }}</th> + <th scope="col">{{ _('MacOS') }}</th> + <th scope="col">{{ _('GNU/Linux') }}</th> </tr> </thead> <tbody> @@ -40,13 +40,13 @@ <table class="table"> <thead> <tr> - <th>Tor Browser for Android Alpha</th> + <th>{{ _('Tor Browser for Android Alpha') }}</th> </tr> </thead> <tbody> <tr> <td> - <a href="https://play.google.com/store/apps/details?id=org.torproject.torbrowser_alpha">Google Play</a> + <a href="https://play.google.com/store/apps/details?id=org.torproject.torbrowser_alpha">{{ _('Google Play') }}</a> </td> </tr> {% from "macros/downloads.html" import render_android %}