Since the adding of video presentations:
The section in the FAQ was renamed from Tests to Background, and the listing was changed to have multiple links per list item:
|
#, md-format |
|
msgid "faqs content" |
|
msgstr "" |
|
"## Background\n" |
|
"* About [website test](/test-site/), [email test](/test-mail/), and [connection test](/test-connection/)\n" |
|
"* [Video recordings of presentations](/faqs/video/)\n" |
|
" \n" |
However this section is also used as a side bar:
|
<aside> |
|
<section class="block news"> |
|
{% include "content.html" with name="faqs content" %} |
|
</section> |
|
</aside> |
Which cannot handle this content because of the CSS
display: block; on the
li a:
|
.news li a { |
|
display:inline-block; |
|
color: #000000; |
|
text-decoration: none; |
|
vertical-align: top; |
|
padding-top:.5em; |
|
padding-bottom:.5em; |
|
margin-bottom:0; |
|
display: block; |
The result is a broken side bar in https://internet.nl/test-mail/ (which is also used if the domain was not testable with the query https://internet.nl/test-site/?invalid ).
Another issue:
|
msgid "faqs video title" |
|
msgstr "## Video recordings of presentations" |
which results in:
<title><h2>Video recordings of presentations</h2></title>
The ## -prefix should be removed from the title.
Since the adding of video presentations:
The section in the FAQ was renamed from Tests to Background, and the listing was changed to have multiple links per list item:
Internet.nl/translations/en/main.po
Lines 4299 to 4305 in 0ff025c
However this section is also used as a side bar:
Internet.nl/interface/templates/faqarticle.html
Lines 12 to 16 in 0ff025c
Which cannot handle this content because of the CSS
display: block;on theli a:Internet.nl/frontend/css/style.css
Lines 837 to 845 in 0ff025c
The result is a broken side bar in https://internet.nl/test-mail/ (which is also used if the domain was not testable with the query https://internet.nl/test-site/?invalid ).
Another issue:
Internet.nl/translations/en/main.po
Lines 4683 to 4684 in 0ff025c
which results in:
The
##-prefix should be removed from the title.