~hfoss-l10n/sahana-agasti/sahana-0.6.2.2-langpack

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
# Sahana 0.6.2.2 Localization File
# Copyright (C) 2008 LANKA SOFTWARE FOUNDATION
# This file is distributed under the same license as the Sahana package.
# Dominic König <dominic@nursix.org>, 2008.
#
#: mod/admin/ims_level.inc:26 mod/admin/ims_level.inc:62
#: mod/admin/ims_level.inc:178 mod/admin/ims_level.inc:228
#: mod/admin/ims_level.inc:365 mod/admin/ims_level.inc:417
#: mod/admin/ims_assign.inc:74 mod/admin/ims_config.inc:9
#: mod/rs/sample.inc:162 mod/pref/ims_config.inc:36
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: 0.6.2\n"
"Report-Msgid-Bugs-To: translate@sahana.lk\n"
"POT-Creation-Date: 2007-12-20 12:07+0530\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Sahana Translation Team <translate@sahana.lk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: mod/dvr/main_fns.inc:297 mod/dvr/main.inc:61
msgid "Search and Edit Individual"
msgstr ""

#: mod/dvr/main_fns.inc:325 mod/dvr/main.inc:60
msgid "Search and Edit Group"
msgstr ""

#: mod/dvr/search_individual.inc:48 mod/dvr/search_group.inc:35
#: mod/dvr/search_group.inc:153
msgid "General Search"
msgstr ""

#: mod/dvr/search_individual.inc:49 mod/dvr/search_group.inc:58
#: mod/mpr/search.inc:32
msgid "Any Card Number"
msgstr ""

#: mod/dvr/search_individual.inc:50 mod/dvr/search_group.inc:59
#: mod/mpr/search.inc:33
msgid "Any Name"
msgstr ""

#: mod/dvr/search_individual.inc:52 mod/mpr/search.inc:35
msgid "All incidents"
msgstr ""

#: mod/dvr/search_individual.inc:99 mod/dvr/search_group.inc:97
#: mod/dvr/reporting.inc:51 mod/dvr/list.inc:36 mod/dvr/list.inc:82
msgid "Group Type"
msgstr ""

#: mod/dvr/search_individual.inc:100 mod/dvr/search_group.inc:98
#: mod/dvr/reporting.inc:52 mod/dvr/list.inc:37 mod/dvr/list.inc:83
msgid "Group Head Name"
msgstr ""

#: mod/dvr/search_individual.inc:102 mod/dvr/search_individual.inc:158
#: mod/dvr/search_group.inc:99 mod/dvr/search_group.inc:193
#: mod/dvr/add_new_grp.inc:294 mod/dvr/add_new_indv.inc:121
#: mod/dvr/reporting.inc:53 mod/dvr/edt_grp.inc:310 mod/dvr/edt_indv.inc:208
#: mod/dvr/list.inc:38 mod/dvr/list.inc:84 mod/mpr/edit.inc:178
#: mod/mpr/edit.inc:479 mod/mpr/search.inc:68 mod/mpr/add.inc:89
#: mod/mpr/add.inc:545 mod/mpr/view.inc:67
msgid "Family Name"
msgstr ""

#: mod/dvr/search_individual.inc:103 mod/dvr/search_group.inc:101
#: mod/dvr/add_new_grp.inc:557 mod/dvr/reporting.inc:55
#: mod/dvr/edt_grp.inc:638 mod/dvr/list.inc:40 mod/dvr/list.inc:86
msgid "NIC"
msgstr ""

#: mod/dvr/search_individual.inc:146 mod/dvr/search_group.inc:150
#: mod/mpr/search.inc:56
msgid "Advanced Search"
msgstr ""

#: mod/dvr/search_individual.inc:148 mod/dvr/search_individual.inc:149
#: mod/dvr/search_group.inc:182 mod/dvr/search_group.inc:183
#: mod/dvr/add_new_indv.inc:156 mod/dvr/add_new_indv.inc:528
#: mod/dvr/edt_indv.inc:239 mod/dvr/edt_indv.inc:583 mod/mpr/edit.inc:166
#: mod/mpr/edit.inc:451 mod/mpr/search.inc:58 mod/mpr/search.inc:59
#: mod/mpr/add.inc:74 mod/mpr/add.inc:517 mod/mpr/view.inc:39
msgid "Identity"
msgstr ""

#: mod/dvr/search_individual.inc:150 mod/dvr/search_group.inc:184
#: mod/mpr/search.inc:60
msgid "Identity Card"
msgstr ""

#: mod/dvr/search_individual.inc:151 mod/dvr/search_group.inc:185
#: mod/dvr/add_new_indv.inc:164 mod/dvr/add_new_indv.inc:530
#: mod/dvr/edt_indv.inc:248 mod/dvr/edt_indv.inc:585 mod/mpr/edit.inc:168
#: mod/mpr/edit.inc:457 mod/mpr/search.inc:61 mod/mpr/add.inc:79
#: mod/mpr/add.inc:523 mod/mpr/view.inc:45
msgid "Passport Number"
msgstr ""

#: mod/dvr/search_individual.inc:152 mod/dvr/add_new_indv.inc:168
#: mod/dvr/add_new_indv.inc:531 mod/dvr/edt_indv.inc:252
#: mod/dvr/edt_indv.inc:586 mod/mpr/edit.inc:169 mod/mpr/edit.inc:459
#: mod/mpr/search.inc:62 mod/mpr/add.inc:80 mod/mpr/add.inc:525
#: mod/mpr/view.inc:47
msgid "Driving License"
msgstr ""

#: mod/dvr/search_individual.inc:159 mod/dvr/search_group.inc:100
#: mod/dvr/search_group.inc:194 mod/dvr/add_new_grp.inc:299
#: mod/dvr/add_new_indv.inc:125 mod/dvr/reporting.inc:54
#: mod/dvr/edt_grp.inc:316 mod/dvr/edt_indv.inc:212 mod/dvr/list.inc:39
#: mod/dvr/list.inc:85 mod/mpr/edit.inc:179 mod/mpr/edit.inc:481
#: mod/mpr/search.inc:69 mod/mpr/add.inc:90 mod/mpr/add.inc:547
#: mod/mpr/view.inc:69
msgid "Local Name"
msgstr ""

#: mod/dvr/search_individual.inc:162 mod/dvr/add_new_indv.inc:110
#: mod/dvr/edt_indv.inc:198 mod/mpr/edit.inc:172 mod/mpr/edit.inc:473
#: mod/mpr/search.inc:72 mod/mpr/add.inc:83 mod/mpr/add.inc:539
#: mod/mpr/view.inc:61
msgid "Basic Details"
msgstr ""

#: mod/dvr/search_group.inc:37 mod/dvr/search_group.inc:155
#: mod/dvr/edt_grp.inc:279 mod/dvr/edt_indv.inc:159
msgid "Please select a Group that describes you well"
msgstr ""

#: mod/dvr/search_group.inc:51 mod/dvr/add_new_indv.inc:62
msgid "Please Select the group type"
msgstr ""

#: mod/dvr/search_group.inc:57 mod/dvr/add_new_grp.inc:275
#: mod/dvr/edt_grp.inc:292 mod/dvr/edt_indv.inc:174 mod/dvr/edt_indv.inc:176
msgid "Type of Group"
msgstr ""

#: mod/dvr/search_group.inc:175 mod/dvr/edt_grp.inc:319
msgid "Enter the National Identity Card Number if available. (Optional)"
msgstr ""

#: mod/dvr/search_group.inc:179
msgid "Type Of Group"
msgstr ""

#: mod/dvr/conf.inc:23 mod/dvr/home.inc:22 mod/dvr/main.inc:51
#: mod/dvr/admin.inc:46
msgid "Disaster Victim Registry"
msgstr ""

#: mod/dvr/home.inc:26
msgid ""
"The Disaster Victim Registry is a central online repository where "
"information on all the disaster victims and families, especially identified "
"casualties, evacuees and displaced people can be stored. Information like "
"name, age, contact number, identity card number, displaced location, and "
"other details are captured. People picture and finger print details can be "
"uploaded to the system. People can also be captured rather by group for "
"effeciency and convenience"
msgstr ""

#: mod/dvr/home.inc:31
msgid "Features include:"
msgstr ""

#: mod/dvr/home.inc:36
msgid ""
"Capture Information on Disaster Victim groups (Tourists, Passengers, "
"Families, etc.)"
msgstr ""

#: mod/dvr/home.inc:40
msgid "Capture Information on each disaster victim"
msgstr ""

#: mod/dvr/home.inc:43
msgid "Picture upload and finger print upload facility"
msgstr ""

#: mod/dvr/home.inc:46
msgid "Searching for different groups and individuals"
msgstr ""

#: mod/dvr/home.inc:49
msgid "Modify Information on groups and individuals"
msgstr ""

#: mod/dvr/home.inc:52
msgid "Various Reporting functionalities"
msgstr ""

#: mod/dvr/home.inc:55
msgid "Forecasting methods based on statistics"
msgstr ""

#: mod/dvr/home.inc:61 mod/dvr/add_new_grp.inc:37 mod/dvr/add_new_grp.inc:412
#: mod/dvr/add_new_grp.inc:493 mod/dvr/main.inc:55
msgid "Add New Group"
msgstr ""

#: mod/dvr/home.inc:61
msgid "Adding a new disaster victim group"
msgstr ""

#: mod/dvr/home.inc:62
msgid "Add New Individuals"
msgstr ""

#: mod/dvr/home.inc:62
msgid "Adding a disaster victim under each and every victim group"
msgstr ""

#: mod/dvr/home.inc:63
msgid "Search & Edit Group"
msgstr ""

#: mod/dvr/home.inc:63
msgid "Searching and editing a victim group"
msgstr ""

#: mod/dvr/home.inc:64
msgid "Search & Edit Individuals"
msgstr ""

#: mod/dvr/home.inc:64
msgid "Searching and editing a victim"
msgstr ""

#: mod/dvr/home.inc:65
msgid "List groups/ View members"
msgstr ""

#: mod/dvr/home.inc:65
msgid "List all the groups and view members"
msgstr ""

#: mod/dvr/home.inc:66 mod/dvr/main.inc:74
msgid "Drill Down By Group"
msgstr ""

#: mod/dvr/home.inc:66
msgid "Drill down by disaster victim group report"
msgstr ""

#: mod/dvr/home.inc:67 mod/dvr/main.inc:75
msgid "Drill Down By Shelter"
msgstr ""

#: mod/dvr/home.inc:67
msgid "Drill down by shelter report"
msgstr ""

#: mod/dvr/home.inc:68
msgid "Drill Down By Incident"
msgstr ""

#: mod/dvr/home.inc:68
msgid "Drill down by incident report"
msgstr ""

#: mod/dvr/home.inc:81
msgid "Latest updates on Reported  Victims"
msgstr ""

#: mod/dvr/add_new_grp.inc:53 mod/dvr/edt_grp.inc:110 mod/dvr/edt_indv.inc:475
msgid "Please  select the group type"
msgstr ""

#: mod/dvr/add_new_grp.inc:58 mod/dvr/add_new_indv.inc:435
#: mod/dvr/edt_grp.inc:114 mod/dvr/edt_indv.inc:480
msgid "Please fill the full name"
msgstr ""

#: mod/dvr/add_new_grp.inc:66
msgid "Invalid email entered"
msgstr ""

#: mod/dvr/add_new_grp.inc:83 mod/dvr/edt_grp.inc:139
msgid "Adult male count should be a number"
msgstr ""

#: mod/dvr/add_new_grp.inc:92 mod/dvr/edt_grp.inc:147
msgid "Adult female count should be a number"
msgstr ""

#: mod/dvr/add_new_grp.inc:103 mod/dvr/edt_grp.inc:155
msgid "Children count should be a number"
msgstr ""

#: mod/dvr/add_new_grp.inc:117 mod/dvr/edt_grp.inc:163
msgid "Displaced count should be a number"
msgstr ""

#: mod/dvr/add_new_grp.inc:129 mod/dvr/edt_grp.inc:171
msgid "Missing people count should be a number"
msgstr ""

#: mod/dvr/add_new_grp.inc:141 mod/dvr/edt_grp.inc:179
msgid "Death count should be a number"
msgstr ""

#: mod/dvr/add_new_grp.inc:155 mod/dvr/edt_grp.inc:187
msgid "Rehabilitated count should be a number"
msgstr ""

#: mod/dvr/add_new_grp.inc:167
msgid "Invalid image type.Please try again"
msgstr ""

#: mod/dvr/add_new_grp.inc:262 mod/dvr/edt_grp.inc:277
#: mod/dvr/edt_indv.inc:157
msgid "Select Group Type"
msgstr ""

#: mod/dvr/add_new_grp.inc:264
msgid "Please select a group that describes you well"
msgstr ""

#: mod/dvr/add_new_grp.inc:270
msgid ""
"Disaster victims are classified according to groups. Please Select the "
"'group type' from the drop down menu"
msgstr ""

#: mod/dvr/add_new_grp.inc:280 mod/dvr/edt_grp.inc:296
msgid "Head Of Group"
msgstr ""

#: mod/dvr/add_new_grp.inc:285
msgid ""
"Enter the name of the head of the group here(Required). You can provide "
"Family name or Local name if applicable."
msgstr ""

#: mod/dvr/add_new_grp.inc:291
msgid "Enter the family name of the head of the group here."
msgstr ""

#: mod/dvr/add_new_grp.inc:296
msgid "Enter the local Name of the head of the group here."
msgstr ""

#: mod/dvr/add_new_grp.inc:301
msgid ""
"Enter the National Identity Card Number, Passport number or any other proof "
"for identity(Optional)"
msgstr ""

#: mod/dvr/add_new_grp.inc:304 mod/dvr/edt_grp.inc:321
msgid "NIC No"
msgstr ""

#: mod/dvr/add_new_grp.inc:308 mod/dvr/add_new_indv.inc:177
#: mod/dvr/add_new_indv.inc:509 mod/dvr/edt_grp.inc:337
#: mod/dvr/edt_grp.inc:353 mod/dvr/edt_indv.inc:259 mod/dvr/edt_indv.inc:275
#: mod/dvr/edt_indv.inc:556
msgid "Current Photograph"
msgstr ""

#: mod/dvr/add_new_grp.inc:321
msgid "Upload the photograph of the head of the group if available"
msgstr ""

#: mod/dvr/add_new_grp.inc:324 mod/dvr/edt_grp.inc:369
msgid "Upload Photograph"
msgstr ""

#: mod/dvr/add_new_grp.inc:327
msgid "Enter the Mobile phone number if available. (Optional)"
msgstr ""

#: mod/dvr/add_new_grp.inc:331 mod/dvr/edt_grp.inc:376
msgid "Enter a Land Phone number if available. (Optional)"
msgstr ""

#: mod/dvr/add_new_grp.inc:335 mod/dvr/edt_grp.inc:380
msgid "Enter a Email Address if available. (Optional)"
msgstr ""

#: mod/dvr/add_new_grp.inc:339
msgid "Enter a postal address of head of the group if available. (Optional)"
msgstr ""

#: mod/dvr/add_new_grp.inc:351 mod/dvr/edt_grp.inc:391
msgid "No Of Members In Group"
msgstr ""

#: mod/dvr/add_new_grp.inc:355
msgid "Enter the number of adult males in the group if known. (Optional)"
msgstr ""

#: mod/dvr/add_new_grp.inc:356 mod/dvr/add_new_grp.inc:577
#: mod/dvr/edt_grp.inc:396 mod/dvr/edt_grp.inc:660
msgid "Adult Males"
msgstr ""

#: mod/dvr/add_new_grp.inc:359 mod/dvr/edt_grp.inc:399
msgid "Enter the number of adult females in the group if known. (Optional)"
msgstr ""

#: mod/dvr/add_new_grp.inc:360 mod/dvr/add_new_grp.inc:578
#: mod/dvr/edt_grp.inc:400 mod/dvr/edt_grp.inc:661
msgid "Adult Females"
msgstr ""

#: mod/dvr/add_new_grp.inc:363
msgid "Enter the number of children in the group  (Optional)"
msgstr ""

#: mod/dvr/add_new_grp.inc:370 mod/dvr/edt_grp.inc:408
msgid "Status Of Members In Group"
msgstr ""

#: mod/dvr/add_new_grp.inc:374
msgid "Enter the number of displaced people in the group(Optional)"
msgstr ""

#: mod/dvr/add_new_grp.inc:375 mod/dvr/add_new_grp.inc:583
#: mod/dvr/edt_grp.inc:413 mod/dvr/edt_grp.inc:666
msgid "Displaced"
msgstr ""

#: mod/dvr/add_new_grp.inc:378
msgid "Enter the number of missing people in the group(Optional)"
msgstr ""

#: mod/dvr/add_new_grp.inc:379 mod/dvr/add_new_grp.inc:584
#: mod/dvr/edt_grp.inc:417 mod/dvr/edt_grp.inc:667 field_options:124
msgid "Missing"
msgstr ""

#: mod/dvr/add_new_grp.inc:382
msgid "Enter the number of deceased people in the group(Optional)"
msgstr ""

#: mod/dvr/add_new_grp.inc:383 mod/dvr/add_new_grp.inc:585
#: mod/dvr/edt_grp.inc:421 mod/dvr/edt_grp.inc:668
msgid "Dead"
msgstr ""

#: mod/dvr/add_new_grp.inc:386
msgid "Enter the number of rehabilitated people in the group(Optional)"
msgstr ""

#: mod/dvr/add_new_grp.inc:387 mod/dvr/add_new_grp.inc:586
#: mod/dvr/edt_grp.inc:425 mod/dvr/edt_grp.inc:669
msgid "Rehabilitated"
msgstr ""

#: mod/dvr/add_new_grp.inc:392 mod/dvr/add_new_grp.inc:592
#: mod/dvr/add_new_indv.inc:228 mod/dvr/add_new_indv.inc:545
#: mod/dvr/edt_grp.inc:429 mod/dvr/edt_grp.inc:675 mod/dvr/edt_indv.inc:331
#: mod/dvr/edt_indv.inc:600
msgid "Displaced Location"
msgstr ""

#: mod/dvr/add_new_grp.inc:435 mod/dvr/add_new_grp.inc:597
#: mod/dvr/add_new_indv.inc:549 mod/dvr/add_new_indv.inc:659
#: mod/dvr/edt_grp.inc:475 mod/dvr/edt_grp.inc:680 mod/dvr/edt_indv.inc:604
#: mod/dvr/edt_indv.inc:706
msgid "Current Location"
msgstr ""

#: mod/dvr/add_new_grp.inc:498 mod/dvr/edt_grp.inc:566
msgid "Checklist"
msgstr ""

#: mod/dvr/add_new_grp.inc:502
msgid ""
"You are able to make requests for items/aid here. Select the checkbox(s) in "
"front of the required item(s)."
msgstr ""

#: mod/dvr/add_new_grp.inc:505
msgid "Please select items "
msgstr ""

#: mod/dvr/add_new_grp.inc:510 mod/dvr/edt_grp.inc:586
msgid "opt_dvr_service"
msgstr ""

#: mod/dvr/add_new_grp.inc:515 mod/dvr/edt_grp.inc:592
msgid "Group Description"
msgstr ""

#: mod/dvr/add_new_grp.inc:518 mod/dvr/edt_grp.inc:597
msgid "Enter the group description. (Optional)"
msgstr ""

#: mod/dvr/add_new_grp.inc:542 mod/dvr/edt_grp.inc:623
msgid "Confirm Group Details  Headed by "
msgstr ""

#: mod/dvr/add_new_grp.inc:549 mod/dvr/edt_grp.inc:632
msgid "Group type and head details"
msgstr ""

#: mod/dvr/add_new_grp.inc:553 mod/dvr/edt_grp.inc:634
#: mod/dvr/edt_indv.inc:548
msgid "Group type: "
msgstr ""

#: mod/dvr/add_new_grp.inc:554 mod/dvr/add_new_indv.inc:505
#: mod/dvr/edt_grp.inc:635 mod/dvr/edt_indv.inc:550
msgid "Full name"
msgstr ""

#: mod/dvr/add_new_grp.inc:555 mod/dvr/add_new_indv.inc:506
#: mod/dvr/edt_grp.inc:636 mod/dvr/edt_indv.inc:552
msgid "Family name"
msgstr ""

#: mod/dvr/add_new_grp.inc:556 mod/dvr/add_new_indv.inc:507
#: mod/dvr/edt_grp.inc:637 mod/dvr/edt_indv.inc:554
msgid "Local name"
msgstr ""

#: mod/dvr/add_new_grp.inc:558 mod/dvr/edt_grp.inc:639
msgid "Photograph"
msgstr ""

#: mod/dvr/add_new_grp.inc:576 mod/dvr/edt_grp.inc:659
msgid "Member Count"
msgstr ""

#: mod/dvr/add_new_grp.inc:582 mod/dvr/edt_grp.inc:665
msgid "Status of Members in Group"
msgstr ""

#: mod/dvr/add_new_grp.inc:602 mod/dvr/edt_grp.inc:685
msgid "Checklist Information"
msgstr ""

#: mod/dvr/add_new_grp.inc:632 mod/dvr/add_new_indv.inc:589
#: mod/dvr/edt_grp.inc:714 mod/dvr/edt_indv.inc:644 mod/or/reg_org.inc:210
msgid "Edit Details"
msgstr ""

#: mod/dvr/add_new_grp.inc:653
msgid " Group was succesfully registered"
msgstr ""

#: mod/dvr/add_new_indv.inc:39 mod/dvr/add_new_indv.inc:622
#: mod/dvr/main.inc:56
msgid "Add New Individual"
msgstr ""

#: mod/dvr/add_new_indv.inc:48
msgid "Select Group"
msgstr ""

#: mod/dvr/add_new_indv.inc:81
msgid ""
"Type the first few letters and then select the name of the Head of the "
"group. The loading pop up box contains Full name, Family name, Local name "
"and the Address in comma seperated order."
msgstr ""

#: mod/dvr/add_new_indv.inc:114
msgid "Enter your Full Name here(Required)"
msgstr ""

#: mod/dvr/add_new_indv.inc:119 mod/mpr/add.inc:89
msgid ""
"Family name, or the surname could be specified for matching of people with "
"similar Family names"
msgstr ""

#: mod/dvr/add_new_indv.inc:124 mod/mpr/add.inc:90
msgid ""
"You may also specify the local name, even in different script than English"
msgstr ""

#: mod/dvr/add_new_indv.inc:130 mod/dvr/edt_indv.inc:218 mod/mpr/edit.inc:181
#: mod/mpr/edit.inc:483 mod/mpr/add.inc:92 mod/mpr/add.inc:549
#: mod/mpr/view.inc:71
msgid "Date of Birth"
msgstr ""

#: mod/dvr/add_new_indv.inc:134 mod/dvr/edt_indv.inc:221
msgid "You may also specify the age group"
msgstr ""

#: mod/dvr/add_new_indv.inc:135 mod/dvr/edt_indv.inc:222 mod/mpr/edit.inc:183
#: mod/mpr/edit.inc:485 mod/mpr/add.inc:94 mod/mpr/add.inc:551
#: mod/mpr/view.inc:73
msgid "Age Group"
msgstr ""

#: mod/dvr/add_new_indv.inc:138
msgid "You can specify the gender"
msgstr ""

#: mod/dvr/add_new_indv.inc:139 mod/dvr/add_new_indv.inc:523
#: mod/dvr/edt_indv.inc:225 mod/dvr/edt_indv.inc:573 mod/mpr/edit.inc:184
#: mod/mpr/edit.inc:487 mod/mpr/add.inc:95 mod/mpr/add.inc:553
#: mod/mpr/view.inc:75
msgid "Gender"
msgstr ""

#: mod/dvr/add_new_indv.inc:142
msgid "You can specify the marital status"
msgstr ""

#: mod/dvr/add_new_indv.inc:143 mod/dvr/add_new_indv.inc:524
#: mod/dvr/edt_indv.inc:228 mod/dvr/edt_indv.inc:575 mod/mpr/edit.inc:185
#: mod/mpr/edit.inc:489 mod/mpr/add.inc:96 mod/mpr/add.inc:555
#: mod/mpr/view.inc:77
msgid "Marital Status"
msgstr ""

#: mod/dvr/add_new_indv.inc:146
msgid "You may also specify the religion"
msgstr ""

#: mod/dvr/add_new_indv.inc:147 mod/dvr/add_new_indv.inc:525
#: mod/dvr/edt_indv.inc:231 mod/dvr/edt_indv.inc:577 mod/mpr/edit.inc:186
#: mod/mpr/edit.inc:491 mod/mpr/add.inc:97 mod/mpr/add.inc:557
#: mod/mpr/view.inc:79
msgid "Religion"
msgstr ""

#: mod/dvr/add_new_indv.inc:150
msgid "You can also so specify the race"
msgstr ""

#: mod/dvr/add_new_indv.inc:151 mod/dvr/add_new_indv.inc:526
#: mod/dvr/edt_indv.inc:234 mod/dvr/edt_indv.inc:579 mod/mpr/edit.inc:187
#: mod/mpr/edit.inc:493 mod/mpr/add.inc:98 mod/mpr/add.inc:559
#: mod/mpr/view.inc:81
msgid "Race"
msgstr ""

#: mod/dvr/add_new_indv.inc:160 mod/dvr/add_new_indv.inc:529
#: mod/dvr/edt_indv.inc:243 mod/dvr/edt_indv.inc:584 mod/mpr/edit.inc:167
#: mod/mpr/edit.inc:455 mod/mpr/add.inc:78 mod/mpr/add.inc:521
#: mod/mpr/view.inc:43
msgid "Identity Card Number"
msgstr ""

#: mod/dvr/add_new_indv.inc:173 mod/dvr/add_new_indv.inc:191
#: mod/dvr/edt_indv.inc:256 mod/dvr/edt_indv.inc:289 mod/mpr/edit.inc:196
#: mod/mpr/edit.inc:368 mod/mpr/images.inc:30 mod/mpr/add.inc:101
#: mod/mpr/add.inc:105 mod/mpr/add.inc:439 mod/mpr/add.inc:440
msgid "Upload Picture"
msgstr ""

#: mod/dvr/add_new_indv.inc:194 mod/dvr/edt_indv.inc:292
msgid "Contact Information of the Disaster Victim"
msgstr ""

#: mod/dvr/add_new_indv.inc:211 mod/dvr/add_new_indv.inc:538
#: mod/dvr/edt_indv.inc:312 mod/dvr/edt_indv.inc:593 mod/mpr/edit.inc:203
#: mod/mpr/edit.inc:558 mod/mpr/add.inc:112 mod/mpr/add.inc:623
#: mod/mpr/view.inc:123
msgid "Home Phone"
msgstr ""

#: mod/dvr/add_new_indv.inc:218 mod/dvr/edt_indv.inc:321
msgid "Displaced Location of the Victim"
msgstr ""

#: mod/dvr/add_new_indv.inc:224 mod/dvr/add_new_indv.inc:656
#: mod/dvr/edt_indv.inc:327 mod/dvr/edt_indv.inc:703
msgid "Same As Group"
msgstr ""

#: mod/dvr/add_new_indv.inc:403 mod/dvr/add_new_indv.inc:475
#: mod/dvr/edt_grp.inc:197 mod/dvr/edt_indv.inc:458 mod/dvr/edt_indv.inc:523
msgid "Invalid Image Type Please try again"
msgstr ""

#: mod/dvr/add_new_indv.inc:427
msgid "Please select the Group Head"
msgstr ""

#: mod/dvr/add_new_indv.inc:431
msgid "Please select the Group Head from the list."
msgstr ""

#: mod/dvr/add_new_indv.inc:443 mod/dvr/edt_grp.inc:121
#: mod/dvr/edt_indv.inc:508
msgid "Invalid Email entered"
msgstr ""

#: mod/dvr/add_new_indv.inc:464 mod/dvr/edt_indv.inc:500
msgid "Please enter a valid date of birth."
msgstr ""

#: mod/dvr/add_new_indv.inc:494
msgid "Confirm  Details of "
msgstr ""

#: mod/dvr/add_new_indv.inc:501 mod/dvr/edt_indv.inc:546
msgid "Group Type and Personal details"
msgstr ""

#: mod/dvr/add_new_indv.inc:502
msgid "Group type "
msgstr ""

#: mod/dvr/add_new_indv.inc:521 mod/dvr/edt_indv.inc:569
msgid "Date Of birth"
msgstr ""

#: mod/dvr/add_new_indv.inc:522 mod/dvr/edt_indv.inc:571
msgid "Age group"
msgstr ""

#: mod/dvr/add_new_indv.inc:543 mod/dvr/edt_indv.inc:597
msgid "Displaced/Current Location"
msgstr ""

#: mod/dvr/add_new_indv.inc:554 mod/dvr/edt_indv.inc:609
msgid "Physical Information"
msgstr ""

#: mod/dvr/add_new_indv.inc:556 mod/dvr/add_new_indv.inc:829
#: mod/dvr/edt_indv.inc:611 mod/dvr/edt_indv.inc:871
msgid "Current Fingerprint"
msgstr ""

#: mod/dvr/add_new_indv.inc:568 mod/dvr/edt_indv.inc:623
msgid "Eye Color"
msgstr ""

#: mod/dvr/add_new_indv.inc:569 mod/dvr/edt_indv.inc:624
msgid "Skin Color"
msgstr ""

#: mod/dvr/add_new_indv.inc:570 mod/dvr/edt_indv.inc:625
msgid "Hair Color"
msgstr ""

#: mod/dvr/add_new_indv.inc:571 mod/dvr/add_new_indv.inc:860
#: mod/dvr/edt_indv.inc:626 mod/dvr/edt_indv.inc:908 mod/mpr/edit.inc:231
#: mod/mpr/edit.inc:514 mod/mpr/search.inc:354 mod/mpr/add.inc:140
#: mod/mpr/add.inc:580 mod/mpr/view.inc:102
msgid "Height"
msgstr ""

#: mod/dvr/add_new_indv.inc:572 mod/dvr/add_new_indv.inc:863
#: mod/dvr/edt_indv.inc:627 mod/dvr/edt_indv.inc:911 mod/mpr/edit.inc:232
#: mod/mpr/edit.inc:516 mod/mpr/search.inc:355 mod/mpr/add.inc:141
#: mod/mpr/add.inc:582 mod/mpr/view.inc:104
msgid "Weight"
msgstr ""

#: mod/dvr/add_new_indv.inc:573 mod/dvr/add_new_indv.inc:866
#: mod/dvr/edt_indv.inc:628 mod/dvr/edt_indv.inc:914 mod/mpr/edit.inc:237
#: mod/mpr/edit.inc:573 mod/mpr/add.inc:147 mod/mpr/add.inc:638
#: mod/mpr/view.inc:138
msgid "Blood Type"
msgstr ""

#: mod/dvr/add_new_indv.inc:574
msgid "Clothing and appearence"
msgstr ""

#: mod/dvr/add_new_indv.inc:650 mod/dvr/edt_indv.inc:697
msgid "Current Location of the Victim"
msgstr ""

#: mod/dvr/add_new_indv.inc:825 mod/dvr/edt_indv.inc:850
msgid "Upload FingerPrint"
msgstr ""

#: mod/dvr/add_new_indv.inc:843 mod/dvr/edt_indv.inc:890
msgid "Upload Fingerprint"
msgstr ""

#: mod/dvr/add_new_indv.inc:847 mod/dvr/edt_indv.inc:894 mod/mpr/edit.inc:227
#: mod/mpr/edit.inc:504 mod/mpr/add.inc:136 mod/mpr/add.inc:570
#: mod/mpr/view.inc:92
msgid "Physical Details"
msgstr ""

#: mod/dvr/add_new_indv.inc:851 mod/dvr/edt_indv.inc:899 mod/mpr/edit.inc:228
#: mod/mpr/edit.inc:508 mod/mpr/search.inc:356 mod/mpr/add.inc:137
#: mod/mpr/add.inc:574 mod/mpr/view.inc:96
msgid "Eye Colour"
msgstr ""

#: mod/dvr/add_new_indv.inc:854 mod/dvr/edt_indv.inc:902 mod/mpr/edit.inc:229
#: mod/mpr/edit.inc:510 mod/mpr/search.inc:357 mod/mpr/add.inc:138
#: mod/mpr/add.inc:576 mod/mpr/view.inc:98
msgid "Skin Colour"
msgstr ""

#: mod/dvr/add_new_indv.inc:857 mod/dvr/edt_indv.inc:905 mod/mpr/edit.inc:230
#: mod/mpr/edit.inc:512 mod/mpr/search.inc:358 mod/mpr/add.inc:139
#: mod/mpr/add.inc:578 mod/mpr/view.inc:100
msgid "Hair Colour"
msgstr ""

#: mod/dvr/add_new_indv.inc:873 mod/dvr/edt_indv.inc:921
msgid "Description Of Clothing And Appearance"
msgstr ""

#: mod/dvr/add_new_indv.inc:876 mod/dvr/edt_indv.inc:924
msgid "Other Relevant Information"
msgstr ""

#: mod/dvr/reporting.inc:25
msgid "Disaster Victim Report by group"
msgstr ""

#: mod/dvr/reporting.inc:50
msgid "Group Id"
msgstr ""

#: mod/dvr/reporting.inc:94
msgid "Disaster Victim Report by Shelter"
msgstr ""

#: mod/dvr/reporting.inc:99
msgid "Camp Id"
msgstr ""

#: mod/dvr/reporting.inc:100
msgid "Camp Name"
msgstr ""

#: mod/dvr/reporting.inc:136
msgid "Disaster Victim Report by Incident"
msgstr ""

#: mod/dvr/reporting.inc:141
msgid "Incident Id"
msgstr ""

#: mod/dvr/edt_grp.inc:287
msgid "Please Select the group type if you want to change the type"
msgstr ""

#: mod/dvr/edt_grp.inc:301
msgid "Enter the Full Name of the head of the group.(Required)"
msgstr ""

#: mod/dvr/edt_grp.inc:307
msgid "Enter the Family Name."
msgstr ""

#: mod/dvr/edt_grp.inc:313
msgid "Enter the local Name."
msgstr ""

#: mod/dvr/edt_grp.inc:367
msgid "Upload the photograph if available"
msgstr ""

#: mod/dvr/edt_grp.inc:372
msgid "Enter the Mobile number if available. (Optional)"
msgstr ""

#: mod/dvr/edt_grp.inc:384
msgid "Enter a Address if available. (Optional)"
msgstr ""

#: mod/dvr/edt_grp.inc:395
msgid "Enter the number of adult males in the group if known (Optional)"
msgstr ""

#: mod/dvr/edt_grp.inc:403
msgid "Enter the number of children if known (Optional)"
msgstr ""

#: mod/dvr/edt_grp.inc:412
msgid "Enter the number of displaced people(Optional)"
msgstr ""

#: mod/dvr/edt_grp.inc:416
msgid "Enter the number of missing people (Optional)"
msgstr ""

#: mod/dvr/edt_grp.inc:420
msgid "Enter the number of deceased people (Optional)"
msgstr ""

#: mod/dvr/edt_grp.inc:424
msgid "Enter the number of rehabilitated people in the group (Optional)"
msgstr ""

#: mod/dvr/edt_grp.inc:444
msgid "Edit Location Check Details"
msgstr ""

#: mod/dvr/edt_grp.inc:530
msgid "Please select the current location."
msgstr ""

#: mod/dvr/edt_grp.inc:571
msgid "Please select items tick the Check Box (Optional)"
msgstr ""

#: mod/dvr/edt_grp.inc:738
msgid " group was succesfully updated "
msgstr ""

#: mod/dvr/view_members.inc:47
msgid "Group Members"
msgstr ""

#: mod/dvr/edt_indv.inc:148 mod/dvr/edt_indv.inc:671
msgid "Edit Individual"
msgstr ""

#: mod/dvr/edt_indv.inc:167
msgid "Please Select the group type, if you want to change it"
msgstr ""

#: mod/dvr/edt_indv.inc:189
msgid "Please Select the name of the head of the group"
msgstr ""

#: mod/dvr/edt_indv.inc:201
msgid "Enter the Full Name.(Required)"
msgstr ""

#: mod/dvr/edt_indv.inc:206
msgid ""
"'Family name, or the surname could be specified for matching people with "
"similar Family names"
msgstr ""

#: mod/dvr/edt_indv.inc:211
msgid ""
"You may also specify the local name, even in a different language than "
"English"
msgstr ""

#: mod/dvr/edt_indv.inc:217
msgid ""
"You may also specify the date of birth in the order of 'year - month - day."
"<br/> E.g. February 15th of 1984 should enter as 1984-02-15"
msgstr ""

#: mod/dvr/edt_indv.inc:242 mod/mpr/add.inc:78
msgid ""
"Specify the Identity card Number, Although this is not required this will be "
"useful in searching for the person"
msgstr ""

#: mod/dvr/edt_indv.inc:246 mod/mpr/add.inc:79
msgid ""
"Please Specify the passport number, Although this is not required this will "
"be useful in searching for the person"
msgstr ""

#: mod/dvr/edt_indv.inc:250 mod/mpr/add.inc:80
msgid ""
"Please Specify the driving License number, Although this is not required "
"this will be useful in searching for the person"
msgstr ""

#: mod/dvr/edt_indv.inc:297
msgid "Providing your address may be helpful to contact you"
msgstr ""

#: mod/dvr/edt_indv.inc:310
msgid "Specify a phone, if it is available"
msgstr ""

#: mod/dvr/edt_indv.inc:315
msgid "Specify a mobile, if it is available"
msgstr ""

#: mod/dvr/edt_indv.inc:330
msgid ""
"Whether you are located at the same place as the group or in a different "
"place"
msgstr ""

#: mod/dvr/edt_indv.inc:539
msgid "Confirm  Details of"
msgstr ""

#: mod/dvr/edt_indv.inc:629
msgid "Clothing and appearance"
msgstr ""

#: mod/dvr/edt_indv.inc:855
msgid "Current FingerPrint"
msgstr ""

#: mod/dvr/main.inc:54
msgid "Add Disaster Victim(s)"
msgstr ""

#: mod/dvr/main.inc:59
msgid "Edit Disaster Victim(s)"
msgstr ""

#: mod/dvr/main.inc:68
msgid "List groups "
msgstr ""

#: mod/dvr/main.inc:69
msgid "List groups/View members "
msgstr ""

#: mod/dvr/main.inc:76
msgid "Drill Down By Incident "
msgstr ""

#: mod/dvr/admin.inc:29
msgid "Welcome to the Disaster Victim Registry admin page"
msgstr ""

#: mod/dvr/admin.inc:35
msgid "Welcome to the DVR administration  page"
msgstr ""

#: mod/dvr/admin.inc:37
msgid "Follow above links to administer the disaster victim registry"
msgstr ""

#: mod/dvr/admin.inc:47
msgid "Manage Checklist"
msgstr ""

#: mod/dvr/admin.inc:80
msgid "Description should not be empty."
msgstr ""

#: mod/dvr/admin.inc:83
msgid "option_description"
msgstr ""

#: mod/dvr/admin.inc:134
msgid "Item Abbrevation [3 letter unique abbr. to store in the database]"
msgstr ""

#: mod/dvr/admin.inc:165
msgid "Item already exists"
msgstr ""

#: mod/dvr/admin.inc:167
msgid "Use different abbrevation."
msgstr ""

#: mod/dvr/admin.inc:177
msgid "Please fill the abbrevation."
msgstr ""

#: mod/dvr/admin.inc:181
msgid "Please fill the service name."
msgstr ""

#: mod/dvr/admin.inc:190 mod/mpr/admin.inc:343
msgid "Field was successfully deleted."
msgstr ""

#: mod/dvr/lib.inc:193 mod/dvr/lib.inc:214 mod/mpr/mpr_lib.inc:47
#: mod/mpr/mpr_lib.inc:68
msgid "Height : "
msgstr ""

#: mod/dvr/lib.inc:194 mod/dvr/lib.inc:215 mod/mpr/mpr_lib.inc:48
#: mod/mpr/mpr_lib.inc:69
msgid "Weight : "
msgstr ""

#: mod/dvr/lib.inc:195 mod/dvr/lib.inc:216 mod/mpr/mpr_lib.inc:49
#: mod/mpr/mpr_lib.inc:70
msgid "Eye Colour : "
msgstr ""

#: mod/dvr/lib.inc:196 mod/dvr/lib.inc:217 mod/mpr/mpr_lib.inc:50
#: mod/mpr/mpr_lib.inc:71
msgid "Skin Colour : "
msgstr ""

#: mod/dvr/lib.inc:197 mod/dvr/lib.inc:218 mod/mpr/mpr_lib.inc:51
#: mod/mpr/mpr_lib.inc:72
msgid "Hair Colour : "
msgstr ""

#: mod/dvr/lib.inc:198 mod/dvr/lib.inc:219 mod/mpr/mpr_lib.inc:52
#: mod/mpr/mpr_lib.inc:73
msgid "Last Seen : "
msgstr ""

#: mod/dvr/lib.inc:199 mod/dvr/lib.inc:220 mod/mpr/mpr_lib.inc:53
#: mod/mpr/mpr_lib.inc:74
msgid "Last Clothing : "
msgstr ""

#: mod/dvr/lib.inc:200 mod/dvr/lib.inc:221 mod/mpr/mpr_lib.inc:54
#: mod/mpr/mpr_lib.inc:75
msgid "Comments : "
msgstr ""

#: mod/dvr/lib.inc:202 mod/dvr/lib.inc:223 mod/mpr/search.inc:390
#: mod/mpr/search.inc:392 mod/mpr/mpr_lib.inc:56 mod/mpr/mpr_lib.inc:77
#: mod/or/view_org.inc:244 mod/or/view_org.inc:593
msgid "Assign to more incidents"
msgstr ""

#: mod/dvr/stream.inc:29
msgid ""
"\n"
"        Welcome to the Sahana FOSS Disaster Management System\n"
"        Sahana is an integrated set of pluggable, web based disaster "
"management applications that provide solutions to large-scale humanitarian "
"problems in the aftermath of a disaster. These applications a nd problems "
"they address are as follows:"
msgstr ""

#: mod/mpr/edit.inc:174
msgid "Please enter any of the following details on the person"
msgstr ""

#: mod/mpr/edit.inc:191 mod/mpr/edit.inc:363
msgid "Replace Current Picture"
msgstr ""

#: mod/mpr/edit.inc:200 mod/mpr/edit.inc:530 mod/mpr/add.inc:596
#: mod/mpr/view.inc:115
msgid "Contact Details"
msgstr ""

#: mod/mpr/edit.inc:202 mod/mpr/edit.inc:556 mod/mpr/add.inc:111
#: mod/mpr/add.inc:621 mod/mpr/view.inc:121
msgid "Postal Code"
msgstr ""

#: mod/mpr/edit.inc:233 mod/mpr/edit.inc:240 mod/mpr/edit.inc:518
#: mod/mpr/edit.inc:579 mod/mpr/search.inc:380 mod/mpr/add.inc:584
#: mod/mpr/add.inc:644 mod/mpr/view.inc:106 mod/mpr/view.inc:144
msgid "Comments"
msgstr ""

#: mod/mpr/edit.inc:238 mod/mpr/edit.inc:575 mod/mpr/search.inc:378
#: mod/mpr/add.inc:640 mod/mpr/view.inc:140
msgid "Last Seen"
msgstr ""

#: mod/mpr/edit.inc:239 mod/mpr/edit.inc:577 mod/mpr/search.inc:379
#: mod/mpr/add.inc:642 mod/mpr/view.inc:142
msgid "Last Clothing"
msgstr ""

#: mod/mpr/edit.inc:274 mod/mpr/add.inc:191
msgid "Height should be a value in centimeters(cm)"
msgstr ""

#: mod/mpr/edit.inc:281 mod/mpr/add.inc:203
msgid "Please enter the full name of the missing person"
msgstr ""

#: mod/mpr/edit.inc:305
msgid "Invalid image type.Please try again!"
msgstr ""

#: mod/mpr/edit.inc:394 mod/mpr/add.inc:217 mod/mpr/add.inc:464
msgid "Invalid image type please try again"
msgstr ""

#: mod/mpr/edit.inc:438 mod/mpr/search.inc:330
msgid "Person"
msgstr ""

#: mod/mpr/edit.inc:584
msgid "Reporting People"
msgstr ""

#: mod/mpr/edit.inc:593 mod/mpr/search.inc:448
msgid "Picture"
msgstr ""

#: mod/mpr/edit.inc:595 mod/mpr/edit.inc:868
msgid "Relationship"
msgstr ""

#: mod/mpr/edit.inc:616
msgid "Is the information that you've entered correct?"
msgstr ""

#: mod/mpr/edit.inc:861
msgid "Current Trackers"
msgstr ""

#: mod/mpr/edit.inc:887
msgid "Click to remove the tracker"
msgstr ""

#: mod/mpr/edit.inc:894 mod/mpr/search.inc:370 mod/mpr/admin.inc:299
msgid "Add Tracker"
msgstr ""

#: mod/mpr/edit.inc:896
msgid "Add a tracker"
msgstr ""

#: mod/mpr/search.inc:31
msgid "Basic Search"
msgstr ""

#: mod/mpr/search.inc:260 mod/mpr/search.inc:275
msgid "Total"
msgstr ""

#: mod/mpr/search.inc:260 mod/mpr/search.inc:275
msgid "Records were found"
msgstr ""

#: mod/mpr/search.inc:285
msgid "First"
msgstr ""

#: mod/mpr/search.inc:303
msgid "Last"
msgstr ""

#: mod/mpr/search.inc:332
msgid "Associated People"
msgstr ""

#: mod/mpr/search.inc:333
msgid "Missing Details"
msgstr ""

#: mod/mpr/search.inc:373
msgid "Associate another person"
msgstr ""

#: mod/mpr/search.inc:387 mod/mpr/search.inc:474
msgid "Change the status to Alive & Well"
msgstr ""

#: mod/mpr/search.inc:389 mod/mpr/search.inc:476
msgid "Click to change to found"
msgstr ""

#: mod/mpr/search.inc:394 mod/mpr/search.inc:396 mod/mpr/audit.inc:28
msgid "Audit"
msgstr ""

#: mod/mpr/images.inc:29
msgid "Add Another Picture"
msgstr ""

#: mod/mpr/conf.inc:26 mod/mpr/home.inc:22 mod/mpr/main.inc:61
#: mod/mpr/admin.inc:38 mod/mpr/admin.inc:285
msgid "Missing Person Registry"
msgstr ""

#: mod/mpr/home.inc:33
msgid ""
"The Missing person registry is an online bulletin board of missing and found "
"people.\n"
"It captures information about the people missing and found, as well as "
"information of the person seeking them, increasing the chances\n"
"of people finding each other. For example if two members of the a family "
"unit is\n"
"looking for the head of the family, we can use this data at least to connect "
"those two\n"
"family members."
msgstr ""

#: mod/mpr/home.inc:47
msgid ""
"Submitting information about the individual such as identification numbers, "
"physical appearance, last seen location, status, etc"
msgstr ""

#: mod/mpr/home.inc:48
msgid ""
"'Sounds-like' name search allowing search even the spelling of the name is "
"not known exactly"
msgstr ""

#: mod/mpr/home.inc:49
msgid "Facilitate uploading of missing person's photograph"
msgstr ""

#: mod/mpr/home.inc:50
msgid "Grouping by 'Family Unit' or other group category"
msgstr ""

#: mod/mpr/home.inc:55
msgid "Search for a person"
msgstr ""

#: mod/mpr/home.inc:55
msgid ""
"Search to see whether a person is lost contact with people known to him or "
"her"
msgstr ""

#: mod/mpr/home.inc:56
msgid "Report a missing person"
msgstr ""

#: mod/mpr/home.inc:56
msgid "Report details about a missing person"
msgstr ""

#: mod/mpr/home.inc:57
msgid "Edit missing person"
msgstr ""

#: mod/mpr/home.inc:57
msgid "Update the details of missing person entered to the database previously"
msgstr ""

#: mod/mpr/home.inc:58
msgid "Report a found person"
msgstr ""

#: mod/mpr/home.inc:58
msgid "Report information if the displaced person is found"
msgstr ""

#: mod/mpr/home.inc:59
msgid "List missing people"
msgstr ""

#: mod/mpr/home.inc:59
msgid "List all the missing person information available in the database"
msgstr ""

#: mod/mpr/home.inc:60
msgid "List found people"
msgstr ""

#: mod/mpr/home.inc:60
msgid "Lias all the information of found displaced people"
msgstr ""

#: mod/mpr/home.inc:75
msgid "Latest updates on Found People"
msgstr ""

#: mod/mpr/home.inc:90
msgid "Latest updates on Missing People"
msgstr ""

#: mod/mpr/report.inc:51 mod/mpr/report.inc:84 mod/mpr/report.inc:118
#: mod/mpr/report.inc:152
msgid "List of Missing People"
msgstr ""

#: mod/mpr/report.inc:52 mod/mpr/report.inc:85 mod/mpr/report.inc:119
#: mod/mpr/report.inc:153
msgid "This is the list of missing people"
msgstr ""

#: mod/mpr/report.inc:195 mod/mpr/report.inc:230 mod/mpr/report.inc:264
#: mod/mpr/report.inc:298
msgid "List of Found People"
msgstr ""

#: mod/mpr/report.inc:196 mod/mpr/report.inc:231 mod/mpr/report.inc:265
#: mod/mpr/report.inc:299
msgid "This is the list of found people"
msgstr ""

#: mod/mpr/list_missing.inc:23
msgid "Missing People"
msgstr ""

#: mod/mpr/audit.inc:57
msgid "User Making Changes"
msgstr ""

#: mod/mpr/audit.inc:58
msgid "Table Affected"
msgstr ""

#: mod/mpr/audit.inc:59
msgid "Field Affected"
msgstr ""

#: mod/mpr/audit.inc:60
msgid "Type of change"
msgstr ""

#: mod/mpr/audit.inc:61
msgid "Previous Value"
msgstr ""

#: mod/mpr/audit.inc:62
msgid "New Value"
msgstr ""

#: mod/mpr/audit.inc:68
msgid "Inserted"
msgstr ""

#: mod/mpr/list_found.inc:23
msgid "Found People"
msgstr ""

#: mod/mpr/main.inc:64
msgid "Search for a Person"
msgstr ""

#: mod/mpr/main.inc:65
msgid "Report a Missing Person"
msgstr ""

#: mod/mpr/main.inc:66
msgid "Edit a Missing Person"
msgstr ""

#: mod/mpr/main.inc:67
msgid "Report a Found Person"
msgstr ""

#: mod/mpr/main.inc:71
msgid "List Missing People"
msgstr ""

#: mod/mpr/main.inc:72
msgid "List Found People"
msgstr ""

#: mod/mpr/main.inc:188 mod/mpr/main.inc:196 mod/mpr/main.inc:212
#: mod/mpr/main.inc:223 mod/mpr/main.inc:255 mod/mpr/main.inc:265
#: mod/mpr/main.inc:284
msgid "Edit Missing Person Entry"
msgstr ""

#: mod/mpr/main.inc:215 mod/mpr/main.inc:245 mod/mpr/main.inc:339
#: mod/mpr/main.inc:354 mod/mpr/main.inc:379
msgid "Add a tracker to"
msgstr ""

#: mod/mpr/main.inc:270
#, php-format
msgid "Are you sure you want to delete tracker %s from tracker list"
msgstr ""

#: mod/mpr/main.inc:286
msgid "Edit Found Person Entry"
msgstr ""

#: mod/mpr/main.inc:305
msgid "View Person"
msgstr ""

#: mod/mpr/main.inc:400
msgid "Found Person Entry"
msgstr ""

#: mod/mpr/main.inc:401
msgid "Missing Person Entry"
msgstr ""

#: mod/mpr/main.inc:410 mod/mpr/main.inc:421 mod/mpr/main.inc:461
#: mod/mpr/main.inc:472 mod/mpr/add.inc:649
msgid "Reporting Person"
msgstr ""

#: mod/mpr/main.inc:414
msgid "Person Details"
msgstr ""

#: mod/mpr/main.inc:429 mod/mpr/main.inc:456 inc/lib_validate.inc:146
msgid "The "
msgstr ""

#: mod/mpr/main.inc:439
msgid "Please Select the person who is reporting"
msgstr ""

#: mod/mpr/add.inc:61
msgid ""
"Please do a search and check whether the person you are looking for is "
"already exists"
msgstr ""

#: mod/mpr/add.inc:76
msgid ""
"If you have any information about missing person's identity numbers, Please "
"include them since it will be helpful for finding the person. Otherwise "
"please ignore."
msgstr ""

#: mod/mpr/add.inc:85
msgid "Please enter any of the following details on the person:"
msgstr ""

#: mod/mpr/add.inc:103
msgid ""
"If you have a picture of the missing person, please upload the picture. So, "
"that it will be easy for us to identify the person. <br />It is not "
"required, so if you don't have a picture no need to upload."
msgstr ""

#: mod/mpr/add.inc:109
msgid "Missing Person's Contact Information"
msgstr ""

#: mod/mpr/add.inc:110
msgid "Your address can be specified to contact you"
msgstr ""

#: mod/mpr/add.inc:111
msgid "Specify a postal code, if it is available"
msgstr ""

#: mod/mpr/add.inc:132
msgid "Select Missing Person's Origin"
msgstr ""

#: mod/mpr/add.inc:140
msgid "Enter the value in centimeters(cm)"
msgstr ""

#: mod/mpr/add.inc:142
msgid "Other Distinctive Features"
msgstr ""

#: mod/mpr/add.inc:148
msgid "Last Seen location"
msgstr ""

#: mod/mpr/add.inc:149
msgid "Description of clothing and appearance when last seen"
msgstr ""

#: mod/mpr/add.inc:150
msgid "Other information that would help us to find this person"
msgstr ""

#: mod/mpr/add.inc:271
msgid ""
"We are collecting the information on the person who is reporting the missing "
"person due to the following reasons."
msgstr ""

#: mod/mpr/add.inc:273
msgid "To inform back on finding the missing person"
msgstr ""

#: mod/mpr/add.inc:274
msgid ""
"In a situation where the person who is reporting also a victim of the "
"disaster. The details given here would help to associate he/she with his/her "
"relatives."
msgstr ""

#: mod/mpr/add.inc:279
msgid "Details on Person who is reporting on missing person"
msgstr ""

#: mod/mpr/add.inc:281
msgid "Reported Before"
msgstr ""

#: mod/mpr/add.inc:283
msgid "Have you reported anyone? "
msgstr ""

#: mod/mpr/add.inc:301
msgid "Are you a disaster victim too? "
msgstr ""

#: mod/mpr/add.inc:317
msgid "If you are a victim, Please specify the status"
msgstr ""

#: mod/mpr/add.inc:324
msgid "Details of the reporting person"
msgstr ""

#: mod/mpr/add.inc:326
msgid ""
"NOTE : If you have reported before, we will use the following information to "
"perform a search to see you are in our database or not."
msgstr ""

#: mod/mpr/add.inc:345
msgid "IMPORTANT : At least one of the following contact method is required"
msgstr ""

#: mod/mpr/add.inc:348 mod/mpr/add.inc:661 mod/or/lib_or.inc:684
msgid "Phone"
msgstr ""

#: mod/mpr/add.inc:383
msgid "Please enter the full name of the reporting person"
msgstr ""

#: mod/mpr/add.inc:392
msgid "Please enter a valid E-mail"
msgstr ""

#: mod/mpr/add.inc:407
msgid "Please enter any contact method of the reporting person"
msgstr ""

#: mod/mpr/add.inc:436
msgid ""
"If you have a picture of the missing person, please upload the picture. So, "
"that it will be easy for us to identify the person. <br />If you don't have "
"a picture to upload just click the \"Next\" button."
msgstr ""

#: mod/mpr/add.inc:507
msgid "Missing Person"
msgstr ""

#: mod/mpr/add.inc:657
msgid "Relation"
msgstr ""

#: mod/mpr/add.inc:676
msgid "Click on the \"Next\" Button to go back to the main screen."
msgstr ""

#: mod/mpr/view.inc:149
msgid "People that are tracking"
msgstr ""

#: mod/mpr/view.inc:162
msgid "Click to edit"
msgstr ""

#: mod/mpr/admin.inc:40 mod/mpr/admin.inc:222
msgid "General Configuration"
msgstr ""

#: mod/mpr/admin.inc:42 mod/mpr/admin.inc:139
msgid "Manage Age Groups"
msgstr ""

#: mod/mpr/admin.inc:43 mod/mpr/admin.inc:149
msgid "Manage Race"
msgstr ""

#: mod/mpr/admin.inc:44 mod/mpr/admin.inc:159
msgid "Manage Religion"
msgstr ""

#: mod/mpr/admin.inc:45
msgid "Manage Blood Group"
msgstr ""

#: mod/mpr/admin.inc:46
msgid "Manage Eye Colors"
msgstr ""

#: mod/mpr/admin.inc:47
msgid "Manage Hair Colors"
msgstr ""

#: mod/mpr/admin.inc:48
msgid "Manage Skin Colors"
msgstr ""

#: mod/mpr/admin.inc:66
msgid "Welcome to the Missing Person Registry admin page"
msgstr ""

#: mod/mpr/admin.inc:67
msgid "Please use the navigation menu above to configure each field."
msgstr ""

#: mod/mpr/admin.inc:82
msgid "Please enter the no of images per page."
msgstr ""

#: mod/mpr/admin.inc:89
msgid "Search limit should be a number"
msgstr ""

#: mod/mpr/admin.inc:127
msgid "Manage Search"
msgstr ""

#: mod/mpr/admin.inc:169
msgid "Manage Blood Groups"
msgstr ""

#: mod/mpr/admin.inc:179
msgid "Manage Eye Color"
msgstr ""

#: mod/mpr/admin.inc:189
msgid "Manage Hair Color"
msgstr ""

#: mod/mpr/admin.inc:199
msgid "Manage Skin Color"
msgstr ""

#: mod/mpr/admin.inc:217
msgid "Updated"
msgstr ""

#: mod/mpr/admin.inc:247
msgid "Number of images per page"
msgstr ""

#: mod/mpr/admin.inc:275
msgid ""
"ACL Base for Missing Person Registry is already installed, This is a "
"reinstall"
msgstr ""

#: mod/mpr/admin.inc:297
msgid "Add Person"
msgstr ""

#: mod/mpr/admin.inc:298
msgid "Edit Person"
msgstr ""

#: mod/mpr/admin.inc:308
msgid "ACL Base for Missing Person Registry was successfully installed"
msgstr ""

#: mod/mpr/admin.inc:376
msgid "new_desc"
msgstr ""

#: mod/mpr/admin.inc:425
msgid "Please  enter the code"
msgstr ""

#: mod/mpr/admin.inc:427
msgid "Please  enter the description"
msgstr ""

#: mod/mpr/admin.inc:432
msgid "Code already exists"
msgstr ""

#: mod/mpr/admin.inc:486
msgid "AddNew"
msgstr ""

#: mod/mpr/stream.inc:14
msgid ""
"Welcome to the Sahana FOSS Disaster Management System Sahana is an "
"integrated set of pluggable, web based disaster management applications that "
"pr ovide solutions to large-scale humanitarian problems in the aftermath of "
"a disaster. These applications a nd problems they address are as follows:"
msgstr ""