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

Add annual report for 2023 and semiannual report for 2024 #1895

Merged
merged 2 commits into from
Aug 15, 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
Binary file not shown.
Binary file not shown.
4 changes: 3 additions & 1 deletion public/locales/bg/about-project.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,10 @@
"finance-report-page": {
"financeReport": "Финансови отчети на Сдружение Подкрепи.бг",
"finance-report-2021": "Годишен финансов отчет за 2021 г.:",
"finance-report-2022-january-june": "Финансов отчет за полугодие Януари-Юни 2022 г.:",
"finance-report-2022-january-june": "Финансов отчет за полугодие януари-юни 2022 г.:",
"finance-report-2022": "Годишен финансов отчет за 2022 г.:",
"finance-report-2023": "Годишен финансов отчет за 2023 г.:",
"finance-report-2024-january-june": "Финансов отчет за полугодие януари-юни 2024 г.:",
"download-from-here": "Свалете от тук"
}
}
8 changes: 5 additions & 3 deletions public/locales/en/about-project.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,11 @@
"association-name": "Association Podkrepi BG",
"finance-report-page": {
"financeReport": "Annual Reports",
"finance-report-2021": "Annual financial Report for 2021:",
"finance-report-2022-january-june": "Semi-annual Financial Report for January-June 2022:",
"finance-report-2022": "Annual Financial Report for 2022",
"finance-report-2021": "Annual financial report for 2021:",
"finance-report-2022-january-june": "Semiannual financial report for January-June 2022:",
"finance-report-2022": "Annual financial report for 2022:",
"finance-report-2023": "Annual financial report for 2023:",
"finance-report-2024-january-june": "Semiannual financial report for January-June 2024:",
"download-from-here": "Download from here"
}
}
20 changes: 19 additions & 1 deletion src/components/client/about-project/FinanceReportPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function FinanceReportPage() {
<LinkButton
locale={false} // shows BG translation of finance report only for now
endIcon={<FileDownloadIcon />}
href="/finance-reports/Podkrepi.bg_Financial_Report_062022.pdf">
href="/finance-reports/Podkrepi.bg_Financial_Semiannual_Report_2022.pdf">
{t('finance-report-page.download-from-here')}
</LinkButton>
</Container>
Expand All @@ -40,6 +40,24 @@ export default function FinanceReportPage() {
{t('finance-report-page.download-from-here')}
</LinkButton>
</Container>
<Container>
<Typography>{t('finance-report-page.finance-report-2023')}</Typography>
<LinkButton
locale={false} // shows BG translation of finance report only for now
endIcon={<FileDownloadIcon />}
href="/finance-reports/Podkrepi.bg_Financial_Report_2023.pdf">
{t('finance-report-page.download-from-here')}
</LinkButton>
</Container>
<Container>
<Typography>{t('finance-report-page.finance-report-2024-january-june')}</Typography>
<LinkButton
locale={false} // shows BG translation of finance report only for now
endIcon={<FileDownloadIcon />}
href="/finance-reports/Podkrepi.bg_Financial_Semiannual_Report_2024.pdf">
{t('finance-report-page.download-from-here')}
</LinkButton>
</Container>
</Layout>
)
}
Loading