fix: add direct PDF download links for all three glossary languages

- Added (PDF) links next to each glossary entry in implementer Resources
- English: /downloads/glossary.pdf
- German: /downloads/glossary-de.pdf
- French: /downloads/glossary-fr.pdf
- Links open in new tab with target="_blank"

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
TheFlow 2025-11-01 11:19:51 +13:00
parent e208b1cea3
commit da76300aa8

View file

@ -1285,16 +1285,25 @@ const govResponse = await fetch(
<a href="/docs.html?doc=glossary" class="text-blue-600 hover:text-blue-700 font-medium">
<span data-i18n="resources.docs_glossary">→ Glossary of Terms</span>
</a>
<span class="text-gray-500 text-sm ml-2">
(<a href="/downloads/glossary.pdf" class="text-blue-500 hover:text-blue-700" target="_blank">PDF</a>)
</span>
</li>
<li>
<a href="/docs.html?doc=glossary&lang=de" class="text-blue-600 hover:text-blue-700 font-medium">
<span data-i18n="resources.docs_glossary_de">→ Glossar der Begriffe (DE)</span>
</a>
<span class="text-gray-500 text-sm ml-2">
(<a href="/downloads/glossary-de.pdf" class="text-blue-500 hover:text-blue-700" target="_blank">PDF</a>)
</span>
</li>
<li>
<a href="/docs.html?doc=glossary&lang=fr" class="text-blue-600 hover:text-blue-700 font-medium">
<span data-i18n="resources.docs_glossary_fr">→ Glossaire des Termes (FR)</span>
</a>
<span class="text-gray-500 text-sm ml-2">
(<a href="/downloads/glossary-fr.pdf" class="text-blue-500 hover:text-blue-700" target="_blank">PDF</a>)
</span>
</li>
</ul>
</div>