Merge lp:~zack-krejci/healthscapes/trunk into lp:healthscapes/trunk

Proposed by Zack
Status: Merged
Merged at revision: 16
Proposed branch: lp:~zack-krejci/healthscapes/trunk
Merge into: lp:healthscapes/trunk
Diff against target: 10413 lines (+5836/-4031) (has conflicts)
29 files modified
controllers/default.py (+3/-0)
controllers/geodata.py (+69/-0)
controllers/gis.py (+30/-4)
controllers/lit.py.OTHER (+4/-0)
controllers/tool.py (+131/-5)
languages/en-gb.py (+3897/-3896)
models/geodata.py (+13/-0)
models/tool.py (+99/-33)
models/zzz_1st_run.py (+10/-9)
static/scripts/hs/hs_base.js (+55/-1)
static/scripts/hs/panels/create_panel.js (+1/-1)
static/scripts/hs/panels/data_panel.js (+394/-0)
static/scripts/hs/panels/side_panel.js (+542/-12)
static/scripts/hs/panels/tool_panel.js (+40/-10)
static/scripts/hs/windows/dev_window.js (+180/-0)
tool/Rplots.pdf (+244/-0)
tool/Tool Title.r (+7/-0)
tool/bbb.py (+10/-0)
tool/billy.r (+7/-0)
tool/bob.r (+1/-0)
tool/bobby.r (+1/-0)
tool/new_test.r (+1/-0)
tool/scatter.r (+4/-0)
tool/test2.py (+4/-0)
tool/test_r.r (+4/-0)
tool/testing.py (+9/-0)
tool/tttt.py (+1/-0)
views/gis/.Rhistory (+2/-0)
views/gis/hs.html (+73/-60)
Contents conflict in controllers/lit.py
Text conflict in models/tool.py
Text conflict in views/gis/hs.html
To merge this branch: bzr merge lp:~zack-krejci/healthscapes/trunk
Reviewer Review Type Date Requested Status
nicopresto Pending
Review via email: mp+56642@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'controllers/default.py'
2--- controllers/default.py 2011-01-24 22:39:23 +0000
3+++ controllers/default.py 2011-04-06 20:15:47 +0000
4@@ -43,6 +43,9 @@
5 def index():
6 """ Main Home Page """
7
8+ redirect (URL (a = request.application, c = 'gis', f = 'hs.html'))
9+ return
10+
11 def menu_box( title, ci, fi ):
12 """ Returns a menu_box linking to URL(ci, fi) """
13 return A( DIV(title, _class = "menu-box-r"), _class = "menu-box-l", _href = URL( r=request, c=ci, f=fi) )
14
15=== added file 'controllers/geodata.py'
16--- controllers/geodata.py 1970-01-01 00:00:00 +0000
17+++ controllers/geodata.py 2011-04-06 20:15:47 +0000
18@@ -0,0 +1,69 @@
19+import simplejson as json
20+
21+def maps():
22+ from urllib2 import urlopen
23+ from BeautifulSoup import BeautifulStoneSoup
24+ file = urlopen (deployment_settings.geoserver.capabilities ())
25+ buffer = file.read ()
26+ soup = BeautifulStoneSoup (buffer)
27+ layers = soup.findAll (name = 'layer')
28+ results = []
29+ for l in layers:
30+ name = l.find ('title')
31+ id = l.find ('name')
32+ if name and id:
33+ text = name.string
34+ if not text:
35+ text = id.string
36+ results.append ({'filename': id.string, 'name': text, 'type': 'db'})
37+ return json.dumps (results)
38+
39+def kw():
40+ from BeautifulSoup import BeautifulStoneSoup
41+ from urllib2 import urlopen
42+
43+ tmp_create_lit ()
44+ disease = request.vars.get ('d')
45+ result = db.executesql ('''
46+ SELECT keyword.kw, counts.count
47+ FROM (SELECT keycount.kw_id, keycount.count
48+ FROM (SELECT id
49+ FROM disease
50+ WHERE d = '%s') AS diseases
51+ INNER JOIN keycount
52+ ON keycount.d_id = diseases.id) AS counts
53+ INNER JOIN keyword
54+ ON keyword.id = counts.kw_id;
55+ ''' % (disease,))
56+ rList = []
57+ capabilities = urlopen (deployment_settings.geoserver.capabilities ()).read ()
58+ soup = BeautifulStoneSoup (capabilities)
59+ keywords = soup.findAll (name = 'keyword')
60+ for r in result:
61+ words = []
62+ for k in keywords:
63+ if k.string == r[0]:
64+ words.append (k)
65+ mapList = []
66+ for w in words:
67+ layer = w.parent.parent
68+ id = layer.find ('name').string
69+ name = layer.find ('title').string
70+ mapList.append ({'filename': id, 'name': name, 'type': 'db'})
71+ d = dict (kw = r[0], count = r[1], numMaps = len (words), maps = mapList)
72+ rList.append (d)
73+ return json.dumps (rList)
74+
75+def reset_maps():
76+ if not auth.user:
77+ raise HTTP (400)
78+ db (db.saved_maps.user_id == auth.user.id).update (json = '{}')
79+ return 'Ok'
80+
81+def save_maps():
82+ if not auth.user:
83+ raise HTTP (400)
84+ mapList = request.vars.get ('data')
85+ if mapList is None:
86+ raise HTTP (400)
87+ db (db.saved_maps.user_id == auth.user.id).update (json = mapList)
88
89=== modified file 'controllers/gis.py'
90--- controllers/gis.py 2011-02-13 06:03:30 +0000
91+++ controllers/gis.py 2011-04-06 20:15:47 +0000
92@@ -1981,16 +1981,42 @@
93 mouse_position = mouse_position
94 )
95
96+
97+def user():
98+ if auth.user:
99+ return str (auth.has_membership ('Developer', auth.user.id))
100+ else:
101+ return 'No user'
102+
103+
104 def hs():
105+ if auth.user:
106+ user_id = auth.user.id
107+ else:
108+ user_id = None
109 output=geoexplorer()
110 output.update ({'geoserver': deployment_settings.geoserver})
111- output.update ({'tool_list': load_tools (), 'tool_saved_results': load_results (), 'tool_saved_analyses': load_analyses ()})
112+ if user_id:
113+ output.update ({'side_bar': True, 'tool_list': load_tools (), 'tool_saved_results': load_results (user_id), 'tool_saved_analyses': load_analyses (user_id), 'maps_saved': load_maps (user_id)})
114+ if auth.has_membership ('Developer', auth.user.id):
115+ output.update ({'dev_tools': True, 'in_dev': load_dev_tools (user_id)})
116+ else:
117+ output.update ({'dev_tools': False})
118+ else:
119+ output.update ({'side_bar': False, 'dev_tools': False})
120+ response.title = 'Healthscapes'
121 return(output)
122
123 def reset_hs():
124- db.tool_results.truncate ()
125- db.saved_analyses.truncate ()
126- return 'Ok'
127+ if auth.user:
128+ if auth.has_membership ('Administrator', auth.user.id):
129+ db.tool_results.truncate ()
130+ db.saved_analyses.truncate ()
131+ db.tool_proposed.truncate ()
132+ db.saved_maps.truncate ()
133+ return 'Ok'
134+ raise HTTP (401)
135+
136
137 def about():
138 """ Custom View for GeoExplorer """
139
140=== added file 'controllers/lit.py.OTHER'
141--- controllers/lit.py.OTHER 1970-01-01 00:00:00 +0000
142+++ controllers/lit.py.OTHER 2011-04-06 20:15:47 +0000
143@@ -0,0 +1,4 @@
144+import simplejson as json
145+
146+def map():
147+ pass
148
149=== modified file 'controllers/tool.py'
150--- controllers/tool.py 2011-02-13 00:01:32 +0000
151+++ controllers/tool.py 2011-04-06 20:15:47 +0000
152@@ -8,7 +8,12 @@
153
154 from re import match
155
156+def user():
157+ return str (auth.user.id)
158+
159 def args():
160+ if not auth.user:
161+ raise HTTP (400)
162 name = request.vars.get ('tool')
163 if not name:
164 raise HTTP (400, 'Need Tool Name')
165@@ -16,6 +21,8 @@
166 return json.dumps (mod['args'])
167
168 def call():
169+ if not auth.user:
170+ raise HTTP (400)
171 name = request.vars.get ('tool')
172 if not name:
173 raise HTTP (400, 'Need Tool Name')
174@@ -52,16 +59,41 @@
175 if len (results) == 0:
176 raise HTTP (400, "Could not open analysis result")
177 result = results[0]
178+ if not result.public:
179+ if not auth.user:
180+ raise HTTP (400, 'Permission Denied')
181+ if result.user_id != auth.user.id:
182+ raise HTTP (400, 'Permission Denied')
183 file = open ('applications/' + request.application + '/tool/results/' + result.file_id, 'r')
184 response.headers['Content-Type'] = result.type
185 return file.read ()
186
187+def result_perm():
188+ if not auth.user:
189+ raise HTTP (400, 'Permission Denied')
190+ lookup_id = int (request.vars.get ('id'))
191+ perm = bool (int (request.vars.get ('perm')))
192+ results = db (db.tool_results.id == lookup_id).select ()
193+ if len (results) == 0:
194+ raise HTTP (400, "Could not locate analysis result")
195+ result = results[0]
196+ if result.user_id != auth.user.id:
197+ raise HTTP (400, 'Permission Denied')
198+ db (db.tool_results.id == lookup_id).update (public = perm)
199+ return str (db (db.tool_results.id == lookup_id).select ()[0].public)
200+
201 def result_type():
202+ if not auth.user:
203+ raise HTTP (400)
204 lookup_id = int (request.vars.get ('id'))
205 result = db (db.tool_results.id == lookup_id).select ()[0]
206 return result.type
207
208 def save_result():
209+ if not auth.user:
210+ raise HTTP (400)
211+ if not auth.user:
212+ raise HTTP (400, "Please authenticate")
213 lookup_id = int (request.vars.get ('id'))
214 filename = str (request.vars.get ('filename'))
215 if not clean_filename (filename):
216@@ -79,6 +111,8 @@
217 return json.dumps (result)"""
218
219 def save_analysis():
220+ if not auth.user:
221+ raise HTTP (400)
222 tool_ob = json.loads (request.vars.get ('tool'))
223 filename = request.vars.get ('filename')
224 if not clean_filename (filename):
225@@ -89,13 +123,105 @@
226 key = ob[0]
227 pairs.append ((key, request.vars.get (key)))
228 val = json.dumps (dict (pairs))
229- lookup_id = db.saved_analyses.insert (tool = request.vars.get ('tool'), filename = filename, json = val)
230+ lookup_id = db.saved_analyses.insert (tool = request.vars.get ('tool'), filename = filename, json = val, user_id = auth.user.id)
231 return json.dumps ({'id': lookup_id})
232
233-def create():
234- raise HTTP (501, "Cannot create tools until auth is supported")
235+'''def create():
236+ if not auth.user:
237+ raise HTTP (400)
238 name = request.vars.get ('title')
239 pytool = (request.vars.get ('type') == 'python')
240+ description = request.vars.get ('desc')
241+ if pytool:
242+ ext = '.py'
243+ else:
244+ ext = '.r'
245+ file = open ('applications/' + request.application + '/tool/' + name + ext, 'w')
246 code = request.vars.get ('text')
247- description = request.vars.get ('desc')
248- db.tool_proposed.insert (name = name, pytool = pytool, description = description)
249+ file.write (code)
250+ file.close ()
251+ db.tool_list.insert (name = name, pytool = pytool, description = description, filename = name)
252+'''
253+def create():
254+ if not auth.user:
255+ raise HTTP (400, "Permission Denied")
256+ name = request.vars.get ('name')
257+ #description = request.vars.get ('desc')
258+ description = "None"
259+ pytool = (request.vars.get ('type') == 'python')
260+ if pytool:
261+ ext = '.py'
262+ else:
263+ ext = '.r'
264+ path = 'applications/' + request.application + '/tool/' + name
265+ try:
266+ file = open (path + '.py')
267+ return json.dumps ({'err': 'Cannot create file'})
268+ except:
269+ pass
270+ try:
271+ file = open (path + '.r')
272+ return json.dumps ({'err': 'Cannot create file'})
273+ except:
274+ pass
275+
276+ file = open (path + ext, 'w')
277+
278+ if pytool:
279+ file.write ('''# Add parameters here. Each parameter is of the form (param_name, param_title, param_type)\ncargs = []\n\n# Implement tool function here. Parameters are accessible as attr[param_name].\n# The return type should be the MIME type of the result.\n# An IO Stream attr[\'file\'] is provided to store the result.\ndef ctool (**attr):\n pass''')
280+ else:
281+ file.write ('''# Add R code here. use the function HS_RequestParam (key, name, type)\n# Use this function to insert parameters from the main applciation to your tool\n''')
282+
283+ file.close ()
284+ id = db.tool_list.insert (name = name, pytool = pytool, description = description, filename = name, user_id = auth.user.id)
285+ return json.dumps ({'id': id, 'name': name, 'type': pytool})
286+
287+def read():
288+ lookup_id = int (request.vars.get ('id'))
289+ result = db (db.tool_list.id == lookup_id).select ()[0]
290+ if not result.public:
291+ if not auth.user:
292+ raise HTTP (400)
293+ if auth.user.id != result.user_id:
294+ raise HTTP (400)
295+ file = open (tool_path () + result.filename + tool_ext (result.pytool), 'r')
296+ buffer = file.read ()
297+ file.close ()
298+ buffer = buffer.replace (' ', ' ')
299+ buffer = buffer.replace ('\t', '    ')
300+ buffer = buffer.replace ('\n', '<br />\n')
301+ return buffer
302+
303+def dev_code():
304+ if not auth.user:
305+ raise HTTP (400)
306+ if not auth.has_membership ('Developer', auth.user.id):
307+ raise HTTP (400)
308+ lookup_id = int (request.vars.get ('id'))
309+ result = db (db.tool_list.id == lookup_id).select ()[0]
310+ if not result.public:
311+ if auth.user.id != result.user_id:
312+ raise HTTP (400)
313+ file = open (tool_path () + result.filename + tool_ext (result.pytool), 'r')
314+ buffer = file.read ()
315+ file.close ()
316+ return buffer
317+
318+def dev_save():
319+ if not auth.user:
320+ raise HTTP (400)
321+ if not auth.has_membership ('Developer', auth.user.id):
322+ raise HTTP (400)
323+ lookup_id = int (request.vars.get ('id'))
324+ text = request.vars.get ('text')
325+ result = db (db.tool_list.id == lookup_id).select ()[0]
326+ if auth.user.id != result.user_id:
327+ raise HTTP (400)
328+ file = open (tool_path () + result.filename + tool_ext (result.pytool), 'w')
329+ file.write (text)
330+ file.close ()
331+
332+def publish():
333+ lookup_id = int (request.vars.get ('id'))
334+ db (db.tool_list.id == lookup_id).update (public = True);
335+
336
337=== modified file 'languages/en-gb.py'
338--- languages/en-gb.py 2011-01-18 07:38:15 +0000
339+++ languages/en-gb.py 2011-04-06 20:15:47 +0000
340@@ -1,3896 +1,3897 @@
341-# coding: utf8
342-{
343-' (leave empty to detach account)': ' (leave empty to detach account)',
344-' Module is the main communications hub of the Sahana system. It is used to send alerts and/or messages using SMS & Email to various groups and individuals before, during and after a disaster.': ' Module is the main communications hub of the Sahana system. It is used to send alerts and/or messages using SMS & Email to various groups and individuals before, during and after a disaster.',
345-' by ': ' by ',
346-' is envisioned to be composed of several sub-modules that work together to provide complex functionality for the management of relief and project items by an organization. This includes an intake system, a warehouse management system, commodity tracking, supply chain management, fleet management, procurement, financial tracking and other asset and resource management capabilities.': ' is envisioned to be composed of several sub-modules that work together to provide complex functionality for the management of relief and project items by an organization. This includes an intake system, a warehouse management system, commodity tracking, supply chain management, fleet management, procurement, financial tracking and other asset and resource management capabilities.',
347-' on ': ' on ',
348-'"update" is an optional expression like "field1=\'newvalue\'". You cannot update or delete the results of a JOIN': '"update" is an optional expression like "field1=\'newvalue\'". You cannot update or delete the results of a JOIN',
349-'# of International Staff': '# of International Staff',
350-'# of National Staff': '# of National Staff',
351-'# of People Affected': '# of People Affected',
352-'# of People Deceased': '# of People Deceased',
353-'# of People Injured': '# of People Injured',
354-'# of Vehicles': '# of Vehicles',
355-'%Y-%m-%d %H:%M:%S': '%Y-%m-%d %H:%M:%S',
356-'%s rows deleted': '%s rows deleted',
357-'%s rows updated': '%s rows updated',
358-'(Constraints Only)': '(Constraints Only)',
359-') & then click on the map below to adjust the Lat/Lon fields:': ') & then click on the map below to adjust the Lat/Lon fields:',
360-'* Required Fields': '* Required Fields',
361-'0-15 minutes': '0-15 minutes',
362-'1 Assessment': '1 Assessment',
363-'1 location, shorter time, can contain multiple Tasks': '1 location, shorter time, can contain multiple Tasks',
364-'1-3 days': '1-3 days',
365-'1. Fill the necessary fields in BLOCK letters.': '1. Fill the necessary fields in BLOCK letters.',
366-'15-30 minutes': '15-30 minutes',
367-'2 different options are provided here currently:': '2 different options are provided here currently:',
368-'2. Always use one box per letter and leave one box space to seperate words.': '2. Always use one box per letter and leave one box space to seperate words.',
369-'2x4 Car': '2x4 Car',
370-'30-60 minutes': '30-60 minutes',
371-'4-7 days': '4-7 days',
372-'4x4 Car': '4x4 Car',
373-'8-14 days': '8-14 days',
374-'A Reference Document such as a file, URL or contact person to verify this data. You can type the 1st few characters of the document name to link to an existing document.': 'A Reference Document such as a file, URL or contact person to verify this data. You can type the 1st few characters of the document name to link to an existing document.',
375-'A Warehouse is a physical place to store items.': 'A Warehouse is a physical place to store items.',
376-'A Warehouse/Site is a physical location with an address and GIS data where Items are Stored. It can be a Building, a particular area in a city or anything similar.': 'A Warehouse/Site is a physical location with an address and GIS data where Items are Stored. It can be a Building, a particular area in a city or anything similar.',
377-'A brief description of the group (optional)': 'A brief description of the group (optional)',
378-'A file downloaded from a GPS containing a series of geographic points in XML format.': 'A file downloaded from a GPS containing a series of geographic points in XML format.',
379-'A file in GPX format taken from a GPS whose timestamps can be correlated with the timestamps on the photos to locate them on the map.': 'A file in GPX format taken from a GPS whose timestamps can be correlated with the timestamps on the photos to locate them on the map.',
380-'A library of digital resources, such as photos, documents and reports': 'A library of digital resources, such as photos, documents and reports',
381-'A place within a Site like a Shelf, room, bin number etc.': 'A place within a Site like a Shelf, room, bin number etc.',
382-'A snapshot of the bin or additional documents that contain supplementary information about it can be uploaded here.': 'A snapshot of the bin or additional documents that contain supplementary information about it can be uploaded here.',
383-'A snapshot of the location or additional documents that contain supplementary information about the Site Location can be uploaded here.': 'A snapshot of the location or additional documents that contain supplementary information about the Site Location can be uploaded here.',
384-'A snapshot of the location or additional documents that contain supplementary information about the Site can be uploaded here.': 'A snapshot of the location or additional documents that contain supplementary information about the Site can be uploaded here.',
385-'A survey series with id %s does not exist. Please go back and create one.': 'A survey series with id %s does not exist. Please go back and create one.',
386-'ABOUT': 'ABOUT',
387-'ABOUT THIS MODULE': 'ABOUT THIS MODULE',
388-'ACCESS DATA': 'ACCESS DATA',
389-'ANY': 'ANY',
390-'API is documented here': 'API is documented here',
391-'Ability to Fill Out Surveys': 'Ability to Fill Out Surveys',
392-'Ability to customize the list of details tracked at a Shelter': 'Ability to customize the list of details tracked at a Shelter',
393-'Ability to customize the list of human resource tracked at a Shelter': 'Ability to customize the list of human resource tracked at a Shelter',
394-'Ability to customize the list of important facilities needed at a Shelter': 'Ability to customize the list of important facilities needed at a Shelter',
395-'Ability to track partial fulfillment of the request': 'Ability to track partial fulfillment of the request',
396-'Ability to view Results of Completed and/or partially filled out Surveys': 'Ability to view Results of Completed and/or partially filled out Surveys',
397-'About': 'About',
398-'About Sahana': 'About Sahana',
399-'About Sahana Eden': 'About Sahana Eden',
400-'About this module': 'About this module',
401-'Access denied': 'Access denied',
402-'Accessibility of Affected Location': 'Accessibility of Affected Location',
403-'Account registered, however registration is still pending approval - please wait until confirmation received.': 'Account registered, however registration is still pending approval - please wait until confirmation received.',
404-'Acronym': 'Acronym',
405-"Acronym of the organization's name, eg. IFRC.": "Acronym of the organization's name, eg. IFRC.",
406-'Actionable by all targeted recipients': 'Actionable by all targeted recipients',
407-'Actionable only by designated exercise participants; exercise identifier SHOULD appear in <note>': 'Actionable only by designated exercise participants; exercise identifier SHOULD appear in <note>',
408-'Actioned?': 'Actioned?',
409-'Active Problems': 'Active Problems',
410-'Activities': 'Activities',
411-'Activities matching Assessments:': 'Activities matching Assessments:',
412-'Activities of boys 13-17yrs before disaster': 'Activities of boys 13-17yrs before disaster',
413-'Activities of boys 13-17yrs now': 'Activities of boys 13-17yrs now',
414-'Activities of boys <12yrs before disaster': 'Activities of boys <12yrs before disaster',
415-'Activities of boys <12yrs now': 'Activities of boys <12yrs now',
416-'Activities of girls 13-17yrs before disaster': 'Activities of girls 13-17yrs before disaster',
417-'Activities of girls 13-17yrs now': 'Activities of girls 13-17yrs now',
418-'Activities of girls <12yrs before disaster': 'Activities of girls <12yrs before disaster',
419-'Activities of girls <12yrs now': 'Activities of girls <12yrs now',
420-'Activities:': 'Activities:',
421-'Activity': 'Activity',
422-'Activity Added': 'Activity Added',
423-'Activity Deleted': 'Activity Deleted',
424-'Activity Details': 'Activity Details',
425-'Activity Report': 'Activity Report',
426-'Activity Reports': 'Activity Reports',
427-'Activity Type': 'Activity Type',
428-'Activity Updated': 'Activity Updated',
429-'Add': 'Add',
430-'Add Activity': 'Add Activity',
431-'Add Activity Report': 'Add Activity Report',
432-'Add Activity Type': 'Add Activity Type',
433-'Add Address': 'Add Address',
434-'Add Assessment': 'Add Assessment',
435-'Add Assessment Summary': 'Add Assessment Summary',
436-'Add Baseline': 'Add Baseline',
437-'Add Baseline Type': 'Add Baseline Type',
438-'Add Bed Type': 'Add Bed Type',
439-'Add Bin Type': 'Add Bin Type',
440-'Add Bins': 'Add Bins',
441-'Add Budget': 'Add Budget',
442-'Add Bundle': 'Add Bundle',
443-'Add Catalog': 'Add Catalog',
444-'Add Catalog Item': 'Add Catalog Item',
445-'Add Catalog.': 'Add Catalog.',
446-'Add Category': 'Add Category',
447-'Add Category<>Sub-Category<>Catalog Relation': 'Add Category<>Sub-Category<>Catalog Relation',
448-'Add Cholera Treatment Capability Information': 'Add Cholera Treatment Capability Information',
449-'Add Cluster Subsector': 'Add Cluster Subsector',
450-'Add Config': 'Add Config',
451-'Add Contact': 'Add Contact',
452-'Add Contact Information': 'Add Contact Information',
453-'Add Disaster Victims': 'Add Disaster Victims',
454-'Add Distribution.': 'Add Distribution.',
455-'Add Donor': 'Add Donor',
456-'Add Feature Class': 'Add Feature Class',
457-'Add Feature Layer': 'Add Feature Layer',
458-'Add Flood Report': 'Add Flood Report',
459-'Add Group': 'Add Group',
460-'Add Group Member': 'Add Group Member',
461-'Add Hospital': 'Add Hospital',
462-'Add Identification Report': 'Add Identification Report',
463-'Add Identity': 'Add Identity',
464-'Add Image': 'Add Image',
465-'Add Impact': 'Add Impact',
466-'Add Impact Type': 'Add Impact Type',
467-'Add Incident Report': 'Add Incident Report',
468-'Add Item': 'Add Item',
469-'Add Item (s)': 'Add Item (s)',
470-'Add Item Catalog': 'Add Item Catalog',
471-'Add Item Catalog ': 'Add Item Catalog ',
472-'Add Item Catalog Category ': 'Add Item Catalog Category ',
473-'Add Item Category': 'Add Item Category',
474-'Add Item Packet': 'Add Item Packet',
475-'Add Item Sub-Category': 'Add Item Sub-Category',
476-'Add Key': 'Add Key',
477-'Add Kit': 'Add Kit',
478-'Add Layer': 'Add Layer',
479-'Add Line': 'Add Line',
480-'Add Location': 'Add Location',
481-'Add Locations': 'Add Locations',
482-'Add Log Entry': 'Add Log Entry',
483-'Add Member': 'Add Member',
484-'Add Membership': 'Add Membership',
485-'Add Message': 'Add Message',
486-'Add Need': 'Add Need',
487-'Add Need Type': 'Add Need Type',
488-'Add New': 'Add New',
489-'Add New Activity': 'Add New Activity',
490-'Add New Address': 'Add New Address',
491-'Add New Assessment': 'Add New Assessment',
492-'Add New Assessment Summary': 'Add New Assessment Summary',
493-'Add New Baseline': 'Add New Baseline',
494-'Add New Baseline Type': 'Add New Baseline Type',
495-'Add New Bin': 'Add New Bin',
496-'Add New Bin Type': 'Add New Bin Type',
497-'Add New Budget': 'Add New Budget',
498-'Add New Bundle': 'Add New Bundle',
499-'Add New Catalog Item': 'Add New Catalog Item',
500-'Add New Cluster Subsector': 'Add New Cluster Subsector',
501-'Add New Config': 'Add New Config',
502-'Add New Contact': 'Add New Contact',
503-'Add New Document': 'Add New Document',
504-'Add New Donor': 'Add New Donor',
505-'Add New Entry': 'Add New Entry',
506-'Add New Feature Class': 'Add New Feature Class',
507-'Add New Feature Layer': 'Add New Feature Layer',
508-'Add New Flood Report': 'Add New Flood Report',
509-'Add New Group': 'Add New Group',
510-'Add New Hospital': 'Add New Hospital',
511-'Add New Identity': 'Add New Identity',
512-'Add New Image': 'Add New Image',
513-'Add New Impact': 'Add New Impact',
514-'Add New Impact Type': 'Add New Impact Type',
515-'Add New Incident Report': 'Add New Incident Report',
516-'Add New Item': 'Add New Item',
517-'Add New Item Catalog': 'Add New Item Catalog',
518-'Add New Item Catalog Category': 'Add New Item Catalog Category',
519-'Add New Item Category': 'Add New Item Category',
520-'Add New Item Packet': 'Add New Item Packet',
521-'Add New Item Sub-Category': 'Add New Item Sub-Category',
522-'Add New Item to Kit': 'Add New Item to Kit',
523-'Add New Key': 'Add New Key',
524-'Add New Kit': 'Add New Kit',
525-'Add New Layer': 'Add New Layer',
526-'Add New Location': 'Add New Location',
527-'Add New Log Entry': 'Add New Log Entry',
528-'Add New Marker': 'Add New Marker',
529-'Add New Member': 'Add New Member',
530-'Add New Membership': 'Add New Membership',
531-'Add New Need': 'Add New Need',
532-'Add New Need Type': 'Add New Need Type',
533-'Add New Office': 'Add New Office',
534-'Add New Organization': 'Add New Organization',
535-'Add New Photo': 'Add New Photo',
536-'Add New Position': 'Add New Position',
537-'Add New Problem': 'Add New Problem',
538-'Add New Project': 'Add New Project',
539-'Add New Projection': 'Add New Projection',
540-'Add New Rapid Assessment': 'Add New Rapid Assessment',
541-'Add New Received Item': 'Add New Received Item',
542-'Add New Record': 'Add New Record',
543-'Add New Report': 'Add New Report',
544-'Add New Request': 'Add New Request',
545-'Add New Request Item': 'Add New Request Item',
546-'Add New Resource': 'Add New Resource',
547-'Add New River': 'Add New River',
548-'Add New Role': 'Add New Role',
549-'Add New Role to User': 'Add New Role to User',
550-'Add New Sector': 'Add New Sector',
551-'Add New Sent Item': 'Add New Sent Item',
552-'Add New Setting': 'Add New Setting',
553-'Add New Shelter': 'Add New Shelter',
554-'Add New Shelter Service': 'Add New Shelter Service',
555-'Add New Shelter Type': 'Add New Shelter Type',
556-'Add New Site': 'Add New Site',
557-'Add New Skill': 'Add New Skill',
558-'Add New Skill Type': 'Add New Skill Type',
559-'Add New Solution': 'Add New Solution',
560-'Add New Staff': 'Add New Staff',
561-'Add New Staff Type': 'Add New Staff Type',
562-'Add New Storage Location': 'Add New Storage Location',
563-'Add New Survey Answer': 'Add New Survey Answer',
564-'Add New Survey Question': 'Add New Survey Question',
565-'Add New Survey Section': 'Add New Survey Section',
566-'Add New Survey Series': 'Add New Survey Series',
567-'Add New Survey Template': 'Add New Survey Template',
568-'Add New Task': 'Add New Task',
569-'Add New Team': 'Add New Team',
570-'Add New Theme': 'Add New Theme',
571-'Add New Ticket': 'Add New Ticket',
572-'Add New Track': 'Add New Track',
573-'Add New Unit': 'Add New Unit',
574-'Add New User': 'Add New User',
575-'Add New User to Role': 'Add New User to Role',
576-'Add New Warehouse': 'Add New Warehouse',
577-'Add New Warehouse Item': 'Add New Warehouse Item',
578-'Add Office': 'Add Office',
579-'Add Organization': 'Add Organization',
580-'Add Peer': 'Add Peer',
581-'Add Person': 'Add Person',
582-'Add Personal Effects': 'Add Personal Effects',
583-'Add Photo': 'Add Photo',
584-'Add Point': 'Add Point',
585-'Add Polygon': 'Add Polygon',
586-'Add Position': 'Add Position',
587-'Add Problem': 'Add Problem',
588-'Add Project': 'Add Project',
589-'Add Projection': 'Add Projection',
590-'Add Question': 'Add Question',
591-'Add Rapid Assessment': 'Add Rapid Assessment',
592-'Add Recipient': 'Add Recipient',
593-'Add Recipient Site': 'Add Recipient Site',
594-'Add Recipient Site.': 'Add Recipient Site.',
595-'Add Record': 'Add Record',
596-'Add Recovery Report': 'Add Recovery Report',
597-'Add Reference Document': 'Add Reference Document',
598-'Add Report': 'Add Report',
599-'Add Request': 'Add Request',
600-'Add Request Detail': 'Add Request Detail',
601-'Add Request Item': 'Add Request Item',
602-'Add Resource': 'Add Resource',
603-'Add River': 'Add River',
604-'Add Role': 'Add Role',
605-'Add Section': 'Add Section',
606-'Add Sector': 'Add Sector',
607-'Add Sender Organization': 'Add Sender Organization',
608-'Add Sender Site': 'Add Sender Site',
609-'Add Sender Site.': 'Add Sender Site.',
610-'Add Service Profile': 'Add Service Profile',
611-'Add Setting': 'Add Setting',
612-'Add Shelter': 'Add Shelter',
613-'Add Shelter Service': 'Add Shelter Service',
614-'Add Shelter Type': 'Add Shelter Type',
615-'Add Shipment Transit Log': 'Add Shipment Transit Log',
616-'Add Shipment/Way Bills': 'Add Shipment/Way Bills',
617-'Add Site': 'Add Site',
618-'Add Skill': 'Add Skill',
619-'Add Skill Type': 'Add Skill Type',
620-'Add Skill Types': 'Add Skill Types',
621-'Add Solution': 'Add Solution',
622-'Add Staff': 'Add Staff',
623-'Add Staff Type': 'Add Staff Type',
624-'Add Status': 'Add Status',
625-'Add Storage Bin ': 'Add Storage Bin ',
626-'Add Storage Bin Type': 'Add Storage Bin Type',
627-'Add Storage Location': 'Add Storage Location',
628-'Add Storage Location ': 'Add Storage Location ',
629-'Add Sub-Category': 'Add Sub-Category',
630-'Add Subscription': 'Add Subscription',
631-'Add Survey Answer': 'Add Survey Answer',
632-'Add Survey Question': 'Add Survey Question',
633-'Add Survey Section': 'Add Survey Section',
634-'Add Survey Series': 'Add Survey Series',
635-'Add Survey Template': 'Add Survey Template',
636-'Add Task': 'Add Task',
637-'Add Team': 'Add Team',
638-'Add Theme': 'Add Theme',
639-'Add Ticket': 'Add Ticket',
640-'Add Unit': 'Add Unit',
641-'Add User': 'Add User',
642-'Add Volunteer': 'Add Volunteer',
643-'Add Volunteer Registration': 'Add Volunteer Registration',
644-'Add Warehouse': 'Add Warehouse',
645-'Add Warehouse Item': 'Add Warehouse Item',
646-'Add a Person': 'Add a Person',
647-'Add a Reference Document such as a file, URL or contact person to verify this data. If you do not enter a Reference Document, your email will be displayed instead.': 'Add a Reference Document such as a file, URL or contact person to verify this data. If you do not enter a Reference Document, your email will be displayed instead.',
648-'Add a Volunteer': 'Add a Volunteer',
649-'Add a new Site from where the Item is being sent.': 'Add a new Site from where the Item is being sent.',
650-'Add a new Site where the Item is being sent to.': 'Add a new Site where the Item is being sent to.',
651-'Add an Photo.': 'Add an Photo.',
652-'Add main Item Category.': 'Add main Item Category.',
653-'Add main Item Sub-Category.': 'Add main Item Sub-Category.',
654-'Add new Group': 'Add new Group',
655-'Add new Individual': 'Add new Individual',
656-'Add new position.': 'Add new position.',
657-'Add new project.': 'Add new project.',
658-'Add new staff role.': 'Add new staff role.',
659-'Add the Storage Bin Type.': 'Add the Storage Bin Type.',
660-'Add the Storage Location where this bin is located.': 'Add the Storage Location where this bin is located.',
661-'Add the Storage Location where this this Bin belongs to.': 'Add the Storage Location where this this Bin belongs to.',
662-'Add the main Warehouse/Site information where this Bin belongs to.': 'Add the main Warehouse/Site information where this Bin belongs to.',
663-'Add the main Warehouse/Site information where this Item is to be added.': 'Add the main Warehouse/Site information where this Item is to be added.',
664-'Add the main Warehouse/Site information where this Storage location is.': 'Add the main Warehouse/Site information where this Storage location is.',
665-'Add the unit of measure if it doesnt exists already.': 'Add the unit of measure if it doesnt exists already.',
666-'Add to Bundle': 'Add to Bundle',
667-'Add to Catalog': 'Add to Catalog',
668-'Add to budget': 'Add to budget',
669-'Add/Edit/Remove Layers': 'Add/Edit/Remove Layers',
670-'Additional Beds / 24hrs': 'Additional Beds / 24hrs',
671-'Additional Comments': 'Additional Comments',
672-"Additional quantity quantifier – e.g. '4x5'.": "Additional quantity quantifier – e.g. '4x5'.",
673-'Address': 'Address',
674-'Address Details': 'Address Details',
675-'Address Type': 'Address Type',
676-'Address added': 'Address added',
677-'Address deleted': 'Address deleted',
678-'Address updated': 'Address updated',
679-'Addresses': 'Addresses',
680-'Adequate': 'Adequate',
681-'Adequate food and water available': 'Adequate food and water available',
682-'Adjust Item(s) Quantity': 'Adjust Item(s) Quantity',
683-'Adjust Items due to Theft/Loss': 'Adjust Items due to Theft/Loss',
684-'Admin Email': 'Admin Email',
685-'Admin Name': 'Admin Name',
686-'Admin Tel': 'Admin Tel',
687-'Administration': 'Administration',
688-'Administrator': 'Administrator',
689-'Admissions/24hrs': 'Admissions/24hrs',
690-'Adolescent (12-20)': 'Adolescent (12-20)',
691-'Adolescent participating in coping activities': 'Adolescent participating in coping activities',
692-'Adult (21-50)': 'Adult (21-50)',
693-'Adult ICU': 'Adult ICU',
694-'Adult Psychiatric': 'Adult Psychiatric',
695-'Adult female': 'Adult female',
696-'Adult male': 'Adult male',
697-'Adults in prisons': 'Adults in prisons',
698-'Advanced Bin Search': 'Advanced Bin Search',
699-'Advanced Catalog Search': 'Advanced Catalog Search',
700-'Advanced Category Search': 'Advanced Category Search',
701-'Advanced Item Search': 'Advanced Item Search',
702-'Advanced Location Search': 'Advanced Location Search',
703-'Advanced Site Search': 'Advanced Site Search',
704-'Advanced Sub-Category Search': 'Advanced Sub-Category Search',
705-'Advanced Unit Search': 'Advanced Unit Search',
706-'Advanced:': 'Advanced:',
707-'Advisory': 'Advisory',
708-'After clicking on the button, a set of paired items will be shown one by one. Please select the one solution from each pair that you prefer over the other.': 'After clicking on the button, a set of paired items will be shown one by one. Please select the one solution from each pair that you prefer over the other.',
709-'Age Group': 'Age Group',
710-'Age group': 'Age group',
711-'Age group does not match actual age.': 'Age group does not match actual age.',
712-'Aggravating factors': 'Aggravating factors',
713-'Aggregate Items': 'Aggregate Items',
714-'Agriculture': 'Agriculture',
715-'Air Transport Service': 'Air Transport Service',
716-'Air tajin': 'Air tajin',
717-'Aircraft Crash': 'Aircraft Crash',
718-'Aircraft Hijacking': 'Aircraft Hijacking',
719-'Airport Closure': 'Airport Closure',
720-'Airspace Closure': 'Airspace Closure',
721-'Alcohol': 'Alcohol',
722-'Alert': 'Alert',
723-'All': 'All',
724-'All Inbound & Outbound Messages are stored here': 'All Inbound & Outbound Messages are stored here',
725-'All Requested Items': 'All Requested Items',
726-'All Resources': 'All Resources',
727-'All data provided by the Sahana Software Foundation from this site is licenced under a Creative Commons Attribution licence. However, not all data originates here. Please consult the source field of each entry.': 'All data provided by the Sahana Software Foundation from this site is licenced under a Creative Commons Attribution licence. However, not all data originates here. Please consult the source field of each entry.',
728-'Allowed to push': 'Allowed to push',
729-'Allows a Budget to be drawn up': 'Allows a Budget to be drawn up',
730-'Allows authorized users to control which layers are available to the situation map.': 'Allows authorized users to control which layers are available to the situation map.',
731-'Alternative infant nutrition in use': 'Alternative infant nutrition in use',
732-'Alternative places for studying': 'Alternative places for studying',
733-'Alternative places for studying available': 'Alternative places for studying available',
734-'Ambulance Service': 'Ambulance Service',
735-'An intake system, a warehouse management system, commodity tracking, supply chain management, procurement and other asset and resource management capabilities.': 'An intake system, a warehouse management system, commodity tracking, supply chain management, procurement and other asset and resource management capabilities.',
736-'Analysis of Completed Surveys': 'Analysis of Completed Surveys',
737-'Animal Die Off': 'Animal Die Off',
738-'Animal Feed': 'Animal Feed',
739-'Animals': 'Animals',
740-'Answer Choices (One Per Line)': 'Answer Choices (One Per Line)',
741-'Anthropolgy': 'Anthropolgy',
742-'Antibiotics available': 'Antibiotics available',
743-'Antibiotics needed per 24h': 'Antibiotics needed per 24h',
744-'Apparent Age': 'Apparent Age',
745-'Apparent Gender': 'Apparent Gender',
746-'Appropriate clothing available': 'Appropriate clothing available',
747-'Appropriate cooking equipment/materials in HH': 'Appropriate cooking equipment/materials in HH',
748-'Approx. number of cases/48h': 'Approx. number of cases/48h',
749-'Approximately how many children under 5 with diarrhea in the past 48 hours?': 'Approximately how many children under 5 with diarrhea in the past 48 hours?',
750-'Archive not Delete': 'Archive not Delete',
751-'Arctic Outflow': 'Arctic Outflow',
752-'Are basic medical supplies available for health services since the disaster?': 'Are basic medical supplies available for health services since the disaster?',
753-'Are breast milk substitutes being used here since the disaster?': 'Are breast milk substitutes being used here since the disaster?',
754-'Are the areas that children, older people, and people with disabilities live in, play in and walk through on a daily basis physically safe?': 'Are the areas that children, older people, and people with disabilities live in, play in and walk through on a daily basis physically safe?',
755-'Are the chronically ill receiving sufficient care and assistance?': 'Are the chronically ill receiving sufficient care and assistance?',
756-'Are there adults living in prisons in this area?': 'Are there adults living in prisons in this area?',
757-'Are there alternative places for studying?': 'Are there alternative places for studying?',
758-'Are there cases of diarrhea among children under the age of 5?': 'Are there cases of diarrhea among children under the age of 5?',
759-'Are there children living in adult prisons in this area?': 'Are there children living in adult prisons in this area?',
760-'Are there children living in boarding schools in this area?': 'Are there children living in boarding schools in this area?',
761-'Are there children living in homes for disabled children in this area?': 'Are there children living in homes for disabled children in this area?',
762-'Are there children living in juvenile detention in this area?': 'Are there children living in juvenile detention in this area?',
763-'Are there children living in orphanages in this area?': 'Are there children living in orphanages in this area?',
764-'Are there children with chronical illnesses in your community?': 'Are there children with chronical illnesses in your community?',
765-'Are there health services functioning for the community since the disaster?': 'Are there health services functioning for the community since the disaster?',
766-'Are there older people living in care homes in this area?': 'Are there older people living in care homes in this area?',
767-'Are there older people with chronical illnesses in your community?': 'Are there older people with chronical illnesses in your community?',
768-'Are there people with chronical illnesses in your community?': 'Are there people with chronical illnesses in your community?',
769-'Are there separate latrines for women and men available?': 'Are there separate latrines for women and men available?',
770-'Are there staff present and caring for the residents in these institutions?': 'Are there staff present and caring for the residents in these institutions?',
771-'Area': 'Area',
772-'Assessment': 'Assessment',
773-'Assessment Details': 'Assessment Details',
774-'Assessment Reported': 'Assessment Reported',
775-'Assessment Summaries': 'Assessment Summaries',
776-'Assessment Summary Details': 'Assessment Summary Details',
777-'Assessment Summary added': 'Assessment Summary added',
778-'Assessment Summary deleted': 'Assessment Summary deleted',
779-'Assessment Summary updated': 'Assessment Summary updated',
780-'Assessment added': 'Assessment added',
781-'Assessment deleted': 'Assessment deleted',
782-'Assessment updated': 'Assessment updated',
783-'Assessments': 'Assessments',
784-'Assessments Needs vs. Activities': 'Assessments Needs vs. Activities',
785-'Assessments and Activities': 'Assessments and Activities',
786-'Assessments:': 'Assessments:',
787-'Assessor': 'Assessor',
788-'Assign Storage Location': 'Assign Storage Location',
789-'Assign to Org.': 'Assign to Org.',
790-'Assigned': 'Assigned',
791-'Assigned To': 'Assigned To',
792-'Assigned to': 'Assigned to',
793-'Assistance for immediate repair/reconstruction of houses': 'Assistance for immediate repair/reconstruction of houses',
794-'Assistant': 'Assistant',
795-'At/Visited Location (not virtual)': 'At/Visited Location (not virtual)',
796-'Attend to information sources as described in <instruction>': 'Attend to information sources as described in <instruction>',
797-'Attribution': 'Attribution',
798-'Audit Read': 'Audit Read',
799-'Audit Write': 'Audit Write',
800-"Authenticate system's Twitter account": "Authenticate system's Twitter account",
801-'Authentication Required': 'Authentication Required',
802-'Author': 'Author',
803-'Automotive': 'Automotive',
804-'Available Beds': 'Available Beds',
805-'Available Messages': 'Available Messages',
806-'Available Records': 'Available Records',
807-'Available databases and tables': 'Available databases and tables',
808-'Available from': 'Available from',
809-'Available in Viewer?': 'Available in Viewer?',
810-'Available until': 'Available until',
811-'Availablity': 'Availablity',
812-'Avalanche': 'Avalanche',
813-'Avoid the subject event as per the <instruction>': 'Avoid the subject event as per the <instruction>',
814-'Babies who are not being breastfed, what are they being fed on?': 'Babies who are not being breastfed, what are they being fed on?',
815-'Baby And Child Care': 'Baby And Child Care',
816-'Background Colour': 'Background Colour',
817-'Background Colour for Text blocks': 'Background Colour for Text blocks',
818-'Bahai': 'Bahai',
819-'Baldness': 'Baldness',
820-'Balochi': 'Balochi',
821-'Banana': 'Banana',
822-'Bank/micro finance': 'Bank/micro finance',
823-'Base Layer?': 'Base Layer?',
824-'Base Layers': 'Base Layers',
825-'Base Unit': 'Base Unit',
826-'Baseline Number of Beds': 'Baseline Number of Beds',
827-'Baseline Type': 'Baseline Type',
828-'Baseline Type Details': 'Baseline Type Details',
829-'Baseline Type added': 'Baseline Type added',
830-'Baseline Type deleted': 'Baseline Type deleted',
831-'Baseline Type updated': 'Baseline Type updated',
832-'Baseline Types': 'Baseline Types',
833-'Baseline added': 'Baseline added',
834-'Baseline deleted': 'Baseline deleted',
835-'Baseline number of beds of that type in this unit.': 'Baseline number of beds of that type in this unit.',
836-'Baseline updated': 'Baseline updated',
837-'Baselines': 'Baselines',
838-'Baselines Details': 'Baselines Details',
839-'Basic Assessment': 'Basic Assessment',
840-'Basic Assessment Reported': 'Basic Assessment Reported',
841-'Basic Details': 'Basic Details',
842-'Basic information on the requests and donations, such as category, the units, contact details and the status.': 'Basic information on the requests and donations, such as category, the units, contact details and the status.',
843-'Basic medical supplies available prior to disaster': 'Basic medical supplies available prior to disaster',
844-'Basic medical supplies available since disaster': 'Basic medical supplies available since disaster',
845-'Basic reports on the Shelter and drill-down by region': 'Basic reports on the Shelter and drill-down by region',
846-'Baud': 'Baud',
847-'Baud rate to use for your modem - The default is safe for most cases': 'Baud rate to use for your modem - The default is safe for most cases',
848-'Bed Capacity': 'Bed Capacity',
849-'Bed Capacity per Unit': 'Bed Capacity per Unit',
850-'Bed Type': 'Bed Type',
851-'Bed type already registered': 'Bed type already registered',
852-'Bedding materials available': 'Bedding materials available',
853-'Beneficiary Type': 'Beneficiary Type',
854-'Biological Hazard': 'Biological Hazard',
855-'Biscuits': 'Biscuits',
856-'Blizzard': 'Blizzard',
857-'Blood Type (AB0)': 'Blood Type (AB0)',
858-'Blowing Snow': 'Blowing Snow',
859-'Boat': 'Boat',
860-'Bodies found': 'Bodies found',
861-'Bodies recovered': 'Bodies recovered',
862-'Body': 'Body',
863-'Body Recovery Reports': 'Body Recovery Reports',
864-'Body Recovery Request': 'Body Recovery Request',
865-'Body Recovery Requests': 'Body Recovery Requests',
866-'Bomb': 'Bomb',
867-'Bomb Explosion': 'Bomb Explosion',
868-'Bomb Threat': 'Bomb Threat',
869-'Border Colour for Text blocks': 'Border Colour for Text blocks',
870-'Boys 13-18 yrs in affected area': 'Boys 13-18 yrs in affected area',
871-'Boys 13-18 yrs not attending school': 'Boys 13-18 yrs not attending school',
872-'Boys 6-12 yrs in affected area': 'Boys 6-12 yrs in affected area',
873-'Boys 6-12 yrs not attending school': 'Boys 6-12 yrs not attending school',
874-'Breast milk substitutes in use since disaster': 'Breast milk substitutes in use since disaster',
875-'Breast milk substitutes used prior to disaster': 'Breast milk substitutes used prior to disaster',
876-'Bricks': 'Bricks',
877-'Bridge Closed': 'Bridge Closed',
878-'Bucket': 'Bucket',
879-'Buddhist': 'Buddhist',
880-'Budget': 'Budget',
881-'Budget Details': 'Budget Details',
882-'Budget Updated': 'Budget Updated',
883-'Budget added': 'Budget added',
884-'Budget deleted': 'Budget deleted',
885-'Budget updated': 'Budget updated',
886-'Budgeting Module': 'Budgeting Module',
887-'Budgets': 'Budgets',
888-'Buffer': 'Buffer',
889-'Building Aide': 'Building Aide',
890-'Building Collapsed': 'Building Collapsed',
891-'Built using the Template agreed by a group of NGOs working together as the': 'Built using the Template agreed by a group of NGOs working together as the',
892-'Bulk Uploader': 'Bulk Uploader',
893-'Bundle': 'Bundle',
894-'Bundle Contents': 'Bundle Contents',
895-'Bundle Details': 'Bundle Details',
896-'Bundle Updated': 'Bundle Updated',
897-'Bundle added': 'Bundle added',
898-'Bundle deleted': 'Bundle deleted',
899-'Bundle updated': 'Bundle updated',
900-'Bundles': 'Bundles',
901-'Burn': 'Burn',
902-'Burn ICU': 'Burn ICU',
903-'Burned/charred': 'Burned/charred',
904-'Business damaged': 'Business damaged',
905-'By': 'By',
906-'By Warehouse': 'By Warehouse',
907-'CBA Women': 'CBA Women',
908-'CSS file %s not writable - unable to apply theme!': 'CSS file %s not writable - unable to apply theme!',
909-'Calculate': 'Calculate',
910-'Camp': 'Camp',
911-'Camp Coordination/Management': 'Camp Coordination/Management',
912-'Can users register themselves for authenticated login access?': 'Can users register themselves for authenticated login access?',
913-"Can't import tweepy": "Can't import tweepy",
914-'Cancel': 'Cancel',
915-'Cancelled': 'Cancelled',
916-'Candidate Matches for Body %s': 'Candidate Matches for Body %s',
917-'Canned Fish': 'Canned Fish',
918-'Cannot be empty': 'Cannot be empty',
919-'Capacity (Max Persons)': 'Capacity (Max Persons)',
920-'Capacity (W x D X H)': 'Capacity (W x D X H)',
921-'Capture Information on Disaster Victim groups (Tourists, Passengers, Families, etc.)': 'Capture Information on Disaster Victim groups (Tourists, Passengers, Families, etc.)',
922-'Capture Information on each disaster victim': 'Capture Information on each disaster victim',
923-'Capturing organizational information of a relief organization and all the projects they have in the region': 'Capturing organizational information of a relief organization and all the projects they have in the region',
924-'Capturing the essential services each Volunteer is providing and where': 'Capturing the essential services each Volunteer is providing and where',
925-'Capturing the projects each organization is providing and where': 'Capturing the projects each organization is providing and where',
926-'Cardiology': 'Cardiology',
927-'Cash available to restart business': 'Cash available to restart business',
928-'Cassava': 'Cassava',
929-'Casual Labor': 'Casual Labor',
930-'Catalog': 'Catalog',
931-'Catalog Item': 'Catalog Item',
932-'Catalog Item added': 'Catalog Item added',
933-'Catalog Item deleted': 'Catalog Item deleted',
934-'Catalog Item updated': 'Catalog Item updated',
935-'Catalog Items': 'Catalog Items',
936-'Catalog Name': 'Catalog Name',
937-'Category': 'Category',
938-'Category<>Sub-Category<>Catalog Relation': 'Category<>Sub-Category<>Catalog Relation',
939-'Category<>Sub-Category<>Catalog Relation added': 'Category<>Sub-Category<>Catalog Relation added',
940-'Category<>Sub-Category<>Catalog Relation deleted': 'Category<>Sub-Category<>Catalog Relation deleted',
941-'Category<>Sub-Category<>Catalog Relation updated': 'Category<>Sub-Category<>Catalog Relation updated',
942-'Central point to record details on People': 'Central point to record details on People',
943-'Change Password': 'Change Password',
944-'Check for errors in the URL, maybe the address was mistyped.': 'Check for errors in the URL, maybe the address was mistyped.',
945-'Check if the URL is pointing to a directory instead of a webpage.': 'Check if the URL is pointing to a directory instead of a webpage.',
946-'Check outbox for the message status': 'Check outbox for the message status',
947-'Check to delete': 'Check to delete',
948-'Check to delete:': 'Check to delete:',
949-'Checklist': 'Checklist',
950-'Checklist created': 'Checklist created',
951-'Checklist deleted': 'Checklist deleted',
952-'Checklist of Operations': 'Checklist of Operations',
953-'Checklist updated': 'Checklist updated',
954-'Chemical Hazard': 'Chemical Hazard',
955-'Chemical, Biological, Radiological, Nuclear or High-Yield Explosive threat or attack': 'Chemical, Biological, Radiological, Nuclear or High-Yield Explosive threat or attack',
956-'Chicken': 'Chicken',
957-'Child': 'Child',
958-'Child (2-11)': 'Child (2-11)',
959-'Child (< 18 yrs)': 'Child (< 18 yrs)',
960-'Child Abduction Emergency': 'Child Abduction Emergency',
961-'Child headed households (<18 yrs)': 'Child headed households (<18 yrs)',
962-'Children (2-5 years)': 'Children (2-5 years)',
963-'Children (5-15 years)': 'Children (5-15 years)',
964-'Children (< 2 years)': 'Children (< 2 years)',
965-'Children in adult prisons': 'Children in adult prisons',
966-'Children in boarding schools': 'Children in boarding schools',
967-'Children in homes for disabled children': 'Children in homes for disabled children',
968-'Children in juvenile detention': 'Children in juvenile detention',
969-'Children in orphanages': 'Children in orphanages',
970-'Children living on their own (without adults)': 'Children living on their own (without adults)',
971-'Children not enrolled in new school': 'Children not enrolled in new school',
972-'Children orphaned by the disaster': 'Children orphaned by the disaster',
973-'Children separated from their parents/caregivers': 'Children separated from their parents/caregivers',
974-'Children that have been sent to safe places': 'Children that have been sent to safe places',
975-'Children who have disappeared since the disaster': 'Children who have disappeared since the disaster',
976-'Children with chronical illnesses': 'Children with chronical illnesses',
977-'Chinese (Taiwan)': 'Chinese (Taiwan)',
978-'Cholera Treatment': 'Cholera Treatment',
979-'Cholera Treatment Capability': 'Cholera Treatment Capability',
980-'Cholera Treatment Center': 'Cholera Treatment Center',
981-'Cholera-Treatment-Center': 'Cholera-Treatment-Center',
982-'Choosing Skill and Resources of Volunteers': 'Choosing Skill and Resources of Volunteers',
983-'Christian': 'Christian',
984-'Church': 'Church',
985-'Circumstances of disappearance, other victims/witnesses who last saw the missing person alive.': 'Circumstances of disappearance, other victims/witnesses who last saw the missing person alive.',
986-'Civil Emergency': 'Civil Emergency',
987-'Click on the link ': 'Click on the link ',
988-'Client IP': 'Client IP',
989-'Clinical Laboratory': 'Clinical Laboratory',
990-'Clinical Operations': 'Clinical Operations',
991-'Clinical Status': 'Clinical Status',
992-'Close map': 'Close map',
993-'Closed': 'Closed',
994-'Clothing': 'Clothing',
995-'Cluster Distance': 'Cluster Distance',
996-'Cluster Subsector': 'Cluster Subsector',
997-'Cluster Subsector Details': 'Cluster Subsector Details',
998-'Cluster Subsector added': 'Cluster Subsector added',
999-'Cluster Subsector deleted': 'Cluster Subsector deleted',
1000-'Cluster Subsector updated': 'Cluster Subsector updated',
1001-'Cluster Subsectors': 'Cluster Subsectors',
1002-'Cluster Threshold': 'Cluster Threshold',
1003-'Cluster(s)': 'Cluster(s)',
1004-'Code': 'Code',
1005-'Cold Wave': 'Cold Wave',
1006-'Collective center': 'Collective center',
1007-'Colour for Underline of Subheadings': 'Colour for Underline of Subheadings',
1008-'Colour of Buttons when hovering': 'Colour of Buttons when hovering',
1009-'Colour of bottom of Buttons when not pressed': 'Colour of bottom of Buttons when not pressed',
1010-'Colour of bottom of Buttons when pressed': 'Colour of bottom of Buttons when pressed',
1011-'Colour of dropdown menus': 'Colour of dropdown menus',
1012-'Colour of selected Input fields': 'Colour of selected Input fields',
1013-'Colour of selected menu items': 'Colour of selected menu items',
1014-'Column Choices (One Per Line': 'Column Choices (One Per Line',
1015-'Combined Method': 'Combined Method',
1016-'Come back later.': 'Come back later.',
1017-'Come back later. Everyone visiting this site is probably experiencing the same problem as you.': 'Come back later. Everyone visiting this site is probably experiencing the same problem as you.',
1018-'Comment': 'Comment',
1019-'Comments': 'Comments',
1020-'Commiting a changed spreadsheet to the database': 'Commiting a changed spreadsheet to the database',
1021-'Communication problems': 'Communication problems',
1022-'Community Centre': 'Community Centre',
1023-'Community Health Center': 'Community Health Center',
1024-'Community Member': 'Community Member',
1025-'Complete Unit Label for e.g. meter for m.': 'Complete Unit Label for e.g. meter for m.',
1026-'Completed': 'Completed',
1027-'Complexion': 'Complexion',
1028-'Compose': 'Compose',
1029-'Compromised': 'Compromised',
1030-'Config': 'Config',
1031-'Config added': 'Config added',
1032-'Config deleted': 'Config deleted',
1033-'Config updated': 'Config updated',
1034-'Configs': 'Configs',
1035-'Configure Run-time Settings': 'Configure Run-time Settings',
1036-'Confirmed': 'Confirmed',
1037-'Conflict Details': 'Conflict Details',
1038-'Conflict Resolution': 'Conflict Resolution',
1039-'Consumable': 'Consumable',
1040-'Contact': 'Contact',
1041-'Contact Data': 'Contact Data',
1042-'Contact Details': 'Contact Details',
1043-'Contact Information': 'Contact Information',
1044-'Contact Method': 'Contact Method',
1045-'Contact Person': 'Contact Person',
1046-'Contact details': 'Contact details',
1047-'Contact information added': 'Contact information added',
1048-'Contact information deleted': 'Contact information deleted',
1049-'Contact information updated': 'Contact information updated',
1050-'Contact person(s) in case of news or further questions (if different from reporting person). Include telephone number, address and email as available.': 'Contact person(s) in case of news or further questions (if different from reporting person). Include telephone number, address and email as available.',
1051-'Contact us': 'Contact us',
1052-'Contacts': 'Contacts',
1053-'Contents': 'Contents',
1054-'Contributor': 'Contributor',
1055-'Conversion Tool': 'Conversion Tool',
1056-'Cooking NFIs': 'Cooking NFIs',
1057-'Cooking Oil': 'Cooking Oil',
1058-'Coordinate Conversion': 'Coordinate Conversion',
1059-'Copy': 'Copy',
1060-'Corn': 'Corn',
1061-'Cost Type': 'Cost Type',
1062-'Cost per Megabyte': 'Cost per Megabyte',
1063-'Cost per Minute': 'Cost per Minute',
1064-"Couldn't import tweepy library": "Couldn't import tweepy library",
1065-'Country': 'Country',
1066-'Country of Residence': 'Country of Residence',
1067-'Create & manage Distribution groups to receive Alerts': 'Create & manage Distribution groups to receive Alerts',
1068-'Create Checklist': 'Create Checklist',
1069-'Create Group Entry': 'Create Group Entry',
1070-'Create Impact Assessment': 'Create Impact Assessment',
1071-'Create Import Job': 'Create Import Job',
1072-'Create Mobile Impact Assessment': 'Create Mobile Impact Assessment',
1073-'Create New Import Job': 'Create New Import Job',
1074-'Create PDF': 'Create PDF',
1075-'Create Rapid Assessment': 'Create Rapid Assessment',
1076-'Create Request': 'Create Request',
1077-'Create Task': 'Create Task',
1078-'Create a group entry in the registry.': 'Create a group entry in the registry.',
1079-'Create, enter, and manage surveys.': 'Create, enter, and manage surveys.',
1080-'Creation of Surveys': 'Creation of Surveys',
1081-'Crime': 'Crime',
1082-'Criteria': 'Criteria',
1083-'Currency': 'Currency',
1084-'Current Group Members': 'Current Group Members',
1085-'Current Identities': 'Current Identities',
1086-'Current Location': 'Current Location',
1087-'Current Log Entries': 'Current Log Entries',
1088-'Current Memberships': 'Current Memberships',
1089-'Current Registrations': 'Current Registrations',
1090-'Current Status': 'Current Status',
1091-'Current Team Members': 'Current Team Members',
1092-'Current Twitter account': 'Current Twitter account',
1093-'Current greatest needs of vulnerable groups': 'Current greatest needs of vulnerable groups',
1094-'Current main income sources': 'Current main income sources',
1095-'Current major expenses': 'Current major expenses',
1096-'Current number of patients': 'Current number of patients',
1097-'Current problems, categories': 'Current problems, categories',
1098-'Current problems, details': 'Current problems, details',
1099-'Current request': 'Current request',
1100-'Current response': 'Current response',
1101-'Current session': 'Current session',
1102-'Current type of health problems, adults': 'Current type of health problems, adults',
1103-'Current type of health problems, children': 'Current type of health problems, children',
1104-'Current type of source for drinking water': 'Current type of source for drinking water',
1105-'Current type of source for sanitary water': 'Current type of source for sanitary water',
1106-'Custom Database Resource (e.g., anything defined as a resource in Sahana)': 'Custom Database Resource (e.g., anything defined as a resource in Sahana)',
1107-'Customisable category of aid': 'Customisable category of aid',
1108-'DECISION': 'DECISION',
1109-'DNA Profile': 'DNA Profile',
1110-'DNA Profiling': 'DNA Profiling',
1111-'Dam Overflow': 'Dam Overflow',
1112-'Dangerous Person': 'Dangerous Person',
1113-'Data uploaded': 'Data uploaded',
1114-'Database': 'Database',
1115-'Date': 'Date',
1116-'Date & Time': 'Date & Time',
1117-'Date Requested': 'Date Requested',
1118-'Date Required': 'Date Required',
1119-'Date and Time': 'Date and Time',
1120-'Date and Time of Goods receipt. By default shows the current time but can be modified by editing in the drop down list.': 'Date and Time of Goods receipt. By default shows the current time but can be modified by editing in the drop down list.',
1121-'Date and time this report relates to.': 'Date and time this report relates to.',
1122-'Date of Birth': 'Date of Birth',
1123-'Date of Latest Information on Beneficiaries Reached': 'Date of Latest Information on Beneficiaries Reached',
1124-'Date of Report': 'Date of Report',
1125-'Date/Time': 'Date/Time',
1126-'Date/Time of Find': 'Date/Time of Find',
1127-'Date/Time of disappearance': 'Date/Time of disappearance',
1128-'De-duplicator': 'De-duplicator',
1129-'Dead Body Details': 'Dead Body Details',
1130-'Dead Body Reports': 'Dead Body Reports',
1131-'Deaths in the past 24h': 'Deaths in the past 24h',
1132-'Deaths/24hrs': 'Deaths/24hrs',
1133-'Debug': 'Debug',
1134-'Decimal Degrees': 'Decimal Degrees',
1135-'Decomposed': 'Decomposed',
1136-'Default Height of the map window. In Window layout the map maximises to fill the window, so no need to set a large value here.': 'Default Height of the map window. In Window layout the map maximises to fill the window, so no need to set a large value here.',
1137-'Default Marker': 'Default Marker',
1138-'Default Width of the map window. In Window layout the map maximises to fill the window, so no need to set a large value here.': 'Default Width of the map window. In Window layout the map maximises to fill the window, so no need to set a large value here.',
1139-'Default synchronization policy': 'Default synchronization policy',
1140-'Defaults': 'Defaults',
1141-'Defaults updated': 'Defaults updated',
1142-'Defecation area for animals': 'Defecation area for animals',
1143-'Defines the icon used for display of features on handheld GPS.': 'Defines the icon used for display of features on handheld GPS.',
1144-'Defines the icon used for display of features on interactive map & KML exports. A Marker assigned to an individual Location is set if there is a need to override the Marker assigned to the Feature Class. If neither are defined, then the Default Marker is used.': 'Defines the icon used for display of features on interactive map & KML exports. A Marker assigned to an individual Location is set if there is a need to override the Marker assigned to the Feature Class. If neither are defined, then the Default Marker is used.',
1145-'Defines the marker used for display & the attributes visible in the popup.': 'Defines the marker used for display & the attributes visible in the popup.',
1146-'Degrees must be a number between -180 and 180': 'Degrees must be a number between -180 and 180',
1147-'Dehydration': 'Dehydration',
1148-'Delete': 'Delete',
1149-'Delete Assessment': 'Delete Assessment',
1150-'Delete Assessment Summary': 'Delete Assessment Summary',
1151-'Delete Baseline': 'Delete Baseline',
1152-'Delete Baseline Type': 'Delete Baseline Type',
1153-'Delete Budget': 'Delete Budget',
1154-'Delete Bundle': 'Delete Bundle',
1155-'Delete Catalog Item': 'Delete Catalog Item',
1156-'Delete Cluster Subsector': 'Delete Cluster Subsector',
1157-'Delete Config': 'Delete Config',
1158-'Delete Document': 'Delete Document',
1159-'Delete Donor': 'Delete Donor',
1160-'Delete Entry': 'Delete Entry',
1161-'Delete Feature Class': 'Delete Feature Class',
1162-'Delete Feature Layer': 'Delete Feature Layer',
1163-'Delete Group': 'Delete Group',
1164-'Delete Hospital': 'Delete Hospital',
1165-'Delete Image': 'Delete Image',
1166-'Delete Impact': 'Delete Impact',
1167-'Delete Impact Type': 'Delete Impact Type',
1168-'Delete Incident Report': 'Delete Incident Report',
1169-'Delete Item': 'Delete Item',
1170-'Delete Item Category': 'Delete Item Category',
1171-'Delete Item Packet': 'Delete Item Packet',
1172-'Delete Key': 'Delete Key',
1173-'Delete Kit': 'Delete Kit',
1174-'Delete Layer': 'Delete Layer',
1175-'Delete Location': 'Delete Location',
1176-'Delete Marker': 'Delete Marker',
1177-'Delete Membership': 'Delete Membership',
1178-'Delete Message': 'Delete Message',
1179-'Delete Need': 'Delete Need',
1180-'Delete Need Type': 'Delete Need Type',
1181-'Delete Office': 'Delete Office',
1182-'Delete Organization': 'Delete Organization',
1183-'Delete Peer': 'Delete Peer',
1184-'Delete Person': 'Delete Person',
1185-'Delete Photo': 'Delete Photo',
1186-'Delete Project': 'Delete Project',
1187-'Delete Projection': 'Delete Projection',
1188-'Delete Rapid Assessment': 'Delete Rapid Assessment',
1189-'Delete Received Item': 'Delete Received Item',
1190-'Delete Received Shipment': 'Delete Received Shipment',
1191-'Delete Record': 'Delete Record',
1192-'Delete Recovery Report': 'Delete Recovery Report',
1193-'Delete Report': 'Delete Report',
1194-'Delete Request': 'Delete Request',
1195-'Delete Request Item': 'Delete Request Item',
1196-'Delete Resource': 'Delete Resource',
1197-'Delete Section': 'Delete Section',
1198-'Delete Sector': 'Delete Sector',
1199-'Delete Sent Item': 'Delete Sent Item',
1200-'Delete Sent Shipment': 'Delete Sent Shipment',
1201-'Delete Service Profile': 'Delete Service Profile',
1202-'Delete Setting': 'Delete Setting',
1203-'Delete Skill': 'Delete Skill',
1204-'Delete Skill Type': 'Delete Skill Type',
1205-'Delete Staff Type': 'Delete Staff Type',
1206-'Delete Status': 'Delete Status',
1207-'Delete Subscription': 'Delete Subscription',
1208-'Delete Survey Answer': 'Delete Survey Answer',
1209-'Delete Survey Question': 'Delete Survey Question',
1210-'Delete Survey Section': 'Delete Survey Section',
1211-'Delete Survey Series': 'Delete Survey Series',
1212-'Delete Survey Template': 'Delete Survey Template',
1213-'Delete Unit': 'Delete Unit',
1214-'Delete User': 'Delete User',
1215-'Delete Volunteer': 'Delete Volunteer',
1216-'Delete Warehouse': 'Delete Warehouse',
1217-'Delete Warehouse Item': 'Delete Warehouse Item',
1218-'Delete from Server?': 'Delete from Server?',
1219-'Delivered': 'Delivered',
1220-'Delphi Decision Maker': 'Delphi Decision Maker',
1221-'Demographic': 'Demographic',
1222-'Demonstrations': 'Demonstrations',
1223-'Dental Examination': 'Dental Examination',
1224-'Dental Profile': 'Dental Profile',
1225-'Deployment': 'Deployment',
1226-'Describe the condition of the roads to your hospital.': 'Describe the condition of the roads to your hospital.',
1227-'Describe the procedure which this record relates to (e.g. "medical examination")': 'Describe the procedure which this record relates to (e.g. "medical examination")',
1228-'Description': 'Description',
1229-'Description of Bin Type': 'Description of Bin Type',
1230-'Description of Contacts': 'Description of Contacts',
1231-'Description of defecation area': 'Description of defecation area',
1232-'Description of drinking water source': 'Description of drinking water source',
1233-'Description of sanitary water source': 'Description of sanitary water source',
1234-'Description of water source before the disaster': 'Description of water source before the disaster',
1235-'Descriptive Text (e.g., Prose, etc)': 'Descriptive Text (e.g., Prose, etc)',
1236-'Designated for': 'Designated for',
1237-'Desire to remain with family': 'Desire to remain with family',
1238-'Destination': 'Destination',
1239-"Detailed address of the site for informational/logistics purpose. Please note that you can add GIS/Mapping data about this site in the 'Location' field mentioned below.": "Detailed address of the site for informational/logistics purpose. Please note that you can add GIS/Mapping data about this site in the 'Location' field mentioned below.",
1240-'Details': 'Details',
1241-'Dialysis': 'Dialysis',
1242-'Diarrhea': 'Diarrhea',
1243-'Diarrhea among children under 5': 'Diarrhea among children under 5',
1244-'Dignitary Visit': 'Dignitary Visit',
1245-'Dimensions of the storage bin. Input in the following format 1 x 2 x 3 for width x depth x height followed by choosing the unit from the drop down list.': 'Dimensions of the storage bin. Input in the following format 1 x 2 x 3 for width x depth x height followed by choosing the unit from the drop down list.',
1246-'Dimensions of the storage location. Input in the following format 1 x 2 x 3 for width x depth x height followed by choosing the unit from the drop down list.': 'Dimensions of the storage location. Input in the following format 1 x 2 x 3 for width x depth x height followed by choosing the unit from the drop down list.',
1247-'Direction': 'Direction',
1248-'Disabled': 'Disabled',
1249-'Disabled participating in coping activities': 'Disabled participating in coping activities',
1250-'Disabled?': 'Disabled?',
1251-'Disaster Victim Identification': 'Disaster Victim Identification',
1252-'Disaster Victim Registry': 'Disaster Victim Registry',
1253-'Disaster clean-up/repairs': 'Disaster clean-up/repairs',
1254-'Discharge (cusecs)': 'Discharge (cusecs)',
1255-'Discharges/24hrs': 'Discharges/24hrs',
1256-'Discussion Forum': 'Discussion Forum',
1257-'Discussion Forum on item': 'Discussion Forum on item',
1258-'Disease vectors': 'Disease vectors',
1259-'Dispatch': 'Dispatch',
1260-'Dispatch Items': 'Dispatch Items',
1261-'Dispensary': 'Dispensary',
1262-'Displaced': 'Displaced',
1263-'Displaced Populations': 'Displaced Populations',
1264-'Display Polygons?': 'Display Polygons?',
1265-'Display Routes?': 'Display Routes?',
1266-'Display Tracks?': 'Display Tracks?',
1267-'Display Waypoints?': 'Display Waypoints?',
1268-'Dispose': 'Dispose',
1269-'Dispose Expired/Unusable Items': 'Dispose Expired/Unusable Items',
1270-'Distance between defecation area and water source': 'Distance between defecation area and water source',
1271-'Distance between latrines and temporary shelter in meters': 'Distance between latrines and temporary shelter in meters',
1272-'Distance between shelter and latrines': 'Distance between shelter and latrines',
1273-'Distance(Kms)': 'Distance(Kms)',
1274-'Distribution': 'Distribution',
1275-'Distribution groups': 'Distribution groups',
1276-'District': 'District',
1277-'Do adolescent and youth in your community participate in activities that help them cope with the disaster? (ex. meetings, religious activities, volunteer in the community clean-up, etc)': 'Do adolescent and youth in your community participate in activities that help them cope with the disaster? (ex. meetings, religious activities, volunteer in the community clean-up, etc)',
1278-'Do households each have at least 2 containers (10-20 litres each) to hold water?': 'Do households each have at least 2 containers (10-20 litres each) to hold water?',
1279-'Do households have appropriate equipment and materials to cook their food (stove, pots, dished plates, and a mug/drinking vessel, etc)?': 'Do households have appropriate equipment and materials to cook their food (stove, pots, dished plates, and a mug/drinking vessel, etc)?',
1280-'Do households have bedding materials available (tarps, plastic mats, blankets)?': 'Do households have bedding materials available (tarps, plastic mats, blankets)?',
1281-'Do households have household water storage containers?': 'Do households have household water storage containers?',
1282-'Do minority members in your community participate in activities that help them cope with the disaster? (ex. meetings, religious activities, volunteer in the community clean-up, etc)': 'Do minority members in your community participate in activities that help them cope with the disaster? (ex. meetings, religious activities, volunteer in the community clean-up, etc)',
1283-'Do older people in your community participate in activities that help them cope with the disaster? (ex. meetings, religious activities, volunteer in the community clean-up, etc)': 'Do older people in your community participate in activities that help them cope with the disaster? (ex. meetings, religious activities, volunteer in the community clean-up, etc)',
1284-'Do people have at least 2 full sets of clothing (shirts, pants/sarong, underwear)?': 'Do people have at least 2 full sets of clothing (shirts, pants/sarong, underwear)?',
1285-'Do people have reliable access to sufficient sanitation/hygiene items (bathing soap, laundry soap, shampoo, toothpaste and toothbrush)?': 'Do people have reliable access to sufficient sanitation/hygiene items (bathing soap, laundry soap, shampoo, toothpaste and toothbrush)?',
1286-'Do people with disabilities in your community participate in activities that help them cope with the disaster? (ex. meetings, religious activities, volunteer in the community clean-up, etc)': 'Do people with disabilities in your community participate in activities that help them cope with the disaster? (ex. meetings, religious activities, volunteer in the community clean-up, etc)',
1287-'Do women and girls have easy access to sanitary materials?': 'Do women and girls have easy access to sanitary materials?',
1288-'Do women in your community participate in activities that help them cope with the disaster? (ex. meetings, religious activities, volunteer in the community clean-up, etc)': 'Do women in your community participate in activities that help them cope with the disaster? (ex. meetings, religious activities, volunteer in the community clean-up, etc)',
1289-'Do you have access to cash to restart your business?': 'Do you have access to cash to restart your business?',
1290-'Do you know of any incidents of violence?': 'Do you know of any incidents of violence?',
1291-'Do you know of children living on their own (without adults)?': 'Do you know of children living on their own (without adults)?',
1292-'Do you know of children separated from their parents or caregivers?': 'Do you know of children separated from their parents or caregivers?',
1293-'Do you know of children that have been orphaned by the disaster?': 'Do you know of children that have been orphaned by the disaster?',
1294-'Do you know of children that have been sent to safe places?': 'Do you know of children that have been sent to safe places?',
1295-'Do you know of children that have disappeared without explanation in the period since the disaster?': 'Do you know of children that have disappeared without explanation in the period since the disaster?',
1296-'Do you know of older people who are primary caregivers of children?': 'Do you know of older people who are primary caregivers of children?',
1297-'Do you know of parents/caregivers missing children?': 'Do you know of parents/caregivers missing children?',
1298-'Do you really want to delete these records?': 'Do you really want to delete these records?',
1299-'Do you want to receive this shipment?': 'Do you want to receive this shipment?',
1300-'Document': 'Document',
1301-'Document Details': 'Document Details',
1302-'Document Scan': 'Document Scan',
1303-'Document added': 'Document added',
1304-'Document deleted': 'Document deleted',
1305-'Document updated': 'Document updated',
1306-'Documents': 'Documents',
1307-'Documents and Photos': 'Documents and Photos',
1308-'Does this facility provide a cholera treatment center?': 'Does this facility provide a cholera treatment center?',
1309-'Doing nothing (no structured activity)': 'Doing nothing (no structured activity)',
1310-'Dollars': 'Dollars',
1311-'Domestic chores': 'Domestic chores',
1312-'Donation Phone #': 'Donation Phone #',
1313-'Donor': 'Donor',
1314-'Donor Details': 'Donor Details',
1315-'Donor added': 'Donor added',
1316-'Donor deleted': 'Donor deleted',
1317-'Donor updated': 'Donor updated',
1318-'Donors': 'Donors',
1319-'Donors Report': 'Donors Report',
1320-'Door frame': 'Door frame',
1321-'Draft': 'Draft',
1322-'Draft Features': 'Draft Features',
1323-'Drainage': 'Drainage',
1324-'Drawing up a Budget for Staff & Equipment across various Locations.': 'Drawing up a Budget for Staff & Equipment across various Locations.',
1325-'Drill Down by Group': 'Drill Down by Group',
1326-'Drill Down by Incident': 'Drill Down by Incident',
1327-'Drill Down by Shelter': 'Drill Down by Shelter',
1328-'Driving License': 'Driving License',
1329-'Drought': 'Drought',
1330-'Drugs': 'Drugs',
1331-'Dug Well': 'Dug Well',
1332-'Duplicate?': 'Duplicate?',
1333-'Duration': 'Duration',
1334-'Dust Storm': 'Dust Storm',
1335-'Dwellings': 'Dwellings',
1336-'E-mail': 'E-mail',
1337-'EMS Reason': 'EMS Reason',
1338-'EMS Status': 'EMS Status',
1339-'ER Status': 'ER Status',
1340-'ER Status Reason': 'ER Status Reason',
1341-'Early Recovery': 'Early Recovery',
1342-'Earthquake': 'Earthquake',
1343-'Easy access to sanitation items for women/girls': 'Easy access to sanitation items for women/girls',
1344-'Edit': 'Edit',
1345-'Edit Activity': 'Edit Activity',
1346-'Edit Address': 'Edit Address',
1347-'Edit Application': 'Edit Application',
1348-'Edit Assessment': 'Edit Assessment',
1349-'Edit Assessment Summary': 'Edit Assessment Summary',
1350-'Edit Baseline': 'Edit Baseline',
1351-'Edit Baseline Type': 'Edit Baseline Type',
1352-'Edit Budget': 'Edit Budget',
1353-'Edit Bundle': 'Edit Bundle',
1354-'Edit Catalog Item': 'Edit Catalog Item',
1355-'Edit Category<>Sub-Category<>Catalog Relation': 'Edit Category<>Sub-Category<>Catalog Relation',
1356-'Edit Cluster Subsector': 'Edit Cluster Subsector',
1357-'Edit Config': 'Edit Config',
1358-'Edit Contact': 'Edit Contact',
1359-'Edit Contact Information': 'Edit Contact Information',
1360-'Edit Contents': 'Edit Contents',
1361-'Edit Defaults': 'Edit Defaults',
1362-'Edit Description': 'Edit Description',
1363-'Edit Details': 'Edit Details',
1364-'Edit Disaster Victims': 'Edit Disaster Victims',
1365-'Edit Document': 'Edit Document',
1366-'Edit Donor': 'Edit Donor',
1367-'Edit Email Settings': 'Edit Email Settings',
1368-'Edit Feature Class': 'Edit Feature Class',
1369-'Edit Feature Layer': 'Edit Feature Layer',
1370-'Edit Flood Report': 'Edit Flood Report',
1371-'Edit Gateway Settings': 'Edit Gateway Settings',
1372-'Edit Group': 'Edit Group',
1373-'Edit Hospital': 'Edit Hospital',
1374-'Edit Identification Report': 'Edit Identification Report',
1375-'Edit Identity': 'Edit Identity',
1376-'Edit Image': 'Edit Image',
1377-'Edit Image Details': 'Edit Image Details',
1378-'Edit Impact': 'Edit Impact',
1379-'Edit Impact Type': 'Edit Impact Type',
1380-'Edit Incident Report': 'Edit Incident Report',
1381-'Edit Item': 'Edit Item',
1382-'Edit Item Catalog': 'Edit Item Catalog',
1383-'Edit Item Catalog Categories': 'Edit Item Catalog Categories',
1384-'Edit Item Category': 'Edit Item Category',
1385-'Edit Item Packet': 'Edit Item Packet',
1386-'Edit Item Sub-Categories': 'Edit Item Sub-Categories',
1387-'Edit Key': 'Edit Key',
1388-'Edit Kit': 'Edit Kit',
1389-'Edit Layer': 'Edit Layer',
1390-'Edit Location': 'Edit Location',
1391-'Edit Log Entry': 'Edit Log Entry',
1392-'Edit Map Services': 'Edit Map Services',
1393-'Edit Marker': 'Edit Marker',
1394-'Edit Membership': 'Edit Membership',
1395-'Edit Message': 'Edit Message',
1396-'Edit Messaging Settings': 'Edit Messaging Settings',
1397-'Edit Modem Settings': 'Edit Modem Settings',
1398-'Edit Need': 'Edit Need',
1399-'Edit Need Type': 'Edit Need Type',
1400-'Edit Office': 'Edit Office',
1401-'Edit Options': 'Edit Options',
1402-'Edit Organization': 'Edit Organization',
1403-'Edit Parameters': 'Edit Parameters',
1404-'Edit Peer Details': 'Edit Peer Details',
1405-'Edit Person Details': 'Edit Person Details',
1406-'Edit Personal Effects Details': 'Edit Personal Effects Details',
1407-'Edit Photo': 'Edit Photo',
1408-'Edit Position': 'Edit Position',
1409-'Edit Problem': 'Edit Problem',
1410-'Edit Project': 'Edit Project',
1411-'Edit Projection': 'Edit Projection',
1412-'Edit Rapid Assessment': 'Edit Rapid Assessment',
1413-'Edit Received Item': 'Edit Received Item',
1414-'Edit Received Shipment': 'Edit Received Shipment',
1415-'Edit Record': 'Edit Record',
1416-'Edit Recovery Details': 'Edit Recovery Details',
1417-'Edit Registration': 'Edit Registration',
1418-'Edit Registration Details': 'Edit Registration Details',
1419-'Edit Report': 'Edit Report',
1420-'Edit Request': 'Edit Request',
1421-'Edit Request Item': 'Edit Request Item',
1422-'Edit Resource': 'Edit Resource',
1423-'Edit River': 'Edit River',
1424-'Edit Role': 'Edit Role',
1425-'Edit Sector': 'Edit Sector',
1426-'Edit Sent Item': 'Edit Sent Item',
1427-'Edit Sent Shipment': 'Edit Sent Shipment',
1428-'Edit Setting': 'Edit Setting',
1429-'Edit Settings': 'Edit Settings',
1430-'Edit Shelter': 'Edit Shelter',
1431-'Edit Shelter Service': 'Edit Shelter Service',
1432-'Edit Shelter Type': 'Edit Shelter Type',
1433-'Edit Shipment Transit Log': 'Edit Shipment Transit Log',
1434-'Edit Shipment/Way Bills': 'Edit Shipment/Way Bills',
1435-'Edit Shipment<>Item Relation': 'Edit Shipment<>Item Relation',
1436-'Edit Site': 'Edit Site',
1437-'Edit Skill': 'Edit Skill',
1438-'Edit Skill Type': 'Edit Skill Type',
1439-'Edit Solution': 'Edit Solution',
1440-'Edit Staff': 'Edit Staff',
1441-'Edit Staff Type': 'Edit Staff Type',
1442-'Edit Storage Bin Type(s)': 'Edit Storage Bin Type(s)',
1443-'Edit Storage Bins': 'Edit Storage Bins',
1444-'Edit Storage Location': 'Edit Storage Location',
1445-'Edit Subscription': 'Edit Subscription',
1446-'Edit Survey Answer': 'Edit Survey Answer',
1447-'Edit Survey Question': 'Edit Survey Question',
1448-'Edit Survey Section': 'Edit Survey Section',
1449-'Edit Survey Series': 'Edit Survey Series',
1450-'Edit Survey Template': 'Edit Survey Template',
1451-'Edit Task': 'Edit Task',
1452-'Edit Team': 'Edit Team',
1453-'Edit Theme': 'Edit Theme',
1454-'Edit Themes': 'Edit Themes',
1455-'Edit Ticket': 'Edit Ticket',
1456-'Edit Track': 'Edit Track',
1457-'Edit Tropo Settings': 'Edit Tropo Settings',
1458-'Edit Unit': 'Edit Unit',
1459-'Edit User': 'Edit User',
1460-'Edit Volunteer Details': 'Edit Volunteer Details',
1461-'Edit Volunteer Registration': 'Edit Volunteer Registration',
1462-'Edit Warehouse': 'Edit Warehouse',
1463-'Edit Warehouse Item': 'Edit Warehouse Item',
1464-'Edit current record': 'Edit current record',
1465-'Edit message': 'Edit message',
1466-'Edit the Application': 'Edit the Application',
1467-'Edit the OpenStreetMap data for this area': 'Edit the OpenStreetMap data for this area',
1468-'Editable?': 'Editable?',
1469-'Education': 'Education',
1470-'Education materials received': 'Education materials received',
1471-'Education materials, source': 'Education materials, source',
1472-'Effects Inventory': 'Effects Inventory',
1473-'Eggs': 'Eggs',
1474-'Either a shelter or a location must be specified': 'Either a shelter or a location must be specified',
1475-'Either file upload or document URL required.': 'Either file upload or document URL required.',
1476-'Either file upload or image URL required.': 'Either file upload or image URL required.',
1477-'Elderly person headed households (>60 yrs)': 'Elderly person headed households (>60 yrs)',
1478-'Electrical': 'Electrical',
1479-'Elevated': 'Elevated',
1480-'Email': 'Email',
1481-'Email Settings': 'Email Settings',
1482-'Email address verified, however registration is still pending approval - please wait until confirmation received.': 'Email address verified, however registration is still pending approval - please wait until confirmation received.',
1483-'Email settings updated': 'Email settings updated',
1484-'Embalming': 'Embalming',
1485-'Embassy': 'Embassy',
1486-'Emergency Capacity Building project': 'Emergency Capacity Building project',
1487-'Emergency Department': 'Emergency Department',
1488-'Emergency Shelter': 'Emergency Shelter',
1489-'Emergency Support Facility': 'Emergency Support Facility',
1490-'Emergency Support Service': 'Emergency Support Service',
1491-'Emergency Telecommunications': 'Emergency Telecommunications',
1492-'Enable/Disable Layers': 'Enable/Disable Layers',
1493-'Enabled': 'Enabled',
1494-'End date': 'End date',
1495-'End date should be after start date': 'End date should be after start date',
1496-'End of Period': 'End of Period',
1497-'English': 'English',
1498-'Enter Coordinates:': 'Enter Coordinates:',
1499-'Enter a GPS Coord': 'Enter a GPS Coord',
1500-'Enter a date before': 'Enter a date before',
1501-'Enter a location': 'Enter a location',
1502-'Enter a name for the spreadsheet you are uploading (mandatory).': 'Enter a name for the spreadsheet you are uploading (mandatory).',
1503-'Enter a new support request.': 'Enter a new support request.',
1504-'Enter a summary of the request here.': 'Enter a summary of the request here.',
1505-'Enter a unique label!': 'Enter a unique label!',
1506-'Enter a valid email': 'Enter a valid email',
1507-'Enter tags separated by commas.': 'Enter tags separated by commas.',
1508-'Enter the same password as above': 'Enter the same password as above',
1509-'Enter your firstname': 'Enter your firstname',
1510-'Entering a phone number is optional, but doing so allows you to subscribe to receive SMS messages.': 'Entering a phone number is optional, but doing so allows you to subscribe to receive SMS messages.',
1511-'Entry deleted': 'Entry deleted',
1512-'Equipment': 'Equipment',
1513-'Error encountered while applying the theme.': 'Error encountered while applying the theme.',
1514-'Error in message': 'Error in message',
1515-'Error logs for "%(app)s"': 'Error logs for "%(app)s"',
1516-'Errors': 'Errors',
1517-'Estimated # of households who are affected by the emergency': 'Estimated # of households who are affected by the emergency',
1518-'Estimated # of people who are affected by the emergency': 'Estimated # of people who are affected by the emergency',
1519-'Estimated total number of people in institutions': 'Estimated total number of people in institutions',
1520-'Euros': 'Euros',
1521-'Evacuating': 'Evacuating',
1522-'Evaluate the information in this message. (This value SHOULD NOT be used in public warning applications.)': 'Evaluate the information in this message. (This value SHOULD NOT be used in public warning applications.)',
1523-'Event type': 'Event type',
1524-'Example': 'Example',
1525-'Exceeded': 'Exceeded',
1526-'Excreta disposal': 'Excreta disposal',
1527-'Execute a pre-planned activity identified in <instruction>': 'Execute a pre-planned activity identified in <instruction>',
1528-'Existing food stocks, main dishes': 'Existing food stocks, main dishes',
1529-'Existing food stocks, side dishes': 'Existing food stocks, side dishes',
1530-'Expected In': 'Expected In',
1531-'Expected Out': 'Expected Out',
1532-'Explosive Hazard': 'Explosive Hazard',
1533-'Export': 'Export',
1534-'Export Data': 'Export Data',
1535-'Export Database as CSV': 'Export Database as CSV',
1536-'Export in GPX format': 'Export in GPX format',
1537-'Export in KML format': 'Export in KML format',
1538-'Export in OSM format': 'Export in OSM format',
1539-'Export in PDF format': 'Export in PDF format',
1540-'Export in RSS format': 'Export in RSS format',
1541-'Export in XLS format': 'Export in XLS format',
1542-'External Features': 'External Features',
1543-'Eye Color': 'Eye Color',
1544-'Facebook': 'Facebook',
1545-'Facial hair, color': 'Facial hair, color',
1546-'Facial hair, type': 'Facial hair, type',
1547-'Facial hear, length': 'Facial hear, length',
1548-'Facility Operations': 'Facility Operations',
1549-'Facility Status': 'Facility Status',
1550-'Facility Type': 'Facility Type',
1551-'Factors affecting school attendance': 'Factors affecting school attendance',
1552-'Failed to send mail to Approver - see if you can notify them manually!': 'Failed to send mail to Approver - see if you can notify them manually!',
1553-'Failed!': 'Failed!',
1554-'Falling Object Hazard': 'Falling Object Hazard',
1555-'Families/HH': 'Families/HH',
1556-'Family': 'Family',
1557-'Family tarpaulins received': 'Family tarpaulins received',
1558-'Family tarpaulins, source': 'Family tarpaulins, source',
1559-'Family/friends': 'Family/friends',
1560-'Farmland/fishing material assistance, Rank': 'Farmland/fishing material assistance, Rank',
1561-'Fax': 'Fax',
1562-'Feature Class': 'Feature Class',
1563-'Feature Class Details': 'Feature Class Details',
1564-'Feature Class added': 'Feature Class added',
1565-'Feature Class deleted': 'Feature Class deleted',
1566-'Feature Class updated': 'Feature Class updated',
1567-'Feature Classes': 'Feature Classes',
1568-'Feature Classes are collections of Locations (Features) of the same type': 'Feature Classes are collections of Locations (Features) of the same type',
1569-'Feature Layer Details': 'Feature Layer Details',
1570-'Feature Layer added': 'Feature Layer added',
1571-'Feature Layer deleted': 'Feature Layer deleted',
1572-'Feature Layer updated': 'Feature Layer updated',
1573-'Feature Layers': 'Feature Layers',
1574-'Feature Namespace': 'Feature Namespace',
1575-'Feature Type': 'Feature Type',
1576-'Features Include': 'Features Include',
1577-'Female': 'Female',
1578-'Female headed households': 'Female headed households',
1579-'Few': 'Few',
1580-'Field Hospital': 'Field Hospital',
1581-'File': 'File',
1582-'Fill in Latitude': 'Fill in Latitude',
1583-'Fill in Longitude': 'Fill in Longitude',
1584-'Filter Field': 'Filter Field',
1585-'Filter Value': 'Filter Value',
1586-'Filtered search of aid pledges and requests': 'Filtered search of aid pledges and requests',
1587-'Find': 'Find',
1588-'Find Dead Body Report': 'Find Dead Body Report',
1589-'Find Volunteers': 'Find Volunteers',
1590-'Find by Name': 'Find by Name',
1591-'Finder': 'Finder',
1592-'Fingerprint': 'Fingerprint',
1593-'Fingerprinting': 'Fingerprinting',
1594-'Fingerprints': 'Fingerprints',
1595-'Finish': 'Finish',
1596-'Finished Jobs': 'Finished Jobs',
1597-'Fire': 'Fire',
1598-'Fire suppression and rescue': 'Fire suppression and rescue',
1599-'First Name': 'First Name',
1600-'First name': 'First name',
1601-'Fishing': 'Fishing',
1602-'Flash Flood': 'Flash Flood',
1603-'Flash Freeze': 'Flash Freeze',
1604-'Fleet Management': 'Fleet Management',
1605-'Flexible Impact Assessments': 'Flexible Impact Assessments',
1606-'Flood': 'Flood',
1607-'Flood Alerts': 'Flood Alerts',
1608-'Flood Alerts show water levels in various parts of the country': 'Flood Alerts show water levels in various parts of the country',
1609-'Flood Report': 'Flood Report',
1610-'Flood Report Details': 'Flood Report Details',
1611-'Flood Report added': 'Flood Report added',
1612-'Flood Report deleted': 'Flood Report deleted',
1613-'Flood Report updated': 'Flood Report updated',
1614-'Flood Reports': 'Flood Reports',
1615-'Flow Status': 'Flow Status',
1616-'Focal Point': 'Focal Point',
1617-'Fog': 'Fog',
1618-'Food': 'Food',
1619-'Food Supply': 'Food Supply',
1620-'Food assistance available/expected': 'Food assistance available/expected',
1621-'Footer': 'Footer',
1622-'Footer file %s missing!': 'Footer file %s missing!',
1623-'For POP-3 this is usually 110 (995 for SSL), for IMAP this is usually 143 (993 for IMAP).': 'For POP-3 this is usually 110 (995 for SSL), for IMAP this is usually 143 (993 for IMAP).',
1624-'For a country this would be the ISO2 code, for a Town, it would be the Airport Locode.': 'For a country this would be the ISO2 code, for a Town, it would be the Airport Locode.',
1625-'For each sync partner, there is a default sync job that runs after a specified interval of time. You can also set up more sync jobs which could be customized on your needs. Click the link on the right to get started.': 'For each sync partner, there is a default sync job that runs after a specified interval of time. You can also set up more sync jobs which could be customized on your needs. Click the link on the right to get started.',
1626-'For enhanced security, you are recommended to enter a username and password, and notify administrators of other machines in your organization to add this username and password against your UUID in Synchronization -> Sync Partners': 'For enhanced security, you are recommended to enter a username and password, and notify administrators of other machines in your organization to add this username and password against your UUID in Synchronization -> Sync Partners',
1627-'For live help from the Sahana community on using this application, go to': 'For live help from the Sahana community on using this application, go to',
1628-'For messages that support alert network internal functions': 'For messages that support alert network internal functions',
1629-'For more details on the Sahana Eden system, see the': 'For more details on the Sahana Eden system, see the',
1630-'For more information, see ': 'For more information, see ',
1631-'For:': 'For:',
1632-'Forest Fire': 'Forest Fire',
1633-'Formal camp': 'Formal camp',
1634-'Format': 'Format',
1635-'Forms': 'Forms',
1636-'Found': 'Found',
1637-'Freezing Drizzle': 'Freezing Drizzle',
1638-'Freezing Rain': 'Freezing Rain',
1639-'Freezing Spray': 'Freezing Spray',
1640-'French': 'French',
1641-'Friday': 'Friday',
1642-'From': 'From',
1643-'From Location': 'From Location',
1644-'From Warehouse': 'From Warehouse',
1645-'Frost': 'Frost',
1646-'Full': 'Full',
1647-'Full beard': 'Full beard',
1648-'Fullscreen Map': 'Fullscreen Map',
1649-'Functional Tests': 'Functional Tests',
1650-'Functions available': 'Functions available',
1651-'Funding Organization': 'Funding Organization',
1652-'Funeral': 'Funeral',
1653-'GIS Reports of Shelter': 'GIS Reports of Shelter',
1654-'GIS integration to view location details of the Shelter': 'GIS integration to view location details of the Shelter',
1655-'GPS': 'GPS',
1656-'GPS Marker': 'GPS Marker',
1657-'GPS Track': 'GPS Track',
1658-'GPS Track File': 'GPS Track File',
1659-'GPX Track': 'GPX Track',
1660-'Gale Wind': 'Gale Wind',
1661-'Gap Analysis': 'Gap Analysis',
1662-'Gap Analysis Map': 'Gap Analysis Map',
1663-'Gap Analysis Report': 'Gap Analysis Report',
1664-'Gap Map': 'Gap Map',
1665-'Gap Report': 'Gap Report',
1666-'Gateway Settings': 'Gateway Settings',
1667-'Gateway settings updated': 'Gateway settings updated',
1668-'Gender': 'Gender',
1669-'General Medical/Surgical': 'General Medical/Surgical',
1670-'General emergency and public safety': 'General emergency and public safety',
1671-'Generator': 'Generator',
1672-'Geocoder Selection': 'Geocoder Selection',
1673-'Geometry Name': 'Geometry Name',
1674-'Geonames.org search requires Internet connectivity!': 'Geonames.org search requires Internet connectivity!',
1675-'Geophysical (inc. landslide)': 'Geophysical (inc. landslide)',
1676-'Geraldo module not available within the running Python - this needs installing for PDF output!': 'Geraldo module not available within the running Python - this needs installing for PDF output!',
1677-'Girls 13-18 yrs in affected area': 'Girls 13-18 yrs in affected area',
1678-'Girls 13-18 yrs not attending school': 'Girls 13-18 yrs not attending school',
1679-'Girls 6-12 yrs in affected area': 'Girls 6-12 yrs in affected area',
1680-'Girls 6-12 yrs not attending school': 'Girls 6-12 yrs not attending school',
1681-'Give a brief description of the image, e.g. what can be seen where on the picture (optional).': 'Give a brief description of the image, e.g. what can be seen where on the picture (optional).',
1682-'Give information about where and when you have seen the person': 'Give information about where and when you have seen the person',
1683-'Give information about where and when you have seen them': 'Give information about where and when you have seen them',
1684-'Global Messaging Settings': 'Global Messaging Settings',
1685-'Goatee': 'Goatee',
1686-'Government': 'Government',
1687-'Government UID': 'Government UID',
1688-'Government building': 'Government building',
1689-'Grade': 'Grade',
1690-'Greek': 'Greek',
1691-'Group': 'Group',
1692-'Group %(group_id)s created': 'Group %(group_id)s created',
1693-'Group Details': 'Group Details',
1694-'Group ID': 'Group ID',
1695-'Group Member added': 'Group Member added',
1696-'Group Members': 'Group Members',
1697-'Group Memberships': 'Group Memberships',
1698-'Group Title': 'Group Title',
1699-'Group Type': 'Group Type',
1700-'Group added': 'Group added',
1701-'Group deleted': 'Group deleted',
1702-'Group description': 'Group description',
1703-'Group name': 'Group name',
1704-'Group type': 'Group type',
1705-'Group updated': 'Group updated',
1706-'Groups': 'Groups',
1707-'Groups removed': 'Groups removed',
1708-'Guest': 'Guest',
1709-'Hail': 'Hail',
1710-'Hair Color': 'Hair Color',
1711-'Hair Length': 'Hair Length',
1712-'Hair Style': 'Hair Style',
1713-'Has data from this Reference Document been entered into Sahana?': 'Has data from this Reference Document been entered into Sahana?',
1714-'Has the safety and security of women and children in your community changed since the emergency?': 'Has the safety and security of women and children in your community changed since the emergency?',
1715-'Has your business been damaged in the course of the disaster?': 'Has your business been damaged in the course of the disaster?',
1716-'Have households received any shelter/NFI assistance or is assistance expected in the coming days?': 'Have households received any shelter/NFI assistance or is assistance expected in the coming days?',
1717-'Have normal food sources been disrupted?': 'Have normal food sources been disrupted?',
1718-'Have schools received or are expecting to receive any assistance?': 'Have schools received or are expecting to receive any assistance?',
1719-'Have the people received or are you expecting any medical or food assistance in the coming days?': 'Have the people received or are you expecting any medical or food assistance in the coming days?',
1720-'Hazard Pay': 'Hazard Pay',
1721-'Hazardous Material': 'Hazardous Material',
1722-'Hazardous Road Conditions': 'Hazardous Road Conditions',
1723-'Header Background': 'Header Background',
1724-'Header background file %s missing!': 'Header background file %s missing!',
1725-'Headquarters': 'Headquarters',
1726-'Health': 'Health',
1727-'Health care assistance, Rank': 'Health care assistance, Rank',
1728-'Health center': 'Health center',
1729-'Health center with beds': 'Health center with beds',
1730-'Health center without beds': 'Health center without beds',
1731-'Health services functioning prior to disaster': 'Health services functioning prior to disaster',
1732-'Health services functioning since disaster': 'Health services functioning since disaster',
1733-'Healthcare Worker': 'Healthcare Worker',
1734-'Heat Wave': 'Heat Wave',
1735-'Heat and Humidity': 'Heat and Humidity',
1736-'Height': 'Height',
1737-'Height (cm)': 'Height (cm)',
1738-'Help': 'Help',
1739-'Helps to monitor status of hospitals': 'Helps to monitor status of hospitals',
1740-'Helps to report and search for Missing Persons': 'Helps to report and search for Missing Persons',
1741-'Here are the solution items related to the problem.': 'Here are the solution items related to the problem.',
1742-'High': 'High',
1743-'High Water': 'High Water',
1744-'Hindu': 'Hindu',
1745-'History': 'History',
1746-'Hit the back button on your browser to try again.': 'Hit the back button on your browser to try again.',
1747-'Holiday Address': 'Holiday Address',
1748-'Home': 'Home',
1749-'Home Address': 'Home Address',
1750-'Home Country': 'Home Country',
1751-'Home Crime': 'Home Crime',
1752-'Hospital': 'Hospital',
1753-'Hospital Details': 'Hospital Details',
1754-'Hospital Status Report': 'Hospital Status Report',
1755-'Hospital information added': 'Hospital information added',
1756-'Hospital information deleted': 'Hospital information deleted',
1757-'Hospital information updated': 'Hospital information updated',
1758-'Hospital status assessment.': 'Hospital status assessment.',
1759-'Hospitals': 'Hospitals',
1760-'Hot Spot': 'Hot Spot',
1761-'Household kits received': 'Household kits received',
1762-'Household kits, source': 'Household kits, source',
1763-'How did boys 13-17yrs spend most of their time prior to the disaster?': 'How did boys 13-17yrs spend most of their time prior to the disaster?',
1764-'How did boys <12yrs spend most of their time prior to the disaster?': 'How did boys <12yrs spend most of their time prior to the disaster?',
1765-'How did boys girls 13-17yrs spend most of their time prior to the disaster?': 'How did boys girls 13-17yrs spend most of their time prior to the disaster?',
1766-'How did girls <12yrs spend most of their time prior to the disaster?': 'How did girls <12yrs spend most of their time prior to the disaster?',
1767-'How do boys 13-17yrs spend most of their time now?': 'How do boys 13-17yrs spend most of their time now?',
1768-'How do boys <12yrs spend most of their time now?': 'How do boys <12yrs spend most of their time now?',
1769-'How do girls 13-17yrs spend most of their time now?': 'How do girls 13-17yrs spend most of their time now?',
1770-'How do girls <12yrs spend most of their time now?': 'How do girls <12yrs spend most of their time now?',
1771-'How does it work?': 'How does it work?',
1772-'How is this person affected by the disaster? (Select all that apply)': 'How is this person affected by the disaster? (Select all that apply)',
1773-'How long does it take you to reach the available water resources? Specify the time required to go there and back, including queuing time, by foot.': 'How long does it take you to reach the available water resources? Specify the time required to go there and back, including queuing time, by foot.',
1774-'How long does it take you to walk to the health service?': 'How long does it take you to walk to the health service?',
1775-'How long will the food last?': 'How long will the food last?',
1776-'How long will this water resource last?': 'How long will this water resource last?',
1777-'How many Boys (0-17 yrs) are Dead due to the crisis': 'How many Boys (0-17 yrs) are Dead due to the crisis',
1778-'How many Boys (0-17 yrs) are Injured due to the crisis': 'How many Boys (0-17 yrs) are Injured due to the crisis',
1779-'How many Boys (0-17 yrs) are Missing due to the crisis': 'How many Boys (0-17 yrs) are Missing due to the crisis',
1780-'How many Girls (0-17 yrs) are Dead due to the crisis': 'How many Girls (0-17 yrs) are Dead due to the crisis',
1781-'How many Girls (0-17 yrs) are Injured due to the crisis': 'How many Girls (0-17 yrs) are Injured due to the crisis',
1782-'How many Girls (0-17 yrs) are Missing due to the crisis': 'How many Girls (0-17 yrs) are Missing due to the crisis',
1783-'How many Men (18 yrs+) are Dead due to the crisis': 'How many Men (18 yrs+) are Dead due to the crisis',
1784-'How many Men (18 yrs+) are Injured due to the crisis': 'How many Men (18 yrs+) are Injured due to the crisis',
1785-'How many Men (18 yrs+) are Missing due to the crisis': 'How many Men (18 yrs+) are Missing due to the crisis',
1786-'How many Women (18 yrs+) are Dead due to the crisis': 'How many Women (18 yrs+) are Dead due to the crisis',
1787-'How many Women (18 yrs+) are Injured due to the crisis': 'How many Women (18 yrs+) are Injured due to the crisis',
1788-'How many Women (18 yrs+) are Missing due to the crisis': 'How many Women (18 yrs+) are Missing due to the crisis',
1789-'How many days will the supplies last?': 'How many days will the supplies last?',
1790-'How many doctors in the health centers are still actively working?': 'How many doctors in the health centers are still actively working?',
1791-'How many houses are uninhabitable (uninhabitable = foundation and structure destroyed)?': 'How many houses are uninhabitable (uninhabitable = foundation and structure destroyed)?',
1792-'How many houses suffered damage but remain usable (usable = windows broken, cracks in walls, roof slightly damaged)?': 'How many houses suffered damage but remain usable (usable = windows broken, cracks in walls, roof slightly damaged)?',
1793-'How many latrines are available in the village/IDP centre/Camp?': 'How many latrines are available in the village/IDP centre/Camp?',
1794-'How many midwives in the health centers are still actively working?': 'How many midwives in the health centers are still actively working?',
1795-'How many new cases have been admitted to this facility in the past 24h?': 'How many new cases have been admitted to this facility in the past 24h?',
1796-'How many nurses in the health centers are still actively working?': 'How many nurses in the health centers are still actively working?',
1797-'How many of the patients with the disease died in the past 24h at this facility?': 'How many of the patients with the disease died in the past 24h at this facility?',
1798-'How many of the primary school age boys (6-12) in the area are not attending school?': 'How many of the primary school age boys (6-12) in the area are not attending school?',
1799-'How many of the primary school age girls (6-12) in the area are not attending school?': 'How many of the primary school age girls (6-12) in the area are not attending school?',
1800-'How many of the primary/secondary schools are now open and running a regular schedule of class?': 'How many of the primary/secondary schools are now open and running a regular schedule of class?',
1801-'How many of the secondary school age boys (13-18) in the area are not attending school?': 'How many of the secondary school age boys (13-18) in the area are not attending school?',
1802-'How many of the secondary school age girls (13-18) in the area are not attending school?': 'How many of the secondary school age girls (13-18) in the area are not attending school?',
1803-'How many patients with the disease are currently hospitalized at this facility?': 'How many patients with the disease are currently hospitalized at this facility?',
1804-'How many primary school age boys (6-12) are in the affected area?': 'How many primary school age boys (6-12) are in the affected area?',
1805-'How many primary school age girls (6-12) are in the affected area?': 'How many primary school age girls (6-12) are in the affected area?',
1806-'How many primary/secondary schools were opening prior to the disaster?': 'How many primary/secondary schools were opening prior to the disaster?',
1807-'How many secondary school age boys (13-18) are in the affected area?': 'How many secondary school age boys (13-18) are in the affected area?',
1808-'How many secondary school age girls (13-18) are in the affected area?': 'How many secondary school age girls (13-18) are in the affected area?',
1809-'How many teachers have been affected by the disaster (affected = unable to work)?': 'How many teachers have been affected by the disaster (affected = unable to work)?',
1810-'How many teachers worked in the schools prior to the disaster?': 'How many teachers worked in the schools prior to the disaster?',
1811-'How much detail is seen. A high Zoom level means lot of detail, but not a wide area. A low Zoom level means seeing a wide area, but not a high level of detail.': 'How much detail is seen. A high Zoom level means lot of detail, but not a wide area. A low Zoom level means seeing a wide area, but not a high level of detail.',
1812-'Humanitarian NGO': 'Humanitarian NGO',
1813-'Hurricane': 'Hurricane',
1814-'Hurricane Force Wind': 'Hurricane Force Wind',
1815-'Hygiene': 'Hygiene',
1816-'Hygiene NFIs': 'Hygiene NFIs',
1817-'Hygiene kits received': 'Hygiene kits received',
1818-'Hygiene kits, source': 'Hygiene kits, source',
1819-'Hygiene practice': 'Hygiene practice',
1820-'Hygiene problems': 'Hygiene problems',
1821-'ID Label': 'ID Label',
1822-'ID Tag': 'ID Tag',
1823-'ID Tag Number': 'ID Tag Number',
1824-'ID type': 'ID type',
1825-'Ice Pressure': 'Ice Pressure',
1826-'Iceberg': 'Iceberg',
1827-'Identification': 'Identification',
1828-'Identification Report': 'Identification Report',
1829-'Identification Reports': 'Identification Reports',
1830-'Identification Status': 'Identification Status',
1831-'Identification label of the Storage bin.': 'Identification label of the Storage bin.',
1832-'Identified as': 'Identified as',
1833-'Identified by': 'Identified by',
1834-'Identity': 'Identity',
1835-'Identity Details': 'Identity Details',
1836-'Identity added': 'Identity added',
1837-'Identity deleted': 'Identity deleted',
1838-'Identity updated': 'Identity updated',
1839-'If Unit = m, Base Unit = Km, then multiplicator is 0.0001 since 1m = 0.001 km.': 'If Unit = m, Base Unit = Km, then multiplicator is 0.0001 since 1m = 0.001 km.',
1840-'If enabled then a log is maintained of all records a user accesses. If disabled then it can still be enabled on a per-module basis.': 'If enabled then a log is maintained of all records a user accesses. If disabled then it can still be enabled on a per-module basis.',
1841-'If enabled then a log is maintained of all records a user edits. If disabled then it can still be enabled on a per-module basis.': 'If enabled then a log is maintained of all records a user edits. If disabled then it can still be enabled on a per-module basis.',
1842-'If no marker defined then the system default marker is used': 'If no marker defined then the system default marker is used',
1843-'If no, specify why': 'If no, specify why',
1844-'If the location is a geographic area, then state at what level here.': 'If the location is a geographic area, then state at what level here.',
1845-'If this is set to True then mails will be deleted from the server after downloading.': 'If this is set to True then mails will be deleted from the server after downloading.',
1846-'If this record should be restricted then select which role is required to access the record here.': 'If this record should be restricted then select which role is required to access the record here.',
1847-'If this record should be restricted then select which role(s) are permitted to access the record here.': 'If this record should be restricted then select which role(s) are permitted to access the record here.',
1848-"If this setting is enabled then all deleted records are just flagged as deleted instead of being really deleted. They will appear in the raw database access but won't be visible to normal users.": "If this setting is enabled then all deleted records are just flagged as deleted instead of being really deleted. They will appear in the raw database access but won't be visible to normal users.",
1849-'If yes, specify what and by whom': 'If yes, specify what and by whom',
1850-'If yes, which and how': 'If yes, which and how',
1851-"If you cannot find the person you want to register as a volunteer, you can add them by clicking 'Add Person' below:": "If you cannot find the person you want to register as a volunteer, you can add them by clicking 'Add Person' below:",
1852-"If you cannot find the person you want to report missing, you can add them by clicking 'Add Person' below:": "If you cannot find the person you want to report missing, you can add them by clicking 'Add Person' below:",
1853-"If you cannot find the record of the person you want to report missing, you can add it by clicking 'Add Person' below:": "If you cannot find the record of the person you want to report missing, you can add it by clicking 'Add Person' below:",
1854-'If you do not enter a Reference Document, your email will be displayed to allow this data to be verified.': 'If you do not enter a Reference Document, your email will be displayed to allow this data to be verified.',
1855-'If you know what the Geonames ID of this location is then you can enter it here.': 'If you know what the Geonames ID of this location is then you can enter it here.',
1856-'If you know what the OSM ID of this location is then you can enter it here.': 'If you know what the OSM ID of this location is then you can enter it here.',
1857-'If you need to add a new document then you can click here to attach one.': 'If you need to add a new document then you can click here to attach one.',
1858-'If you would like to help, then please': 'If you would like to help, then please',
1859-'Illegal Immigrant': 'Illegal Immigrant',
1860-'Image': 'Image',
1861-'Image Details': 'Image Details',
1862-'Image Tags': 'Image Tags',
1863-'Image Type': 'Image Type',
1864-'Image Upload': 'Image Upload',
1865-'Image added': 'Image added',
1866-'Image deleted': 'Image deleted',
1867-'Image updated': 'Image updated',
1868-'Image/Attachment': 'Image/Attachment',
1869-'Image/Other Attachment': 'Image/Other Attachment',
1870-'Imagery': 'Imagery',
1871-'Images': 'Images',
1872-'Immediate reconstruction assistance, Rank': 'Immediate reconstruction assistance, Rank',
1873-'Impact Assessments': 'Impact Assessments',
1874-'Impact Details': 'Impact Details',
1875-'Impact Type': 'Impact Type',
1876-'Impact Type Details': 'Impact Type Details',
1877-'Impact Type added': 'Impact Type added',
1878-'Impact Type deleted': 'Impact Type deleted',
1879-'Impact Type updated': 'Impact Type updated',
1880-'Impact Types': 'Impact Types',
1881-'Impact added': 'Impact added',
1882-'Impact deleted': 'Impact deleted',
1883-'Impact updated': 'Impact updated',
1884-'Impacts': 'Impacts',
1885-'Import': 'Import',
1886-'Import & Export Data': 'Import & Export Data',
1887-'Import Data': 'Import Data',
1888-'Import Job': 'Import Job',
1889-'Import Jobs': 'Import Jobs',
1890-'Import and Export': 'Import and Export',
1891-'Import from Ushahidi Instance': 'Import from Ushahidi Instance',
1892-'Import if Master': 'Import if Master',
1893-'Import job created': 'Import job created',
1894-'Import multiple tables as CSV': 'Import multiple tables as CSV',
1895-'Import/Export': 'Import/Export',
1896-'Important': 'Important',
1897-'Importantly where there are no aid services being provided': 'Importantly where there are no aid services being provided',
1898-'Imported': 'Imported',
1899-'Importing data from spreadsheets': 'Importing data from spreadsheets',
1900-'Improper decontamination': 'Improper decontamination',
1901-'Improper handling of dead bodies': 'Improper handling of dead bodies',
1902-'In Inventories': 'In Inventories',
1903-'In Process': 'In Process',
1904-'In Progress': 'In Progress',
1905-'In Transit': 'In Transit',
1906-'In general, what are the greatest needs of older people, people with disabilities, children, youth and women in your community?': 'In general, what are the greatest needs of older people, people with disabilities, children, youth and women in your community?',
1907-'Inbound Mail Settings': 'Inbound Mail Settings',
1908-'Incident': 'Incident',
1909-'Incident Categories': 'Incident Categories',
1910-'Incident Report': 'Incident Report',
1911-'Incident Report Details': 'Incident Report Details',
1912-'Incident Report added': 'Incident Report added',
1913-'Incident Report deleted': 'Incident Report deleted',
1914-'Incident Report updated': 'Incident Report updated',
1915-'Incident Reporting': 'Incident Reporting',
1916-'Incident Reporting System': 'Incident Reporting System',
1917-'Incident Reports': 'Incident Reports',
1918-'Incidents': 'Incidents',
1919-'Incomplete': 'Incomplete',
1920-'Individuals': 'Individuals',
1921-'Industrial Crime': 'Industrial Crime',
1922-'Industry Fire': 'Industry Fire',
1923-'Industry close to village/camp': 'Industry close to village/camp',
1924-'Infant (0-1)': 'Infant (0-1)',
1925-'Infectious Disease': 'Infectious Disease',
1926-'Infectious Diseases': 'Infectious Diseases',
1927-'Infestation': 'Infestation',
1928-'Informal Leader': 'Informal Leader',
1929-'Informal camp': 'Informal camp',
1930-'Information gaps': 'Information gaps',
1931-'Infusion catheters available': 'Infusion catheters available',
1932-'Infusion catheters need per 24h': 'Infusion catheters need per 24h',
1933-'Infusion catheters needed per 24h': 'Infusion catheters needed per 24h',
1934-'Infusions available': 'Infusions available',
1935-'Infusions needed per 24h': 'Infusions needed per 24h',
1936-'Input Job': 'Input Job',
1937-'Instant Porridge': 'Instant Porridge',
1938-"Instead of automatically syncing from other peers over the network, you can also sync from files, which is necessary where there's no network. You can use this page to import sync data from files and also export data to sync files. Click the link on the right to go to this page.": "Instead of automatically syncing from other peers over the network, you can also sync from files, which is necessary where there's no network. You can use this page to import sync data from files and also export data to sync files. Click the link on the right to go to this page.",
1939-'Institution': 'Institution',
1940-'Insufficient': 'Insufficient',
1941-'Insufficient vars: Need module, resource, jresource, instance': 'Insufficient vars: Need module, resource, jresource, instance',
1942-'Intake Items': 'Intake Items',
1943-'Intergovernmental Organisation': 'Intergovernmental Organisation',
1944-'Internal Features': 'Internal Features',
1945-'Internal State': 'Internal State',
1946-'International NGO': 'International NGO',
1947-'International Organization': 'International Organization',
1948-'Interview taking place at': 'Interview taking place at',
1949-'Invalid': 'Invalid',
1950-'Invalid Query': 'Invalid Query',
1951-'Invalid email': 'Invalid email',
1952-'Invalid login': 'Invalid login',
1953-'Invalid request!': 'Invalid request!',
1954-'Invalid ticket': 'Invalid ticket',
1955-'Inventories with Item': 'Inventories with Item',
1956-'Inventory Management': 'Inventory Management',
1957-'Inventory Store': 'Inventory Store',
1958-'Inventory of Effects': 'Inventory of Effects',
1959-'Inventory/Ledger': 'Inventory/Ledger',
1960-'Is adequate food and water available for these institutions?': 'Is adequate food and water available for these institutions?',
1961-'Is it safe to collect water?': 'Is it safe to collect water?',
1962-'Is there any industrial or agro-chemical production close to the affected area/village?': 'Is there any industrial or agro-chemical production close to the affected area/village?',
1963-'Issuing Authority': 'Issuing Authority',
1964-'Item': 'Item',
1965-'Item Catalog Categories': 'Item Catalog Categories',
1966-'Item Catalog Category': 'Item Catalog Category',
1967-'Item Catalog Category Details': 'Item Catalog Category Details',
1968-'Item Catalog Category added': 'Item Catalog Category added',
1969-'Item Catalog Category deleted': 'Item Catalog Category deleted',
1970-'Item Catalog Category updated': 'Item Catalog Category updated',
1971-'Item Catalog Details': 'Item Catalog Details',
1972-'Item Catalog added': 'Item Catalog added',
1973-'Item Catalog deleted': 'Item Catalog deleted',
1974-'Item Catalog updated': 'Item Catalog updated',
1975-'Item Catalogs': 'Item Catalogs',
1976-'Item Categories': 'Item Categories',
1977-'Item Category': 'Item Category',
1978-'Item Category Details': 'Item Category Details',
1979-'Item Category added': 'Item Category added',
1980-'Item Category deleted': 'Item Category deleted',
1981-'Item Category updated': 'Item Category updated',
1982-'Item Details': 'Item Details',
1983-'Item Packet Details': 'Item Packet Details',
1984-'Item Packet added': 'Item Packet added',
1985-'Item Packet deleted': 'Item Packet deleted',
1986-'Item Packet updated': 'Item Packet updated',
1987-'Item Packets': 'Item Packets',
1988-'Item Sub-Categories': 'Item Sub-Categories',
1989-'Item Sub-Category': 'Item Sub-Category',
1990-'Item Sub-Category Details': 'Item Sub-Category Details',
1991-'Item Sub-Category added': 'Item Sub-Category added',
1992-'Item Sub-Category deleted': 'Item Sub-Category deleted',
1993-'Item Sub-Category updated': 'Item Sub-Category updated',
1994-'Item added': 'Item added',
1995-'Item already in Bundle!': 'Item already in Bundle!',
1996-'Item already in Kit!': 'Item already in Kit!',
1997-'Item already in budget!': 'Item already in budget!',
1998-'Item deleted': 'Item deleted',
1999-'Item updated': 'Item updated',
2000-'Items': 'Items',
2001-'Japanese': 'Japanese',
2002-'Jerry can': 'Jerry can',
2003-'Jew': 'Jew',
2004-'Job Title': 'Job Title',
2005-'Jobs': 'Jobs',
2006-'KPIs': 'KPIs',
2007-'Key': 'Key',
2008-'Key Details': 'Key Details',
2009-'Key added': 'Key added',
2010-'Key deleted': 'Key deleted',
2011-'Key updated': 'Key updated',
2012-'Keys': 'Keys',
2013-'Kit': 'Kit',
2014-'Kit Contents': 'Kit Contents',
2015-'Kit Details': 'Kit Details',
2016-'Kit Updated': 'Kit Updated',
2017-'Kit added': 'Kit added',
2018-'Kit deleted': 'Kit deleted',
2019-'Kit updated': 'Kit updated',
2020-'Kits': 'Kits',
2021-'Known Identities': 'Known Identities',
2022-'Known incidents of violence against women/girls': 'Known incidents of violence against women/girls',
2023-'Known incidents of violence since disaster': 'Known incidents of violence since disaster',
2024-'LICENCE': 'LICENCE',
2025-'LICENSE': 'LICENSE',
2026-'LMS Administration': 'LMS Administration',
2027-'Label': 'Label',
2028-'Lack of material': 'Lack of material',
2029-'Lack of school uniform': 'Lack of school uniform',
2030-'Lack of supplies at school': 'Lack of supplies at school',
2031-'Lack of transport to school': 'Lack of transport to school',
2032-'Lactating women': 'Lactating women',
2033-'Lahar': 'Lahar',
2034-'Landslide': 'Landslide',
2035-'Language': 'Language',
2036-'Last Name': 'Last Name',
2037-'Last known location': 'Last known location',
2038-'Last name': 'Last name',
2039-'Last synchronization time': 'Last synchronization time',
2040-'Last updated by': 'Last updated by',
2041-'Last updated on': 'Last updated on',
2042-'Latitude': 'Latitude',
2043-'Latitude & Longitude': 'Latitude & Longitude',
2044-'Latitude is North-South (Up-Down). Latitude is zero on the equator and positive in the northern hemisphere and negative in the southern hemisphere.': 'Latitude is North-South (Up-Down). Latitude is zero on the equator and positive in the northern hemisphere and negative in the southern hemisphere.',
2045-'Latitude should be between': 'Latitude should be between',
2046-'Law enforcement, military, homeland and local/private security': 'Law enforcement, military, homeland and local/private security',
2047-'Layer Details': 'Layer Details',
2048-'Layer added': 'Layer added',
2049-'Layer deleted': 'Layer deleted',
2050-'Layer updated': 'Layer updated',
2051-'Layers': 'Layers',
2052-'Layers updated': 'Layers updated',
2053-'Layout': 'Layout',
2054-'Legend Format': 'Legend Format',
2055-'Length': 'Length',
2056-'Level': 'Level',
2057-"Level is higher than parent's": "Level is higher than parent's",
2058-'Library support not available for OpenID': 'Library support not available for OpenID',
2059-'Line': 'Line',
2060-'Link Item & Shipment': 'Link Item & Shipment',
2061-'Link an Item & Shipment': 'Link an Item & Shipment',
2062-'List': 'List',
2063-'List / Add Baseline Types': 'List / Add Baseline Types',
2064-'List / Add Impact Types': 'List / Add Impact Types',
2065-'List / Add Services': 'List / Add Services',
2066-'List / Add Types': 'List / Add Types',
2067-'List Activities': 'List Activities',
2068-'List All': 'List All',
2069-'List All Entries': 'List All Entries',
2070-'List All Memberships': 'List All Memberships',
2071-'List Assessment Summaries': 'List Assessment Summaries',
2072-'List Assessments': 'List Assessments',
2073-'List Baseline Types': 'List Baseline Types',
2074-'List Baselines': 'List Baselines',
2075-'List Budgets': 'List Budgets',
2076-'List Bundles': 'List Bundles',
2077-'List Catalog Items': 'List Catalog Items',
2078-'List Category<>Sub-Category<>Catalog Relation': 'List Category<>Sub-Category<>Catalog Relation',
2079-'List Checklists': 'List Checklists',
2080-'List Cluster Subsectors': 'List Cluster Subsectors',
2081-'List Configs': 'List Configs',
2082-'List Conflicts': 'List Conflicts',
2083-'List Contacts': 'List Contacts',
2084-'List Documents': 'List Documents',
2085-'List Donors': 'List Donors',
2086-'List Feature Classes': 'List Feature Classes',
2087-'List Feature Layers': 'List Feature Layers',
2088-'List Flood Reports': 'List Flood Reports',
2089-'List Groups': 'List Groups',
2090-'List Groups/View Members': 'List Groups/View Members',
2091-'List Hospitals': 'List Hospitals',
2092-'List Identities': 'List Identities',
2093-'List Images': 'List Images',
2094-'List Impact Assessments': 'List Impact Assessments',
2095-'List Impact Types': 'List Impact Types',
2096-'List Impacts': 'List Impacts',
2097-'List Incident Reports': 'List Incident Reports',
2098-'List Item Catalog Categories': 'List Item Catalog Categories',
2099-'List Item Catalogs': 'List Item Catalogs',
2100-'List Item Categories': 'List Item Categories',
2101-'List Item Packets': 'List Item Packets',
2102-'List Item Sub-Categories': 'List Item Sub-Categories',
2103-'List Items': 'List Items',
2104-'List Keys': 'List Keys',
2105-'List Kits': 'List Kits',
2106-'List Layers': 'List Layers',
2107-'List Locations': 'List Locations',
2108-'List Log Entries': 'List Log Entries',
2109-'List Markers': 'List Markers',
2110-'List Members': 'List Members',
2111-'List Memberships': 'List Memberships',
2112-'List Messages': 'List Messages',
2113-'List Missing Persons': 'List Missing Persons',
2114-'List Need Types': 'List Need Types',
2115-'List Needs': 'List Needs',
2116-'List Offices': 'List Offices',
2117-'List Organizations': 'List Organizations',
2118-'List Peers': 'List Peers',
2119-'List Personal Effects': 'List Personal Effects',
2120-'List Persons': 'List Persons',
2121-'List Photos': 'List Photos',
2122-'List Positions': 'List Positions',
2123-'List Problems': 'List Problems',
2124-'List Projections': 'List Projections',
2125-'List Projects': 'List Projects',
2126-'List Rapid Assessments': 'List Rapid Assessments',
2127-'List Received Items': 'List Received Items',
2128-'List Received Shipments': 'List Received Shipments',
2129-'List Records': 'List Records',
2130-'List Registrations': 'List Registrations',
2131-'List Reports': 'List Reports',
2132-'List Request Items': 'List Request Items',
2133-'List Requests': 'List Requests',
2134-'List Resources': 'List Resources',
2135-'List Rivers': 'List Rivers',
2136-'List Roles': 'List Roles',
2137-'List Sections': 'List Sections',
2138-'List Sector': 'List Sector',
2139-'List Sent Items': 'List Sent Items',
2140-'List Sent Shipments': 'List Sent Shipments',
2141-'List Service Profiles': 'List Service Profiles',
2142-'List Settings': 'List Settings',
2143-'List Shelter Services': 'List Shelter Services',
2144-'List Shelter Types': 'List Shelter Types',
2145-'List Shelters': 'List Shelters',
2146-'List Shipment Transit Logs': 'List Shipment Transit Logs',
2147-'List Shipment/Way Bills': 'List Shipment/Way Bills',
2148-'List Shipment<>Item Relation': 'List Shipment<>Item Relation',
2149-'List Sites': 'List Sites',
2150-'List Skill Types': 'List Skill Types',
2151-'List Skills': 'List Skills',
2152-'List Solutions': 'List Solutions',
2153-'List Staff': 'List Staff',
2154-'List Staff Types': 'List Staff Types',
2155-'List Status': 'List Status',
2156-'List Storage Bin Type(s)': 'List Storage Bin Type(s)',
2157-'List Storage Bins': 'List Storage Bins',
2158-'List Storage Location': 'List Storage Location',
2159-'List Subscriptions': 'List Subscriptions',
2160-'List Survey Answers': 'List Survey Answers',
2161-'List Survey Questions': 'List Survey Questions',
2162-'List Survey Sections': 'List Survey Sections',
2163-'List Survey Series': 'List Survey Series',
2164-'List Survey Templates': 'List Survey Templates',
2165-'List Tasks': 'List Tasks',
2166-'List Teams': 'List Teams',
2167-'List Themes': 'List Themes',
2168-'List Tickets': 'List Tickets',
2169-'List Tracks': 'List Tracks',
2170-'List Units': 'List Units',
2171-'List Users': 'List Users',
2172-'List Volunteers': 'List Volunteers',
2173-'List Warehouse Items': 'List Warehouse Items',
2174-'List Warehouses': 'List Warehouses',
2175-'List all': 'List all',
2176-'List of Items': 'List of Items',
2177-'List of Missing Persons': 'List of Missing Persons',
2178-'List of Peers': 'List of Peers',
2179-'List of Reports': 'List of Reports',
2180-'List of Requests': 'List of Requests',
2181-'List of Spreadsheets': 'List of Spreadsheets',
2182-'List of Spreadsheets uploaded': 'List of Spreadsheets uploaded',
2183-'List of Volunteers for this skills set': 'List of Volunteers for this skills set',
2184-'List of addresses': 'List of addresses',
2185-'List unidentified': 'List unidentified',
2186-'List/Add': 'List/Add',
2187-'Lists "who is doing what & where". Allows relief agencies to coordinate their activities': 'Lists "who is doing what & where". Allows relief agencies to coordinate their activities',
2188-'Live Help': 'Live Help',
2189-'Livelihood': 'Livelihood',
2190-'Load Cleaned Data into Database': 'Load Cleaned Data into Database',
2191-'Load Raw File into Grid': 'Load Raw File into Grid',
2192-'Local Name': 'Local Name',
2193-'Local Names': 'Local Names',
2194-'Location': 'Location',
2195-'Location 1': 'Location 1',
2196-'Location 2': 'Location 2',
2197-'Location Details': 'Location Details',
2198-'Location added': 'Location added',
2199-'Location deleted': 'Location deleted',
2200-'Location details': 'Location details',
2201-'Location updated': 'Location updated',
2202-'Location: ': 'Location: ',
2203-'Locations': 'Locations',
2204-'Locations of this level need to have a parent of level': 'Locations of this level need to have a parent of level',
2205-'Lockdown': 'Lockdown',
2206-'Log': 'Log',
2207-'Log Entry Details': 'Log Entry Details',
2208-'Log entry added': 'Log entry added',
2209-'Log entry deleted': 'Log entry deleted',
2210-'Log entry updated': 'Log entry updated',
2211-'Logged in': 'Logged in',
2212-'Logged out': 'Logged out',
2213-'Login': 'Login',
2214-'Logistics': 'Logistics',
2215-'Logistics Management': 'Logistics Management',
2216-'Logistics Management System': 'Logistics Management System',
2217-'Logo': 'Logo',
2218-'Logo file %s missing!': 'Logo file %s missing!',
2219-'Logout': 'Logout',
2220-'Long Text': 'Long Text',
2221-'Longitude': 'Longitude',
2222-'Longitude is West - East (sideways). Latitude is North-South (Up-Down). Latitude is zero on the equator and positive in the northern hemisphere and negative in the southern hemisphere. Longitude is zero on the prime meridian (Greenwich Mean Time) and is positive to the east, across Europe and Asia. Longitude is negative to the west, across the Atlantic and the Americas. These need to be added in Decimal Degrees.': 'Longitude is West - East (sideways). Latitude is North-South (Up-Down). Latitude is zero on the equator and positive in the northern hemisphere and negative in the southern hemisphere. Longitude is zero on the prime meridian (Greenwich Mean Time) and is positive to the east, across Europe and Asia. Longitude is negative to the west, across the Atlantic and the Americas. These need to be added in Decimal Degrees.',
2223-'Longitude is West - East (sideways). Longitude is zero on the prime meridian (Greenwich Mean Time) and is positive to the east, across Europe and Asia. Longitude is negative to the west, across the Atlantic and the Americas.': 'Longitude is West - East (sideways). Longitude is zero on the prime meridian (Greenwich Mean Time) and is positive to the east, across Europe and Asia. Longitude is negative to the west, across the Atlantic and the Americas.',
2224-'Longitude should be between': 'Longitude should be between',
2225-'Looting': 'Looting',
2226-'Lost Password': 'Lost Password',
2227-'Low': 'Low',
2228-'Magnetic Storm': 'Magnetic Storm',
2229-'Main cash source': 'Main cash source',
2230-'Main income sources before disaster': 'Main income sources before disaster',
2231-'Major outward damage': 'Major outward damage',
2232-'Make Pledge': 'Make Pledge',
2233-'Make Request': 'Make Request',
2234-'Make a Request': 'Make a Request',
2235-'Make a Request for Aid': 'Make a Request for Aid',
2236-'Make preparations per the <instruction>': 'Make preparations per the <instruction>',
2237-'Male': 'Male',
2238-'Malnutrition present prior to disaster': 'Malnutrition present prior to disaster',
2239-'Manage': 'Manage',
2240-'Manage Category': 'Manage Category',
2241-'Manage Item catalog': 'Manage Item catalog',
2242-'Manage Kits': 'Manage Kits',
2243-'Manage Relief Item Catalogue': 'Manage Relief Item Catalogue',
2244-'Manage Sub-Category': 'Manage Sub-Category',
2245-'Manage Users & Roles': 'Manage Users & Roles',
2246-'Manage Warehouses/Sites': 'Manage Warehouses/Sites',
2247-'Manage requests of hospitals for assistance.': 'Manage requests of hospitals for assistance.',
2248-'Manage volunteers by capturing their skills, availability and allocation': 'Manage volunteers by capturing their skills, availability and allocation',
2249-'Manager': 'Manager',
2250-'Managing Office': 'Managing Office',
2251-'Managing, Storing and Distributing Catalog Items.': 'Managing, Storing and Distributing Catalog Items.',
2252-'Managing, Storing and Distributing Items.': 'Managing, Storing and Distributing Items.',
2253-'Managing, Storing and Distributing Relief Items': 'Managing, Storing and Distributing Relief Items',
2254-'Mandatory. In GeoServer, this is the Layer Name. Within the WFS getCapabilities, this is the FeatureType Name part after the colon(:).': 'Mandatory. In GeoServer, this is the Layer Name. Within the WFS getCapabilities, this is the FeatureType Name part after the colon(:).',
2255-'Mandatory. The URL to access the service.': 'Mandatory. The URL to access the service.',
2256-'Manual': 'Manual',
2257-'Manual Synchronization': 'Manual Synchronization',
2258-'Many': 'Many',
2259-'Map': 'Map',
2260-'Map Height': 'Map Height',
2261-'Map Service Catalogue': 'Map Service Catalogue',
2262-'Map Settings': 'Map Settings',
2263-'Map Viewing Client': 'Map Viewing Client',
2264-'Map Width': 'Map Width',
2265-'Map from Sahana Eden': 'Map from Sahana Eden',
2266-'Map of Hospitals': 'Map of Hospitals',
2267-'Marine Security': 'Marine Security',
2268-'Marital Status': 'Marital Status',
2269-'Marker': 'Marker',
2270-'Marker Details': 'Marker Details',
2271-'Marker added': 'Marker added',
2272-'Marker deleted': 'Marker deleted',
2273-'Marker updated': 'Marker updated',
2274-'Markers': 'Markers',
2275-'Master Message Log': 'Master Message Log',
2276-'Master Message Log to process incoming reports & requests': 'Master Message Log to process incoming reports & requests',
2277-'Match Percentage': 'Match Percentage',
2278-'Match percentage indicates the % match between these two records': 'Match percentage indicates the % match between these two records',
2279-'Matching Records': 'Matching Records',
2280-'Matrix of Choices (Multiple Answers)': 'Matrix of Choices (Multiple Answers)',
2281-'Matrix of Choices (Only one answer)': 'Matrix of Choices (Only one answer)',
2282-'Matrix of Text Fields': 'Matrix of Text Fields',
2283-'Max Persons per Dwelling': 'Max Persons per Dwelling',
2284-'Maximum Weight': 'Maximum Weight',
2285-'Maximum weight capacity of the Storage Location followed by choosing the unit from the drop down list.': 'Maximum weight capacity of the Storage Location followed by choosing the unit from the drop down list.',
2286-'Maximum weight capacity of the items the storage bin can contain. followed by choosing the unit from the drop down list.': 'Maximum weight capacity of the items the storage bin can contain. followed by choosing the unit from the drop down list.',
2287-'Measure Area: Click the points around the polygon & end with a double-click': 'Measure Area: Click the points around the polygon & end with a double-click',
2288-'Measure Length: Click the points along the path & end with a double-click': 'Measure Length: Click the points along the path & end with a double-click',
2289-'Medical and public health': 'Medical and public health',
2290-'Medium': 'Medium',
2291-'Megabytes per Month': 'Megabytes per Month',
2292-'Members': 'Members',
2293-'Membership': 'Membership',
2294-'Membership Details': 'Membership Details',
2295-'Membership added': 'Membership added',
2296-'Membership deleted': 'Membership deleted',
2297-'Membership updated': 'Membership updated',
2298-'Memberships': 'Memberships',
2299-'Message': 'Message',
2300-'Message Details': 'Message Details',
2301-'Message Variable': 'Message Variable',
2302-'Message added': 'Message added',
2303-'Message deleted': 'Message deleted',
2304-'Message updated': 'Message updated',
2305-'Message variable': 'Message variable',
2306-'Messages': 'Messages',
2307-'Messaging': 'Messaging',
2308-'Messaging settings updated': 'Messaging settings updated',
2309-'Meteorite': 'Meteorite',
2310-'Meteorological (inc. flood)': 'Meteorological (inc. flood)',
2311-'Method used': 'Method used',
2312-'Micronutrient malnutrition prior to disaster': 'Micronutrient malnutrition prior to disaster',
2313-'Middle Name': 'Middle Name',
2314-'Migrants or ethnic minorities': 'Migrants or ethnic minorities',
2315-'Military': 'Military',
2316-'Minorities participating in coping activities': 'Minorities participating in coping activities',
2317-'Minutes must be a number between 0 and 60': 'Minutes must be a number between 0 and 60',
2318-'Minutes per Month': 'Minutes per Month',
2319-'Minutes should be a number greater than 0 and less than 60': 'Minutes should be a number greater than 0 and less than 60',
2320-'Miscellaneous': 'Miscellaneous',
2321-'Missing': 'Missing',
2322-'Missing Person': 'Missing Person',
2323-'Missing Person Details': 'Missing Person Details',
2324-'Missing Person Reports': 'Missing Person Reports',
2325-'Missing Persons': 'Missing Persons',
2326-'Missing Persons Registry': 'Missing Persons Registry',
2327-'Missing Persons Report': 'Missing Persons Report',
2328-'Missing Report': 'Missing Report',
2329-'Missing Senior Citizen': 'Missing Senior Citizen',
2330-'Missing Vulnerable Person': 'Missing Vulnerable Person',
2331-'Mobile': 'Mobile',
2332-'Mobile Assess.': 'Mobile Assess.',
2333-'Mobile Basic Assessment': 'Mobile Basic Assessment',
2334-'Mobile Phone': 'Mobile Phone',
2335-'Mode': 'Mode',
2336-'Modem Settings': 'Modem Settings',
2337-'Modem settings updated': 'Modem settings updated',
2338-'Moderator': 'Moderator',
2339-'Modify Feature: Select the feature you wish to deform & then Drag one of the dots to deform the feature in your chosen manner': 'Modify Feature: Select the feature you wish to deform & then Drag one of the dots to deform the feature in your chosen manner',
2340-'Modify Information on groups and individuals': 'Modify Information on groups and individuals',
2341-'Modifying data in spreadsheet before importing it to the database': 'Modifying data in spreadsheet before importing it to the database',
2342-'Module Administration': 'Module Administration',
2343-'Module disabled!': 'Module disabled!',
2344-'Module provides access to information on current Flood Levels.': 'Module provides access to information on current Flood Levels.',
2345-'Monday': 'Monday',
2346-'Monthly Cost': 'Monthly Cost',
2347-'Monthly Salary': 'Monthly Salary',
2348-'Months': 'Months',
2349-'Morgue Status': 'Morgue Status',
2350-'Morgue Units Available': 'Morgue Units Available',
2351-'Mosque': 'Mosque',
2352-'Motorcycle': 'Motorcycle',
2353-'Moustache': 'Moustache',
2354-'Move Feature: Drag feature to desired location': 'Move Feature: Drag feature to desired location',
2355-'Movements (Filter In/Out/Lost)': 'Movements (Filter In/Out/Lost)',
2356-'MultiPolygon': 'MultiPolygon',
2357-'Multiple': 'Multiple',
2358-'Multiple Choice (Multiple Answers)': 'Multiple Choice (Multiple Answers)',
2359-'Multiple Choice (Only One Answer)': 'Multiple Choice (Only One Answer)',
2360-'Multiple Text Fields': 'Multiple Text Fields',
2361-'Multiplicator': 'Multiplicator',
2362-'Muslim': 'Muslim',
2363-'My Tasks': 'My Tasks',
2364-'N/A': 'N/A',
2365-'Name': 'Name',
2366-'Name and/or ID': 'Name and/or ID',
2367-'Name of Storage Bin Type.': 'Name of Storage Bin Type.',
2368-'Name of the file (& optional sub-path) located in static which should be used for the background of the header.': 'Name of the file (& optional sub-path) located in static which should be used for the background of the header.',
2369-'Name of the file (& optional sub-path) located in static which should be used for the top-left image.': 'Name of the file (& optional sub-path) located in static which should be used for the top-left image.',
2370-'Name of the file (& optional sub-path) located in views which should be used for footer.': 'Name of the file (& optional sub-path) located in views which should be used for footer.',
2371-'Name of the person in local language and script (optional).': 'Name of the person in local language and script (optional).',
2372-'Names can be added in multiple languages': 'Names can be added in multiple languages',
2373-'National ID Card': 'National ID Card',
2374-'National NGO': 'National NGO',
2375-'Nationality': 'Nationality',
2376-'Nationality of the person.': 'Nationality of the person.',
2377-'Nautical Accident': 'Nautical Accident',
2378-'Nautical Hijacking': 'Nautical Hijacking',
2379-'Need Type': 'Need Type',
2380-'Need Type Details': 'Need Type Details',
2381-'Need Type added': 'Need Type added',
2382-'Need Type deleted': 'Need Type deleted',
2383-'Need Type updated': 'Need Type updated',
2384-'Need Types': 'Need Types',
2385-"Need a 'url' argument!": "Need a 'url' argument!",
2386-'Need added': 'Need added',
2387-'Need deleted': 'Need deleted',
2388-'Need to configure Twitter Authentication': 'Need to configure Twitter Authentication',
2389-'Need to specify a Budget!': 'Need to specify a Budget!',
2390-'Need to specify a Kit!': 'Need to specify a Kit!',
2391-'Need to specify a Resource!': 'Need to specify a Resource!',
2392-'Need to specify a bundle!': 'Need to specify a bundle!',
2393-'Need to specify a group!': 'Need to specify a group!',
2394-'Need to specify a location to search for.': 'Need to specify a location to search for.',
2395-'Need to specify a role!': 'Need to specify a role!',
2396-'Need to specify a table!': 'Need to specify a table!',
2397-'Need to specify a user!': 'Need to specify a user!',
2398-'Need updated': 'Need updated',
2399-'Needs': 'Needs',
2400-'Needs Details': 'Needs Details',
2401-'Needs elaboration!!!': 'Needs elaboration!!!',
2402-'Needs to reduce vulnerability to violence': 'Needs to reduce vulnerability to violence',
2403-'Negative Flow Isolation': 'Negative Flow Isolation',
2404-'Neighbourhood': 'Neighbourhood',
2405-'Neonatal ICU': 'Neonatal ICU',
2406-'Neonatology': 'Neonatology',
2407-'Network': 'Network',
2408-'Neurology': 'Neurology',
2409-'New': 'New',
2410-'New Assessment reported from': 'New Assessment reported from',
2411-'New Checklist': 'New Checklist',
2412-'New Peer': 'New Peer',
2413-'New Record': 'New Record',
2414-'New Report': 'New Report',
2415-'New Request': 'New Request',
2416-'New Solution Choice': 'New Solution Choice',
2417-'New Synchronization Peer': 'New Synchronization Peer',
2418-'New cases in the past 24h': 'New cases in the past 24h',
2419-'Next': 'Next',
2420-'Next View': 'Next View',
2421-'No': 'No',
2422-'No Activities Found': 'No Activities Found',
2423-'No Addresses currently registered': 'No Addresses currently registered',
2424-'No Assessment Summaries currently registered': 'No Assessment Summaries currently registered',
2425-'No Assessments currently registered': 'No Assessments currently registered',
2426-'No Baseline Types currently registered': 'No Baseline Types currently registered',
2427-'No Baselines currently registered': 'No Baselines currently registered',
2428-'No Budgets currently registered': 'No Budgets currently registered',
2429-'No Bundles currently registered': 'No Bundles currently registered',
2430-'No Catalog Items currently registered': 'No Catalog Items currently registered',
2431-'No Category<>Sub-Category<>Catalog Relation currently registered': 'No Category<>Sub-Category<>Catalog Relation currently registered',
2432-'No Checklist available': 'No Checklist available',
2433-'No Cluster Subsectors currently registered': 'No Cluster Subsectors currently registered',
2434-'No Configs currently defined': 'No Configs currently defined',
2435-'No Details currently registered': 'No Details currently registered',
2436-'No Documents found': 'No Documents found',
2437-'No Donors currently registered': 'No Donors currently registered',
2438-'No Feature Classes currently defined': 'No Feature Classes currently defined',
2439-'No Feature Layers currently defined': 'No Feature Layers currently defined',
2440-'No Flood Reports currently registered': 'No Flood Reports currently registered',
2441-'No Groups currently defined': 'No Groups currently defined',
2442-'No Groups currently registered': 'No Groups currently registered',
2443-'No Hospitals currently registered': 'No Hospitals currently registered',
2444-'No Identification Report Available': 'No Identification Report Available',
2445-'No Identities currently registered': 'No Identities currently registered',
2446-'No Image': 'No Image',
2447-'No Images currently registered': 'No Images currently registered',
2448-'No Impact Types currently registered': 'No Impact Types currently registered',
2449-'No Impacts currently registered': 'No Impacts currently registered',
2450-'No Incident Reports currently registered': 'No Incident Reports currently registered',
2451-'No Item Catalog Category currently registered': 'No Item Catalog Category currently registered',
2452-'No Item Catalog currently registered': 'No Item Catalog currently registered',
2453-'No Item Categories currently registered': 'No Item Categories currently registered',
2454-'No Item Packets currently registered': 'No Item Packets currently registered',
2455-'No Item Sub-Category currently registered': 'No Item Sub-Category currently registered',
2456-'No Item currently registered': 'No Item currently registered',
2457-'No Items currently registered': 'No Items currently registered',
2458-'No Items currently requested': 'No Items currently requested',
2459-'No Keys currently defined': 'No Keys currently defined',
2460-'No Kits currently registered': 'No Kits currently registered',
2461-'No Locations currently available': 'No Locations currently available',
2462-'No Locations currently registered': 'No Locations currently registered',
2463-'No Markers currently available': 'No Markers currently available',
2464-'No Members currently registered': 'No Members currently registered',
2465-'No Memberships currently defined': 'No Memberships currently defined',
2466-'No Memberships currently registered': 'No Memberships currently registered',
2467-'No Messages currently in Outbox': 'No Messages currently in Outbox',
2468-'No Need Types currently registered': 'No Need Types currently registered',
2469-'No Needs currently registered': 'No Needs currently registered',
2470-'No Offices currently registered': 'No Offices currently registered',
2471-'No Offices found!': 'No Offices found!',
2472-'No Organizations currently registered': 'No Organizations currently registered',
2473-'No People currently registered in this shelter': 'No People currently registered in this shelter',
2474-'No Persons currently registered': 'No Persons currently registered',
2475-'No Persons currently reported missing': 'No Persons currently reported missing',
2476-'No Persons found': 'No Persons found',
2477-'No Photos found': 'No Photos found',
2478-'No Presence Log Entries currently registered': 'No Presence Log Entries currently registered',
2479-'No Problems currently defined': 'No Problems currently defined',
2480-'No Projections currently defined': 'No Projections currently defined',
2481-'No Projects currently registered': 'No Projects currently registered',
2482-'No Rapid Assessments currently registered': 'No Rapid Assessments currently registered',
2483-'No Received Items currently registered': 'No Received Items currently registered',
2484-'No Received Shipments': 'No Received Shipments',
2485-'No Records currently available': 'No Records currently available',
2486-'No Records matching the query': 'No Records matching the query',
2487-'No Request Items currently registered': 'No Request Items currently registered',
2488-'No Request Shipments': 'No Request Shipments',
2489-'No Requests have been made yet': 'No Requests have been made yet',
2490-'No Requests match this criteria': 'No Requests match this criteria',
2491-'No Rivers currently registered': 'No Rivers currently registered',
2492-'No Roles currently defined': 'No Roles currently defined',
2493-'No Sections currently registered': 'No Sections currently registered',
2494-'No Sectors currently registered': 'No Sectors currently registered',
2495-'No Sent Items currently registered': 'No Sent Items currently registered',
2496-'No Sent Shipments': 'No Sent Shipments',
2497-'No Settings currently defined': 'No Settings currently defined',
2498-'No Shelter Services currently registered': 'No Shelter Services currently registered',
2499-'No Shelter Types currently registered': 'No Shelter Types currently registered',
2500-'No Shelters currently registered': 'No Shelters currently registered',
2501-'No Shipment Transit Logs currently registered': 'No Shipment Transit Logs currently registered',
2502-'No Shipment/Way Bills currently registered': 'No Shipment/Way Bills currently registered',
2503-'No Shipment<>Item Relation currently registered': 'No Shipment<>Item Relation currently registered',
2504-'No Sites currently registered': 'No Sites currently registered',
2505-'No Skill Types currently set': 'No Skill Types currently set',
2506-'No Solutions currently defined': 'No Solutions currently defined',
2507-'No Staff Types currently registered': 'No Staff Types currently registered',
2508-'No Staff currently registered': 'No Staff currently registered',
2509-'No Storage Bin Type currently registered': 'No Storage Bin Type currently registered',
2510-'No Storage Bins currently registered': 'No Storage Bins currently registered',
2511-'No Storage Locations currently registered': 'No Storage Locations currently registered',
2512-'No Subscription available': 'No Subscription available',
2513-'No Survey Answers currently registered': 'No Survey Answers currently registered',
2514-'No Survey Questions currently registered': 'No Survey Questions currently registered',
2515-'No Survey Sections currently registered': 'No Survey Sections currently registered',
2516-'No Survey Series currently registered': 'No Survey Series currently registered',
2517-'No Survey Template currently registered': 'No Survey Template currently registered',
2518-'No Tasks with Location Data': 'No Tasks with Location Data',
2519-'No Themes currently defined': 'No Themes currently defined',
2520-'No Tickets currently registered': 'No Tickets currently registered',
2521-'No Tracks currently available': 'No Tracks currently available',
2522-'No Units currently registered': 'No Units currently registered',
2523-'No Users currently registered': 'No Users currently registered',
2524-'No Volunteers currently registered': 'No Volunteers currently registered',
2525-'No Warehouse Items currently registered': 'No Warehouse Items currently registered',
2526-'No Warehouses currently registered': 'No Warehouses currently registered',
2527-'No Warehouses match this criteria': 'No Warehouses match this criteria',
2528-'No access at all': 'No access at all',
2529-'No access to this record!': 'No access to this record!',
2530-'No action recommended': 'No action recommended',
2531-'No conflicts logged': 'No conflicts logged',
2532-'No contact information available': 'No contact information available',
2533-'No contacts currently registered': 'No contacts currently registered',
2534-'No data in this table - cannot create PDF!': 'No data in this table - cannot create PDF!',
2535-'No databases in this application': 'No databases in this application',
2536-'No entries found': 'No entries found',
2537-'No entries matching the query': 'No entries matching the query',
2538-'No import jobs': 'No import jobs',
2539-'No location known for this person': 'No location known for this person',
2540-'No location known for this team': 'No location known for this team',
2541-'No log entries matching the query': 'No log entries matching the query',
2542-'No messages in the system': 'No messages in the system',
2543-'No peers currently registered': 'No peers currently registered',
2544-'No pending registrations found': 'No pending registrations found',
2545-'No pending registrations matching the query': 'No pending registrations matching the query',
2546-'No person record found for current user.': 'No person record found for current user.',
2547-'No positions currently registered': 'No positions currently registered',
2548-'No problem group defined yet': 'No problem group defined yet',
2549-'No records matching the query': 'No records matching the query',
2550-'No recovery reports available': 'No recovery reports available',
2551-'No report available.': 'No report available.',
2552-'No reports available.': 'No reports available.',
2553-'No reports currently available': 'No reports currently available',
2554-'No requests found': 'No requests found',
2555-'No resources currently registered': 'No resources currently registered',
2556-'No resources currently reported': 'No resources currently reported',
2557-'No service profile available': 'No service profile available',
2558-'No skills currently set': 'No skills currently set',
2559-'No status information available': 'No status information available',
2560-'No synchronization': 'No synchronization',
2561-'No tasks currently registered': 'No tasks currently registered',
2562-'No template found!': 'No template found!',
2563-'No units currently registered': 'No units currently registered',
2564-'No volunteer information registered': 'No volunteer information registered',
2565-'None': 'None',
2566-'None (no such record)': 'None (no such record)',
2567-'Noodles': 'Noodles',
2568-'Normal': 'Normal',
2569-'Normal food sources disrupted': 'Normal food sources disrupted',
2570-'Not Applicable': 'Not Applicable',
2571-'Not Authorised!': 'Not Authorised!',
2572-'Not Possible': 'Not Possible',
2573-'Not Set': 'Not Set',
2574-'Not authorised!': 'Not authorised!',
2575-'Not installed or incorrectly configured.': 'Not installed or incorrectly configured.',
2576-'Note that this list only shows active volunteers. To see all people registered in the system, do a search from the home screen instead.': 'Note that this list only shows active volunteers. To see all people registered in the system, do a search from the home screen instead.',
2577-'Notice to Airmen': 'Notice to Airmen',
2578-'Number': 'Number',
2579-'Number of Columns': 'Number of Columns',
2580-'Number of Patients': 'Number of Patients',
2581-'Number of Rows': 'Number of Rows',
2582-'Number of additional beds of that type expected to become available in this unit within the next 24 hours.': 'Number of additional beds of that type expected to become available in this unit within the next 24 hours.',
2583-'Number of alternative places for studying': 'Number of alternative places for studying',
2584-'Number of available/vacant beds of that type in this unit at the time of reporting.': 'Number of available/vacant beds of that type in this unit at the time of reporting.',
2585-'Number of deaths during the past 24 hours.': 'Number of deaths during the past 24 hours.',
2586-'Number of discharged patients during the past 24 hours.': 'Number of discharged patients during the past 24 hours.',
2587-'Number of doctors': 'Number of doctors',
2588-'Number of doctors actively working': 'Number of doctors actively working',
2589-'Number of houses damaged, but usable': 'Number of houses damaged, but usable',
2590-'Number of houses destroyed/uninhabitable': 'Number of houses destroyed/uninhabitable',
2591-'Number of in-patients at the time of reporting.': 'Number of in-patients at the time of reporting.',
2592-'Number of latrines': 'Number of latrines',
2593-'Number of midwives actively working': 'Number of midwives actively working',
2594-'Number of newly admitted patients during the past 24 hours.': 'Number of newly admitted patients during the past 24 hours.',
2595-'Number of non-medical staff': 'Number of non-medical staff',
2596-'Number of nurses': 'Number of nurses',
2597-'Number of nurses actively working': 'Number of nurses actively working',
2598-'Number of private schools': 'Number of private schools',
2599-'Number of public schools': 'Number of public schools',
2600-'Number of religious schools': 'Number of religious schools',
2601-'Number of schools damaged but usable': 'Number of schools damaged but usable',
2602-'Number of schools destroyed/uninhabitable': 'Number of schools destroyed/uninhabitable',
2603-'Number of schools open before disaster': 'Number of schools open before disaster',
2604-'Number of schools open now': 'Number of schools open now',
2605-'Number of teachers affected by disaster': 'Number of teachers affected by disaster',
2606-'Number of teachers before disaster': 'Number of teachers before disaster',
2607-'Number of vacant/available beds in this hospital. Automatically updated from daily reports.': 'Number of vacant/available beds in this hospital. Automatically updated from daily reports.',
2608-'Number of vacant/available units to which victims can be transported immediately.': 'Number of vacant/available units to which victims can be transported immediately.',
2609-'Number or Label on the identification tag this person is wearing (if any).': 'Number or Label on the identification tag this person is wearing (if any).',
2610-'Number/Percentage of affected population that is Female & Aged 0-5': 'Number/Percentage of affected population that is Female & Aged 0-5',
2611-'Number/Percentage of affected population that is Female & Aged 13-17': 'Number/Percentage of affected population that is Female & Aged 13-17',
2612-'Number/Percentage of affected population that is Female & Aged 18-25': 'Number/Percentage of affected population that is Female & Aged 18-25',
2613-'Number/Percentage of affected population that is Female & Aged 26-60': 'Number/Percentage of affected population that is Female & Aged 26-60',
2614-'Number/Percentage of affected population that is Female & Aged 6-12': 'Number/Percentage of affected population that is Female & Aged 6-12',
2615-'Number/Percentage of affected population that is Female & Aged 61+': 'Number/Percentage of affected population that is Female & Aged 61+',
2616-'Number/Percentage of affected population that is Male & Aged 0-5': 'Number/Percentage of affected population that is Male & Aged 0-5',
2617-'Number/Percentage of affected population that is Male & Aged 13-17': 'Number/Percentage of affected population that is Male & Aged 13-17',
2618-'Number/Percentage of affected population that is Male & Aged 18-25': 'Number/Percentage of affected population that is Male & Aged 18-25',
2619-'Number/Percentage of affected population that is Male & Aged 26-60': 'Number/Percentage of affected population that is Male & Aged 26-60',
2620-'Number/Percentage of affected population that is Male & Aged 6-12': 'Number/Percentage of affected population that is Male & Aged 6-12',
2621-'Number/Percentage of affected population that is Male & Aged 61+': 'Number/Percentage of affected population that is Male & Aged 61+',
2622-'Nursery Beds': 'Nursery Beds',
2623-'Nutrition': 'Nutrition',
2624-'OK': 'OK',
2625-'OR Reason': 'OR Reason',
2626-'OR Status': 'OR Status',
2627-'OR Status Reason': 'OR Status Reason',
2628-'Observer': 'Observer',
2629-'Obstetrics/Gynecology': 'Obstetrics/Gynecology',
2630-'Office': 'Office',
2631-'Office Address': 'Office Address',
2632-'Office Details': 'Office Details',
2633-'Office added': 'Office added',
2634-'Office deleted': 'Office deleted',
2635-'Office updated': 'Office updated',
2636-'Offices': 'Offices',
2637-'Offline Sync': 'Offline Sync',
2638-'Offline Sync (from USB/File Backup)': 'Offline Sync (from USB/File Backup)',
2639-'Older people as primary caregivers of children': 'Older people as primary caregivers of children',
2640-'Older people in care homes': 'Older people in care homes',
2641-'Older people participating in coping activities': 'Older people participating in coping activities',
2642-'Older people with chronical illnesses': 'Older people with chronical illnesses',
2643-'Older person (>60 yrs)': 'Older person (>60 yrs)',
2644-'On by default?': 'On by default?',
2645-'On by default? (only applicable to Overlays)': 'On by default? (only applicable to Overlays)',
2646-'One Time Cost': 'One Time Cost',
2647-'One time cost': 'One time cost',
2648-'One-time': 'One-time',
2649-'One-time costs': 'One-time costs',
2650-'Oops! Something went wrong...': 'Oops! Something went wrong...',
2651-'Oops! something went wrong on our side.': 'Oops! something went wrong on our side.',
2652-'Open': 'Open',
2653-'Open area': 'Open area',
2654-'Open recent': 'Open recent',
2655-'Operating Rooms': 'Operating Rooms',
2656-'Optional link to an Incident which this Assessment was triggered by.': 'Optional link to an Incident which this Assessment was triggered by.',
2657-'Optional. In GeoServer, this is the Workspace Namespace URI. Within the WFS getCapabilities, this is the FeatureType Name part before the colon(:).': 'Optional. In GeoServer, this is the Workspace Namespace URI. Within the WFS getCapabilities, this is the FeatureType Name part before the colon(:).',
2658-"Optional. The name of the geometry column. In PostGIS this defaults to 'the_geom'.": "Optional. The name of the geometry column. In PostGIS this defaults to 'the_geom'.",
2659-'Options': 'Options',
2660-'Organisation': 'Organisation',
2661-'Organization': 'Organization',
2662-'Organization Details': 'Organization Details',
2663-'Organization Registry': 'Organization Registry',
2664-'Organization added': 'Organization added',
2665-'Organization deleted': 'Organization deleted',
2666-'Organization updated': 'Organization updated',
2667-'Organizations': 'Organizations',
2668-'Origin': 'Origin',
2669-'Origin of the separated children': 'Origin of the separated children',
2670-'Other': 'Other',
2671-'Other (describe)': 'Other (describe)',
2672-'Other (specify)': 'Other (specify)',
2673-'Other Evidence': 'Other Evidence',
2674-'Other Faucet/Piped Water': 'Other Faucet/Piped Water',
2675-'Other Isolation': 'Other Isolation',
2676-'Other Name': 'Other Name',
2677-'Other activities of boys 13-17yrs': 'Other activities of boys 13-17yrs',
2678-'Other activities of boys 13-17yrs before disaster': 'Other activities of boys 13-17yrs before disaster',
2679-'Other activities of boys <12yrs': 'Other activities of boys <12yrs',
2680-'Other activities of boys <12yrs before disaster': 'Other activities of boys <12yrs before disaster',
2681-'Other activities of girls 13-17yrs': 'Other activities of girls 13-17yrs',
2682-'Other activities of girls 13-17yrs before disaster': 'Other activities of girls 13-17yrs before disaster',
2683-'Other activities of girls<12yrs': 'Other activities of girls<12yrs',
2684-'Other activities of girls<12yrs before disaster': 'Other activities of girls<12yrs before disaster',
2685-'Other alternative infant nutrition in use': 'Other alternative infant nutrition in use',
2686-'Other alternative places for study': 'Other alternative places for study',
2687-'Other assistance needed': 'Other assistance needed',
2688-'Other assistance, Rank': 'Other assistance, Rank',
2689-'Other current health problems, adults': 'Other current health problems, adults',
2690-'Other current health problems, children': 'Other current health problems, children',
2691-'Other events': 'Other events',
2692-'Other factors affecting school attendance': 'Other factors affecting school attendance',
2693-'Other major expenses': 'Other major expenses',
2694-'Other school assistance received': 'Other school assistance received',
2695-'Other school assistance, details': 'Other school assistance, details',
2696-'Other school assistance, source': 'Other school assistance, source',
2697-'Other side dishes in stock': 'Other side dishes in stock',
2698-'Other types of water storage containers': 'Other types of water storage containers',
2699-'Other ways to obtain food': 'Other ways to obtain food',
2700-'Outbound Mail settings are configured in models/000_config.py.': 'Outbound Mail settings are configured in models/000_config.py.',
2701-'Outbox': 'Outbox',
2702-'Outgoing SMS Handler': 'Outgoing SMS Handler',
2703-'Outgoing SMS handler': 'Outgoing SMS handler',
2704-'Overland Flow Flood': 'Overland Flow Flood',
2705-'Overlays': 'Overlays',
2706-'Owned Resources': 'Owned Resources',
2707-'PDAM': 'PDAM',
2708-'PIN': 'PIN',
2709-'PIN number ': 'PIN number ',
2710-'PL Women': 'PL Women',
2711-'Packet': 'Packet',
2712-'Pan Map: keep the left mouse button pressed and drag the map': 'Pan Map: keep the left mouse button pressed and drag the map',
2713-'Parameters': 'Parameters',
2714-'Parent': 'Parent',
2715-'Parent Office': 'Parent Office',
2716-"Parent level should be higher than this record's level. Parent level is": "Parent level should be higher than this record's level. Parent level is",
2717-'Parent needs to be of the correct level': 'Parent needs to be of the correct level',
2718-'Parent needs to be set': 'Parent needs to be set',
2719-'Parent needs to be set for locations of level': 'Parent needs to be set for locations of level',
2720-'Parents/Caregivers missing children': 'Parents/Caregivers missing children',
2721-'Participant': 'Participant',
2722-'Pashto': 'Pashto',
2723-'Passport': 'Passport',
2724-'Password': 'Password',
2725-"Password fields don't match": "Password fields don't match",
2726-'Pathology': 'Pathology',
2727-'Patients': 'Patients',
2728-'Pediatric ICU': 'Pediatric ICU',
2729-'Pediatric Psychiatric': 'Pediatric Psychiatric',
2730-'Pediatrics': 'Pediatrics',
2731-'Peer': 'Peer',
2732-'Peer Details': 'Peer Details',
2733-'Peer Registration': 'Peer Registration',
2734-'Peer Registration Details': 'Peer Registration Details',
2735-'Peer Registration Request': 'Peer Registration Request',
2736-'Peer Type': 'Peer Type',
2737-'Peer UID': 'Peer UID',
2738-'Peer added': 'Peer added',
2739-'Peer deleted': 'Peer deleted',
2740-'Peer not allowed to push': 'Peer not allowed to push',
2741-'Peer registration request added': 'Peer registration request added',
2742-'Peer registration request deleted': 'Peer registration request deleted',
2743-'Peer registration request updated': 'Peer registration request updated',
2744-'Peer updated': 'Peer updated',
2745-'Peers': 'Peers',
2746-'Pending Requests': 'Pending Requests',
2747-'People': 'People',
2748-'People Needing Food': 'People Needing Food',
2749-'People Needing Shelter': 'People Needing Shelter',
2750-'People Needing Water': 'People Needing Water',
2751-'People Trapped': 'People Trapped',
2752-'People with chronical illnesses': 'People with chronical illnesses',
2753-'Person': 'Person',
2754-'Person 1': 'Person 1',
2755-'Person 1, Person 2 are the potentially duplicate records': 'Person 1, Person 2 are the potentially duplicate records',
2756-'Person 2': 'Person 2',
2757-'Person Data': 'Person Data',
2758-'Person De-duplicator': 'Person De-duplicator',
2759-'Person Details': 'Person Details',
2760-'Person Finder': 'Person Finder',
2761-'Person Registry': 'Person Registry',
2762-'Person added': 'Person added',
2763-'Person deleted': 'Person deleted',
2764-'Person details updated': 'Person details updated',
2765-'Person interviewed': 'Person interviewed',
2766-'Person missing': 'Person missing',
2767-'Person reporting': 'Person reporting',
2768-'Person who has actually seen the person/group.': 'Person who has actually seen the person/group.',
2769-'Person who is reporting about the presence.': 'Person who is reporting about the presence.',
2770-'Person who observed the presence (if different from reporter).': 'Person who observed the presence (if different from reporter).',
2771-'Person/Group': 'Person/Group',
2772-'Personal Data': 'Personal Data',
2773-'Personal Effects': 'Personal Effects',
2774-'Personal Effects Details': 'Personal Effects Details',
2775-'Personal impact of disaster': 'Personal impact of disaster',
2776-'Persons': 'Persons',
2777-'Persons with disability (mental)': 'Persons with disability (mental)',
2778-'Persons with disability (physical)': 'Persons with disability (physical)',
2779-'Phone': 'Phone',
2780-'Phone 1': 'Phone 1',
2781-'Phone 2': 'Phone 2',
2782-"Phone number to donate to this organization's relief efforts.": "Phone number to donate to this organization's relief efforts.",
2783-'Phone/Business': 'Phone/Business',
2784-'Phone/Emergency': 'Phone/Emergency',
2785-'Phone/Exchange': 'Phone/Exchange',
2786-'Photo': 'Photo',
2787-'Photo Details': 'Photo Details',
2788-'Photo added': 'Photo added',
2789-'Photo deleted': 'Photo deleted',
2790-'Photo updated': 'Photo updated',
2791-'Photograph': 'Photograph',
2792-'Photos': 'Photos',
2793-'Physical Description': 'Physical Description',
2794-'Picture upload and finger print upload facility': 'Picture upload and finger print upload facility',
2795-'Place for solid waste disposal': 'Place for solid waste disposal',
2796-'Place of Recovery': 'Place of Recovery',
2797-'Places the children have been sent to': 'Places the children have been sent to',
2798-'Playing': 'Playing',
2799-"Please come back after sometime if that doesn't help.": "Please come back after sometime if that doesn't help.",
2800-'Please correct all errors.': 'Please correct all errors.',
2801-'Please enter a First Name': 'Please enter a First Name',
2802-'Please enter a valid email address': 'Please enter a valid email address',
2803-'Please enter the first few letters of the Person/Group for the autocomplete.': 'Please enter the first few letters of the Person/Group for the autocomplete.',
2804-'Please enter the recipient': 'Please enter the recipient',
2805-'Please fill this!': 'Please fill this!',
2806-'Please report here where you are:': 'Please report here where you are:',
2807-'Please select another level': 'Please select another level',
2808-'Please specify any problems and obstacles with the proper handling of the disease, in detail (in numbers, where appropriate). You may also add suggestions the situation could be improved.': 'Please specify any problems and obstacles with the proper handling of the disease, in detail (in numbers, where appropriate). You may also add suggestions the situation could be improved.',
2809-'Please use this field to record any additional information, including a history of the record if it is updated.': 'Please use this field to record any additional information, including a history of the record if it is updated.',
2810-'Please use this field to record any additional information, such as Ushahidi instance IDs. Include a history of the record if it is updated.': 'Please use this field to record any additional information, such as Ushahidi instance IDs. Include a history of the record if it is updated.',
2811-'Pledge Aid': 'Pledge Aid',
2812-'Pledge Aid to match these Requests': 'Pledge Aid to match these Requests',
2813-'Pledge Support': 'Pledge Support',
2814-'Pledged': 'Pledged',
2815-'Pledges': 'Pledges',
2816-'Point': 'Point',
2817-'Poisoning': 'Poisoning',
2818-'Poisonous Gas': 'Poisonous Gas',
2819-'Police': 'Police',
2820-'Pollution and other environmental': 'Pollution and other environmental',
2821-'Polygon': 'Polygon',
2822-'Porridge': 'Porridge',
2823-'Port': 'Port',
2824-'Port Closure': 'Port Closure',
2825-'Position Details': 'Position Details',
2826-'Position added': 'Position added',
2827-'Position deleted': 'Position deleted',
2828-'Position type': 'Position type',
2829-'Position updated': 'Position updated',
2830-'Positions': 'Positions',
2831-'Postcode': 'Postcode',
2832-'Poultry': 'Poultry',
2833-'Poultry restocking, Rank': 'Poultry restocking, Rank',
2834-'Pounds': 'Pounds',
2835-'Power Failure': 'Power Failure',
2836-'Powered by Sahana Eden': 'Powered by Sahana Eden',
2837-'Preferred Name': 'Preferred Name',
2838-'Pregnant women': 'Pregnant women',
2839-'Preliminary': 'Preliminary',
2840-'Presence': 'Presence',
2841-'Presence Condition': 'Presence Condition',
2842-'Presence Log': 'Presence Log',
2843-'Previous': 'Previous',
2844-'Previous View': 'Previous View',
2845-'Primary Name': 'Primary Name',
2846-'Print Extent': 'Print Extent',
2847-'Print Map': 'Print Map',
2848-'Printed from Sahana Eden': 'Printed from Sahana Eden',
2849-'Printing disabled since server not accessible: ': 'Printing disabled since server not accessible: ',
2850-'Priority': 'Priority',
2851-'Priority Level': 'Priority Level',
2852-'Private': 'Private',
2853-'Problem': 'Problem',
2854-'Problem Administration': 'Problem Administration',
2855-'Problem Details': 'Problem Details',
2856-'Problem Group': 'Problem Group',
2857-'Problem Title': 'Problem Title',
2858-'Problem added': 'Problem added',
2859-'Problem deleted': 'Problem deleted',
2860-'Problem updated': 'Problem updated',
2861-'Problems': 'Problems',
2862-'Procedure': 'Procedure',
2863-'Procurements': 'Procurements',
2864-'Product Description': 'Product Description',
2865-'Product Name': 'Product Name',
2866-'Profile': 'Profile',
2867-'Project': 'Project',
2868-'Project Details': 'Project Details',
2869-'Project Status': 'Project Status',
2870-'Project Tracking': 'Project Tracking',
2871-'Project added': 'Project added',
2872-'Project deleted': 'Project deleted',
2873-'Project has no Lat/Lon': 'Project has no Lat/Lon',
2874-'Project updated': 'Project updated',
2875-'Projection': 'Projection',
2876-'Projection Details': 'Projection Details',
2877-'Projection added': 'Projection added',
2878-'Projection deleted': 'Projection deleted',
2879-'Projection updated': 'Projection updated',
2880-'Projections': 'Projections',
2881-'Projects': 'Projects',
2882-'Protected resource': 'Protected resource',
2883-'Protection': 'Protection',
2884-'Provide Metadata for your media files': 'Provide Metadata for your media files',
2885-'Provide a password': 'Provide a password',
2886-'Province': 'Province',
2887-'Proxy-server': 'Proxy-server',
2888-'Psychiatrics/Adult': 'Psychiatrics/Adult',
2889-'Psychiatrics/Pediatric': 'Psychiatrics/Pediatric',
2890-'Public': 'Public',
2891-'Public Event': 'Public Event',
2892-'Public and private transportation': 'Public and private transportation',
2893-'Pull tickets from external feed': 'Pull tickets from external feed',
2894-'Punjabi': 'Punjabi',
2895-'Push tickets to external system': 'Push tickets to external system',
2896-'Put a choice in the box': 'Put a choice in the box',
2897-'Pyroclastic Flow': 'Pyroclastic Flow',
2898-'Pyroclastic Surge': 'Pyroclastic Surge',
2899-'Python Serial module not available within the running Python - this needs installing to activate the Modem': 'Python Serial module not available within the running Python - this needs installing to activate the Modem',
2900-'Quantity': 'Quantity',
2901-'Quarantine': 'Quarantine',
2902-'Queries': 'Queries',
2903-'Query': 'Query',
2904-'Query Feature': 'Query Feature',
2905-'Queryable?': 'Queryable?',
2906-'RECORD A': 'RECORD A',
2907-'RECORD B': 'RECORD B',
2908-'RESPONSE': 'RESPONSE',
2909-'Race': 'Race',
2910-'Radiological Hazard': 'Radiological Hazard',
2911-'Radiology': 'Radiology',
2912-'Railway Accident': 'Railway Accident',
2913-'Railway Hijacking': 'Railway Hijacking',
2914-'Rain Fall': 'Rain Fall',
2915-'Rapid Assessment': 'Rapid Assessment',
2916-'Rapid Assessment Details': 'Rapid Assessment Details',
2917-'Rapid Assessment added': 'Rapid Assessment added',
2918-'Rapid Assessment deleted': 'Rapid Assessment deleted',
2919-'Rapid Assessment updated': 'Rapid Assessment updated',
2920-'Rapid Assessments': 'Rapid Assessments',
2921-'Rapid Assessments & Flexible Impact Assessments': 'Rapid Assessments & Flexible Impact Assessments',
2922-'Rapid Close Lead': 'Rapid Close Lead',
2923-'Rating Scale': 'Rating Scale',
2924-'Raw Database access': 'Raw Database access',
2925-'Real World Arbitrary Units': 'Real World Arbitrary Units',
2926-'Receive': 'Receive',
2927-'Receive Items': 'Receive Items',
2928-'Receive Shipment': 'Receive Shipment',
2929-'Received': 'Received',
2930-'Received By': 'Received By',
2931-'Received Item Details': 'Received Item Details',
2932-'Received Item added': 'Received Item added',
2933-'Received Item deleted': 'Received Item deleted',
2934-'Received Item updated': 'Received Item updated',
2935-'Received Items': 'Received Items',
2936-'Received Items added to Warehouse Items': 'Received Items added to Warehouse Items',
2937-'Received Shipment Details': 'Received Shipment Details',
2938-'Received Shipment canceled': 'Received Shipment canceled',
2939-'Received Shipment updated': 'Received Shipment updated',
2940-'Received Shipments': 'Received Shipments',
2941-'Recipient': 'Recipient',
2942-'Recipients': 'Recipients',
2943-'Record Details': 'Record Details',
2944-'Record ID': 'Record ID',
2945-'Record Saved': 'Record Saved',
2946-'Record added': 'Record added',
2947-'Record deleted': 'Record deleted',
2948-'Record last updated': 'Record last updated',
2949-'Record not found!': 'Record not found!',
2950-'Record updated': 'Record updated',
2951-'Records': 'Records',
2952-'Recovery': 'Recovery',
2953-'Recovery Request': 'Recovery Request',
2954-'Recovery Request added': 'Recovery Request added',
2955-'Recovery Request deleted': 'Recovery Request deleted',
2956-'Recovery Request updated': 'Recovery Request updated',
2957-'Recovery Requests': 'Recovery Requests',
2958-'Recovery report added': 'Recovery report added',
2959-'Recovery report deleted': 'Recovery report deleted',
2960-'Recovery report updated': 'Recovery report updated',
2961-'Recurring': 'Recurring',
2962-'Recurring Cost': 'Recurring Cost',
2963-'Recurring cost': 'Recurring cost',
2964-'Recurring costs': 'Recurring costs',
2965-'Reference Document': 'Reference Document',
2966-'Regional': 'Regional',
2967-'Register': 'Register',
2968-'Register Person': 'Register Person',
2969-'Register Person into this Shelter': 'Register Person into this Shelter',
2970-'Register them as a volunteer': 'Register them as a volunteer',
2971-'Registered People': 'Registered People',
2972-'Registered users can': 'Registered users can',
2973-'Registering ad-hoc volunteers willing to contribute': 'Registering ad-hoc volunteers willing to contribute',
2974-'Registration': 'Registration',
2975-'Registration Details': 'Registration Details',
2976-'Registration added': 'Registration added',
2977-'Registration entry deleted': 'Registration entry deleted',
2978-'Registration key': 'Registration key',
2979-'Registration successful': 'Registration successful',
2980-'Registration updated': 'Registration updated',
2981-'Registry keeps track of all the relief organizations working in the disaster region. It captures not only the places where they are active, but also captures information on the range of projects they are providing in each area.': 'Registry keeps track of all the relief organizations working in the disaster region. It captures not only the places where they are active, but also captures information on the range of projects they are providing in each area.',
2982-'Rehabilitation/Long Term Care': 'Rehabilitation/Long Term Care',
2983-'Reliable access to sanitation/hygiene items': 'Reliable access to sanitation/hygiene items',
2984-'Relief': 'Relief',
2985-'Relief Item Catalog': 'Relief Item Catalog',
2986-'Relief Team': 'Relief Team',
2987-'Religion': 'Religion',
2988-'Religious Leader': 'Religious Leader',
2989-'Relocate as instructed in the <instruction>': 'Relocate as instructed in the <instruction>',
2990-'Remove': 'Remove',
2991-'Remove Feature: Select the feature you wish to remove & press the delete key': 'Remove Feature: Select the feature you wish to remove & press the delete key',
2992-'Repeat your password': 'Repeat your password',
2993-'Replace': 'Replace',
2994-'Replace if Master': 'Replace if Master',
2995-'Replace if Newer': 'Replace if Newer',
2996-'Report': 'Report',
2997-'Report Another Assessment...': 'Report Another Assessment...',
2998-'Report Details': 'Report Details',
2999-'Report Resource': 'Report Resource',
3000-'Report Type': 'Report Type',
3001-'Report Types Include': 'Report Types Include',
3002-'Report a Problem with the Software': 'Report a Problem with the Software',
3003-'Report added': 'Report added',
3004-'Report deleted': 'Report deleted',
3005-'Report my location': 'Report my location',
3006-'Report that person missing': 'Report that person missing',
3007-'Report the contributing factors for the current EMS status.': 'Report the contributing factors for the current EMS status.',
3008-'Report the contributing factors for the current OR status.': 'Report the contributing factors for the current OR status.',
3009-'Report the person as found': 'Report the person as found',
3010-'Report them as found': 'Report them as found',
3011-'Report them missing': 'Report them missing',
3012-'Report updated': 'Report updated',
3013-'ReportLab module not available within the running Python - this needs installing for PDF output!': 'ReportLab module not available within the running Python - this needs installing for PDF output!',
3014-'Reporter': 'Reporter',
3015-'Reporter Name': 'Reporter Name',
3016-'Reporting on the projects in the region': 'Reporting on the projects in the region',
3017-'Reports': 'Reports',
3018-'Request': 'Request',
3019-'Request Added': 'Request Added',
3020-'Request Canceled': 'Request Canceled',
3021-'Request Details': 'Request Details',
3022-'Request Item': 'Request Item',
3023-'Request Item Details': 'Request Item Details',
3024-'Request Item added': 'Request Item added',
3025-'Request Item deleted': 'Request Item deleted',
3026-'Request Item updated': 'Request Item updated',
3027-'Request Items': 'Request Items',
3028-'Request Type': 'Request Type',
3029-'Request Updated': 'Request Updated',
3030-'Request added': 'Request added',
3031-'Request deleted': 'Request deleted',
3032-'Request for Role Upgrade': 'Request for Role Upgrade',
3033-'Request updated': 'Request updated',
3034-'Request, Response & Session': 'Request, Response & Session',
3035-'Requested': 'Requested',
3036-'Requested By Location': 'Requested By Location',
3037-'Requested From Warehouse': 'Requested From Warehouse',
3038-'Requested by': 'Requested by',
3039-'Requested on': 'Requested on',
3040-'Requester': 'Requester',
3041-'Requestor': 'Requestor',
3042-'Requests': 'Requests',
3043-'Requests for Item': 'Requests for Item',
3044-'Requires Login!': 'Requires Login!',
3045-'Requires login': 'Requires login',
3046-'Rescue and recovery': 'Rescue and recovery',
3047-'Reset': 'Reset',
3048-'Reset Password': 'Reset Password',
3049-'Resize Feature: Select the feature you wish to resize & then Drag the associated dot to your desired size': 'Resize Feature: Select the feature you wish to resize & then Drag the associated dot to your desired size',
3050-'Resolution': 'Resolution',
3051-'Resolve': 'Resolve',
3052-'Resolve Conflict': 'Resolve Conflict',
3053-'Resolve link brings up a new screen which helps to resolve these duplicate records and update the database.': 'Resolve link brings up a new screen which helps to resolve these duplicate records and update the database.',
3054-'Resource': 'Resource',
3055-'Resource Details': 'Resource Details',
3056-'Resource added': 'Resource added',
3057-'Resource deleted': 'Resource deleted',
3058-'Resource updated': 'Resource updated',
3059-'Resources': 'Resources',
3060-'Respiratory Infections': 'Respiratory Infections',
3061-'Restricted Access': 'Restricted Access',
3062-'Restrictions': 'Restrictions',
3063-'Results': 'Results',
3064-'Retail Crime': 'Retail Crime',
3065-'Retrieve Password': 'Retrieve Password',
3066-'Rice': 'Rice',
3067-'Riot': 'Riot',
3068-'River': 'River',
3069-'River Details': 'River Details',
3070-'River added': 'River added',
3071-'River deleted': 'River deleted',
3072-'River updated': 'River updated',
3073-'Rivers': 'Rivers',
3074-'Road Accident': 'Road Accident',
3075-'Road Closed': 'Road Closed',
3076-'Road Conditions': 'Road Conditions',
3077-'Road Delay': 'Road Delay',
3078-'Road Hijacking': 'Road Hijacking',
3079-'Road Usage Condition': 'Road Usage Condition',
3080-'Role': 'Role',
3081-'Role Details': 'Role Details',
3082-'Role Manager': 'Role Manager',
3083-'Role Required': 'Role Required',
3084-'Role Updated': 'Role Updated',
3085-'Role added': 'Role added',
3086-'Role deleted': 'Role deleted',
3087-'Role updated': 'Role updated',
3088-'Role-based': 'Role-based',
3089-'Roles': 'Roles',
3090-'Roles Permitted': 'Roles Permitted',
3091-'Roof tile': 'Roof tile',
3092-'Rotate Feature: Select the feature you wish to rotate & then Drag the associated dot to rotate to your desired location': 'Rotate Feature: Select the feature you wish to rotate & then Drag the associated dot to rotate to your desired location',
3093-'Rotation': 'Rotation',
3094-'Row Choices (One Per Line)': 'Row Choices (One Per Line)',
3095-'Rows in table': 'Rows in table',
3096-'Rows selected': 'Rows selected',
3097-'Run Functional Tests': 'Run Functional Tests',
3098-'Run Interval': 'Run Interval',
3099-'Running Cost': 'Running Cost',
3100-'SITUATION': 'SITUATION',
3101-'Safe environment for vulnerable groups': 'Safe environment for vulnerable groups',
3102-'Safety of children and women affected by disaster': 'Safety of children and women affected by disaster',
3103-'Sahana Administrator': 'Sahana Administrator',
3104-'Sahana Agasti': 'Sahana Agasti',
3105-'Sahana Blue': 'Sahana Blue',
3106-'Sahana Community Chat': 'Sahana Community Chat',
3107-'Sahana Eden': 'Sahana Eden',
3108-'Sahana Eden <=> Other': 'Sahana Eden <=> Other',
3109-'Sahana Eden <=> Sahana Eden': 'Sahana Eden <=> Sahana Eden',
3110-'Sahana Eden Disaster Management Platform': 'Sahana Eden Disaster Management Platform',
3111-'Sahana Eden Open Source Disaster Management Platform': 'Sahana Eden Open Source Disaster Management Platform',
3112-'Sahana Eden Website': 'Sahana Eden Website',
3113-'Sahana Green': 'Sahana Green',
3114-'Sahana Login Approval Pending': 'Sahana Login Approval Pending',
3115-'Sahana Steel': 'Sahana Steel',
3116-'Sahana access granted': 'Sahana access granted',
3117-'Sahana: new request has been made. Please login to see if you can fulfil the request.': 'Sahana: new request has been made. Please login to see if you can fulfil the request.',
3118-'Salted Fish': 'Salted Fish',
3119-'Salvage material usable from destroyed houses': 'Salvage material usable from destroyed houses',
3120-'Salvage material usable from destroyed schools': 'Salvage material usable from destroyed schools',
3121-'Sanitation problems': 'Sanitation problems',
3122-'Satellite': 'Satellite',
3123-'Satellite Office': 'Satellite Office',
3124-'Saturday': 'Saturday',
3125-'Save': 'Save',
3126-'Saved.': 'Saved.',
3127-'Saving...': 'Saving...',
3128-'Scale': 'Scale',
3129-'Scale of Results': 'Scale of Results',
3130-'Schedule': 'Schedule',
3131-'School': 'School',
3132-'School Closure': 'School Closure',
3133-'School Lockdown': 'School Lockdown',
3134-'School Teacher': 'School Teacher',
3135-'School assistance received/expected': 'School assistance received/expected',
3136-'School destroyed': 'School destroyed',
3137-'School heavily damaged': 'School heavily damaged',
3138-'School tents received': 'School tents received',
3139-'School tents, source': 'School tents, source',
3140-'School used for other purpose': 'School used for other purpose',
3141-'School/studying': 'School/studying',
3142-'Schools': 'Schools',
3143-'Search': 'Search',
3144-'Search & List Bin Types': 'Search & List Bin Types',
3145-'Search & List Bins': 'Search & List Bins',
3146-'Search & List Catalog': 'Search & List Catalog',
3147-'Search & List Category': 'Search & List Category',
3148-'Search & List Items': 'Search & List Items',
3149-'Search & List Locations': 'Search & List Locations',
3150-'Search & List Site': 'Search & List Site',
3151-'Search & List Sub-Category': 'Search & List Sub-Category',
3152-'Search & List Unit': 'Search & List Unit',
3153-'Search Activities': 'Search Activities',
3154-'Search Activity Report': 'Search Activity Report',
3155-'Search Addresses': 'Search Addresses',
3156-'Search Assessment Summaries': 'Search Assessment Summaries',
3157-'Search Assessments': 'Search Assessments',
3158-'Search Baseline Type': 'Search Baseline Type',
3159-'Search Baselines': 'Search Baselines',
3160-'Search Budgets': 'Search Budgets',
3161-'Search Bundles': 'Search Bundles',
3162-'Search Catalog Items': 'Search Catalog Items',
3163-'Search Category<>Sub-Category<>Catalog Relation': 'Search Category<>Sub-Category<>Catalog Relation',
3164-'Search Checklists': 'Search Checklists',
3165-'Search Cluster Subsectors': 'Search Cluster Subsectors',
3166-'Search Configs': 'Search Configs',
3167-'Search Contact Information': 'Search Contact Information',
3168-'Search Contacts': 'Search Contacts',
3169-'Search Documents': 'Search Documents',
3170-'Search Donors': 'Search Donors',
3171-'Search Feature Class': 'Search Feature Class',
3172-'Search Feature Layers': 'Search Feature Layers',
3173-'Search Flood Reports': 'Search Flood Reports',
3174-'Search Geonames': 'Search Geonames',
3175-'Search Groups': 'Search Groups',
3176-'Search Hospitals': 'Search Hospitals',
3177-'Search Identity': 'Search Identity',
3178-'Search Images': 'Search Images',
3179-'Search Impact Type': 'Search Impact Type',
3180-'Search Impacts': 'Search Impacts',
3181-'Search Incident Reports': 'Search Incident Reports',
3182-'Search Item Catalog Category(s)': 'Search Item Catalog Category(s)',
3183-'Search Item Catalog(s)': 'Search Item Catalog(s)',
3184-'Search Item Categories': 'Search Item Categories',
3185-'Search Item Packets': 'Search Item Packets',
3186-'Search Item Sub-Category(s)': 'Search Item Sub-Category(s)',
3187-'Search Items': 'Search Items',
3188-'Search Keys': 'Search Keys',
3189-'Search Kits': 'Search Kits',
3190-'Search Layers': 'Search Layers',
3191-'Search Locations': 'Search Locations',
3192-'Search Log Entry': 'Search Log Entry',
3193-'Search Markers': 'Search Markers',
3194-'Search Member': 'Search Member',
3195-'Search Membership': 'Search Membership',
3196-'Search Memberships': 'Search Memberships',
3197-'Search Need Type': 'Search Need Type',
3198-'Search Needs': 'Search Needs',
3199-'Search Offices': 'Search Offices',
3200-'Search Organizations': 'Search Organizations',
3201-'Search Peer': 'Search Peer',
3202-'Search Personal Effects': 'Search Personal Effects',
3203-'Search Persons': 'Search Persons',
3204-'Search Photos': 'Search Photos',
3205-'Search Positions': 'Search Positions',
3206-'Search Problems': 'Search Problems',
3207-'Search Projections': 'Search Projections',
3208-'Search Projects': 'Search Projects',
3209-'Search Rapid Assessments': 'Search Rapid Assessments',
3210-'Search Received Items': 'Search Received Items',
3211-'Search Received Shipments': 'Search Received Shipments',
3212-'Search Records': 'Search Records',
3213-'Search Registations': 'Search Registations',
3214-'Search Registration Request': 'Search Registration Request',
3215-'Search Report': 'Search Report',
3216-'Search Reports': 'Search Reports',
3217-'Search Request': 'Search Request',
3218-'Search Request Items': 'Search Request Items',
3219-'Search Requests': 'Search Requests',
3220-'Search Resources': 'Search Resources',
3221-'Search Rivers': 'Search Rivers',
3222-'Search Roles': 'Search Roles',
3223-'Search Sections': 'Search Sections',
3224-'Search Sectors': 'Search Sectors',
3225-'Search Sent Items': 'Search Sent Items',
3226-'Search Sent Shipments': 'Search Sent Shipments',
3227-'Search Service Profiles': 'Search Service Profiles',
3228-'Search Settings': 'Search Settings',
3229-'Search Shelter Services': 'Search Shelter Services',
3230-'Search Shelter Types': 'Search Shelter Types',
3231-'Search Shelters': 'Search Shelters',
3232-'Search Shipment Transit Logs': 'Search Shipment Transit Logs',
3233-'Search Shipment/Way Bills': 'Search Shipment/Way Bills',
3234-'Search Shipment<>Item Relation': 'Search Shipment<>Item Relation',
3235-'Search Site(s)': 'Search Site(s)',
3236-'Search Skill Types': 'Search Skill Types',
3237-'Search Skills': 'Search Skills',
3238-'Search Solutions': 'Search Solutions',
3239-'Search Staff': 'Search Staff',
3240-'Search Staff Types': 'Search Staff Types',
3241-'Search Status': 'Search Status',
3242-'Search Storage Bin Type(s)': 'Search Storage Bin Type(s)',
3243-'Search Storage Bin(s)': 'Search Storage Bin(s)',
3244-'Search Storage Location(s)': 'Search Storage Location(s)',
3245-'Search Subscriptions': 'Search Subscriptions',
3246-'Search Tasks': 'Search Tasks',
3247-'Search Teams': 'Search Teams',
3248-'Search Themes': 'Search Themes',
3249-'Search Tickets': 'Search Tickets',
3250-'Search Tracks': 'Search Tracks',
3251-'Search Twitter Tags': 'Search Twitter Tags',
3252-'Search Units': 'Search Units',
3253-'Search Users': 'Search Users',
3254-'Search Volunteer Registrations': 'Search Volunteer Registrations',
3255-'Search Volunteers': 'Search Volunteers',
3256-'Search Warehouse Items': 'Search Warehouse Items',
3257-'Search Warehouses': 'Search Warehouses',
3258-'Search and Edit Group': 'Search and Edit Group',
3259-'Search and Edit Individual': 'Search and Edit Individual',
3260-'Search by ID Tag': 'Search by ID Tag',
3261-'Search by Skill Types': 'Search by Skill Types',
3262-'Search for Items': 'Search for Items',
3263-'Search for a Person': 'Search for a Person',
3264-'Search for a Project': 'Search for a Project',
3265-'Search for a Request': 'Search for a Request',
3266-'Search here for a person in order to:': 'Search here for a person in order to:',
3267-"Search here for a person's record in order to:": "Search here for a person's record in order to:",
3268-'Search messages': 'Search messages',
3269-'Searching for different groups and individuals': 'Searching for different groups and individuals',
3270-'Secondary Server (Optional)': 'Secondary Server (Optional)',
3271-'Seconds must be a number between 0 and 60': 'Seconds must be a number between 0 and 60',
3272-'Section Details': 'Section Details',
3273-'Section deleted': 'Section deleted',
3274-'Section updated': 'Section updated',
3275-'Sections': 'Sections',
3276-'Sector': 'Sector',
3277-'Sector Details': 'Sector Details',
3278-'Sector added': 'Sector added',
3279-'Sector deleted': 'Sector deleted',
3280-'Sector updated': 'Sector updated',
3281-'Sectors': 'Sectors',
3282-'Security Policy': 'Security Policy',
3283-'Security Status': 'Security Status',
3284-'Security problems': 'Security problems',
3285-'Seen': 'Seen',
3286-'Select Items from this Warehouse': 'Select Items from this Warehouse',
3287-"Select a person in charge for status 'assigned'": "Select a person in charge for status 'assigned'",
3288-'Select a question from the list': 'Select a question from the list',
3289-'Select all that apply': 'Select all that apply',
3290-'Select an Organization to see a list of offices': 'Select an Organization to see a list of offices',
3291-'Select the overlays for Assessments and Activities relating to each Need to identify the gap.': 'Select the overlays for Assessments and Activities relating to each Need to identify the gap.',
3292-'Select the person assigned to this role for this project.': 'Select the person assigned to this role for this project.',
3293-'Select the person associated with this scenario.': 'Select the person associated with this scenario.',
3294-'Selects whether to use a Modem, Tropo or other Gateway for sending out SMS': 'Selects whether to use a Modem, Tropo or other Gateway for sending out SMS',
3295-'Self Registration': 'Self Registration',
3296-'Self-registration': 'Self-registration',
3297-'Send': 'Send',
3298-'Send Alerts using Email &/or SMS': 'Send Alerts using Email &/or SMS',
3299-'Send Notification': 'Send Notification',
3300-'Send Shipment': 'Send Shipment',
3301-'Send message': 'Send message',
3302-'Send new message': 'Send new message',
3303-'Sends & Receives Alerts via Email & SMS': 'Sends & Receives Alerts via Email & SMS',
3304-'Senior (50+)': 'Senior (50+)',
3305-'Sent': 'Sent',
3306-'Sent Item': 'Sent Item',
3307-'Sent Item Details': 'Sent Item Details',
3308-'Sent Item added': 'Sent Item added',
3309-'Sent Item deleted': 'Sent Item deleted',
3310-'Sent Item updated': 'Sent Item updated',
3311-'Sent Items': 'Sent Items',
3312-'Sent Shipment Details': 'Sent Shipment Details',
3313-'Sent Shipment canceled': 'Sent Shipment canceled',
3314-'Sent Shipment updated': 'Sent Shipment updated',
3315-'Sent Shipments': 'Sent Shipments',
3316-'Separate latrines for women and men': 'Separate latrines for women and men',
3317-'Seraiki': 'Seraiki',
3318-'Series': 'Series',
3319-'Server': 'Server',
3320-'Service': 'Service',
3321-'Service Catalogue': 'Service Catalogue',
3322-'Service or Facility': 'Service or Facility',
3323-'Service profile added': 'Service profile added',
3324-'Service profile deleted': 'Service profile deleted',
3325-'Service profile updated': 'Service profile updated',
3326-'Services': 'Services',
3327-'Services Available': 'Services Available',
3328-'Setting Details': 'Setting Details',
3329-'Setting added': 'Setting added',
3330-'Setting deleted': 'Setting deleted',
3331-'Setting updated': 'Setting updated',
3332-'Settings': 'Settings',
3333-'Settings updated': 'Settings updated',
3334-'Settings were reset because authenticating with Twitter failed': 'Settings were reset because authenticating with Twitter failed',
3335-'Severity': 'Severity',
3336-'Severity:': 'Severity:',
3337-'Share a common Marker (unless over-ridden at the Feature level)': 'Share a common Marker (unless over-ridden at the Feature level)',
3338-'Shelter': 'Shelter',
3339-'Shelter & Essential NFIs': 'Shelter & Essential NFIs',
3340-'Shelter Details': 'Shelter Details',
3341-'Shelter Name': 'Shelter Name',
3342-'Shelter Registry': 'Shelter Registry',
3343-'Shelter Service': 'Shelter Service',
3344-'Shelter Service Details': 'Shelter Service Details',
3345-'Shelter Service added': 'Shelter Service added',
3346-'Shelter Service deleted': 'Shelter Service deleted',
3347-'Shelter Service updated': 'Shelter Service updated',
3348-'Shelter Services': 'Shelter Services',
3349-'Shelter Type': 'Shelter Type',
3350-'Shelter Type Details': 'Shelter Type Details',
3351-'Shelter Type added': 'Shelter Type added',
3352-'Shelter Type deleted': 'Shelter Type deleted',
3353-'Shelter Type updated': 'Shelter Type updated',
3354-'Shelter Types': 'Shelter Types',
3355-'Shelter Types and Services': 'Shelter Types and Services',
3356-'Shelter added': 'Shelter added',
3357-'Shelter deleted': 'Shelter deleted',
3358-'Shelter updated': 'Shelter updated',
3359-'Shelter/NFI assistance received/expected': 'Shelter/NFI assistance received/expected',
3360-'Shelters': 'Shelters',
3361-'Shipment Received': 'Shipment Received',
3362-'Shipment Sent': 'Shipment Sent',
3363-'Shipment Transit Log Details': 'Shipment Transit Log Details',
3364-'Shipment Transit Log added': 'Shipment Transit Log added',
3365-'Shipment Transit Log deleted': 'Shipment Transit Log deleted',
3366-'Shipment Transit Log updated': 'Shipment Transit Log updated',
3367-'Shipment Transit Logs': 'Shipment Transit Logs',
3368-'Shipment/Way Bill added': 'Shipment/Way Bill added',
3369-'Shipment/Way Bills': 'Shipment/Way Bills',
3370-'Shipment/Way Bills Details': 'Shipment/Way Bills Details',
3371-'Shipment/Way Bills deleted': 'Shipment/Way Bills deleted',
3372-'Shipment/Way Bills updated': 'Shipment/Way Bills updated',
3373-'Shipment<>Item Relation added': 'Shipment<>Item Relation added',
3374-'Shipment<>Item Relation deleted': 'Shipment<>Item Relation deleted',
3375-'Shipment<>Item Relation updated': 'Shipment<>Item Relation updated',
3376-'Shipment<>Item Relations': 'Shipment<>Item Relations',
3377-'Shipment<>Item Relations Details': 'Shipment<>Item Relations Details',
3378-'Shipments': 'Shipments',
3379-'Shipments To': 'Shipments To',
3380-'Shooting': 'Shooting',
3381-'Short Assessment': 'Short Assessment',
3382-'Short Description': 'Short Description',
3383-'Show Checklist': 'Show Checklist',
3384-'Show on map': 'Show on map',
3385-'Sindhi': 'Sindhi',
3386-'Site': 'Site',
3387-'Site Address': 'Site Address',
3388-'Site Administration': 'Site Administration',
3389-'Site Description': 'Site Description',
3390-'Site Details': 'Site Details',
3391-'Site ID': 'Site ID',
3392-'Site Location Description': 'Site Location Description',
3393-'Site Location Name': 'Site Location Name',
3394-'Site Manager': 'Site Manager',
3395-'Site Name': 'Site Name',
3396-'Site added': 'Site added',
3397-'Site deleted': 'Site deleted',
3398-'Site updated': 'Site updated',
3399-'Site/Warehouse': 'Site/Warehouse',
3400-'Sites': 'Sites',
3401-'Situation Awareness & Geospatial Analysis': 'Situation Awareness & Geospatial Analysis',
3402-'Sketch': 'Sketch',
3403-'Skill': 'Skill',
3404-'Skill Details': 'Skill Details',
3405-'Skill Status': 'Skill Status',
3406-'Skill Type Details': 'Skill Type Details',
3407-'Skill Type added': 'Skill Type added',
3408-'Skill Type deleted': 'Skill Type deleted',
3409-'Skill Type updated': 'Skill Type updated',
3410-'Skill Types': 'Skill Types',
3411-'Skill added': 'Skill added',
3412-'Skill deleted': 'Skill deleted',
3413-'Skill updated': 'Skill updated',
3414-'Skills': 'Skills',
3415-'Skype ID': 'Skype ID',
3416-'Small Trade': 'Small Trade',
3417-'Smoke': 'Smoke',
3418-'Snow Fall': 'Snow Fall',
3419-'Snow Squall': 'Snow Squall',
3420-'Solid waste': 'Solid waste',
3421-'Solution': 'Solution',
3422-'Solution Details': 'Solution Details',
3423-'Solution Item': 'Solution Item',
3424-'Solution added': 'Solution added',
3425-'Solution deleted': 'Solution deleted',
3426-'Solution updated': 'Solution updated',
3427-'Solutions': 'Solutions',
3428-'Some': 'Some',
3429-'Sorry - the server has a problem, please try again later.': 'Sorry - the server has a problem, please try again later.',
3430-'Sorry that location appears to be outside the area of the Parent.': 'Sorry that location appears to be outside the area of the Parent.',
3431-'Sorry that location appears to be outside the area supported by this deployment.': 'Sorry that location appears to be outside the area supported by this deployment.',
3432-'Sorry, I could not understand your request': 'Sorry, I could not understand your request',
3433-'Sorry, only users with the MapAdmin role are allowed to edit these locations': 'Sorry, only users with the MapAdmin role are allowed to edit these locations',
3434-'Sorry, something went wrong.': 'Sorry, something went wrong.',
3435-'Sorry, that page is forbidden for some reason.': 'Sorry, that page is forbidden for some reason.',
3436-'Sorry, that service is temporary unavailable.': 'Sorry, that service is temporary unavailable.',
3437-'Sorry, there are no addresses to display': 'Sorry, there are no addresses to display',
3438-"Sorry, things didn't get done on time.": "Sorry, things didn't get done on time.",
3439-"Sorry, we couldn't find that page.": "Sorry, we couldn't find that page.",
3440-'Source': 'Source',
3441-'Source ID': 'Source ID',
3442-'Source Time': 'Source Time',
3443-'Source Type': 'Source Type',
3444-'Space Debris': 'Space Debris',
3445-'Spanish': 'Spanish',
3446-'Special Ice': 'Special Ice',
3447-'Special Marine': 'Special Marine',
3448-'Special needs': 'Special needs',
3449-'Specialized Hospital': 'Specialized Hospital',
3450-'Specific Area (e.g. Building/Room) within the Location that this Person/Group is seen.': 'Specific Area (e.g. Building/Room) within the Location that this Person/Group is seen.',
3451-'Specific locations need to have a parent of level': 'Specific locations need to have a parent of level',
3452-'Specify a descriptive title for the image.': 'Specify a descriptive title for the image.',
3453-'Specify the bed type of this unit.': 'Specify the bed type of this unit.',
3454-'Specify the minimum sustainability in weeks or days.': 'Specify the minimum sustainability in weeks or days.',
3455-'Specify the number of available sets': 'Specify the number of available sets',
3456-'Specify the number of available units (adult doses)': 'Specify the number of available units (adult doses)',
3457-'Specify the number of available units (litres) of Ringer-Lactate or equivalent solutions': 'Specify the number of available units (litres) of Ringer-Lactate or equivalent solutions',
3458-'Specify the number of sets needed per 24h': 'Specify the number of sets needed per 24h',
3459-'Specify the number of units (adult doses) needed per 24h': 'Specify the number of units (adult doses) needed per 24h',
3460-'Specify the number of units (litres) of Ringer-Lactate or equivalent solutions needed per 24h': 'Specify the number of units (litres) of Ringer-Lactate or equivalent solutions needed per 24h',
3461-'Spherical Mercator?': 'Spherical Mercator?',
3462-'Spreadsheet Importer': 'Spreadsheet Importer',
3463-'Spreadsheet uploaded': 'Spreadsheet uploaded',
3464-'Spring': 'Spring',
3465-'Squall': 'Squall',
3466-'Staff': 'Staff',
3467-'Staff 2': 'Staff 2',
3468-'Staff Details': 'Staff Details',
3469-'Staff Type Details': 'Staff Type Details',
3470-'Staff Type added': 'Staff Type added',
3471-'Staff Type deleted': 'Staff Type deleted',
3472-'Staff Type updated': 'Staff Type updated',
3473-'Staff Types': 'Staff Types',
3474-'Staff added': 'Staff added',
3475-'Staff deleted': 'Staff deleted',
3476-'Staff present and caring for residents': 'Staff present and caring for residents',
3477-'Staff updated': 'Staff updated',
3478-'Staffing': 'Staffing',
3479-'Start date': 'Start date',
3480-'Start of Period': 'Start of Period',
3481-'Stationery': 'Stationery',
3482-'Status': 'Status',
3483-'Status Report': 'Status Report',
3484-'Status added': 'Status added',
3485-'Status deleted': 'Status deleted',
3486-'Status of clinical operation of the facility.': 'Status of clinical operation of the facility.',
3487-'Status of general operation of the facility.': 'Status of general operation of the facility.',
3488-'Status of morgue capacity.': 'Status of morgue capacity.',
3489-'Status of operations of the emergency department of this hospital.': 'Status of operations of the emergency department of this hospital.',
3490-'Status of security procedures/access restrictions in the hospital.': 'Status of security procedures/access restrictions in the hospital.',
3491-'Status of the operating rooms of this hospital.': 'Status of the operating rooms of this hospital.',
3492-'Status updated': 'Status updated',
3493-'Storage Bin': 'Storage Bin',
3494-'Storage Bin Details': 'Storage Bin Details',
3495-'Storage Bin Number': 'Storage Bin Number',
3496-'Storage Bin Type': 'Storage Bin Type',
3497-'Storage Bin Type Details': 'Storage Bin Type Details',
3498-'Storage Bin Type added': 'Storage Bin Type added',
3499-'Storage Bin Type deleted': 'Storage Bin Type deleted',
3500-'Storage Bin Type updated': 'Storage Bin Type updated',
3501-'Storage Bin Types': 'Storage Bin Types',
3502-'Storage Bin added': 'Storage Bin added',
3503-'Storage Bin deleted': 'Storage Bin deleted',
3504-'Storage Bin updated': 'Storage Bin updated',
3505-'Storage Bins': 'Storage Bins',
3506-'Storage Location': 'Storage Location',
3507-'Storage Location Details': 'Storage Location Details',
3508-'Storage Location ID': 'Storage Location ID',
3509-'Storage Location Name': 'Storage Location Name',
3510-'Storage Location added': 'Storage Location added',
3511-'Storage Location deleted': 'Storage Location deleted',
3512-'Storage Location updated': 'Storage Location updated',
3513-'Storage Locations': 'Storage Locations',
3514-'Store spreadsheets in the Eden database': 'Store spreadsheets in the Eden database',
3515-'Storm Force Wind': 'Storm Force Wind',
3516-'Storm Surge': 'Storm Surge',
3517-'Stowaway': 'Stowaway',
3518-'Street Address': 'Street Address',
3519-'Strong Wind': 'Strong Wind',
3520-'Sub Category': 'Sub Category',
3521-'Sub-type': 'Sub-type',
3522-'Subject': 'Subject',
3523-'Submission successful - please wait': 'Submission successful - please wait',
3524-'Submission successful - please wait...': 'Submission successful - please wait...',
3525-'Submit': 'Submit',
3526-'Subscription Details': 'Subscription Details',
3527-'Subscription added': 'Subscription added',
3528-'Subscription deleted': 'Subscription deleted',
3529-'Subscription updated': 'Subscription updated',
3530-'Subscriptions': 'Subscriptions',
3531-'Subsistence Cost': 'Subsistence Cost',
3532-'Sufficient care/assistance for chronically ill': 'Sufficient care/assistance for chronically ill',
3533-'Suggest not changing this field unless you know what you are doing.': 'Suggest not changing this field unless you know what you are doing.',
3534-'Summary': 'Summary',
3535-'Sunday': 'Sunday',
3536-'Support Request': 'Support Request',
3537-'Supports the decision making of large groups of Crisis Management Experts by helping the groups create ranked list.': 'Supports the decision making of large groups of Crisis Management Experts by helping the groups create ranked list.',
3538-'Sure you want to delete this object?': 'Sure you want to delete this object?',
3539-'Surgery': 'Surgery',
3540-'Survey Answer': 'Survey Answer',
3541-'Survey Answer Details': 'Survey Answer Details',
3542-'Survey Answer added': 'Survey Answer added',
3543-'Survey Answer deleted': 'Survey Answer deleted',
3544-'Survey Answer updated': 'Survey Answer updated',
3545-'Survey Module': 'Survey Module',
3546-'Survey Name': 'Survey Name',
3547-'Survey Question': 'Survey Question',
3548-'Survey Question Details': 'Survey Question Details',
3549-'Survey Question Display Name': 'Survey Question Display Name',
3550-'Survey Question added': 'Survey Question added',
3551-'Survey Question deleted': 'Survey Question deleted',
3552-'Survey Question updated': 'Survey Question updated',
3553-'Survey Section': 'Survey Section',
3554-'Survey Section Details': 'Survey Section Details',
3555-'Survey Section Display Name': 'Survey Section Display Name',
3556-'Survey Section added': 'Survey Section added',
3557-'Survey Section deleted': 'Survey Section deleted',
3558-'Survey Section updated': 'Survey Section updated',
3559-'Survey Series': 'Survey Series',
3560-'Survey Series Details': 'Survey Series Details',
3561-'Survey Series Name': 'Survey Series Name',
3562-'Survey Series added': 'Survey Series added',
3563-'Survey Series deleted': 'Survey Series deleted',
3564-'Survey Series updated': 'Survey Series updated',
3565-'Survey Template': 'Survey Template',
3566-'Survey Template Details': 'Survey Template Details',
3567-'Survey Template added': 'Survey Template added',
3568-'Survey Template deleted': 'Survey Template deleted',
3569-'Survey Template updated': 'Survey Template updated',
3570-'Survey Templates': 'Survey Templates',
3571-'Switch this on to use individual CSS/Javascript files for diagnostics during development.': 'Switch this on to use individual CSS/Javascript files for diagnostics during development.',
3572-'Symbology': 'Symbology',
3573-'Sync Conflicts': 'Sync Conflicts',
3574-'Sync History': 'Sync History',
3575-'Sync Now': 'Sync Now',
3576-'Sync Partners': 'Sync Partners',
3577-'Sync Partners are instances or peers (SahanaEden, SahanaAgasti, Ushahidi, etc.) that you want to sync information with. Click on the link on the right to go the page where you can add sync partners, search for sync partners and modify them.': 'Sync Partners are instances or peers (SahanaEden, SahanaAgasti, Ushahidi, etc.) that you want to sync information with. Click on the link on the right to go the page where you can add sync partners, search for sync partners and modify them.',
3578-'Sync Pools': 'Sync Pools',
3579-'Sync Schedule': 'Sync Schedule',
3580-'Sync Settings': 'Sync Settings',
3581-'Sync process already started on ': 'Sync process already started on ',
3582-'Synchronisation': 'Synchronisation',
3583-'Synchronization': 'Synchronization',
3584-'Synchronization Conflicts': 'Synchronization Conflicts',
3585-'Synchronization Details': 'Synchronization Details',
3586-'Synchronization History': 'Synchronization History',
3587-'Synchronization Peers': 'Synchronization Peers',
3588-'Synchronization Settings': 'Synchronization Settings',
3589-'Synchronization allows you to share data that you have with others and update your own database with latest data from other peers. This page provides you with information about how to use the synchronization features of Sahana Eden': 'Synchronization allows you to share data that you have with others and update your own database with latest data from other peers. This page provides you with information about how to use the synchronization features of Sahana Eden',
3590-'Synchronization not configured.': 'Synchronization not configured.',
3591-'Synchronization settings updated': 'Synchronization settings updated',
3592-'Syncronisation History': 'Syncronisation History',
3593-'System allows the General Public to Report Incidents & have these Tracked.': 'System allows the General Public to Report Incidents & have these Tracked.',
3594-'System allows the tracking & discovery of Items stored in Locations.': 'System allows the tracking & discovery of Items stored in Locations.',
3595-'System is a central online repository where all relief organizations, relief workers, government agents and camp sites for displaced personnel can coordinate the supply of aid with their demand. It allows users to allocate the available resources to fulfill the demands effectively and efficiently.': 'System is a central online repository where all relief organizations, relief workers, government agents and camp sites for displaced personnel can coordinate the supply of aid with their demand. It allows users to allocate the available resources to fulfill the demands effectively and efficiently.',
3596-'System keeps track of all Volunteers working in the disaster region. It captures not only the places where they are active, but also captures information on the range of services they are providing in each area.': 'System keeps track of all Volunteers working in the disaster region. It captures not only the places where they are active, but also captures information on the range of services they are providing in each area.',
3597-"System's Twitter account updated": "System's Twitter account updated",
3598-'Table name': 'Table name',
3599-'Tags': 'Tags',
3600-'Take shelter in place or per <instruction>': 'Take shelter in place or per <instruction>',
3601-'Task Details': 'Task Details',
3602-'Task List': 'Task List',
3603-'Task Status': 'Task Status',
3604-'Task added': 'Task added',
3605-'Task deleted': 'Task deleted',
3606-'Task status': 'Task status',
3607-'Task updated': 'Task updated',
3608-'Tasks': 'Tasks',
3609-'Team': 'Team',
3610-'Team Description': 'Team Description',
3611-'Team Details': 'Team Details',
3612-'Team Head': 'Team Head',
3613-'Team Id': 'Team Id',
3614-'Team Leader': 'Team Leader',
3615-'Team Member added': 'Team Member added',
3616-'Team Members': 'Team Members',
3617-'Team Name': 'Team Name',
3618-'Team Type': 'Team Type',
3619-'Team added': 'Team added',
3620-'Team deleted': 'Team deleted',
3621-'Team updated': 'Team updated',
3622-'Teams': 'Teams',
3623-'Technical testing only, all recipients disregard': 'Technical testing only, all recipients disregard',
3624-'Telecommunications': 'Telecommunications',
3625-'Telephone': 'Telephone',
3626-'Telephony': 'Telephony',
3627-'Temp folder %s not writable - unable to apply theme!': 'Temp folder %s not writable - unable to apply theme!',
3628-'Template file %s not readable - unable to apply theme!': 'Template file %s not readable - unable to apply theme!',
3629-'Templates': 'Templates',
3630-'Terrorism': 'Terrorism',
3631-'Tertiary Server (Optional)': 'Tertiary Server (Optional)',
3632-'Test Results': 'Test Results',
3633-'Text': 'Text',
3634-'Text Colour for Text blocks': 'Text Colour for Text blocks',
3635-'Text before each Text Field (One per line)': 'Text before each Text Field (One per line)',
3636-'Text in Message': 'Text in Message',
3637-'Text in Message: ': 'Text in Message: ',
3638-'Thanks for your assistance': 'Thanks for your assistance',
3639-'The': 'The',
3640-'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1 == db.table2.field2" results in a SQL JOIN.': 'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1 == db.table2.field2" results in a SQL JOIN.',
3641-"The <a href='http://en.wikipedia.org/wiki/Well-known_text' target=_blank>Well-Known Text</a> representation of the Polygon/Line.": "The <a href='http://en.wikipedia.org/wiki/Well-known_text' target=_blank>Well-Known Text</a> representation of the Polygon/Line.",
3642-'The Area which this Site is located within.': 'The Area which this Site is located within.',
3643-'The Assessments module allows field workers to send in assessments.': 'The Assessments module allows field workers to send in assessments.',
3644-'The Author of this Document (optional)': 'The Author of this Document (optional)',
3645-'The Current Location of the Person, which can be general (for Reporting) or precise (for displaying on a Map). Enter a few characters to search from available locations.': 'The Current Location of the Person, which can be general (for Reporting) or precise (for displaying on a Map). Enter a few characters to search from available locations.',
3646-'The Current Location of the Person/Group, which can be general (for Reporting) or precise (for displaying on a Map). Enter a few characters to search from available locations.': 'The Current Location of the Person/Group, which can be general (for Reporting) or precise (for displaying on a Map). Enter a few characters to search from available locations.',
3647-"The Donor(s) for this project. Multiple values can be selected by holding down the 'Control' key.": "The Donor(s) for this project. Multiple values can be selected by holding down the 'Control' key.",
3648-'The Location the Person has come from, which can be general (for Reporting) or precise (for displaying on a Map). Enter a few characters to search from available locations.': 'The Location the Person has come from, which can be general (for Reporting) or precise (for displaying on a Map). Enter a few characters to search from available locations.',
3649-'The Location the Person is going to, which can be general (for Reporting) or precise (for displaying on a Map). Enter a few characters to search from available locations.': 'The Location the Person is going to, which can be general (for Reporting) or precise (for displaying on a Map). Enter a few characters to search from available locations.',
3650-'The Office this record is associated with.': 'The Office this record is associated with.',
3651-'The Organization this record is associated with.': 'The Organization this record is associated with.',
3652-'The Organization which is funding this Activity.': 'The Organization which is funding this Activity.',
3653-'The Project Tracking module allows the creation of Activities to meet Gaps in Needs Assessments.': 'The Project Tracking module allows the creation of Activities to meet Gaps in Needs Assessments.',
3654-'The Request this record is associated with.': 'The Request this record is associated with.',
3655-'The Role this person plays within this Office/Project.': 'The Role this person plays within this Office/Project.',
3656-'The Role this person plays within this hospital.': 'The Role this person plays within this hospital.',
3657-'The Shelter this Request is from (optional).': 'The Shelter this Request is from (optional).',
3658-'The URL for the GetCapabilities of a WMS Service whose layers you want accessible via the Map.': 'The URL for the GetCapabilities of a WMS Service whose layers you want accessible via the Map.',
3659-"The URL of the image file. If you don't upload an image file, then you must specify its location here.": "The URL of the image file. If you don't upload an image file, then you must specify its location here.",
3660-'The URL of your web gateway without the post parameters': 'The URL of your web gateway without the post parameters',
3661-'The URL to access the service.': 'The URL to access the service.',
3662-'The Unique Identifier (UUID) as assigned to this facility by the government.': 'The Unique Identifier (UUID) as assigned to this facility by the government.',
3663-'The area is ': 'The area is ',
3664-'The attribute within the KML which is used for the title of popups.': 'The attribute within the KML which is used for the title of popups.',
3665-'The attribute(s) within the KML which are used for the body of popups. (Use a space between attributes)': 'The attribute(s) within the KML which are used for the body of popups. (Use a space between attributes)',
3666-'The body height (crown to heel) in cm.': 'The body height (crown to heel) in cm.',
3667-'The category of the Item.': 'The category of the Item.',
3668-'The contact person for this organization.': 'The contact person for this organization.',
3669-'The country the person usually lives in.': 'The country the person usually lives in.',
3670-'The duplicate record will be deleted': 'The duplicate record will be deleted',
3671-'The entered unit links to this unit. For e.g. if you are entering m for meter then choose kilometer(if it exists) and enter the value 0.001 as multiplicator.': 'The entered unit links to this unit. For e.g. if you are entering m for meter then choose kilometer(if it exists) and enter the value 0.001 as multiplicator.',
3672-'The first or only name of the person (mandatory).': 'The first or only name of the person (mandatory).',
3673-'The hospital this record is associated with.': 'The hospital this record is associated with.',
3674-'The item is designated to be sent for specific project, population, village or other earmarking of the donation such as a Grant Code.': 'The item is designated to be sent for specific project, population, village or other earmarking of the donation such as a Grant Code.',
3675-'The language to use for notifications.': 'The language to use for notifications.',
3676-'The last known location of the missing person before disappearance.': 'The last known location of the missing person before disappearance.',
3677-'The length is ': 'The length is ',
3678-'The list of Item categories are maintained by the Administrators.': 'The list of Item categories are maintained by the Administrators.',
3679-'The name to be used when calling for or directly addressing the person (optional).': 'The name to be used when calling for or directly addressing the person (optional).',
3680-'The next screen will allow you to detail the number of people here & their needs.': 'The next screen will allow you to detail the number of people here & their needs.',
3681-'The next screen will allow you to enter a detailed list of items and quantities, if appropriate...': 'The next screen will allow you to enter a detailed list of items and quantities, if appropriate...',
3682-'The number of tiles around the visible map to download. Zero means that the 1st page loads faster, higher numbers mean subsequent panning is faster.': 'The number of tiles around the visible map to download. Zero means that the 1st page loads faster, higher numbers mean subsequent panning is faster.',
3683-'The person at the location who is reporting this incident (optional)': 'The person at the location who is reporting this incident (optional)',
3684-'The person reporting about the missing person.': 'The person reporting about the missing person.',
3685-'The person reporting the missing person.': 'The person reporting the missing person.',
3686-"The person's manager within this Office/Project.": "The person's manager within this Office/Project.",
3687-'The post variable containing the phone number': 'The post variable containing the phone number',
3688-'The post variable on the URL used for sending messages': 'The post variable on the URL used for sending messages',
3689-'The post variables other than the ones containing the message and the phone number': 'The post variables other than the ones containing the message and the phone number',
3690-'The serial port at which the modem is connected - /dev/ttyUSB0, etc on linux and com1, com2, etc on Windows': 'The serial port at which the modem is connected - /dev/ttyUSB0, etc on linux and com1, com2, etc on Windows',
3691-'The server did not receive a timely response from another server that it was accessing to fill the request by the browser.': 'The server did not receive a timely response from another server that it was accessing to fill the request by the browser.',
3692-'The server received an incorrect response from another server that it was accessing to fill the request by the browser.': 'The server received an incorrect response from another server that it was accessing to fill the request by the browser.',
3693-'The simple policy allows anonymous users to Read & registered users to Edit. The full security policy allows the administrator to set permissions on individual tables or records - see models/zzz.py.': 'The simple policy allows anonymous users to Read & registered users to Edit. The full security policy allows the administrator to set permissions on individual tables or records - see models/zzz.py.',
3694-'The subject event no longer poses a threat or concern and any follow on action is described in <instruction>': 'The subject event no longer poses a threat or concern and any follow on action is described in <instruction>',
3695-'The title of the WMS Browser panel in the Tools panel.': 'The title of the WMS Browser panel in the Tools panel.',
3696-'The token associated with this application on': 'The token associated with this application on',
3697-'The unique identifier which identifies this instance to other instances.': 'The unique identifier which identifies this instance to other instances.',
3698-'The weight in kg.': 'The weight in kg.',
3699-'Theme': 'Theme',
3700-'Theme Details': 'Theme Details',
3701-'Theme added': 'Theme added',
3702-'Theme deleted': 'Theme deleted',
3703-'Theme updated': 'Theme updated',
3704-'Themes': 'Themes',
3705-'There are errors': 'There are errors',
3706-'There are multiple records at this location': 'There are multiple records at this location',
3707-'There was a problem, sorry, please try again later.': 'There was a problem, sorry, please try again later.',
3708-'These are settings for Inbound Mail.': 'These are settings for Inbound Mail.',
3709-'These are the Incident Categories visible to normal End-Users': 'These are the Incident Categories visible to normal End-Users',
3710-'These are the default settings for all users. To change settings just for you, click ': 'These are the default settings for all users. To change settings just for you, click ',
3711-'They': 'They',
3712-'This appears to be a duplicate of ': 'This appears to be a duplicate of ',
3713-'This file already exists on the server as': 'This file already exists on the server as',
3714-'This is the way to transfer data between machines as it maintains referential integrity.': 'This is the way to transfer data between machines as it maintains referential integrity.',
3715-'This is the way to transfer data between machines as it maintains referential integrity...duplicate data should be removed manually 1st!': 'This is the way to transfer data between machines as it maintains referential integrity...duplicate data should be removed manually 1st!',
3716-'This might be due to a temporary overloading or maintenance of the server.': 'This might be due to a temporary overloading or maintenance of the server.',
3717-'This page shows you logs of past syncs. Click on the link below to go to this page.': 'This page shows you logs of past syncs. Click on the link below to go to this page.',
3718-'This screen allows you to upload a collection of photos to the server.': 'This screen allows you to upload a collection of photos to the server.',
3719-'Thunderstorm': 'Thunderstorm',
3720-'Thursday': 'Thursday',
3721-'Ticket': 'Ticket',
3722-'Ticket Details': 'Ticket Details',
3723-'Ticket added': 'Ticket added',
3724-'Ticket deleted': 'Ticket deleted',
3725-'Ticket updated': 'Ticket updated',
3726-'Ticketing Module': 'Ticketing Module',
3727-'Tickets': 'Tickets',
3728-'Time needed to collect water': 'Time needed to collect water',
3729-'Time of Request': 'Time of Request',
3730-'Timestamp': 'Timestamp',
3731-'Title': 'Title',
3732-'To': 'To',
3733-'To Location': 'To Location',
3734-'To begin the sync process, click the button on the right => ': 'To begin the sync process, click the button on the right => ',
3735-'To begin the sync process, click this button => ': 'To begin the sync process, click this button => ',
3736-'To edit OpenStreetMap, you need to edit the OpenStreetMap settings in models/000_config.py': 'To edit OpenStreetMap, you need to edit the OpenStreetMap settings in models/000_config.py',
3737-"To search for a body, enter the ID label of the body. You may use % as wildcard. Press 'Search' without input to list all bodies.": "To search for a body, enter the ID label of the body. You may use % as wildcard. Press 'Search' without input to list all bodies.",
3738-"To search for a body, enter the ID tag number of the body. You may use % as wildcard. Press 'Search' without input to list all bodies.": "To search for a body, enter the ID tag number of the body. You may use % as wildcard. Press 'Search' without input to list all bodies.",
3739-"To search for a hospital, enter any of the names or IDs of the hospital, separated by spaces. You may use % as wildcard. Press 'Search' without input to list all hospitals.": "To search for a hospital, enter any of the names or IDs of the hospital, separated by spaces. You may use % as wildcard. Press 'Search' without input to list all hospitals.",
3740-"To search for a location, enter the name. You may use % as wildcard. Press 'Search' without input to list all locations.": "To search for a location, enter the name. You may use % as wildcard. Press 'Search' without input to list all locations.",
3741-"To search for a person, enter any of the first, middle or last names and/or an ID number of a person, separated by spaces. You may use % as wildcard. Press 'Search' without input to list all persons.": "To search for a person, enter any of the first, middle or last names and/or an ID number of a person, separated by spaces. You may use % as wildcard. Press 'Search' without input to list all persons.",
3742-"To search for a request, enter some of the text that you are looking for. You may use % as wildcard. Press 'Search' without input to list all requests.": "To search for a request, enter some of the text that you are looking for. You may use % as wildcard. Press 'Search' without input to list all requests.",
3743-'To submit a new job, use the': 'To submit a new job, use the',
3744-'To variable': 'To variable',
3745-'Tools': 'Tools',
3746-'Tornado': 'Tornado',
3747-'Total # of Target Beneficiaries': 'Total # of Target Beneficiaries',
3748-'Total # of households of site visited': 'Total # of households of site visited',
3749-'Total Beds': 'Total Beds',
3750-'Total Beneficiaries': 'Total Beneficiaries',
3751-'Total Cost per Megabyte': 'Total Cost per Megabyte',
3752-'Total Cost per Minute': 'Total Cost per Minute',
3753-'Total Monthly': 'Total Monthly',
3754-'Total Monthly Cost': 'Total Monthly Cost',
3755-'Total Monthly Cost: ': 'Total Monthly Cost: ',
3756-'Total One-time Costs': 'Total One-time Costs',
3757-'Total Persons': 'Total Persons',
3758-'Total Recurring Costs': 'Total Recurring Costs',
3759-'Total Unit Cost': 'Total Unit Cost',
3760-'Total Unit Cost: ': 'Total Unit Cost: ',
3761-'Total Units': 'Total Units',
3762-'Total number of beds in this hospital. Automatically updated from daily reports.': 'Total number of beds in this hospital. Automatically updated from daily reports.',
3763-'Total number of houses in the area': 'Total number of houses in the area',
3764-'Total number of schools in affected area': 'Total number of schools in affected area',
3765-'Total population of site visited': 'Total population of site visited',
3766-'Totals for Budget:': 'Totals for Budget:',
3767-'Totals for Bundle:': 'Totals for Bundle:',
3768-'Totals for Kit:': 'Totals for Kit:',
3769-'Tourist Group': 'Tourist Group',
3770-'Town': 'Town',
3771-'Traces internally displaced people (IDPs) and their needs': 'Traces internally displaced people (IDPs) and their needs',
3772-'Tracing': 'Tracing',
3773-'Track': 'Track',
3774-'Track Details': 'Track Details',
3775-'Track deleted': 'Track deleted',
3776-'Track updated': 'Track updated',
3777-'Track uploaded': 'Track uploaded',
3778-'Tracking of Projects, Activities and Tasks': 'Tracking of Projects, Activities and Tasks',
3779-'Tracking of basic information on the location, facilities and size of the Shelters': 'Tracking of basic information on the location, facilities and size of the Shelters',
3780-'Tracks': 'Tracks',
3781-'Tracks requests for aid and matches them against donors who have pledged aid': 'Tracks requests for aid and matches them against donors who have pledged aid',
3782-'Tracks the location, distibution, capacity and breakdown of victims in Shelters': 'Tracks the location, distibution, capacity and breakdown of victims in Shelters',
3783-'Traffic Report': 'Traffic Report',
3784-'Transit': 'Transit',
3785-'Transition Effect': 'Transition Effect',
3786-'Transparent?': 'Transparent?',
3787-'Transportation assistance, Rank': 'Transportation assistance, Rank',
3788-'Trauma Center': 'Trauma Center',
3789-'Travel Cost': 'Travel Cost',
3790-'Tree': 'Tree',
3791-'Tropical Storm': 'Tropical Storm',
3792-'Tropo Messaging Token': 'Tropo Messaging Token',
3793-'Tropo Settings': 'Tropo Settings',
3794-'Tropo Voice Token': 'Tropo Voice Token',
3795-'Tropo settings updated': 'Tropo settings updated',
3796-'Truck': 'Truck',
3797-'Try checking the URL for errors, maybe it was mistyped.': 'Try checking the URL for errors, maybe it was mistyped.',
3798-'Try hitting refresh/reload button or trying the URL from the address bar again.': 'Try hitting refresh/reload button or trying the URL from the address bar again.',
3799-'Try refreshing the page or hitting the back button on your browser.': 'Try refreshing the page or hitting the back button on your browser.',
3800-'Tsunami': 'Tsunami',
3801-'Tuesday': 'Tuesday',
3802-'Twitter': 'Twitter',
3803-'Twitter ID or #hashtag': 'Twitter ID or #hashtag',
3804-'Twitter Settings': 'Twitter Settings',
3805-'Type': 'Type',
3806-'Type of cause': 'Type of cause',
3807-'Type of latrines': 'Type of latrines',
3808-'Type of place for defecation': 'Type of place for defecation',
3809-'Type of water source before the disaster': 'Type of water source before the disaster',
3810-'Types of health services available': 'Types of health services available',
3811-'Types of water storage containers available': 'Types of water storage containers available',
3812-'UID': 'UID',
3813-'URL': 'URL',
3814-'UTC Offset': 'UTC Offset',
3815-'Unable to parse CSV file!': 'Unable to parse CSV file!',
3816-'Understaffed': 'Understaffed',
3817-'Unidentified': 'Unidentified',
3818-'Unit': 'Unit',
3819-'Unit Cost': 'Unit Cost',
3820-'Unit Details': 'Unit Details',
3821-'Unit Name': 'Unit Name',
3822-'Unit Set': 'Unit Set',
3823-'Unit Short Code for e.g. m for meter.': 'Unit Short Code for e.g. m for meter.',
3824-'Unit added': 'Unit added',
3825-'Unit deleted': 'Unit deleted',
3826-'Unit updated': 'Unit updated',
3827-'Units': 'Units',
3828-'Units of Measure': 'Units of Measure',
3829-'Unknown': 'Unknown',
3830-'Unknown Peer': 'Unknown Peer',
3831-'Unknown type of facility': 'Unknown type of facility',
3832-'Unresolved Conflicts': 'Unresolved Conflicts',
3833-'Unselect to disable the modem': 'Unselect to disable the modem',
3834-'Unsent': 'Unsent',
3835-'Unsupported data format!': 'Unsupported data format!',
3836-'Unsupported method!': 'Unsupported method!',
3837-'Update': 'Update',
3838-'Update Activity Report': 'Update Activity Report',
3839-'Update Cholera Treatment Capability Information': 'Update Cholera Treatment Capability Information',
3840-'Update Import Job': 'Update Import Job',
3841-'Update Request': 'Update Request',
3842-'Update Service Profile': 'Update Service Profile',
3843-'Update Task Status': 'Update Task Status',
3844-'Update Unit': 'Update Unit',
3845-'Update if Master': 'Update if Master',
3846-'Update if Newer': 'Update if Newer',
3847-'Update your current ordered list': 'Update your current ordered list',
3848-'Upload Photos': 'Upload Photos',
3849-'Upload Spreadsheet': 'Upload Spreadsheet',
3850-'Upload Track': 'Upload Track',
3851-'Upload a Spreadsheet': 'Upload a Spreadsheet',
3852-"Upload an image file here. If you don't upload an image file, then you must specify its location in the URL field.": "Upload an image file here. If you don't upload an image file, then you must specify its location in the URL field.",
3853-'Urban Fire': 'Urban Fire',
3854-'Urban area': 'Urban area',
3855-'Urdu': 'Urdu',
3856-'Urgent': 'Urgent',
3857-'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.',
3858-'Use default': 'Use default',
3859-'Use these links to download data that is currently in the database.': 'Use these links to download data that is currently in the database.',
3860-'Use this space to add a description about the Bin Type.': 'Use this space to add a description about the Bin Type.',
3861-'Use this space to add a description about the site location.': 'Use this space to add a description about the site location.',
3862-'Use this space to add a description about the warehouse/site.': 'Use this space to add a description about the warehouse/site.',
3863-'Use this space to add additional comments and notes about the Site/Warehouse.': 'Use this space to add additional comments and notes about the Site/Warehouse.',
3864-'Used to import data from spreadsheets into the database': 'Used to import data from spreadsheets into the database',
3865-'User': 'User',
3866-'User %(id)s Logged-in': 'User %(id)s Logged-in',
3867-'User %(id)s Logged-out': 'User %(id)s Logged-out',
3868-'User %(id)s Registered': 'User %(id)s Registered',
3869-'User Details': 'User Details',
3870-'User ID': 'User ID',
3871-'User Management': 'User Management',
3872-'User Profile': 'User Profile',
3873-'User Requests': 'User Requests',
3874-'User Updated': 'User Updated',
3875-'User added': 'User added',
3876-'User already has this role': 'User already has this role',
3877-'User deleted': 'User deleted',
3878-'User updated': 'User updated',
3879-'Username': 'Username',
3880-'Users': 'Users',
3881-'Users removed': 'Users removed',
3882-'Ushahidi': 'Ushahidi',
3883-'Usual food sources in the area': 'Usual food sources in the area',
3884-'Utility, telecommunication, other non-transport infrastructure': 'Utility, telecommunication, other non-transport infrastructure',
3885-'Various Reporting functionalities': 'Various Reporting functionalities',
3886-'Vehicle': 'Vehicle',
3887-'Vehicle Crime': 'Vehicle Crime',
3888-'Vehicle Types': 'Vehicle Types',
3889-'Vendor': 'Vendor',
3890-'Verified?': 'Verified?',
3891-'Verify Password': 'Verify Password',
3892-'Verify password': 'Verify password',
3893-'Version': 'Version',
3894-'Very High': 'Very High',
3895-'View Alerts received using either Email or SMS': 'View Alerts received using either Email or SMS',
3896-'View Fullscreen Map': 'View Fullscreen Map',
3897-'View Image': 'View Image',
3898-'View On Map': 'View On Map',
3899-'View Outbox': 'View Outbox',
3900-'View Requests for Aid': 'View Requests for Aid',
3901-'View Settings': 'View Settings',
3902-'View Tickets': 'View Tickets',
3903-"View and/or update details of the person's record": "View and/or update details of the person's record",
3904-'View and/or update their details': 'View and/or update their details',
3905-'View or update the status of a hospital.': 'View or update the status of a hospital.',
3906-'View pending requests and pledge support.': 'View pending requests and pledge support.',
3907-'View the hospitals on a map.': 'View the hospitals on a map.',
3908-"View/Edit the Database directly (caution: doesn't respect the framework rules!)": "View/Edit the Database directly (caution: doesn't respect the framework rules!)",
3909-'Village': 'Village',
3910-'Village Leader': 'Village Leader',
3911-'Visible?': 'Visible?',
3912-'Visual Recognition': 'Visual Recognition',
3913-'Volcanic Ash Cloud': 'Volcanic Ash Cloud',
3914-'Volcanic Event': 'Volcanic Event',
3915-'Volume - Fluids': 'Volume - Fluids',
3916-'Volume - Solids': 'Volume - Solids',
3917-'Volume Capacity': 'Volume Capacity',
3918-'Volume/Dimensions': 'Volume/Dimensions',
3919-'Volunteer Data': 'Volunteer Data',
3920-'Volunteer Details': 'Volunteer Details',
3921-'Volunteer Management': 'Volunteer Management',
3922-'Volunteer Project': 'Volunteer Project',
3923-'Volunteer Registration': 'Volunteer Registration',
3924-'Volunteer Registrations': 'Volunteer Registrations',
3925-'Volunteer Request': 'Volunteer Request',
3926-'Volunteer added': 'Volunteer added',
3927-'Volunteer deleted': 'Volunteer deleted',
3928-'Volunteer details updated': 'Volunteer details updated',
3929-'Volunteer registration added': 'Volunteer registration added',
3930-'Volunteer registration deleted': 'Volunteer registration deleted',
3931-'Volunteer registration updated': 'Volunteer registration updated',
3932-'Volunteers': 'Volunteers',
3933-'Volunteers were notified!': 'Volunteers were notified!',
3934-'Vote': 'Vote',
3935-'Votes': 'Votes',
3936-'WASH': 'WASH',
3937-'WMS Browser Name': 'WMS Browser Name',
3938-'WMS Browser URL': 'WMS Browser URL',
3939-'Walking Only': 'Walking Only',
3940-'Walking time to the health service': 'Walking time to the health service',
3941-'Warehouse': 'Warehouse',
3942-'Warehouse Details': 'Warehouse Details',
3943-'Warehouse Item': 'Warehouse Item',
3944-'Warehouse Item Details': 'Warehouse Item Details',
3945-'Warehouse Item added': 'Warehouse Item added',
3946-'Warehouse Item deleted': 'Warehouse Item deleted',
3947-'Warehouse Item updated': 'Warehouse Item updated',
3948-'Warehouse Items': 'Warehouse Items',
3949-'Warehouse Management': 'Warehouse Management',
3950-'Warehouse added': 'Warehouse added',
3951-'Warehouse deleted': 'Warehouse deleted',
3952-'Warehouse updated': 'Warehouse updated',
3953-'Warehouse/Sites Registry': 'Warehouse/Sites Registry',
3954-'Warehouses': 'Warehouses',
3955-'WatSan': 'WatSan',
3956-'Water Sanitation Hygiene': 'Water Sanitation Hygiene',
3957-'Water gallon': 'Water gallon',
3958-'Water storage containers available for HH': 'Water storage containers available for HH',
3959-'Water storage containers sufficient per HH': 'Water storage containers sufficient per HH',
3960-'Water supply': 'Water supply',
3961-'Waterspout': 'Waterspout',
3962-'Way Bill(s)': 'Way Bill(s)',
3963-'We have tried': 'We have tried',
3964-'Website': 'Website',
3965-'Wednesday': 'Wednesday',
3966-'Weight': 'Weight',
3967-'Weight (kg)': 'Weight (kg)',
3968-'Welcome to the Sahana Portal at ': 'Welcome to the Sahana Portal at ',
3969-'Well-Known Text': 'Well-Known Text',
3970-'Were basic medical supplies available for health services prior to the disaster?': 'Were basic medical supplies available for health services prior to the disaster?',
3971-'Were breast milk substitutes used prior to the disaster?': 'Were breast milk substitutes used prior to the disaster?',
3972-'Were there cases of malnutrition in this area prior to the disaster?': 'Were there cases of malnutrition in this area prior to the disaster?',
3973-'Were there health services functioning for the community prior to the disaster?': 'Were there health services functioning for the community prior to the disaster?',
3974-'Were there reports or evidence of outbreaks of any micronutrient malnutrition disorders before the emergency?': 'Were there reports or evidence of outbreaks of any micronutrient malnutrition disorders before the emergency?',
3975-'What are the factors affecting school attendance?': 'What are the factors affecting school attendance?',
3976-"What are the people's normal ways to obtain food in this area?": "What are the people's normal ways to obtain food in this area?",
3977-'What are your main sources of cash to restart your business?': 'What are your main sources of cash to restart your business?',
3978-'What are your main sources of income now?': 'What are your main sources of income now?',
3979-'What do you spend most of your income on now?': 'What do you spend most of your income on now?',
3980-'What food stocks exist? (main dishes)': 'What food stocks exist? (main dishes)',
3981-'What food stocks exist? (side dishes)': 'What food stocks exist? (side dishes)',
3982-'What is the estimated total number of people in all of these institutions?': 'What is the estimated total number of people in all of these institutions?',
3983-'What is your major source of clean water for daily use (ex: washing, cooking, bathing)?': 'What is your major source of clean water for daily use (ex: washing, cooking, bathing)?',
3984-'What is your major source of drinking water?': 'What is your major source of drinking water?',
3985-"What should be done to reduce women and children's vulnerability to violence?": "What should be done to reduce women and children's vulnerability to violence?",
3986-'What type of latrines are available in the village/IDP centre/Camp?': 'What type of latrines are available in the village/IDP centre/Camp?',
3987-'What type of salvage material can be used from destroyed houses?': 'What type of salvage material can be used from destroyed houses?',
3988-'What type of salvage material can be used from destroyed schools?': 'What type of salvage material can be used from destroyed schools?',
3989-'What types of health problems do children currently have?': 'What types of health problems do children currently have?',
3990-'What types of health problems do people currently have?': 'What types of health problems do people currently have?',
3991-'What types of health services are still functioning in the affected area?': 'What types of health services are still functioning in the affected area?',
3992-'What types of household water storage containers are available?': 'What types of household water storage containers are available?',
3993-'What were your main sources of income before the disaster?': 'What were your main sources of income before the disaster?',
3994-'Wheat': 'Wheat',
3995-"When syncing data with others, conflicts happen in cases when two (or more) parties want to sync information which both of them have modified, i.e. conflicting information. Sync module tries to resolve such conflicts automatically but in some cases it can't. In those cases, it is up to you to resolve those conflicts manually, click on the link on the right to go to this page.": "When syncing data with others, conflicts happen in cases when two (or more) parties want to sync information which both of them have modified, i.e. conflicting information. Sync module tries to resolve such conflicts automatically but in some cases it can't. In those cases, it is up to you to resolve those conflicts manually, click on the link on the right to go to this page.",
3996-'Where are the alternative places for studying?': 'Where are the alternative places for studying?',
3997-'Where are the separated children originally from?': 'Where are the separated children originally from?',
3998-'Where do the majority of people defecate?': 'Where do the majority of people defecate?',
3999-'Where have the children been sent?': 'Where have the children been sent?',
4000-'Where is solid waste disposed in the village/camp?': 'Where is solid waste disposed in the village/camp?',
4001-'Whiskers': 'Whiskers',
4002-'Who is doing what and where': 'Who is doing what and where',
4003-'Who usually collects water for the family?': 'Who usually collects water for the family?',
4004-'Width': 'Width',
4005-'Wild Fire': 'Wild Fire',
4006-'Wind Chill': 'Wind Chill',
4007-'Window frame': 'Window frame',
4008-'Winter Storm': 'Winter Storm',
4009-'Without mentioning any names or indicating anyone, do you know of any incidents of violence against women or girls occuring since the disaster?': 'Without mentioning any names or indicating anyone, do you know of any incidents of violence against women or girls occuring since the disaster?',
4010-'Women of Child Bearing Age': 'Women of Child Bearing Age',
4011-'Women participating in coping activities': 'Women participating in coping activities',
4012-'Women who are Pregnant or in Labour': 'Women who are Pregnant or in Labour',
4013-'Womens Focus Groups': 'Womens Focus Groups',
4014-'Wooden plank': 'Wooden plank',
4015-'Wooden poles': 'Wooden poles',
4016-'Working hours end': 'Working hours end',
4017-'Working hours start': 'Working hours start',
4018-'Working or other to provide money/food': 'Working or other to provide money/food',
4019-'X-Ray': 'X-Ray',
4020-'XMPP': 'XMPP',
4021-'Yes': 'Yes',
4022-'You are attempting to delete your own account - are you sure you want to proceed?': 'You are attempting to delete your own account - are you sure you want to proceed?',
4023-'You are currently reported missing!': 'You are currently reported missing!',
4024-'You can change the configuration of synchronization module in the Settings section. This configuration includes your UUID (unique identification number), sync schedules, beacon service and so on. Click the following link to go to the Sync Settings page.': 'You can change the configuration of synchronization module in the Settings section. This configuration includes your UUID (unique identification number), sync schedules, beacon service and so on. Click the following link to go to the Sync Settings page.',
4025-'You can click on the map below to select the Lat/Lon fields:': 'You can click on the map below to select the Lat/Lon fields:',
4026-'You can select the Draw tool (': 'You can select the Draw tool (',
4027-'You can set the modem settings for SMS here.': 'You can set the modem settings for SMS here.',
4028-'You can use the Conversion Tool to convert from either GPS coordinates or Degrees/Minutes/Seconds.': 'You can use the Conversion Tool to convert from either GPS coordinates or Degrees/Minutes/Seconds.',
4029-"You have personalised settings, so changes made here won't be visible to you. To change your personalised settings, click ": "You have personalised settings, so changes made here won't be visible to you. To change your personalised settings, click ",
4030-"You have unsaved changes. Click Cancel now, then 'Save' to save them. Click OK now to discard them.": "You have unsaved changes. Click Cancel now, then 'Save' to save them. Click OK now to discard them.",
4031-"You haven't made any calculations": "You haven't made any calculations",
4032-'You must be logged in to register volunteers.': 'You must be logged in to register volunteers.',
4033-'You must be logged in to report persons missing or found.': 'You must be logged in to report persons missing or found.',
4034-'You must provide a series id to proceed.': 'You must provide a series id to proceed.',
4035-'You should edit Twitter settings in models/000_config.py': 'You should edit Twitter settings in models/000_config.py',
4036-'Your action is required. Please approve user %s asap: ': 'Your action is required. Please approve user %s asap: ',
4037-'Your action is required. Please approve user joe@aidiq.com asap: ': 'Your action is required. Please approve user joe@aidiq.com asap: ',
4038-'Your current ordered list of solution items is shown below. You can change it by voting again.': 'Your current ordered list of solution items is shown below. You can change it by voting again.',
4039-'Your post was added successfully.': 'Your post was added successfully.',
4040-'Your system has been assigned a unique identification (UUID), which other computers around you can use to identify you. To view your UUID, you may go to Synchronization -> Sync Settings. You can also see other settings on that page.': 'Your system has been assigned a unique identification (UUID), which other computers around you can use to identify you. To view your UUID, you may go to Synchronization -> Sync Settings. You can also see other settings on that page.',
4041-'Zinc roof': 'Zinc roof',
4042-'Zoom': 'Zoom',
4043-'Zoom In: click in the map or use the left mouse button and drag to create a rectangle': 'Zoom In: click in the map or use the left mouse button and drag to create a rectangle',
4044-'Zoom Levels': 'Zoom Levels',
4045-'Zoom Out: click in the map or use the left mouse button and drag to create a rectangle': 'Zoom Out: click in the map or use the left mouse button and drag to create a rectangle',
4046-'Zoom to Current Location': 'Zoom to Current Location',
4047-'Zoom to maximum map extent': 'Zoom to maximum map extent',
4048-'act': 'act',
4049-'active': 'active',
4050-'added': 'added',
4051-'all records': 'all records',
4052-'allows a budget to be developed based on staff & equipment costs, including any admin overheads.': 'allows a budget to be developed based on staff & equipment costs, including any admin overheads.',
4053-'allows for creation and management of surveys to assess the damage following a natural disaster.': 'allows for creation and management of surveys to assess the damage following a natural disaster.',
4054-'an individual/team to do in 1-2 days': 'an individual/team to do in 1-2 days',
4055-'approved': 'approved',
4056-'assigned': 'assigned',
4057-'average': 'average',
4058-'black': 'black',
4059-'blond': 'blond',
4060-'blue': 'blue',
4061-'brown': 'brown',
4062-'c/o Name': 'c/o Name',
4063-'can be used to extract data from spreadsheets and put them into database tables.': 'can be used to extract data from spreadsheets and put them into database tables.',
4064-'cancelled': 'cancelled',
4065-'caucasoid': 'caucasoid',
4066-'check all': 'check all',
4067-'click for more details': 'click for more details',
4068-'completed': 'completed',
4069-'consider': 'consider',
4070-'constraint_id': 'constraint_id',
4071-'crud': 'crud',
4072-'curly': 'curly',
4073-'currently registered': 'currently registered',
4074-'daily': 'daily',
4075-'dark': 'dark',
4076-'data uploaded': 'data uploaded',
4077-'database': 'database',
4078-'database %s select': 'database %s select',
4079-'db': 'db',
4080-'delete all checked': 'delete all checked',
4081-'deleted': 'deleted',
4082-'denied': 'denied',
4083-'description': 'description',
4084-'design': 'design',
4085-'diseased': 'diseased',
4086-'displaced': 'displaced',
4087-'divorced': 'divorced',
4088-'done!': 'done!',
4089-'edit': 'edit',
4090-'editor': 'editor',
4091-'embedded': 'embedded',
4092-'enclosed area': 'enclosed area',
4093-'export as csv file': 'export as csv file',
4094-'fat': 'fat',
4095-'feedback': 'feedback',
4096-'female': 'female',
4097-'flush latrine with septic tank': 'flush latrine with septic tank',
4098-'forehead': 'forehead',
4099-'form data': 'form data',
4100-'from Twitter': 'from Twitter',
4101-'from_id': 'from_id',
4102-'full': 'full',
4103-'getting': 'getting',
4104-'green': 'green',
4105-'grey': 'grey',
4106-'here': 'here',
4107-'high': 'high',
4108-'hourly': 'hourly',
4109-'households': 'households',
4110-'identified': 'identified',
4111-'ignore': 'ignore',
4112-'in Deg Min Sec format': 'in Deg Min Sec format',
4113-'in GPS format': 'in GPS format',
4114-'inactive': 'inactive',
4115-'injured': 'injured',
4116-'insert new': 'insert new',
4117-'insert new %s': 'insert new %s',
4118-'invalid request': 'invalid request',
4119-'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. Picture and finger print details of the people can be uploaded to the system. People can also be captured by group for efficiency and convenience.': '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. Picture and finger print details of the people can be uploaded to the system. People can also be captured by group for efficiency and convenience.',
4120-'keeps track of all incoming tickets allowing them to be categorised & routed to the appropriate place for actioning.': 'keeps track of all incoming tickets allowing them to be categorised & routed to the appropriate place for actioning.',
4121-'kilogram': 'kilogram',
4122-'kit': 'kit',
4123-'latrines': 'latrines',
4124-'legend URL': 'legend URL',
4125-'light': 'light',
4126-'liter': 'liter',
4127-'login': 'login',
4128-'long': 'long',
4129-'long>12cm': 'long>12cm',
4130-'low': 'low',
4131-'male': 'male',
4132-'manual': 'manual',
4133-'married': 'married',
4134-'maxExtent': 'maxExtent',
4135-'maxResolution': 'maxResolution',
4136-'medium': 'medium',
4137-'medium<12cm': 'medium<12cm',
4138-'menu item': 'menu item',
4139-'message_id': 'message_id',
4140-'meter': 'meter',
4141-'meter cubed': 'meter cubed',
4142-'meters': 'meters',
4143-'module allows the site administrator to configure various options.': 'module allows the site administrator to configure various options.',
4144-'module helps monitoring the status of hospitals.': 'module helps monitoring the status of hospitals.',
4145-'module provides a mechanism to collaboratively provide an overview of the developing disaster, using online mapping (GIS).': 'module provides a mechanism to collaboratively provide an overview of the developing disaster, using online mapping (GIS).',
4146-'mongoloid': 'mongoloid',
4147-'more': 'more',
4148-'n/a': 'n/a',
4149-'negroid': 'negroid',
4150-'never': 'never',
4151-'new': 'new',
4152-'new record inserted': 'new record inserted',
4153-'next 100 rows': 'next 100 rows',
4154-'no': 'no',
4155-'none': 'none',
4156-'normal': 'normal',
4157-'not needed': 'not needed',
4158-'not specified': 'not specified',
4159-'num Zoom Levels': 'num Zoom Levels',
4160-'once': 'once',
4161-'open defecation': 'open defecation',
4162-'or import from csv file': 'or import from csv file',
4163-'other': 'other',
4164-'over one hour': 'over one hour',
4165-'pack of 10': 'pack of 10',
4166-'pending': 'pending',
4167-'people': 'people',
4168-'piece': 'piece',
4169-'pit': 'pit',
4170-'pit latrine': 'pit latrine',
4171-'postponed': 'postponed',
4172-'preliminary template or draft, not actionable in its current form': 'preliminary template or draft, not actionable in its current form',
4173-'previous 100 rows': 'previous 100 rows',
4174-'problem connecting to twitter.com - please refresh': 'problem connecting to twitter.com - please refresh',
4175-'provides a catalogue of digital media.': 'provides a catalogue of digital media.',
4176-'record does not exist': 'record does not exist',
4177-'record id': 'record id',
4178-'red': 'red',
4179-'reports successfully imported.': 'reports successfully imported.',
4180-'retired': 'retired',
4181-'retry': 'retry',
4182-'river': 'river',
4183-'sack 20kg': 'sack 20kg',
4184-'sack 50kg': 'sack 50kg',
4185-'see comment': 'see comment',
4186-'selected': 'selected',
4187-'separated': 'separated',
4188-'separated from family': 'separated from family',
4189-'shaved': 'shaved',
4190-'shift_end': 'shift_end',
4191-'shift_start': 'shift_start',
4192-'short': 'short',
4193-'short<6cm': 'short<6cm',
4194-'sides': 'sides',
4195-'sign-up now': 'sign-up now',
4196-'simple': 'simple',
4197-'single': 'single',
4198-'slim': 'slim',
4199-'state': 'state',
4200-'straight': 'straight',
4201-'suffered financial losses': 'suffered financial losses',
4202-'table': 'table',
4203-'table_name': 'table_name',
4204-'tall': 'tall',
4205-'this': 'this',
4206-'times and it is still not working. We give in. Sorry.': 'times and it is still not working. We give in. Sorry.',
4207-'to access the system': 'to access the system',
4208-'to reset your password': 'to reset your password',
4209-'to verify your email': 'to verify your email',
4210-'to_id': 'to_id',
4211-'ton': 'ton',
4212-'tonsure': 'tonsure',
4213-'total': 'total',
4214-'tracks all shelters and stores basic details regarding them. It collaborates with other modules to track people associated with a shelter, the services available etc.': 'tracks all shelters and stores basic details regarding them. It collaborates with other modules to track people associated with a shelter, the services available etc.',
4215-'tweepy module not available within the running Python - this needs installing for non-Tropo Twitter support!': 'tweepy module not available within the running Python - this needs installing for non-Tropo Twitter support!',
4216-'unable to parse csv file': 'unable to parse csv file',
4217-'unapproved': 'unapproved',
4218-'uncheck all': 'uncheck all',
4219-'unidentified': 'unidentified',
4220-'uninhabitable = foundation and structure destroyed': 'uninhabitable = foundation and structure destroyed',
4221-'unknown': 'unknown',
4222-'unspecified': 'unspecified',
4223-'updated': 'updated',
4224-'updates only': 'updates only',
4225-'vm_action': 'vm_action',
4226-'wavy': 'wavy',
4227-'weekly': 'weekly',
4228-'white': 'white',
4229-'wider area, longer term, usually contain multiple Activities': 'wider area, longer term, usually contain multiple Activities',
4230-'widowed': 'widowed',
4231-'window': 'window',
4232-'windows broken, cracks in walls, roof slightly damaged': 'windows broken, cracks in walls, roof slightly damaged',
4233-'within human habitat': 'within human habitat',
4234-'xlwt module not available within the running Python - this needs installing for XLS output!': 'xlwt module not available within the running Python - this needs installing for XLS output!',
4235-'yes': 'yes',
4236-}
4237+# coding: utf8
4238+{
4239+' (leave empty to detach account)': ' (leave empty to detach account)',
4240+' Module is the main communications hub of the Sahana system. It is used to send alerts and/or messages using SMS & Email to various groups and individuals before, during and after a disaster.': ' Module is the main communications hub of the Sahana system. It is used to send alerts and/or messages using SMS & Email to various groups and individuals before, during and after a disaster.',
4241+' by ': ' by ',
4242+' is envisioned to be composed of several sub-modules that work together to provide complex functionality for the management of relief and project items by an organization. This includes an intake system, a warehouse management system, commodity tracking, supply chain management, fleet management, procurement, financial tracking and other asset and resource management capabilities.': ' is envisioned to be composed of several sub-modules that work together to provide complex functionality for the management of relief and project items by an organization. This includes an intake system, a warehouse management system, commodity tracking, supply chain management, fleet management, procurement, financial tracking and other asset and resource management capabilities.',
4243+' on ': ' on ',
4244+'"update" is an optional expression like "field1=\'newvalue\'". You cannot update or delete the results of a JOIN': '"update" is an optional expression like "field1=\'newvalue\'". You cannot update or delete the results of a JOIN',
4245+'# of International Staff': '# of International Staff',
4246+'# of National Staff': '# of National Staff',
4247+'# of People Affected': '# of People Affected',
4248+'# of People Deceased': '# of People Deceased',
4249+'# of People Injured': '# of People Injured',
4250+'# of Vehicles': '# of Vehicles',
4251+'%Y-%m-%d %H:%M:%S': '%Y-%m-%d %H:%M:%S',
4252+'%s rows deleted': '%s rows deleted',
4253+'%s rows updated': '%s rows updated',
4254+'(Constraints Only)': '(Constraints Only)',
4255+') & then click on the map below to adjust the Lat/Lon fields:': ') & then click on the map below to adjust the Lat/Lon fields:',
4256+'* Required Fields': '* Required Fields',
4257+'0-15 minutes': '0-15 minutes',
4258+'1 Assessment': '1 Assessment',
4259+'1 location, shorter time, can contain multiple Tasks': '1 location, shorter time, can contain multiple Tasks',
4260+'1-3 days': '1-3 days',
4261+'1. Fill the necessary fields in BLOCK letters.': '1. Fill the necessary fields in BLOCK letters.',
4262+'15-30 minutes': '15-30 minutes',
4263+'2 different options are provided here currently:': '2 different options are provided here currently:',
4264+'2. Always use one box per letter and leave one box space to seperate words.': '2. Always use one box per letter and leave one box space to seperate words.',
4265+'2x4 Car': '2x4 Car',
4266+'30-60 minutes': '30-60 minutes',
4267+'4-7 days': '4-7 days',
4268+'4x4 Car': '4x4 Car',
4269+'8-14 days': '8-14 days',
4270+'A Reference Document such as a file, URL or contact person to verify this data. You can type the 1st few characters of the document name to link to an existing document.': 'A Reference Document such as a file, URL or contact person to verify this data. You can type the 1st few characters of the document name to link to an existing document.',
4271+'A Warehouse is a physical place to store items.': 'A Warehouse is a physical place to store items.',
4272+'A Warehouse/Site is a physical location with an address and GIS data where Items are Stored. It can be a Building, a particular area in a city or anything similar.': 'A Warehouse/Site is a physical location with an address and GIS data where Items are Stored. It can be a Building, a particular area in a city or anything similar.',
4273+'A brief description of the group (optional)': 'A brief description of the group (optional)',
4274+'A file downloaded from a GPS containing a series of geographic points in XML format.': 'A file downloaded from a GPS containing a series of geographic points in XML format.',
4275+'A file in GPX format taken from a GPS whose timestamps can be correlated with the timestamps on the photos to locate them on the map.': 'A file in GPX format taken from a GPS whose timestamps can be correlated with the timestamps on the photos to locate them on the map.',
4276+'A library of digital resources, such as photos, documents and reports': 'A library of digital resources, such as photos, documents and reports',
4277+'A place within a Site like a Shelf, room, bin number etc.': 'A place within a Site like a Shelf, room, bin number etc.',
4278+'A snapshot of the bin or additional documents that contain supplementary information about it can be uploaded here.': 'A snapshot of the bin or additional documents that contain supplementary information about it can be uploaded here.',
4279+'A snapshot of the location or additional documents that contain supplementary information about the Site Location can be uploaded here.': 'A snapshot of the location or additional documents that contain supplementary information about the Site Location can be uploaded here.',
4280+'A snapshot of the location or additional documents that contain supplementary information about the Site can be uploaded here.': 'A snapshot of the location or additional documents that contain supplementary information about the Site can be uploaded here.',
4281+'A survey series with id %s does not exist. Please go back and create one.': 'A survey series with id %s does not exist. Please go back and create one.',
4282+'ABOUT': 'ABOUT',
4283+'ABOUT THIS MODULE': 'ABOUT THIS MODULE',
4284+'ACCESS DATA': 'ACCESS DATA',
4285+'ANY': 'ANY',
4286+'API is documented here': 'API is documented here',
4287+'Ability to Fill Out Surveys': 'Ability to Fill Out Surveys',
4288+'Ability to customize the list of details tracked at a Shelter': 'Ability to customize the list of details tracked at a Shelter',
4289+'Ability to customize the list of human resource tracked at a Shelter': 'Ability to customize the list of human resource tracked at a Shelter',
4290+'Ability to customize the list of important facilities needed at a Shelter': 'Ability to customize the list of important facilities needed at a Shelter',
4291+'Ability to track partial fulfillment of the request': 'Ability to track partial fulfillment of the request',
4292+'Ability to view Results of Completed and/or partially filled out Surveys': 'Ability to view Results of Completed and/or partially filled out Surveys',
4293+'About': 'About',
4294+'About Sahana': 'About Sahana',
4295+'About Sahana Eden': 'About Sahana Eden',
4296+'About this module': 'About this module',
4297+'Access denied': 'Access denied',
4298+'Accessibility of Affected Location': 'Accessibility of Affected Location',
4299+'Account registered, however registration is still pending approval - please wait until confirmation received.': 'Account registered, however registration is still pending approval - please wait until confirmation received.',
4300+'Acronym': 'Acronym',
4301+"Acronym of the organization's name, eg. IFRC.": "Acronym of the organization's name, eg. IFRC.",
4302+'Actionable by all targeted recipients': 'Actionable by all targeted recipients',
4303+'Actionable only by designated exercise participants; exercise identifier SHOULD appear in <note>': 'Actionable only by designated exercise participants; exercise identifier SHOULD appear in <note>',
4304+'Actioned?': 'Actioned?',
4305+'Active Problems': 'Active Problems',
4306+'Activities': 'Activities',
4307+'Activities matching Assessments:': 'Activities matching Assessments:',
4308+'Activities of boys 13-17yrs before disaster': 'Activities of boys 13-17yrs before disaster',
4309+'Activities of boys 13-17yrs now': 'Activities of boys 13-17yrs now',
4310+'Activities of boys <12yrs before disaster': 'Activities of boys <12yrs before disaster',
4311+'Activities of boys <12yrs now': 'Activities of boys <12yrs now',
4312+'Activities of girls 13-17yrs before disaster': 'Activities of girls 13-17yrs before disaster',
4313+'Activities of girls 13-17yrs now': 'Activities of girls 13-17yrs now',
4314+'Activities of girls <12yrs before disaster': 'Activities of girls <12yrs before disaster',
4315+'Activities of girls <12yrs now': 'Activities of girls <12yrs now',
4316+'Activities:': 'Activities:',
4317+'Activity': 'Activity',
4318+'Activity Added': 'Activity Added',
4319+'Activity Deleted': 'Activity Deleted',
4320+'Activity Details': 'Activity Details',
4321+'Activity Report': 'Activity Report',
4322+'Activity Reports': 'Activity Reports',
4323+'Activity Type': 'Activity Type',
4324+'Activity Updated': 'Activity Updated',
4325+'Add': 'Add',
4326+'Add Activity': 'Add Activity',
4327+'Add Activity Report': 'Add Activity Report',
4328+'Add Activity Type': 'Add Activity Type',
4329+'Add Address': 'Add Address',
4330+'Add Assessment': 'Add Assessment',
4331+'Add Assessment Summary': 'Add Assessment Summary',
4332+'Add Baseline': 'Add Baseline',
4333+'Add Baseline Type': 'Add Baseline Type',
4334+'Add Bed Type': 'Add Bed Type',
4335+'Add Bin Type': 'Add Bin Type',
4336+'Add Bins': 'Add Bins',
4337+'Add Budget': 'Add Budget',
4338+'Add Bundle': 'Add Bundle',
4339+'Add Catalog': 'Add Catalog',
4340+'Add Catalog Item': 'Add Catalog Item',
4341+'Add Catalog.': 'Add Catalog.',
4342+'Add Category': 'Add Category',
4343+'Add Category<>Sub-Category<>Catalog Relation': 'Add Category<>Sub-Category<>Catalog Relation',
4344+'Add Cholera Treatment Capability Information': 'Add Cholera Treatment Capability Information',
4345+'Add Cluster Subsector': 'Add Cluster Subsector',
4346+'Add Config': 'Add Config',
4347+'Add Contact': 'Add Contact',
4348+'Add Contact Information': 'Add Contact Information',
4349+'Add Disaster Victims': 'Add Disaster Victims',
4350+'Add Distribution.': 'Add Distribution.',
4351+'Add Donor': 'Add Donor',
4352+'Add Feature Class': 'Add Feature Class',
4353+'Add Feature Layer': 'Add Feature Layer',
4354+'Add Flood Report': 'Add Flood Report',
4355+'Add Group': 'Add Group',
4356+'Add Group Member': 'Add Group Member',
4357+'Add Hospital': 'Add Hospital',
4358+'Add Identification Report': 'Add Identification Report',
4359+'Add Identity': 'Add Identity',
4360+'Add Image': 'Add Image',
4361+'Add Impact': 'Add Impact',
4362+'Add Impact Type': 'Add Impact Type',
4363+'Add Incident Report': 'Add Incident Report',
4364+'Add Item': 'Add Item',
4365+'Add Item (s)': 'Add Item (s)',
4366+'Add Item Catalog': 'Add Item Catalog',
4367+'Add Item Catalog ': 'Add Item Catalog ',
4368+'Add Item Catalog Category ': 'Add Item Catalog Category ',
4369+'Add Item Category': 'Add Item Category',
4370+'Add Item Packet': 'Add Item Packet',
4371+'Add Item Sub-Category': 'Add Item Sub-Category',
4372+'Add Key': 'Add Key',
4373+'Add Kit': 'Add Kit',
4374+'Add Layer': 'Add Layer',
4375+'Add Line': 'Add Line',
4376+'Add Location': 'Add Location',
4377+'Add Locations': 'Add Locations',
4378+'Add Log Entry': 'Add Log Entry',
4379+'Add Member': 'Add Member',
4380+'Add Membership': 'Add Membership',
4381+'Add Message': 'Add Message',
4382+'Add Need': 'Add Need',
4383+'Add Need Type': 'Add Need Type',
4384+'Add New': 'Add New',
4385+'Add New Activity': 'Add New Activity',
4386+'Add New Address': 'Add New Address',
4387+'Add New Assessment': 'Add New Assessment',
4388+'Add New Assessment Summary': 'Add New Assessment Summary',
4389+'Add New Baseline': 'Add New Baseline',
4390+'Add New Baseline Type': 'Add New Baseline Type',
4391+'Add New Bin': 'Add New Bin',
4392+'Add New Bin Type': 'Add New Bin Type',
4393+'Add New Budget': 'Add New Budget',
4394+'Add New Bundle': 'Add New Bundle',
4395+'Add New Catalog Item': 'Add New Catalog Item',
4396+'Add New Cluster Subsector': 'Add New Cluster Subsector',
4397+'Add New Config': 'Add New Config',
4398+'Add New Contact': 'Add New Contact',
4399+'Add New Document': 'Add New Document',
4400+'Add New Donor': 'Add New Donor',
4401+'Add New Entry': 'Add New Entry',
4402+'Add New Feature Class': 'Add New Feature Class',
4403+'Add New Feature Layer': 'Add New Feature Layer',
4404+'Add New Flood Report': 'Add New Flood Report',
4405+'Add New Group': 'Add New Group',
4406+'Add New Hospital': 'Add New Hospital',
4407+'Add New Identity': 'Add New Identity',
4408+'Add New Image': 'Add New Image',
4409+'Add New Impact': 'Add New Impact',
4410+'Add New Impact Type': 'Add New Impact Type',
4411+'Add New Incident Report': 'Add New Incident Report',
4412+'Add New Item': 'Add New Item',
4413+'Add New Item Catalog': 'Add New Item Catalog',
4414+'Add New Item Catalog Category': 'Add New Item Catalog Category',
4415+'Add New Item Category': 'Add New Item Category',
4416+'Add New Item Packet': 'Add New Item Packet',
4417+'Add New Item Sub-Category': 'Add New Item Sub-Category',
4418+'Add New Item to Kit': 'Add New Item to Kit',
4419+'Add New Key': 'Add New Key',
4420+'Add New Kit': 'Add New Kit',
4421+'Add New Layer': 'Add New Layer',
4422+'Add New Location': 'Add New Location',
4423+'Add New Log Entry': 'Add New Log Entry',
4424+'Add New Marker': 'Add New Marker',
4425+'Add New Member': 'Add New Member',
4426+'Add New Membership': 'Add New Membership',
4427+'Add New Need': 'Add New Need',
4428+'Add New Need Type': 'Add New Need Type',
4429+'Add New Office': 'Add New Office',
4430+'Add New Organization': 'Add New Organization',
4431+'Add New Photo': 'Add New Photo',
4432+'Add New Position': 'Add New Position',
4433+'Add New Problem': 'Add New Problem',
4434+'Add New Project': 'Add New Project',
4435+'Add New Projection': 'Add New Projection',
4436+'Add New Rapid Assessment': 'Add New Rapid Assessment',
4437+'Add New Received Item': 'Add New Received Item',
4438+'Add New Record': 'Add New Record',
4439+'Add New Report': 'Add New Report',
4440+'Add New Request': 'Add New Request',
4441+'Add New Request Item': 'Add New Request Item',
4442+'Add New Resource': 'Add New Resource',
4443+'Add New River': 'Add New River',
4444+'Add New Role': 'Add New Role',
4445+'Add New Role to User': 'Add New Role to User',
4446+'Add New Sector': 'Add New Sector',
4447+'Add New Sent Item': 'Add New Sent Item',
4448+'Add New Setting': 'Add New Setting',
4449+'Add New Shelter': 'Add New Shelter',
4450+'Add New Shelter Service': 'Add New Shelter Service',
4451+'Add New Shelter Type': 'Add New Shelter Type',
4452+'Add New Site': 'Add New Site',
4453+'Add New Skill': 'Add New Skill',
4454+'Add New Skill Type': 'Add New Skill Type',
4455+'Add New Solution': 'Add New Solution',
4456+'Add New Staff': 'Add New Staff',
4457+'Add New Staff Type': 'Add New Staff Type',
4458+'Add New Storage Location': 'Add New Storage Location',
4459+'Add New Survey Answer': 'Add New Survey Answer',
4460+'Add New Survey Question': 'Add New Survey Question',
4461+'Add New Survey Section': 'Add New Survey Section',
4462+'Add New Survey Series': 'Add New Survey Series',
4463+'Add New Survey Template': 'Add New Survey Template',
4464+'Add New Task': 'Add New Task',
4465+'Add New Team': 'Add New Team',
4466+'Add New Theme': 'Add New Theme',
4467+'Add New Ticket': 'Add New Ticket',
4468+'Add New Track': 'Add New Track',
4469+'Add New Unit': 'Add New Unit',
4470+'Add New User': 'Add New User',
4471+'Add New User to Role': 'Add New User to Role',
4472+'Add New Warehouse': 'Add New Warehouse',
4473+'Add New Warehouse Item': 'Add New Warehouse Item',
4474+'Add Office': 'Add Office',
4475+'Add Organization': 'Add Organization',
4476+'Add Peer': 'Add Peer',
4477+'Add Person': 'Add Person',
4478+'Add Personal Effects': 'Add Personal Effects',
4479+'Add Photo': 'Add Photo',
4480+'Add Point': 'Add Point',
4481+'Add Polygon': 'Add Polygon',
4482+'Add Position': 'Add Position',
4483+'Add Problem': 'Add Problem',
4484+'Add Project': 'Add Project',
4485+'Add Projection': 'Add Projection',
4486+'Add Question': 'Add Question',
4487+'Add Rapid Assessment': 'Add Rapid Assessment',
4488+'Add Recipient': 'Add Recipient',
4489+'Add Recipient Site': 'Add Recipient Site',
4490+'Add Recipient Site.': 'Add Recipient Site.',
4491+'Add Record': 'Add Record',
4492+'Add Recovery Report': 'Add Recovery Report',
4493+'Add Reference Document': 'Add Reference Document',
4494+'Add Report': 'Add Report',
4495+'Add Request': 'Add Request',
4496+'Add Request Detail': 'Add Request Detail',
4497+'Add Request Item': 'Add Request Item',
4498+'Add Resource': 'Add Resource',
4499+'Add River': 'Add River',
4500+'Add Role': 'Add Role',
4501+'Add Section': 'Add Section',
4502+'Add Sector': 'Add Sector',
4503+'Add Sender Organization': 'Add Sender Organization',
4504+'Add Sender Site': 'Add Sender Site',
4505+'Add Sender Site.': 'Add Sender Site.',
4506+'Add Service Profile': 'Add Service Profile',
4507+'Add Setting': 'Add Setting',
4508+'Add Shelter': 'Add Shelter',
4509+'Add Shelter Service': 'Add Shelter Service',
4510+'Add Shelter Type': 'Add Shelter Type',
4511+'Add Shipment Transit Log': 'Add Shipment Transit Log',
4512+'Add Shipment/Way Bills': 'Add Shipment/Way Bills',
4513+'Add Site': 'Add Site',
4514+'Add Skill': 'Add Skill',
4515+'Add Skill Type': 'Add Skill Type',
4516+'Add Skill Types': 'Add Skill Types',
4517+'Add Solution': 'Add Solution',
4518+'Add Staff': 'Add Staff',
4519+'Add Staff Type': 'Add Staff Type',
4520+'Add Status': 'Add Status',
4521+'Add Storage Bin ': 'Add Storage Bin ',
4522+'Add Storage Bin Type': 'Add Storage Bin Type',
4523+'Add Storage Location': 'Add Storage Location',
4524+'Add Storage Location ': 'Add Storage Location ',
4525+'Add Sub-Category': 'Add Sub-Category',
4526+'Add Subscription': 'Add Subscription',
4527+'Add Survey Answer': 'Add Survey Answer',
4528+'Add Survey Question': 'Add Survey Question',
4529+'Add Survey Section': 'Add Survey Section',
4530+'Add Survey Series': 'Add Survey Series',
4531+'Add Survey Template': 'Add Survey Template',
4532+'Add Task': 'Add Task',
4533+'Add Team': 'Add Team',
4534+'Add Theme': 'Add Theme',
4535+'Add Ticket': 'Add Ticket',
4536+'Add Unit': 'Add Unit',
4537+'Add User': 'Add User',
4538+'Add Volunteer': 'Add Volunteer',
4539+'Add Volunteer Registration': 'Add Volunteer Registration',
4540+'Add Warehouse': 'Add Warehouse',
4541+'Add Warehouse Item': 'Add Warehouse Item',
4542+'Add a Person': 'Add a Person',
4543+'Add a Reference Document such as a file, URL or contact person to verify this data. If you do not enter a Reference Document, your email will be displayed instead.': 'Add a Reference Document such as a file, URL or contact person to verify this data. If you do not enter a Reference Document, your email will be displayed instead.',
4544+'Add a Volunteer': 'Add a Volunteer',
4545+'Add a new Site from where the Item is being sent.': 'Add a new Site from where the Item is being sent.',
4546+'Add a new Site where the Item is being sent to.': 'Add a new Site where the Item is being sent to.',
4547+'Add an Photo.': 'Add an Photo.',
4548+'Add main Item Category.': 'Add main Item Category.',
4549+'Add main Item Sub-Category.': 'Add main Item Sub-Category.',
4550+'Add new Group': 'Add new Group',
4551+'Add new Individual': 'Add new Individual',
4552+'Add new position.': 'Add new position.',
4553+'Add new project.': 'Add new project.',
4554+'Add new staff role.': 'Add new staff role.',
4555+'Add the Storage Bin Type.': 'Add the Storage Bin Type.',
4556+'Add the Storage Location where this bin is located.': 'Add the Storage Location where this bin is located.',
4557+'Add the Storage Location where this this Bin belongs to.': 'Add the Storage Location where this this Bin belongs to.',
4558+'Add the main Warehouse/Site information where this Bin belongs to.': 'Add the main Warehouse/Site information where this Bin belongs to.',
4559+'Add the main Warehouse/Site information where this Item is to be added.': 'Add the main Warehouse/Site information where this Item is to be added.',
4560+'Add the main Warehouse/Site information where this Storage location is.': 'Add the main Warehouse/Site information where this Storage location is.',
4561+'Add the unit of measure if it doesnt exists already.': 'Add the unit of measure if it doesnt exists already.',
4562+'Add to Bundle': 'Add to Bundle',
4563+'Add to Catalog': 'Add to Catalog',
4564+'Add to budget': 'Add to budget',
4565+'Add/Edit/Remove Layers': 'Add/Edit/Remove Layers',
4566+'Additional Beds / 24hrs': 'Additional Beds / 24hrs',
4567+'Additional Comments': 'Additional Comments',
4568+"Additional quantity quantifier – e.g. '4x5'.": "Additional quantity quantifier – e.g. '4x5'.",
4569+'Address': 'Address',
4570+'Address Details': 'Address Details',
4571+'Address Type': 'Address Type',
4572+'Address added': 'Address added',
4573+'Address deleted': 'Address deleted',
4574+'Address updated': 'Address updated',
4575+'Addresses': 'Addresses',
4576+'Adequate': 'Adequate',
4577+'Adequate food and water available': 'Adequate food and water available',
4578+'Adjust Item(s) Quantity': 'Adjust Item(s) Quantity',
4579+'Adjust Items due to Theft/Loss': 'Adjust Items due to Theft/Loss',
4580+'Admin Email': 'Admin Email',
4581+'Admin Name': 'Admin Name',
4582+'Admin Tel': 'Admin Tel',
4583+'Administration': 'Administration',
4584+'Administrator': 'Administrator',
4585+'Admissions/24hrs': 'Admissions/24hrs',
4586+'Adolescent (12-20)': 'Adolescent (12-20)',
4587+'Adolescent participating in coping activities': 'Adolescent participating in coping activities',
4588+'Adult (21-50)': 'Adult (21-50)',
4589+'Adult ICU': 'Adult ICU',
4590+'Adult Psychiatric': 'Adult Psychiatric',
4591+'Adult female': 'Adult female',
4592+'Adult male': 'Adult male',
4593+'Adults in prisons': 'Adults in prisons',
4594+'Advanced Bin Search': 'Advanced Bin Search',
4595+'Advanced Catalog Search': 'Advanced Catalog Search',
4596+'Advanced Category Search': 'Advanced Category Search',
4597+'Advanced Item Search': 'Advanced Item Search',
4598+'Advanced Location Search': 'Advanced Location Search',
4599+'Advanced Site Search': 'Advanced Site Search',
4600+'Advanced Sub-Category Search': 'Advanced Sub-Category Search',
4601+'Advanced Unit Search': 'Advanced Unit Search',
4602+'Advanced:': 'Advanced:',
4603+'Advisory': 'Advisory',
4604+'After clicking on the button, a set of paired items will be shown one by one. Please select the one solution from each pair that you prefer over the other.': 'After clicking on the button, a set of paired items will be shown one by one. Please select the one solution from each pair that you prefer over the other.',
4605+'Age Group': 'Age Group',
4606+'Age group': 'Age group',
4607+'Age group does not match actual age.': 'Age group does not match actual age.',
4608+'Aggravating factors': 'Aggravating factors',
4609+'Aggregate Items': 'Aggregate Items',
4610+'Agriculture': 'Agriculture',
4611+'Air Transport Service': 'Air Transport Service',
4612+'Air tajin': 'Air tajin',
4613+'Aircraft Crash': 'Aircraft Crash',
4614+'Aircraft Hijacking': 'Aircraft Hijacking',
4615+'Airport Closure': 'Airport Closure',
4616+'Airspace Closure': 'Airspace Closure',
4617+'Alcohol': 'Alcohol',
4618+'Alert': 'Alert',
4619+'All': 'All',
4620+'All Inbound & Outbound Messages are stored here': 'All Inbound & Outbound Messages are stored here',
4621+'All Requested Items': 'All Requested Items',
4622+'All Resources': 'All Resources',
4623+'All data provided by the Sahana Software Foundation from this site is licenced under a Creative Commons Attribution licence. However, not all data originates here. Please consult the source field of each entry.': 'All data provided by the Sahana Software Foundation from this site is licenced under a Creative Commons Attribution licence. However, not all data originates here. Please consult the source field of each entry.',
4624+'Allowed to push': 'Allowed to push',
4625+'Allows a Budget to be drawn up': 'Allows a Budget to be drawn up',
4626+'Allows authorized users to control which layers are available to the situation map.': 'Allows authorized users to control which layers are available to the situation map.',
4627+'Alternative infant nutrition in use': 'Alternative infant nutrition in use',
4628+'Alternative places for studying': 'Alternative places for studying',
4629+'Alternative places for studying available': 'Alternative places for studying available',
4630+'Ambulance Service': 'Ambulance Service',
4631+'An intake system, a warehouse management system, commodity tracking, supply chain management, procurement and other asset and resource management capabilities.': 'An intake system, a warehouse management system, commodity tracking, supply chain management, procurement and other asset and resource management capabilities.',
4632+'Analysis of Completed Surveys': 'Analysis of Completed Surveys',
4633+'Animal Die Off': 'Animal Die Off',
4634+'Animal Feed': 'Animal Feed',
4635+'Animals': 'Animals',
4636+'Answer Choices (One Per Line)': 'Answer Choices (One Per Line)',
4637+'Anthropolgy': 'Anthropolgy',
4638+'Antibiotics available': 'Antibiotics available',
4639+'Antibiotics needed per 24h': 'Antibiotics needed per 24h',
4640+'Apparent Age': 'Apparent Age',
4641+'Apparent Gender': 'Apparent Gender',
4642+'Appropriate clothing available': 'Appropriate clothing available',
4643+'Appropriate cooking equipment/materials in HH': 'Appropriate cooking equipment/materials in HH',
4644+'Approx. number of cases/48h': 'Approx. number of cases/48h',
4645+'Approximately how many children under 5 with diarrhea in the past 48 hours?': 'Approximately how many children under 5 with diarrhea in the past 48 hours?',
4646+'Archive not Delete': 'Archive not Delete',
4647+'Arctic Outflow': 'Arctic Outflow',
4648+'Are basic medical supplies available for health services since the disaster?': 'Are basic medical supplies available for health services since the disaster?',
4649+'Are breast milk substitutes being used here since the disaster?': 'Are breast milk substitutes being used here since the disaster?',
4650+'Are the areas that children, older people, and people with disabilities live in, play in and walk through on a daily basis physically safe?': 'Are the areas that children, older people, and people with disabilities live in, play in and walk through on a daily basis physically safe?',
4651+'Are the chronically ill receiving sufficient care and assistance?': 'Are the chronically ill receiving sufficient care and assistance?',
4652+'Are there adults living in prisons in this area?': 'Are there adults living in prisons in this area?',
4653+'Are there alternative places for studying?': 'Are there alternative places for studying?',
4654+'Are there cases of diarrhea among children under the age of 5?': 'Are there cases of diarrhea among children under the age of 5?',
4655+'Are there children living in adult prisons in this area?': 'Are there children living in adult prisons in this area?',
4656+'Are there children living in boarding schools in this area?': 'Are there children living in boarding schools in this area?',
4657+'Are there children living in homes for disabled children in this area?': 'Are there children living in homes for disabled children in this area?',
4658+'Are there children living in juvenile detention in this area?': 'Are there children living in juvenile detention in this area?',
4659+'Are there children living in orphanages in this area?': 'Are there children living in orphanages in this area?',
4660+'Are there children with chronical illnesses in your community?': 'Are there children with chronical illnesses in your community?',
4661+'Are there health services functioning for the community since the disaster?': 'Are there health services functioning for the community since the disaster?',
4662+'Are there older people living in care homes in this area?': 'Are there older people living in care homes in this area?',
4663+'Are there older people with chronical illnesses in your community?': 'Are there older people with chronical illnesses in your community?',
4664+'Are there people with chronical illnesses in your community?': 'Are there people with chronical illnesses in your community?',
4665+'Are there separate latrines for women and men available?': 'Are there separate latrines for women and men available?',
4666+'Are there staff present and caring for the residents in these institutions?': 'Are there staff present and caring for the residents in these institutions?',
4667+'Area': 'Area',
4668+'Assessment': 'Assessment',
4669+'Assessment Details': 'Assessment Details',
4670+'Assessment Reported': 'Assessment Reported',
4671+'Assessment Summaries': 'Assessment Summaries',
4672+'Assessment Summary Details': 'Assessment Summary Details',
4673+'Assessment Summary added': 'Assessment Summary added',
4674+'Assessment Summary deleted': 'Assessment Summary deleted',
4675+'Assessment Summary updated': 'Assessment Summary updated',
4676+'Assessment added': 'Assessment added',
4677+'Assessment deleted': 'Assessment deleted',
4678+'Assessment updated': 'Assessment updated',
4679+'Assessments': 'Assessments',
4680+'Assessments Needs vs. Activities': 'Assessments Needs vs. Activities',
4681+'Assessments and Activities': 'Assessments and Activities',
4682+'Assessments:': 'Assessments:',
4683+'Assessor': 'Assessor',
4684+'Assign Storage Location': 'Assign Storage Location',
4685+'Assign to Org.': 'Assign to Org.',
4686+'Assigned': 'Assigned',
4687+'Assigned To': 'Assigned To',
4688+'Assigned to': 'Assigned to',
4689+'Assistance for immediate repair/reconstruction of houses': 'Assistance for immediate repair/reconstruction of houses',
4690+'Assistant': 'Assistant',
4691+'At/Visited Location (not virtual)': 'At/Visited Location (not virtual)',
4692+'Attend to information sources as described in <instruction>': 'Attend to information sources as described in <instruction>',
4693+'Attribution': 'Attribution',
4694+'Audit Read': 'Audit Read',
4695+'Audit Write': 'Audit Write',
4696+"Authenticate system's Twitter account": "Authenticate system's Twitter account",
4697+'Authentication Required': 'Authentication Required',
4698+'Author': 'Author',
4699+'Automotive': 'Automotive',
4700+'Available Beds': 'Available Beds',
4701+'Available Messages': 'Available Messages',
4702+'Available Records': 'Available Records',
4703+'Available databases and tables': 'Available databases and tables',
4704+'Available from': 'Available from',
4705+'Available in Viewer?': 'Available in Viewer?',
4706+'Available until': 'Available until',
4707+'Availablity': 'Availablity',
4708+'Avalanche': 'Avalanche',
4709+'Avoid the subject event as per the <instruction>': 'Avoid the subject event as per the <instruction>',
4710+'Babies who are not being breastfed, what are they being fed on?': 'Babies who are not being breastfed, what are they being fed on?',
4711+'Baby And Child Care': 'Baby And Child Care',
4712+'Background Colour': 'Background Colour',
4713+'Background Colour for Text blocks': 'Background Colour for Text blocks',
4714+'Bahai': 'Bahai',
4715+'Baldness': 'Baldness',
4716+'Balochi': 'Balochi',
4717+'Banana': 'Banana',
4718+'Bank/micro finance': 'Bank/micro finance',
4719+'Base Layer?': 'Base Layer?',
4720+'Base Layers': 'Base Layers',
4721+'Base Unit': 'Base Unit',
4722+'Baseline Number of Beds': 'Baseline Number of Beds',
4723+'Baseline Type': 'Baseline Type',
4724+'Baseline Type Details': 'Baseline Type Details',
4725+'Baseline Type added': 'Baseline Type added',
4726+'Baseline Type deleted': 'Baseline Type deleted',
4727+'Baseline Type updated': 'Baseline Type updated',
4728+'Baseline Types': 'Baseline Types',
4729+'Baseline added': 'Baseline added',
4730+'Baseline deleted': 'Baseline deleted',
4731+'Baseline number of beds of that type in this unit.': 'Baseline number of beds of that type in this unit.',
4732+'Baseline updated': 'Baseline updated',
4733+'Baselines': 'Baselines',
4734+'Baselines Details': 'Baselines Details',
4735+'Basic Assessment': 'Basic Assessment',
4736+'Basic Assessment Reported': 'Basic Assessment Reported',
4737+'Basic Details': 'Basic Details',
4738+'Basic information on the requests and donations, such as category, the units, contact details and the status.': 'Basic information on the requests and donations, such as category, the units, contact details and the status.',
4739+'Basic medical supplies available prior to disaster': 'Basic medical supplies available prior to disaster',
4740+'Basic medical supplies available since disaster': 'Basic medical supplies available since disaster',
4741+'Basic reports on the Shelter and drill-down by region': 'Basic reports on the Shelter and drill-down by region',
4742+'Baud': 'Baud',
4743+'Baud rate to use for your modem - The default is safe for most cases': 'Baud rate to use for your modem - The default is safe for most cases',
4744+'Bed Capacity': 'Bed Capacity',
4745+'Bed Capacity per Unit': 'Bed Capacity per Unit',
4746+'Bed Type': 'Bed Type',
4747+'Bed type already registered': 'Bed type already registered',
4748+'Bedding materials available': 'Bedding materials available',
4749+'Beneficiary Type': 'Beneficiary Type',
4750+'Biological Hazard': 'Biological Hazard',
4751+'Biscuits': 'Biscuits',
4752+'Blizzard': 'Blizzard',
4753+'Blood Type (AB0)': 'Blood Type (AB0)',
4754+'Blowing Snow': 'Blowing Snow',
4755+'Boat': 'Boat',
4756+'Bodies found': 'Bodies found',
4757+'Bodies recovered': 'Bodies recovered',
4758+'Body': 'Body',
4759+'Body Recovery Reports': 'Body Recovery Reports',
4760+'Body Recovery Request': 'Body Recovery Request',
4761+'Body Recovery Requests': 'Body Recovery Requests',
4762+'Bomb': 'Bomb',
4763+'Bomb Explosion': 'Bomb Explosion',
4764+'Bomb Threat': 'Bomb Threat',
4765+'Border Colour for Text blocks': 'Border Colour for Text blocks',
4766+'Boys 13-18 yrs in affected area': 'Boys 13-18 yrs in affected area',
4767+'Boys 13-18 yrs not attending school': 'Boys 13-18 yrs not attending school',
4768+'Boys 6-12 yrs in affected area': 'Boys 6-12 yrs in affected area',
4769+'Boys 6-12 yrs not attending school': 'Boys 6-12 yrs not attending school',
4770+'Breast milk substitutes in use since disaster': 'Breast milk substitutes in use since disaster',
4771+'Breast milk substitutes used prior to disaster': 'Breast milk substitutes used prior to disaster',
4772+'Bricks': 'Bricks',
4773+'Bridge Closed': 'Bridge Closed',
4774+'Bucket': 'Bucket',
4775+'Buddhist': 'Buddhist',
4776+'Budget': 'Budget',
4777+'Budget Details': 'Budget Details',
4778+'Budget Updated': 'Budget Updated',
4779+'Budget added': 'Budget added',
4780+'Budget deleted': 'Budget deleted',
4781+'Budget updated': 'Budget updated',
4782+'Budgeting Module': 'Budgeting Module',
4783+'Budgets': 'Budgets',
4784+'Buffer': 'Buffer',
4785+'Building Aide': 'Building Aide',
4786+'Building Collapsed': 'Building Collapsed',
4787+'Built using the Template agreed by a group of NGOs working together as the': 'Built using the Template agreed by a group of NGOs working together as the',
4788+'Bulk Uploader': 'Bulk Uploader',
4789+'Bundle': 'Bundle',
4790+'Bundle Contents': 'Bundle Contents',
4791+'Bundle Details': 'Bundle Details',
4792+'Bundle Updated': 'Bundle Updated',
4793+'Bundle added': 'Bundle added',
4794+'Bundle deleted': 'Bundle deleted',
4795+'Bundle updated': 'Bundle updated',
4796+'Bundles': 'Bundles',
4797+'Burn': 'Burn',
4798+'Burn ICU': 'Burn ICU',
4799+'Burned/charred': 'Burned/charred',
4800+'Business damaged': 'Business damaged',
4801+'By': 'By',
4802+'By Warehouse': 'By Warehouse',
4803+'CBA Women': 'CBA Women',
4804+'CSS file %s not writable - unable to apply theme!': 'CSS file %s not writable - unable to apply theme!',
4805+'Calculate': 'Calculate',
4806+'Camp': 'Camp',
4807+'Camp Coordination/Management': 'Camp Coordination/Management',
4808+'Can users register themselves for authenticated login access?': 'Can users register themselves for authenticated login access?',
4809+"Can't import tweepy": "Can't import tweepy",
4810+'Cancel': 'Cancel',
4811+'Cancelled': 'Cancelled',
4812+'Candidate Matches for Body %s': 'Candidate Matches for Body %s',
4813+'Canned Fish': 'Canned Fish',
4814+'Cannot be empty': 'Cannot be empty',
4815+'Capacity (Max Persons)': 'Capacity (Max Persons)',
4816+'Capacity (W x D X H)': 'Capacity (W x D X H)',
4817+'Capture Information on Disaster Victim groups (Tourists, Passengers, Families, etc.)': 'Capture Information on Disaster Victim groups (Tourists, Passengers, Families, etc.)',
4818+'Capture Information on each disaster victim': 'Capture Information on each disaster victim',
4819+'Capturing organizational information of a relief organization and all the projects they have in the region': 'Capturing organizational information of a relief organization and all the projects they have in the region',
4820+'Capturing the essential services each Volunteer is providing and where': 'Capturing the essential services each Volunteer is providing and where',
4821+'Capturing the projects each organization is providing and where': 'Capturing the projects each organization is providing and where',
4822+'Cardiology': 'Cardiology',
4823+'Cash available to restart business': 'Cash available to restart business',
4824+'Cassava': 'Cassava',
4825+'Casual Labor': 'Casual Labor',
4826+'Catalog': 'Catalog',
4827+'Catalog Item': 'Catalog Item',
4828+'Catalog Item added': 'Catalog Item added',
4829+'Catalog Item deleted': 'Catalog Item deleted',
4830+'Catalog Item updated': 'Catalog Item updated',
4831+'Catalog Items': 'Catalog Items',
4832+'Catalog Name': 'Catalog Name',
4833+'Category': 'Category',
4834+'Category<>Sub-Category<>Catalog Relation': 'Category<>Sub-Category<>Catalog Relation',
4835+'Category<>Sub-Category<>Catalog Relation added': 'Category<>Sub-Category<>Catalog Relation added',
4836+'Category<>Sub-Category<>Catalog Relation deleted': 'Category<>Sub-Category<>Catalog Relation deleted',
4837+'Category<>Sub-Category<>Catalog Relation updated': 'Category<>Sub-Category<>Catalog Relation updated',
4838+'Central point to record details on People': 'Central point to record details on People',
4839+'Change Password': 'Change Password',
4840+'Check for errors in the URL, maybe the address was mistyped.': 'Check for errors in the URL, maybe the address was mistyped.',
4841+'Check if the URL is pointing to a directory instead of a webpage.': 'Check if the URL is pointing to a directory instead of a webpage.',
4842+'Check outbox for the message status': 'Check outbox for the message status',
4843+'Check to delete': 'Check to delete',
4844+'Check to delete:': 'Check to delete:',
4845+'Checklist': 'Checklist',
4846+'Checklist created': 'Checklist created',
4847+'Checklist deleted': 'Checklist deleted',
4848+'Checklist of Operations': 'Checklist of Operations',
4849+'Checklist updated': 'Checklist updated',
4850+'Chemical Hazard': 'Chemical Hazard',
4851+'Chemical, Biological, Radiological, Nuclear or High-Yield Explosive threat or attack': 'Chemical, Biological, Radiological, Nuclear or High-Yield Explosive threat or attack',
4852+'Chicken': 'Chicken',
4853+'Child': 'Child',
4854+'Child (2-11)': 'Child (2-11)',
4855+'Child (< 18 yrs)': 'Child (< 18 yrs)',
4856+'Child Abduction Emergency': 'Child Abduction Emergency',
4857+'Child headed households (<18 yrs)': 'Child headed households (<18 yrs)',
4858+'Children (2-5 years)': 'Children (2-5 years)',
4859+'Children (5-15 years)': 'Children (5-15 years)',
4860+'Children (< 2 years)': 'Children (< 2 years)',
4861+'Children in adult prisons': 'Children in adult prisons',
4862+'Children in boarding schools': 'Children in boarding schools',
4863+'Children in homes for disabled children': 'Children in homes for disabled children',
4864+'Children in juvenile detention': 'Children in juvenile detention',
4865+'Children in orphanages': 'Children in orphanages',
4866+'Children living on their own (without adults)': 'Children living on their own (without adults)',
4867+'Children not enrolled in new school': 'Children not enrolled in new school',
4868+'Children orphaned by the disaster': 'Children orphaned by the disaster',
4869+'Children separated from their parents/caregivers': 'Children separated from their parents/caregivers',
4870+'Children that have been sent to safe places': 'Children that have been sent to safe places',
4871+'Children who have disappeared since the disaster': 'Children who have disappeared since the disaster',
4872+'Children with chronical illnesses': 'Children with chronical illnesses',
4873+'Chinese (Taiwan)': 'Chinese (Taiwan)',
4874+'Cholera Treatment': 'Cholera Treatment',
4875+'Cholera Treatment Capability': 'Cholera Treatment Capability',
4876+'Cholera Treatment Center': 'Cholera Treatment Center',
4877+'Cholera-Treatment-Center': 'Cholera-Treatment-Center',
4878+'Choosing Skill and Resources of Volunteers': 'Choosing Skill and Resources of Volunteers',
4879+'Christian': 'Christian',
4880+'Church': 'Church',
4881+'Circumstances of disappearance, other victims/witnesses who last saw the missing person alive.': 'Circumstances of disappearance, other victims/witnesses who last saw the missing person alive.',
4882+'Civil Emergency': 'Civil Emergency',
4883+'Click on the link ': 'Click on the link ',
4884+'Client IP': 'Client IP',
4885+'Clinical Laboratory': 'Clinical Laboratory',
4886+'Clinical Operations': 'Clinical Operations',
4887+'Clinical Status': 'Clinical Status',
4888+'Close map': 'Close map',
4889+'Closed': 'Closed',
4890+'Clothing': 'Clothing',
4891+'Cluster Distance': 'Cluster Distance',
4892+'Cluster Subsector': 'Cluster Subsector',
4893+'Cluster Subsector Details': 'Cluster Subsector Details',
4894+'Cluster Subsector added': 'Cluster Subsector added',
4895+'Cluster Subsector deleted': 'Cluster Subsector deleted',
4896+'Cluster Subsector updated': 'Cluster Subsector updated',
4897+'Cluster Subsectors': 'Cluster Subsectors',
4898+'Cluster Threshold': 'Cluster Threshold',
4899+'Cluster(s)': 'Cluster(s)',
4900+'Code': 'Code',
4901+'Cold Wave': 'Cold Wave',
4902+'Collective center': 'Collective center',
4903+'Colour for Underline of Subheadings': 'Colour for Underline of Subheadings',
4904+'Colour of Buttons when hovering': 'Colour of Buttons when hovering',
4905+'Colour of bottom of Buttons when not pressed': 'Colour of bottom of Buttons when not pressed',
4906+'Colour of bottom of Buttons when pressed': 'Colour of bottom of Buttons when pressed',
4907+'Colour of dropdown menus': 'Colour of dropdown menus',
4908+'Colour of selected Input fields': 'Colour of selected Input fields',
4909+'Colour of selected menu items': 'Colour of selected menu items',
4910+'Column Choices (One Per Line': 'Column Choices (One Per Line',
4911+'Combined Method': 'Combined Method',
4912+'Come back later.': 'Come back later.',
4913+'Come back later. Everyone visiting this site is probably experiencing the same problem as you.': 'Come back later. Everyone visiting this site is probably experiencing the same problem as you.',
4914+'Comment': 'Comment',
4915+'Comments': 'Comments',
4916+'Commiting a changed spreadsheet to the database': 'Commiting a changed spreadsheet to the database',
4917+'Communication problems': 'Communication problems',
4918+'Community Centre': 'Community Centre',
4919+'Community Health Center': 'Community Health Center',
4920+'Community Member': 'Community Member',
4921+'Complete Unit Label for e.g. meter for m.': 'Complete Unit Label for e.g. meter for m.',
4922+'Completed': 'Completed',
4923+'Complexion': 'Complexion',
4924+'Compose': 'Compose',
4925+'Compromised': 'Compromised',
4926+'Config': 'Config',
4927+'Config added': 'Config added',
4928+'Config deleted': 'Config deleted',
4929+'Config updated': 'Config updated',
4930+'Configs': 'Configs',
4931+'Configure Run-time Settings': 'Configure Run-time Settings',
4932+'Confirmed': 'Confirmed',
4933+'Conflict Details': 'Conflict Details',
4934+'Conflict Resolution': 'Conflict Resolution',
4935+'Consumable': 'Consumable',
4936+'Contact': 'Contact',
4937+'Contact Data': 'Contact Data',
4938+'Contact Details': 'Contact Details',
4939+'Contact Information': 'Contact Information',
4940+'Contact Method': 'Contact Method',
4941+'Contact Person': 'Contact Person',
4942+'Contact details': 'Contact details',
4943+'Contact information added': 'Contact information added',
4944+'Contact information deleted': 'Contact information deleted',
4945+'Contact information updated': 'Contact information updated',
4946+'Contact person(s) in case of news or further questions (if different from reporting person). Include telephone number, address and email as available.': 'Contact person(s) in case of news or further questions (if different from reporting person). Include telephone number, address and email as available.',
4947+'Contact us': 'Contact us',
4948+'Contacts': 'Contacts',
4949+'Contents': 'Contents',
4950+'Contributor': 'Contributor',
4951+'Conversion Tool': 'Conversion Tool',
4952+'Cooking NFIs': 'Cooking NFIs',
4953+'Cooking Oil': 'Cooking Oil',
4954+'Coordinate Conversion': 'Coordinate Conversion',
4955+'Copy': 'Copy',
4956+'Corn': 'Corn',
4957+'Cost Type': 'Cost Type',
4958+'Cost per Megabyte': 'Cost per Megabyte',
4959+'Cost per Minute': 'Cost per Minute',
4960+"Couldn't import tweepy library": "Couldn't import tweepy library",
4961+'Country': 'Country',
4962+'Country of Residence': 'Country of Residence',
4963+'Create & manage Distribution groups to receive Alerts': 'Create & manage Distribution groups to receive Alerts',
4964+'Create Checklist': 'Create Checklist',
4965+'Create Group Entry': 'Create Group Entry',
4966+'Create Impact Assessment': 'Create Impact Assessment',
4967+'Create Import Job': 'Create Import Job',
4968+'Create Mobile Impact Assessment': 'Create Mobile Impact Assessment',
4969+'Create New Import Job': 'Create New Import Job',
4970+'Create PDF': 'Create PDF',
4971+'Create Rapid Assessment': 'Create Rapid Assessment',
4972+'Create Request': 'Create Request',
4973+'Create Task': 'Create Task',
4974+'Create a group entry in the registry.': 'Create a group entry in the registry.',
4975+'Create, enter, and manage surveys.': 'Create, enter, and manage surveys.',
4976+'Creation of Surveys': 'Creation of Surveys',
4977+'Crime': 'Crime',
4978+'Criteria': 'Criteria',
4979+'Currency': 'Currency',
4980+'Current Group Members': 'Current Group Members',
4981+'Current Identities': 'Current Identities',
4982+'Current Location': 'Current Location',
4983+'Current Log Entries': 'Current Log Entries',
4984+'Current Memberships': 'Current Memberships',
4985+'Current Registrations': 'Current Registrations',
4986+'Current Status': 'Current Status',
4987+'Current Team Members': 'Current Team Members',
4988+'Current Twitter account': 'Current Twitter account',
4989+'Current greatest needs of vulnerable groups': 'Current greatest needs of vulnerable groups',
4990+'Current main income sources': 'Current main income sources',
4991+'Current major expenses': 'Current major expenses',
4992+'Current number of patients': 'Current number of patients',
4993+'Current problems, categories': 'Current problems, categories',
4994+'Current problems, details': 'Current problems, details',
4995+'Current request': 'Current request',
4996+'Current response': 'Current response',
4997+'Current session': 'Current session',
4998+'Current type of health problems, adults': 'Current type of health problems, adults',
4999+'Current type of health problems, children': 'Current type of health problems, children',
5000+'Current type of source for drinking water': 'Current type of source for drinking water',
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: