Skip to content

Commit e3cecfe

Browse files
committed
Update strings
1 parent b95d52f commit e3cecfe

File tree

32 files changed

+691
-325
lines changed

32 files changed

+691
-325
lines changed

app/src/views/AccountMyFormsDref/DownloadImportTemplateButton/DownloadImportTemplateModal/useImportTemplateSchema.ts

-8
Original file line numberDiff line numberDiff line change
@@ -199,14 +199,6 @@ function useImportTemplateSchema() {
199199
validation: 'string',
200200
},
201201

202-
emergency_appeal_planned: {
203-
type: 'select',
204-
label: 'Emergency appeal planned',
205-
optionsKey: '__boolean',
206-
validation: 'boolean',
207-
description: 'Select <b>Yes</b> or <b>No</b> from the drop-down list.',
208-
},
209-
210202
// EVENT DETAIL
211203

212204
did_it_affect_same_area: {

app/src/views/DrefApplicationExport/i18n.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"monthsSuffix": " months",
2222
"operationEndDateLabel": "Operation End Date",
2323
"drefPublishedLabel": "DREF Published",
24-
"targetedAreasLabel": "Targeted Areas",
24+
"targetedAreasLabel": "Targeted Regions",
2525
"eventDescriptionSectionHeading": "Description of the Event",
2626
"approximateDateOfImpactHeading": "Approximate date of impact",
2727
"whatWhereWhenSectionHeading": "What happened, where and when?",
@@ -67,8 +67,8 @@
6767
"ruralLabel": "Rural",
6868
"urbanLabel": "Urban",
6969
"peopleWithDisabilitiesLabel": "People with disabilities (estimated)",
70-
"riskAndSecuritySectionHeading": "Risk and Security Considerations",
71-
"riskSecurityHeading": "Please indicate about potential operation risk for this operations and mitigation actions",
70+
"riskAndSecuritySectionHeading": "Risk and Security Considerations (including \"management\")",
71+
"riskSecurityHeading": "Please analyse and indicate potential risks for this operation, its root causes and mitigation actions.",
7272
"safetyConcernHeading": "Please indicate any security and safety concerns for this operation",
7373
"hasChildRiskCompleted": "Has the child safeguarding risk analysis assessment been completed?",
7474
"plannedInterventionSectionHeading": "Planned Intervention",

app/src/views/DrefApplicationForm/Actions/i18n.json

+8
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@
1010
"drefFormDidNationalSocietyStartedImminent": "Did the National Society started any anticipatory actions?",
1111
"drefFormDidNationalSocietyStartedSlow": "Has the National Society started any actions?",
1212
"drefFormGapsInAssessment": "Any identified gaps/limitations in the assessment",
13+
"drefFormGapsInAssessmentDescriptionHeading": "Consider the following:",
14+
"drefFormGapsInAssessmentDescriptionPoint1": "Unmet needs: are there specific sectors (e.g., shelter, WASH, health) where needs remain unmet or only partially addressed?",
15+
"drefFormGapsInAssessmentDescriptionPoint2": "Resource shortages: highlight any shortages in available resources (e.g., funding, personnel, supplies) that limit the ability to meet the identified needs.",
16+
"drefFormGapsInAssessmentDescriptionPoint3": "Operational challenges: mention any operational constraints that are preventing a full response to the needs (e.g., logistical issues, insufficient capacity).",
17+
"drefFormGapsInAssessmentDescriptionPoint4": "Coordination issues: note any challenges in coordinating with other actors or agencies that have resulted in gaps in service delivery or response coverage.",
18+
"drefFormGapsInAssessmentDescriptionPoint5": "Vulnerable groups: identify any specific vulnerable groups whose needs may not have been fully captured or addressed during the assessment (e.g., displaced persons, elderly, people with disabilities).",
1319
"drefFormIcrc": "ICRC",
1420
"drefFormIcrcDescription": "Presence or not of ICRC in country, and support directly provided for this emergency response. Other programs and support provided outside of the scope of this emergency should not be indicated here.",
1521
"drefFormIfrc": "IFRC",
@@ -19,6 +25,7 @@
1925
"ifrcNetworkActionsHeading": "IFRC Network Actions Related To The Current Event",
2026
"icrcActionsHeading": "ICRC Actions Related To The Current Event",
2127
"drefFormNationalAuthorities": "National authorities",
28+
"drefFormNationalAuthoritiesDescription": "Brief description of actions taken by the national authorities.",
2229
"drefFormNationalOtherActors": "Other Actors Actions Related To The Current Event",
2330
"drefFormNationalSocietiesActions": "Current National Society Actions",
2431
"drefFormNationalSocietiesActionsDescription": "Please indicate a description of the ongoing response with if possible: Branches involved, number of volunteers/staff involved in actions, assets deployed/distributed, number of people reach. Impact/added value of the NS in the response already ongoing.",
@@ -29,6 +36,7 @@
2936
"drefFormPartnerNationalSociety": "Participating National Societies",
3037
"drefFormPartnerNationalSocietyDescription": "Briefly set out which PNS are present and give details of PNS contributions/roles on the ground and remotely for this specific operation",
3138
"drefFormUNorOtherActors": "UN or other actors",
39+
"drefFormUNorOtherActorsDescription": "Brief description of actions taken by the UN or other actors.",
3240
"drefFormAddButton": "Add"
3341
}
3442
}

app/src/views/DrefApplicationForm/Actions/index.tsx

+26
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,7 @@ function Actions(props: Props) {
333333
</InputSection>
334334
<InputSection
335335
title={strings.drefFormNationalAuthorities}
336+
description={strings.drefFormNationalAuthoritiesDescription}
336337
>
337338
<TextArea
338339
label={strings.drefFormActionDescription}
@@ -345,6 +346,7 @@ function Actions(props: Props) {
345346
</InputSection>
346347
<InputSection
347348
title={strings.drefFormUNorOtherActors}
349+
description={strings.drefFormUNorOtherActorsDescription}
348350
>
349351
<TextArea
350352
label={strings.drefFormActionDescription}
@@ -454,6 +456,30 @@ function Actions(props: Props) {
454456
{value?.type_of_dref !== TYPE_IMMINENT && (
455457
<InputSection
456458
title={strings.drefFormGapsInAssessment}
459+
description={(
460+
<>
461+
<p>
462+
{strings.drefFormGapsInAssessmentDescriptionHeading}
463+
</p>
464+
<ul>
465+
<li>
466+
{strings.drefFormGapsInAssessmentDescriptionPoint1}
467+
</li>
468+
<li>
469+
{strings.drefFormGapsInAssessmentDescriptionPoint2}
470+
</li>
471+
<li>
472+
{strings.drefFormGapsInAssessmentDescriptionPoint3}
473+
</li>
474+
<li>
475+
{strings.drefFormGapsInAssessmentDescriptionPoint4}
476+
</li>
477+
<li>
478+
{strings.drefFormGapsInAssessmentDescriptionPoint5}
479+
</li>
480+
</ul>
481+
</>
482+
)}
457483
>
458484
<TextArea
459485
label={strings.drefFormActionDescription}

app/src/views/DrefApplicationForm/EventDetail/i18n.json

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@
3636
"drefFormUploadSupportingDocumentButtonLabel": "Upload document",
3737
"drefFormUploadSupportingDocumentDescription": "Here the National Society can upload documentation that substantiates their decision to launch this operation now. For example: seasonal outlooks, forecast information, reports from credible sources...etc.",
3838
"drefFormWhatWhereWhen": "What happened, where and when?",
39+
"drefFormWhatWhereWhenDescriptionHeading": "Clearly Describe:",
40+
"drefFormWhatWhereWhenDescriptionPoint1": "What happened: Briefly explain the nature of the emergency (e.g., flood, earthquake, epidemic). Include key details such as the intensity, and any unique aspects of the event.",
41+
"drefFormWhatWhereWhenDescriptionPoint2": "Where: Specify the geographic location(s) affected. Be as precise as possible, including names of countries, regions, cities, or specific areas impacted by the event.",
42+
"drefFormWhatWhereWhenDescriptionPoint3": "When: Indicate the date and time when the event occurred or began. If the situation is ongoing, mention that and provide relevant updates on the timeframe.",
3943
"drefOperationalLearningPlatformLabel": "To access the Operational Learning Dashboard and check learnings for the country, {clickHereLink}",
4044
"clickHereLinkLabel": "Click Here",
4145
"drefFormSelectImages": "Select images",

app/src/views/DrefApplicationForm/EventDetail/index.tsx

+18
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,24 @@ function EventDetail(props: Props) {
366366
? strings.drefFormWhatWhereWhen
367367
: strings.drefFormImminentDisaster
368368
}
369+
description={value.type_of_dref !== TYPE_IMMINENT && (
370+
<>
371+
<p>
372+
{strings.drefFormWhatWhereWhenDescriptionHeading}
373+
</p>
374+
<ol>
375+
<li>
376+
{strings.drefFormWhatWhereWhenDescriptionPoint1}
377+
</li>
378+
<li>
379+
{strings.drefFormWhatWhereWhenDescriptionPoint2}
380+
</li>
381+
<li>
382+
{strings.drefFormWhatWhereWhenDescriptionPoint3}
383+
</li>
384+
</ol>
385+
</>
386+
)}
369387
>
370388
<TextArea
371389
name="event_description"

0 commit comments

Comments
 (0)