Skip to content

Commit

Permalink
fix: active operations table and link
Browse files Browse the repository at this point in the history
  • Loading branch information
samshara authored and barshathakuri committed Dec 21, 2023
1 parent c6cdaac commit d0bc7ea
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 16 deletions.
2 changes: 1 addition & 1 deletion src/components/domain/ActiveOperationMap/i18n.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"namespace": "common",
"strings": {
"activeOperationsTitle":"Active Operations ({numAppeals})",
"activeOperationsTitle":"Active Operations Map ({numAppeals})",
"presentationModeButton":"Presentation Mode",
"operationMapViewAll":"View all Operations",
"operationMapViewAllInRegion":"View all Operations in this Region",
Expand Down
2 changes: 1 addition & 1 deletion src/components/domain/HighlightedOperations/i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"namespace": "common",
"strings": {
"highlightedOperationsTitle": "Highlighted Operations",
"highlightedOperationsCountryTitle": "Emergencies in last 30 days",
"highlightedOperationsCountryTitle": "Active Operations",
"highlightedOperationsViewAllInRegion":"View all Emergencies in this Region",
"highlightedOperationsViewAllInCountry":"View all Emergencies in this Country",
"highlightedOperationsViewAll":"View all Emergencies"
Expand Down
4 changes: 2 additions & 2 deletions src/components/domain/HighlightedOperations/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,11 @@ function HighlightedOperations(props: Props) {
const urlSearch = useMemo(
() => {
if (variant === 'country') {
return `countryId=${countryId}`;
return `country=${countryId}`;
}

if (variant === 'region') {
return `regionId=${regionId}`;
return `region=${regionId}`;
}

return undefined;
Expand Down
18 changes: 6 additions & 12 deletions src/views/CountryOngoingActivitiesEmergencies/i18n.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,15 @@
{
"namespace": "countryOngoingActivitiesEmergencies",
"strings": {
"fullScreenHeading": "IFRC Disaster Response and Preparedness",
"countryCloseButton": "Close",
"countryOngoingActivitiesDREFOperations": "Active DREF Operations",
"countryOngoingActivitiesKeyFiguresDrefTitle": "DREF",
"countryOngoingActivitiesKeyFiguresDref": "These are small to medium scale emergency operations funded through the Disaster Relief Emergency Fund (DREF).The DREF provides immediate financial support to National Red Cross and Red Crescent Societies, enabling them to carry out their unique role as first responders after a disaster.",
"countryOngoingActivitiesKeyFiguresAppealsTitle": "Emergency Appeal",
"countryOngoingActivitiesEmergenciesDescription": "The following data displays the current and ongoing emergencies within the country that are reported by the National Societies and partners. The displayed data is based on reporting and may not be fully indicative of all the activities.",
"countryOngoingActivitiesFigureAppealDescription": "These are medium to large scale emergency operations funded through a public appeal for funds.",
"countryOngoingActivitiesKeyFiguresActiveAppeals": "Active Emergency Appeals",
"countryOngoingActivitiesKeyFiguresTargetPop": "Targeted Population",
"countryOngoingActivitiesKeyFiguresBudget": "Funding Requirements (CHF)",
"countryOngoingActivitiesKeyFiguresAppealsFunding": "Funding Coverage",
"countryOngoingActivitiesEditCountryLink": "Edit Country",
"countryOngoingActivitiesEmergenciesDescription": "The following data displays the current and ongoing emergencies within the country that are reported by the National Societies and partners. The displayed data is based on reporting and may not be fully indicative of all the activities.",
"countryOngoingActivitiesTitle": "Active Emergencies",
"countryOngoingActivitiesViewAll":"View all Emergencies in this Country",
"countryOngoingActivitiesViewAllInRegion": "View all Emergencies in this Region"
"countryOngoingActivitiesKeyFiguresAppealsTitle": "Emergency Appeal",
"countryOngoingActivitiesKeyFiguresBudget": "Funding Requirements (CHF)",
"countryOngoingActivitiesKeyFiguresDref": "These are small to medium scale emergency operations funded through the Disaster Relief Emergency Fund (DREF).The DREF provides immediate financial support to National Red Cross and Red Crescent Societies, enabling them to carry out their unique role as first responders after a disaster.",
"countryOngoingActivitiesKeyFiguresTargetPop": "Targeted Population",
"countryOngoingActivitiesKeyFiguresDrefTitle": "DREF"
}
}

0 comments on commit d0bc7ea

Please sign in to comment.