- {/* FIXME: use translations */}
{errorResponse?.error?.stack
- ?? errorResponse?.stack ?? 'Stack trace not available'}
+ ?? errorResponse?.stack ?? strings.errorPageStackTrace}
- {/* FIXME: use translations */}
- See the developer console for more details
+ {strings.errorSeeDeveloperConsole}
>
)}
@@ -78,15 +76,13 @@ function PageError() {
external
variant="secondary"
>
- {/* FIXME: use translations */}
- Go back to homepage
+ {strings.errorPageGoBack}
diff --git a/src/views/CountryNsOverviewActivities/Map/index.tsx b/src/views/CountryNsOverviewActivities/Map/index.tsx
index 178917fed..843487af6 100644
--- a/src/views/CountryNsOverviewActivities/Map/index.tsx
+++ b/src/views/CountryNsOverviewActivities/Map/index.tsx
@@ -49,6 +49,7 @@ import {
} from '#utils/constants';
import useCountry from '#hooks/domain/useCountry';
+import TextOutput from '#components/TextOutput';
import Message from '#components/Message';
import Link from '#components/Link';
import BaseMap from '#components/domain/BaseMap';
diff --git a/src/views/CountryNsOverviewActivities/i18n.json b/src/views/CountryNsOverviewActivities/i18n.json
index 8b811ef37..68ad5f696 100644
--- a/src/views/CountryNsOverviewActivities/i18n.json
+++ b/src/views/CountryNsOverviewActivities/i18n.json
@@ -23,7 +23,7 @@
"nSProjectStatus": "Project Status",
"nSProjectDataNotAvailable": "Data not available!",
"addNSActivity": "Add NS Activity",
- "nSActivityDescription": "The following data displays the International activities of the National Society which includes emergency or non-emergency related projects and programmes. The displayed data is based on reporting and may not be fully indicative of all the activities.",
+ "nSActivityDescription": "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 activities.",
"nSFailedToCreateExport": "Failed to generate export."
}
}
diff --git a/src/views/CountryNsOverviewCapacity/i18n.json b/src/views/CountryNsOverviewCapacity/i18n.json
index e1ad48f17..8042c7e66 100644
--- a/src/views/CountryNsOverviewCapacity/i18n.json
+++ b/src/views/CountryNsOverviewCapacity/i18n.json
@@ -8,7 +8,7 @@
"perAssessmentDateLabel": "Assessment date",
"perStartPerProcess": "Start PER Process",
"perViewLink": "View",
- "nSOverviewCapacityDescription": "This following are various processes and assessment that the NS has done with IFRC that address National Society development, capacity, preparedness, and others.",
+ "nSOverviewCapacityDescription": "The following are various processes and assessment that the NS has done with IFRC that address National Society development, capacity, preparedness, and others.",
"nsOverviewCapacityLink": "IFRC Evaluations Database"
}
}
diff --git a/src/views/CountryNsOverviewCapacity/index.tsx b/src/views/CountryNsOverviewCapacity/index.tsx
index ae440905c..094735bcb 100644
--- a/src/views/CountryNsOverviewCapacity/index.tsx
+++ b/src/views/CountryNsOverviewCapacity/index.tsx
@@ -1,5 +1,4 @@
import { useOutletContext } from 'react-router-dom';
-import { ArrowRightUpLineIcon } from '@ifrc-go/icons';
import { isDefined, isNotDefined } from '@togglecorp/fujs';
import BlockLoading from '#components/BlockLoading';
diff --git a/src/views/CountryNsOverviewStrategicPriorities/i18n.json b/src/views/CountryNsOverviewStrategicPriorities/i18n.json
index 942440e78..ce02d209d 100644
--- a/src/views/CountryNsOverviewStrategicPriorities/i18n.json
+++ b/src/views/CountryNsOverviewStrategicPriorities/i18n.json
@@ -8,6 +8,7 @@
"countryPlanKeyFigureRequestedAmount": "Federation-Wide Requested Amount (CHF)",
"strengthsHeading": "Strengths (PER process)",
"keyDevelopmentPrioritiesHeading": "Key Development Priorities (PER process)",
- "notAvailableMessage": "Strategic priorities not available!"
+ "notAvailableMessage": "Strategic priorities not available!",
+ "strategicPrioritiesDescription": "The following data highlights the focus areas the National Society, as well as the ongoing partnerships and support as applicable."
}
}
diff --git a/src/views/CountryNsOverviewStrategicPriorities/index.tsx b/src/views/CountryNsOverviewStrategicPriorities/index.tsx
index 8eb869c51..5ba8f676d 100644
--- a/src/views/CountryNsOverviewStrategicPriorities/index.tsx
+++ b/src/views/CountryNsOverviewStrategicPriorities/index.tsx
@@ -112,7 +112,7 @@ export function Component() {
() => {
if (
isNotDefined(assessmentResponse)
- || isNotDefined(assessmentResponse.area_responses)
+ || isNotDefined(assessmentResponse.area_responses)
) {
return undefined;
}
@@ -134,7 +134,7 @@ export function Component() {
() => {
if (
isNotDefined(assessmentResponse)
- || isNotDefined(assessmentResponse.area_responses)
+ || isNotDefined(assessmentResponse.area_responses)
) {
return undefined;
}
@@ -171,7 +171,10 @@ export function Component() {
const hasCountryPlan = countryResponse?.has_country_plan;
return (
-
+
);
}
diff --git a/src/views/CountryOngoingActivitiesThreeWActivities/i18n.json b/src/views/CountryOngoingActivitiesThreeWActivities/i18n.json
index e029d3960..3d0314775 100644
--- a/src/views/CountryOngoingActivitiesThreeWActivities/i18n.json
+++ b/src/views/CountryOngoingActivitiesThreeWActivities/i18n.json
@@ -21,6 +21,7 @@
"responseActivities": "Response Activities",
"activitiesBySector": "Activities by Sector",
"dataNotAvailable": "No Activities",
- "threeWViewAllActivityLabel": "View all Activities"
+ "threeWViewAllActivityLabel": "View all Activities",
+ "threeWActivityDescription": "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."
}
}
diff --git a/src/views/CountryOngoingActivitiesThreeWActivities/index.tsx b/src/views/CountryOngoingActivitiesThreeWActivities/index.tsx
index 9ea62d69b..509046663 100644
--- a/src/views/CountryOngoingActivitiesThreeWActivities/index.tsx
+++ b/src/views/CountryOngoingActivitiesThreeWActivities/index.tsx
@@ -328,7 +328,7 @@ export function Component() {
return (
diff --git a/src/views/CountryOngoingActivitiesThreeWProjects/i18n.json b/src/views/CountryOngoingActivitiesThreeWProjects/i18n.json
index 746a9299e..a6468aa39 100644
--- a/src/views/CountryOngoingActivitiesThreeWProjects/i18n.json
+++ b/src/views/CountryOngoingActivitiesThreeWProjects/i18n.json
@@ -26,6 +26,7 @@
"otherNSProjects": "Projects by Other NS ({count})",
"programmeType": "Programme Type",
"projectStatus": "Project Status",
- "countryThreeWDataNotAvailable": "Data not available!"
+ "countryThreeWDataNotAvailable": "Data not available!",
+ "threeWProjectDescription": "The following data displays the ongoing programmes and projects within the country that are not linked to specific emergencies. The displayed data is based on reporting and may not be fully indicative of all the projects."
}
}
diff --git a/src/views/CountryOngoingActivitiesThreeWProjects/index.tsx b/src/views/CountryOngoingActivitiesThreeWProjects/index.tsx
index 987aa8515..53cb7dbf2 100644
--- a/src/views/CountryOngoingActivitiesThreeWProjects/index.tsx
+++ b/src/views/CountryOngoingActivitiesThreeWProjects/index.tsx
@@ -344,11 +344,12 @@ export function Component() {
diff --git a/src/views/CountryOngoingActivitiesThreeWProjects/styles.module.css b/src/views/CountryOngoingActivitiesThreeWProjects/styles.module.css
index 3ccae6905..882832f18 100644
--- a/src/views/CountryOngoingActivitiesThreeWProjects/styles.module.css
+++ b/src/views/CountryOngoingActivitiesThreeWProjects/styles.module.css
@@ -1,7 +1,6 @@
.country-three-w-projects {
display: flex;
flex-direction: column;
- padding: var(--go-ui-spacing-2xl) 0;
gap: var(--go-ui-spacing-2xl);
.content {
diff --git a/src/views/CountryProfile/styles.module.css b/src/views/CountryProfile/styles.module.css
index 5419ea882..bfd2c039d 100644
--- a/src/views/CountryProfile/styles.module.css
+++ b/src/views/CountryProfile/styles.module.css
@@ -1,3 +1,6 @@
.country-profile {
+ display: flex;
+ flex-direction: column;
+ gap: var(--go-ui-spacing-2xl);
padding: var(--go-ui-spacing-2xl) 0;
}
diff --git a/src/views/CountryProfileRiskWatch/i18n.json b/src/views/CountryProfileRiskWatch/i18n.json
index bc263cb9b..cb881e4a7 100644
--- a/src/views/CountryProfileRiskWatch/i18n.json
+++ b/src/views/CountryProfileRiskWatch/i18n.json
@@ -6,6 +6,7 @@
"risksByMonthDescription": "The table below displays available information about specific disaster risks for each month. When you move the slider from month to month, the information will update automatically. Hold Shift to select a range of months -- this will display the cumulative number of people exposed and at risk of displacement. Selecting \"Yearly Avg\" will display the annual figures from INFORM and the total number of people exposed and at risk of being displaced per country per year.",
"eapHeading": "Early Action Protocols (EAPs)",
"eapDownloadButtonLabel": "Download the EAP",
- "eapDescription": "EAPs are a formal plan that guide timely and effective implementation of early actions for extreme weather events, based on pre-agreed triggers."
+ "eapDescription": "EAPs are a formal plan that guide timely and effective implementation of early actions for extreme weather events, based on pre-agreed triggers.",
+ "riskWatchDescription": "The following dataset displays information about the modeled impact of specific forecasted or detected natural hazards."
}
}
diff --git a/src/views/CountryProfileRiskWatch/index.tsx b/src/views/CountryProfileRiskWatch/index.tsx
index 1dacc7c2f..7b779a89d 100644
--- a/src/views/CountryProfileRiskWatch/index.tsx
+++ b/src/views/CountryProfileRiskWatch/index.tsx
@@ -115,7 +115,10 @@ export function Component() {
);
return (
-