-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathcaptions.properties
More file actions
3438 lines (3420 loc) · 156 KB
/
captions.properties
File metadata and controls
3438 lines (3420 loc) · 156 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# SORMAS® - Surveillance Outbreak Response Management & Analysis System
# Copyright � 2016-2022 Helmholtz-Zentrum f�r Infektionsforschung GmbH (HZI)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
###############################################################################
# General Captions
all=All
area=Area
city=City
postcode=Postcode
address=Address
communityName=Community
date=Date
description=Description
disease=Disease
districtName=District
edit=Edit
view=View
epiWeekFrom=From Epi Week
epiWeekTo=To Epi Week
facilityType=Facility type
facilityTypeGroup=Facility category
firstName=First name
sex=Sex
nationalHealthId=National health ID
passportNumber=Passport number
from=From
info=Info
lastName=Last name
menu=Menu
moreActions=More
name=Name
options=Options
regionName=Region
system=System
to=To
total=Total
notSpecified=Not specified
noUserSelected=No user selected
creationDate=Creation date
changeDate=Date of last change
notAvailableShort=NA
inaccessibleValue=Confidential
includePartialBirthdates = Include partial birthdates
numberOfCharacters=Number of characters: %d / %d
remove=Remove
notTestedYet=Not tested yet
latestPathogenTest=Latest Pathogen test:
unknown=Unknown
diseaseVariantDetails=Disease variant details
unassigned=Unassigned
assign=Assign
assignToMe=Assign to me
endOfProcessingDate=End of processing date
dearchiveReason=De-archive reason
deletionReason=Reason for deletion
otherDeletionReason=Reason for deletion details
requiredUserRights=Needed user rights
adoptHomeAddressOfCasePerson=Adopt home address of case person
adoptHomeAddressOfCasePersonIfRelationMatches=Adopt home address of the case person if they live in the same household
casePersonAddress=Address of the case person
viewMessage=View message
primarySuffix=primary
# About
about=About
aboutAdditionalInfo=Additional Info
aboutCopyright=Copyright
aboutDocuments=Documents
aboutVersion=Version
versionIsMissing=Version is missing
aboutBrandedSormasVersion=%s powered by SORMAS
aboutCaseClassificationRules=Case Classification Rules (HTML)
aboutChangelog=Full Changelog
aboutDataDictionary=Data Dictionary (XLSX)
aboutSormasWebsite=Official SORMAS Website
aboutTechnicalManual=Technical Manual (PDF)
aboutWhatsNew=What's New?
aboutExternalMessageAdapter=External messages adapter
aboutServiceNotAvailable=Not available
aboutExternalSurveillanceToolGateway=External surveillance tool gateway
aboutDataProtectionDictionary=Data Protection Dictionary (XLSX)
dataProtectionAllFieldsSheet=All fields
# Action
actionNewAction=New action
actionNoActions=There are no actions for this %s
actionCreatingLabel=Created at %s by %s
actionLastModifiedByLabel=Updated at %s by %s
actionStatusChangeDate=updated at %s
Action=Action
Action.title=Title
Action.description=Description
Action.reply=Comments on execution
Action.creatorUser=Created by
Action.date=Date
Action.event=Associated event
Action.priority=Priority
Action.actionContext=Action context
Action.actionStatus=Action status
Action.lastModifiedBy=Last modified by
Action.actionMeasure=Measure
# Actions
actionApplyDateFilter=Apply date filter
actionArchiveInfrastructure=Archive
actionArchiveCoreEntity=Archive
actionAssignNewEpidNumber=Assign new epid number
actionBack=Back
actionSend=Send
actionApply=Apply
actionCancel=Cancel
actionClear=Clear
actionClearAll=Clear all
actionClose=Close
actionConfirm=Confirm
actionProceed=Proceed
actionContinue=Continue
actionCreate=Create
actionDearchiveInfrastructure=De-Archive
actionDearchiveCoreEntity=De-Archive
actionDelete=Delete
actionRestore=Restore
actionDeselectAll=Deselect all
actionDeselectAndContinue=Deselect and continue
actionDisable=Disable
actionDiscard=Discard
actionGenerateNewPassword=Generate new password
actionGenerateNewPasswords=Generate new passwords
actionEnable=Enable
actionGenerate=Generate
actionImport=Import
actionImportAllCountries=Import default countries
actionImportAllContinents=Import default continents
actionImportAllSubcontinents=Import default subcontinents
actionLogout=Logout
actionNewEntry=New entry
actionOkay=Okay
actionConfirmFilters=Confirm filters
actionResetFilters=Reset filters
actionApplyFilters=Apply filters
actionSave=Save
actionSelectAll=Select all
actionShowLessFilters=Show Less Filters
actionShowMoreFilters=Show More Filters
actionSkip=Skip
actionMerge=Merge
actionPick=Pick
actionDismiss=Dismiss
actionCompare=Compare
actionHide=Hide
actionEnterBulkEditMode=Enter bulk edit mode
actionLeaveBulkEditMode=Leave bulk edit mode
actionDiscardChanges=Discard changes
actionSaveChanges=Save changes
actionAdjustChanges=Adjust changes
actionBackToNationOverview=Back to Nation Overview
actionSettings=User Settings
actionNewForm=New Form
actionOverwrite=Overwrite
actionRemindMeLater=Remind me later
actionGroupEvent=Group
actionUnclearLabMessage=Mark as unclear
actionManualForwardLabMessage=Mark as forwarded
actionAccept=Accept
actionReject=Reject
actionResetEnumCache=Reset enum cache
actionNo=No
actionYes=Yes
actionYesForAll=Yes, for all
actionYesForSome=Yes, for some
actionReset=Reset
actionSearch=Search
actionSaveAndOpenHospitalization=Save and open hospitalization
actionSaveAndOpenCase=Save and open case
actionSaveAndOpenContact=Save and open contact
actionSaveAndOpenEventParticipant=Save and open event participant
actionSaveAndContinue=Save and continue
actionDiscardAllAndContinue=Discard all and continue
actionDiscardAndContinue=Discard and continue
actionNext=Next
actionYesAll=Yes all
actionNoAll=No all
actionOkAndGoToMerge = Okay, and continue to merge overview
actionOkAndGoToContactDirectory = Okay, and continue to contact directory
actionOkAndGoToContactDetails = Okay, and continue to contact
actionOkAndGoToPersonDirectory = Okay, and continue to person directory
actionExecuteAutomaticDeletion = Execute automatic deletion
actionDone = Done
actionConfirmAction = Confirm action
actionAefiSelectPrimarySuspectVaccination = Select Suspect Vaccination
actionAefiAssignNewReportingIdNumber = "Assign New AEFI ID"
actionImportSurveyTokens = Import survey tokens
actionImportSurveyTokenResponses = Import survey token responses
activityAsCaseFlightNumber=Flight number
ActivityAsCase=Activity as case
ActivityAsCase.startDate=Start of activity
ActivityAsCase.endDate=End of activity
ActivityAsCase.activityAsCaseDate=Activity date
ActivityAsCase.activityAsCaseType=Type of Activity
ActivityAsCase.activityAsCaseTypeDetails=Type of Activity details
ActivityAsCase.location=Location
ActivityAsCase.typeOfPlace=Type of place
ActivityAsCase.typeOfPlaceIfSG=Facility (IfSG)
ActivityAsCase.typeOfPlaceDetails=Type of place details
ActivityAsCase.meansOfTransport=Means of transport
ActivityAsCase.meansOfTransportDetails=Means of transport details
ActivityAsCase.connectionNumber=Connection number
ActivityAsCase.seatNumber=Seat number
ActivityAsCase.workEnvironment=Work environment
ActivityAsCase.gatheringType=Type of gathering
ActivityAsCase.gatheringDetails=Type of gathering details
ActivityAsCase.habitationType=Type of habitation
ActivityAsCase.habitationDetails=Type of habitation details
ActivityAsCase.role=Role
# AdditionalTest
additionalTestNewTest=New test result
AdditionalTest=Additional test
AdditionalTest.altSgpt=ALT/SGPT (U/L)
AdditionalTest.arterialVenousBloodGas=Arterial/venous blood gas
AdditionalTest.arterialVenousGasHco3=HCO3 (mEq/L)
AdditionalTest.arterialVenousGasPao2=PaO2 (mmHg)
AdditionalTest.arterialVenousGasPco2=pCO2 (mmHg)
AdditionalTest.arterialVenousGasPH=pH
AdditionalTest.astSgot=AST/SGOT (U/L)
AdditionalTest.conjBilirubin=Conj. bilirubin (umol/L)
AdditionalTest.creatinine=Creatinine (umol/L)
AdditionalTest.gasOxygenTherapy=Oxygen therapy at time of blood gas (L/min)
AdditionalTest.haemoglobin=Haemoglobin (g/L)
AdditionalTest.haemoglobinuria=Haemoglobin in urine
AdditionalTest.hematuria=Red blood cells in urine
AdditionalTest.otherTestResults=Other performed tests and results
AdditionalTest.platelets=Platelets (x10^9/L)
AdditionalTest.potassium=Potassium (mmol/L)
AdditionalTest.proteinuria=Protein in urine
AdditionalTest.prothrombinTime=Prothrombin Time (PT)
AdditionalTest.testDateTime=Date and time of result
AdditionalTest.totalBilirubin=Total bilirubin (umol/L)
AdditionalTest.urea=Urea (mmol/L)
AdditionalTest.wbcCount=WBC count (x10^9/L)
aggregateReportDeathsShort=D
aggregateReportLabConfirmationsShort=L
aggregateReportLastWeek=Last Week
aggregateReportDiscardSelection=Discard selection
aggregateReportEditAggregateReport=Edit aggregate report
aggregateReportEditReport=Edit report
aggregateReportReportFound=Aggregate report found
aggregateReportShowZeroRows = Show 0-rows for disease(s)
aggregateReportExpiredAgeGroups = Expired
aggregateReportNoAgeGroup = No age group
aggregateReportShowOnlyDuplicateReports = Display only duplicate reports
aggregateReportNewAggregateReport=New aggregate report
aggregateReportNewCasesShort=C
aggregateReportThisWeek=This Week
AggregateReport.disease=Disease
AggregateReport.grouping=Grouping
AggregateReport.newCases=Suspected cases
AggregateReport.labConfirmations=Lab confirmations
AggregateReport.deaths=Deaths
AggregateReport.healthFacility=Facility
AggregateReport.reportingUser=Reporting user
AggregateReport.pointOfEntry=Point of Entry
areaActiveAreas=Active areas
areaArchivedAreas=Archived areas
areaAllAreas=All areas
Area.archived=Archived
Area.externalId=External ID
Area.defaultInfrastructure=Default
years=years
months=months
days=days
# Bulk actions
bulkActions=Bulk Actions
bulkEditAssignee=Edit assignee
bulkEmailSend = Send emails
bulkCancelFollowUp=Cancel follow-up
bulkCaseClassification=Change case classification
bulkCaseOutcome=Change case outcome
bulkCaseShareWithReportingTool=Change share with reporting tool
bulkContactClassification=Change contact classification
bulkContactOfficer=Change contact officer
bulkDelete=Delete
bulkDisease=Change Disease
bulkDiseaseVariant=Change Disease variant
bulkEdit=Edit...
bulkEventInvestigationStatus=Change event investigation status
bulkEventManagementStatus=Change event management status
bulkEventParticipantsToContacts=Create contacts
bulkEventStatus=Change event status
bulkEventType=Change event type
bulkFacility=Change facility
bulkInvestigationStatus=Change investigation status
bulkLinkToEvent=Link to event
bulkLostToFollowUp=Set to lost to follow-up
bulkSurveillanceOfficer=Change surveillance officer
bulkTaskStatus=Change task status
bulkTaskAssignee=Change assignee
bulkTaskPriority=Change priority
bulkRestore=Restore
bulkCompleted=%d/%d Completed
bulkSkipped=%d Skipped
bulkSuccessful=%d Successful
bulkSpecialCaseAccess=Grant special access
# Campaign
campaignActiveCampaigns=Active campaigns
campaignAllCampaigns=All campaigns
campaignAllActiveAndArchivedCampaigns=All active and archived campaigns
campaignArchivedCampaigns=Archived campaigns
campaignNewCampaign=New campaign
campaignCampaignData=Campaign Data
campaignCampaignDataForm=Data Form
campaignCampaignForm=Form
campaignValidateForms=Validate Forms
campaignAdditionalForm=Add form
campaignAdditionalChart=Add chart
campaignDashboardChart=Campaign data chart
campaignDashboardTabName=Tab name
campaignDashboardSubTabName=Sub-tab name
campaignDashboardChartWidth=Width in %
campaignDashboardChartHeight=Height in %
campaignDashboardOrder=Order
campaignDeletedCampaigns=Deleted campaigns
campaignSearch=Search Campaign
campaignDiagramGroupBy=Group by
Campaign=Campaign
Campaign.name=Name
Campaign.description=Description
Campaign.startDate=Start date
Campaign.endDate=End date
Campaign.creatingUser=Creating user
Campaign.deletionReason=Reason for deletion
Campaign.otherDeletionReason=Reason for deletion details
Campaign.open=Open
Campaign.edit=Edit
Campaign.area=Area
Campaign.region=Region
Campaign.district=District
Campaign.community=Community
Campaign.grouping=Grouping
CampaignFormData.campaign=Campaign
CampaignFormData.campaignFormMeta=Form
CampaignFormData.formDate=Form date
CampaignFormData.formValuesJson=Form data
CampaignFormData.area=Area
CampaignFormData.edit=Edit
# CaseData
caseCasesList=Cases list
caseInfrastructureDataChanged=Infrastructure data has changed
caseCloneCaseWithNewDisease=Generate new case for
caseContacts=Contacts
caseDocuments=Case Documents
caseEditData=Edit data
caseEvents=Events
caseEventsResetDateFilter=Reset date filter
caseFilterWithoutGeo=Only cases without geo coordinates
caseFilterPortHealthWithoutFacility=Only port health cases without a facility
caseFilterCasesWithCaseManagementData=Only cases with case management data
caseFilterWithDifferentRegion=Show duplicates with differing regions
caseFilterExcludeSharedCases=Exclude cases shared from other jurisdictions
caseFilterWithoutResponsibleUser=Only cases without responsible user
caseFilterWithExtendedQuarantine=Only cases with extended quarantine
caseFilterWithReducedQuarantine=Only cases with reduced quarantine
caseFilterOnlyQuarantineHelpNeeded=Help needed in quarantine
caseFilterIncludeCasesFromOtherJurisdictions=Include cases from other jurisdictions
caseFilterOnlyCasesWithFulfilledReferenceDefinition=Only cases with fulfilled reference definition
caseFilterRelatedToEvent=Only cases with events
caseFilterOnlyFromOtherInstances=Only cases from other instances
caseFilterCasesWithReinfection=Only cases with reinfection
caseFilterOnlyCasesNotSharedWithExternalSurvTool=Only cases not yet shared with reporting tool
caseFilterOnlyCasesSharedWithExternalSurvToo=Only cases already shared with reporting tool
caseFilterOnlyCasesChangedSinceLastSharedWithExternalSurvTool=Only cases changed since last shared with reporting tool
caseFilterOnlyCasesWithDontShareWithExternalSurvTool=Only cases marked with 'Don't share with reporting tool'
caseFacilityDetailsShort=Facility name
caseNewCase=New case
casePlaceOfStay=Place of stay
caseActiveCases=Active cases
caseArchivedCases=Archived cases
caseAllActiveAndArchivedCases=All active and archived cases
caseDeletedCases=Deleted cases
caseTransferCase=Transfer case
caseTransferCases=Transfer cases
caseReferFromPointOfEntry=Refer case from point of entry
casePickCase=Pick an existing case
caseCreateCase=Create a new case
caseDefaultView=Default view
caseDetailedView=Detailed view
caseFollowupVisitsView=Follow-up
caseMinusDays=Previous
casePlusDays=Next
caseMergeDuplicates=Merge duplicates
caseBackToDirectory=Back to case directory
caseNewCaseDate=Report or onset date
caseNoDiseaseVariant=no disease variant
caseOpenCasesGuide=Open cases guide
caseOpenMergeGuide=Open merge guide
caseCalculateCompleteness=Calculate completeness
caseClassificationCalculationButton=Calculate case classification
caseNumberOfDuplicatesDetected=%d potential duplicates detected
caseConfirmCase=Confirm case
convertEventParticipantToCase=Create case from event participant with positive test result?
convertContactToCase=Create case from contact with positive test result?
caseSearchSpecificCase=Search specific case
caseSearchCase=Search case
caseSelect=Select case
caseCreateNew=Create new case
caseDataEnterHomeAddressNow=Enter home address of the case person now
caseCancelDeletion=Cancel case deletion
caseJurisdictionType=Jurisdiction type
CaseData=Case
CaseData.ageAndBirthDate=Age and birth date
CaseData.additionalDetails=General comment
CaseData.caseClassification=Case classification
CaseData.caseIdentificationSource=Case identification source
CaseData.screeningType=Screening
CaseData.clinicalConfirmation=Clinical confirmation
CaseData.community=Community
CaseData.epidemiologicalConfirmation=Epidemiological confirmation
CaseData.laboratoryDiagnosticConfirmation=Laboratory diagnostic confirmation
CaseData.caseConfirmationBasis=Basis for confirmation
CaseData.caseOfficer=Case officer
CaseData.caseOrigin=Case origin
CaseData.classificationComment=Classification comment
CaseData.classificationDate=Date of classification
CaseData.classificationUser=Classifying user
CaseData.classifiedBy=Classified by
CaseData.clinicalCourse=Clinical course
CaseData.clinicianName=Name of responsible clinician
CaseData.clinicianPhone=Phone number of responsible clinician
CaseData.clinicianEmail=Email address of responsible clinician
CaseData.contactOfficer=Contact officer
CaseData.dengueFeverType=Dengue fever type
CaseData.diseaseVariant=Disease variant
CaseData.diseaseDetails=Disease name
CaseData.district=District
CaseData.districtLevelDate=Date received at district level
CaseData.doses=How many doses
CaseData.epiData=Epidemiological data
CaseData.epidNumber=EPID number
CaseData.externalID=External ID
CaseData.externalToken=External Token
CaseData.internalToken=Internal Token
CaseData.caseReferenceNumber=Case Reference Number
CaseData.facilityType=Facility type
CaseData.healthFacility=Facility
CaseData.healthFacilityDetails=Facility name & description
CaseData.hospitalization=Hospitalization
CaseData.investigatedDate=Date of investigation
CaseData.investigationStatus=Investigation status
CaseData.maternalHistory=Maternal history
CaseData.nationalLevelDate=Date received at national level
CaseData.noneHealthFacilityDetails=Place description
CaseData.notifyingClinic=Notifying clinic
CaseData.notifyingClinicDetails=Notifying clinic details
CaseData.numberOfVisits=Number of visits
CaseData.outcome=Outcome of case
CaseData.outcomeDate=Date of outcome
CaseData.person=Case person
CaseData.personUuid=Person ID
CaseData.personFirstName=First name
CaseData.personLastName=Last name
CaseData.plagueType=Plague type
CaseData.pointOfEntry=Point of entry
CaseData.pointOfEntryDetails=Point of entry name & description
CaseData.pointOfEntryName=Point of entry
CaseData.portHealthInfo=Port health
CaseData.postpartum=Postpartum
CaseData.pregnant=Pregnancy
CaseData.previousQuarantineTo=Previous quarantine end
CaseData.quarantineChangeComment=Quarantine change comment
CaseData.region=Region
CaseData.regionLevelDate=Date received at region level
CaseData.reportDate=Date of report
CaseData.reportingUser=Reporting user
CaseData.reportLat=Report GPS latitude
CaseData.reportLon=Report GPS longitude
CaseData.reportLatLonAccuracy=Report GPS accuracy in m
CaseData.sequelae=Sequelae
CaseData.sequelaeDetails=Sequelae Description
CaseData.smallpoxVaccinationReceived=Was a Smallpox vaccination received in the past?
CaseData.smallpoxVaccinationScar=Is a Smallpox vaccination scar present?
CaseData.smallpoxLastVaccinationDate=Date of last Smallpox vaccination
CaseData.vaccinationStatus=Vaccination status
CaseData.vaccinationStatusUpdate=Vaccination status update
CaseData.surveillanceOfficer=Responsible surveillance officer
CaseData.symptoms=Symptoms
CaseData.therapy=Therapy
CaseData.trimester=Trimester
CaseData.uuid=Case ID
CaseData.visits=Follow-up
CaseData.completeness=Completeness
CaseData.rabiesType=Rabies type
CaseData.healthConditions=Health conditions
CaseData.sharedToCountry=Share this case with the whole country
CaseData.quarantine=Quarantine
CaseData.quarantineTypeDetails=Quarantine details
CaseData.quarantineFrom=Quarantine start
CaseData.quarantineTo=Quarantine end
CaseData.quarantineHelpNeeded=Help needed in quarantine?
CaseData.quarantineHomePossible=Home-based quarantine possible?
CaseData.quarantineHomePossibleComment=Comment
CaseData.quarantineHomeSupplyEnsured=Supply ensured?
CaseData.quarantineHomeSupplyEnsuredComment=Comment
CaseData.quarantineOrderedVerbally=Quarantine ordered verbally?
CaseData.quarantineOrderedVerballyDate=Date of the verbal order
CaseData.quarantineOrderedOfficialDocument=Quarantine ordered by official document?
CaseData.quarantineOrderedOfficialDocumentDate=Date of the official document order
CaseData.quarantineExtended=Quarantine period extended?
CaseData.quarantineReduced=Quarantine period reduced?
CaseData.quarantineOfficialOrderSent=Official quarantine order sent?
CaseData.quarantineOfficialOrderSentDate=Date official quarantine order was sent
CaseData.healthFacilityName=Health facility
CaseData.followUpComment=Follow-up status comment
CaseData.followUpStatus=Follow-up status
CaseData.followUpUntil=Follow-up until
CaseData.overwriteFollowUpUntil=Overwrite follow-up until date
CaseData.symptomJournalStatus=Symptom journal status
CaseData.eventCount=Number of events
CaseData.latestEventId=Latest event ID
CaseData.latestEventStatus=Latest event status
CaseData.latestEventTitle=Latest event title
CaseData.latestSampleDateTime=Latest collection date
CaseData.caseIdIsm=Case-ID ISM
CaseData.contactTracingFirstContactType=Type of contact
CaseData.contactTracingFirstContactDate=Date of Contact
CaseData.deletionReason=Reason for deletion
CaseData.otherDeletionReason=Reason for deletion details
CaseData.wasInQuarantineBeforeIsolation=Was the case in quarantine before isolation?
CaseData.quarantineReasonBeforeIsolation=Reason why the case was in quarantine before this isolation
CaseData.quarantineReasonBeforeIsolationDetails=Other reason
CaseData.endOfIsolationReason=Reason for end of isolation
CaseData.endOfIsolationReasonDetails=Other reason
CaseData.sormasToSormasOriginInfo=Shared by
CaseData.nosocomialOutbreak=Resulted from nosocomial outbreak
CaseData.infectionSetting=Infection setting
CaseData.prohibitionToWork=Prohibition to work
CaseData.prohibitionToWorkFrom=Prohibition to work from
CaseData.prohibitionToWorkUntil=Prohibition to work until
CaseData.reInfection=Reinfection
CaseData.previousInfectionDate=Previous infection date
CaseData.reportingDistrict=Reporting district
CaseData.bloodOrganOrTissueDonated=Blood/organ/tissue donation in the last 6 months
CaseData.notACaseReasonNegativeTest=Negative test result for disease
CaseData.notACaseReasonPhysicianInformation=Information provided by physician
CaseData.notACaseReasonDifferentPathogen=Verification of different pathogen
CaseData.notACaseReasonOther=Other
CaseData.notACaseReasonDetails=Reason details
CaseData.followUpStatusChangeDate=Date of follow-up status change
CaseData.followUpStatusChangeUser=Responsible user
CaseData.expectedFollowUpUntil=Expected follow-up until
CaseData.surveillanceToolLastShareDate=Last shared with reporting tool
CaseData.surveillanceToolShareCount=Reporting tool share count
CaseData.surveillanceToolStatus=Reporting tool status
CaseData.differentPlaceOfStayJurisdiction=Place of stay of this case differs from its responsible jurisdiction
CaseData.differentPointOfEntryJurisdiction=Point of entry of this case differs from its responsible / place of stay jurisdiction
CaseData.responsibleRegion=Responsible region
CaseData.responsibleDistrict=Responsible district
CaseData.responsibleCommunity=Responsible community
CaseData.dontShareWithReportingTool=Don't share this case with the external reporting tool
CaseData.responsibleDistrictName=Responsible district
CaseData.caseReferenceDefinition=Reference definition
CaseData.pointOfEntryRegion=Point of entry region
CaseData.pointOfEntryDistrict=Point of entry district
CaseData.externalData=External data
CaseData.reinfectionStatus=Reinfection status
CaseData.changeDate=Date of last change
CaseData.creationDate=Creation date
# CaseExport
CaseExport.address=Address
CaseExport.addressRegion=Address Region
CaseExport.addressDistrict=Address District
CaseExport.addressCommunity=Address Community
CaseExport.addressGpsCoordinates=GPS coordinates of the address
CaseExport.admittedToHealthFacility=Admitted as inpatient?
CaseExport.associatedWithOutbreak=Associated with outbreak?
CaseExport.ageGroup=Age group
CaseExport.burialInfo=Burial of case
CaseExport.country=Country
CaseExport.maxSourceCaseClassification=Classification of source case
CaseExport.contactWithRodent=Contact with rodent?
CaseExport.firstName=First name
CaseExport.id=Case SN
CaseExport.initialDetectionPlace=Place of initial detection
CaseExport.labResults=Lab results
CaseExport.lastName=Last name
CaseExport.sampleDates=Dates of sample collection
CaseExport.sampleTaken=Sample taken?
CaseExport.travelHistory=Travel history
CaseExport.numberOfPrescriptions=Number of prescriptions
CaseExport.numberOfTreatments=Number of treatments
CaseExport.numberOfClinicalVisits=Number of clinical assessments
CaseExport.sampleUuid1=Latest sample uuid
CaseExport.sampleDateTime1=Latest sample date time
CaseExport.sampleLab1=Latest sample laboratory
CaseExport.sampleResult1=Latest sample final laboratory result
CaseExport.sampleUuid2=2nd latest sample uuid
CaseExport.sampleDateTime2=2nd latest sample date time
CaseExport.sampleLab2=2nd latest sample laboratory
CaseExport.sampleResult2=2nd latest sample final laboratory result
CaseExport.sampleUuid3=3rd latest sample uuid
CaseExport.sampleDateTime3=3rd latest sample date time
CaseExport.sampleLab3=3rd latest sample laboratory
CaseExport.sampleResult3=3rd latest sample final laboratory result
CaseExport.otherSamples=Other samples taken
CaseExport.sampleInformation=Sample information
CaseExport.diseaseFormatted=Disease
CaseExport.quarantineInformation=Quarantine information
CaseExport.lastCooperativeVisitDate=Date of last cooperative visit
CaseExport.lastCooperativeVisitSymptomatic=Symptomatic at last cooperative visit?
CaseExport.lastCooperativeVisitSymptoms=Symptoms at last cooperative visit
CaseExport.traveled=Traveled outside of district
CaseExport.burialAttended=Visited a burial
CaseExport.reportingUserName=Reporting user
CaseExport.reportingUserRoles=Reporting user roles
CaseExport.followUpStatusChangeUserName=Responsible user
CaseExport.followUpStatusChangeUserRoles=Responsible user roles
# CaseHospitalization
CaseHospitalization=Hospitalization
CaseHospitalization.admissionDate=Date of visit or admission
CaseHospitalization.admittedToHealthFacility=Was patient admitted at the facility as an inpatient?
CaseHospitalization.dischargeDate=Date of discharge or transfer
CaseHospitalization.healthFacility=Hospital name
CaseHospitalization.hospitalizedPreviously=Was the patient hospitalized or did he/she visit a health clinic previously for this illness?
CaseHospitalization.isolated=Isolation
CaseHospitalization.isolationDate=Date of isolation
CaseHospitalization.leftAgainstAdvice=Left against medical advice
CaseHospitalization.previousHospitalizations=Previous hospitalizations
CaseHospitalization.intensiveCareUnit=Stay in the intensive care unit
CaseHospitalization.intensiveCareUnitStart=Start of the stay
CaseHospitalization.intensiveCareUnitEnd=End of the stay
CaseHospitalization.hospitalizationReason=Reason for hospitalization
CaseHospitalization.otherHospitalizationReason=Specify reason
# CaseImport
caseImportErrorDescription=Error description
caseImportMergeCase=Override existing case with changes from the imported case?
# CasePreviousHospitalization
CasePreviousHospitalization=Previous hospitalization
CasePreviousHospitalization.admissionAndDischargeDate=Date of admission & discharge
CasePreviousHospitalization.admittedToHealthFacility=Was patient admitted at the facility as an inpatient?
CasePreviousHospitalization.admissionDate=Date of admission
CasePreviousHospitalization.description=Description
CasePreviousHospitalization.dischargeDate=Date of discharge or transfer
CasePreviousHospitalization.editColumn=Edit
CasePreviousHospitalization.region=Region
CasePreviousHospitalization.district=District
CasePreviousHospitalization.community=Community
CasePreviousHospitalization.healthFacility=Hospital
CasePreviousHospitalization.healthFacilityDetails=Hospital name & description
CasePreviousHospitalization.isolated=Isolation
CasePreviousHospitalization.isolationDate=Date of isolation
CasePreviousHospitalization.prevHospPeriod=Period of hospitalization
CasePreviousHospitalization.hospitalizationReason=Reason for hospitalization
CasePreviousHospitalization.otherHospitalizationReason=Specify reason
CasePreviousHospitalization.intensiveCareUnit=Stay in the intensive care unit
CasePreviousHospitalization.intensiveCareUnitStart=Start of the stay
CasePreviousHospitalization.intensiveCareUnitEnd=End of the stay
# ClinicalVisit
clinicalVisitNewClinicalVisit=New clinical assessment
ClinicalVisit=Clinical assessment
ClinicalVisit.bloodPressure=Blood pressure
ClinicalVisit.heartRate=Heart rate
ClinicalVisit.temperature=Temperature
ClinicalVisit.visitDateTime=Date and time of visit
ClinicalVisit.visitingPerson=Attending clinician
ClinicalVisit.visitRemarks=Clinician remarks
ClinicalVisitExport.caseUuid=Case ID
ClinicalVisitExport.caseName=Case name
columnAdditionalTests=Additional tests
columnDiseaseShort=Disease
columnLastPathogenTest=Latest Pathogen test (CT/CQ-Value)
columnNumberOfPendingTasks=Pending tasks
columnVaccineName=Vaccine name
columnVaccineManufacturer=Vaccine manufacturer
# Community
Community=Community
Community.archived=Archived
Community.externalID=External ID
Community.region=Region
Community.district=District
Community.defaultInfrastructure=Default
communityActiveCommunities=Active communities
communityArchivedCommunities=Archived communities
communityAllCommunities=All communities
# Configuration
Configuration.Facilities=Facilities
Configuration.Outbreaks=Outbreaks
Configuration.PointsOfEntry=Points of Entry
Configuration.LineListing=Line Listing
# Contact
contactCancelFollowUp=Cancel follow-up
contactCaseContacts=Case contacts
contactContactsList=Contacts list
contactCreateContactCase=Create a case for this contact person
contactLostToFollowUp=Lost to follow-up
contactNewContact=New contact
contactOpenContactCase=Open case of this contact person
contactPersonVisits=All visits of contact person
contactRelated=Contact related
contactResumeFollowUp=Resume follow-up
contactSelect=Select contact
contactCreateNew=Create new contact
contactActiveContacts=Active contacts
contactArchivedContacts=Archived contacts
contactAllActiveAndArchiveContacts=All active and archived contacts
contactContactsOverview=Contacts
contactDetailedOverview=Detailed
contactDeletedContacts=Deleted contacts
contactFollowUpVisitsOverview=Follow-up Visits
contactMinusDays=Previous
contactPlusDays=Next
contactNoContactsForEventParticipant=There are no contacts for this event participant
contactOnlyFromOtherInstances=Only contacts from other instances
contactOnlyHighPriorityContacts=Only high priority contacts
contactChooseCase=Choose Case
contactRemoveCase=Remove Case
contactChangeCase=Change Case
contactChooseSourceCase=Choose Source Case
contactOnlyQuarantineHelpNeeded=Help needed in quarantine
contactOnlyWithExtendedQuarantine=Only contacts with extended quarantine
contactOnlyWithReducedQuarantine=Only contacts with reduced quarantine
contactIncludeContactsFromOtherJurisdictions=Include contacts from other jurisdictions
contactOnlyWithSharedEventWithSourceCase=Only contacts with source case linked to the specified event
contactOnlyWithSourceCaseInGivenEvent=Only contacts whose source case is linked to this event
contactFollowUpDay=Day
contactQuarantineNotOrdered=No quarantine ordered
contactPersonPhoneNumber=Contact Person's Phone Number
contactSourceCase=Source case
contactMergeDuplicates=Merge duplicates
contactBackToDirectory=Back to contact directory
contactOpenCasesGuide=Open contacts guide
contactOpenMergeGuide=Open merge guide
contactCalculateCompleteness=Calculate completeness
contactNumberOfDuplicatesDetected=%d potential duplicates detected
contactFilterWithDifferentRegion=Show duplicates with differing regions
Contact=Contact
Contact.additionalDetails=General comment
Contact.ageAndBirthDate=Age and birth date
Contact.caseClassification=Classification of the source case
Contact.caze=Source case
Contact.caze.ageSex=Age, sex
Contact.caze.caseClassification=Case classification
Contact.caze.person=Name
Contact.caze.symptomsOnset=Symptoms onset
Contact.caze.uuid=Case ID
Contact.cazeDisease=Disease of source case
Contact.cazeDiseaseVariant=Disease variant of source case
Contact.cazeDistrict=District of source case
Contact.community=Responsible community
Contact.completeness=Completeness
Contact.contactClassification=Contact classification
Contact.contactOfficer=Responsible contact officer
Contact.contactOfficerUuid=Responsible contact officer
Contact.contactIdentificationSource=Contact identification source
Contact.contactIdentificationSourceDetails=Contact identification source details
Contact.tracingApp=Tracing app
Contact.tracingAppDetails=Tracing app details, e.g. name
Contact.contactProximity=Type of contact
Contact.contactProximityLongForm=Type of contact - if multiple pick the closest contact proximity
Contact.contactStatus=Contact status
Contact.deletionReason=Reason for deletion
Contact.otherDeletionReason=Reason for deletion details
Contact.description=Description of how contact took place
Contact.disease=Disease of source case
Contact.district=Responsible district
Contact.epiData=Epidemiological data
Contact.externalID=External ID
Contact.externalToken=External Token
Contact.internalToken=Internal Token
Contact.caseReferenceNumber=Case Reference Number
Contact.personUuid=Person ID
Contact.firstContactDate=Date of first contact
Contact.firstName=First name of contact person
Contact.followUpComment=Follow-up status comment
Contact.followUpStatus=Follow-up status
Contact.followUpUntil=Follow-up until
Contact.symptomJournalStatus=Symptom journal status
Contact.lastContactDate=Date of last contact
Contact.lastName=Last name of contact person
Contact.latestEventId=Latest event ID
Contact.latestEventTitle=Latest event title
Contact.multiDayContact=Multi-day contact
Contact.numberOfVisits=Number of visits
Contact.person=Contact person
Contact.previousQuarantineTo=Previous quarantine end
Contact.quarantine=Quarantine
Contact.quarantineChangeComment=Quarantine change comment
Contact.quarantineTypeDetails=Quarantine details
Contact.quarantineFrom=Quarantine start
Contact.quarantineHelpNeeded=Help needed in quarantine?
Contact.quarantineTo=Quarantine end
Contact.region=Responsible region
Contact.relationDescription=Relationship description
Contact.relationToCase=Relationship with case
Contact.reportDateTime=Report date
Contact.reportingUser=Reporting user
Contact.reportLat=Report GPS latitude
Contact.reportLon=Report GPS longitude
Contact.reportLatLonAccuracy=Report GPS accuracy in m
Contact.resultingCase=Resulting case
Contact.resultingCaseUser=Resulting case assigned by
Contact.returningTraveler=Returning Traveler
Contact.uuid=Contact ID
Contact.visits=Follow-up visits
Contact.highPriority=High priority contact
Contact.immunosuppressiveTherapyBasicDisease=Immunosuppressive therapy or basic disease is present
Contact.immunosuppressiveTherapyBasicDiseaseDetails=Please specify
Contact.careForPeopleOver60=Is the person medically/nursingly active in the care of patients or people over 60 years of age?
Contact.diseaseDetails=Disease name
Contact.caseIdExternalSystem=Case ID in external system
Contact.caseOrEventInformation=Case or event information
Contact.contactProximityDetails=Additional information on the type of contact
Contact.contactCategory=Contact Category
Contact.overwriteFollowUpUntil=Overwrite follow-up until date
Contact.regionUuid=Contact or Case Region
Contact.districtUuid=Contact or Case District
Contact.communityUuid=Contact or Case Community
Contact.quarantineHomePossible=Home-based quarantine possible?
Contact.quarantineHomePossibleComment=Comment
Contact.quarantineHomeSupplyEnsured=Supply ensured?
Contact.quarantineHomeSupplyEnsuredComment=Comment
Contact.quarantineOrderedVerbally=Quarantine ordered verbally?
Contact.quarantineOrderedVerballyDate=Date of the verbal order
Contact.quarantineOrderedOfficialDocument=Quarantine ordered by official document?
Contact.quarantineOrderedOfficialDocumentDate=Date of the official document order
Contact.quarantineExtended=Quarantine period extended?
Contact.quarantineReduced=Quarantine period reduced?
Contact.quarantineOfficialOrderSent=Official quarantine order sent?
Contact.quarantineOfficialOrderSentDate=Date official quarantine order was sent
Contact.endOfQuarantineReason=Reason for end of quarantine
Contact.endOfQuarantineReasonDetails=Other reason
Contact.prohibitionToWork=Prohibition to work
Contact.prohibitionToWorkFrom=Prohibition to work from
Contact.prohibitionToWorkUntil=Prohibition to work until
Contact.reportingDistrict=Reporting district
Contact.followUpStatusChangeDate=Date of follow-up status change
Contact.followUpStatusChangeUser=Responsible user
Contact.expectedFollowUpUntil=Expected follow-up until
Contact.vaccinationStatus=Vaccination status
Contact.changeDate=Date of last change
Contact.creationDate=Creation date
# ContactExport
ContactExport.address=Address
ContactExport.addressDistrict=Address District
ContactExport.addressRegion=Address Region
ContactExport.addressCommunity=Address Community
ContactExport.burialAttended=Visited a burial
ContactExport.contactWithRodent=Contact with rodent?
ContactExport.directContactConfirmedCase=Direct contact with a confirmed case
ContactExport.directContactProbableCase=Direct contact with a probable or confirmed case
ContactExport.firstName=First name of contact person
ContactExport.lastCooperativeVisitDate=Date of last cooperative visit
ContactExport.lastCooperativeVisitSymptomatic=Symptomatic at last cooperative visit?
ContactExport.lastCooperativeVisitSymptoms=Symptoms at last cooperative visit
ContactExport.lastName=Last name of contact person
ContactExport.sourceCaseUuid=Source case ID
ContactExport.traveled=Traveled outside of district
ContactExport.travelHistory=Travel history
ContactExport.quarantineInformation=Quarantine information
ContactExport.reportingUserName=Reporting user
ContactExport.reportingUserRoles=Reporting user roles
ContactExport.followUpStatusChangeUserName=Responsible user
ContactExport.followUpStatusChangeUserRoles=Responsible user roles
# Customizable enums
CustomizableEnum.hasDetails=Show an additional details text field when this value is selected
CustomizableEnum.hasDetails.short=Has details
# Customizable enum values
customizableEnumValueAllDiseases=All diseases
customizableEnumValueDiseaseCount=%d diseases
customizableEnumValueNoProperties=No properties
customizableEnumValueActiveValues=Active values
customizableEnumValueInactiveValues=Inactive values
CustomizableEnumValue.dataType=Data type
CustomizableEnumValue.value=Value
CustomizableEnumValue.caption=Caption
CustomizableEnumValue.diseases=Diseases
CustomizableEnumValue.properties=Properties
CustomizableEnumValue.active=Active
# Dashboard
dashboardAlive=Alive
dashboardApplyCustomFilter=Apply custom filter
dashboardCanceledFollowUp=Canceled follow-up
dashboardCanceledFollowUpShort=Canceled F/U
dashboardCaseFatalityRateShort=CFR
dashboardCasesIn=Cases in
dashboardComparedTo=compared to
dashboardComparedToPreviousPeriod=%s compared to %s
dashboardCompletedFollowUp=Completed follow-up
dashboardCompletedFollowUpShort=Completed F/U
dashboardConfirmed=Confirmed
dashboardConfirmedContact=Confirmed contact
dashboardConfirmedNoSymptoms=Confirmed no symptoms
dashboardConfirmedUnknownSymptoms=Confirmed unknown symptoms
dashboardConvertedToCase=Converted to case
dashboardCooperative=Cooperative
dashboardCustom=Custom
dashboardCustomPeriod=Custom period
dashboardData=Data
dashboardDead=Dead
dashboardDiscarded=Discarded
dashboardDiseaseBurdenInfo=Disease Burden Information
dashboardDiseaseBurdenOutbreakDistricts=Outbreak Districts
dashboardDiseaseCarouselSlideShow=slide show
dashboardDiseaseDifference=Difference in Number of Cases
dashboardDiseaseDifferenceYAxisLabel=Difference
dashboardDone=Done
dashboardFatalities=Fatalities
dashboardFollowUpUntilShort=F/U Until
dashboardGrouping=Grouping
dashboardGt1ConfirmedCases=> 1 Confirmed Cases
dashboardGt1ProbableCases=> 1 Probable Cases
dashboardGt1SuspectCases=> 1 Suspect Cases
dashboardGtThreeDays=> 3 Days
dashboardFacilities=Facilities
dashboardHideOtherCountries=Hide other countries
dashboardHideOverview=Hide overview
dashboardHigh=High
dashboardIndeterminate=Indeterminate
dashboardNotDone=Not done
dashboardInvestigated=Investigated
dashboardLastVisitGt48=Last Visit > 48h or No Visit
dashboardLastVisitLt24=Last Visit < 24h
dashboardLastVisitLt48=Last Visit < 48h
dashboardLastWeek=Last epi week: %s
dashboardLastYear=Last year
dashboardLostToFollowUp=Lost to follow-up
dashboardLostToFollowUpShort=Lost To F/U
dashboardLow=Low
dashboardMapKey=Map Key
dashboardMapLayers=Layers
dashboardMapShowEpiSituation=Show epidemiological situation
dashboardMissed=Missed
dashboardNegative=Negative
dashboardNeverVisited=Never visited
dashboardNew=New
dashboardNewCases=New Cases
dashboardNewEvents=New Events
dashboardNewFinalLaboratoryResults=Final Laboratory Results
dashboardNoPopulationData=No population data available
dashboardNormal=Normal
dashboardNotACase=Not A Case
dashboardNotAContact=Not a contact
dashboardNotAnEvent=Not An Event
dashboardNotExecutable=Not Executable
dashboardNotVisitedFor=Contacts not visited for...
dashboardNotYetClassified=Not Yet Classified
dashboardNotYetClassifiedOnly=Only Not Yet Classified Cases
dashboardNumberOfCases=Number of Cases
dashboardNumberOfContacts=Number of Contacts
dashboardNumberOfSamples=Number of Samples
dashboardOneDay=1 Day
dashboardOutbreak=Outbreak
dashboardPending=Pending
dashboardPositive=Positive
dashboardPossible=Possible
dashboardProbable=Probable
dashboardReceived=Received
dashboardRemoved=Removed
dashboardRumor=Signal
dashboardSelectPeriod=Select Period
dashboardShipped=Shipped
dashboardShowAllDiseases=Show All Diseases
dashboardShowCases=Show cases
dashboardShowConfirmedContacts=Show confirmed contacts
dashboardShowContacts=Show contacts
dashboardShowEvents=Show events
dashboardShowFirstDiseases=Show First 6 Diseases
dashboardShowMinimumEntries=Always show at least 7 entries
dashboardShowRegions=Show regions
dashboardShowUnconfirmedContacts=Show unconfirmed contacts
dashboardSuspect=Suspect
dashboardSymptomatic=Symptomatic
dashboardThisWeek=This epi week: %s
dashboardThisYear=This year: %s
dashboardThreeDays=3 Days
dashboardToday=Today: %s
dashboardTotal=Total
dashboardTwoDays=2 Days
dashboardUnavailable=Unavailable
dashboardUnconfirmed=Unconfirmed
dashboardUnconfirmedContact=Unconfirmed contact
dashboardUncooperative=Uncooperative
dashboardUnderFollowUp=Under follow-up
dashboardUnderFollowUpShort=Under F/U
dashboardUnknown=Unknown
dashboardYesterday=Yesterday: %s
dashboardDayBefore=The day before: %s
dashboardWeekBefore=The epi week before: %s
dashboardPeriodBefore=The period before: %s
dashboardSameDayLastYear=Same day last year: %s
dashboardSameWeekLastYear=Same epi week last year: %s
dashboardSamePeriodLastYear=Same period last year: %s
dashboardLastReport=Last report:
dashboardFollowUpStatusChart=Follow-up Status Chart