-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.properties
2201 lines (2085 loc) · 110 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 - घर
login.title=OpenMRS - लॉग इन
forgotPassword.title=OpenMRS - पहचान का शब्द भूल गये
patientDashboard.title=OpenMRS - रोगी का डैशबोर्ड
personDashboard.title=OpenMRS - व्यक्ति का डैशबोर्ड
findPatient.title=OpenMRS - रोगी खोजें
optionsForm.title=OpenMRS - उपयोगकर्ता के विकल्प
dictionary.titlebar=OpenMRS - शब्दकोश
dictionary.title= सिद्धान्त के शब्दकोश का रखरखाव
admin.titlebar=OpenMRS - प्रशासन
Navigation.home = निवास
Navigation.findPatient = रोगी को खोजे
Navigation.findCreatePatient = रोगी खोजे/बनाये
Navigation.dictionary = शब्दकोश
Navigation.administration = प्रशासन
Navigation.options = मेरा प्रालेख
Navigation.calendar = तिथिपत्र
fix.error=<div class="error">सभी त्रुटियों को ठीक करें और फिर कोशिश करें.</div>
fix.error.plain=सभी त्रुटियों को ठीक करें और फिर कोशिश करें..
error.general= फ़ॉर्म जमा करते वक्त त्रुटि
error.null= खाली या रिक्त नहीं हो सकता
error.inuse= यह मूल्य अन्य ऑब्जेक्ट द्वारा उपयोग में है
error.object.inuse.cannot.purge= यह ऑब्जेक्ट संदर्भित किया जा रहा है और निकला नहीं जा सकता.
error.name=अमान्य नाम
error.description=अमान्य विवरण
error.checkdigit= के लिए अमान्य चेकअंक
error.checkdigits= {0} के लिए अमान्य चेकअंक
error.checkdigits.verbose=यह चेकअंक {0} अमान्य है. कृपया रोगी की दुबारा जाँच करे .
error.checkdigits.unallowed=The identifier {0} is not allowed for validator {1}
error.concept=अमान्य सिद्धान्त
error.character.invalid=Invalid character `{0}` found in non-checkdigit identifier {1}
error.date=अमान्य तिथि
error.number=यह संख्या मान्य नहीं है
error.numberOutsideRange = संख्या स्वीकार्य सीमा के बाहर है.
error.patientSearchNoChars= आप वर्ण आवश्य डाले
error.preferredIdentifier= कृपया पसंदीदा पहचान को चुने
error.reportObject.type.required= अमान्य प्रकार
error.reportObject.subType.required= अमान्य उपप्रकार
error.date.future= भविष्य की कोई दिनांक की कोई दिनांक को ना चुने
error.date.nonsensical= अतर्कसंगत दिनांक, कृपया जाचे.
error.deathdate.before.birthdate= मौत की तारीख जन्म दिनांक के बाद होना चाहिए
error.programWorkflow= अमान्य कार्यक्रम कार्यप्रवाह
error.programWorkflowState= अमान्य कार्यक्रम कार्यप्रवाह स्थिति
error.identifier.formatInvalid=The identifier {0} is invalid, and needs to be of the format: {1}
error.beforeDateCreated= निर्माण तिथि से बाद में नहीं कर सकते
error.required={0} जरूरी है
error.trailingSpaces= शुरुआत या अंत में अतिरिक्त रिक्त स्थान की अनुमति नहीं हैं
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=एक जावास्क्रिप्ट त्रुटि हुई है:
error.dwr.hide= त्रुटि छुपाएँ
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 permitted for this field.
errors.patientId.cannotBeNull=Patient Id cannot be null
error.foundValidationErrors=Found Validation Errors
general.select=चयन
general.name=नाम
general.description=विवरण
general.creator=निर्माता
general.createdBy= द्वारा बनाया गया
general.dateCreated=बनाई गयी तिथि
general.voidInfo=शून्य सूचना
general.voided=शून्यता
general.voidedBy=शून्यता द्वारा
general.voidReason=शून्य कारण
general.voidReason.empty=Void reason cannot be empty
general.voidReasonQuestion= हटाये जाने का कारण
general.dateVoided= मिटाने के तारीख
general.changedBy= बदलने वाला
general.dateChanged=बदलने की तारीख
general.delete=हटाना
general.deleteLink=[x]
general.deleted=हटाए गए
general.cannot.delete=हटाया नहीं जा सकता
general.purge=हमेशा के लिए हटाएँ
general.purged=purged
general.changed= बदलना
general.cannot.change=बदला नहीं जा सकता
general.retire=निवृत्त होना
general.retired=सेवानिवृत्त
general.retiredReason=सेवानिवृत्त होने का कारण
general.retiredBy=द्वारा सेवानिवृत्त
general.retiredReason.empty=सेवानिवृत्त होने का कारण खाली नहीं हो सकता
general.cannot.retire=सेवानिवृत्त नहीं किया जा सकता है
general.cannot.unretire=इंनको दुबारा से सेवा मे नहीं लिया जा सकता
general.unretire=सेवा मे वापस ले
general.add=जोड़े
general.addAnother=एक अन्य जोड़ें
general.new=नया
general.edit=संपादित करें
general.save=सुरक्षित करना
general.saved=सुरक्षित हो गया
general.saveAs=इस रूप में सहेजें
general.saving=सुरक्षित हो रहा है {0}
general.remove=हटाना
general.view=देखें
general.move_up=ऊपर जाए
general.move_down=नीचे जाए
general.search=खोजे
general.searchButton=खोजे
general.change=परिवर्तन
general.id=Id
general.continue=जारी रखें
general.previous=पीछे जाये
general.next=अगला
general.true=सही
general.false=गलत
general.search.hint=संकेत: कृप्या पहले कुछ वर्ण लिखे
general.cancel=रद्द करें
general.canceled=कार्रवाई रद्द
general.refresh=ताज़ा करे
general.preferred=पसंदीदा
general.submit=प्रस्तुत करे
general.answer=जवाब
general.download=डाउनलोड
general.start=प्रारंभ
general.end=अंत
general.format=प्रारूप
general.yes=हां
general.no=नहीं
general.choose=चुनें
general.clear=साफ
general.type=प्रकार
general.subType=उपप्रकार
general.toggle.description=टॉगल विवरण
general.toggle.voided=टॉगल शून्य करे
general.toggle.verbose=टॉगल वाचाल करे
general.toggle.retired=टॉगल सेवानिवृत्त करे
general.or=या
general.and=और
general.andOr=और/या
general.value=मूल्य
general.none=कोई नहीं
general.instructions=निर्देश
general.discontinued=बंद
general.discontinuedBy=ने बंद किया
general.discontinuedReason=बंद करने का कारण
general.dateStart=प्रारंभ करने की दिनांक
general.dateAutoExpire=अपने आप समाप्त करने के तारीख
general.dateDiscontinued= समाप्त करने के तारीख
general.locale=स्थान
general.nMore={0} अधिक
general.nLess={0} कम
general.optional=वैकल्पिक
general.onDate=प्रारंभ
general.hide=छुपाये
general.drop=हटाये
general.close=बंद करे
general.reason=कारण
general.void=खाली
general.unvoid=खाली स्थान को भरे
general.loading=कृप्या थोडा इंतजार करे...
general.fromDate=से
general.toDate=जब तक
general.unknown=अज्ञात
general.readonly=केवल पढ़ने के लिए
general.atLocation=पर
general.byPerson=द्वारा
general.printedOn=इस दिन छापा गया
general.notYetImplemented=<font color='red'>अभी तक क्रियान्वित नहीं</font>
general.closeWindow=विंडो बंद करे
general.navigateBack=पीछे जाये
general.back=पीछे
general.action=कार्रवाई
general.author=लेखक
general.version=संस्करण
general.includeVoided=खाली को भी शामिल करें
general.dateConstraints=तिथि सीमा
general.since=के बाद से
general.nWeeks={0} सप्ताह (s)
general.displayingXtoYofZ=Displaying {0} to {1} of {2}
general.file=फ़ाइल
general.allOptions=कोई भी
general.dataEntryError=जानकारी में गलती है
general.showAll= सरे जानकारे दिखाए
general.parameters=पैरामीटर्स
general.class=वर्ग
general.key=कुंजी
general.error.nameAlreadyInUse=आपके द्वारा दर्ज नाम पहले से उपयोग में है, एक अनन्य नाम दर्ज करें.
general.invalid=अमान्य
general.properties=गुण
general.default.voidReason=उपयोगकर्ता इंटरफ़ेस से हटाया
general.voidReasonWithArgument=Voided because it was edited to: {0}
general.default.changeReason=उपयोगकर्ता इंटरफ़ेस से बदला गया
general.to=से
general.of=की
general.yearsOldAbbrev=yo
general.noMatchesFound=कोई मिलान नहीं मिले {0} के लिए
general.noMatchesFoundInLocale=कोई मिलान नहीं मिले {0} स्थान में {1}
general.confirm.purge=क्या आप यकीन है कि आप इस वस्तु को पर्ज करना चाहते हैं? यह स्थायी रूप से सिस्टम से हटा दिया जाएगा.
general.default.retireReason=उपयोगकर्ता इंटरफ़ेस से सेवानिवृत्त
general.patient=रोगी
general.done=पूरा हुआ
general.restore=पुनर्स्थापित
##### SEARCH WIDGET MESSAGES ######
# Don't overwrite the text in uppercase letters starting and ending with underscores e.g _REQUIRED_NUMBER_,
# because they are place holders but you can change their positions in the phrase to preserve the meaning.
searchWidget.sInfoLabel=Showing _START_ to _END_ of _TOTAL_ entries
searchWidget.viewingResults=परिणाम देखे for _SEARCH_TEXT_
searchWidget.loadingWithPlaceHolder=Loading _NUMBER_OF_PAGES_ results
searchWidget.minCharRequired=Enter at least _REQUIRED_NUMBER_ characters
searchWidget.pagesWithPlaceHolder=_NUMBER_OF_PAGES_ pages
searchWidget.first=पहला
searchWidget.previous=पिछला
searchWidget.next=अगला
searchWidget.last=आखरी
searchWidget.noMatchesFound=कोई मिलान रिकॉर्ड नहीं पाया गया
searchWidget.OnePage=1 पेज
#### JSP page messages ######
admin.title.short=व्यवस्थापक
admin.title=प्रशासन
auth.logged.out=अब आप लॉग आउट कर चुके है
auth.session.expired=आपका सत्र समाप्त हो गया है.
auth.login=लॉग इन करें
auth.login.tooManyAttempts=आप कई बार लॉग इन करने का प्रयास कर चुके है. कृपया बाद में पुन: प्रयास करें.
auth.password.invalid=अमान्य उपयोगकर्ता नाम / पासवर्ड. कृपया पुन: प्रयास करें.
auth.password.help= अपना पासवर्ड रिसेट करने के लिए, अपना प्रयोक्तानाम डाले और "मैं अपना पासवर्ड भूल गया." को चेक करे
auth.answer.invalid=अमान्य उपयोगकर्ता नाम और गुप्त उत्तर संयोजन. कृपया पुन: प्रयास करें.
auth.question.empty=अमान्य उपयोगकर्ता या गुप्त प्रश्न सेट नहीं किया गया है. कृपया अपना पासवर्ड रीसेट मदद के लिए एक व्यवस्थापक से संपर्क करें.
auth.question.fill=अपने जवाब में गुप्त प्रश्न भरे आगे काम करने के लिए
auth.password.reset=आपका पासवर्ड रीसेट किया गया था. अपने नए पासवर्ड को बक्से में भरें.
auth.invalid=अमान्य सत्र ऑब्जेक्ट. कृपया फिर से लॉग इन करें.
auth.forgotPassword.tooManyAttempts=आप अपना पासवर्ड रीसेट करने के लिए कई बार प्रयास कर चुके है. कृपया बाद में पुन: प्रयास करें.
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.forms=Forms Using <br/>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.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.hint=(Must be at least 8 characters long, contain an uppercase character, and contain at least one number)
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.retired.requireMetadata=Who retired this and why?
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.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
patientGraphs.addNewGraph=Add New Graph
provider.title=Select a Provider
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.mark.satisfiedByAny='Reading' this alert 'reads' it for all recipients
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.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.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.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.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.synonyms.help=Any label or name that refers to a primary concept.
Concept.synonyms.voidReasonRequired=A reason is required for voided 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.name.duplicate=The Fully Specified or Preferred name is a duplicate
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.help=The preferred name in the locale if any, otherwise the fully specified name
Concept.id.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.version.help=The version number for the concept
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.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.indexTerms=Search Terms
Concept.indexTerm.add=Add Search Term
Concept.indexTerms.help=Any label or name that refers to a primary concept e.g a common miss spelling.
Concept.indexTerms.voidReasonRequired=A reason is required for voided 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 voided concept name can't be the preferred name
Concept.error.fullySpecifiedName.is.voided=A voided concept name can't be the Fully Specified name
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=Voided 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.
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.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.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.wikipedia=Wikipedia
Concept.newLocale=Specify a new locale to add for this concept.
Concept.newLocale.label=Locale specification (example en_GB)
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.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.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.unretiredSuccessfully=Drug unretired successfully
ConceptDrug.error.conceptRequired=An empty concept is not allowed
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 Concept or Synonym
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
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.precise=Precise?
ConceptNumeric.inclusive=range values are inclusive
ConceptSetDerived.title=Burst Concept Sets
ConceptSetDerived.instructions=Input a concept id for a specific concept or leave blank to derive all sets.
ConceptSetDerived.manage=Derive Concept Sets
ConceptSetDerived.updated=Concept Sets derived successfully.
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.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.retire=Retire Selected Concept Sources
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.
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}
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
DrugOrder.dose=Dose
DrugOrder.units=Units
DrugOrder.frequency=Frequency
DrugOrder.prn=PRN
DrugOrder.complex=Complex
DrugOrder.quantity=Quantity
DrugOrder.drug=Drug
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.discontinuedDate=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
Encounter.header=Encounters
Encounter.manage=Manage Encounters
Encounter.manage.title=Encounter Management
Encounter.title=Encounter
Encounter.patient=Patient
Encounter.form=Form
Encounter.type=Encounter Type
Encounter.location=Location
Encounter.provider=Provider
Encounter.provider.find=Find Provider
Encounter.datetime=Encounter Date
Encounter.find=Find Encounter
Encounter.search=Find by Encounter Id, Patient Identifier or name:
Encounter.search.placeholder=Enter encounter id, patient name or id
Encounter.save=Save Encounter
Encounter.add=Add Encounter
Encounter.list.title=Current Encounters
Encounter.delete=Delete Selected Encounters
Encounter.saved=Encounter saved
Encounter.deleted=Encounter deleted
Encounter.observations=Observations
Encounter.observations.view=View Observations for this Encounter
Encounter.summary=Encounter Summary
Encounter.edit=Edit this Encounter
Encounter.enterer=Enterer
Encounter.id=Encounter Id
Encounter.no.previous=No Previous Encounters
Encounter.last.encounters=Last Three Encounters
Encounter.noFormDefined=(No form defined)
Encounter.page=Page {0}
Encounter.type=Encounter Type
Encounter.searchPhraseCannotBeNull=Search phrase cannot be null
Encounter.noMatchesFound=No matches found for <b>{0}</b>
Encounter.search.error=Error while attempting to find encounter
Encounter.visit=Visit
Encounter.visit.patients.dontMatch=The encounter and the visit it belongs to must both belong to the same patient
Encounter.patientIdCannotBeNull=Patient Id cannot be null
Encounter.error.patient.required=Patient is Required
Encounter.error.encounterIdCannotBeNull=Encounter Id cannot be null
Encounter.cannot.save=Cannot save the encounter due to validation errors
EncounterType.manage=Manage Encounter Types
EncounterType.manage.title=Encounter Type Management
EncounterType.title=Encounter Type
EncounterType.save=Save Encounter Type
EncounterType.add=Add Encounter Type
EncounterType.list.title=Current Encounter Types
EncounterType.delete=Delete Selected Encounter Types
EncounterType.saved=Encounter Type saved
EncounterType.deleted=Encounter Type deleted
EncounterType.cannot.delete=Cannot delete encounter type. Database constraints will be violated.
EncounterType.select=You must select at least one encounter type.
EncounterType.retireEncounterType=Retire Encounter Type
EncounterType.retire=Retire Selected Encounter Types
EncounterType.retiredSuccessfully=Encounter Type retired successfully
EncounterType.retire=Retire Selected Encounter Types
EncounterType.purgedSuccessfully=Encounter Type purged successfully
EncounterType.purgeEncounterType=Purge Encounter Type
Form.header=Forms
Form.manage=Manage Forms
Form.fieldType=Form
Form.nonedeleted=No Forms deleted
Form.edit=Edit Form
Form.list.title=Forms
Form.edit.title=Edit Metadata
Form.design.title=Schema Design
Form.add=Add Form
Form.delete=Delete Form
Form.deleted=Form deleted successfully
Form.cannot.delete=Cannot delete form. Database restrictions are preventing it.
Form.version=Version
Form.version.invalid=Version must start with a number
Form.save=Save Form
Form.create.duplicate=Create Form and Duplicate Schema
Form.saved=Form saved
Form.not.saved=Form was not saved
Form.build=Build
Form.editProperties=Edit Metadata
Form.designSchema=Design Schema
Form.retiredMessage=This form is retired.
Form.published=Published
Form.unpublished=Unpublished
Form.xslt=XSLT
Form.xslt.view=View XSLT
Form.xslt.upload=Upload new
Form.duplicate.or=or Duplicate Form
Form.duplicate=Duplicate
Form.duplicated=Form duplicated successfully
Form.cannot.duplicate=Cannot duplicate form
Form.design.disabled=Form schema editing is disabled because this form has been published
Form.preview=Preview: (click in form tree to edit)
Form.formSchema=Form Schema
Form.updateSortOrder=Update Element Sort Order
Form.javascriptRequired=Javascript must be enabled to use the schema editor.
Form.confirmation=Are you sure you want to delete this entire form AND schema?
Form.auditSuccess={0} duplicate fields successfully merged
Form.auditError=Duplicate Fields failed to be merged
FormField.add=Add Form Field
FormField.fieldNumber= Field \#
FormField.fieldPart= Field Part
FormField.pageNumber= Page \#
FormField.minOccurs= Min
FormField.maxOccurs= Max
FormField.maxOccurs.help=-1 for infinite
FormField.parent=Parent
FormField.required=Required?
FormField.field=Field
FormField.id=Form Field Id
FormField.edit=Edit FormField
FormField.audit=Click 'Merge Duplicate Fields' button to consolidate duplicate fields found in form fields. Duplicate fields will be deleted and the form will then reference the consolidated field.
FormField.auditButton=Merge Duplicate Fields
FormField.auditConfirm=This operation cannot be reversed.
FormViewXSLT.closeWindow=Close window
Field.manage=Manage Fields
Field.name=Field Name
Field.type=Field Type
Field.concept=Concept
Field.tableName=Table
Field.attributeName=Attribute
Field.selectMultiple=Select Multi?
Field.forms=# Forms:
Field.database=Database
Field.editForThisForm=Edit for this Form
Field.editForAllForms=Edit for all Forms
Field.addNewField=Add New Field
Field.title=Fields
Field.search=Find Fields by Name:
Field.saved=Field Saved
Field.add=Add New Field
Field.find=Find Field Elements
Field.defaultValue=Default Value
Field.editWarning=This field widget is being used on other forms. Editing could cause problems.
Field.editWarning.allForms=Edit for all forms
Field.editWarning.thisForm=Edit for this form only
Field.deleteWarning=Deleting this field will permanently remove this from the database. Continue?
FieldAnswer.manage=Manage FieldAnswers
FieldType.manage=Manage Field Types
FieldType.fieldType=Field Type
FieldType.nonedeleted=No Field Types deleted
FieldType.edit=Edit Field Type
FieldType.list.title=Field Types
FieldType.isSet=Is a Set
FieldType.add=Add Field Type
FieldType.delete=Delete Selected Field Types
FieldType.save=Save Field Type
FieldType.saved=Field Type saved
GlobalProperty.manage=Manage Global Properties
GlobalProperty.manage.title=Global Properties
GlobalProperty.list.title=Current properties
GlobalProperty.list.save=Save these properties
GlobalProperty.remove=Remove?
GlobalProperty.property=Property
GlobalProperty.property.deleted=Property "{0}" deleted
GlobalProperty.property.notDeleted=Could not delete property "{0}"
GlobalProperty.add=Add Property
GlobalProperty.error.name.required=Name required for new global property
GlobalProperty.saved=Global properties saved
GlobalProperty.not.saved=Global properties not saved
ServerLog.view=View Server Log
ServerLog.view.title=Server Log
Location.header=Locations
Location.manage=Manage Locations
Location.manage.title=Location Management
Location.list.title=Current Locations
Location.title=Location
Location.save=Save Location
Location.add=Add Location
Location.delete=Delete Locations
Location.address1=Address
Location.address2=Address 2
Location.cityVillage=City/Village
Location.townVillage=Town/Village
Location.city=City
Location.village=Village
Location.stateProvince=State/Province
Location.state=State
Location.province=Province
Location.postalCode=Postal Code
Location.country=Country
Location.latitude=Latitude
Location.longitude=Longitude
Location.saved=Location saved
Location.deleted=Location deleted
Location.missing=Matata! I was unable to find any locations.
Location.district=District
Location.sector=Sector
Location.cell=Cell
Location.zipCode=Zip Code
Location.rwandanNeighborhood=Umudugudu
Location.communityCouncil=Community Council
Location.location=Location
Location.sublocation=Sublocation
Location.sectionHomestead=Section/Homestead
Location.division=Division
Location.township=Township
Location.county=County
Location.estateNearestCentre=Estate/Nearest Centre
Location.ward=Ward
Location.villageStreet=Village/Street
Location.region=Region
Location.neighborhood=Neighborhood
Location.traditionalAuthority=Traditional Authority
Location.cannot.delete=Cannot delete Location. Database constraints will be violated.
Location.select=You must select at least one location.
Location.retireLocation=Retire this Location
Location.unretireLocation=Unretire this Location
Location.retired=Location retired successfully
Location.unretired=Location unretired successfully
Location.parentLocation=Parent Location
Location.childLocations=Child Locations
Location.tags=Tags
Location.search.error=Error while attempting to find locations
Location.noLocationsFound=No locations found. Please search again.
Location.get.error=Error while attempting to get locations
Location.hierarchy=Location Hierarchy
Location.hierarchy.view=View Location Hierarchy
Location.hierarchy.heading=All Locations
Location.hierarchy.chooseWidgetHeader=Location widget to use in the application
Location.hierarchy.chooseWidgetStyle=Style
Location.hierarchy.widget.default=Simple
Location.hierarchy.widget.tree=Tree
Location.hierarchy.example=Sample
Location.hierarchy.exampleLabel=Choose a location
LocationTag.manage=Manage Location Tags
LocationTag.list.title=Current Location Tags
LocationTag.edit.title=Editing Location Tag
LocationTag.add=Add Location Tag
LocationTag.name=Name
LocationTag.description=Description
LocationTag.saved=Saved
LocationTag.purged=Location Tag purged
LocationTag.retired=Location Tag retired
LocationTag.unretired=Location Tag unretired
LocationTag.error.name.required=Name is required
LocationTag.error.name.duplicate=There is already a tag with that name
LocationTag.purge.allowed=This tag is not used, so you may purge it
LocationTag.cannot.purge.in.use=This tag is in use, so you cannot purge it
LocationTag.purgeRetire=Delete/Retire
LocationTag.locationsWithTag=Locations with this tag
Obs.header=Observations