Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 {% for browser in browsers %} | 1 {% for browser in browsers %} |
2 <script id="download-label-{{ browser.id }}" type="text/template"> | 2 <script id="download-label-{{ browser.id }}" type="text/template"> |
3 {% if locale in ["en", "de", "fr"] %} | 3 {% if locale in ["en", "de", "fr"] %} |
4 {{ get_string("agree-and-install-for-" + browser.id, "install-button") }} | 4 {{ get_string("agree-and-install-for-" + browser.id, "install-button") }} |
5 {% else %} | 5 {% else %} |
6 {{ get_string("install-for-" + browser.id, "install-button") }} | 6 {{ get_string("install-for-" + browser.id, "install-button") }} |
7 {% endif %} | 7 {% endif %} |
8 </script> | 8 </script> |
9 {% endfor %} | 9 {% endfor %} |
ire
2018/07/31 00:10:08
NIT/Suggest: Is there a need to end and start 3 di
| |
10 | |
11 {% for browser in browsers %} | |
juliandoucette
2018/07/30 16:46:12
FIXME / Detail: I added these (temporarily) becaus
ire
2018/07/31 00:10:07
Acknowledged.
| |
12 <script id="install-label-{{ browser.id }}" type="text/template"> | |
13 {{ get_string("install-for-" + browser.id, "install-button") }} | |
14 </script> | |
15 {% endfor %} | |
16 | |
17 {% for browser in browsers %} | |
18 <script id="agree-and-install-label-{{ browser.id }}" type="text/template"> | |
19 {{ get_string("agree-and-install-for-" + browser.id, "install-button") }} | |
20 </script> | |
21 {% endfor %} | |
LEFT | RIGHT |