Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 <footer id="site-footer" class="navbar"> | 1 <footer id="site-footer" class="navbar"> |
juliandoucette
2017/09/06 17:48:20
Note: (Added after the comments below) It looks li
ire
2017/09/08 09:53:33
Good idea! Done.
There are improvements I can mak
juliandoucette
2017/09/08 17:02:52
Acknowledged.
| |
2 <div class="navbar-wrapper row"> | 2 <div class="navbar-wrapper row"> |
3 <div class="column one-fourth"> | 3 <div id="site-footer-locales" class="column one-fourth"> |
4 <div class="custom-select"> | 4 <div class="custom-select"> |
5 <button class="custom-select-selected" aria-expanded="false" aria-contro ls="language-options"> | 5 <button class="custom-select-selected" aria-expanded="false" aria-haspop up="true"> |
juliandoucette
2017/09/06 17:48:21
Is there a reason that you didn't add aria-haspopu
ire
2017/09/08 09:53:34
See comment above.
| |
6 {{config.get("langnames", locale)}} | 6 {{ config.get("langnames", locale) }} |
7 </button> | 7 </button> |
8 <ul id="language-options" class="custom-select-options"> | 8 <ul class="custom-select-options" aria-label="{{ "Select Language" | tra nslate("language-options-label", "Label") }}" role="menu" tabindex="-1"> |
juliandoucette
2017/09/06 17:48:21
Is there a reason that you didn't add aria-labelle
ire
2017/09/08 09:53:34
See comment above.
| |
9 {% for lang in available_locales %} | 9 {% for available_locale in available_locales %} |
juliandoucette
2017/09/06 17:48:20
NIT: These are locale codes not languages or langu
ire
2017/09/08 09:53:34
Not sure what you mean. Am I using the wrong varia
juliandoucette
2017/09/08 17:02:52
I was suggesting that you use a variable like "ava
ire
2017/09/12 08:57:53
Ah I see. "available_locale" makes more sense, not
| |
10 <li> | 10 <li role="none"> |
11 {{page|linkify(lang)}} | 11 {{ page | linkify(available_locale) }}{{ config.get("langnames", ava ilable_locale) }}</a> |
12 {{config.get("langnames", lang)}} | |
juliandoucette
2017/09/06 17:48:21
NIT: You are spacing {{ }} inconsistently in this
ire
2017/09/08 09:53:34
Done.
| |
13 </a> | |
14 </li> | 12 </li> |
15 {% endfor %} | 13 {% endfor %} |
16 </ul> | 14 </ul> |
17 </div> | 15 </div> |
18 </div> | 16 </div> |
19 <div class="column three-fourths"> | 17 <div id="site-footer-nav" class="column three-fourths"> |
20 <nav id="site-footer-nav"> | 18 <nav> |
21 <ul> | 19 <ul class="horizontal-list"> |
22 <li><a href="">{{ "Legal" | translate("footer-nav-link-1", "Navigation link") }}</a></li> | 20 <li><a href="">{{ "Legal" | translate("footer-nav-link-1", "Navigation link") }}</a></li> |
23 <li><a href="https://adblockplus.org/privacy">{{ "Privacy Policy" | tr anslate("footer-nav-link-2", "Navigation link") }}</a></li> | 21 <li><a href="https://adblockplus.org/privacy">{{ "Privacy Policy" | tr anslate("footer-nav-link-2", "Navigation link") }}</a></li> |
24 </ul> | 22 </ul> |
25 </nav> | 23 </nav> |
26 <small class="muted"> | 24 <small class="muted"> |
27 {{ "<a href=\"https://adblockplus.org\">Adblock Plus</a> is a registered trademark of <a href=\"https://eyeo.com\">eyeo GmbH</a>" | translate("footer-tr ademark-notice", "Paragraph") }} | 25 {{ "<a href=\"https://adblockplus.org\">Adblock Plus</a> is a registered trademark of <a href=\"https://eyeo.com\">eyeo GmbH</a>" | translate("footer-tr ademark-notice", "Paragraph") }} |
28 </small> | 26 </small> |
29 </div> | 27 </div> |
30 </div> | 28 </div> |
31 </footer> | 29 </footer> |
LEFT | RIGHT |