-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
messages.properties
3324 lines (3153 loc) · 178 KB
/
messages.properties
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
openmrs.title=OpenMRS
index.title=OpenMRS - Home
login.title=OpenMRS - Login
forgotPassword.title=OpenMRS - Forgot Password
patientDashboard.title=OpenMRS - Patient Dashboard
personDashboard.title=OpenMRS - Person Dashboard
findPatient.title=OpenMRS - Find Patient
optionsForm.title=OpenMRS - User Options
dictionary.titlebar=OpenMRS - Dictionary
dictionary.title=Concept Dictionary Maintenance
admin.titlebar=OpenMRS - Administration
person.title=OpenMRS - person
encounter.title=OpenMRS - encounter
location.title=OpenMRS - location
dictionary.header=Concept Dictionary Maintenance
CohortBuilder.title=OpenMRS - Cohort Builder
admin.header=Administration
Navigation.home = Home
Navigation.findPatient = Find Patient
Navigation.findCreatePatient = Find/Create Patient
Navigation.dictionary = Dictionary
Navigation.administration = Administration
Navigation.options = My Profile
Navigation.calendar = Calendar
fix.error=Please fix all errors and try again.
fix.error.plain=Please fix all errors and try again.
error.general=Error while submitting form
error.file.upload.expected.text.file=Error while uploading file. Please try again(only text files are allowed).
error.null=Cannot be empty or null
error.inuse=Value in use by another object
error.object.inuse.cannot.purge = This object is being referenced and cannot be deleted forever.
error.object.state.inuse.cannot.delete = The state cannot be deleted. It is already assigned to a patient.
error.name=Invalid name
error.description=Invalid description
error.checkdigit=Invalid checkdigit for
error.checkdigits=Invalid checkdigit for {0}
error.checkdigits.verbose=The check digit on {0} is invalid. Please double check this patient
error.checkdigits.unallowed=The identifier {0} is not allowed for validator {1}
error.concept=Invalid concept
error.drugAndOrderConcept.mismatch = Mismatches between OrderConcept and DrugConcept
error.drug.noConcept = The drug has no concept defined
error.character.invalid=Invalid character `{0}` found in non-checkdigit identifier {1}
error.date=Invalid date
error.number=Not a valid number
error.numberOutsideRange = Number outside acceptable range
error.patientSearchNoChars=You must enter search characters
error.preferredIdentifier=Select a preferred identifier
error.reportObject.type.required=Invalid type
error.reportObject.subType.required=Invalid subtype
error.date.future=Cannot be a date in the future
error.date.nonsensical=Nonsensical date, please check.
error.deathdate.before.birthdate=Death date must be after birth date
error.programWorkflow=Invalid Program Workflow
error.programWorkflowState=Invalid Program Workflow State
error.identifier.formatInvalid=The identifier {0} is invalid, and needs to be of the format: {1}
error.beforeDateCreated=Cannot be later than the creation date
error.required={0} is required
error.trailingSpaces=Extra spaces at the beginning or end are not allowed
error.configurationRequired=All configuration parameters must be specified prior to using this module
error.dwr.stacktrace=The full stacktrace for this error can usually be found in your server's error logs.
error.dwr=A javascript error has occurred:
error.dwr.hide=Hide error
error.outOfRange.low.obs.valueNumeric=This value is too low to be valid for this question
error.outOfRange.high.obs.valueNumeric=This value is too high to be valid for this question
error.exceededMaxLengthOfField=This value exceeds the maximum length of {0} permitted for this field.
error.failed.validation=Validation errors found
errors.patientId.cannotBeNull=Patient Id cannot be null
error.foundValidationErrors=Found Validation Errors
error.invalid=Invalid
error.privilegesRequired=Privileges required: {0}
error.extraPrivilegesRequired=Extra privileges required
error.insufficientPrivileges=Insufficient Privileges
error.aunthenticationRequired=Basic authentication required
error.failedToSendRequest=Failed to send request
error.description.required=Description is required
error.duplicateIdentifierTypes= Patient cannot have more than one identifier for a given identifier type
fieldtype.duplicate.name=Specified Field Type name already exists, please specify another
identifierType.duplicate.name=Specified Identifier Type name already exists, please specify another
location.duplicate.name=Specified Location name already exists, please specify another
conceptclass.duplicate.name=Specified Concept Class name already exists, please specify another
duplicate.relationshipType=Relationship Type already exists, please specify another
error.patientProgram.enrolledDateShouldBeBeforecompletionDate=Enrolled Date should be before completion Date
error.patientProgram.enrolledDateEmpty=Enrolled date is empty, Please select a enrolled date
error.patientProgram.enrolledDateDateCannotBeInFuture=Enrolled date can't be in future, Please select a date on or before today
error.patientProgram.completionDateCannotBeInFuture=Completed date can't be in future, Please select a date on or before today
error.context.null=contextDAO is null
Context.DAO.only=This method can only be called from the ContextDAO class, not {0}
error.rank.notPositiveInteger=Rank can only be a positive integer
error.email.invalid =Invalid Email address
error.email.alreadyInUse=Email address is already assigned to another user account
error.activationkey.invalid =Invalid user activation Key
error.usernameOrEmail.notNullOrBlank =Username Or email cannot be null or blank
error.allergyapi.allergy.ReactionNonCoded.cannotBeNumeric=Reaction Non-coded must not be only a number
error.allergyapi.allergen.nonCodedAllergen.cannotBeNumeric=Non-coded Allergen must not be only a number
general.at=at
general.with=with
general.select=Select
general.selectOrUnselectAll=Select/Unselect All
general.name=Name
general.description=Description
general.creator=Creator
general.createdBy=Created By
general.dateCreated=Date Created
general.voidInfo=Delete Information
general.voided=Deleted
general.voidedBy=Deleted By
general.voidReason=Reason For Deletion
general.voidReason.empty=Reason for deletion cannot be empty
general.voidReasonQuestion=Reason to Delete
general.dateVoided=Date Deleted
general.changedBy=Changed By
general.dateChanged=Date Changed
general.delete=Delete
general.deleteLink=[x]
general.deleted=deleted
general.cannot.delete=cannot be deleted
general.purge=Delete forever
general.purged=Deleted forever
general.changed=changed
general.cannot.change=cannot be changed
general.retire=Retire
general.retired=Retired
general.retiredReason=Retired Reason
general.retireReason=Retire Reason
general.retiredBy=Retired By
general.dateRetired=Date Retired
general.retiredReason.empty=Retire reason cannot be empty.
general.cannot.retire=cannot be retired
general.cannot.unretire=Cannot Unretire
general.unretire=Unretire
general.add=Add
general.addAnother=Add Another
general.new=New
general.edit=Edit
general.save=Save
general.saved=Saved
general.saveAs=Save As
general.saving=Saving {0}
general.startedAt=started at
general.completedAt=completed at
general.remove=Remove
general.view=View
general.move_up=Move Up
general.move_down=Move Down
general.search=Search
general.searchButton=Search
general.change=Change
general.id=Id
general.continue=Continue
general.previous=Previous
general.next=Next
general.true=True
general.false=False
general.search.hint=HINT: type only the first few letters
general.cancel=Cancel
general.canceled=Action Canceled
general.refresh=Refresh
general.preferred=Preferred
general.submit=Submit
general.answer=Answer
general.download=Download
general.start=Start
general.end=End
general.format=Format
general.yes=Yes
general.no=No
general.choose=Choose
general.clear=Clear
general.type=Type
general.subType=Subtype
general.toggle.description=Toggle Description
general.toggle.voided=Toggle Deleted
general.toggle.verbose=Toggle Verbose
general.toggle.retired=Toggle Retired
general.or=or
general.and=and
general.andOr=and/or
general.value=Value
general.none=None
general.instructions=Instructions
general.discontinued=Discontinued
general.discontinuedBy=Discontinued by
general.discontinuedReason=Reason discontinued
general.dateStart=Start date
general.dateAutoExpire=Auto-expire date
general.dateDiscontinued=Discontinued date
general.locale=Locale
general.locale.defaultNotInAllowedLocalesList="{0}" is not in allowed locales list
general.locale.localeListNotIncludingDefaultLocale="{0}" can not be removed from allowed locales list because it is the default locale
general.nMore={0} more
general.nLess={0} less
general.optional=optional
general.onDate=on
general.hide=Hide
general.drop=Drop
general.close=Close
general.reason=Reason
general.void=Delete
general.unvoid=Restore
general.loading=Loading...
general.fromDate=from
general.toDate=until
general.unknown=Unknown
general.readonly=Read Only
general.atLocation=at
general.byPerson=by
general.printedOn=Printed onerror.aunthenticationRequired
general.notYetImplemented=<font color='red'>Not Yet Implemented</font>
general.not.yet.implemented=Not Yet Implemented
general.closeWindow=Close Window
general.navigateBack=Go Back
general.back=Back
general.action=Action
general.author=Author
general.version=Version
general.includeVoided=Include Deleted
general.dateConstraints=Date range
general.since=since
general.nWeeks={0} week(s)
general.displayingXtoYofZ=Displaying {0} to {1} of {2}
general.file=File
general.allOptions=Any
general.dataEntryError=Data entry error
general.showAll=Show all
general.parameters=Parameters
general.class=Class
general.key=Key
general.error.nameAlreadyInUse=The name you entered is already in use, please enter a unique name.
general.invalid=Invalid
general.properties=Properties
general.default=Default
general.default.voidReason=Removed from user interface
general.voidReasonWithArgument=Deleted because it was edited to: {0}
general.default.changeReason=Changed from user interface
general.to=to
general.of=of
general.yearsOldAbbrev=yo
general.noMatchesFound=No matches found for {0}
general.noMatchesFoundInLocale=No matches found for {0} in locale {1}
general.confirm.purge=Are you sure you want to delete this object? It will be permanently removed from the system.
general.default.retireReason=Retired from user interface
general.patient=Patient
general.done=Done
general.restore=Restore
general.purge.confirmation=Delete forever Confirmation
general.delete.confirmation=Delete Confirmation
general.retire.confirmation=Retire Confirmation
general.uuid=UUID
general.show=Show
general.changes.toSave=You have made changes. <br/> Save changes or Revert
general.today=Today
general.yesterday=Yesterday
general.unableToViewPage=Sorry, you are not able to view this page or perform this action.
general.accountHasNoPrivilege=Your user account does not have the required privilege(s) to view this page.
general.sendAlertToAdminMessage=If you think you should have the privilege(s), we can send a message to your system administrator saying so.
general.loginWithAnotherAccountMessage=If you have another user account with more privileges, you can log in with that and try the operation again.
general.loginWithAnotherAccount=Log in with another account
general.alert.requestPrivilegesForPage=User {0} has requested privilege(s) [{1}], when they were trying to access the page: {2}
general.alert.requestUnKnownPrivilegesForPage=User {0} has requested privilege(s), when they were trying to access the page: {1}
general.alert.requestPrivileges=User {0} has requested privilege(s) [{1}], when they were trying to access a page
general.alert.privilegesForPageOnException={0}, User {1} was missing these or some privileges when they were trying to access the page: {2}
general.alertSystemAdmin=Alert System Administrator
general.alertSent=Alert Sent
general.noresult=No Results
general.passwordLength=Password should be {0} characters long
general.shouldHave=and should have
general.charactersLeft=You only have {0} character(s) remaining
##### SEARCH WIDGET MESSAGES ######
searchWidget.sInfoLabel=Showing {0} to {1} of {2} entries
searchWidget.viewingResults=Viewing results for {0}
searchWidget.loadingWithPlaceHolder=Loading {0} results
searchWidget.minCharRequired=Enter at least {0} characters
searchWidget.pagesWithPlaceHolder={0} pages
searchWidget.first=First
searchWidget.previous=Previous
searchWidget.next=Next
searchWidget.last=Last
searchWidget.noMatchesFound=No matching records found
searchWidget.OnePage=1 page
searchWidget.searchPhraseCannotBeNull=Search phrase cannot be null or blank
searchWidget.showVerbose=Show Details
searchWidget.viewingAll=Viewing all
searchWidget.showNumberOfEntries=Show {0} entries
searchWidget.noResultsFoundFor=No results found for: <b>{0}</b>, here are partial matches for: <b>{1}</b>
#### JSP page messages ######
admin.title.short=Admin
admin.title=Administration
admin.password.locked=Admin password is locked and can only be changed via runtime property.
auth.logged.out=You are now logged out
auth.session.expired=Your session has expired.
auth.login=Log In
auth.login.tooManyAttempts=You have attempted to log in too many times. Please try again later.
auth.password.invalid=Invalid username/password. Please try again.
auth.password.help=To reset your password, input your username and check the box for "I forgot my password"
auth.answer.invalid=Invalid username and secret answer combination. Please try again.
auth.question.empty=Invalid user or the secret question has not been set. Please contact an administrator for help resetting your password.
auth.question.fill=Fill in your answer to the secret question to continue
auth.password.reset=Your password had been reset. Please fill in the boxes for your new password.
auth.invalid=Invalid session object. Please log in again.
auth.forgotPassword.tooManyAttempts=You have attempted to reset your password too many times. Please try again later.
forgotPassword.help=Fill in your username (and then subsequently the answer to your secret question) to reset your password
forgotPassword.showSecretQuestion=Show Secret Question
forgotPassword.resetPassword=Reset Password
calendar.patient.lastVisit=Last known visit
diagnosis.title=Select a Diagnosis
conceptAnswer.title=Choose an Answer
conceptAnswer.forConcept=
dictionary.title.short=Dictionary
dictionary.searchBox=Search Phrase:
dictionary.includeRetired=Include retired concepts
dictionary.verboseListing=Verbose listing
dictionary.download.link=Download the concept dictionary
dictionary.download.description= in CSV format -- (dynamically creates a CSV file containing current dictionary terms/concepts)
dictionary.error.needName=You can't specify a short name or a description within a locale unless you also specify the name
dictionary.questionsAnswered=Questions Answered
dictionary.numobs=Obs for this concept: {0}
dictionary.forms=Forms Using This Concept
dictionary.drugs=Drugs Using This Concept
dictionary.personattributetypes=Person Attribute Types Using This Concept
dictionary.programs=Programs Using This Concept
dictionary.programworkflows=Program Workflows Using This Concept
dictionary.programworkflowstates=Program Workflow States Using This Concept
dictionary.resources=Resources
dictionary.similarConcepts=Similar Concepts
dictionary.merriam=Merriam Webster
dictionary.google=Google
dictionary.upToDate=UpToDate
dictionary.dictionaryCom=Dictionary.com
dictionary.testsOnline=Lab Tests Online
dictionary.containedInSets=Contained in Sets
feedback.title=Feedback
feedback.success=Your feedback has been successfully submitted
feedback.error=There was an error submitting feedback. Please try again later
feedback.email=Your Email Address
feedback.subject=Subject
feedback.message=Message
feedback.send=Send Feedback
header.logged.in=Currently logged in as
header.logged.out=Not logged in
header.login=Log in
header.logout=Log out
header.help=Help
help.about.text={0}High Level Introduction{1} to OpenMRS
help.administrator.text=Administrator's Guide
help.contact.text=Need to get in contact with the OpenMRS team? Check out the following outlets.
help.developer.text=Developer's Guide
help.getting.started.guide.text=Getting Started with OpenMRS
help.guides.text=OpenMRS guides
help.irc.text=Chat with the OpenMRS team using {0}Internet Relay Chat.{1}
help.mailing.text=Join a {0}Mailing List{1} which best fits your use of OpenMRS.
help.modules.text=Modules Guide
help.overview.text=OpenMRS overviews
help.technical.text={0}Technical Overview{1} of OpenMRS
help.title=OpenMRS Help
help.troubleshoot.text=Troubleshooting Guide
help.user.text=User's Guide
help.wiki.text=Having an issue with OpenMRS? Tap into the extensive, ever growing OpenMRS community {0}Wiki{1}
options.title=User Options
options.default.legend=Defaults
options.default.location=Default Location
options.default.locale=Default Locale
options.proficient.locales=Proficient Locales
options.default.verbose=Verbose Display On
options.showRetiredMessage=Show Retired Message?
options.login.legend=Change Login Info
options.login.username=Username
options.login.password.old=Old Password
options.login.password.new=New Password
options.login.password.confirm=Confirm New Password
options.login.secretQuestion.about=You may create or edit your secret question below. The secret question can be used in the event you forget your password.
options.login.secretQuestionNew=Secret Question
options.login.secretAnswerNew=New Secret Answer
options.login.secretAnswerConfirm=Confirm Secret Answer
options.login.password.minCharacterCount=Must be at least {0} characters long
options.login.password.containUpperCase=contain an uppercase character
options.login.password.containNumber=contain at least one number
options.login.password.containNonNumber=contain at least one non number
options.login.password.cannotMatchUsername=cannot match username
options.login.password.null=Password cannot be empty or null
options.notify.legend=Notifications
options.notify.internalOnly=Within the system only
options.notify.internal=Within system, but notify by email for new messages
options.notify.internalProtected=Email when possible, within system for protected data
options.notify.email=Always by email
options.notify.notificationAddress=Send To
options.save=Save Options
options.saved=Options Saved
options.not.saved=Options Not Saved
error.options.secretAnswer.match=Answers do not match
error.options.secretAnswer.empty=Answer should not be empty
error.options.secretQuestion.empty=Question should not be empty
error.username.weak=Invalid username. Must be at least 6 characters
error.username.invalid=Invalid username. Username must be alphanumeric and cannot start with a number
error.username.email=Invalid username. Username must be a valid e-mail.
error.retired.requireMetadata=Who retired this and why?
error.options.notificationAddress.invalid=Invalid notifications email address
error.options.notificationAddress.empty=No notifications email address specified
changePassword.hint.password.length=Password should have at least {0} characters
changePassword.hint.password.bothCasesRequired=both upper and lower case characters
changePassword.hint.password.digitRequired=at least one digit
changePassword.hint.password.nonDigitRequired=at least one non digit
patientDashboard.overview=Overview
patientDashboard.summary=Summary
patientDashboard.regimens=Regimens
patientDashboard.encounters=Encounters
patientDashboard.demographics=Demographics
patientDashboard.deceased=Deceased
patientDashboard.graphs=Graphs
patientDashboard.graphs.title=over time
patientDashboard.graphs.hide=Hide Graph
patientDashboard.graphs.show=Show Graph
patientDashboard.formEntry=Form Entry
patientDashboard.viewDashboard=View Patient Dashboard
patientDashboard.showMoreIdentifers=Show More Identifiers
patientDashboard.mostRecentObs=Most Recent Observations
PatientDashboard.backToPatientDashboard=Back To Patient Dashboard
patientDashboard.visits=Visits
patientDashboard.visits.showing.pages=Showing page {0} of {1}
patientDashboard.noPatientWithId=There is no patient with id: {0}
patientGraphs.addNewGraph=Add New Graph
provider.missing=Matata! I was unable to find any providers. Please <a href="javascript:reloadPage()">try again</a>. If this problem persists, then contact that friendly administrator immediately!
provider.chw.id=Accompagnateur ID
provider.chw.names=Accompagnateur Full Name
require.login=You must log in to continue.
require.unauthorized=You are not authorized to view this page.
require.ip_addr=Invalid session object.
typeMismatch.java.util.Date={0} is an invalid Date
typeMismatch.java.lang.Integer={0} is not a valid integer value
typeMismatch.java.lang.Long={0} is not a valid value. Do not use decimals or characters.
welcome=Welcome to <span class="webappName">{0}</span>. Please login to proceed.
welcomeUser=Hello, {0}. Welcome to <span class\="webappName">{1}</span>.
#
#### Openmrs POJO messages ####
#
Alert.mark=Mark this Alert as Read
Alert.markAsRead=Mark as Read
Alert.markAllAsRead=Mark all as Read
Alert.markAllAlertsAsRead=Mark all alerts as Read
Alert.mark.satisfiedByAny=Marking an alert as Read will hide it for all other users too
Alert.unreadAlert=You have <span id="unreadAlertSize">1</span> unread alert
Alert.unreadAlerts=You have <span id="unreadAlertSize">{0}</span> unread alerts
Alert.assignedTo=Assigned To
Alert.assignedTo.recipients={0} recipients
Alert.assignedTo.recipient=1 recipient
Alert.recipients=Recipients
Alert.roles=Roles
Alert.text=Alert Text
Alert.text.required=Alert Text is required
Alert.dateToExpire=Date To Expire
Alert.satisfiedByAny=Satisfied By Any
Alert.satisfiedByAny.description=Alert will be marked read for all recipients once one recipient does marks it.
Alert.manage.titlebar=OpenMRS - Alert Management
Alert.manage.title=Alert Management
Alert.manage.header=OpenMRS - Alert Management
Alert.add=Add Alert
Alert.list.title=Alerts
Alert.expire=Expire Selected Alerts
Alert.includeExpired=Include Expired
Alert.save=Save Alert
Alert.recipientRequired=At least one recipient is required
Alert.manage=Manage Alerts
Alert.expired={0} alert(s) have been successfully expired
Alert.addRole=Add Role
Alert.select=You must select at least one alert.
Concept=Concept
Concept.header=Concepts
Concept.manage=View Concept Dictionary
Concept.title=Concept Form
Concept.conceptId.help=An internal unique id for this concept
Concept.conceptClass=Class
Concept.shortName=Short Name
Concept.datatype=Datatype
Concept.icd10=ICD10
Concept.loinc=LOINC
Concept.suggestions=Suggestions
Concept.synonym.add=Add Synonym
Concept.synonyms=Synonyms
Concept.answers=Answers
Concept.version=Version
Concept.version.help=An optional way for you to keep track of which concepts came before others when changing/updating concepts
Concept.conceptSets=Set Members
Concept.conceptSets.help=Concepts that are considered to be packaged under the current concept
Concept.conceptSets.empty=(Empty Set)
Concept.save=Save Concept
Concept.saveAndContinue=Save and Continue
Concept.cancel=Cancel
Concept.delete=Delete Concept
Concept.find=Find Concept(s)
Concept.retiredMessage=This concept is retired
Concept.name=Concept Name
Concept.name.atLeastOneRequired=At least one non-empty name is required
Concept.shortName.help=The text shown in report headers and other places where space is limited
Concept.datatype.help=If data is stored within this concept, this describes what it will look like
Concept.datatype.coded.help=Answer Concept(s) in case this concept is a question
Concept.datatype.numeric.help=Numeric value ranges
Concept.datatype.complex.help=Handlers for complex concept reponses e.g an x-ray image handler
Concept.datatype.readonly=Observation data is stored using this concept. The datatype of a concept cannot be changed now.
Concept.datatype.invalid=Invalid datatype of the concept to convert, should be Boolean
Concept.synonyms.help=Any label or name that refers to a primary concept.
Concept.synonyms.voidReasonRequired=A reason is required for deleted synonyms
Concept.synonyms.textRequired=An empty synonym is not allowed
Concept.description.help=Longer body of text used to fully describe this concept and how it is used.
Concept.conceptClass.help=The classification of the medical concept
Concept.saved=Concept saved successfully
Concept.cannot.save=Cannot save concept
Concept.concepts.locked=Concept editing is locked. No editing is allowed.
Concept.deleted=Concept deleted successfully
Concept.cannot.delete=Cannot delete concept. Database constraints will be violated because this concept is in use by other objects.
Concept.resources=Resources
Concept.forms=Forms using this concept
Concept.add=Add new Concept
Concept.id=Concept Id
Concept.set=Is Set
Concept.checkClassAndDatatype=Please ensure that this concept's class and datatype are correct. (class\=Question should typically not be datatype\=N/A.)
Concept.search=Find a concept by typing in its name or Id:
Concept.search.placeholder=Enter concept name or id
Concept.view.title=Viewing Concept: {0}
Concept.view.titlebar=OpenMRS - Viewing Concept {0}
Concept.edit.titlebar=OpenMRS - Editing Concept {0}
Concept.edit.title=Editing Concept: {0}
Concept.view.header=Viewing Concept {0}
Concept.edit.header=Editing Concept {0}
Concept.name.duplicate=The Fully Specified or Preferred name is a duplicate
Concept.name.tag.duplicate=Concept name already has this specified concept name tag
Concept.boolean.add.answer=Add Another Answer
Concept.boolean.warning.irreversible=This is irreversible
Concept.boolean.change.tooltip=Allows you to add other possible answers to a boolean concept
Concept.boolean.confirm.add.answer=Are you sure you wish to add another answer?
Concept.name.localePreferred=Preferred
Concept.name.localePreferred.help=Whether this name is the preferred name in its language and will be returned by default e.g on reports
Concept.name.locale.null=The locale for a concept name cannot be null
Concept.name.help=The preferred name in the locale if any, otherwise the fully specified name
Concept.id.help=System generated unique Id
Concept.uiid.help=System generated unique ID
Concept.locale.help=The locale in which the concept name belongs
Concept.retired.help=Whether the concept is no longer in use
Concept.isSet.help=Whether this concept is or not a set
Concept.error.multiple.non.retired=Multiple non-retired concepts found for mapping {0} from source {1}
Concept.error.multipleLocalePreferredNames=Only one preferred name is allowed for each locale
Concept.error.multipleFullySpecifiedNames=Only one fully specifies name is allowed for each locale
Concept.error.preferredName.is.indexTerm=An index term cannot be the preferred name
Concept.error.multipleShortNames=Only one short name is allowed for each locale
Concept.error.no.FullySpecifiedName=No fully specified name for this concept
Concept.error.no.FullySpecifiedNameNotUnique=Fully specified name must be unique. There is already a concept with this name
Concept.error.invalid.locale=You should only use locales listed among allowed locales
Concept.no.fullySpecifiedName.found= - <i>No fully specified name found for this concept</>
Concept.not.found=A Concept with name or id '{0}' was not found
Concept.indexTerms=Search Terms
Concept.indexTerm.add=Add Search Term
Concept.indexTerms.help=An index term or phrase that might be used to search for this concept but that is not valid for display purposes or storing in the record (e.g., common misspellings or pragmatic mapping term)
Concept.indexTerms.voidReasonRequired=A reason is required for deleted search terms
Concept.indexTerms.textRequired=An empty search term is not allowed
Concept.error.preferredName.is.shortName=A short name cannot be the preferred name
Concept.error.preferredName.is.voided=A deleted concept name can't be the preferred name
Concept.error.preferredName.null=Preferred name cannot be null, voided or an index term
Concept.error.fullySpecifiedName.is.voided=A deleted concept name can't be the Fully Specified name
Concept.error.fullySpecifiedName.notUnique=Fully specified name must be unique. There is already a concept with this name
Concept.error.fullySpecifiedName.null=Fully Specified name cannot be null or voided
Concept.error.shortName.null=Short name cannot be null
Concept.voided.help=Whether the concept name is no longer in use
Concept.fullySpecified.help=The name to be used on forms, reports etc. in case no preferred name is set for the locale
Concept.fullySpecifiedName=Fully Specified Name
Concept.localesWithErrors=Errors found in the following locale(s):
Concept.name.empty=Names should not be empty or white space character(s) only
Concept.fullySpecified.textRequired=An empty fully specified name is not allowed
Concept.delete.hasNameInUse=Cannot delete a concept that has a name being used by some observation(s)
Concept.name.voidReason.nameChanged=Deleted due to change of name
Concept.search.error=Error while attempting to find concepts
Concept.concept.retired.successFully=Concept Retired Successfully
Concept.concept.unRetired.successFully=Concept Unretired Successfully
Concept.concepts.locked.unRetire=Concept is locked.Unretiring is not allowed.
Concept.drugFormulations=Drug Formulations for this Concept
Concept.manageDrugFormulary=Manage Drug Formulary
Concept.contains.itself.as.answer=Concept cannot have itself as an answer
ConceptReferenceTerm.add.null=Cannot add a null concept reference term map
Concept.datatype.empty=Concept datatype cannot be empty
Concept.conceptClass.empty=Concept class cannot be empty
ConceptStopWord.manage=Manage Concept Stop Word
ConceptStopWord.title=Concept Stop Word
ConceptStopWord.add=Add New Concept Stop Word
ConceptStopWord.list.title=Current Concept Stop Words
ConceptStopWord.delete=Delete Selected Concept Stop Word(s)
ConceptStopWord.save=Save Concept Stop Word
ConceptStopWord.saved=Concept Stop Word saved
ConceptStopWord.duplicated=Concept Stop Word already exists
ConceptStopWord.notSaved=Concept Stop Word was not saved
ConceptStopWord.error.value.empty=Concept Stop Word cannot be empty
ConceptStopWord.error.notfound=Concept Stop Word not found or already deleted
ConceptStopWord.error.notSelect=No Concept Stop Word(s) selected
Concept.stats.titlebar=OpenMRS - Statistics for Concept {0}
Concept.stats.title=Statistics for Concept {0}
Concept.stats.header=Statistics for Concept {0}
Concept.creatingNewConcept.title=OpenMRS - Creating New Concept
Concept.noConceptSelected=No Concepts found - Invalid Concept Id
Concept.creatingNewConcept.titlebar=OpenMRS - Creating New Concept
Concept.creatingNewConcept=Creating New Concept
Concept.confirmDelete=Are you sure you want to delete this ENTIRE CONCEPT?
Concept.mapped.illegal=Illegal Mapped Concept
Concept.mappings=Mappings
Concept.mappings.help=Defines mappings from this concept to any number of other concept sources (ICD9, SNOMED, etc)
Concept.mapping.add=Add Mapping
Concept.mappings.sourceCodeRequired=Source code is required
Concept.map.termRequired=Reference Term is required
Concept.map.typeRequired=Concept Map Type is required
Concept.mappings.type=Map Type
Concept.mappings.relationship=Relationship
Concept.mapping.sourceUnavailable=No concept source is available to map
Concept.mapping.sourceAdd=Add Source
Concept.wikipedia=Wikipedia
Concept.newLocale=Specify a new locale to add for this concept.
Concept.newLocale.label=Locale specification (example en_GB)
Concept.usage=Concept Usage
Concept.stats=Stats
Concept.stats.numberObsAnsweredByConcept=Obs Answered by Concept
Concept.stats.numberObs=Number of Obs
Concept.stats.minValue=Min
Concept.stats.maxValue=Max
Concept.stats.meanValue=Mean
Concept.stats.medianValue=Median
Concept.stats.histogram=Histogram
Concept.stats.timePlot=Time Plot
Concept.stats.histogramDomainAxisTitle=Value
Concept.stats.histogramRangeAxisTitle=Occurances
Concept.stats.lineChartDomainAxisLabel=Time
Concept.stats.lineChartRangeAxisLabel=Value
Concept.stats.histogramOutliers=Histogram (w/o Outliers)
Concept.stats.histogram.showOutliers=Show Outliers
Concept.stats.histogram.hideOutliers=Hide Outliers
Concept.stats.timeSeriesDomainAxisLabel=Date
Concept.stats.timeSeriesRangeAxisLabel=Value
Concept.stats.timeSeries=Time Series
Concept.stats.notDisplayable=Stats are not available for this concept. Only numeric, coded, and boolean statistics are available currently.
Concept.stats.codedPieChart=Coded Answer Pie Chart
Concept.stats.booleanPieChart=Boolean Answer Pie Chart
ConceptClass.manage=Manage Concept Classes
ConceptClass.manage.title=Concept Class Management
ConceptClass.title=Concept Class Form
ConceptClass.save=Save Concept Class
ConceptClass.add=Add Concept Class
ConceptClass.list.title=Current Concept Classes
ConceptClass.delete=Delete Selected Concept Classes
ConceptClass.saved=Concept Class saved
ConceptClass.deleted=Concept Class deleted
ConceptClass.cannot.delete=Cannot delete Concept Class. Database constraints will be violated.
ConceptClass.select=You must select at least one concept class.
ConceptDatatype.manage=Manage Concept Datatypes
ConceptDatatype.manage.title=Concept Datatype Management
ConceptDatatype.title=Concept Datatype Form
ConceptDatatype.save=Save Concept Datatype
ConceptDatatype.add=Add Concept Datatype
ConceptDatatype.list.title=Current Concept Datatypes
ConceptDatatype.delete=Delete Selected Concept Datatypes
ConceptDatatype.saved=Concept Datatype saved
ConceptDatatype.deleted=Concept Datatype deleted
ConceptDatatype.hl7Abbreviation=HL7 Abbreviation
ConceptDrug.manage=Manage Concept Drugs
ConceptDrug.manage.title=Concept Drug Management
ConceptDrug.title=Concept Drug Form
ConceptDrug.save=Save Concept Drug
ConceptDrug.add=Add Concept Drug
ConceptDrug.saved=Concept Drug saved
ConceptDrug.purgeDrug=Permanently Delete Concept Drug
ConceptDrug.confirmDelete=Are you sure you want to delete this Concept Drug? It will be permanently removed from the system.
ConceptDrug.purgedSuccessfully=Concept Drug deleted successfully
ConceptDrug.find=Find Concept Drugs
ConceptDrug.search=Search on concept drug name
ConceptDrug.concept=Concept
ConceptDrug.combination=Combination
ConceptDrug.dosageForm=Dosage Form
ConceptDrug.doseStrength=Dose Strength
ConceptDrug.minimumDailyDose=Minimum Dose
ConceptDrug.maximumDailyDose=Maximum Dose
ConceptDrug.route=Route
ConceptDrug.units=Units
ConceptDrug.strength=Strength
ConceptDrug.list.empty=Currently, there are no drugs defined
ConceptDrug.retiredMessage=This drug is retired by
ConceptDrug.retireDrug=Retire this Drug
ConceptDrug.unretireDrug=Unretire this Drug
ConceptDrug.retire.reason.empty=Retire reason cannot be empty
ConceptDrug.retiredSuccessfully=Drug retired successfully
ConceptDrug.retired.getting=Getting retired drugs is no longer an options. Use the getAllDrugs() method for that
ConceptDrug.unretiredSuccessfully=Drug unretired successfully
ConceptDrug.error.conceptRequired=An empty concept is not allowed
ConceptDrug.enterName=Enter drug name
ConceptDrug.noDrugs=No Drugs
ConceptDrug.ingredients=Drug Ingredients
ConceptProposal.manage=Manage Proposed Concepts
ConceptProposal.manage.title=Proposed Concept Management
ConceptProposal.title=Proposed Concept Form
ConceptProposal.list.title=Current Proposed Concept
ConceptProposal.saved=Proposed concept saved
ConceptProposal.encounter=Encounter
ConceptProposal.originalText=Original Text
ConceptProposal.finalText=Final Text
ConceptProposal.comments=Comments
ConceptProposal.commentsDescription=These comments will be sent to each proposer
ConceptProposal.obs=Observation
ConceptProposal.obsConcept=Obs Concept
ConceptProposal.mappedConcept=Mapped Concept
ConceptProposal.mappedConcept.error=A concept must be chosen if saving as Synonym or Creating Observation
ConceptProposal.proposedBy=Proposed By
ConceptProposal.includeCompleted=Include Completed
ConceptProposal.propose.new=Possible new concept?
ConceptProposal.proposeWarning=This text will be saved temporarily until an administrator can review it and add it to the list.
ConceptProposal.proposeDuplicate=These concepts were proposed and accepted with the same text.
ConceptProposal.proposeInfo=Please provide the text that was written on the form. All comments that you additionally provide will be appreciated.
ConceptProposal.propose=Submit Concept
ConceptProposal.saveAsConcept=Save as Concept
ConceptProposal.saveAsSynonym=Save as Synonym
ConceptProposal.update=Update Proposed Concept
ConceptProposal.state=State
ConceptProposal.state.error=Invalid combination for chosen State and the Save Button that was clicked
ConceptProposal.state.CONCEPT=Concept
ConceptProposal.state.UNMAPPED=Unmapped
ConceptProposal.state.REJECT=Reject
ConceptProposal.state.SYNONYM=Synonym
ConceptProposal.possibleConcepts=Possible Concepts
ConceptProposal.occurences=Occurences
ConceptProposal.sortOn=Sort On
ConceptProposal.sortOrder=Sort Order
ConceptProposal.sortOrder.asc=Asc
ConceptProposal.sortOrder.desc=Desc
ConceptProposal.proposeNewConcept=Propose New Concept
ConceptProposal.proposed=Concept has been proposed successfully
ConceptProposal.ignore=Ignore Proposal
ConceptProposal.alert.mappedTo=Proposed concept "{0}" has been mapped to "{1}". {2}
ConceptProposal.alert.ignored=Proposed concept "{0}" has been analyzed. {1}
ConceptProposal.update.note=Note: This update will effect {0} other concept proposal
ConceptProposal.update.note.plural=s
ConceptProposal.saveAsMapped=Save as mapped
ConceptProposal.actionToTake=Action to take
ConceptProposal.save.fail=Fail to save concept proposal, ensure you're not adding a duplicate synonym to the mapped concept
ConceptProposal.alert.synonymAdded=The synonym "{0}" has been added to concept "{1}". {2}
ConceptNumeric.name=Numeric
ConceptNumeric.absoluteHigh=Absolute High
ConceptNumeric.absoluteLow=Absolute Low
ConceptNumeric.criticalHigh=Critical High
ConceptNumeric.criticalLow=Critical Low
ConceptNumeric.normalHigh=Normal High
ConceptNumeric.normalLow=Normal Low
ConceptNumeric.invalid.msg=Invalid value for numeric
ConceptNumeric.units=Units
ConceptNumeric.allowDecimal=Allow Decimal?
ConceptNumeric.displayPrecision=Display Precision
ConceptNumeric.inclusive=range values are inclusive
ConceptSource.manage=Manage Concept Sources
ConceptSource.title=Concept Source Form
ConceptSource.sourceIdSetup=Source Id Setup
ConceptSource.sourceId=Source Id
ConceptSource.name.help=Somewhat short descriptive name for this source to display in your installation
ConceptSource.hl7Code=HL7 Code
ConceptSource.hl7Code.help=The 5-20 character code defined for this source by governing bodies. Alternatively, this could be the "Implementation Id" code used by another OpenMRS installation to define its concepts and forms.
ConceptSource.description.help=A long text description of your choosing to describe this source to other users.
ConceptSource.saved=Concept Source saved
ConceptSource.retired=Concept Source retired
ConceptSource.restored=Concept Source restored
ConceptSource.purged=Concept Source deleted forever
ConceptSource.save=Save Concept Source
ConceptSource.isImplementationId=This concept source is defined as the implementation id for this server
ConceptSource.add=Add New Concept Source
ConceptSource.list.title=Current Concept Sources
ConceptSource.cannotBeEdited=Note: A ConceptSource cannot be edited once it is created. If you must, delete this concept source and create a new one.
ConceptSource.hl7Code.required=Hl7Code is required for a concept source
ConceptSource.is.required=ConceptSource is required
ImplementationId.implementationId=Implementation Id
ImplementationId.name=Implementation Name
ImplementationId.name.help=A descriptive name for this implementation (e.g. AMRS installation in Eldoret, Kenya)
ImplementationId.invalidIdorPassphrase=Your implementation id is in use by another installation. Please choose another source key or enter the valid passphrase for this source id. Note\: The server stored description of the given passphrase is\: {0}
ImplementationId.validatedId=Your implementation id has been successfully validated.
ImplementationId.set=Set Implementation Id
ImplementationId.setup=Implementation Id Setup
ImplementationId.saved=Implementation Id Saved
ImplementationId.save=Save and Verify Implementation Id
ImplementationId.dateValidated=Date Validated
ImplementationId.sourceId.help=This is the unique id for this implementation. Used as the HL7_CODE. Must be limited to 20 characters and numbers. The characters "^" and "|" are not allowed.
ImplementationId.description.help=Text describing this implementation. (e.g. Source for the AMPATH program in Kenya. Created by Paul Biondich)
ImplementationId.passphrase=Pass Phrase
ImplementationId.passphrase.help=This text is a long text string that is used to validate who uses your implementation id. Multiple installations of openmrs can use the same implmentation id, but they must all know the passphrase. (Note that if an implementation id is shared, it is assumed that those installations are the same implementation).
ImplementationId.connectionError=Error while connecting to the implementation id server to verify implementation id {0}
ImplementationId.name.empty=The implementation name is mandatory
ImplementationId.implementationId.empty=The implementation Id cannot be empty
ImplementationId.passphrase.empty=The Pass Phrase cannot be empty
ImplementationId.description.empty=The Description cannot be empty
ImplementationId.implementationId.invalidCharacter=The characters "^" and "|" are not allowed
ImplementationId.null=ImplementationId cannot be null
ConceptWord.title=Update Concept Index Storage
ConceptWord.instructions=Input a concept id for a specific concept, 342-453 for a specific range, or leave blank to update the entire concept index database (may demand considerable cpu time).
ConceptWord.manage=Update Concept Index
ConceptWord.updated=Concept index updated successfully.
ConceptWord.updateInProgress=Concept index update is in progress and could take 5-10 mins. The 'Update Concept Index' scheduled task will be marked as 'stopped' when this has finished.
ConceptWord.rangeError=You specific an invalid range. Valid input is either n or n-m
ConceptWord.conceptId=Concept Id:
ConceptWord.conceptId.optional=(Optional)
ConceptComplex.name=Complex
ConceptComplex.handler=Handler
ConceptComplex.handler.manage=Manage Complex Handlers
ConceptComplex.handler.manage.title=Manage Complex Handlers
ConceptComplex.handler.list.title=Concept Complex Handlers
ConceptComplex.handler.title=Concept Complex Handler
ConceptComplex.handler.class=Handler Class
ConceptComplex.handler.save=Save Complex Handler
ConceptComplex.handler.add=Add Complex Handler
ConceptComplex.handler.delete=Delete Complex Handler
Concept.mappings.termRequired=Mapped Term is required
Concept.mappings.selectSource=Please select a concept source
ConceptMapType=Concept Map Type
ConceptMapType.manage=Manage Concept Map Types
ConceptMapType.title=Concept Map Type Management
ConceptMapType.form.title=Concept Map Type Form
ConceptMapType.saved=Concept map type saved
ConceptMapType.add=Add New Concept Map Type
ConceptMapType.hidden=Is Hidden
ConceptMapType.hidden.help=Setting this to true will make this concept map type unvailable for usage however, it won't be retired
ConceptMapType.retired=Concept map type has been retired
ConceptMapType.unretired=Concept map type has been restored
ConceptMapType.retiredMessage=Concept map type is retired
ConceptMapType.list.title=Concept Map Types
ConceptMapType.retire.error=Error while attempting to retire concept map type
ConceptMapType.unretire.error=Error while attempting to restore concept map type
ConceptMapType.error.nameRequired=Name is required
ConceptMapType.save.error=Error while attempting to save concept map type
ConceptMapType.duplicate.name=Duplicate concept map type name
ConceptMapType.purged=Concept map type deleted forever
ConceptMapType.purge.error=Error while attempting to delete concept map type permanently
ConceptMapType.details=Concept Map Type Details
ConceptMapType.hidden.message=Greyed out map types are hidden
ConceptMapType.inUse=Concept map type is in use
ConceptReferenceTerm=Reference Term
ConceptReferenceTerm.manage=Manage Reference Terms
ConceptAttributeType.manage.title=Manage Concept Attribute Types
ConceptAttributeType.add.title=Add Concept Attribute Type
ConceptAttributeType.list.title=Current Concept Attribute Types
ConceptAttributeType.edit.title=Edit Concept Attribute Type
ConceptAttributeType.retire.title=Retire Concept Attribute Type
ConceptAttributeType.unretire.title=Unretire Concept Attribute Type
ConceptAttributeType.save.title=Save Concept Attribute Type
ConceptAttributeType.purge.title=Purge Concept Attribute Type
ConceptAttributeType.saved=Saved Concept Attribute Type
ConceptAttributeType.retired=Retired Concept Attribute Type
ConceptAttributeType.unretired=Unretired Concept Attribute Type
ConceptAttributeType.purgedSuccessfully=Deleted Concept Attribute Type Permanently
ConceptAttributeType.error.nameAlreadyInUse=Specified Field Type name already exists, please specify another
ConceptAttributeType.datatype.readonly=Concept attribute is already stored for this type. The datatype cannot be changed now.
ConceptAttributeType.confirm.purge=Are you sure you want to purge this object? It will be permanently removed from the system.
ConceptReferenceTerm.title=Reference Term Management
ConceptReferenceTerm.form.title=Reference Term Form
ConceptReferenceTerm.saved=Reference Term saved
ConceptReferenceTerm.code=Code
ConceptReferenceTerm.name=Term Name
ConceptReferenceTerm.relatedTerms=Related Terms
ConceptReferenceTerm.source=Source
ConceptReferenceTerm.add=Add New Reference Term
ConceptReferenceTerm.retired=Reference term has been retired
ConceptReferenceTerm.unretired=Reference term has been restored
ConceptReferenceTerm.retire.error=Error while attempting to retire reference term
ConceptReferenceTerm.unretire.error=Error while attempting to restore reference term
ConceptReferenceTerm.retiredMessage=Reference term is retired
ConceptReferenceTerm.error.nameRequired=Name is required
ConceptReferenceTerm.error.codeRequired=Code is required
ConceptReferenceTerm.error.sourceRequired=Concept Source is required
ConceptReferenceTerm.save.error=Error while attempting to save reference term
ConceptReferenceTerm.duplicate.name=Duplicate reference term name in its concept source
ConceptReferenceTerm.duplicate.code=Duplicate reference term code in its concept source
ConceptReferenceTerm.find=Find Reference Term(s)
ConceptReferenceTerm.search=Find Reference Terms By Name Or Code:
ConceptReferenceTerm.search.error=Error while attempting to find reference term(s)
ConceptReferenceTerm.error.mapTypeRequired=Map type is required
ConceptReferenceTerm.source.notInDatabase=Only existing concept reference sources can be used
ConceptReferenceTerm.mapType.notInDatabase=Only existing concept map types can be used
ConceptReferenceTerm.error.termBRequired=Mapped term is required
ConceptReferenceTerm.term.notInDatabase=Only existing reference terms can be mapped
ConceptReferenceTerm.map.sameTerm=Cannot map a reference term to itself
ConceptReferenceTerm.purged=Reference term deleted forever
ConceptReferenceTerm.purge.error=Error while attempting to delete reference term permanently
ConceptReferenceTerm.details=Reference Term Details
ConceptReferenceTerm.termsWithMappingsToThis=Terms with Mappings To This Term
ConceptReferenceTerm.searchAllSources=Search all sources
ConceptReferenceTerm.searchBox.placeholder=Enter Code Or Name
ConceptReferenceTerm.createNewTerm=Create New Term
ConceptReferenceTerm.createNew.help=Create a new reference term without leaving this page
ConceptReferenceTerm.newTermForm=New Reference Term Form
ConceptReferenceTerm.term.alreadyMapped=Cannot map a reference term multiple times to the same concept
ConceptRefereceTerm.inUse=Reference term is in use
ConceptReferenceTerm.termToTerm.alreadyMapped=Cannot map a reference term multiple times to the same reference term
ConceptReferenceTerm.foundMultipleTermsWithCodeInSource=Found multiple reference terms with the code: {0} in concept source {1}
ConceptReferenceTerm.foundMultipleTermsWithNameInSource=Found multiple reference terms with the name: {0} in concept source {1}
Drug.drugReferenceMap.mappedDrug=Drug is required on drug reference map
Drug.drugReferenceMap.conceptReferenceTerm=Concept reference term is required on drug reference map
Drug.drugReferenceMap.conceptMapType=Concept map type is required on drug reference map
Drug.drugReferenceMap.termAlreadyMapped=Cannot map a drug multiple times to the same reference term
DrugOrder.dose=Dose
DrugOrder.units=Units
DrugOrder.frequency=Frequency
DrugOrder.prn=PRN
DrugOrder.asNeeded=As Needed
DrugOrder.complex=Complex
DrugOrder.quantity=Quantity
DrugOrder.quantityUnits=Unit of Quantity
DrugOrder.drug=Drug
DrugOrder.brandName=Brand name
DrugOrder.regimens.current=Current and Future Regimens
DrugOrder.regimens.add=Add Regimen
DrugOrder.regimens.addStandard=Add a standard drug regimen
DrugOrder.regimens.addCustom=Add your own drug regimen
DrugOrder.regimens.completed=Completed Regimens
DrugOrder.regimens.addOrChange=Add/Change Regimen
DrugOrder.dateStopped=Date Stopped
DrugOrder.discontinuedReason=Reason for stopping
DrugOrder.autoExpireDate=Auto Expire Date
DrugOrder.actualStopDate=Actual Stop Date
DrugOrder.scheduledStopDate=Scheduled Stop Date
DrugOrder.list.showAll=Show All Drug Orders
DrugOrder.frequency.day=day
DrugOrder.frequency.days=days
DrugOrder.frequency.week=week
DrugOrder.frequency.everyDay=Every day
DrugOrder.list.noOrders=No orders
DrugOrder.header.otherRegimens=OTHER REGIMENS
DrugOrder.regimen.addAndReplace=Add & Replace
DrugOrder.regimen.action.choose=Choose an action...
DrugOrder.regimen.action.discontinue=Add & Stop current {0}
DrugOrder.regimen.action.void=Add & Delete existing {0}
DrugOrder.regimen.action.addToCurrent=Add to current regimen
DrugOrder.discontinue=Stop
DrugOrder.void=Delete
DrugOrder.discontinueGroup=Stop this category
DrugOrder.voidGroup=Delete this category
DrugOrder.discontinue.reason.toxicity=Toxicity
DrugOrder.discontinue.reason.failure=Failure
DrugOrder.discontinue.reason.pregnancy=Pregnancy
DrugOrder.discontinue.reason.interactionTB=Interaction with TB treatment
DrugOrder.discontinue.reason.outOfStock=Out of stock
DrugOrder.discontinue.reason.patientRefusal=Refusal by patient
DrugOrder.discontinue.reason.other=Other
DrugOrder.void.reason.dateError=Date error
DrugOrder.void.reason.error=Error
DrugOrder.void.reason.other=Other
DrugOrder.regimen.action.discontinue.allCurrent=Add & Stop all current regimens
DrugOrder.regimen.action.void.allCurrent=Add & Delete all current regimens
DrugOrder.drugSet.discontinue.error.noDate=You must supply a date on which this regimen or set was discontinued.
DrugOrder.add.error.missingDrug=You must choose a valid drug
DrugOrder.add.error.missingDose=You must supply a valid dose
DrugOrder.add.error.missingUnits=You must supply valid units
DrugOrder.add.error.missingFrequency=You must supply a valid daily and/or weekly frequency
DrugOrder.add.error.missingStartDate=You must supply a valid start date
DrugOrder.add.error.missingFrequency.interactions=Set the {0} global property
DrugOrder.error.unitsNotSetWhenDoseOrQuantitySpecified=Units should be set when either dose or quantity is specified
DrugOrder.error.notAmongAllowedConcepts=The units concept must be among allowed concepts
DrugOrder.error.durationUnitsRequiredWithDuration=Durations units is required when duration is specified
DrugOrder.error.quantityUnitsRequiredWithQuantity=Quantity units is required when quantity is specified
DrugOrder.error.doseUnitsRequiredWithDose=Dose Units is required when dose is specified
DrugOrder.error.numRefillsIsNullForOutPatient=Number of refills is required for out patient drug orders
DrugOrder.error.quantityIsNullForOutPatient=Quantity is required for out patient drug orders
DrugOrder.error.dosingTypeIsMismatched=Dosing type of drug order is mismatched. Expected: {0} but received: {1}
DrugOrder.error.doseIsNullForDosingTypeSimple=Dose is required for simple dosing type