Skip to content

Commit 956b84b

Browse files
committed
Add Italian Red Cross to CoS UAV service provider
1 parent 81aac47 commit 956b84b

File tree

2 files changed

+41
-40
lines changed

2 files changed

+41
-40
lines changed

app/src/views/SurgeCatalogueOtherUAV/i18n.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@
1717
"mustAllow": "Note that the laws and regulations in the receiving National Society’s country must allow for the operation of drones, and accepting of the credentials of any deployed personnel.",
1818
"otherUAVPersonnel": "Personnel",
1919
"otherUAVPersonnelDetails": "The minimum team consists of an individual acting as a combined UAV Team Lead (UTL) / Pilot in Command (PIC) in addition to a Safety Officer (SA). The SA may be staffed/provided by the receiving National Society. The UTL and PIC can be separate individuals",
20-
"otherUAVstandardComponents": "Standard Components",
21-
"otherUAVstandardComponentsListItemOne": "2x quadcopter drone systems (e.g. DJI or Autel camera drones) with extra batteries and spare parts to enable extended daily missions and equipment redundancy",
22-
"otherUAVstandardComponentsListItemTwo": "Computer equipment for image processing and file storage/sharing",
23-
"otherUAVspecifications": "Specifications",
24-
"otherUAVcostHeader": "Cost (indicative)",
25-
"otherUAVcost": "CHF 12,000 (approximately 4,000 per drone system and 4,000 for computer equipment)",
26-
"otherUAVproviderHeader": "National societies providing this service",
27-
"otherUAVprovider": "American Red Cross",
20+
"otherUAVStandardComponents": "Standard Components",
21+
"otherUAVStandardComponentsListItemOne": "2x quadcopter drone systems (e.g. DJI or Autel camera drones) with extra batteries and spare parts to enable extended daily missions and equipment redundancy",
22+
"otherUAVStandardComponentsListItemTwo": "Computer equipment for image processing and file storage/sharing",
23+
"otherUAVSpecifications": "Specifications",
24+
"otherUAVCostHeader": "Cost (indicative)",
25+
"otherUAVCost": "CHF 12,000 (approximately 4,000 per drone system and 4,000 for computer equipment)",
26+
"otherUAVProviderHeader": "National societies providing this service",
27+
"otherUAVProviderAmericalRedCross": "American Red Cross",
28+
"otherUAVProviderItalianRedCross": "Italian Red Cross",
2829
"rapidResponse": "Rapid Response Personnel Role Profile",
2930
"rapidResponseDetail": "Details about the expectations for this specialty can be found in the Role Profile: {link}",
3031
"otherLink": "Pilot in Command and UAV Team Lead"

app/src/views/SurgeCatalogueOtherUAV/index.tsx

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@ export function Component() {
3131
<SurgeContentContainer
3232
heading={strings.capacity}
3333
>
34-
<div>{strings.capacityDetails}</div>
34+
{strings.capacityDetails}
3535
</SurgeContentContainer>
36-
3736
<SurgeContentContainer
3837
heading={strings.emergencyServices}
3938
>
@@ -58,59 +57,60 @@ export function Component() {
5857
</ul>
5958
<div>{strings.mustAllow}</div>
6059
</SurgeContentContainer>
61-
6260
<SurgeContentContainer
6361
heading={strings.otherUAVPersonnel}
6462
>
65-
<div>{strings.otherUAVPersonnelDetails}</div>
63+
{strings.otherUAVPersonnelDetails}
6664
</SurgeContentContainer>
67-
6865
<SurgeContentContainer
69-
heading={strings.otherUAVstandardComponents}
66+
heading={strings.otherUAVStandardComponents}
7067
>
7168
<ul>
7269
<li>
73-
{strings.otherUAVstandardComponentsListItemOne}
70+
{strings.otherUAVStandardComponentsListItemOne}
7471
</li>
7572
<li>
76-
{strings.otherUAVstandardComponentsListItemTwo}
73+
{strings.otherUAVStandardComponentsListItemTwo}
7774
</li>
7875
</ul>
7976
</SurgeContentContainer>
80-
8177
<SurgeContentContainer
82-
heading={strings.otherUAVspecifications}
78+
heading={strings.otherUAVSpecifications}
8379
>
8480
<div>
85-
<strong>{strings.otherUAVcostHeader}</strong>
86-
<br />
87-
{strings.otherUAVcost}
81+
<strong>{strings.otherUAVCostHeader}</strong>
82+
<div>
83+
{strings.otherUAVCost}
84+
</div>
8885
</div>
8986
<div>
90-
<strong>{strings.otherUAVproviderHeader}</strong>
91-
<br />
92-
{strings.otherUAVprovider}
87+
<strong>{strings.otherUAVProviderHeader}</strong>
88+
<ul>
89+
<li>
90+
{strings.otherUAVProviderAmericalRedCross}
91+
</li>
92+
<li>
93+
{strings.otherUAVProviderItalianRedCross}
94+
</li>
95+
</ul>
9396
</div>
9497
</SurgeContentContainer>
95-
9698
<SurgeContentContainer
9799
heading={strings.rapidResponse}
98100
>
99-
<div>
100-
{resolveToComponent(
101-
strings.rapidResponseDetail,
102-
{
103-
link: (
104-
<Link
105-
href="https://ifrcorg.sharepoint.com/:b:/s/IFRCSharing/EVJrxE_3BpxOliHeThEBk_oB3nAcku47-5BxA-sXV2s8YQ"
106-
external
107-
>
108-
{strings.otherLink}
109-
</Link>
110-
),
111-
},
112-
)}
113-
</div>
101+
{resolveToComponent(
102+
strings.rapidResponseDetail,
103+
{
104+
link: (
105+
<Link
106+
href="https://ifrcorg.sharepoint.com/:b:/s/IFRCSharing/EVJrxE_3BpxOliHeThEBk_oB3nAcku47-5BxA-sXV2s8YQ"
107+
external
108+
>
109+
{strings.otherLink}
110+
</Link>
111+
),
112+
},
113+
)}
114114
</SurgeContentContainer>
115115
</SurgeCatalogueContainer>
116116
);

0 commit comments

Comments
 (0)