Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove empty class attribute and fix the i18n labels #749

Merged
merged 1 commit into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Changelog
16.2.1 (unreleased)
-------------------

- Nothing changed yet.
- Fix the i18n labels
[ale-rt]


16.2.0 (2024-06-12)
Expand Down
8 changes: 2 additions & 6 deletions src/euphorie/client/browser/templates/report_landing.pt
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@
tal:condition="python:'report_compact' in reports"
>
<div class="download-block-header">
<h2 class=""
i18n:translate="label_report"
>Compact</h2>
<h2 i18n:translate="label_compact">Compact</h2>
<a class="default pat-button download rtf icon-download piwik_download"
href="${context/absolute_url}/@@oira-report-short.docx"
>
Expand All @@ -67,9 +65,7 @@
tal:condition="python:'report_full' in reports"
>
<div class="download-block-header">
<h2 class=""
i18n:translate="label_report"
>Full Report</h2>
<h2 i18n:translate="label_full_report">Full Report</h2>
<a class="default pat-button download rtf icon-download piwik_download"
href="${context/absolute_url}/@@oira-report.docx"
>
Expand Down
Loading