Skip to content

Commit 06ab987

Browse files
authored
Merge pull request #4958 from msupply-foundation/v2.2.3
V2.2.3
2 parents 38da3d9 + 2fa1bd2 commit 06ab987

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

client/packages/common/src/intl/locales/en/common.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -582,5 +582,6 @@
582582
"table.select-unselect-all-columns": "Select / unselect all columns",
583583
"table.show-columns": "Show / hide columns",
584584
"title.confirm-delete-encounter": "Delete encounter",
585-
"warning.caps-lock": "Warning: Caps lock is on"
586-
}
585+
"warning.caps-lock": "Warning: Caps lock is on",
586+
"label.report-filters": "Report Filters"
587+
}

client/packages/common/src/intl/locales/fr/common.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -583,5 +583,6 @@
583583
"label.dose-number": "Dose #",
584584
"label.label": "Etiquette",
585585
"error.field-must-be-specified": "{{field}} doit être spécifié",
586-
"button.add-new-vaccine-course": "Ajouter un calendrier de vaccination"
586+
"button.add-new-vaccine-course": "Ajouter un calendrier de vaccination",
587+
"label.report-filters": "Filtres du rapport"
587588
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"heading.stock-and-items": "Stock et articles",
3+
"heading.expiring": "En cours d'expiration",
4+
"message.arguments": "Vous pouvez personnaliser l'affichage du rapport en spécifiant certains des détails facultatifs ci-dessous. Cliquez sur OK pour afficher le rapport."
5+
}

client/packages/system/src/Report/components/ReportArgumentsModal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export const ReportArgumentsModal: FC<ReportArgumentsModalProps> = ({
5454

5555
return (
5656
<Modal
57-
title="Report arguments"
57+
title={t('label.report-filters')}
5858
cancelButton={<DialogButton variant="cancel" onClick={cleanUp} />}
5959
slideAnimation={false}
6060
width={560}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "open-msupply",
33
"//": "Main version for the app, should be in semantic version format (any release candidate or test build should be separated by '-' i.e. 1.1.1-rc1 or 1.1.1-test",
4-
"version": "2.2.02",
4+
"version": "2.2.03",
55
"private": true,
66
"scripts": {
77
"start": "cd ./server && cargo run & cd ./client && yarn start-local",

0 commit comments

Comments
 (0)