Skip to content

Commit

Permalink
Add annual report for 2023 and semiannual report for 2024 (#1895)
Browse files Browse the repository at this point in the history
* Add semiannual reports for 2024

* Add financial report for 2023

---------

Co-authored-by: ani-kalpachka <[email protected]>
  • Loading branch information
ani-kalpachka and ani-kalpachka authored Aug 15, 2024
1 parent 40c973f commit e80b677
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 5 deletions.
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>
)
}

0 comments on commit e80b677

Please sign in to comment.