hexsha
stringlengths
40
40
size
int64
5
2.06M
ext
stringclasses
11 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
3
251
max_stars_repo_name
stringlengths
4
130
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
sequencelengths
1
10
max_stars_count
int64
1
191k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
251
max_issues_repo_name
stringlengths
4
130
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
sequencelengths
1
10
max_issues_count
int64
1
116k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
251
max_forks_repo_name
stringlengths
4
130
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
sequencelengths
1
10
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
1
1.05M
avg_line_length
float64
1
1.02M
max_line_length
int64
3
1.04M
alphanum_fraction
float64
0
1
ed17f5890d6b8f37c6b6d897dfdeee0fd244dace
544
py
Python
config.py
lyth031/ptb_lm
71f687fdf41c6b981a306269c1341ea8a8347bb6
[ "MIT" ]
null
null
null
config.py
lyth031/ptb_lm
71f687fdf41c6b981a306269c1341ea8a8347bb6
[ "MIT" ]
null
null
null
config.py
lyth031/ptb_lm
71f687fdf41c6b981a306269c1341ea8a8347bb6
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*-
24.727273
44
0.549632
ed17fa4c7a350d13f37c06feb06cdcd3b65f55bf
859
gyp
Python
binding.gyp
HupuInc/node-mysql-listener
d23e55910acd1559d8339f36b1549f21aee8adaa
[ "MIT" ]
2
2015-10-04T02:09:11.000Z
2021-02-03T00:12:28.000Z
binding.gyp
HupuInc/node-mysql-listener
d23e55910acd1559d8339f36b1549f21aee8adaa
[ "MIT" ]
1
2015-10-04T02:10:02.000Z
2015-10-05T07:29:40.000Z
binding.gyp
HupuInc/node-mysql-listener
d23e55910acd1559d8339f36b1549f21aee8adaa
[ "MIT" ]
null
null
null
{ 'targets': [ { # have to specify 'liblib' here since gyp will remove the first one :\ 'target_name': 'mysql_bindings', 'sources': [ 'src/mysql_bindings.cc', 'src/mysql_bindings_connection.cc', 'src/mysql_bindings_result.cc', 'src/mysql_bindings_statement.cc', ], 'conditions': [ ['OS=="win"', { # no Windows support yet... }, { 'libraries': [ '<!@(mysql_config --libs_r)' ], }], ['OS=="mac"', { # cflags on OS X are stupid and have to be defined like this 'xcode_settings': { 'OTHER_CFLAGS': [ '<!@(mysql_config --cflags)' ] } }, { 'cflags': [ '<!@(mysql_config --cflags)' ], }] ] } ] }
23.861111
76
0.436554
ed1909657faffd879b4424a3c02025a1afc7ff54
1,272
py
Python
pymel/__init__.py
GlenWalker/pymel
8b69b72e1bb726a66792707af39626a987bf5c21
[ "BSD-3-Clause" ]
null
null
null
pymel/__init__.py
GlenWalker/pymel
8b69b72e1bb726a66792707af39626a987bf5c21
[ "BSD-3-Clause" ]
null
null
null
pymel/__init__.py
GlenWalker/pymel
8b69b72e1bb726a66792707af39626a987bf5c21
[ "BSD-3-Clause" ]
null
null
null
# copyright Chad Dombrova [email protected] # created at luma pictures www.luma-pictures.com """ ******************************* PyMEL ******************************* PyMEL makes python scripting in Maya work the way it should. Maya's command module is a direct translation of MEL commands into python functions. The result is a very awkward and unpythonic syntax which does not take advantage of python's strengths -- particularly, a flexible, object-oriented design. PyMEL builds on the cmds module by organizing many of its commands into a class hierarchy, and by customizing them to operate in a more succinct and intuitive way. ======================================= Special Thanks ======================================= Special thanks to those studios with the foresight to support an open-source project of this nature: Luma Pictures, Attitude Studio, and ImageMovers Digital. """ __versiontuple__ = (1, 2, 0) __version_suffix__ = 'a1' __version__ = '.'.join(str(x) for x in __versiontuple__) + __version_suffix__ __authors__ = ['Chad Dombrova', 'Paul Molodowitch', 'Olivier Renouard', 'Ofer Koren'] import sys assert sys.version_info > (2, 7), ("pymel version %s is compatible with Maya2016/python2.7 or later" % __version__)
37.411765
116
0.676887
ed1acc095f46eeb713b4bbe4bbc113d4ca38760c
399
py
Python
setup.py
rlbellaire/ActT
b6e936e5037c5f92ad1c281e2bf3700bf91aea42
[ "BSD-3-Clause" ]
2
2020-01-24T20:20:02.000Z
2021-09-25T03:32:17.000Z
setup.py
rlbellaire/ActT
b6e936e5037c5f92ad1c281e2bf3700bf91aea42
[ "BSD-3-Clause" ]
1
2020-11-16T17:08:08.000Z
2020-11-16T17:08:08.000Z
setup.py
rlbellaire/ActT
b6e936e5037c5f92ad1c281e2bf3700bf91aea42
[ "BSD-3-Clause" ]
1
2020-11-16T16:58:39.000Z
2020-11-16T16:58:39.000Z
from setuptools import find_packages, setup setup(name='ActT', version='0.6', description='Active Testing', url='', author='', author_email='none', license='BSD', packages=find_packages(), install_requires=[ 'numpy', 'pandas', 'matplotlib','scipy','scikit-learn','opencv-python', 'statswag','tensorflow' ], zip_safe=True)
24.9375
79
0.588972
ed1aeb45638b0f4e22adf71d2445a7c3b1908ff3
3,121
py
Python
Fusion/deltat.py
coylen/pySG
6af1b8387c256f8898e2198c635c8e4b72ec3942
[ "MIT" ]
264
2015-10-07T19:31:15.000Z
2022-03-31T23:34:59.000Z
deltat.py
CharlesAO/micropython-fusion
fe72a6870357c8f9b1cae78b98564412382943d9
[ "MIT" ]
14
2015-11-13T02:40:30.000Z
2022-01-22T10:44:48.000Z
deltat.py
CharlesAO/micropython-fusion
fe72a6870357c8f9b1cae78b98564412382943d9
[ "MIT" ]
75
2015-12-12T00:26:28.000Z
2022-03-23T13:32:30.000Z
# deltat.py time difference calculation for sensor fusion # Released under the MIT License (MIT) # Copyright (c) 2018 Peter Hinch # Provides TimeDiff function and DeltaT class. # The following notes cover special cases. Where the device performing fusion # is linked to the IMU and is running MicroPython no special treatment is # needed. # The special cases are: # 1. Device connected to the IMU is linked to a separate platform doing fusion. # 2. Either or both are not running MicroPython. # If the device providing the vectors is not running on MicroPython the user # must supply timestamps and a function capable of differencing these. The # function is passed to the Fusion constructor and the timestamp is provided # along with the vector, being the time when the vector was acquired. # If the device providing the vectors is running MicroPython but fusion is # being performed on a device which is not, the user must provide their own # implementation of ticks_diff which accounts for MicroPython rollover and # must supply the returned ticks_us() values as a timestamp. # Under MicroPython TimeDiff(start, end) uses time.ticks_diff. # A DeltaT instance, called with function call syntax, returns a time # difference from the previous call as a float value. Units seconds. # If running under MicroPython and no time differencing function is supplied # to the Fusion constructor it uses time.ticks_us as its time source and a # default timediff function using time.ticks_diff() with a division by 1e6. # If time differencing function is supplied a timestamp must be passsed as an # arg to instance calls of Fusion.update() or Fusion.update_nomag(). In the # async version the user supplied read_coro() must return a timestamp with the # vector. # On 1st pass dt evidently can't be computed. A notional value of 100s is # returned. The Madgwick algorithm takes seconds to stabilise. try: import utime as time except ImportError: import time is_micropython = hasattr(time, 'ticks_diff')
41.065789
97
0.707786
ed1b14ee7367d8cae14cb322f5cd81df68be3c15
11,336
py
Python
colour/models/rgb/datasets/sony.py
wenh06/colour
445fdad2711ae39c95b4375166905568d24a95f4
[ "BSD-3-Clause" ]
1
2021-09-09T01:53:40.000Z
2021-09-09T01:53:40.000Z
colour/models/rgb/datasets/sony.py
wenh06/colour
445fdad2711ae39c95b4375166905568d24a95f4
[ "BSD-3-Clause" ]
null
null
null
colour/models/rgb/datasets/sony.py
wenh06/colour
445fdad2711ae39c95b4375166905568d24a95f4
[ "BSD-3-Clause" ]
null
null
null
# -*- coding: utf-8 -*- """ Sony Colourspaces ================= Defines the *Sony* colourspaces: - :attr:`colour.models.RGB_COLOURSPACE_S_GAMUT`. - :attr:`colour.models.RGB_COLOURSPACE_S_GAMUT3`. - :attr:`colour.models.RGB_COLOURSPACE_S_GAMUT3_CINE`. - :attr:`colour.models.RGB_COLOURSPACE_VENICE_S_GAMUT3`. - :attr:`colour.models.RGB_COLOURSPACE_VENICE_S_GAMUT3_CINE`. Notes ----- - The *Venice S-Gamut3* and *Venice S-Gamut3.Cine* primaries and whitepoint were derived with the following `Google Colab Notebook \ <https://colab.research.google.com/drive/1ZGTij7jT8eZRMPUkyWlv_x5ix5Q5twMB>`__. References ---------- - :cite:`Gaggioni` : Gaggioni, H., Dhanendra, P., Yamashita, J., Kawada, N., Endo, K., & Clark, C. (n.d.). S-Log: A new LUT for digital production mastering and interchange applications (Vol. 709, pp. 1-13). http://pro.sony.com/bbsccms/assets/files/mkt/cinema/solutions/slog_manual.pdf - :cite:`SonyCorporation` : Sony Corporation. (n.d.). S-Log Whitepaper (pp. 1-17). http://www.theodoropoulos.info/attachments/076_on%20S-Log.pdf - :cite:`SonyCorporationd` : Sony Corporation. (n.d.). Technical Summary for S-Gamut3.Cine/S-Log3 and S-Gamut3/S-Log3 (pp. 1-7). http://community.sony.com/sony/attachments/sony/\ large-sensor-camera-F5-F55/12359/2/\ TechnicalSummary_for_S-Gamut3Cine_S-Gamut3_S-Log3_V1_00.pdf - :cite:`SonyCorporatione` : Sony Corporation. (n.d.). S-Gamut3_S-Gamut3Cine_Matrix.xlsx. https://community.sony.com/sony/attachments/sony/\ large-sensor-camera-F5-F55/12359/3/S-Gamut3_S-Gamut3Cine_Matrix.xlsx - :cite:`SonyElectronicsCorporation2020` : Sony Electronics Corporation. (2020). IDT.Sony.Venice_SLog3_SGamut3.ctl. https://github.com/ampas/\ aces-dev/blob/710ecbe52c87ce9f4a1e02c8ddf7ea0d6b611cc8/transforms/ctl/idt/\ vendorSupplied/sony/IDT.Sony.Venice_SLog3_SGamut3.ctl - :cite:`SonyElectronicsCorporation2020a` : Sony Electronics Corporation. (2020). IDT.Sony.Venice_SLog3_SGamut3Cine.ctl. https://github.com/ampas/\ aces-dev/blob/710ecbe52c87ce9f4a1e02c8ddf7ea0d6b611cc8/transforms/ctl/idt/\ vendorSupplied/sony/IDT.Sony.Venice_SLog3_SGamut3Cine.ctl """ from __future__ import division, unicode_literals import numpy as np from colour.colorimetry import CCS_ILLUMINANTS from colour.models.rgb import (RGB_Colourspace, log_encoding_SLog2, log_decoding_SLog2, log_encoding_SLog3, log_decoding_SLog3, normalised_primary_matrix) __author__ = 'Colour Developers' __copyright__ = 'Copyright (C) 2013-2020 - Colour Developers' __license__ = 'New BSD License - https://opensource.org/licenses/BSD-3-Clause' __maintainer__ = 'Colour Developers' __email__ = '[email protected]' __status__ = 'Production' __all__ = [ 'PRIMARIES_S_GAMUT', 'WHITEPOINT_NAME_S_GAMUT', 'CCS_WHITEPOINT_S_GAMUT', 'MATRIX_S_GAMUT_TO_XYZ', 'MATRIX_XYZ_TO_S_GAMUT', 'RGB_COLOURSPACE_S_GAMUT', 'PRIMARIES_S_GAMUT3', 'WHITEPOINT_NAME_S_GAMUT3', 'CCS_WHITEPOINT_S_GAMUT3', 'MATRIX_S_GAMUT3_TO_XYZ', 'MATRIX_XYZ_TO_S_GAMUT3', 'RGB_COLOURSPACE_S_GAMUT3', 'PRIMARIES_S_GAMUT3_CINE', 'WHITEPOINT_NAME_S_GAMUT3_CINE', 'CCS_WHITEPOINT_S_GAMUT3_CINE', 'MATRIX_S_GAMUT3_CINE_TO_XYZ', 'MATRIX_XYZ_TO_S_GAMUT3_CINE', 'RGB_COLOURSPACE_S_GAMUT3_CINE', 'PRIMARIES_VENICE_S_GAMUT3', 'WHITEPOINT_NAME_VENICE_S_GAMUT3', 'CCS_WHITEPOINT_VENICE_S_GAMUT3', 'MATRIX_VENICE_S_GAMUT3_TO_XYZ', 'MATRIX_XYZ_TO_VENICE_S_GAMUT3', 'RGB_COLOURSPACE_VENICE_S_GAMUT3', 'PRIMARIES_VENICE_S_GAMUT3_CINE', 'WHITEPOINT_NAME_VENICE_S_GAMUT3_CINE', 'CCS_WHITEPOINT_VENICE_S_GAMUT3_CINE', 'MATRIX_VENICE_S_GAMUT3_CINE_TO_XYZ', 'MATRIX_XYZ_TO_VENICE_S_GAMUT3_CINE', 'RGB_COLOURSPACE_VENICE_S_GAMUT3_CINE' ] PRIMARIES_S_GAMUT = np.array([ [0.7300, 0.2800], [0.1400, 0.8550], [0.1000, -0.0500], ]) """ *S-Gamut* colourspace primaries. PRIMARIES_S_GAMUT : ndarray, (3, 2) """ WHITEPOINT_NAME_S_GAMUT = 'D65' """ *S-Gamut* colourspace whitepoint name. WHITEPOINT_NAME_S_GAMUT : unicode """ CCS_WHITEPOINT_S_GAMUT = (CCS_ILLUMINANTS[ 'CIE 1931 2 Degree Standard Observer'][WHITEPOINT_NAME_S_GAMUT]) """ *S-Gamut* colourspace whitepoint chromaticity coordinates. CCS_WHITEPOINT_S_GAMUT : ndarray """ MATRIX_S_GAMUT_TO_XYZ = np.array([ [0.7064827132, 0.1288010498, 0.1151721641], [0.2709796708, 0.7866064112, -0.0575860820], [-0.0096778454, 0.0046000375, 1.0941355587], ]) """ *S-Gamut* colourspace to *CIE XYZ* tristimulus values matrix. MATRIX_S_GAMUT_TO_XYZ : array_like, (3, 3) """ MATRIX_XYZ_TO_S_GAMUT = np.array([ [1.5073998991, -0.2458221374, -0.1716116808], [-0.5181517271, 1.3553912409, 0.1258786682], [0.0155116982, -0.0078727714, 0.9119163656], ]) """ *CIE XYZ* tristimulus values to *S-Gamut* colourspace matrix. MATRIX_XYZ_TO_S_GAMUT : array_like, (3, 3) """ RGB_COLOURSPACE_S_GAMUT = RGB_Colourspace( 'S-Gamut', PRIMARIES_S_GAMUT, CCS_WHITEPOINT_S_GAMUT, WHITEPOINT_NAME_S_GAMUT, MATRIX_S_GAMUT_TO_XYZ, MATRIX_XYZ_TO_S_GAMUT, log_encoding_SLog2, log_decoding_SLog2, ) RGB_COLOURSPACE_S_GAMUT.__doc__ = """ *S-Gamut* colourspace. References ---------- :cite:`Gaggioni`, :cite:`SonyCorporation` RGB_COLOURSPACE_S_GAMUT : RGB_Colourspace """ PRIMARIES_S_GAMUT3 = PRIMARIES_S_GAMUT """ *S-Gamut3* colourspace primaries. PRIMARIES_S_GAMUT3 : ndarray, (3, 2) """ WHITEPOINT_NAME_S_GAMUT3 = WHITEPOINT_NAME_S_GAMUT """ *S-Gamut3* colourspace whitepoint name. WHITEPOINT_NAME_S_GAMUT3 : unicode """ CCS_WHITEPOINT_S_GAMUT3 = CCS_WHITEPOINT_S_GAMUT """ *S-Gamut3* colourspace whitepoint chromaticity coordinates. CCS_WHITEPOINT_S_GAMUT3 : ndarray """ MATRIX_S_GAMUT3_TO_XYZ = MATRIX_S_GAMUT_TO_XYZ """ *S-Gamut3* colourspace to *CIE XYZ* tristimulus values matrix. MATRIX_S_GAMUT3_TO_XYZ : array_like, (3, 3) """ MATRIX_XYZ_TO_S_GAMUT3 = MATRIX_XYZ_TO_S_GAMUT """ *CIE XYZ* tristimulus values to *S-Gamut3* colourspace matrix. MATRIX_XYZ_TO_S_GAMUT3 : array_like, (3, 3) """ RGB_COLOURSPACE_S_GAMUT3 = RGB_Colourspace( 'S-Gamut3', PRIMARIES_S_GAMUT3, CCS_WHITEPOINT_S_GAMUT3, WHITEPOINT_NAME_S_GAMUT3, MATRIX_S_GAMUT3_TO_XYZ, MATRIX_XYZ_TO_S_GAMUT3, log_encoding_SLog3, log_decoding_SLog3, ) RGB_COLOURSPACE_S_GAMUT3.__doc__ = """ *S-Gamut3* colourspace. References ---------- :cite:`SonyCorporationd` RGB_COLOURSPACE_S_GAMUT3 : RGB_Colourspace """ PRIMARIES_S_GAMUT3_CINE = np.array([ [0.76600, 0.27500], [0.22500, 0.80000], [0.08900, -0.08700], ]) """ *S-Gamut3.Cine* colourspace primaries. PRIMARIES_S_GAMUT3_CINE : ndarray, (3, 2) """ WHITEPOINT_NAME_S_GAMUT3_CINE = WHITEPOINT_NAME_S_GAMUT """ *S-Gamut3.Cine* colourspace whitepoint name. WHITEPOINT_NAME_S_GAMUT3_CINE : unicode """ CCS_WHITEPOINT_S_GAMUT3_CINE = CCS_WHITEPOINT_S_GAMUT """ *S-Gamut3.Cine* colourspace whitepoint chromaticity coordinates. CCS_WHITEPOINT_S_GAMUT3_CINE : ndarray """ MATRIX_S_GAMUT3_CINE_TO_XYZ = np.array([ [0.5990839208, 0.2489255161, 0.1024464902], [0.2150758201, 0.8850685017, -0.1001443219], [-0.0320658495, -0.0276583907, 1.1487819910], ]) """ *S-Gamut3.Cine* colourspace to *CIE XYZ* tristimulus values matrix. MATRIX_S_GAMUT3_CINE_TO_XYZ : array_like, (3, 3) """ MATRIX_XYZ_TO_S_GAMUT3_CINE = np.array([ [1.8467789693, -0.5259861230, -0.2105452114], [-0.4441532629, 1.2594429028, 0.1493999729], [0.0408554212, 0.0156408893, 0.8682072487], ]) """ *CIE XYZ* tristimulus values to *S-Gamut3.Cine* colourspace matrix. MATRIX_XYZ_TO_S_GAMUT3_CINE : array_like, (3, 3) """ RGB_COLOURSPACE_S_GAMUT3_CINE = RGB_Colourspace( 'S-Gamut3.Cine', PRIMARIES_S_GAMUT3_CINE, CCS_WHITEPOINT_S_GAMUT3_CINE, WHITEPOINT_NAME_S_GAMUT3_CINE, MATRIX_S_GAMUT3_CINE_TO_XYZ, MATRIX_XYZ_TO_S_GAMUT3_CINE, log_encoding_SLog3, log_decoding_SLog3, ) RGB_COLOURSPACE_S_GAMUT3_CINE.__doc__ = """ *S-Gamut3.Cine* colourspace. References ---------- :cite:`SonyCorporatione` RGB_COLOURSPACE_S_GAMUT3_CINE : RGB_Colourspace """ PRIMARIES_VENICE_S_GAMUT3 = np.array([ [0.740464264304292, 0.279364374750660], [0.089241145423286, 0.893809528608105], [0.110488236673827, -0.052579333080476], ]) """ *Venice S-Gamut3* colourspace primaries. PRIMARIES_VENICE_S_GAMUT3 : ndarray, (3, 2) """ WHITEPOINT_NAME_VENICE_S_GAMUT3 = WHITEPOINT_NAME_S_GAMUT """ *Venice S-Gamut3* colourspace whitepoint name. WHITEPOINT_NAME_VENICE_S_GAMUT3 : unicode """ CCS_WHITEPOINT_VENICE_S_GAMUT3 = CCS_WHITEPOINT_S_GAMUT """ *Venice S-Gamut3* colourspace whitepoint chromaticity coordinates. CCS_WHITEPOINT_VENICE_S_GAMUT3 : ndarray """ MATRIX_VENICE_S_GAMUT3_TO_XYZ = normalised_primary_matrix( PRIMARIES_VENICE_S_GAMUT3, CCS_WHITEPOINT_VENICE_S_GAMUT3) """ *Venice S-Gamut3* colourspace to *CIE XYZ* tristimulus values matrix. MATRIX_VENICE_S_GAMUT3_TO_XYZ : array_like, (3, 3) """ MATRIX_XYZ_TO_VENICE_S_GAMUT3 = np.linalg.inv(MATRIX_VENICE_S_GAMUT3_TO_XYZ) """ *CIE XYZ* tristimulus values to *Venice S-Gamut3* colourspace matrix. MATRIX_XYZ_TO_VENICE_S_GAMUT3 : array_like, (3, 3) """ RGB_COLOURSPACE_VENICE_S_GAMUT3 = RGB_Colourspace( 'Venice S-Gamut3', PRIMARIES_VENICE_S_GAMUT3, CCS_WHITEPOINT_VENICE_S_GAMUT3, WHITEPOINT_NAME_VENICE_S_GAMUT3, MATRIX_VENICE_S_GAMUT3_TO_XYZ, MATRIX_XYZ_TO_VENICE_S_GAMUT3, log_encoding_SLog3, log_decoding_SLog3, ) RGB_COLOURSPACE_VENICE_S_GAMUT3.__doc__ = """ *Venice S-Gamut3* colourspace. References ---------- :cite:`SonyElectronicsCorporation2020` RGB_COLOURSPACE_VENICE_S_GAMUT3 : RGB_Colourspace """ PRIMARIES_VENICE_S_GAMUT3_CINE = np.array([ [0.775901871567345, 0.274502392854799], [0.188682902773355, 0.828684937020288], [0.101337382499301, -0.089187517306263], ]) """ *Venice S-Gamut3.Cine* colourspace primaries. PRIMARIES_VENICE_S_GAMUT3_CINE : ndarray, (3, 2) """ WHITEPOINT_NAME_VENICE_S_GAMUT3_CINE = WHITEPOINT_NAME_S_GAMUT """ *Venice S-Gamut3.Cine* colourspace whitepoint name. WHITEPOINT_NAME_VENICE_S_GAMUT3_CINE : unicode """ CCS_WHITEPOINT_VENICE_S_GAMUT3_CINE = CCS_WHITEPOINT_S_GAMUT """ *Venice S-Gamut3.Cine* colourspace whitepoint chromaticity coordinates. CCS_WHITEPOINT_VENICE_S_GAMUT3_CINE : ndarray """ MATRIX_VENICE_S_GAMUT3_CINE_TO_XYZ = normalised_primary_matrix( PRIMARIES_VENICE_S_GAMUT3_CINE, CCS_WHITEPOINT_VENICE_S_GAMUT3_CINE) """ *Venice S-Gamut3.Cine* colourspace to *CIE XYZ* tristimulus values matrix. MATRIX_VENICE_S_GAMUT3_CINE_TO_XYZ : array_like, (3, 3) """ MATRIX_XYZ_TO_VENICE_S_GAMUT3_CINE = np.linalg.inv( MATRIX_VENICE_S_GAMUT3_CINE_TO_XYZ) """ *CIE XYZ* tristimulus values to *Venice S-Gamut3.Cine* colourspace matrix. MATRIX_XYZ_TO_VENICE_S_GAMUT3_CINE : array_like, (3, 3) """ RGB_COLOURSPACE_VENICE_S_GAMUT3_CINE = RGB_Colourspace( 'Venice S-Gamut3.Cine', PRIMARIES_VENICE_S_GAMUT3_CINE, CCS_WHITEPOINT_VENICE_S_GAMUT3_CINE, WHITEPOINT_NAME_VENICE_S_GAMUT3_CINE, MATRIX_VENICE_S_GAMUT3_CINE_TO_XYZ, MATRIX_XYZ_TO_VENICE_S_GAMUT3_CINE, log_encoding_SLog3, log_decoding_SLog3, ) RGB_COLOURSPACE_VENICE_S_GAMUT3_CINE.__doc__ = """ *Venice S-Gamut3.Cine* colourspace. References ---------- :cite:`SonyElectronicsCorporation2020a` RGB_COLOURSPACE_VENICE_S_GAMUT3_CINE : RGB_Colourspace """
28.918367
81
0.763585
ed1b3de2cf4ee0d6a94657c3843653ea66d9ad27
723
py
Python
network.py
QiaoZhongzheng/EWC-sample-PMNIST
cd5e10b401582ab7f0dcd7a1e38aed6552192484
[ "MIT" ]
null
null
null
network.py
QiaoZhongzheng/EWC-sample-PMNIST
cd5e10b401582ab7f0dcd7a1e38aed6552192484
[ "MIT" ]
null
null
null
network.py
QiaoZhongzheng/EWC-sample-PMNIST
cd5e10b401582ab7f0dcd7a1e38aed6552192484
[ "MIT" ]
null
null
null
# -*- coding: UTF-8 -*- '''================================================= @Project -> File EWC -> network @IDE PyCharm @Author Qiao Zhongzheng @Date 2021/6/23 20:28 @Desc ==================================================''' from tensorflow.keras import Model from tensorflow.keras.layers import Dense, Conv2D,LeakyReLU,MaxPool2D,Flatten,Input
36.15
83
0.562932
ed1b9e6a531c569f1a1cfb6234bd90d5b845bbe9
1,909
py
Python
src/quanguru/classes/exceptions.py
Qfabiolous/QuanGuru
285ca44ae857cc61337f73ea2eb600f485a09e32
[ "BSD-3-Clause" ]
null
null
null
src/quanguru/classes/exceptions.py
Qfabiolous/QuanGuru
285ca44ae857cc61337f73ea2eb600f485a09e32
[ "BSD-3-Clause" ]
null
null
null
src/quanguru/classes/exceptions.py
Qfabiolous/QuanGuru
285ca44ae857cc61337f73ea2eb600f485a09e32
[ "BSD-3-Clause" ]
null
null
null
# TODO turn prints into actual error raise, they are print for testing
40.617021
92
0.600838
ed1c74c77f9a61e232ea9a2a837cdc1274993efb
6,997
py
Python
reagent/gym/tests/test_gym.py
alexnikulkov/ReAgent
e404c5772ea4118105c2eb136ca96ad5ca8e01db
[ "BSD-3-Clause" ]
null
null
null
reagent/gym/tests/test_gym.py
alexnikulkov/ReAgent
e404c5772ea4118105c2eb136ca96ad5ca8e01db
[ "BSD-3-Clause" ]
null
null
null
reagent/gym/tests/test_gym.py
alexnikulkov/ReAgent
e404c5772ea4118105c2eb136ca96ad5ca8e01db
[ "BSD-3-Clause" ]
null
null
null
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. All rights reserved. import logging import os import pprint import unittest import numpy as np # pyre-fixme[21]: Could not find module `pytest`. import pytest import torch from parameterized import parameterized from reagent.core.types import RewardOptions from reagent.gym.agents.agent import Agent from reagent.gym.agents.post_step import train_with_replay_buffer_post_step from reagent.gym.envs.union import Env__Union from reagent.gym.runners.gymrunner import evaluate_for_n_episodes, run_episode from reagent.gym.utils import build_normalizer, fill_replay_buffer from reagent.model_managers.model_manager import ModelManager from reagent.model_managers.union import ModelManager__Union from reagent.replay_memory.circular_replay_buffer import ReplayBuffer from reagent.tensorboardX import summary_writer_context from reagent.test.base.horizon_test_base import HorizonTestBase from torch.utils.tensorboard import SummaryWriter try: # Use internal runner or OSS otherwise from reagent.runners.fb.fb_batch_runner import FbBatchRunner as BatchRunner except ImportError: from reagent.runners.oss_batch_runner import OssBatchRunner as BatchRunner # for seeding the environment SEED = 0 logger = logging.getLogger(__name__) logger.setLevel(logging.INFO) """ Put on-policy gym tests here in the format (test name, path to yaml config). Format path to be: "configs/<env_name>/<model_name>_<env_name>_online.yaml." NOTE: These tests should ideally finish quickly (within 10 minutes) since they are unit tests which are run many times. """ GYM_TESTS = [ ("Discrete DQN Cartpole", "configs/cartpole/discrete_dqn_cartpole_online.yaml"), ("Discrete C51 Cartpole", "configs/cartpole/discrete_c51_cartpole_online.yaml"), ("Discrete QR Cartpole", "configs/cartpole/discrete_qr_cartpole_online.yaml"), ( "Discrete DQN Open Gridworld", "configs/open_gridworld/discrete_dqn_open_gridworld.yaml", ), ("SAC Pendulum", "configs/pendulum/sac_pendulum_online.yaml"), ("TD3 Pendulum", "configs/pendulum/td3_pendulum_online.yaml"), ("Parametric DQN Cartpole", "configs/cartpole/parametric_dqn_cartpole_online.yaml"), ( "Parametric SARSA Cartpole", "configs/cartpole/parametric_sarsa_cartpole_online.yaml", ), ( "Sparse DQN Changing Arms", "configs/sparse/discrete_dqn_changing_arms_online.yaml", ), ("SlateQ RecSim", "configs/recsim/slate_q_recsim_online.yaml"), ("PossibleActionsMask DQN", "configs/functionality/dqn_possible_actions_mask.yaml"), ] curr_dir = os.path.dirname(__file__) if __name__ == "__main__": unittest.main()
36.253886
88
0.711019
ed1ce2b7ae05d6c1c0bdabe48547eeeb53fe25e1
1,949
py
Python
src/deep_dialog/usersims/usersim.py
CommissarSilver/TC-Bot
4579706a18028b5da9b8a7807fb2e2d4043dcaf8
[ "MIT" ]
1
2021-05-29T01:32:49.000Z
2021-05-29T01:32:49.000Z
D3Q/src/deep_dialog/usersims/usersim.py
Yuqing2018/D3Q_Python3
2a9918494e3f0ed18f9b7560b1e6f13119fbee91
[ "MIT" ]
null
null
null
D3Q/src/deep_dialog/usersims/usersim.py
Yuqing2018/D3Q_Python3
2a9918494e3f0ed18f9b7560b1e6f13119fbee91
[ "MIT" ]
null
null
null
""" Created on June 7, 2016 a rule-based user simulator @author: xiul, t-zalipt """ import random
30.453125
99
0.606978
ed1dd7ccddd4e92e0775574a201cc45ae9f018c0
57
py
Python
kendall_w/__init__.py
ugolbck/KendallW
ace7c68d6c3c2dfcf6b3ee5fb3817240ed050c9b
[ "BSD-3-Clause" ]
4
2020-03-28T13:42:58.000Z
2021-04-05T12:45:25.000Z
kendall_w/__init__.py
ugolbck/KendallW
ace7c68d6c3c2dfcf6b3ee5fb3817240ed050c9b
[ "BSD-3-Clause" ]
null
null
null
kendall_w/__init__.py
ugolbck/KendallW
ace7c68d6c3c2dfcf6b3ee5fb3817240ed050c9b
[ "BSD-3-Clause" ]
2
2020-08-05T03:36:43.000Z
2020-09-09T00:33:06.000Z
from .kendall_w import compute_w __version__ = (1, 0, 0)
19
32
0.736842
ed1e65bf06947a5b605eebf0c5bd1f30e38649c8
142
py
Python
admin.py
nielsrolf/django-error-logs
4e516e021d34e255f1282c98bffa53a265c48bab
[ "Apache-2.0" ]
null
null
null
admin.py
nielsrolf/django-error-logs
4e516e021d34e255f1282c98bffa53a265c48bab
[ "Apache-2.0" ]
null
null
null
admin.py
nielsrolf/django-error-logs
4e516e021d34e255f1282c98bffa53a265c48bab
[ "Apache-2.0" ]
null
null
null
from django.contrib import admin from .models import * # Register your models here. admin.site.register(ErrorGroup) admin.site.register(Error)
28.4
32
0.809859
ed1f38ec9a444c4d387d2b1c3bbd4a46cc3895ba
2,132
py
Python
mcpython/common/block/ISlab.py
mcpython4-coding/core
e4c4f59dab68c90e2028db3add2e5065116bf4a6
[ "CC0-1.0", "MIT" ]
2
2019-11-02T05:26:11.000Z
2019-11-03T08:52:18.000Z
mcpython/common/block/ISlab.py
mcpython4-coding/core
e4c4f59dab68c90e2028db3add2e5065116bf4a6
[ "CC0-1.0", "MIT" ]
25
2019-11-02T05:24:29.000Z
2022-02-09T14:09:08.000Z
mcpython/common/block/ISlab.py
mcpython4-coding/core
e4c4f59dab68c90e2028db3add2e5065116bf4a6
[ "CC0-1.0", "MIT" ]
5
2019-11-09T05:36:06.000Z
2021-11-28T13:07:08.000Z
""" mcpython - a minecraft clone written in python licenced under the MIT-licence (https://github.com/mcpython4-coding/core) Contributors: uuk, xkcdjerry (inactive) Based on the game of fogleman (https://github.com/fogleman/Minecraft), licenced under the MIT-licence Original game "minecraft" by Mojang Studios (www.minecraft.net), licenced under the EULA (https://account.mojang.com/documents/minecraft_eula) Mod loader inspired by "Minecraft Forge" (https://github.com/MinecraftForge/MinecraftForge) and similar This project is not official by mojang and does not relate to it. """ import mcpython.common.block.AbstractBlock import mcpython.engine.physics.AxisAlignedBoundingBox import mcpython.util.enums from mcpython.util.enums import SlabModes BBOX_DICT = { SlabModes.TOP: mcpython.engine.physics.AxisAlignedBoundingBox.AxisAlignedBoundingBox( (1, 0.5, 1), (0, 0.5, 0) ), SlabModes.BOTTOM: mcpython.engine.physics.AxisAlignedBoundingBox.AxisAlignedBoundingBox( (1, 0.5, 1) ), SlabModes.DOUBLE: mcpython.engine.physics.AxisAlignedBoundingBox.FULL_BLOCK_BOUNDING_BOX, }
32.30303
103
0.701689
ed207a7611696af8395d372e4e8d01f42d7c6467
25,419
py
Python
CourseOutlineBackend/courseoutline/serializers.py
stancsz/web-development-project-ensf-607
03b11df4971afd4f27fee54a1800a40d4cc10240
[ "Apache-2.0" ]
null
null
null
CourseOutlineBackend/courseoutline/serializers.py
stancsz/web-development-project-ensf-607
03b11df4971afd4f27fee54a1800a40d4cc10240
[ "Apache-2.0" ]
null
null
null
CourseOutlineBackend/courseoutline/serializers.py
stancsz/web-development-project-ensf-607
03b11df4971afd4f27fee54a1800a40d4cc10240
[ "Apache-2.0" ]
null
null
null
from rest_framework import serializers from .models import *
42.649329
108
0.66824
ed2132797a348954493a3cea6dfb9bfa857770a6
209
py
Python
tools/math_tools.py
oliverscheer/python-pytest-ci
d67c379440d1873a753c47e7031bb9564d96de21
[ "MIT" ]
null
null
null
tools/math_tools.py
oliverscheer/python-pytest-ci
d67c379440d1873a753c47e7031bb9564d96de21
[ "MIT" ]
1
2021-05-26T19:58:09.000Z
2021-05-26T19:58:09.000Z
tools/math_tools.py
oliverscheer/python-pytest-ci
d67c379440d1873a753c47e7031bb9564d96de21
[ "MIT" ]
null
null
null
""" some math tools """
17.416667
36
0.444976
ed2176e9a9c0aa2fe888859654d1422302e6cce3
325
py
Python
hackerrank/Algorithms/Correctness and the Loop Invariant/solution.py
ATrain951/01.python-com_Qproject
c164dd093954d006538020bdf2e59e716b24d67c
[ "MIT" ]
4
2020-07-24T01:59:50.000Z
2021-07-24T15:14:08.000Z
hackerrank/Algorithms/Correctness and the Loop Invariant/solution.py
ATrain951/01.python-com_Qproject
c164dd093954d006538020bdf2e59e716b24d67c
[ "MIT" ]
null
null
null
hackerrank/Algorithms/Correctness and the Loop Invariant/solution.py
ATrain951/01.python-com_Qproject
c164dd093954d006538020bdf2e59e716b24d67c
[ "MIT" ]
null
null
null
m = int(input().strip()) ar = [int(i) for i in input().strip().split()] insertion_sort(ar) print(" ".join(map(str, ar)))
21.666667
46
0.443077
ed2203dc728c9eb06bb608004ab33922f3baa3bc
3,279
py
Python
cvp_rest_api_examples/cvpLabelAdd.py
kakkotetsu/CVP-Scripts
4075eaf9987be6220a7bed188dcee11f56a7bf35
[ "Apache-2.0" ]
8
2019-06-04T14:22:45.000Z
2020-10-02T16:56:43.000Z
cvp_rest_api_examples/cvpLabelAdd.py
kakkotetsu/CVP-Scripts
4075eaf9987be6220a7bed188dcee11f56a7bf35
[ "Apache-2.0" ]
1
2021-04-16T00:43:00.000Z
2021-04-16T00:43:00.000Z
cvp_rest_api_examples/cvpLabelAdd.py
kakkotetsu/CVP-Scripts
4075eaf9987be6220a7bed188dcee11f56a7bf35
[ "Apache-2.0" ]
4
2020-05-13T14:03:13.000Z
2021-08-10T14:47:23.000Z
#!/usrb/bin/env python # Copyright (c) 2019, Arista Networks, Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # - Redistributions of source code must retain the above copyright notice, # this list of conditions and the following disclaimer. # - Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # - Neither the name of Arista Networks nor the names of its # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ARISTA NETWORKS # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN # IF NOT ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #!/usr/bin/env python import requests import json import argparse import urllib3 if __name__ == '__main__': urllib3.disable_warnings() cvpName, loginInfo = parseArgs() cookies = authenticate( cvpName, loginInfo ).cookies #print json.loads(getCvpInfo( cvpName ).text) #print getCvpInfo( cvpName ).json() print 'getCvpInfo:' print json.dumps(getCvpInfo( cvpName ).json(), indent=2) # ADD DEVICE TO LABEL # label = "{ tagType: tagValue }" label = "mlag:mlagNY" device = "de:ad:be:ef:ca:fe" print 'addDeviceToLabel:', label, device print json.dumps(addDeviceToLabel( cvpName, label, device ).json(), indent=2)
42.584416
84
0.720647
ed22f71576a11a3b9302f73902c8de9c8f96d4dd
1,244
py
Python
frontends/pytorch/python/torch_mlir_torchscript_e2e_test_configs/torchscript.py
raikonenfnu/mlir-npcomp
29e1b2fe89848d58c9bc07e7df7ce651850a5244
[ "Apache-2.0" ]
null
null
null
frontends/pytorch/python/torch_mlir_torchscript_e2e_test_configs/torchscript.py
raikonenfnu/mlir-npcomp
29e1b2fe89848d58c9bc07e7df7ce651850a5244
[ "Apache-2.0" ]
null
null
null
frontends/pytorch/python/torch_mlir_torchscript_e2e_test_configs/torchscript.py
raikonenfnu/mlir-npcomp
29e1b2fe89848d58c9bc07e7df7ce651850a5244
[ "Apache-2.0" ]
null
null
null
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception import copy from typing import Any import torch from torch_mlir_torchscript.e2e_test.framework import TestConfig, Trace, TraceItem
34.555556
82
0.644695
ed23166702dcea8d3e5e73f8ed58f0971f2a45b0
2,495
py
Python
app/balltracking/pubnubpython/pnconfiguration.py
gdmgent-1718-wot/interactive-wall
af7ecff126b1ee9c85c270fe13d1338aa790c34b
[ "Apache-2.0" ]
null
null
null
app/balltracking/pubnubpython/pnconfiguration.py
gdmgent-1718-wot/interactive-wall
af7ecff126b1ee9c85c270fe13d1338aa790c34b
[ "Apache-2.0" ]
null
null
null
app/balltracking/pubnubpython/pnconfiguration.py
gdmgent-1718-wot/interactive-wall
af7ecff126b1ee9c85c270fe13d1338aa790c34b
[ "Apache-2.0" ]
null
null
null
from .enums import PNHeartbeatNotificationOptions, PNReconnectionPolicy from . import utils
29.352941
85
0.666132
ed2393de8d1d80d0e5b9c6610dd11fbf42e62a83
18,305
py
Python
tests/scripts/thread-cert/thread_cert.py
lmaciejonczyk/openthread
9ca79ddd9af3d4e3f78cb6e611a3117a71b2198c
[ "BSD-3-Clause" ]
null
null
null
tests/scripts/thread-cert/thread_cert.py
lmaciejonczyk/openthread
9ca79ddd9af3d4e3f78cb6e611a3117a71b2198c
[ "BSD-3-Clause" ]
null
null
null
tests/scripts/thread-cert/thread_cert.py
lmaciejonczyk/openthread
9ca79ddd9af3d4e3f78cb6e611a3117a71b2198c
[ "BSD-3-Clause" ]
null
null
null
#!/usr/bin/env python3 # # Copyright (c) 2019, The OpenThread Authors. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. Neither the name of the copyright holder nor the # names of its contributors may be used to endorse or promote products # derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. # import json import logging import os import signal import subprocess import sys import time import traceback import unittest from typing import Optional, Callable import config import debug from node import Node, OtbrNode, HostNode from pktverify import utils as pvutils PACKET_VERIFICATION = int(os.getenv('PACKET_VERIFICATION', 0)) if PACKET_VERIFICATION: from pktverify.addrs import ExtAddr, EthAddr from pktverify.packet_verifier import PacketVerifier PORT_OFFSET = int(os.getenv('PORT_OFFSET', "0")) ENV_THREAD_VERSION = os.getenv('THREAD_VERSION', '1.1') DEFAULT_PARAMS = { 'is_mtd': False, 'is_bbr': False, 'is_otbr': False, 'is_host': False, 'mode': 'rdn', 'panid': 0xface, 'allowlist': None, 'version': ENV_THREAD_VERSION, } """Default configurations when creating nodes.""" EXTENDED_ADDRESS_BASE = 0x166e0a0000000000 """Extended address base to keep U/L bit 1. The value is borrowed from Thread Test Harness."""
36.536926
170
0.607648
ed242bad81da2f05250a803d492c40b86c9b59d3
1,770
py
Python
FaceMaskDetection with webcam.py
Anurag-Varma/facemask-detection
9ac681261e246e6ab1837c576d933dc7324e3a92
[ "MIT" ]
1
2021-07-13T09:16:12.000Z
2021-07-13T09:16:12.000Z
FaceMaskDetection with webcam.py
Anurag-Varma/facemask-detection
9ac681261e246e6ab1837c576d933dc7324e3a92
[ "MIT" ]
null
null
null
FaceMaskDetection with webcam.py
Anurag-Varma/facemask-detection
9ac681261e246e6ab1837c576d933dc7324e3a92
[ "MIT" ]
null
null
null
import cv2 import numpy as np from keras.models import model_from_json from keras.preprocessing.image import img_to_array #load model model = model_from_json(open("fer.json", "r").read()) #change the path accoring to files #load weights model.load_weights('fer.h5') #change the path accoring to files detection_model_path="C:/Users/panur/.spyder-py3/FaceMaskDetection/cascadeH5.xml" #change the path accoring to files face_detection = cv2.CascadeClassifier(detection_model_path) ret=1 flag=True cap = cv2.VideoCapture(0) #default 0 for webcam frameRate = cap.get(30) while(cap.isOpened()): ret, fm=cap.read() fm = cv2.resize(fm, (224, 224)) file = cv2.cvtColor(fm, cv2.COLOR_BGR2RGB) orig_frame = file frame = file faces = face_detection.detectMultiScale(frame,scaleFactor=1.1,minNeighbors=5,minSize=(30,30),flags=cv2.CASCADE_SCALE_IMAGE) if len(faces) : faces = sorted(faces, reverse=True,key=lambda x: (x[2] - x[0]) * (x[3] - x[1]))[0] (fX, fY, fW, fH) = faces roi = frame[fY:fY + fH, fX:fX + fW] roi = cv2.resize(roi, (48, 48),3) roi = frame.astype("float") / 255.0 roi = img_to_array(roi) roi = np.expand_dims(roi, axis=0) preds=model.predict_classes(roi)[0] if preds==0: print("Mask worn") test='Mask worn' elif preds==1: print("Danger: No Mask") test='Danger: No Mask' cv2.putText(fm,test, (fX-15, fY - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.45, (0, 0, 255), 2) cv2.rectangle(fm, (fX, fY), (fX + fW, fY + fH),(0, 0, 255), 2) cv2.imshow("Live Video", fm) k=cv2.waitKey(25) #Press ESC to stop/exit if k == 27: ret=0 break print("closed") cap.release() cv2.destroyAllWindows()
28.095238
124
0.641243
ed24828337abdac65179c3d1fc89a55415ddc15a
1,871
py
Python
language/Basics/stringformatting.py
Binary-bug/Python
233425ded6abc26c889599a82a181487789e3bab
[ "MIT" ]
null
null
null
language/Basics/stringformatting.py
Binary-bug/Python
233425ded6abc26c889599a82a181487789e3bab
[ "MIT" ]
null
null
null
language/Basics/stringformatting.py
Binary-bug/Python
233425ded6abc26c889599a82a181487789e3bab
[ "MIT" ]
null
null
null
age = 24 print("My age is " + str(age) + " years ") # the above procedure is tedious since we dont really want to include str for every number we encounter #Method1 Replacement Fields print("My age is {0} years ".format(age)) # {0} is the actual replacement field, number important for multiple replacement fields print("There are {0} days in {1}, {2}, {3}, {4}, {5}, {6} and {7} ".format(31,"January","March","May","july","August","october","december")) #each of the arguments of .format are matched to their respective replacement fields print("""January:{2} February:{0} March:{2} April:{1} """.format(28,30,31)) #Method2 Formatting operator not recommended though style from python 2 print("My age is %d years" % age) print("My age is %d %s, %d %s" % (age,"years",6,"months")) #^ old format and it was elegant -__- # # for i in range(1,12): # print("No, %2d squared is %4d and cubed is %4d" %(i,i**2,i**3)) # ** operator raises power %xd x allocates spaces # # # # # #for comparison # print() # for i in range(1,12): # print("No, %d squared is %d and cubed is %d" % (i,i**2,i**3)) # # # #adding more precision # # print("Pi is approximately %12.50f" % (22/7)) # 50 decimal precsion and 12 for spaces default is 6 spaces # # # # #Replacement field syntax variant of above Python 2 tricks for i in range(1,12): print("No. {0:2} squared is {1:4} and cubed is {2:4}".format(i,i**2,i**3)) print() #for left alignment for i in range(1,12): print("NO. {0:<2} squared is {1:<4} and cubed is {2:<4}".format(i,i**2,i**3)) #floating point precision print("Pi is approximately {0:.50}".format(22/7)) #use of numbers in replacement fields is optional when the default order is implied for i in range(1,12): print("No. {:2} squared is {:4} and cubed is {:4}".format(i,i**2,i**3)) days = "Mon, Tue, Wed, Thu, Fri, Sat, Sun" print(days[::5])
25.986111
140
0.649385
ed24c0adb8cc7ebd6871903b985fa571a276f939
5,391
py
Python
toggl.py
ulrikpedersen/toggl-gnome-applet
ae48358414d14d44ef5731c59f1813bac97e3257
[ "Unlicense" ]
null
null
null
toggl.py
ulrikpedersen/toggl-gnome-applet
ae48358414d14d44ef5731c59f1813bac97e3257
[ "Unlicense" ]
1
2017-11-21T09:36:06.000Z
2017-11-21T09:36:06.000Z
toggl.py
ulrikpedersen/toggl-gnome-applet
ae48358414d14d44ef5731c59f1813bac97e3257
[ "Unlicense" ]
null
null
null
#!/usr/bin/env python import logging from datetime import datetime logging.basicConfig(level=logging.WARNING) import os import urllib2, base64, json import dateutil.parser
38.234043
116
0.586533
ed2565f6739ecf83e80e8445b8eb480489832a2d
432
py
Python
gs_divergence/symmetrized_geodesical_skew_divergence.py
ISMHinoLab/geodesical_skew_divergence
293648a30e86bdd14749af5b107f1d3687d67700
[ "MIT" ]
7
2021-04-01T09:21:49.000Z
2022-03-24T05:28:22.000Z
gs_divergence/symmetrized_geodesical_skew_divergence.py
ISMHinoLab/geodesical_skew_divergence
293648a30e86bdd14749af5b107f1d3687d67700
[ "MIT" ]
21
2021-04-01T02:56:54.000Z
2021-05-07T01:02:09.000Z
gs_divergence/symmetrized_geodesical_skew_divergence.py
ISMHinoLab/geodesical_skew_divergence
293648a30e86bdd14749af5b107f1d3687d67700
[ "MIT" ]
2
2021-04-12T15:00:17.000Z
2021-04-26T03:10:26.000Z
from typing import Optional import torch from gs_divergence import gs_div
24
74
0.680556
ed25675ecd1960dc8b520c3cb84ff43fb7cab0a0
1,946
py
Python
train.py
kushaliitm/deep-learning
ab8e23d1414d3b79bbe4a3acd57a475f6def7277
[ "MIT" ]
null
null
null
train.py
kushaliitm/deep-learning
ab8e23d1414d3b79bbe4a3acd57a475f6def7277
[ "MIT" ]
null
null
null
train.py
kushaliitm/deep-learning
ab8e23d1414d3b79bbe4a3acd57a475f6def7277
[ "MIT" ]
null
null
null
import argparse import helper as hp import torch import os import json parser = argparse.ArgumentParser(description = 'train.py') parser.add_argument('--data-dir', nargs = '*', action = "store", default = "./flowers/", help = "folder path for data") parser.add_argument('--save-dir', action = "store", required=True, help = "filepath for saving checkpoint") parser.add_argument('--learning-rate', action = "store", default = 0.001, help = "learning rate for the optimizer") parser.add_argument('--epoch-num', action = "store", type = int, default = 3, help = "epoch value") parser.add_argument('--architecture', action = "store", default = "vgg16", type = str, help = "specify the neural network structure: vgg16 or densenet121") parser.add_argument('--hidden-size', type = int, action = "store", default = 1000, help = "state the units for fc2") parser.add_argument('--optimizer', action='store', default='adam', help='Optimizer to optimize') pa = parser.parse_args() pa = vars(pa) print(pa) data_path = pa['data_dir'] save_dir = pa["save_dir"] learning_rate = pa['learning_rate'] architecture = pa['architecture'] hidden_size = pa['hidden_size'] epoch_number = pa['epoch_num'] if (not os.path.exists(f'experiments/{save_dir}')): os.makedirs(f'experiments/{save_dir}') file_path = f'experiments/{save_dir}/checkpoint.pt' # saving parameters with open(f'experiments/{save_dir}/parameters.json', 'w') as f: json.dump(pa, f) # load the data - data_load() from help.py print('Loading data') train_loader, validation_loader, test_loader = hp.load_data(data_path) criterion = torch.nn.NLLLoss() # build model print(f'Loading weights from {architecture}') model, optimizer = hp.get_model_and_optimizer(pa) # train model print('Training model') hp.train_model(model, optimizer, learning_rate,train_loader,validation_loader,criterion,epoch_number, file_path) # checkpoint the model print("model has been successfully trained")
37.423077
155
0.731757
ed25ac3871761ab8e7fb05fe5b59a6a001de70b4
154
py
Python
Euler0001.py
rbarillec/project_euler
db812f9ae53090b34716452d0cb9ec14bf218290
[ "MIT" ]
null
null
null
Euler0001.py
rbarillec/project_euler
db812f9ae53090b34716452d0cb9ec14bf218290
[ "MIT" ]
null
null
null
Euler0001.py
rbarillec/project_euler
db812f9ae53090b34716452d0cb9ec14bf218290
[ "MIT" ]
null
null
null
Euler0001()
15.4
32
0.448052
ed261100e8ba320319dd45fa75984055274a92f9
11,020
py
Python
models/blip.py
lmathia2/BLIP
8ca42256e83654858856d40886509be8fbca51a7
[ "BSD-3-Clause" ]
null
null
null
models/blip.py
lmathia2/BLIP
8ca42256e83654858856d40886509be8fbca51a7
[ "BSD-3-Clause" ]
null
null
null
models/blip.py
lmathia2/BLIP
8ca42256e83654858856d40886509be8fbca51a7
[ "BSD-3-Clause" ]
null
null
null
''' * Copyright (c) 2022, salesforce.com, inc. * All rights reserved. * SPDX-License-Identifier: BSD-3-Clause * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause * By Junnan Li ''' import warnings warnings.filterwarnings("ignore") from models.vit import VisionTransformer, interpolate_pos_embed from models.med import BertConfig, BertModel, BertLMHeadModel from transformers import BertTokenizer import torch from torch import nn import torch.nn.functional as F import os from urllib.parse import urlparse from timm.models.hub import download_cached_file def blip_decoder(pretrained='',**kwargs): model = BLIP_Decoder(**kwargs) if pretrained: model,msg = load_checkpoint(model,pretrained) assert(len(msg.missing_keys)==0) return model def blip_feature_extractor(pretrained='',**kwargs): model = BLIP_Base(**kwargs) if pretrained: model,msg = load_checkpoint(model,pretrained) assert(len(msg.missing_keys)==0) return model def init_tokenizer(): tokenizer = BertTokenizer.from_pretrained('bert-base-uncased') tokenizer.add_special_tokens({'bos_token':'[DEC]'}) tokenizer.add_special_tokens({'additional_special_tokens':['[ENC]']}) tokenizer.enc_token_id = tokenizer.additional_special_tokens_ids[0] return tokenizer def create_vit(vit, image_size, use_grad_checkpointing=False, ckpt_layer=0, drop_path_rate=0): assert vit in ['base', 'large'], "vit parameter must be base or large" if vit=='base': vision_width = 768 visual_encoder = VisionTransformer(img_size=image_size, patch_size=16, embed_dim=vision_width, depth=12, num_heads=12, use_grad_checkpointing=use_grad_checkpointing, ckpt_layer=ckpt_layer, drop_path_rate=0 or drop_path_rate ) elif vit=='large': vision_width = 1024 visual_encoder = VisionTransformer(img_size=image_size, patch_size=16, embed_dim=vision_width, depth=24, num_heads=16, use_grad_checkpointing=use_grad_checkpointing, ckpt_layer=ckpt_layer, drop_path_rate=0.1 or drop_path_rate ) return visual_encoder, vision_width def is_url(url_or_filename): parsed = urlparse(url_or_filename) return parsed.scheme in ("http", "https") def load_checkpoint(model,url_or_filename): if is_url(url_or_filename): cached_file = download_cached_file(url_or_filename, check_hash=False, progress=True) checkpoint = torch.load(cached_file, map_location='cpu') elif os.path.isfile(url_or_filename): checkpoint = torch.load(url_or_filename, map_location='cpu') else: raise RuntimeError('checkpoint url or path is invalid') state_dict = checkpoint['model'] state_dict['visual_encoder.pos_embed'] = interpolate_pos_embed(state_dict['visual_encoder.pos_embed'],model.visual_encoder) if 'visual_encoder_m.pos_embed' in model.state_dict().keys(): state_dict['visual_encoder_m.pos_embed'] = interpolate_pos_embed(state_dict['visual_encoder_m.pos_embed'], model.visual_encoder_m) for key in model.state_dict().keys(): if key in state_dict.keys(): if state_dict[key].shape!=model.state_dict()[key].shape: del state_dict[key] msg = model.load_state_dict(state_dict,strict=False) print('load checkpoint from %s'%url_or_filename) return model,msg
45.916667
128
0.551996
ed26aa5f1dfa9b893282f08b252dba7679012685
28,524
py
Python
venv/Lib/site-packages/pandas/tests/reshape/merge/test_multi.py
OliviaNabbosa89/Disaster_Responses
1e66d77c303cec685dfc2ca94f4fca4cc9400570
[ "MIT" ]
null
null
null
venv/Lib/site-packages/pandas/tests/reshape/merge/test_multi.py
OliviaNabbosa89/Disaster_Responses
1e66d77c303cec685dfc2ca94f4fca4cc9400570
[ "MIT" ]
null
null
null
venv/Lib/site-packages/pandas/tests/reshape/merge/test_multi.py
OliviaNabbosa89/Disaster_Responses
1e66d77c303cec685dfc2ca94f4fca4cc9400570
[ "MIT" ]
null
null
null
import numpy as np from numpy.random import randn import pytest import pandas as pd from pandas import DataFrame, Index, MultiIndex, Series import pandas._testing as tm from pandas.core.reshape.concat import concat from pandas.core.reshape.merge import merge class TestMergeMulti: def setup_method(self): self.index = MultiIndex( levels=[["foo", "bar", "baz", "qux"], ["one", "two", "three"]], codes=[[0, 0, 0, 1, 1, 2, 2, 3, 3, 3], [0, 1, 2, 0, 1, 1, 2, 0, 1, 2]], names=["first", "second"], ) self.to_join = DataFrame( np.random.randn(10, 3), index=self.index, columns=["j_one", "j_two", "j_three"], ) # a little relevant example with NAs key1 = ["bar", "bar", "bar", "foo", "foo", "baz", "baz", "qux", "qux", "snap"] key2 = [ "two", "one", "three", "one", "two", "one", "two", "two", "three", "one", ] data = np.random.randn(len(key1)) self.data = DataFrame({"key1": key1, "key2": key2, "data": data}) def test_merge_multiple_cols_with_mixed_cols_index(self): # GH29522 s = pd.Series( range(6), pd.MultiIndex.from_product([["A", "B"], [1, 2, 3]], names=["lev1", "lev2"]), name="Amount", ) df = pd.DataFrame( {"lev1": list("AAABBB"), "lev2": [1, 2, 3, 1, 2, 3], "col": 0} ) result = pd.merge(df, s.reset_index(), on=["lev1", "lev2"]) expected = pd.DataFrame( { "lev1": list("AAABBB"), "lev2": [1, 2, 3, 1, 2, 3], "col": [0] * 6, "Amount": range(6), } ) tm.assert_frame_equal(result, expected) def test_compress_group_combinations(self): # ~ 40000000 possible unique groups key1 = tm.rands_array(10, 10000) key1 = np.tile(key1, 2) key2 = key1[::-1] df = DataFrame({"key1": key1, "key2": key2, "value1": np.random.randn(20000)}) df2 = DataFrame( {"key1": key1[::2], "key2": key2[::2], "value2": np.random.randn(10000)} ) # just to hit the label compression code path merge(df, df2, how="outer") def test_left_join_index_preserve_order(self): on_cols = ["k1", "k2"] left = DataFrame( { "k1": [0, 1, 2] * 8, "k2": ["foo", "bar"] * 12, "v": np.array(np.arange(24), dtype=np.int64), } ) index = MultiIndex.from_tuples([(2, "bar"), (1, "foo")]) right = DataFrame({"v2": [5, 7]}, index=index) result = left.join(right, on=on_cols) expected = left.copy() expected["v2"] = np.nan expected.loc[(expected.k1 == 2) & (expected.k2 == "bar"), "v2"] = 5 expected.loc[(expected.k1 == 1) & (expected.k2 == "foo"), "v2"] = 7 tm.assert_frame_equal(result, expected) result.sort_values(on_cols, kind="mergesort", inplace=True) expected = left.join(right, on=on_cols, sort=True) tm.assert_frame_equal(result, expected) # test join with multi dtypes blocks left = DataFrame( { "k1": [0, 1, 2] * 8, "k2": ["foo", "bar"] * 12, "k3": np.array([0, 1, 2] * 8, dtype=np.float32), "v": np.array(np.arange(24), dtype=np.int32), } ) index = MultiIndex.from_tuples([(2, "bar"), (1, "foo")]) right = DataFrame({"v2": [5, 7]}, index=index) result = left.join(right, on=on_cols) expected = left.copy() expected["v2"] = np.nan expected.loc[(expected.k1 == 2) & (expected.k2 == "bar"), "v2"] = 5 expected.loc[(expected.k1 == 1) & (expected.k2 == "foo"), "v2"] = 7 tm.assert_frame_equal(result, expected) result = result.sort_values(on_cols, kind="mergesort") expected = left.join(right, on=on_cols, sort=True) tm.assert_frame_equal(result, expected) def test_left_join_index_multi_match_multiindex(self): left = DataFrame( [ ["X", "Y", "C", "a"], ["W", "Y", "C", "e"], ["V", "Q", "A", "h"], ["V", "R", "D", "i"], ["X", "Y", "D", "b"], ["X", "Y", "A", "c"], ["W", "Q", "B", "f"], ["W", "R", "C", "g"], ["V", "Y", "C", "j"], ["X", "Y", "B", "d"], ], columns=["cola", "colb", "colc", "tag"], index=[3, 2, 0, 1, 7, 6, 4, 5, 9, 8], ) right = DataFrame( [ ["W", "R", "C", 0], ["W", "Q", "B", 3], ["W", "Q", "B", 8], ["X", "Y", "A", 1], ["X", "Y", "A", 4], ["X", "Y", "B", 5], ["X", "Y", "C", 6], ["X", "Y", "C", 9], ["X", "Q", "C", -6], ["X", "R", "C", -9], ["V", "Y", "C", 7], ["V", "R", "D", 2], ["V", "R", "D", -1], ["V", "Q", "A", -3], ], columns=["col1", "col2", "col3", "val"], ).set_index(["col1", "col2", "col3"]) result = left.join(right, on=["cola", "colb", "colc"], how="left") expected = DataFrame( [ ["X", "Y", "C", "a", 6], ["X", "Y", "C", "a", 9], ["W", "Y", "C", "e", np.nan], ["V", "Q", "A", "h", -3], ["V", "R", "D", "i", 2], ["V", "R", "D", "i", -1], ["X", "Y", "D", "b", np.nan], ["X", "Y", "A", "c", 1], ["X", "Y", "A", "c", 4], ["W", "Q", "B", "f", 3], ["W", "Q", "B", "f", 8], ["W", "R", "C", "g", 0], ["V", "Y", "C", "j", 7], ["X", "Y", "B", "d", 5], ], columns=["cola", "colb", "colc", "tag", "val"], index=[3, 3, 2, 0, 1, 1, 7, 6, 6, 4, 4, 5, 9, 8], ) tm.assert_frame_equal(result, expected) result = left.join(right, on=["cola", "colb", "colc"], how="left", sort=True) expected = expected.sort_values(["cola", "colb", "colc"], kind="mergesort") tm.assert_frame_equal(result, expected) def test_left_join_index_multi_match(self): left = DataFrame( [["c", 0], ["b", 1], ["a", 2], ["b", 3]], columns=["tag", "val"], index=[2, 0, 1, 3], ) right = DataFrame( [ ["a", "v"], ["c", "w"], ["c", "x"], ["d", "y"], ["a", "z"], ["c", "r"], ["e", "q"], ["c", "s"], ], columns=["tag", "char"], ).set_index("tag") result = left.join(right, on="tag", how="left") expected = DataFrame( [ ["c", 0, "w"], ["c", 0, "x"], ["c", 0, "r"], ["c", 0, "s"], ["b", 1, np.nan], ["a", 2, "v"], ["a", 2, "z"], ["b", 3, np.nan], ], columns=["tag", "val", "char"], index=[2, 2, 2, 2, 0, 1, 1, 3], ) tm.assert_frame_equal(result, expected) result = left.join(right, on="tag", how="left", sort=True) expected2 = expected.sort_values("tag", kind="mergesort") tm.assert_frame_equal(result, expected2) # GH7331 - maintain left frame order in left merge result = merge(left, right.reset_index(), how="left", on="tag") expected.index = np.arange(len(expected)) tm.assert_frame_equal(result, expected) def test_left_merge_na_buglet(self): left = DataFrame( { "id": list("abcde"), "v1": randn(5), "v2": randn(5), "dummy": list("abcde"), "v3": randn(5), }, columns=["id", "v1", "v2", "dummy", "v3"], ) right = DataFrame( { "id": ["a", "b", np.nan, np.nan, np.nan], "sv3": [1.234, 5.678, np.nan, np.nan, np.nan], } ) result = merge(left, right, on="id", how="left") rdf = right.drop(["id"], axis=1) expected = left.join(rdf) tm.assert_frame_equal(result, expected) def test_merge_na_keys(self): data = [ [1950, "A", 1.5], [1950, "B", 1.5], [1955, "B", 1.5], [1960, "B", np.nan], [1970, "B", 4.0], [1950, "C", 4.0], [1960, "C", np.nan], [1965, "C", 3.0], [1970, "C", 4.0], ] frame = DataFrame(data, columns=["year", "panel", "data"]) other_data = [ [1960, "A", np.nan], [1970, "A", np.nan], [1955, "A", np.nan], [1965, "A", np.nan], [1965, "B", np.nan], [1955, "C", np.nan], ] other = DataFrame(other_data, columns=["year", "panel", "data"]) result = frame.merge(other, how="outer") expected = frame.fillna(-999).merge(other.fillna(-999), how="outer") expected = expected.replace(-999, np.nan) tm.assert_frame_equal(result, expected) class TestJoinMultiMulti: def test_join_multi_multi( self, left_multi, right_multi, join_type, on_cols_multi, idx_cols_multi ): # Multi-index join tests expected = ( pd.merge( left_multi.reset_index(), right_multi.reset_index(), how=join_type, on=on_cols_multi, ) .set_index(idx_cols_multi) .sort_index() ) result = left_multi.join(right_multi, how=join_type).sort_index() tm.assert_frame_equal(result, expected)
33.876485
89
0.425186
ed26d3056f6a5641259d87e73533b42ec4832318
11,894
py
Python
test/api/test_histories.py
mmiladi/galaxy
7857b152cd10d9490ac2433ff2905ca1a47ee32c
[ "CC-BY-3.0" ]
1
2021-04-26T08:46:21.000Z
2021-04-26T08:46:21.000Z
test/api/test_histories.py
mmiladi/galaxy
7857b152cd10d9490ac2433ff2905ca1a47ee32c
[ "CC-BY-3.0" ]
null
null
null
test/api/test_histories.py
mmiladi/galaxy
7857b152cd10d9490ac2433ff2905ca1a47ee32c
[ "CC-BY-3.0" ]
1
2018-12-09T13:50:28.000Z
2018-12-09T13:50:28.000Z
# -*- coding: utf-8 -*- from requests import ( get, post, put ) from base import api # noqa: I100 from base.populators import ( # noqa: I100 DatasetCollectionPopulator, DatasetPopulator, wait_on )
41.442509
105
0.673701
ed26edcb5cf96b914509d3c9f532db02422a6189
701
py
Python
Algorithms_easy/0461. Hamming Distance.py
VinceW0/Leetcode_Python_solutions
09e9720afce21632372431606ebec4129eb79734
[ "Xnet", "X11" ]
4
2020-08-11T20:45:15.000Z
2021-03-12T00:33:34.000Z
Algorithms_easy/0461. Hamming Distance.py
VinceW0/Leetcode_Python_solutions
09e9720afce21632372431606ebec4129eb79734
[ "Xnet", "X11" ]
null
null
null
Algorithms_easy/0461. Hamming Distance.py
VinceW0/Leetcode_Python_solutions
09e9720afce21632372431606ebec4129eb79734
[ "Xnet", "X11" ]
null
null
null
""" 0461. Hamming Distance The Hamming distance between two integers is the number of positions at which the corresponding bits are different. Given two integers x and y, calculate the Hamming distance. Note: 0 x, y < 231. Example: Input: x = 1, y = 4 Output: 2 Explanation: 1 (0 0 0 1) 4 (0 1 0 0) The above arrows point to positions where the corresponding bits are different. """
20.028571
115
0.596291
ed275088d36ba770ab503299abfac84060ea0475
2,136
py
Python
AllProjects/Projects/Spider/DownloadImage.py
CoderXAndZ/PycharmProjects
94b3cc68d39614a4291bd63d4811dab61eb2e64a
[ "MIT" ]
3
2018-08-30T03:53:25.000Z
2020-07-02T09:27:39.000Z
Spider/DownloadImage.py
CoderXAndZ/Python_demo
b1b1067f3ee2de82b4b2678ac9d09a5a0bf7d698
[ "MIT" ]
null
null
null
Spider/DownloadImage.py
CoderXAndZ/Python_demo
b1b1067f3ee2de82b4b2678ac9d09a5a0bf7d698
[ "MIT" ]
4
2020-07-01T02:29:33.000Z
2021-06-07T09:32:30.000Z
#! /usr/local/bin/python3 # -*- coding: UTF-8 -*- # import urllib.request import os import random # id # url # # if __name__ == '__main__': download_img()
24.837209
108
0.586142
ed2762c6cacc123594407c4391a955c0922acc79
7,324
py
Python
utility/extractor_batch.py
BA-HanseML/NF_Prj_MIMII_Dataset
c9dd130a48c5ee28491a3f9369ace8f7217753d6
[ "MIT" ]
10
2020-08-25T21:12:32.000Z
2021-11-04T22:14:37.000Z
utility/extractor_batch.py
BA-HanseML/NF_Prj_MIMII_Dataset
c9dd130a48c5ee28491a3f9369ace8f7217753d6
[ "MIT" ]
44
2020-05-04T11:37:55.000Z
2021-09-26T04:12:23.000Z
utility/extractor_batch.py
ArneSch/NF_Prj_MIMII_Dataset
c9dd130a48c5ee28491a3f9369ace8f7217753d6
[ "MIT" ]
4
2020-11-24T02:14:13.000Z
2021-07-01T08:52:59.000Z
print('load extractor_batch') # Utility to run multiple feature extraction # diagrams over many files with multiple threats import pandas as pd import os import sys import glob from tqdm.auto import tqdm from queue import Queue from threading import Thread from datetime import datetime import time import logging # thread class # Main Function
38.34555
120
0.497679
ed27ebcd5adfdfd408f83681c96698af5592ab3f
393
py
Python
multitenancy/context_processors.py
cmalek/django-site-multitenancy
1b943f63c0d6247529805e05dcced68ceffa2a69
[ "Apache-2.0" ]
null
null
null
multitenancy/context_processors.py
cmalek/django-site-multitenancy
1b943f63c0d6247529805e05dcced68ceffa2a69
[ "Apache-2.0" ]
null
null
null
multitenancy/context_processors.py
cmalek/django-site-multitenancy
1b943f63c0d6247529805e05dcced68ceffa2a69
[ "Apache-2.0" ]
null
null
null
from .models import Tenant def tenant(request): """ Return context variables required by apps that use django-site-multitenancy. If there is no 'tenant' attribute in the request, extract one from the request. """ if hasattr(request, 'tenant'): tenant = request.tenant else: tenant = Tenant.objects.get_current(request) return {'tenant': tenant}
24.5625
83
0.6743
ed28fda11893d2529a33ba5b4cee8f469db7aad9
185
py
Python
hello/forms.py
odhiambocuttice/mypersonalapp
b2fb12046302104569aa5c4e4869aeb669e51b1b
[ "MIT" ]
null
null
null
hello/forms.py
odhiambocuttice/mypersonalapp
b2fb12046302104569aa5c4e4869aeb669e51b1b
[ "MIT" ]
10
2019-12-04T23:35:48.000Z
2022-02-10T09:04:53.000Z
hello/forms.py
odhiambocuttice/app-version3
6b5e526a03c905cf832aae805c2a570b373aea52
[ "MIT" ]
null
null
null
from django import forms from .models import Project
18.5
52
0.67027
ed2903bbc29759d94352b5e8a5d0370e20ce8b16
361
py
Python
pset_classes/class_basics/solutions/p1.py
mottaquikarim/pydev-psets
9749e0d216ee0a5c586d0d3013ef481cc21dee27
[ "MIT" ]
5
2019-04-08T20:05:37.000Z
2019-12-04T20:48:45.000Z
pset_classes/class_basics/solutions/p1.py
mottaquikarim/pydev-psets
9749e0d216ee0a5c586d0d3013ef481cc21dee27
[ "MIT" ]
8
2019-04-15T15:16:05.000Z
2022-02-12T10:33:32.000Z
pset_classes/class_basics/solutions/p1.py
mottaquikarim/pydev-psets
9749e0d216ee0a5c586d0d3013ef481cc21dee27
[ "MIT" ]
2
2019-04-10T00:14:42.000Z
2020-02-26T20:35:21.000Z
""" Person class """ # Create a Person class with the following properties # 1. name # 2. age # 3. social security number p1 = Person("John", 36, "111-11-1111") print(p1.name) print(p1.age) print(p1.social)
15.695652
53
0.645429
ed29375d22bb9febc1771fb6ca4eaac661a4c75a
19,452
py
Python
python/paddle/fluid/contrib/slim/tests/test_imperative_out_scale.py
huangxu96/Paddle
372ac08a171d76c745deaab0feed2d587798f734
[ "Apache-2.0" ]
null
null
null
python/paddle/fluid/contrib/slim/tests/test_imperative_out_scale.py
huangxu96/Paddle
372ac08a171d76c745deaab0feed2d587798f734
[ "Apache-2.0" ]
null
null
null
python/paddle/fluid/contrib/slim/tests/test_imperative_out_scale.py
huangxu96/Paddle
372ac08a171d76c745deaab0feed2d587798f734
[ "Apache-2.0" ]
null
null
null
# copyright (c) 2018 paddlepaddle authors. all rights reserved. # # licensed under the apache license, version 2.0 (the "license"); # you may not use this file except in compliance with the license. # you may obtain a copy of the license at # # http://www.apache.org/licenses/license-2.0 # # unless required by applicable law or agreed to in writing, software # distributed under the license is distributed on an "as is" basis, # without warranties or conditions of any kind, either express or implied. # see the license for the specific language governing permissions and # limitations under the license. from __future__ import print_function import os import numpy as np import random import unittest import logging import warnings import paddle import paddle.fluid as fluid import paddle.fluid.layers as layers from paddle.fluid import core from paddle.fluid.optimizer import AdamOptimizer from paddle.fluid.framework import IrGraph from paddle.fluid.contrib.slim.quantization import ImperativeQuantAware from paddle.fluid.contrib.slim.quantization import OutScaleForTrainingPass, OutScaleForInferencePass, QuantizationTransformPass from paddle.fluid.dygraph.container import Sequential from paddle.fluid.dygraph.io import INFER_MODEL_SUFFIX, INFER_PARAMS_SUFFIX from paddle.nn.layer import ReLU, LeakyReLU, Sigmoid, Softmax, PReLU from paddle.nn import Linear, Conv2D, Softmax, BatchNorm2D, MaxPool2D from paddle.fluid.dygraph.nn import Pool2D from paddle.fluid.log_helper import get_logger from paddle.fluid.dygraph import nn paddle.enable_static() os.environ["CPU_NUM"] = "1" if core.is_compiled_with_cuda(): fluid.set_flags({"FLAGS_cudnn_deterministic": True}) _logger = get_logger( __name__, logging.INFO, fmt='%(asctime)s-%(levelname)s: %(message)s') if __name__ == '__main__': unittest.main()
38.826347
127
0.585955
ed297c05f15fda89099111b92e19812bf53e5838
4,289
py
Python
grr/server/hunts/results.py
nickamon/grr
ad1936c74728de00db90f6fafa47892b54cfc92d
[ "Apache-2.0" ]
null
null
null
grr/server/hunts/results.py
nickamon/grr
ad1936c74728de00db90f6fafa47892b54cfc92d
[ "Apache-2.0" ]
1
2018-05-08T21:15:51.000Z
2018-05-08T21:15:51.000Z
grr/server/hunts/results.py
nickamon/grr
ad1936c74728de00db90f6fafa47892b54cfc92d
[ "Apache-2.0" ]
null
null
null
#!/usr/bin/env python """Classes to store and manage hunt results. """ from grr.lib import rdfvalue from grr.lib import registry from grr.lib.rdfvalues import structs as rdf_structs from grr_response_proto import jobs_pb2 from grr.server import access_control from grr.server import aff4 from grr.server import data_store from grr.server import sequential_collection from grr.server.aff4_objects import aff4_queue RESULT_NOTIFICATION_QUEUE = rdfvalue.RDFURN("aff4:/hunt_results_queue")
30.41844
80
0.669853
ed298e1020b52cd93721c03300f989d51ef1134b
4,748
py
Python
src/simple_sharepoint/site.py
NodeJSmith/py-simple-rest-sharepoint
77ee5f76364e7b6096228945ed7e3bd637214a66
[ "MIT" ]
null
null
null
src/simple_sharepoint/site.py
NodeJSmith/py-simple-rest-sharepoint
77ee5f76364e7b6096228945ed7e3bd637214a66
[ "MIT" ]
null
null
null
src/simple_sharepoint/site.py
NodeJSmith/py-simple-rest-sharepoint
77ee5f76364e7b6096228945ed7e3bd637214a66
[ "MIT" ]
null
null
null
""" Module for higher level SharePoint REST api actions - utilize methods in the api.py module """ # TODO Add large file upload with chunking # https://github.com/JonathanHolvey/sharepy/issues/23
31.03268
116
0.619208
ed2abc9ecde219ec6fc0610ffdc2709ba8c49de3
6,317
py
Python
pypeit/tests/test_metadata.py
rcooke-ast/PYPIT
0cb9c4cb422736b855065a35aefc2bdba6d51dd0
[ "BSD-3-Clause" ]
null
null
null
pypeit/tests/test_metadata.py
rcooke-ast/PYPIT
0cb9c4cb422736b855065a35aefc2bdba6d51dd0
[ "BSD-3-Clause" ]
null
null
null
pypeit/tests/test_metadata.py
rcooke-ast/PYPIT
0cb9c4cb422736b855065a35aefc2bdba6d51dd0
[ "BSD-3-Clause" ]
null
null
null
import os import glob import shutil import yaml from IPython import embed import pytest import numpy as np from pypeit.par.util import parse_pypeit_file from pypeit.pypeitsetup import PypeItSetup from pypeit.tests.tstutils import dev_suite_required, data_path from pypeit.metadata import PypeItMetaData from pypeit.spectrographs.util import load_spectrograph from pypeit.scripts.setup import Setup
38.054217
97
0.653158
ed2b4e055e79bf5051229abe9c3b6aceb972d7aa
15,930
py
Python
tortoise/query_utils.py
DDevine/tortoise-orm
414737a78e98ffd247174590720f5c90aeac4dde
[ "Apache-2.0" ]
1
2020-05-15T19:50:12.000Z
2020-05-15T19:50:12.000Z
tortoise/query_utils.py
Tomes111/tortoise-orm
8b55499a228e44f33fec9099f4d559c77c73beb7
[ "Apache-2.0" ]
null
null
null
tortoise/query_utils.py
Tomes111/tortoise-orm
8b55499a228e44f33fec9099f4d559c77c73beb7
[ "Apache-2.0" ]
null
null
null
from copy import copy from typing import TYPE_CHECKING, Any, Dict, List, Optional, Tuple, Type, cast from pypika import Table from pypika.terms import Criterion from tortoise.exceptions import FieldError, OperationalError from tortoise.fields.relational import BackwardFKRelation, ManyToManyFieldInstance, RelationalField if TYPE_CHECKING: # pragma: nocoverage from tortoise.models import Model from tortoise.queryset import QuerySet
37.748815
101
0.629881
ed2c2633a7cab56346726bab1085f5ed14b0a1bf
1,372
py
Python
L3_numpy_pandas_2D/B_NumPy_Axis.py
angelmtenor/IDAFC
9d23746fd02e4eda2569d75b3c7a1383277e6e78
[ "MIT" ]
null
null
null
L3_numpy_pandas_2D/B_NumPy_Axis.py
angelmtenor/IDAFC
9d23746fd02e4eda2569d75b3c7a1383277e6e78
[ "MIT" ]
null
null
null
L3_numpy_pandas_2D/B_NumPy_Axis.py
angelmtenor/IDAFC
9d23746fd02e4eda2569d75b3c7a1383277e6e78
[ "MIT" ]
null
null
null
import numpy as np # Change False to True for this block of code to see what it does # NumPy axis argument if True: a = np.array([ [1, 2, 3], [4, 5, 6], [7, 8, 9] ]) print(a.sum()) print(a.sum(axis=0)) print(a.sum(axis=1)) # Subway ridership for 5 stations on 10 different days ridership = np.array([ [0, 0, 2, 5, 0], [1478, 3877, 3674, 2328, 2539], [1613, 4088, 3991, 6461, 2691], [1560, 3392, 3826, 4787, 2613], [1608, 4802, 3932, 4477, 2705], [1576, 3933, 3909, 4979, 2685], [95, 229, 255, 496, 201], [2, 0, 1, 27, 0], [1438, 3785, 3589, 4174, 2215], [1342, 4043, 4009, 4665, 3033] ]) def min_and_max_riders_per_day(ridership): """ Fill in this function. First, for each subway station, calculate the mean ridership per day. Then, out of all the subway stations, return the maximum and minimum of these values. That is, find the maximum mean-ridership-per-day and the minimum mean-ridership-per-day for any subway station. """ mean_ridership_per_day = ridership.mean(axis=0) max_daily_ridership = mean_ridership_per_day.max() # Replace this with your code min_daily_ridership = mean_ridership_per_day.min() # Replace this with your code return max_daily_ridership, min_daily_ridership print(min_and_max_riders_per_day(ridership))
28.583333
85
0.652332
ed2ce29f604f771e38af6d30ffbe09233cdd48b6
9,956
py
Python
Protein-ligand-binding/TopBio/Feature/LigandFeature.py
WeilabMSU/TopologyNet
4f4d13cec7e50624b43990c863dd84b8bbf359d8
[ "MIT" ]
1
2021-12-09T02:38:53.000Z
2021-12-09T02:38:53.000Z
Protein-ligand-binding/TopBio/Feature/LigandFeature.py
WeilabMSU/TopologyNet
4f4d13cec7e50624b43990c863dd84b8bbf359d8
[ "MIT" ]
null
null
null
Protein-ligand-binding/TopBio/Feature/LigandFeature.py
WeilabMSU/TopologyNet
4f4d13cec7e50624b43990c863dd84b8bbf359d8
[ "MIT" ]
1
2021-12-09T02:38:54.000Z
2021-12-09T02:38:54.000Z
import numpy as np import pickle import os
49.78
264
0.518682
ed2d4c9ed22365d84b24c00ca0cddff12ecae572
1,105
py
Python
emailthreads/util.py
emersion/python-emailthreads
99f1a04fa0dd2ce8a9c870016b067bf56f3d3bfd
[ "MIT" ]
34
2018-06-14T09:30:29.000Z
2022-03-13T20:56:06.000Z
emailthreads/util.py
emersion/python-emailreview
99f1a04fa0dd2ce8a9c870016b067bf56f3d3bfd
[ "MIT" ]
5
2019-12-01T20:20:51.000Z
2022-01-26T08:42:37.000Z
emailthreads/util.py
emersion/python-emailreview
99f1a04fa0dd2ce8a9c870016b067bf56f3d3bfd
[ "MIT" ]
3
2019-06-21T20:31:42.000Z
2021-12-18T00:09:07.000Z
import re import sys from email.message import EmailMessage
22.1
69
0.709502
ed2e075475e31924b346949bce0058c5690b9443
7,930
py
Python
trainval.py
JanAlexanderPersonal/covid19_weak_supervision
5599e48c9945f1e08a2731740bc8f6e44a031703
[ "Apache-2.0" ]
null
null
null
trainval.py
JanAlexanderPersonal/covid19_weak_supervision
5599e48c9945f1e08a2731740bc8f6e44a031703
[ "Apache-2.0" ]
null
null
null
trainval.py
JanAlexanderPersonal/covid19_weak_supervision
5599e48c9945f1e08a2731740bc8f6e44a031703
[ "Apache-2.0" ]
null
null
null
from haven import haven_chk as hc from haven import haven_results as hr from haven import haven_utils as hu import torch import torchvision import tqdm import pandas as pd import pprint import itertools import os import pylab as plt import exp_configs import time import numpy as np from src import models from src import datasets from src import utils as ut from pprint import pformat import argparse from torch.utils.data import sampler from torch.utils.data.sampler import RandomSampler from torch.backends import cudnn from torch.nn import functional as F from torch.utils.data import DataLoader cudnn.benchmark = True import logging def setupLogging(): """Setup the logger for this module """ # Create the Logger root_logger = logging.getLogger() root_logger.setLevel(logging.DEBUG) handler = logging.StreamHandler() logger_formatter = logging.Formatter('%(name)s - %(levelname)s - %(message)s') handler.setFormatter(logger_formatter) root_logger.addHandler(handler) if __name__ == "__main__": setupLogging() parser = argparse.ArgumentParser() logger = logging.getLogger(__name__) parser.add_argument('-e', '--exp_group_list', nargs="+") parser.add_argument('-sb', '--savedir_base', required=True) parser.add_argument('-d', '--datadir', default=None) parser.add_argument("-r", "--reset", default=0, type=int) parser.add_argument("-ei", "--exp_id", default=None) parser.add_argument("-j", "--run_jobs", default=0, type=int) parser.add_argument("-nw", "--num_workers", type=int, default=0) args = parser.parse_args() # Collect experiments # =================== if args.exp_id is not None: # select one experiment savedir = os.path.join(args.savedir_base, args.exp_id) exp_dict = hu.load_json(os.path.join(savedir, "exp_dict.json")) exp_list = [exp_dict] else: # select exp group exp_list = [] for exp_group_name in args.exp_group_list: exp_list += exp_configs.EXP_GROUPS[exp_group_name] for exp_dict in exp_list: # do trainval trainval(exp_dict=exp_dict, savedir_base=args.savedir_base, datadir=args.datadir, reset=args.reset, num_workers=args.num_workers)
33.459916
82
0.577427
ed2e4b3cf6fdf1d5d74d3435c7259f6fa34ae5df
297,511
py
Python
languages/pt-br.py
unimauro/eden
b739d334e6828d0db14b3790f2f5e2666fc83576
[ "MIT" ]
1
2017-03-15T23:29:41.000Z
2017-03-15T23:29:41.000Z
languages/pt-br.py
unimauro/eden
b739d334e6828d0db14b3790f2f5e2666fc83576
[ "MIT" ]
null
null
null
languages/pt-br.py
unimauro/eden
b739d334e6828d0db14b3790f2f5e2666fc83576
[ "MIT" ]
null
null
null
# coding: utf8 { '"update" is an optional expression like "field1=\'newvalue\'". You cannot update or delete the results of a JOIN': '"update" uma expresso opcional como "field1=\'newvalue\'". No possvel atualizar ou excluir os resultados de uma juno', '# of International Staff': '# De equipe internacional', '# of National Staff': '# De equipe nacional', '# of Vehicles': '# De Veculos', '%(msg)s\nIf the request type is "%(type)s", please enter the %(type)s on the next screen.': '%(msg)s\nSe o tipo de pedido "%(type)s", digite a %(type)s na prxima tela.', '%(system_name)s - Verify Email': '%(system_name)s - Verificar E-Mail', '%.1f km': '%.1f km', '%Y-%m-%d %H:%M:%S': '%Y-%m-%d %H:%M:%S', '%m-%d-%Y': '%m-%d-%Y', '%m-%d-%Y %H:%M:%S': '%m-%d-%Y %H:%M:%S', '%s Create a new site or ensure that you have permissions for an existing site.': '%s Cria um novo site ou garante que voc tenha permisses para um site existente.', '%s rows deleted': '%s linhas excludas', '%s rows updated': '%s linhas atualizadas', '& then click on the map below to adjust the Lat/Lon fields': 'Em seguida selecione o mapa abaixo para ajustar os campos Lat/Lon', "'Cancel' will indicate an asset log entry did not occur": "'cancelar' ir indicar que a entrada de log de ativo no ocorreu", '* Required Fields': '* campos obrigatrios', '0-15 minutes': '0-15 minutos', '1 Assessment': '1 Avaliao', '1 location, shorter time, can contain multiple Tasks': '1 Local, menos tempo, pode conter vrias Tarefas', '1-3 days': '1 a 3 dias', '15-30 minutes': '15 a 30 minutos', '2 different options are provided here currently:': '2 opes diferentes so fornecidos aqui atualmente:', '2x4 Car': 'Carro 2x4', '30-60 minutes': '30-60 minutos', '4-7 days': '4-7 Dias', '4x4 Car': 'Carro 4x4', '8-14 days': '8-14 Dias', 'A Marker assigned to an individual Location is set if there is a need to override the Marker assigned to the Feature Class.': 'Um marcador assinalado para um local individual configurado se h a necessidade de substituir um marcador assinalado para o Recurso Classe.', 'A Reference Document such as a file, URL or contact person to verify this data.': 'A Reference Document such as a file, URL or contact person to verify this data.', '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.': 'Um documento de referncia como um arquivo, URL ou contacto pessoal para verificar esses dados. Pode inserir as primeiras letras do nome dum documento para chegar a esse documento.', 'A brief description of the group (optional)': 'Uma descrio breve do grupo (opcional)', 'A file downloaded from a GPS containing a series of geographic points in XML format.': 'Um ficheiro descarregado de um GPS contendo uma srie de pontos geogrficos em formato XML.', '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.': 'Um ficheiro em formato GPX retirado de um GPS cujas datas e horas podem ser correlacionadas com as de fotografias para localizao num mapa.', 'A file in GPX format taken from a GPS.': 'A file in GPX format taken from a GPS.', 'A library of digital resources, such as photos, documents and reports': 'Uma biblioteca de recursos digitais, como fotos, documentos e relatrios', 'A location group can be used to define the extent of an affected area, if it does not fall within one administrative region.': 'Um grupo local pode ser usado para definir a extenso de uma rea afetada, se no cair dentro de uma regio administrativa.', 'A location group is a set of locations (often, a set of administrative regions representing a combined area).': 'Um grupo de localizao um conjunto de locais (muitas vezes, um conjunto de regies administrativas que representam uma rea Combinada).', 'A location group is a set of locations (often, a set of administrative regions representing a combined area). Member locations are added to a location group here. Location groups may be used to filter what is shown on the map and in search results to only entities covered by locations in the group. A location group can be used to define the extent of an affected area, if it does not fall within one administrative region. Location groups can be used in the Regions menu.': 'Um grupo de localizao um conjunto de locais (muitas vezes, um conjunto de regies administrativas que representam uma rea Combinada). Membros locais so adicionados em grupos locais aqui. Grupos locais podem ser utilizados para filtrar o que mostrado no mapa e nos resultados da procura apenas as entidades locais abrangidas no grupo. Um grupo local pode ser usado para definir a extenso de uma rea afetada, se no cair dentro de uma regio administrativa. Grupos local pode ser utilizado no menu Regies.', 'A location group must have at least one member.': 'Um grupo de localizao deve ter, pelo menos, um membro.', "A location that specifies the geographic area for this region. This can be a location from the location hierarchy, or a 'group location', or a location that has a boundary for the area.": 'Um local que especifica a rea geogrfica dessa regio. Este pode ser um local a partir da hierarquia local, ou um "grupo local", ou um local que tem um limite para a rea.', 'A survey series with id %s does not exist. Please go back and create one.': 'Id% no foi encontrado na pesquisa. Por favor voltar e crie um.', 'A task is a piece of work that an individual or team can do in 1-2 days': 'A task is a piece of work that an individual or team can do in 1-2 days', 'ABOUT THIS MODULE': 'SOBRE ESTE MDULO', 'ACCESS DATA': 'Dados de Acesso', 'ANY': 'Todos', 'API Key': 'API Key', 'API is documented here': 'API est documentado aqui', 'ATC-20 Rapid Evaluation modified for New Zealand': 'ATC-20 Rpida Avaliao modificado para a Nova Zelndia', 'Abbreviation': 'Abreviatura', 'Ability to Fill Out Surveys': 'Capacidade para preencher Inquritos', 'Ability to customize the list of details tracked at a Shelter': 'Capacidade de Customizar a lista de detalhes rastreados em um Abrigo', 'Ability to customize the list of human resource tracked at a Shelter': 'Capacidade de Customizar a lista de recursos humanos Rastreados em um Abrigo', 'Ability to customize the list of important facilities needed at a Shelter': 'Capacidade de Customizar a lista das instalaes importante necessria em um Abrigo', 'Ability to view Results of Completed and/or partially filled out Surveys': 'Capacidade para visualizar resultados de Concluda e/ou parcialmente preenchido Pesquisas', 'About': 'sobre', 'About Sahana': 'Sobre Sahana', 'Access denied': 'Acesso negado', 'Access to Shelter': 'Acesso a Abrigo', 'Access to education services': 'Acesso a servios de educao', 'Accessibility of Affected Location': 'Acessibilidade do Local Afectado', 'Accompanying Relative': 'Accompanying Relative', 'Account Registered - Please Check Your Email': 'Conta registrada - verifique seu e-mail', 'Account registered, however registration is still pending approval - please wait until confirmation received.': 'Conta registrada, mas registro pende aprovao - por favor aguarde at confirmao ser recebida.', 'Acronym': 'Iniciais', "Acronym of the organization's name, eg. IFRC.": 'Acrnimo do nome da organizao, por exemplo, FICV.', 'Actionable by all targeted recipients': 'Acionveis por todos os destinatrios de destino', 'Actionable only by designated exercise participants; exercise identifier SHOULD appear in <note>': 'Acionveis apenas pelos participantes exerccio designado; Identificao do excerccio deve aparecer em', 'Actioned?': 'Acionado?', 'Actions': 'Aes', 'Actions taken as a result of this request.': 'Aes tomadas como resultado desse pedido.', 'Activate Events from Scenario templates for allocation of appropriate Resources (Human, Assets & Facilities).': 'Ativar eventos dos templates de cenrio para alocao adequada de recursos (humanos, ativos e equipamentos)', 'Active': 'ativo', 'Active Problems': 'Problemas ativos', 'Activities': 'atividades', 'Activities matching Assessments:': 'Atividades correspondentes a Avaliaes:', 'Activities of boys 13-17yrs before disaster': 'Atividades de garotos 13-17 anos antes do desastre', 'Activities of boys 13-17yrs now': 'Atividades de garotos 13-17yrs agora', 'Activities of boys <12yrs before disaster': 'Atividades de garotos <12 anos antes do desastre', 'Activities of boys <12yrs now': 'Atividades de garotos <12 anos agora', 'Activities of children': 'Atividades de crianas', 'Activities of girls 13-17yrs before disaster': 'Atividades de meninas 13-17yrs antes de desastres', 'Activities of girls 13-17yrs now': 'Atividades de meninas 13-17yrs agora', 'Activities of girls <12yrs before disaster': 'Atividades de meninas <12yrs antes de desastres', 'Activities of girls <12yrs now': 'Agora atividades de meninas de menos de 12 anos', 'Activities:': 'Atividades:', 'Activity': 'atividade', 'Activity Added': 'Atividade Includa', 'Activity Deleted': 'Atividade Apagada', 'Activity Details': 'Detalhes da Atividade', 'Activity Report': 'Relatrio de atividades', 'Activity Reports': 'Relatrio de Atividades', 'Activity Type': 'Tipo de atividade', 'Activity Updated': 'Atividade Atualizada', 'Activity added': 'Activity added', 'Activity removed': 'Activity removed', 'Activity updated': 'Activity updated', 'Add': 'incluir', 'Add Activity': 'Incluir Atividade', 'Add Activity Report': 'Incluir Relatrio de atividade', 'Add Activity Type': 'Incluir tipo de atividade', 'Add Address': 'Incluir Endereo', 'Add Alternative Item': 'Adicionar item alternativo', 'Add Assessment': 'Incluir Avaliao', 'Add Assessment Summary': 'Incluir Avaliao De Resumo', 'Add Asset': 'Incluir ativo', 'Add Asset Log Entry - Change Label': 'Incluir recurso de entrada de entrada - trocar a Etiqueta', 'Add Availability': 'Incluir Disponibilidade', 'Add Baseline': 'Incluir Linha', 'Add Baseline Type': 'Incluir Linha De Tipo', 'Add Bed Type': 'Incluir Tipo De Cama', 'Add Brand': 'Incluir Marca', 'Add Budget': 'Incluir Oramento', 'Add Bundle': 'Incluir Pacote Configurvel', 'Add Camp': 'Incluir acampamento', 'Add Camp Service': 'Incluir acampamento de servio', 'Add Camp Type': 'Incluir tipo de acampamento', 'Add Catalog': 'Incluir Catlogo', 'Add Catalog Item': 'Incluir Item de Catlogo', 'Add Certificate': 'Incluir certificado', 'Add Certification': 'Adicionar Certificao', 'Add Cholera Treatment Capability Information': 'Incluir Informao sobre capacidade para tratamento de clera', 'Add Cluster': 'Incluir cluster', 'Add Cluster Subsector': 'Incluir Subsetor de Cluster', 'Add Competency': 'incluir competncia', 'Add Competency Rating': 'Incluir Classificao da Competncia', 'Add Contact': 'Incluir contato', 'Add Contact Information': 'Incluir informaes de contato', 'Add Course': 'Incluir curso', 'Add Course Certificate': 'Incluir Certificado de Curso', 'Add Credential': 'Incluir referncia', 'Add Credentials': 'Incluir Referncias', 'Add Dead Body Report': 'Incluir Relatrio de Cadver', 'Add Disaster Victims': 'Incluir Vtimas de Desastre', 'Add Distribution.': 'Incluir distribuio.', 'Add Document': 'Add Document', 'Add Donor': 'Incluir doador', 'Add Facility': 'Incluir Recurso', 'Add Feature Class': 'Incluir classe de recurso', 'Add Feature Layer': 'Incluir camada de recurso', 'Add Flood Report': 'Incluir Relatrio Enchente', 'Add GPS data': 'Add GPS data', 'Add Group': 'Incluir Grupo', 'Add Group Member': 'Incluir Membro do Grupo', 'Add Hospital': 'Incluir Hospital', 'Add Human Resource': 'Incluir Recurso Humano', 'Add Identification Report': 'Incluir Identificao Relatrio', 'Add Identity': 'Incluir Identidade', 'Add Image': 'Incluir Imagem', 'Add Impact': 'Adicionar Impacto', 'Add Impact Type': 'Incluir Tipo De Impacto', 'Add Incident': 'Adicionar Incidente', 'Add Incident Report': 'Incluir relatrio de incidente', 'Add Inventory Item': 'Inclir item de inventrio', 'Add Item': 'Incluir item', 'Add Item Category': 'Incluir categoria de item', 'Add Item Pack': 'Incluir pacote de itens', 'Add Item to Catalog': 'Incluir Item no Catlogo', 'Add Item to Commitment': 'Incluir Item no Compromisso', 'Add Item to Inventory': 'Incluir Item de Inventrio', 'Add Item to Request': 'Incluir Item para pedido', 'Add Item to Shipment': 'Adicionar Item para Embarque', 'Add Job Role': 'Incluir tarefa Funo', 'Add Key': 'Incluir Chave', 'Add Kit': 'Adicionar Kit', 'Add Layer': 'Incluir Camada', 'Add Level 1 Assessment': 'Incluir nvel de Avaliao 1', 'Add Level 2 Assessment': 'Incluir nvel de Avaliao 2', 'Add Location': 'Incluir Local', 'Add Log Entry': 'Adicionar Entrada de Log', 'Add Map Configuration': 'Incluir Mapa de configurao', 'Add Marker': 'Incluir Marcador', 'Add Member': 'Incluir membro', 'Add Membership': 'Incluir Associao', 'Add Message': 'Incluir Mensagem', 'Add Mission': 'Incluir Misso', 'Add Need': 'Incluir o necessrio', 'Add Need Type': 'Adicionar o tipo Necessrio', 'Add New': 'Incluir novo', 'Add New Activity': 'Incluir Nova Atividade', 'Add New Address': 'Incluir Novo Endereo', 'Add New Alternative Item': 'Incluir novo Item Alternativo', 'Add New Assessment': 'Adicionar Nova Avaliao', 'Add New Assessment Summary': 'Incluir novo Resumo de Avaliao', 'Add New Asset': 'Incluir Novo Ativo', 'Add New Baseline': 'Incluir nova linha de base', 'Add New Baseline Type': 'Incluir novo tipo de linha de base', 'Add New Brand': 'Adicionar Nova Marca', 'Add New Budget': 'Adicionar Novo Oramento', 'Add New Bundle': 'Incluir Novo Pacote', 'Add New Camp': 'Incluir novo Campo', 'Add New Camp Service': 'Inlcuir Novo Campo de Servio', 'Add New Camp Type': 'Incluir Novo Campo de Tipo', 'Add New Catalog': 'Incluir Novo Catlogo', 'Add New Catalog Item': 'Incluir novo Item de catlogo', 'Add New Cluster': 'Adicionar novo grupo', 'Add New Cluster Subsector': 'Adicionar novo subgrupo', 'Add New Commitment Item': 'Incluir novo item de compromisso', 'Add New Contact': 'Incluir novo contato', 'Add New Credential': 'Incluir nova credencial', 'Add New Document': 'Incluir Novo Documento', 'Add New Donor': 'Adicionar novo doador', 'Add New Entry': 'Incluir Nova Entrada', 'Add New Event': 'Adicionar novo evento', 'Add New Facility': 'Incluir novo Recurso', 'Add New Feature Class': 'Incluir nova classe do recurso', 'Add New Feature Layer': 'Adicionar nova camada de caractersticas', 'Add New Flood Report': 'Adicionar novo relatrio de cheias', 'Add New Group': 'Adicionar novo grupo', 'Add New Home': 'Add New Home', 'Add New Hospital': 'Adicionar novo hospital', 'Add New Human Resource': 'Incluir novos recursos humanos', 'Add New Identity': 'Adicionar nova identidade', 'Add New Image': 'Adicionar nova imagem', 'Add New Impact': 'Adicionar novo impacto', 'Add New Impact Type': 'Incluir novo Tipo De Impacto', 'Add New Incident Report': 'Adicionar novo relatrio de incidentes', 'Add New Inventory Item': 'Incluir novo Item De Inventrio', 'Add New Item': 'Incluir novo item', 'Add New Item Category': 'Incluir nova categoria de itens', 'Add New Item Pack': 'Incluir novo pacote de itens', 'Add New Item to Kit': 'Incluir novo Item de Kit', 'Add New Key': 'Adicionar Nova Chave', 'Add New Kit': 'Incluir novo Kit', 'Add New Layer': 'Adicionar Nova Camada', 'Add New Level 1 Assessment': 'Incluir novo nvel 1 avaliao', 'Add New Level 2 Assessment': 'Incluir novo nvel 2 avaliao', 'Add New Location': 'Incluir Novo Local', 'Add New Log Entry': 'Incluir nova entrada de Log', 'Add New Map Configuration': 'Incluir Novo Mapa de Configurao', 'Add New Marker': 'Incluir novo Marcador', 'Add New Member': 'Incluir Novo Membro', 'Add New Membership': 'Incluir novo membro', 'Add New Need': 'Adicionar novas necessidades', 'Add New Need Type': 'Incluir novo Tipo Necessrio', 'Add New Note': 'Adicionar NOVA NOTA', 'Add New Office': 'Adicionar novo escritrio', 'Add New Organization': 'Incluir nova Organizao', 'Add New Patient': 'Add New Patient', 'Add New Person to Commitment': 'Add New Person to Commitment', 'Add New Photo': 'Adicionar Nova Foto', 'Add New Population Statistic': 'Incluir nova Populao De Estatstica', 'Add New Problem': 'Incluir novo Problema', 'Add New Project': 'Incluir novo projeto', 'Add New Projection': 'Adicionar Nova Projeco', 'Add New Rapid Assessment': 'Incluir nova Avaliao Rpida', 'Add New Received Item': 'Incluir novo Item Recebido', 'Add New Record': 'Incluir Novo Registro', 'Add New Relative': 'Add New Relative', 'Add New Report': 'Incluir Novo Relatrio', 'Add New Request': 'Incluir novo pedido', 'Add New Request Item': 'Incluir novo Item de Pedido', 'Add New Resource': 'Incluir Novo Recurso', 'Add New River': 'Incluir novo Rio', 'Add New Role': 'INCLUIR NOVA FUNO', 'Add New Role to User': 'Incluir nova funo para o usurio', 'Add New Room': 'Adicionar nova sala', 'Add New Scenario': 'Adicionar Novo cenrio', 'Add New Sector': 'Incluir novo Sector', 'Add New Sent Item': 'Incluir novo Item Enviado', 'Add New Setting': 'Adicionar Nova Configurao', 'Add New Shelter': 'Incluir Novo Abrigo', 'Add New Shelter Service': 'Incluir Novo Servio de Abrigo', 'Add New Shelter Type': 'Incluir Novo Tipo de Abrigo', 'Add New Skill': 'Adicionar nova habilidade', 'Add New Solution': 'Adicionar nova soluo', 'Add New Staff': 'Adicionar Nova Equipe', 'Add New Staff Member': 'Incluir novo equipe do membro', 'Add New Staff Type': 'Incluir novo tipo de equipe.', 'Add New Subsector': 'Incluir novo Subsector', 'Add New Survey Answer': 'Incluir nova resposta na pesquisa.', 'Add New Survey Question': 'Incluir nova pergunta na pesquisa.', 'Add New Survey Section': 'Incluir nova seo na pesquisa.', 'Add New Survey Series': 'Incluir nova srie na pesquisa.', 'Add New Survey Template': 'Incluir novo Modelo De Pesquisa', 'Add New Task': 'Incluir Nova Tarefa', 'Add New Team': 'Adicionar nova equipe', 'Add New Theme': 'Incluir novo tema', 'Add New Ticket': 'Incluir nova permisso', 'Add New Track': 'Adicionar Nova Pista', 'Add New User': 'Incluir Novo Usurio', 'Add New User to Role': 'Adicionar Novo usurio para Funo', 'Add New Vehicle': 'Add New Vehicle', 'Add New Volunteer': 'Incluir novo Voluntrio', 'Add New Warehouse': 'Adicionar novo armazm', 'Add Note': 'Incluir nota', 'Add Office': 'Adicionar Office', 'Add Organization': 'Incluir Organizao', 'Add Peer': 'Inclur Par', 'Add Person': 'incluir pessoa', 'Add Person to Commitment': 'Add Person to Commitment', 'Add Personal Effects': 'Incluir efeitos pessoais', 'Add Photo': 'Incluir Foto', 'Add Population Statistic': 'Incluir Populao Estatstica', 'Add Position': 'Adicionar Posio', 'Add Problem': 'Adicionar Problema', 'Add Project': 'Adicionar Projeto', 'Add Projection': 'Adicionar Projeo', 'Add Question': 'Adicionar Pergunta', 'Add Rapid Assessment': 'Adicionar Avaliao Rpida', 'Add Record': 'Incluir Registro', 'Add Reference Document': 'Incluir documento de referncia', 'Add Report': 'Incluir Relatrio', 'Add Request': 'Incluir Pedido', 'Add Resource': 'Incluir Recurso', 'Add River': 'Incluir Rio', 'Add Role': 'Incluir Funo', 'Add Room': 'Incluir Sala', 'Add Section': 'Incluir Seco', 'Add Sector': 'Incluir Sector', 'Add Service Profile': 'Incluir Perfil de Servio', 'Add Setting': 'Adicionar Definio', 'Add Shelter': 'Incluir Abrigo', 'Add Shelter Service': 'Incluir Servio de Abrigo', 'Add Shelter Type': 'Incluir Tipo de Abrigo', 'Add Skill': 'Incluir Habilidade', 'Add Skill Equivalence': 'Incluir equivalncia de habilidades', 'Add Skill Provision': 'Incluir proviso de habilidades', 'Add Skill Type': 'Incluir Tipo de Habilidade', 'Add Skill to Request': 'Add Skill to Request', 'Add Solution': 'Incluir Soluo', 'Add Staff': 'Incluir equipe', 'Add Staff Member': 'Adicionar membro da equipe', 'Add Staff Type': 'Incluir tipo de equipe', 'Add Status': 'Incluir Status', 'Add Subscription': 'Incluir Assinatura', 'Add Subsector': 'Incluir Subsetor', 'Add Survey Answer': 'Incluir resposta de pesquisa', 'Add Survey Question': 'Adicionar pergunta da pesquisa', 'Add Survey Section': 'Incluir seo da pesquisa', 'Add Survey Series': 'Incluir srie da pesquisa', 'Add Survey Template': 'Incluir Modelo De Pesquisa', 'Add Task': 'Incluir Tarefa', 'Add Team': 'Incluir equipe', 'Add Theme': 'Incluir Tema', 'Add Ticket': 'Adicionar Bilhete', 'Add Training': 'Incluir Treinamento', 'Add Unit': 'Incluir Unidade', 'Add User': 'Incluir Usurio', 'Add Vehicle': 'Add Vehicle', 'Add Vehicle Detail': 'Add Vehicle Detail', 'Add Vehicle Details': 'Add Vehicle Details', 'Add Volunteer': 'Incluir Voluntrio', 'Add Volunteer Availability': 'Incluir disponibilidade do voluntrio', 'Add Warehouse': 'Adicionar Data Warehouse', 'Add a Person': 'Incluir uma pessoa', '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.': 'Adicionar um documento de referncia como um arquivo, URL ou contacto pessoal para verificar esses dados. Se voc no inserir um documento de referncia, seu e-mail ser exibido no lugar.', 'Add a Volunteer': 'Incluir um Voluntrio', 'Add a new certificate to the catalog.': 'Incluir um novo certificado no catlogo.', 'Add a new competency rating to the catalog.': 'Adicionar uma classificao nova competncia para o catlogo.', 'Add a new course to the catalog.': 'Adicionar um novo rumo para o catlogo.', 'Add a new job role to the catalog.': 'Incluir uma funo nova tarefa para o catlogo.', 'Add a new skill provision to the catalog.': 'Incluir uma disposio nova habilidade para o catlogo.', 'Add a new skill to the catalog.': 'Incluir uma nova habilidade para o catlogo.', 'Add a new skill type to the catalog.': 'Incluir um tipo novo de hailidade para o catlogo.', 'Add new Group': 'Adicionar novo grupo', 'Add new Individual': 'Incluir novo indivduo', 'Add new Patient': 'Add new Patient', 'Add new project.': 'Adicionar novo projeto.', 'Add new staff role.': 'Incluir funo de novos funcionrios.', 'Add staff members': 'Incluir membros da equipe', 'Add to Bundle': 'Incluir no Pacote Configurvel', 'Add to budget': 'Incluir no oramento', 'Add volunteers': 'Incluir voluntrios', 'Add/Edit/Remove Layers': 'Incluir/editar/remover camadas', 'Additional Beds / 24hrs': 'Camas adicionais / 24 horas', 'Address': 'endereos', 'Address Details': 'Detalhes do Endereo', 'Address Type': 'Tipo de Endereo', 'Address added': 'Endereo includo', 'Address deleted': 'Endereo excludo', 'Address updated': 'Endereo actualizado', 'Addresses': 'Endereos', 'Adequate': 'adequar', 'Adequate food and water available': 'Comida e gua adequado disponvel', 'Admin Email': 'email do administrador', 'Admin Name': 'nome do administrador', 'Admin Tel': 'Telefone do administrador', 'Administration': 'administrao', 'Admissions/24hrs': 'admisses/24 horas', 'Adolescent (12-20)': 'adolescente (12-20)', 'Adolescent participating in coping activities': 'Adolescente participando em actividades de superao', 'Adult (21-50)': 'Adulto (21-50)', 'Adult ICU': 'UTI para adultos', 'Adult Psychiatric': 'Psiquitrico para adultos', 'Adult female': 'Mulher adulta', 'Adult male': 'Homem adulto', 'Adults in prisons': 'Adultos em prises', 'Advanced:': 'Avanado:', 'Advisory': 'Aconselhamento', '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.': 'Depois de pressionar o boto ser mostrado um conjunto de dois elementos, um de cada vez. Por favor selecione a uma soluo de cada par de sua preferncia sobre o outro.', 'Age Group': 'Grupo etrio', 'Age group': 'Grupo etrio', 'Age group does not match actual age.': 'Grupo etrio no corresponde idade real.', 'Aggravating factors': 'Fatores agravantes', 'Agriculture': 'Agricultura', 'Air Transport Service': 'Servio de Transporte Areo', 'Air tajin': 'Tajin AR', 'Aircraft Crash': 'Despenho de Avio', 'Aircraft Hijacking': 'Sequestro de Avio', 'Airport Closure': 'Encerramento de Aeroporto', 'Airspace Closure': 'Encerramento de Espao Areo', 'Alcohol': 'lcool', 'Alert': 'Alertar', 'All': 'Tudo', 'All Inbound & Outbound Messages are stored here': 'Todas as mensagens enviadas e recebidas so armazenados aqui', 'All Resources': 'Todos os recursos', '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.': 'Todos os dados fornecidos pelos Sahana Software Foundation a partir deste site licenciado sob uma Licena Atribuio Comuns criativos. No entanto, nem todos os dados se origina aqui. Por favor consulte o campo de origem de cada entrada.', 'Allowed to push': 'Permisso para pressionar', 'Allows a Budget to be drawn up': 'Permite que um oramento seja estabelecido', 'Allows authorized users to control which layers are available to the situation map.': 'Permite usurios autorizados a controlar quais camadas esto disponveis no mapa de situao.', 'Alternative Item': 'Item Alternativo', 'Alternative Item Details': 'Detalhes do Item alternativo', 'Alternative Item added': 'Item alternativo includo', 'Alternative Item deleted': 'Item alternativo excludo', 'Alternative Item updated': 'Item Alternativo atualizado', 'Alternative Items': 'Itens alternativos', 'Alternative places for studying': 'Locais alternativos para estudo', 'Ambulance Service': 'Servio de Ambulncia', 'An asset must be assigned to a person, site OR location.': 'Um ATIVO deve ser designado a uma pessoa, local ou site.', 'An intake system, a warehouse management system, commodity tracking, supply chain management, procurement and other asset and resource management capabilities.': 'Um sistema de admisso, um sistema de gesto de depsitos, tracking and commodity, gesto da cadeia de fornecimentos, aquisies de ativos e outros e os recursos de gerenciamento de recurso.', 'An item which can be used in place of another item': 'Um item que pode ser utilizado no lugar de outro item', 'Analysis of Completed Surveys': 'Anlise das Pesquisas Concludas', 'Analysis of assessments': 'Analysis of assessments', 'Animal Die Off': 'Morte Animal', 'Animal Feed': 'Alimentao Animal', 'Answer Choices (One Per Line)': 'Resposta opes (Um por linha)', 'Anthropolgy': 'Anthropolgy', 'Antibiotics available': 'Antibiticos disponveis', 'Antibiotics needed per 24h': 'Antibiticos necessrio por H', 'Apparent Age': 'Idade aparente', 'Apparent Gender': 'Gnero aparente', 'Application Deadline': 'Prazo Final da aplicao', 'Applications': 'Requisies', 'Approve': 'Aprovar', 'Approved': 'aprovado', 'Approver': 'Aprovador', 'Arabic': 'Arabic', 'Arctic Outflow': 'rctico Exfluxo', 'Area': 'rea', 'Areas inspected': 'Inspeccionados reas', 'As of yet, no sections have been added to this template.': 'As of yet, no sections have been added to this template.', 'Assessment': 'Avaliao', 'Assessment Details': 'Detalhes da Avaliao', 'Assessment Reported': 'Avaliao Relatada', 'Assessment Summaries': 'Sumrio de Avaliaes', 'Assessment Summary Details': 'Detalhes do sumrio de avaliao', 'Assessment Summary added': 'Anexado sumrio de avaliaes', 'Assessment Summary deleted': 'Avaliao de resumo apagado', 'Assessment Summary updated': 'Sumrio de avaliao atualizado', 'Assessment added': 'Avaliao includa', 'Assessment admin level': 'Avaliao de nvel administrativo', 'Assessment deleted': 'Avaliao excluda', 'Assessment timeline': 'sequncia temporal de avaliao', 'Assessment updated': 'Avaliao atualizada', 'Assessments': 'avaliaes', 'Assessments Needs vs. Activities': 'Necessidades de Avaliaes vs. Atividades', 'Assessments and Activities': 'Avaliaes e Atividades', 'Assessments:': 'Avaliaes', 'Assessor': 'Avaliador', 'Asset': 'Recurso', 'Asset Assigned': 'Ativo Designado', 'Asset Assignment Details': 'Detalhes da Designao de Recursos', 'Asset Assignment deleted': 'Designao De ativo excludo', 'Asset Assignment updated': 'Atribuio de Ativo atualizada', 'Asset Assignments': 'Designaes de Ativo', 'Asset Details': 'Detalhes do Ativo', 'Asset Log': 'Log de ATIVOS', 'Asset Log Details': 'Detalhes do Log de ativos', 'Asset Log Empty': 'Log de Ativos vazio', 'Asset Log Entry Added - Change Label': 'Adicionada uma entrada no Log de ativos -Alterar Etiqueta', 'Asset Log Entry deleted': 'Apagada uma entrada no Log de ativos', 'Asset Log Entry updated': 'Atualizada uma entrada no Log de Ativos', 'Asset Management': 'gerenciamento de recursos', 'Asset Number': 'nmero do recurso', 'Asset added': 'Ativo Includo', 'Asset deleted': 'ativo excludo', 'Asset removed': 'Ativo Removido', 'Asset updated': 'recurso atualizado', 'Assets': 'recursos', 'Assets are resources which are not consumable but are expected back, so they need tracking.': 'Os ativos so recursos que no so consumveis e sero devolvidos, portanto precisam de rastreamento.', 'Assign': 'Designar', 'Assign Asset': 'designar recurso', 'Assign Group': 'Designar Grupo', 'Assign Staff': 'Atribuir Equipe', 'Assign to Org.': 'Designar para Org.', 'Assign to Organisation': 'Atribuir para Organizao', 'Assign to Organization': 'Atribuir para Organizao', 'Assign to Person': 'Atribuir uma Pessoa', 'Assign to Site': 'Atribuir um Site', 'Assigned': 'Designado', 'Assigned By': 'Designado por', 'Assigned To': 'Designado Para', 'Assigned to': 'Designado para', 'Assigned to Organisation': 'Designado para Organizao', 'Assigned to Person': 'Designado para a Pessoa', 'Assigned to Site': 'Designado para o Site', 'Assignments': 'Designaes', 'At/Visited Location (not virtual)': 'Em/Visitou Local (no virtual)', 'Attend to information sources as described in <instruction>': 'Participar de fontes de informao, conforme descrito em<instruction>', 'Attribution': 'Atribuio', "Authenticate system's Twitter account": 'Sistema de Autenticao para conta de Twitter', 'Author': 'autor', 'Availability': 'Disponibilidade', 'Available Alternative Inventories': 'Alternativas de Inventrio disponveis', 'Available Alternative Inventory Items': 'Itens alternativos de Inventrio disponveis', 'Available Beds': 'camas disponveis', 'Available Forms': 'Available Forms', 'Available Inventories': 'Inventrios disponveis', 'Available Inventory Items': 'Itens de inventrio disponveis', 'Available Messages': 'Mensagens disponveis', 'Available Records': 'Registros disponveis', 'Available databases and tables': 'Banco de Dados e Tabelas disponveis', 'Available for Location': 'Disponvel para locao', 'Available from': 'disponvel de', 'Available in Viewer?': 'Disponvel no visualizador?', 'Available until': 'Disponvel at', 'Avalanche': 'Avalanche', 'Avoid the subject event as per the <instruction>': 'Evitar o assunto do evento de acordo com a', 'Background Color': 'Background Color', 'Background Color': 'Cor de Plano de Fundo', 'Background Color for Text blocks': 'Cor de segundo plano para blocos de texto', 'Bahai': 'Bahai', 'Baldness': 'Calvcie', 'Banana': 'Banana', 'Bank/micro finance': 'banco/micro finanas', 'Barricades are needed': 'Barricadas so necessrias', 'Base Layer?': 'Camada De Base?', 'Base Location': 'Local da Base', 'Base Site Set': 'Conjunto de Site bsico', 'Baseline Data': 'Dados bsicos', 'Baseline Number of Beds': 'Numero de camadas base de camas', 'Baseline Type': 'Tipo de Linha Base', 'Baseline Type Details': 'Detalhes de Tipo de Linha Base', 'Baseline Type added': 'Tipo de Linha Base adicionado', 'Baseline Type deleted': 'Tipo de Linha Base removido', 'Baseline Type updated': 'Tipo de Linha Base actualizado', 'Baseline Types': 'Tipos de Linha Base', 'Baseline added': 'Camada Base includa', 'Baseline deleted': 'Camada Base Excluda', 'Baseline number of beds of that type in this unit.': 'Numero de camadas base de camas desse tipo nesta unidade.', 'Baseline updated': 'Linha Base actulizada', 'Baselines': 'Camadas Base', 'Baselines Details': 'Detalhes de Camadas Base', 'Basic Assessment': 'Avaliao Bsica', 'Basic Assessment Reported': 'Avaliao Bsica Relatada', 'Basic Details': 'Detalhes Bsicos', 'Basic reports on the Shelter and drill-down by region': 'Relatrios bsicos sobre o Abrigo e abertura por regio', 'Baud': 'Transmisso', 'Baud rate to use for your modem - The default is safe for most cases': 'Taxa de transmisso para ser usada pelo seu modem - O padro seguro para a maioria dos casos', 'Beam': 'feixe', 'Bed Capacity': 'Capacidade de leitos', 'Bed Capacity per Unit': 'Capacidade cama por Unidade', 'Bed Type': 'Tipo de cama', 'Bed type already registered': 'Tipo de cama j registrado', 'Below ground level': 'Abaixo do nvel do solo', 'Beneficiary Type': 'Tipo de beneficirio', "Bing Layers cannot be displayed if there isn't a valid API Key": "Bing Layers cannot be displayed if there isn't a valid API Key", 'Biological Hazard': 'Risco Biolgico', 'Biscuits': 'Biscoitos', 'Blizzard': 'Nevasca', 'Blood Type (AB0)': 'Tipo sanguneo (AB0)', 'Blowing Snow': 'Soprando neve', 'Boat': 'Barco', 'Bodies': 'Bodies', 'Bodies found': 'Corpos encontrados', 'Bodies recovered': 'corpos recuperados', 'Body': 'corpo', 'Body Recovery': 'Body Recovery', 'Body Recovery Request': 'Pedido de recuperao de corpos', 'Body Recovery Requests': 'Pedidos de recuperao de corpos', 'Bomb': 'Bomba', 'Bomb Explosion': 'Exploso de bomba', 'Bomb Threat': 'Ameaa de bomba', 'Border Color for Text blocks': 'Cor da borda para blocos de texto', 'Bounding Box Insets': 'Delimitadora Inseres Caixa', 'Bounding Box Size': 'CAIXA delimitadora Tamanho', 'Brand': 'Marca', 'Brand Details': 'Detalhes da Marca', 'Brand added': 'Marca includa', 'Brand deleted': 'Marca excluda', 'Brand updated': 'marca atualizada', 'Brands': 'marcas', 'Bricks': 'Tijolos', 'Bridge Closed': 'PONTE FECHADA', 'Bucket': 'Balde', 'Buddhist': 'Budista', 'Budget': 'Oramento', 'Budget Details': 'Detalhes de Oramento', 'Budget Updated': 'Oramento Atualizado', 'Budget added': 'Oramento includo', 'Budget deleted': 'Oramento excludo', 'Budget updated': 'Oramento atualizado', 'Budgeting Module': 'Mdulo de Oramento', 'Budgets': 'Oramentos', 'Buffer': 'buffer', 'Bug': 'erro', 'Building Assessments': 'Avaliaes de construo', 'Building Collapsed': 'Construo Fechada', 'Building Name': 'Nome do edifcio', 'Building Safety Assessments': 'Regras de Segurana do Edifcio', 'Building Short Name/Business Name': 'Nome curto/Nome completo do Edifcio', 'Building or storey leaning': 'Edifcio ou andar em inclinao', 'Built using the Template agreed by a group of NGOs working together as the': 'Construdo de acordo com o formulrio acordado por um grupo de ONGs', 'Bulk Uploader': 'Carregador em massa', 'Bundle': 'Pacote', 'Bundle Contents': 'Contedo do Pacote', 'Bundle Details': 'Detalhes do Pacote', 'Bundle Updated': 'Pacote configurvel ATUALIZADO', 'Bundle added': 'Pacote includo', 'Bundle deleted': 'Pacote Excludo', 'Bundle updated': 'Pacote atualizado', 'Bundles': 'Pacotes', 'Burn': 'Gravar', 'Burn ICU': 'Queimar ICU', 'Burned/charred': 'Queimados/carbonizados', 'By Facility': 'Por Facilidade', 'By Inventory': 'Por Inventrio', 'By Person': 'Por pessoa', 'By Site': 'Por Site', 'CBA Women': 'CBA Mulheres', 'CLOSED': 'CLOSED', 'CN': 'CN', 'CSS file %s not writable - unable to apply theme!': 'Arquivo CSS %s no gravvel - Impossvel aplicar o tema!', 'Calculate': 'calcular', 'Camp': 'Acampamento', 'Camp Coordination/Management': 'Campo Coordenao/gesto', 'Camp Details': 'Detalhes do Alojamento', 'Camp Service': 'Servio de Alojamento', 'Camp Service Details': 'Detalhe do Servio de Campo', 'Camp Service added': 'Servio de Alojamento includo', 'Camp Service deleted': 'Servio de Alojamento excludo', 'Camp Service updated': 'Servio de campo atualizado', 'Camp Services': 'Servio de campo', 'Camp Type': 'Tipo de Campo', 'Camp Type Details': 'Detalhes do tipo de campo', 'Camp Type added': 'Tipo de Campo incluso.', 'Camp Type deleted': 'Tipo de campo excludo.', 'Camp Type updated': 'Tipo De acampamento atualizado', 'Camp Types': 'TIPOS DE acampamento', 'Camp Types and Services': 'Tipos e servios de acampamentos', 'Camp added': 'Alojamento includo', 'Camp deleted': 'Alojamento excludo', 'Camp updated': 'Acampamento atualizado', 'Camps': 'Alojamentos', 'Can only disable 1 record at a time!': 'Pode desativar apenas 1 registro por vez!', 'Can only enable 1 record at a time!': 'Can only enable 1 record at a time!', "Can't import tweepy": 'No pode importar tweepy', 'Cancel': 'Cancelar', 'Cancel Log Entry': 'Cancelar Registro De Entrada', 'Cancel Shipment': 'Cancelar Embarque', 'Canceled': 'cancelado', 'Candidate Matches for Body %s': 'Candidato Corresponde ao Corpo %s', 'Canned Fish': 'Conservas de Peixe', 'Cannot be empty': 'No pode ser vazio', 'Cannot disable your own account!': 'Voce no pode desativar sua prpria conta!', 'Capacity (Max Persons)': 'Capacidade (Mximo De pessoas)', 'Capture Information on Disaster Victim groups (Tourists, Passengers, Families, etc.)': 'CAPTURA informaes sobre grupos Desastre Vtima (Turistas, passageiros, Famlias, etc. ).', 'Capture Information on each disaster victim': 'Informaes de captura em cada vtima Desastre', 'Capturing organizational information of a relief organization and all the projects they have in the region': 'Capturando informaes organizacionais de uma organizao de ajuda e todos os projetos tm na regio', 'Capturing the projects each organization is providing and where': 'Capturando os projetos que cada organizao est fornecendo e onde', 'Cardiology': 'Cardiologia', 'Cassava': 'Mandioca', 'Casual Labor': 'Trabalho Casual', 'Casualties': 'Acidentes', 'Catalog': 'catlogo', 'Catalog Details': 'Detalhes do Catlogo', 'Catalog Item': 'Item do catlogo de', 'Catalog Item added': 'Item includo no catlogo', 'Catalog Item deleted': 'Catlogo de Item excludo', 'Catalog Item updated': 'Item do catlogo de atualizao', 'Catalog Items': 'Itens do Catlogo', 'Catalog added': 'Catlogo Includo', 'Catalog deleted': 'Catlogo excludo', 'Catalog updated': 'Catlogo Atualizado', 'Catalogs': 'Catlogos', 'Categories': 'Categorias', 'Category': 'category', "Caution: doesn't respect the framework rules!": 'Cuidado: no respeitar as regras de enquadramento!', 'Ceilings, light fixtures': 'Tetos, luminarias', 'Cell Phone': 'Cell Phone', 'Central point to record details on People': 'Ponto Central para registrar detalhes sobre pessoas', 'Certificate': 'Certificate', 'Certificate Catalog': 'Catlogo de Certificados', 'Certificate Details': 'Detalhes do Certificado', 'Certificate Status': 'Status do Certificado', 'Certificate added': 'Certificado includo', 'Certificate deleted': 'Certificado Removido', 'Certificate updated': 'Certificado Actualizado', 'Certificates': 'Certificados', 'Certification': 'Certificao', 'Certification Details': 'Detalhes da Certificao', 'Certification added': 'Certificao includa', 'Certification deleted': 'Certificao excluda', 'Certification updated': 'Certificao atualizada', 'Certifications': 'Certificaes', 'Certifying Organization': 'Certificao da Organizao', 'Change Password': 'Alterar Senha', 'Check': 'Verifique', 'Check Request': 'Verificar Pedido', 'Check for errors in the URL, maybe the address was mistyped.': 'Verifique se h erros na URL, talvez o endereo foi digitado incorretamente.', 'Check if the URL is pointing to a directory instead of a webpage.': 'Verifique se a URL est apontando para um diretrio em vez de uma pgina da Web.', 'Check outbox for the message status': 'Outbox para verificar o status da mensagem', 'Check to delete': 'Verificar para Excluir', 'Check-in': 'Registrar Entrada', 'Check-in at Facility': 'Check-in at Facility', 'Check-out': 'Registrar Sada', 'Checked': 'verificado', 'Checklist': 'lista de verificao', 'Checklist created': 'Lista de verificao criada', 'Checklist deleted': 'Lista de verificao excluda', 'Checklist of Operations': 'Lista de Verificao das Operaes', 'Checklist updated': 'Lista de verificao atualizado', 'Chemical Hazard': 'Risco Qumico', 'Chemical, Biological, Radiological, Nuclear or High-Yield Explosive threat or attack': 'Ameaa ou ataque Qumico, Biolgico, Radiolgico, Nuclear ou de alto concentrao Explosiva', 'Chicken': 'Frango', 'Child': 'Criana', 'Child (2-11)': 'Criana (2-11)', 'Child (< 18 yrs)': 'Criana (< 18 anos)', 'Child Abduction Emergency': 'Emergncia de Rapto De Criana', 'Child headed households (<18 yrs)': 'Famlias chefiadas por Filho (<18 anos)', 'Children (2-5 years)': 'Crianas (2 a 5 anos)', 'Children (5-15 years)': 'Crianas (5 a 15 anos)', 'Children (< 2 years)': 'Crianas (< 2 anos)', 'Children in adult prisons': 'Crianas nas prises para adultos', 'Children in boarding schools': 'Crianas em internatos', 'Children in homes for disabled children': 'Crianas em lares para crianas deficientes', 'Children in juvenile detention': 'Crianas em deteno juvenil', 'Children in orphanages': 'Crianas nos orfanatos', 'Children living on their own (without adults)': 'Crianas vivendo por conta prpria (sem adultos)', 'Children not enrolled in new school': 'Crianas no matriculadas em Nova Escola', 'Children orphaned by the disaster': 'Crianas rfs pela catstrofe', 'Children separated from their parents/caregivers': 'Crianas SEPARADAS de seus pais/responsveis', 'Children that have been sent to safe places': 'Crianas que foram enviadas para locais seguros', 'Children who have disappeared since the disaster': 'Crianas que desapareceram desde o desastre', 'Chinese (Simplified)': 'Chinese (Simplified)', 'Chinese (Taiwan)': 'Chins (Taiwan)', 'Cholera Treatment': 'Tratamento da clera', 'Cholera Treatment Capability': 'Capacidade de Tratamento da Clera', 'Cholera Treatment Center': 'Centro de Tratamento de Clera', 'Cholera-Treatment-Center': 'Centro de tratamento de clera', 'Choose a new posting based on the new evaluation and team judgement. Severe conditions affecting the whole building are grounds for an UNSAFE posting. Localised Severe and overall Moderate conditions may require a RESTRICTED USE. Place INSPECTED placard at main entrance. Post all other placards at every significant entrance.': 'Escolha uma nova alocao baseada na nova avaliao e julgamento do time. Condies severas que afetem o prdio inteiro so base para uma colocao INSEGURA. Grave localizada e no geral condies moderadas podem exigir um USO RESTRITO. Local INSPECCIONADO cartaz na entrada principal. Coloque todos os outros cartazes em cada entrada importante.', 'Christian': 'Cristo', 'Church': 'Igreja', 'Circumstances of disappearance, other victims/witnesses who last saw the missing person alive.': 'Circunstncias do desaparecimento, outras vtimas/testemunhas quais viram pela ltima vez a pessoa desaparecida viva.', 'City': 'CIDADE', 'Civil Emergency': 'Emergncia Civil', 'Cladding, glazing': 'Revestimentos, vidros', 'Click on the link': 'Clique no link', 'Client IP': 'Client IP', 'Climate': 'Climate', 'Clinical Laboratory': 'Laboratrio clnico', 'Clinical Operations': 'operaes clinicas', 'Clinical Status': 'estado clnico', 'Close map': 'Close map', 'Closed': 'fechado', 'Clothing': 'vesturio', 'Cluster': 'agrupamento', 'Cluster Details': 'Detalhes do Grupo', 'Cluster Distance': 'Distncia entre Grupos', 'Cluster Subsector': 'Subsector de Grupos', 'Cluster Subsector Details': 'Detalhes do sub-setor do cluster', 'Cluster Subsector added': 'Subsector de Grupos includo', 'Cluster Subsector deleted': 'Subsector de Grupos removido', 'Cluster Subsector updated': 'Sub-setores do cluster atualizado', 'Cluster Subsectors': 'Sub-setores do cluster', 'Cluster Threshold': 'Limite do Cluster', 'Cluster added': 'adicionar agrupamento', 'Cluster deleted': 'Grupo removido', 'Cluster updated': 'Cluster atualizado', 'Cluster(s)': 'Grupo(s)', 'Clusters': 'clusters', 'Code': 'Cdigo', 'Cold Wave': 'onda fria', 'Collapse, partial collapse, off foundation': 'Reduzir, reduzir parciais, off foundation', 'Collective center': 'Centro coletivo', 'Color for Underline of Subheadings': 'Cor para Sublinhar de Subposies', 'Color of Buttons when hovering': 'Cor dos botes quando erguidos', 'Color of bottom of Buttons when not pressed': 'Cor da parte inferior dos botes quando no for pressionado', 'Color of bottom of Buttons when pressed': 'Cor da parte de baixo dos botes quando pressionados', 'Color of dropdown menus': 'Cor de menus DROP-', 'Color of selected Input fields': 'Cor dos campos de entrada selecionados', 'Color of selected menu items': 'cor dos tens selecionados do menu', 'Column Choices (One Per Line': 'Coluna de opes (uma por linha)', 'Columns, pilasters, corbels': 'Colunas, pilastras , cavaletes', 'Combined Method': 'Mtodo combinado', 'Come back later.': 'Volte mais tarde.', 'Come back later. Everyone visiting this site is probably experiencing the same problem as you.': 'Volte mais tarde. Todos que visitam este site esta, provavelmente, enfrentando o mesmo problema que voc.', 'Comments': 'Comentrios', 'Commercial/Offices': 'Comercial/Escritrios', 'Commit': 'Consolidar', 'Commit Date': 'Commit Data', 'Commit from %s': 'Consolidao de s%', 'Commit. Status': 'Commit. Status', 'Commiting a changed spreadsheet to the database': 'Consolidando uma planilha alterada no banco de dados', 'Commitment': 'Comprometimento', 'Commitment Added': 'Compromisso Includo', 'Commitment Canceled': 'Compromisso cancelado', 'Commitment Details': 'Detalhes do compromisso', 'Commitment Item': 'Item do compromisso', 'Commitment Item Details': 'Detalhes do item de compromisso', 'Commitment Item added': 'Item de compromisso includo', 'Commitment Item deleted': 'Item do compromisso excludo', 'Commitment Item updated': 'Compromisso Item atualizado', 'Commitment Items': 'Itens compromisso', 'Commitment Status': 'Empenhamento Status', 'Commitment Updated': 'Compromisso Atualizado', 'Commitments': 'Compromissos', 'Committed': 'Comprometido', 'Committed By': 'Cometido por', 'Committed People': 'Committed People', 'Committed Person Details': 'Committed Person Details', 'Committed Person updated': 'Committed Person updated', 'Committing Inventory': 'Confirmando Inventrio', 'Committing Organization': 'Committing Organization', 'Committing Person': 'Committing Person', 'Communication problems': 'Problemas de Comunicao', 'Community Centre': 'Comunidade Centro', 'Community Health Center': 'Centro Comunitrio de Sade', 'Community Member': 'Membro da Comunidade', 'Competencies': 'Competncias', 'Competency': 'Competncia', 'Competency Details': 'Competncia Detalhes', 'Competency Rating Catalog': 'Catlogo de Classificao de Competncias', 'Competency Rating Details': 'Detalhes da classificao de competncias', 'Competency Rating added': 'Classificao de Habilidades includa', 'Competency Rating deleted': 'Classificao de competncia excluda', 'Competency Rating updated': 'Atualizao da classificao de competncias', 'Competency Ratings': 'Classificao de competncias', 'Competency added': 'Competncia includa', 'Competency deleted': 'Competncia excludo', 'Competency updated': 'Competncia atualizada', 'Complete': 'Concluir', 'Completed': 'Concludo', 'Complexion': 'Compleio', 'Compose': 'Redigir', 'Compromised': 'Comprometida', 'Concrete frame': 'Quadro concreto', 'Concrete shear wall': 'Muro de corteconcreto', 'Condition': 'Condio', 'Configurations': 'Configuraes', 'Configure Run-time Settings': 'Configurar as configuraes de tempo de execuo', 'Confirm Shipment Received': 'Confirmar Remessa Recebida', 'Confirmed': 'Confirmado', 'Confirming Organization': 'Confirmando Organizao', 'Conflict Details': 'Detalhes Do conflito', 'Conflict Resolution': 'Resoluo de Conflito', 'Consignment Note': 'NOTA REMESSA', 'Constraints Only': 'Somente restries', 'Consumable': 'Consumvel', 'Contact': 'contato', 'Contact Data': 'Dados contato', 'Contact Details': 'Detalhes do contato', 'Contact Info': 'Informaes de Contato', 'Contact Information': 'Informaes de Contato', 'Contact Information Added': 'Informao de contato includa', 'Contact Information Deleted': 'Informao de contato excluda', 'Contact Information Updated': 'Informaes de contato atualizadas', 'Contact Method': 'Mtodo de Contato', 'Contact Name': 'Nome do contato', 'Contact Person': 'Pessoa de Contato', 'Contact Phone': 'Telefone para Contato', 'Contact details': 'Detalhes do contato', 'Contact information added': 'Informaes de contato includas', 'Contact information deleted': 'Informaes de contato excludas', 'Contact information updated': 'Informaes de contato atualizadas', 'Contact person(s) in case of news or further questions (if different from reporting person). Include telephone number, address and email as available.': 'Pessoa(s) a contactar em caso de notcias ou mais perguntas (se for diferente da pessoa que reportou). Incluir nmero de telefone, endereo e correio electrnico se disponvel.', 'Contact us': 'Fale Conosco', 'Contacts': 'contatos', 'Contents': 'Contedo', 'Contributor': 'Contribuidor', 'Conversion Tool': 'Ferramenta de Converso', 'Cooking NFIs': 'Cozinhando NFIs', 'Cooking Oil': 'Cozinhando leo', 'Coordinate Conversion': 'COORDENAR a Converso', 'Coping Activities': 'Atividades de lida', 'Copy': 'copiar', 'Corn': 'Milho', 'Cost Type': 'Tipo de custo', 'Cost per Megabyte': 'Custo por megabyte', 'Cost per Minute': 'Custo por Minuto', 'Country': 'Pas', 'Country of Residence': 'Pas de Residncia', 'County': 'Municpio', 'Course': 'Curso', 'Course Catalog': 'Catlogo de Cursos', 'Course Certificate Details': 'Detalhes do Certificado do Curso', 'Course Certificate added': 'Certificado do Curso adicionado', 'Course Certificate deleted': 'Certificado do Curso excludo', 'Course Certificate updated': 'Certificado do Curso atualizado', 'Course Certificates': 'Certificados de Curso', 'Course Certificates': 'Certificados de Curso', 'Course Details': 'Detalhes do curso', 'Course added': 'Curso includo', 'Course deleted': 'Curso excludo', 'Course updated': 'Curso atualizado', 'Courses': 'Cursos', 'Create & manage Distribution groups to receive Alerts': 'Criar & GERENCIAR grupos de distribuio de receber alertas', 'Create Checklist': 'Criar Lista de Verificao', 'Create Group Entry': 'Criar Grupo De Entrada', 'Create Impact Assessment': 'Criar Avaliao de Impacto', 'Create Mobile Impact Assessment': 'Criar Avaliao de Impacto Movel', 'Create New Asset': 'Criar Novo Recurso', 'Create New Catalog Item': 'Criar Novo Item de Catlogo', 'Create New Event': 'Criar Novo Evento', 'Create New Item Category': 'Criar Nova Categoria de Item', 'Create New Request': 'Criar Novo Pedido', 'Create New Scenario': 'Criar Novo cenrio', 'Create New Vehicle': 'Create New Vehicle', 'Create Rapid Assessment': 'Criar Avaliao Rpida', 'Create Request': 'Criar solicitao', 'Create Task': 'Criar Tarefa', 'Create a group entry in the registry.': 'Criar uma entrada de grupo no registro.', 'Create new Office': 'Criar novo escritrio', 'Create new Organization': 'Criar nova organizao', 'Create, enter, and manage surveys.': 'Criar, digitar e gerenciar pesquisas.', 'Creation of Surveys': 'Criao de Pesquisas', 'Creation of assessments': 'Creation of assessments', 'Credential Details': 'Detalhes da Credencial', 'Credential added': 'Credencial includa', 'Credential deleted': 'Credencial Excluda', 'Credential updated': 'Credencial ATUALIZADA', 'Credentialling Organization': 'Organizao acreditada', 'Credentials': 'credenciais', 'Credit Card': 'Carto de crdito', 'Crime': 'crime', 'Criteria': 'Critrio', 'Currency': 'moeda', 'Current Entries': 'Entradas Atuais', 'Current Group Members': 'Membros do Grupo atual', 'Current Identities': 'Identidades atuais', 'Current Location': 'Posio Atual', 'Current Location Country': 'Current Location Country', 'Current Location Phone Number': 'Current Location Phone Number', 'Current Location Treating Hospital': 'Current Location Treating Hospital', 'Current Log Entries': 'Entradas de Log atuais', 'Current Memberships': 'Participaes atuais', 'Current Mileage': 'Current Mileage', 'Current Notes': 'Notes atual', 'Current Records': 'Registros atuais', 'Current Registrations': 'Registros atuais', 'Current Status': 'Status atual', 'Current Team Members': 'Os atuais membros da equipe', 'Current Twitter account': 'Conta atual no Twitter', 'Current community priorities': 'Atuais prioridades da comunidade', 'Current general needs': 'Atuais necessidades gerais', 'Current greatest needs of vulnerable groups': 'Maiores necessidades atuais dos grupos vulnerveis', 'Current health problems': 'Problemas de sade atuais', 'Current number of patients': 'Nmero atual de pacientes', 'Current problems, categories': 'Problemas atuais, categorias', 'Current problems, details': 'Problemas atuais, detalhes', 'Current request': 'Pedido atual', 'Current response': 'Resposta atual', 'Current session': 'Sesso atual', 'Currently no Certifications registered': 'Nenhuma certificao registrada atualmente', 'Currently no Competencies registered': 'Nenhuma competncia registrada atualmente', 'Currently no Course Certificates registered': 'Nenhum Curso Certificado registrado atualmente', 'Currently no Credentials registered': 'Nenhuma credencial registrada atualmente', 'Currently no Missions registered': 'Nenhuma misso registrada atualmente', 'Currently no Skill Equivalences registered': 'Nenhuma equivelncia de habilidade registrada atualmente', 'Currently no Skills registered': 'Currently no Skills registered', 'Currently no Trainings registered': 'Atualmente no h treinamentos registrados', 'Currently no entries in the catalog': 'Nenhuma entrada no catlogo atualmente', 'Custom Database Resource (e.g., anything defined as a resource in Sahana)': 'Bnaco de Dados customizado de Recursos (por exemplo, nada definido como recurso no Sahana)', 'DC': 'DC', 'DNA Profile': 'Perfil de DNA', 'DNA Profiling': 'Perfil de DNA', 'DVI Navigator': 'Navegador DVI', 'Dam Overflow': 'Barragem ESTOURO', 'Damage': 'dano', 'Dangerous Person': 'Pessoa perigosa', 'Dashboard': 'Painel', 'Data': 'Dados', 'Data Type': 'Data Type', 'Data uploaded': 'Dados carregados', 'Database': 'DATABASE', 'Date': 'date', 'Date & Time': 'Date & Time', 'Date Available': 'Data Disponvel', 'Date Received': 'Data do recebimento', 'Date Requested': 'Data do pedido', 'Date Required': 'Necessria', 'Date Sent': 'Data de Envio', 'Date Until': 'Data At', 'Date and Time': 'Data e Hora', 'Date and time this report relates to.': 'Data e hora relacionadas a este relatrio.', 'Date of Birth': 'Data de Nascimento', 'Date of Latest Information on Beneficiaries Reached': 'Data da ltima informao sobre Beneficirios Alcanado', 'Date of Report': 'Data do relatrio', 'Date of Treatment': 'Date of Treatment', 'Date/Time': 'data/hora', 'Date/Time of Find': 'Pesquisa de data/hora', 'Date/Time of disappearance': 'Data/hora do desaparecimento', 'Date/Time when found': 'Data/hora quando foi encontrado', 'Date/Time when last seen': 'Data/ hora em que foi visto pela ltima vez', 'De-duplicator': 'Anti duplicador', 'Dead Bodies': 'Dead Bodies', 'Dead Body': 'Cadver', 'Dead Body Details': 'Detalhes do Cadver', 'Dead Body Reports': 'Relatrios de Cadver', 'Dead body report added': 'Relatrio de cadaver incluso.', 'Dead body report deleted': 'Relatrio de cadver excludo.', 'Dead body report updated': 'Relatrio de cadver atualizado', 'Deaths in the past 24h': 'Mortes nas ltimas 24 horas', 'Deaths/24hrs': 'Mortes/24hrs', 'Decimal Degrees': 'Graus decimais', 'Decision': 'DECISO', 'Decomposed': 'Decomposto', 'Default Height of the map window.': 'Altura Padro da janela do mapa.', 'Default Location': 'Default Location', 'Default Map': 'Mapa padro', 'Default Marker': 'Padro de mercado', 'Default Width of the map window.': 'Padro de largura da janela do mapa.', 'Default synchronization policy': 'Poltica de sincronizao de padro', 'Defecation area for animals': 'rea de defecao para animais', 'Define Scenarios for allocation of appropriate Resources (Human, Assets & Facilities).': 'Cenrios De definir para alocao adequado de recursos (humanos, Ativos & instalaes).', 'Defines the icon used for display of features on handheld GPS.': 'Define o cone utilizado para exibio de recursos no GPS porttil.', 'Defines the icon used for display of features on interactive map & KML exports.': 'Define o cone utilizado para exibio de recursos no mapa interativo & exportaes KML.', 'Defines the marker used for display & the attributes visible in the popup.': 'Define o marcador utilizado para exibir & os atributos visveis no pop-up.', 'Degrees must be a number between -180 and 180': 'Os graus devem ser um nmero entre -180 e 180', 'Dehydration': 'Desidratao', 'Delete': 'Excluir', 'Delete Alternative Item': 'EXCLUIR Item Alternativo', 'Delete Assessment': 'Excluir Avaliao', 'Delete Assessment Summary': 'Excluir Resumo da Avaliao', 'Delete Asset': 'Excluir Ativo', 'Delete Asset Assignment': 'Excluir o recurso designado', 'Delete Asset Log Entry': 'EXCLUIR recurso de entrada de Log', 'Delete Baseline': 'apagar linha base', 'Delete Baseline Type': 'apagar tipo de linha base', 'Delete Brand': 'apagar marca', 'Delete Budget': 'apagar oramento', 'Delete Bundle': 'apagar pacote', 'Delete Catalog': 'Excluir o Catlogo', 'Delete Catalog Item': 'apagar item do catlogo', 'Delete Certificate': 'Excluir Certificado', 'Delete Certification': 'Excluir Certificao', 'Delete Cluster': 'Exclui Cluster', 'Delete Cluster Subsector': 'EXCLUIR Cluster Subsector', 'Delete Commitment': 'Excluir Compromisso', 'Delete Commitment Item': 'Excluir Item de Compromisso', 'Delete Competency': 'Excluir Competncia', 'Delete Competency Rating': 'Excluir Classificao da Competncia', 'Delete Contact Information': 'Excluir Informaes de Contato', 'Delete Course': 'Excluir Curso', 'Delete Course Certificate': 'Excluir Certificado do Curso', 'Delete Credential': 'Excluir Credencial', 'Delete Document': 'Excluir documento', 'Delete Donor': 'EXCLUIR Dador', 'Delete Entry': 'Excluir Entrada', 'Delete Event': 'Excluir Evento', 'Delete Feature Class': 'Excluir Classe de Recurso', 'Delete Feature Layer': 'Excluir Camada de Componentes', 'Delete GPS data': 'Delete GPS data', 'Delete Group': 'Excluir Grupo', 'Delete Home': 'Delete Home', 'Delete Hospital': 'Excluir Hospital', 'Delete Image': 'Excluir Imagem', 'Delete Impact': 'Excluir Impacto', 'Delete Impact Type': 'Excluir Tipo De Impacto', 'Delete Incident Report': 'Excluir Relatrio de Incidentes', 'Delete Inventory Item': 'EXCLUIR Item De Inventrio', 'Delete Item': 'Excluir Item', 'Delete Item Category': 'EXCLUIR categoria de Itens', 'Delete Item Pack': 'EXCLUIR Pacote de Itens', 'Delete Job Role': 'Excluir Cargo', 'Delete Key': 'Tecla de excluso', 'Delete Kit': 'EXCLUIR Kit', 'Delete Layer': 'Excluir Camada', 'Delete Level 1 Assessment': 'EXCLUIR Nvel 1 Avaliao', 'Delete Level 2 Assessment': 'EXCLUIR Nvel 2 Avaliao', 'Delete Location': 'Excluir locao', 'Delete Map Configuration': 'EXCLUIR Mapa de configurao', 'Delete Marker': 'EXCLUIR Marcador', 'Delete Membership': 'Excluir membro', 'Delete Message': 'Excluir mensagem', 'Delete Mission': 'EXCLUIR Misso', 'Delete Need': 'Excluir necessidades', 'Delete Need Type': 'Excluir tipos de necessidades', 'Delete Office': 'Excluir escritrio', 'Delete Organization': 'Excluir organizao', 'Delete Patient': 'Delete Patient', 'Delete Peer': 'Excluir par', 'Delete Person': 'excluir pessoa', 'Delete Photo': 'Excluir Foto', 'Delete Population Statistic': 'EXCLUIR Populao Estatstica', 'Delete Position': 'EXCLUIR Posio', 'Delete Project': 'Excluir Projeto', 'Delete Projection': 'Excluir Projeo', 'Delete Rapid Assessment': 'Excluir Avaliao Rpida', 'Delete Received Item': 'Excluir Item Recebido', 'Delete Received Shipment': 'Excluir Embarque Recebido', 'Delete Record': 'Excluir Registro', 'Delete Relative': 'Delete Relative', 'Delete Report': 'Excluir Relatrio', 'Delete Request': 'Excluir Solicitao', 'Delete Request Item': 'Excluir item de solicitao', 'Delete Resource': 'Excluir Recurso', 'Delete Room': 'Excluir Sala', 'Delete Scenario': 'Excluir Cenrio', 'Delete Section': 'Excluir seo', 'Delete Sector': 'Excluir Setor', 'Delete Sent Item': 'Excluir Item Enviado', 'Delete Sent Shipment': 'Excluir Embarque Enviado', 'Delete Service Profile': 'Excluir perfil de servio', 'Delete Setting': 'Excluir Definio', 'Delete Skill': 'Excluir habilidade', 'Delete Skill Equivalence': 'Excluir equivalncia de habilidade', 'Delete Skill Provision': 'Excluir Proviso de Habilidade', 'Delete Skill Type': 'Excluir Tipo de Habilidade', 'Delete Staff Type': 'Excluir Tipo De Equipe', 'Delete Status': 'Excluir Posio/Estado', 'Delete Subscription': 'Excluir assinatura', 'Delete Subsector': 'Excluir subsetor', 'Delete Survey Answer': 'Excluir reposta da pesquisa', 'Delete Survey Question': 'Excluir pergunta da pesquisa', 'Delete Survey Section': 'Excluir seo da pesquisa', 'Delete Survey Series': 'Excluir srie da pesquisa', 'Delete Survey Template': 'Excluir modelo da pesquisa', 'Delete Training': 'Excluir Treinamento', 'Delete Unit': 'Excluir Unidade', 'Delete User': 'Excluir usurio', 'Delete Vehicle': 'Delete Vehicle', 'Delete Vehicle Details': 'Delete Vehicle Details', 'Delete Volunteer': 'EXCLUIR Voluntrio', 'Delete Warehouse': 'Exclur Armazm', 'Delete from Server?': 'Excluir do Servidor?', 'Delphi Decision Maker': 'tomador de deciso Delphi', 'Demographic': 'Demogrfico', 'Demonstrations': 'Demonstraes', 'Dental Examination': 'Exame Dentrio', 'Dental Profile': 'Perfil Dentrio', 'Deployment Location': 'Deployment Location', 'Describe the condition of the roads to your hospital.': 'Descreva as condies da estrada at o seu hospital.', 'Describe the procedure which this record relates to (e.g. "medical examination")': 'Descreva o procedimento ao qual este registro est relacionado (Ex: "exame mdico")', 'Description': 'Descrio', 'Description of Contacts': 'Descrio dos Contatos', 'Description of defecation area': 'Descrio da rea de defecao', 'Description of drinking water source': 'Descrio da fonte de gua potvel', 'Description of sanitary water source': 'Descrio da fonte de gua sanitria', 'Description of water source before the disaster': 'Descrio da fonte de gua antes do desastre', 'Descriptive Text (e.g., Prose, etc)': 'Texto Descritivo (por exemplo, Prosa, etc.)', 'Desire to remain with family': 'O desejo de permanecer com a famlia', 'Destination': 'destino', 'Destroyed': 'Destrudo', 'Details': 'detalhes', 'Details field is required!': 'Campo de detalhes obrigatrio!', 'Dialysis': 'Dilise', 'Diaphragms, horizontal bracing': 'Diafragmas, interditar horizontal', 'Diarrhea': 'Diarria', 'Dignitary Visit': 'Visita de Dignatrios', 'Direction': 'Endereo', 'Disable': 'Desativar', 'Disabled': 'desativado', 'Disabled participating in coping activities': 'Deficiente participando de enfrentamento', 'Disabled?': 'Desativado?', 'Disaster Victim Identification': 'Identificao de Vtima de Desastre', 'Disaster Victim Registry': 'Registro de Vtima de Desastre', 'Disaster clean-up/repairs': 'Desastre limpeza/reparos', 'Discharge (cusecs)': 'Quitao (cusecs)', 'Discharges/24hrs': 'Descargas/24horas', 'Discussion Forum': 'Frum de Discusso', 'Discussion Forum on item': 'Frum de discusso do item', 'Disease vectors': 'Vectores doena', 'Dispensary': 'Dispensrio', 'Displaced': 'Deslocadas', 'Displaced Populations': 'Populaes deslocadas', 'Display Polygons?': 'exibir Polgonos?', 'Display Routes?': 'Exibir Rotas?', 'Display Tracks?': 'exibir Trilhas?', 'Display Waypoints?': 'Exibir Rota?', 'Distance between defecation area and water source': 'Distncia entre rea de esgoto e fonte de gua', 'Distance from %s:': 'Distncia de %s:', 'Distance(Kms)': 'Distncia(Kms)', 'Distribution': 'Distribuio de', 'Distribution groups': 'Grupos de distribuio', 'District': 'Distrito', 'Do you really want to delete these records?': 'Voc realmente deseja excluir esses registros?', 'Do you want to cancel this received shipment? The items will be removed from the Inventory. This action CANNOT be undone!': 'Voc deseja cancelar este carregamento que foi recebido? Os itens sero removidos do inventrio. Esta ao no pode ser desfeita!', 'Do you want to cancel this sent shipment? The items will be returned to the Inventory. This action CANNOT be undone!': 'Voc deseja cancelar esse carregamento enviado? Os itens sero retornados para o inventrio. Esta ao no pode ser desfeita!', 'Do you want to receive this shipment?': 'Voc deseja receber esse carregamento?', 'Do you want to send these Committed items?': 'Voc deseja enviar esses itens Consolidados?', 'Do you want to send this shipment?': 'Voc deseja enviar este carregamento?', 'Document': 'documento', 'Document Details': 'Detalhes do Documento', 'Document Scan': 'Scanear Documento', 'Document added': 'Documento includo', 'Document deleted': 'Documento excludo', 'Document removed': 'Document removed', 'Document updated': 'Documento Atualizado', 'Documents': 'Documentos', 'Documents and Photos': 'Documentos e Fotos', 'Does this facility provide a cholera treatment center?': 'Esta facilidade proporciona um centro de tratamento da clera?', 'Doing nothing (no structured activity)': 'Fazendo nada (sem atividade estruturada)', 'Dollars': 'dlares', 'Domain': 'domnio', 'Domestic chores': 'Afazeres domsticos', 'Donated': 'Doado', 'Donation Certificate': 'Certificado de doaao', 'Donation Phone #': 'Nmero de Telefone de doaao', 'Donor': 'Dador', 'Donor Details': 'Doador Detalhes', 'Donor added': 'Doador includo', 'Donor deleted': 'Doador excludo', 'Donor updated': 'Doador ATUALIZADO', 'Donors': 'Doadores', 'Donors Report': 'Relatrio de Doadores', 'Door frame': 'Quadro de porta', 'Download PDF': 'Fazer download do PDF', 'Download Template': 'Download Template', 'Draft': 'rascunho', 'Drainage': 'Drenagem', 'Drawing up a Budget for Staff & Equipment across various Locations.': 'Elaborar um oramento para Equipe & Equipamento de vrios locais.', 'Drill Down by Group': 'Detalhar por grupo', 'Drill Down by Incident': 'Detalhar por incidente', 'Drill Down by Shelter': 'Detalhar por abrigo', 'Driving License': 'Carteira de Motorista', 'Drought': 'Seca', 'Drugs': 'Drogas', 'Dug Well': 'Cavaram Bem', 'Duplicate?': 'Duplicado?', 'Duration': 'Durao', 'Dust Storm': 'Tempestade de Poeira', 'Dwelling': 'Habitao', 'Dwellings': 'Habitaes', 'E-mail': 'Correio eletrnico', 'EMS Reason': 'Razo EMS', 'EMS Status': 'EMS Status', 'ER Status': 'ER Status', 'ER Status Reason': 'Razo ER Status', 'EXERCISE': 'EXERCISE', 'Early Recovery': 'Incio De Recuperao', 'Earth Enabled?': 'Earth Enabled?', 'Earthquake': 'Terremotos', 'Edit': 'Editar', 'Edit Activity': 'Editar Atividade', 'Edit Address': 'Editar Endereo', 'Edit Alternative Item': 'Editar Item Alternativo', 'Edit Application': 'Editar Aplicao', 'Edit Assessment': 'Editar avaliao', 'Edit Assessment Summary': 'Editar resumo da avaliao', 'Edit Asset': 'Editar recurso', 'Edit Asset Assignment': 'Editar designao do recurso', 'Edit Asset Log Entry': 'EDITAR ENTRADA DE Log de ATIVOs', 'Edit Baseline': 'Editar base de avaliao', 'Edit Baseline Type': 'Editar tipo de base de avaliao', 'Edit Brand': 'Editar marca', 'Edit Budget': 'Editar oramento', 'Edit Bundle': 'Editar Pacote', 'Edit Camp': 'EDITAR acampamento', 'Edit Camp Service': 'EDITAR Servio de acampamento', 'Edit Camp Type': 'Editar Tipo de Campo', 'Edit Catalog': 'Editar catlogo', 'Edit Catalog Item': 'Editar item do catlogo', 'Edit Certificate': 'Editar Certificado', 'Edit Certification': 'Editar Certificao', 'Edit Cluster': 'Editar grupo', 'Edit Cluster Subsector': 'Editar subgrupo', 'Edit Commitment': 'Editar compromisso', 'Edit Commitment Item': 'Editar Item De Compromisso', 'Edit Committed Person': 'Edit Committed Person', 'Edit Competency': 'Editar Competncia', 'Edit Competency Rating': 'Editar Classificao da Competncia', 'Edit Contact': 'Editar Contato', 'Edit Contact Information': 'Editar Informaes de Contato', 'Edit Contents': 'Editar Contedo', 'Edit Course': 'Editar Curso', 'Edit Course Certificate': 'Editar Certificado de Curso', 'Edit Credential': 'Editar Credencial', 'Edit Dead Body Details': 'Editar Detalhes do Cadver', 'Edit Description': 'Editar Descrio', 'Edit Details': 'Editar detalhes', 'Edit Disaster Victims': 'Editar vtimas do desastre', 'Edit Document': 'Editar documento', 'Edit Donor': 'Editar Doador', 'Edit Email Settings': 'Editar As Configuraes De E-Mail', 'Edit Entry': 'Editar Entrada', 'Edit Event': 'Editar evento', 'Edit Facility': 'Editar recurso', 'Edit Feature Class': 'EDITAR CLASSE DE RECURSO', 'Edit Feature Layer': 'Editar Recurso Camada', 'Edit Flood Report': 'Editar Relatrio de Enchente', 'Edit GPS data': 'Edit GPS data', 'Edit Gateway Settings': 'Editar Configuraes de Gateway', 'Edit Group': 'Grupo de edio', 'Edit Home': 'Edit Home', 'Edit Hospital': 'Editar Hospital', 'Edit Human Resource': 'Editar Recursos Humanos', 'Edit Identification Report': 'Editar Relatrio de identificao', 'Edit Identity': 'Editar Identidade', 'Edit Image': 'Editar Imagem', 'Edit Image Details': 'Editar Detalhes da Imagem', 'Edit Impact': 'Editar Impacto', 'Edit Impact Type': 'Editar Tipo De Impacto', 'Edit Import File': 'Edit Import File', 'Edit Incident Report': 'Editar Relatrio de Incidente', 'Edit Inventory Item': 'Editar Item De Inventrio', 'Edit Item': 'Editar Item', 'Edit Item Category': 'Editar Item de categoria', 'Edit Item Pack': 'Editar Pacote de Itens', 'Edit Job Role': 'Editar cargo', 'Edit Key': 'Editar Tecla', 'Edit Kit': 'Editar Kit', 'Edit Layer': 'Editar Camada', 'Edit Level %d Locations?': 'Editar Locais Nvel d% ?', 'Edit Level 1 Assessment': 'Editar Avaliao Nvel 1', 'Edit Level 2 Assessment': 'Editar nvel 2 de acesso', 'Edit Location': 'Local de edio', 'Edit Log Entry': 'EDITAR ENTRADA DE Log', 'Edit Map Configuration': 'Editar Mapa de configurao', 'Edit Map Services': 'Editar mapa de servios', 'Edit Marker': 'Marcador de Edio', 'Edit Membership': 'Editar inscrio', 'Edit Message': 'Editar mensagem', 'Edit Messaging Settings': 'Editar Configuraes De Mensagens', 'Edit Mission': 'Editar Misso', 'Edit Modem Settings': 'Editar Configuraes Do Modem', 'Edit Need': 'Ediao Necessria', 'Edit Need Type': 'Editar tipo de necessidade', 'Edit Note': 'Editar nota', 'Edit Office': 'Escritrio de edio', 'Edit Options': 'Opes de edio', 'Edit Organization': 'Organizar edies', 'Edit Parameters': 'Parametros de edio', 'Edit Patient': 'Edit Patient', 'Edit Peer Details': 'Detalhes do par editado', 'Edit Person Details': 'Editar detalhes pessoais', 'Edit Personal Effects Details': 'Editar detalhes de objectos pessoais', 'Edit Photo': 'Editar Foto', 'Edit Population Statistic': 'Editar Estatstica da Populao', 'Edit Position': 'Editar Posio', 'Edit Problem': 'Editar Problema', 'Edit Project': 'Editar Projecto', 'Edit Projection': 'Editar Projeo', 'Edit Rapid Assessment': 'Editar Rpida Avaliao', 'Edit Received Item': 'Editar Item Recebido', 'Edit Received Shipment': 'Editar Embarque Recebido', 'Edit Record': 'Editar Registro', 'Edit Registration': 'Editar Registro', 'Edit Registration Details': 'Editar Detalhes De Registro', 'Edit Relative': 'Edit Relative', 'Edit Report': 'Editar Relatrio', 'Edit Request': 'Editar Pedido', 'Edit Request Item': 'Editar Item Pedido', 'Edit Requested Skill': 'Edit Requested Skill', 'Edit Resource': 'Editar Recurso', 'Edit River': 'EDITAR RIO', 'Edit Role': 'Editar Funo', 'Edit Room': 'Editar Sala', 'Edit SMS Settings': 'Edit SMS Settings', 'Edit SMTP to SMS Settings': 'Edit SMTP to SMS Settings', 'Edit Scenario': 'Editar cenrio', 'Edit Sector': 'Editar Setor', 'Edit Sent Item': 'Editar Item Enviado', 'Edit Setting': 'Editar Definio', 'Edit Settings': 'Editar Configuraes', 'Edit Shelter': 'EDITAR ABRIGO', 'Edit Shelter Service': 'Editar Servio de Abrigo', 'Edit Shelter Type': 'EDITAR Tipo De Abrigo', 'Edit Skill': 'editar competncia', 'Edit Skill Equivalence': 'Editar Equivalncia de Habilidade', 'Edit Skill Provision': 'Editar Habilidade de Fornecimento', 'Edit Skill Type': 'editar tipo de competncia', 'Edit Solution': 'editar soluo', 'Edit Staff': 'editar pessoal', 'Edit Staff Member Details': 'Editar detalhes do membro da equipe', 'Edit Staff Type': 'EDITAR Tipo De Equipe', 'Edit Subscription': 'Editar assinatura', 'Edit Subsector': 'EDITAR Subsector', 'Edit Survey Answer': 'Editar resposta da pesquisa', 'Edit Survey Question': 'Editar pergunta da pesquisa', 'Edit Survey Section': 'EDITAR Seo de Pesquisa', 'Edit Survey Series': 'EDITAR Pesquisa de Srie', 'Edit Survey Template': 'EDITAR MODELO DE PESQUISA', 'Edit Task': 'Editar Tarefa', 'Edit Team': 'Editar equipe', 'Edit Theme': 'Editar tema', 'Edit Themes': 'EDITAR TEMAs', 'Edit Ticket': 'EDITAR Bilhete', 'Edit Track': 'EDITAR RASTREAMENTO', 'Edit Training': 'Editar Treinamento', 'Edit Tropo Settings': 'Editar Configuraes Tropo', 'Edit User': 'Editar Usurio', 'Edit Vehicle': 'Edit Vehicle', 'Edit Vehicle Details': 'Edit Vehicle Details', 'Edit Volunteer Availability': 'Editar Disponibilidade de Voluntrio', 'Edit Volunteer Details': 'Editar Detalhes de Voluntrio', 'Edit Warehouse': 'Editar Armazm', 'Edit Web API Settings': 'Edit Web API Settings', 'Edit current record': 'Editar Registro Atual', 'Edit message': 'Editar mensagem', 'Edit the Application': 'Editar a Aplicao', 'Editable?': 'Editvel?', 'Education': 'Educao', 'Education materials received': 'Materiais de educao recebido', 'Education materials, source': 'materiais de Educao, origem', 'Effects Inventory': 'Inventrio de efeitos', 'Eggs': 'Ovos', 'Either a shelter or a location must be specified': 'Um abrigo ou um local deve ser especificado', 'Either file upload or document URL required.': 'Um arquivo de upload ou URL do documento so necessrios.', 'Either file upload or image URL required.': 'Um arquivo de upload ou URL de imagem so necessrias.', 'Elderly person headed households (>60 yrs)': 'Chefes de Familia de idade avanada (>60 anos)', 'Electrical': 'Eltrico', 'Electrical, gas, sewerage, water, hazmats': 'Eltrica, gs, esgotos, gua, hazmats', 'Elevated': 'Elevado', 'Elevators': 'Elevadores', 'Email': 'E-MAIL', 'Email Address': 'Endereo de e-mail', 'Email Address to which to send SMS messages. Assumes sending to phonenumber@address': 'Email Address to which to send SMS messages. Assumes sending to phonenumber@address', 'Email Settings': 'Configuraes de e-mail', 'Email settings updated': 'As configuraes de e-mail atualizado', 'Embalming': 'Embalsamento', 'Embassy': 'Embaixada', 'Emergency Capacity Building project': 'Plano de emergncia de capacidade dos prdios', 'Emergency Department': 'Departamento de Emergncia', 'Emergency Shelter': 'Abrigo de Emergncia', 'Emergency Support Facility': 'Recurso De Suporte de emergncia', 'Emergency Support Service': 'Suporte do Servio de Emergncia', 'Emergency Telecommunications': 'Emergncia De Telecomunicaes', 'Enable': 'Enable', 'Enable/Disable Layers': 'Ativar/Desativar Camadas', 'Enabled': 'Habilitado', 'Enabled?': 'Enabled?', 'Enabling MapMaker layers disables the StreetView functionality': 'Enabling MapMaker layers disables the StreetView functionality', 'End Date': 'Data de encerramento', 'End date': 'Data de Trmino', 'End date should be after start date': 'Data Final deve ser maior do que a data de incio', 'End of Period': 'Fim de Perodo', 'English': 'Ingls', 'Enter Coordinates:': 'Entre as coordenadas:', 'Enter a GPS Coord': 'Digite uma Coordada GPS', 'Enter a name for the spreadsheet you are uploading (mandatory).': 'Digite um nome para a planilha que est fazendo Upload (obrigatrio).', 'Enter a name for the spreadsheet you are uploading.': 'Enter a name for the spreadsheet you are uploading.', 'Enter a new support request.': 'Digite um pedido novo de suporte.', 'Enter a unique label!': 'Digite um rtulo exclusivo!', 'Enter a valid date before': 'Digite uma data vlida antes de', 'Enter a valid email': 'Insira um email vlido', 'Enter a valid future date': 'Digite uma data futura vlida', 'Enter a valid past date': 'Enter a valid past date', 'Enter some characters to bring up a list of possible matches': 'Digite alguns caracteres para trazer uma lista de correspondncias possveis', 'Enter some characters to bring up a list of possible matches.': 'Digite alguns caracteres para trazer uma lista de correspondncias possveis.', 'Enter tags separated by commas.': 'Insira as tags separadas por vrgulas.', 'Enter the data for an assessment': 'Enter the data for an assessment', 'Enter the same password as above': 'Digite a mesma senha acima', 'Enter your firstname': 'Enter your firstname', 'Enter your organization': 'Enter your organization', 'Entered': 'Inserido', 'Entering a phone number is optional, but doing so allows you to subscribe to receive SMS messages.': 'Digitar um nmero de telefone opcional, mas ao fazer isto permite a voe se registrar para receber mensagens SMS.', 'Entry deleted': 'Entrada removida', 'Environment': 'Ambiente do', 'Equipment': 'Equipamento', 'Error encountered while applying the theme.': 'Erro encontrado ao aplicar o tema.', 'Error in message': 'Erro na mensagem', 'Error logs for "%(app)s"': 'Registro de erros de "%(app)s"', 'Error: no such record': 'Erro: nenhum registro', 'Errors': 'Erros', 'Est. Delivery Date': 'Est. Data de entrega', 'Estimated # of households who are affected by the emergency': '# estimado das famlias que so afetados pela emergncia', 'Estimated # of people who are affected by the emergency': '# estimado de pessoas que so afetados pela emergncia', 'Estimated Overall Building Damage': 'Dano total de construo estimado', 'Estimated total number of people in institutions': 'Nmero total estimado de pessoas em instituies', 'Euros': 'Euros', 'Evacuating': 'abandono', 'Evaluate the information in this message. (This value SHOULD NOT be used in public warning applications.)': 'Valide as informaes desta mensagem. (Este valor no deve ser utilizado em aplicaes de aviso pblico. ).', 'Event': 'Evento', 'Event Details': 'Detalhes do evento', 'Event added': 'Evento includo', 'Event deleted': 'Evento excludo', 'Event updated': 'Evento atualizado', 'Events': 'eventos', 'Example': 'Exemplo:', 'Exceeded': 'Excedido', 'Excellent': 'Excelente', 'Exclude contents': 'Excluir contedo', 'Excreta disposal': 'Eliminao de dejetos', 'Execute a pre-planned activity identified in <instruction>': 'Executar uma atividade pr-planejada identificada no', 'Exercise': 'Excerccio', 'Exercise?': 'Exerccio ?', 'Exercises mean all screens have a watermark & all notifications have a prefix.': "Exerccios significa que todas as telas tm uma marca d'gua & todas as comunicaes tm um prefixo.", 'Existing Placard Type': 'Cartaz existente Tipo', 'Existing Sections': 'Existing Sections', 'Existing food stocks': 'Estoques de alimentos existente', 'Existing location cannot be converted into a group.': 'Local Existente no pode ser convertido em um grupo.', 'Exits': 'Sadas', 'Expected Return Home': 'Expected Return Home', 'Experience': 'Experincia', 'Expiry Date': 'Data de expirao', 'Explosive Hazard': 'Perigo explosivo', 'Export': 'Exportar', 'Export Data': 'Exportar dados.', 'Export Database as CSV': 'Exportar o banco de dados como CSV', 'Export in GPX format': 'Exportar no formato GPX', 'Export in KML format': 'Exportar no formato KML', 'Export in OSM format': 'Exportar no formato OSM', 'Export in PDF format': 'Exportar no formato PDF', 'Export in RSS format': 'Exportar no formato RSS', 'Export in XLS format': 'Exportar no formato XLS', 'Exterior Only': 'Exterior Apenas', 'Exterior and Interior': 'Exterior e Interior', 'Eye Color': 'Cor dos Olhos', 'Facebook': 'Facebook', 'Facial hair, color': 'Cabelo Facial, cor', 'Facial hair, type': 'Cabelo Facial, digite', 'Facial hear, length': 'Facial ouvir, COMPRIMENTO', 'Facilities': 'Instalaes', 'Facility': 'Instalao', 'Facility Details': 'Detalhes da Instalao', 'Facility Operations': 'Facilidades nas Operaes', 'Facility Status': 'Status Facility', 'Facility Type': 'Tipo de Instalao', 'Facility added': 'Instalao includa', 'Facility or Location': 'Instalao ou Local', 'Facility removed': 'Recurso removido', 'Facility updated': 'Recurso atualizado', 'Fail': 'Falha', 'Failed!': 'Falha!', 'Fair': 'Razovel', 'Falling Object Hazard': 'Queda Objeto Risco', 'Families/HH': 'Famlias/HH', 'Family': 'Familia', 'Family tarpaulins received': 'lonas de familia recebidas', 'Family tarpaulins, source': 'lonas de familia, fuente', 'Family/friends': 'Famlia/amigos', 'Farmland/fishing material assistance, Rank': 'TERRAS/assistncia de material de Pesca, posio', 'Fatalities': 'Fatalidades', 'Fax': 'Nmero do Fax', 'Feature Class': 'Classe de Recursos', 'Feature Class Details': 'Detalhes da classe de recurso', 'Feature Class added': 'Classe de Recurso includa', 'Feature Class deleted': 'Classe de recurso excluda', 'Feature Class updated': 'Classe De recurso atualizada', 'Feature Classes': 'Classes de Recursos', 'Feature Classes are collections of Locations (Features) of the same type': 'Classes De recurso so grupos de localidades (recursos) do mesmo tipo', 'Feature Layer Details': 'Recurso Camada Detalhes', 'Feature Layer added': 'Recurso Camada includa', 'Feature Layer deleted': 'Recurso Camada excludo', 'Feature Layer updated': 'Recurso Camada atualizada', 'Feature Layers': 'Camadas recurso', 'Feature Namespace': 'Espao De recurso', 'Feature Request': 'Pedido de Componente', 'Feature Type': 'Tipo de Componente', 'Features Include': 'Componentes Incluidos', 'Female': 'Sexo Feminino', 'Female headed households': 'Famlias chefiadas por mulheres', 'Few': 'Poucos', 'Field': 'Campo', 'Field Hospital': 'Campo Hospital', 'File': 'arquivo', 'File Imported': 'File Imported', 'File Importer': 'File Importer', 'File name': 'File name', 'Fill in Latitude': 'Preencher na Latitude', 'Fill in Longitude': 'Preencher na Longitude', 'Filter': 'Filtro', 'Filter Field': 'Filtro de Campo', 'Filter Value': 'Filtro de Valor', 'Find': 'Localizar', 'Find All Matches': 'Localizar todos os equivalentes', 'Find Dead Body Report': 'Localizar Relatrio de Cadver', 'Find Hospital': 'Localizar Hospital', 'Find Person Record': 'Localizar registro de pessoa', 'Find Volunteers': 'Localizar Voluntrios', 'Find a Person Record': 'Localizar um Registro de Pessoa', 'Finder': 'Localizador', 'Fingerprint': 'Impresso digital', 'Fingerprinting': 'Impresses digitais', 'Fingerprints': 'Impresses Digitais', 'Finish': 'Terminar', 'Finished Jobs': 'Tarefa Terminada', 'Fire': 'Fogo', 'Fire suppression and rescue': 'Supresso e salvamento de incndio', 'First Name': 'Primeiro Nome', 'First name': 'Primeiro Nome', 'Fishing': 'Pesca', 'Flash Flood': 'Enchente', 'Flash Freeze': 'congelar o momento', 'Flexible Impact Assessments': 'Flexibilidade no Impacto de avaliaes', 'Flood': 'Enchente', 'Flood Alerts': 'Alertas de Enchente', 'Flood Alerts show water levels in various parts of the country': 'Os alertas de inundao mostram o nvel da gua em vrias partes do pas', 'Flood Report': 'Relatrio de Inundao', 'Flood Report Details': 'Detalhes do Relatrio de Inundao', 'Flood Report added': 'Relatrio de Inundao includo', 'Flood Report deleted': 'Relatrio de Inundao removido', 'Flood Report updated': 'Relatrio de Inundao actualizado', 'Flood Reports': 'Relatrios de Inundao', 'Flow Status': 'posio de fluxo', 'Focal Point': 'Ponto Central', 'Fog': 'Nevoeiro', 'Food': 'Food', 'Food Supply': 'Alimentao', 'Food assistance': 'Ajuda alimentar', 'Footer': 'Rodap', 'Footer file %s missing!': '% Arquivo rodap ausente!', 'For': 'Por', '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).', 'For a country this would be the ISO2 code, for a Town, it would be the Airport Locode.': 'Para um pas este seria o cdigo ISO2, para uma cidade, este seria o codigo do aeroporto (UNE/Locode).', '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.': 'Para cada parceiro de sincronizao, h uma tarefa de sincronizao padro que executada aps um intervalo de tempo especificado. Voc tambm pode configurar mais tarefas de sincronizao que podem ser customizadas de acordo com as suas necessidades. Clique no link direita para comear.', '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': 'Para segurana reforada, recomendvel digitar um nome de usurio e senha, e notificar os administradores de outras mquinas em sua organizao para incluir esse usurio e senha no UUID em Sincronizao -> Parceiros De Sincronizao', 'For live help from the Sahana community on using this application, go to': 'Para ajuda ao vivo da comunidade do Sahana sobre como utilizar esse aplicativo, v para', 'For messages that support alert network internal functions': 'Para mensagens que suportam funes internas de alertas de rede', 'For more details on the Sahana Eden system, see the': 'Para obter mais detalhes sobre o sistema Sahana Eden, consulte o', 'For more information, see': 'Para obter mais informaes, consulte o', 'For more information, see ': 'For more information, see ', 'For other types, the next screen will allow you to enter the relevant details...': 'Para outros tipos, a prxima tela permitir que voc digite os detalhes relevantes.', 'Forest Fire': 'Incndios florestais', 'Formal camp': 'Acampamento formal', 'Format': 'Formato', "Format the list of attribute values & the RGB value to use for these as a JSON object, e.g.: {Red: '#FF0000', Green: '#00FF00', Yellow: '#FFFF00'}": "Formatar a lista de valores de atributos & o valor RGB a ser usado para esses como o objeto JSON, Exemplo: {Red: '#FF0000, Green: '#00FF00', Yellow: '#FFFF00'}", 'Forms': 'formulrios', 'Found': 'localizado', 'Foundations': 'Fundaes', 'Freezing Drizzle': 'Garoa gelada', 'Freezing Rain': 'Chuva Gelada', 'Freezing Spray': 'Spray Gelado', 'French': 'Francs', 'Friday': 'sexta-feira', 'From': 'from', 'From Facility': 'From Facility', 'From Inventory': 'A partir do Inventrio', 'From Location': 'Do Local', 'From Organisation': 'Da organizao', 'From Organization': 'Da Organizao', 'From Person': 'Da Pessoa', 'Frost': 'Geada', 'Fulfil. Status': 'Encher. Status', 'Fulfillment Status': 'Status de preenchimento', 'Full': 'Cheio', 'Full beard': 'Barba completa', 'Fullscreen Map': 'Mapa em tela cheia', 'Functions available': 'Funes disponveis', 'Funding Organization': 'Financiar a Organizao', 'Funeral': 'Funeral', 'Further Action Recommended': 'Mais Aco Recomendada', 'GIS Reports of Shelter': 'Relatrios GIS de abrigos', 'GIS integration to view location details of the Shelter': 'Integration GIS para visualizar detalhes do local do Abrigo', 'GPS': 'GPS', 'GPS Data': 'GPS Data', 'GPS ID': 'GPS ID', 'GPS Marker': 'Marcador De GPS', 'GPS Track': 'Rastrear por GPS', 'GPS Track File': 'Rastrear Arquivo GPS', 'GPS data': 'GPS data', 'GPS data added': 'GPS data added', 'GPS data deleted': 'GPS data deleted', 'GPS data updated': 'GPS data updated', 'GPX Track': 'GPX RASTREAR', 'GRN': 'NRG', 'GRN Status': 'Status GRN', 'Gale Wind': 'Temporal', 'Gap Analysis': 'Anlise de Falhas', 'Gap Analysis Map': 'Mapa de Anlise de Falhas', 'Gap Analysis Report': 'Relatrio de Anlise de Falhas', 'Gap Map': 'Mapa de Falhas', 'Gap Report': 'Relatrio de Falhas', 'Gateway': 'Porto', 'Gateway Settings': 'Configuraes de Gateway', 'Gateway settings updated': 'Configuraes de Gateway atualizadas', 'Gender': 'Sexo', 'General': 'geral', 'General Comment': 'Comentrio Geral', 'General Medical/Surgical': 'Mdico/Cirrgico Geral', 'General emergency and public safety': 'Geral de emergncia e segurana pblica', 'General information on demographics': 'Informaes gerais sobre demografia', 'Generator': 'Gerador', 'Geocode': 'Geocodificar', 'Geocoder Selection': 'Seleo De geocodificador', 'Geometry Name': 'Nome da geometria', 'Geophysical (inc. landslide)': 'Geofsica (inc. deslizamento)', 'Geotechnical': 'Geotcnica', 'Geotechnical Hazards': 'RISCOS geotcnicos', 'Geraldo module not available within the running Python - this needs installing for PDF output!': 'Geraldo no disponveis no mdulo a execuo Python- necessrio instalar para sada PDF!', 'Geraldo not installed': 'Geraldo no instalado', 'German': 'German', 'Get incoming recovery requests as RSS feed': 'Obter pedidos recebidos de recuperao como feed RSS', 'Give a brief description of the image, e.g. what can be seen where on the picture (optional).': 'Fornecer uma descrio breve da imagem, por exemplo, o que pode ser visto no local da imagem (opcional).', 'Give information about where and when you have seen them': 'Fornecer informaes sobre onde e quando voc os viu', 'Global Messaging Settings': 'Configuraes Globais de Menssagem', 'Go': 'ir', 'Go to Request': 'Ir para Pedido', 'Goatee': 'Barbicha', 'Good': 'Vlido', 'Good Condition': 'Boa Condio', 'Goods Received Note': 'Nota de Recebimento de Mercadorias', "Google Layers cannot be displayed if there isn't a valid API Key": "Google Layers cannot be displayed if there isn't a valid API Key", 'Government': 'Governamental', 'Government UID': 'GOVERNO UID', 'Government building': 'Prdios Pblicos', 'Grade': 'Grau', 'Greek': 'grego', 'Green': 'verde', 'Ground movement, fissures': 'Movimento do solo terrestre, fissuras', 'Ground movement, settlement, slips': 'Movimento do solo terrestre, assentamentos, escorreges', 'Group': 'Grupo', 'Group Description': 'Descrio do Grupo', 'Group Details': 'Detalhes do grupo', 'Group ID': 'Group ID', 'Group Member added': 'Membro do grupo includo', 'Group Members': 'membros do grupo', 'Group Memberships': 'Associados do Grupo', 'Group Name': 'Nome do grupo', 'Group Title': 'Ttulo do grupo', 'Group Type': 'Tipo de grupo', 'Group added': 'Grupo adicionado', 'Group deleted': 'Grupo Excludo', 'Group description': 'Descrio do Grupo', 'Group updated': 'GRUPO ATUALIZADO', 'Groups': 'Grupos do', 'Groups removed': 'Grupos Removido', 'Guest': 'Convidado', 'HR Data': 'Dados de RH', 'HR Manager': 'Responsvel de RH', 'Hail': 'granizo', 'Hair Color': 'Cor do Cabelo', 'Hair Length': 'Comprimento do cabelo', 'Hair Style': 'Estilo do Cabelo', 'Has additional rights to modify records relating to this Organization or Site.': 'Tem direitos adicionais para modificar os registros relativos a esta organizao ou site.', 'Has data from this Reference Document been entered into Sahana?': 'Os dados deste documento de referncia foi digitado no Sahana?', 'Has only read-only access to records relating to this Organization or Site.': 'Tem apenas acesso de leitura para os registros relativos a esta organizao ou site.', 'Has the Certificate for receipt of the shipment been given to the sender?': 'O certificado de recepo do carregamento foi dado para o remetente?', 'Has the GRN (Goods Received Note) been completed?': 'O GRN (nota de mercadorias recebidas) foi concludo?', 'Hazard Pay': 'Pagar Risco', 'Hazardous Material': 'Material perigoso', 'Hazardous Road Conditions': 'Estradas em Condies de Risco', 'Header Background': 'Conhecimento de Chefia', 'Header background file %s missing!': 'Arquivo de Cabealho de Base %s ausente!', 'Headquarters': 'Matriz', 'Health': 'Sade', 'Health care assistance, Rank': 'Assistncia Sade, Classificao', 'Health center': 'Centro de Sade', 'Health center with beds': 'Centro de sade com camas', 'Health center without beds': 'Centro de sade sem camas', 'Health services status': 'Situao dos servios de sade', 'Healthcare Worker': 'Profissional de Sade', 'Heat Wave': 'Onda de calor', 'Heat and Humidity': 'Calor e Umidade', 'Height': 'Altura', 'Height (cm)': 'Altura (cm)', 'Height (m)': 'Altura (m)', 'Help': 'Ajuda', 'Helps to monitor status of hospitals': 'Ajuda para monitorar status de hospitais', 'Helps to report and search for Missing Persons': 'Ajuda a reportar e procurar pessoas desaparecidas.', 'Helps to report and search for missing persons': 'Ajuda a reportar e procurar pessoas desaparecidas.', 'Here are the solution items related to the problem.': 'Aqui esto as solues relacionadas ao problema.', 'Heritage Listed': 'Patrimnio Listado', 'Hierarchy Level %d Name': 'Hierarquia de Nvel% de d Nome', 'Hierarchy Level 0 Name (e.g. Country)': 'Hierarquia Nvel 0 Nome (por exemplo, Pas)', 'Hierarchy Level 0 Name (i.e. Country)': 'Hierarquia Nvel 0 nome (por exemplo Pas)', 'Hierarchy Level 1 Name (e.g. Province)': 'Hierarquia Nvel 1 Nome (por exemplo, Provncia)', 'Hierarchy Level 1 Name (e.g. State or Province)': 'Hierarquia Nvel 1 nome (por exemplo, Estado ou Provncia)', 'Hierarchy Level 2 Name (e.g. District or County)': 'Hierarquia de Nvel 2 Nome (por exemplo, Regio ou Municpio)', 'Hierarchy Level 3 Name (e.g. City / Town / Village)': 'Hierarquia Nvel 3 Nome (por exemplo, Cidade / Municipio / Vila)', 'Hierarchy Level 4 Name (e.g. Neighbourhood)': 'Hierarquia de Nvel 4 Nome (por exemplo, Bairro)', 'Hierarchy Level 5 Name': 'Nome de Nvel 5 na Hierarquia', 'High': 'Alta', 'High Water': "d'gua alta", 'Hindu': 'Hindu', 'History': 'Histria', 'Hit the back button on your browser to try again.': 'Clique no cone de voltar em seu navegador para tentar novamente.', 'Holiday Address': 'Endereo durante Feriado', 'Home': 'Residncia', 'Home Address': 'Endereo Residencial', 'Home City': 'Home City', 'Home Country': 'Pas natal', 'Home Crime': 'Crime Domstico', 'Home Details': 'Home Details', 'Home Phone Number': 'Home Phone Number', 'Home Relative': 'Home Relative', 'Home added': 'Home added', 'Home deleted': 'Home deleted', 'Home updated': 'Home updated', 'Homes': 'Homes', 'Hospital': 'Hospital', 'Hospital Details': 'Detalhes do Hospital', 'Hospital Status Report': 'Relatrio de Status do Hospital', 'Hospital information added': 'Informaes do hospital inclusas.', 'Hospital information deleted': 'Informaes do hospital excludas', 'Hospital information updated': 'informaes do Hospital atualizadas', 'Hospital status assessment.': 'Avaliao de status do Hospital.', 'Hospitals': 'Hospitais', 'Hot Spot': 'ponto de acesso', 'Hour': 'Hora', 'Hours': 'Horas', 'Household kits received': 'Kits caseiros recebidos', 'Household kits, source': 'Kit de famlia, origem', 'How does it work?': 'Como funciona?', 'How is this person affected by the disaster? (Select all that apply)': 'Como esta pessoa afetada pelo desastre? (selecione todos que se aplicam)', 'How long will the food last?': 'Quanto tempo ir durar a comida?', 'How many Boys (0-17 yrs) are Dead due to the crisis': 'Quantos rapazes (0-17 anos) esto Mortos devido crise', 'How many Boys (0-17 yrs) are Injured due to the crisis': 'Quantos rapazes (0-17 anos) esto Feridos devido crise', 'How many Boys (0-17 yrs) are Missing due to the crisis': 'Quantos rapazes (0-17 anos) esto Desaparecidos devido crise', 'How many Girls (0-17 yrs) are Dead due to the crisis': 'Quantas garotas (0-17 anos) morreram devido crise', 'How many Girls (0-17 yrs) are Injured due to the crisis': 'Quantas garotas (0-17 anos) esto feridas devido crise', 'How many Girls (0-17 yrs) are Missing due to the crisis': 'Quantas garotas (0-17 anos) esto perdidas devido crise', 'How many Men (18 yrs+) are Dead due to the crisis': 'Quantos homens (18 anos+) esto mortos devido crise', 'How many Men (18 yrs+) are Injured due to the crisis': 'Quantos homens (18 anos +) so feridos devido crise', 'How many Men (18 yrs+) are Missing due to the crisis': 'Quantos homens (18 anos +) esto ausentes devido crise', 'How many Women (18 yrs+) are Dead due to the crisis': 'Quantas mulheres (+18 anos) esto mortas devido crise', 'How many Women (18 yrs+) are Injured due to the crisis': 'Quantas mulheres (+18 anos) esto feridas devido crise', 'How many Women (18 yrs+) are Missing due to the crisis': 'Quantas mulheres acima de 18 anos esto ausentes devido crise', 'How many days will the supplies last?': 'Quantos dias iro durar os abastecimentos?', 'How many new cases have been admitted to this facility in the past 24h?': 'Quantos novos casos tenham sido admitidos a esta facilidade nas ltimas 24 horas?', 'How many of the patients with the disease died in the past 24h at this facility?': 'Como muitos dos pacientes com a doena morreram nas ltimas 24 horas nesta unidade?', 'How many patients with the disease are currently hospitalized at this facility?': 'Quantos pacientes com a doena esto atualmente internados nesta instalao?', '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.': 'Quanto detalhe visto. Um nvel alto de Zoom mostra muitos detalhes, mas no uma grande rea. Um nvel de Zoom baixo significa ver uma grande rea, mas no com um alto nvel de detalhe.', 'Human Resource': 'Recursos humanos', 'Human Resource Details': 'Detalhes de Recursos Humanos', 'Human Resource Management': 'Gerenciamento de recursos humanos', 'Human Resource added': 'Recurso humano adicionado', 'Human Resource removed': 'Recursos Humanos removido', 'Human Resource updated': 'Recursos Humanos atualizado', 'Human Resources': 'Recursos Humanos', 'Human Resources Management': 'Gerenciamento de Recursos Humanos', 'Humanitarian NGO': 'ONG humanitria', 'Hurricane': 'Furaco', 'Hurricane Force Wind': 'Furaco Fora Vento', 'Hybrid Layer': 'Hybrid Layer', 'Hygiene': 'Higiene', 'Hygiene NFIs': 'Higiene NFIs', 'Hygiene kits received': 'Kits de higiene recebido', 'Hygiene kits, source': 'Kits de higiene, origem', 'Hygiene practice': 'Prtica de higiene', 'Hygiene problems': 'PROBLEMAS DE HIGIENE', 'I accept. Create my account.': 'I accept. Create my account.', 'I am available in the following area(s)': 'Estou disponvel na(s) seguinte(s) rea(s)', 'ID Tag': 'Etiqueta de Identificao', 'ID Tag Number': 'Nmero da Etiqueta de Identificao', 'ID type': 'Tipo de ID', 'Ice Pressure': 'Presso de gelo', 'Iceberg': 'Icebergue', 'Identification': 'Identification', 'Identification Report': 'Identificao Relatrio', 'Identification Reports': 'Relatrios de Identificao', 'Identification Status': 'Status da Identificao', 'Identified as': 'Identificado como', 'Identified by': 'Identificado por', 'Identity': 'Identidade', 'Identity Details': 'Detalhes da identidade', 'Identity added': 'Identidade includa', 'Identity deleted': 'Identidade excluda', 'Identity updated': 'Identidade atualizada', 'If Staff have login accounts then they are given access to edit the details of the': 'Se o pessoal tiver contas de login, ento lhes dado acesso para editar os detalhes do', 'If a ticket was issued then please provide the Ticket ID.': 'Se um bilhete foi emitido ento por favor fornea o ID do bilhete.', 'If a user verifies that they own an Email Address with this domain, the Approver field is used to determine whether & by whom further approval is required.': 'Se um usurio verifica que eles possuem um endereo de email com este domnio, o campo Aprovador utilizado para determinar se e por quem aprovao adicional necessria.', 'If it is a URL leading to HTML, then this will downloaded.': 'Se for uma URL levando a HTML, ento este ser baixado.', 'If neither are defined, then the Default Marker is used.': 'Se nem so definidos, ento o Marcador Padro utilizado.', 'If no marker defined then the system default marker is used': 'Se nenhum marcador definido, o marcador padro do sistema utilizada', 'If no, specify why': 'Se no, especifique por que', 'If none are selected, then all are searched.': 'Se nenhuma for selecionada, ento todos so procurados.', "If selected, then this Asset's Location will be updated whenever the Person's Location is updated.": 'Se selecionado, esta localizao do ativo ser atualizado sempre que a localizao da pessoa atualizada.', 'If the location is a geographic area, then state at what level here.': 'Se o local uma rea geogrfica, ento defina em que nvel aqui.', 'If the request is for %s, please enter the details on the next screen.': 'If the request is for %s, please enter the details on the next screen.', 'If the request is for type "Other", you should enter a summary of the request here.': 'Se o pedido for para o tipo \ " Outro", voc deve digitar um resumo do pedido aqui.', 'If the request type is "Other", please enter request details here.': 'Se o tipo de pedido "other", por favor, digite aqui detalhes do pedido.', "If this configuration represents a region for the Regions menu, give it a name to use in the menu. The name for a personal map configuration will be set to the user's name.": 'Se esta configurao representa uma regio para o menu regies, d-lhe um nome a ser utilizado no menu. O nome de uma configurao pessoal do mapa ser configurado para o nome do usurio.', "If this field is populated then a user who specifies this Organization when signing up will be assigned as a Staff of this Organization unless their domain doesn't match the domain field.": 'Se esse campo for Preenchido, ento, um usurio que especificar esta organizao quando se registrar ser designado como um agente desta organizao a menos que seu domnio no corresponde ao campo de domnio.', 'If this field is populated then a user with the Domain specified will automatically be assigned as a Staff of this Organization': 'Se esse campo for preenchido, o usurio de um especfico Domain ser automaticamente registrado como funcionrio desta organizao.', 'If this is set to True then mails will be deleted from the server after downloading.': 'Se isso for ajustado para True, as correspondncias sero deletadas do servidor depois que o downloading for feito.', "If this is ticked, then this will become the user's Base Location & hence where the user is shown on the Map": 'Se isso for ticado, se tornar a base geogrfica do usurio e, consequentemente onde este aparece no mapa.', 'If this record should be restricted then select which role is required to access the record here.': 'Se esse registro deve ser restrito, selecione qual regra necessria para acessar o record aqui.', 'If this record should be restricted then select which role(s) are permitted to access the record here.': 'Se esse registro deve ser restrito, selectione qual (is) regra (s) sero permitidas para assess-lo aqui.', 'If yes, specify what and by whom': 'Se SIM, Especifique o qu e por quem', 'If yes, which and how': 'Se sim, quais e como', 'If you do not enter a Reference Document, your email will be displayed to allow this data to be verified.': 'Se voc no inserir um documento de referncia, seu e-mail ser exibido para permitir que esses dados sejam verificados.', "If you don't see the Hospital in the list, you can add a new one by clicking link 'Add Hospital'.": "Se voc no v o Hospital na lista, voc pode incluir um novo clicando no link 'incluir Hospital'.", "If you don't see the Office in the list, you can add a new one by clicking link 'Add Office'.": "Se voc no v o escritrio na lista, voc pode incluir um novo clicando no link 'incluir escritrio'.", "If you don't see the Organization in the list, you can add a new one by clicking link 'Add Organization'.": 'Se voce no v a Organizao na lista, voce poder adicionar uma nova clicando no link "Incluir Organizao"', 'If you know what the Geonames ID of this location is then you can enter it here.': 'Se voce conhecer o Geonames ID desta localizao ento voce poder inser-lo aqui.', 'If you know what the OSM ID of this location is then you can enter it here.': 'Se voce conhecer o OSM ID desta localizao, ento voce pode inser-lo aqui.', 'If you need to add a new document then you can click here to attach one.': 'Se houver necessidade de incluir um novo documento ento voce poder clicar aqui para anex-lo.', 'If you want several values, then separate with': 'Se voce deseja varios valores, separe com', 'If you would like to help, then please': 'Se voc gostaria de ajudar, ento por favor', 'Illegal Immigrant': 'Imigrante Ilegal', 'Image': 'Imagem', 'Image Details': 'Detalhes da Imagem', 'Image File(s), one image per page': 'Image File(s), one image per page', 'Image Tags': 'Imagem Tags', 'Image Type': 'Tipo de Imagem', 'Image Upload': 'Fazer atualizacao Da imagem', 'Image added': 'Imagem Adicionada', 'Image deleted': 'Imagem excluda', 'Image updated': 'Imagem atualizada', 'Imagery': 'Imagens', 'Images': 'Imagens', 'Impact Assessments': 'Avaliaes de impacto', 'Impact Details': 'Detalhes de impacto', 'Impact Type': 'Tipo de impacto', 'Impact Type Details': 'Detalhes dos tipos de impacto', 'Impact Type added': 'Tipo de impacto includo', 'Impact Type deleted': 'Tipo de impacto excludo', 'Impact Type updated': 'Atualizao dos tipos de impacto', 'Impact Types': 'Tipos de impactos', 'Impact added': 'Impacto includo', 'Impact deleted': 'Impacto excludo', 'Impact updated': 'Atualizao de impacto', 'Impacts': 'Impactos', 'Import': 'Importao', 'Import & Export Data': 'Importar & Exportar Dados', 'Import Data': 'Importar Dados', 'Import File': 'Import File', 'Import File Details': 'Import File Details', 'Import File deleted': 'Import File deleted', 'Import Files': 'Import Files', 'Import Job Count': 'Import Job Count', 'Import Jobs': 'Importar Tarefas', 'Import New File': 'Import New File', 'Import and Export': 'Importao e Exportao', 'Import from Ushahidi Instance': 'Importao da Instncia Ushahidi', 'Import if Master': 'Importar se Mestre', 'Import multiple tables as CSV': 'Importar tabelas multiplas como CSV', 'Import/Export': 'Importar/Exportar', 'Important': 'Importante', 'Importantly where there are no aid services being provided': 'Importante onde no h servios de apoio a ser prestado', 'Imported': 'Imported', 'Importing data from spreadsheets': 'Importar dados de planilhas', 'Improper decontamination': 'Descontaminao Imprpria', 'Improper handling of dead bodies': 'Manipulao inadequada de cadveres', 'In Catalogs': 'Em Catlogos', 'In Inventories': 'Em Inventrios', 'In Process': 'Em Processo', 'In Progress': 'Em Progresso', 'In Window layout the map maximises to fill the window, so no need to set a large value here.': 'Maximize o ajuste da janela para preenche-la toda, desta forma no ser necessrio configurar para uso de fonte grande.', 'Inbound Mail Settings': 'Definies de correio de entrada', 'Incident': 'Incidente', 'Incident Categories': 'Categorias Incidente', 'Incident Report': 'Relatrio de Incidente', 'Incident Report Details': 'Detalhes do relatrio de incidentes', 'Incident Report added': 'Relatrio de Incidente includo', 'Incident Report deleted': 'Relatrio de Incidente excludo', 'Incident Report updated': 'Relatrio de incidente atualizado', 'Incident Reporting': 'Relatrio de incidentes', 'Incident Reporting System': 'Sistema de relatrios de incidentes', 'Incident Reports': 'Relatrio de incidentes', 'Incidents': 'incidentes', 'Include any special requirements such as equipment which they need to bring.': 'Include any special requirements such as equipment which they need to bring.', 'Incoming': 'Entrada', 'Incoming Shipment canceled': 'Chegada da encomenda cancelada', 'Incoming Shipment updated': 'Chegada de encomenda actualizada.', 'Incomplete': 'Incompleto', 'Individuals': 'Individuais', 'Industrial': 'Industrial', 'Industrial Crime': 'Crime Industrial', 'Industry Fire': 'Indstria Fogo', 'Infant (0-1)': 'Criana (0-1)', 'Infectious Disease': 'Doena INFECCIOSA', 'Infectious Disease (Hazardous Material)': 'Doenas infecciosas (Material perigoso)', 'Infectious Diseases': 'Doenas infecciosas', 'Infestation': 'Infestao', 'Informal Leader': 'Lder Informal', 'Informal camp': 'Acampamento Informal', 'Information gaps': 'problemas de informao', 'Infusion catheters available': 'Cateteres de infuso disponvel', 'Infusion catheters need per 24h': 'Cateteres infuso necessrio por 24 H', 'Infusion catheters needed per 24h': 'Cateteres infuso necessrio por H', 'Infusions available': 'Infuses disponveis', 'Infusions needed per 24h': 'Infuses necessrio por 24H', 'Inspected': 'Inspecionado', 'Inspection Date': 'Data de Inspeo', 'Inspection date and time': 'Data e hora de inspeo', 'Inspection time': 'Hora da inspeo', 'Inspector ID': 'ID do Inspetor', 'Instant Porridge': 'Mingau Instantneo', "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.": 'Em vez de sincronizar automaticamente com outros pares pela rede, voce tambm pode sincronizar com arquivos, o que necessrio quando no h rede. Voc pode utilizar esta pgina para importar dados de sincronizao de arquivos e tambm exportar dados para arquivos de Sincronizao. Clique no link direita para ir para esta pgina.', 'Institution': 'Instituio', 'Insufficient': 'insuficiente', 'Insufficient privileges': 'Insufficient privileges', 'Insufficient vars: Need module, resource, jresource, instance': 'Variaveis insuficientes: necessario modulo, recurso, jrecurso, instncia', 'Insurance Renewal Due': 'Insurance Renewal Due', 'Intake Items': 'Itens de admisso', 'Intergovernmental Organization': 'Organizao Intergovernamental', 'Interior walls, partitions': 'Do Interior das paredes, parties', 'Internal State': 'Estado Interno', 'International NGO': 'ONG internacional', 'International Organization': 'Organizao Internacional', 'Interview taking place at': 'Entrevista em', 'Invalid': 'Invlido', 'Invalid Query': 'Consulta invlida', 'Invalid email': 'Invalid email', 'Invalid phone number': 'Invalid phone number', 'Invalid phone number!': 'Invalid phone number!', 'Invalid request!': 'Pedido invlido!', 'Invalid ticket': 'Bilhete Invlido', 'Inventories': 'Inventrios.', 'Inventory': 'Inventrio', 'Inventory Item': 'Item do inventrio', 'Inventory Item Details': 'Detalhes do Item de inventrio', 'Inventory Item added': 'Item includo no inventrio', 'Inventory Item deleted': 'Item do inventrio excludo', 'Inventory Item updated': 'Item de Inventrio atualizado', 'Inventory Items': 'Itens do Inventrio', 'Inventory Items Available for Request Item': 'Itens de inventrio disponveis para Pedir um Item', 'Inventory Items include both consumable supplies & those which will get turned into Assets at their destination.': 'Itens de invenrrio incluem ambos suprimentos consumveis & aqueles que se transformaro em Ativos no seu destino.', 'Inventory Management': 'Gerenciamento de Inventrio', 'Inventory Stock Position': 'Inventory Stock Position', 'Inventory functionality is available for:': 'Inventrio de funcionalidades esta disponvel para:', 'Inventory of Effects': 'Inventrio de Efeitos', 'Is editing level L%d locations allowed?': ' permitido editar o nvel dos locais L%d?', 'Is it safe to collect water?': ' seguro coletar gua?', 'Is this a strict hierarchy?': 'Esta uma hierarquia rigorosa?', 'Issuing Authority': 'Autoridade emissora', '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.': 'Ele captura no apenas os locais onde elas esto ativas, mas tambm captura informaes sobre o conjunto de projetos que est fornecendo em cada regio.', 'Italian': 'Italian', 'Item': 'Item', 'Item Added to Shipment': 'Item Includo para Embarque', 'Item Catalog Details': 'Detalhes do item do catlogo', 'Item Categories': 'Categorias do Item', 'Item Category': 'Categoria do Item', 'Item Category Details': 'Detalhes da categoria de item', 'Item Category added': 'Categoria de item includa', 'Item Category deleted': 'Categoria de item excluda', 'Item Category updated': 'Atualizao da categoria de item', 'Item Details': 'Detalhes do item', 'Item Pack Details': 'Detalhes do pacote de itens', 'Item Pack added': 'Pacote de itens', 'Item Pack deleted': 'Pacote de itens excludo', 'Item Pack updated': 'Itens de Pacote atualizados', 'Item Packs': 'Item de Pacotes', 'Item added': 'Item includo', 'Item added to Inventory': 'Itens adicionados ao Inventrio', 'Item added to shipment': 'Item includo para embarque', 'Item already in Bundle!': 'Item j no pacote configurvel!', 'Item already in Kit!': 'Item j no Kit!', 'Item already in budget!': 'Item j no Oramento!', 'Item deleted': 'Item Excludo', 'Item removed from Inventory': 'Item removido do Inventrio', 'Item updated': 'Item atualizado', 'Items': 'Itens', 'Items in Category can be Assets': 'itens na categoria podem ser ativos', 'Japanese': 'japons', 'Jerry can': 'Jerry pode', 'Jew': 'Judeu', 'Job Market': 'Mercado de trabalho', 'Job Role': 'Funo de trabalho', 'Job Role Catalog': 'Catalogo de Funao de trabalho', 'Job Role Details': 'Detalhes da Funo', 'Job Role added': 'funao de trabalho inclusa', 'Job Role deleted': 'Funao de trabalho excluida', 'Job Role updated': 'Funo actualizada', 'Job Roles': 'Funes', 'Job Title': 'Ttulo do Cargo', 'Jobs': 'Tarefas', 'Journal': 'Dirio', 'Journal Entry Details': 'Detalhes da Entrada de Dirio', 'Journal entry added': 'Entrada de dirio includa', 'Journal entry deleted': 'Entrada de dirio removida', 'Journal entry updated': 'Entrada de dirio atualizado', 'Key': 'Tecla', 'Key Details': 'Detalhes da Chave', 'Key added': 'Chave adicionada', 'Key deleted': 'Chave removida', 'Key updated': 'Chave actualizada', 'Keys': 'Teclas', 'Kit': 'kit', 'Kit Contents': 'Contedo Kit', 'Kit Details': 'Detalhes do Kit', 'Kit Updated': 'Kit de Atualizao', 'Kit added': 'Pacote adicionado', 'Kit deleted': 'Kit excludo', 'Kit updated': 'Kit de atualizao', 'Kits': 'Kits', 'Known Identities': 'Identidades conhecido', 'Known incidents of violence against women/girls': 'Incidentes de violncia conhecidos contra mulheres/garotas', 'Known incidents of violence since disaster': 'Incidentes de violncia conhecidos desde o desastre', 'Korean': 'Korean', 'LICENSE': 'LICENA', 'Lack of material': 'Falta de material', 'Lack of school uniform': 'Falta de uniforme escolar', 'Lack of supplies at school': 'Falta de suprimentos na escola', 'Lack of transport to school': 'Falta de transporte escolar', 'Lactating women': 'Mulheres lactantes', 'Lahar': 'Lahar', 'Landslide': 'Deslizamento', 'Language': 'Linguagem', 'Last Name': 'sobrenome', 'Last known location': 'ltimo local conhecido', 'Last name': 'Last name', 'Last synchronization time': 'Horrio da ltima sincronizao', 'Last updated': 'ltima atualizao', 'Last updated ': 'Last updated ', 'Last updated by': 'ltima atualizao por', 'Last updated on': 'ltima Atualizao em', 'Latitude': 'Latitude', 'Latitude & Longitude': 'Latitude & Longitude', 'Latitude is North-South (Up-Down).': 'Latitude sentido norte-sul (emcima-embaixo).', 'Latitude is zero on the equator and positive in the northern hemisphere and negative in the southern hemisphere.': 'Latitude zero na linha do Equador, positiva no hemisfrio norte e negativa no hemisfrio sul.', 'Latitude of Map Center': 'Latitude DO MAPA Centro', 'Latitude of far northern end of the region of interest.': 'Latitude do extremo Norte longe do Regio de interesse.', 'Latitude of far southern end of the region of interest.': 'Latitude da extremidade sul longe do Regio de interesse.', 'Latitude should be between': 'Latitude deve estar entre', 'Latrines': 'Privadas', 'Law enforcement, military, homeland and local/private security': 'Execuo da lei militar, interna e segurana local/privada', 'Layer': 'Camada', 'Layer Details': 'Detalhes de Camada', 'Layer ID': 'Layer ID', 'Layer Name': 'Layer Name', 'Layer Type': 'Layer Type', 'Layer added': 'Camada includa', 'Layer deleted': 'Camada excluda', 'Layer has been Disabled': 'Layer has been Disabled', 'Layer has been Enabled': 'Layer has been Enabled', 'Layer updated': 'Camada atualizada', 'Layers': 'Camadas', 'Layers updated': 'Camadas atualizadas', 'Layout': 'Modelo', 'Leader': 'guia', 'Leave blank to request an unskilled person': 'Leave blank to request an unskilled person', 'Legend Format': 'Formato da Legenda', 'Length (m)': 'Comprimento (m)', 'Level': 'Nvel', 'Level 1': 'Nvel 1', 'Level 1 Assessment Details': 'Detalhes da Avaliao Nvel 1', 'Level 1 Assessment added': 'Avaliao Nvel 1 includo', 'Level 1 Assessment deleted': 'Avaliao Nvel 1 excludo', 'Level 1 Assessment updated': 'Avaliao Nvel 1 atualizada', 'Level 1 Assessments': 'Avaliaes Nvel 1', 'Level 2': 'nvel 2', 'Level 2 Assessment Details': 'Nvel 2 de avaliao Detalhado', 'Level 2 Assessment added': 'Nvel 2 avaliao includo', 'Level 2 Assessment deleted': 'Nvel 2 de avaliao excludo', 'Level 2 Assessment updated': 'Nvel 2 de avaliao atualizada', 'Level 2 Assessments': 'Nvel 2 de Avaliaes', 'Level 2 or detailed engineering evaluation recommended': 'Nvel 2 ou engenharia detalhada de avaliao recomendado', "Level is higher than parent's": 'Nvel superior ao dos pais', 'Library support not available for OpenID': 'Apoio de biblioteca no est disponvel para OpenID', 'License Number': 'License Number', 'License Plate': 'License Plate', 'LineString': 'cadeia-de-linhas', 'List': 'Listar', 'List / Add Baseline Types': 'Lista / Incluir Linha de Tipos', 'List / Add Impact Types': 'Lista / Incluir Tipos de Impacto', 'List / Add Services': 'Lista / Incluir Servios', 'List / Add Types': 'Lista / Incluir Tipos', 'List Activities': 'listar atividades', 'List All': 'Mostrar Tudo', 'List All Assets': 'Lista todos os ativos', 'List All Catalog Items': 'Lista todos os Itens Do Catlogo', 'List All Commitments': 'Lista todos os compromissos', 'List All Entries': 'Listar todas as entradas', 'List All Item Categories': 'Lista todos os itens Categorias', 'List All Memberships': 'Listar Todas As Associaes', 'List All Received Shipments': 'Lista todas as transferncias Recebidas', 'List All Records': 'Lista todos os registros', 'List All Reports': 'Listar todos os Relatrios', 'List All Requested Items': 'Lista Todos Os itens solicitados', 'List All Requested Skills': 'List All Requested Skills', 'List All Requests': 'Lista Todos Os Pedidos', 'List All Sent Shipments': 'Listar todos os embarques enviados', 'List All Vehicles': 'List All Vehicles', 'List Alternative Items': 'Listar Itens Alternativos', 'List Assessment Summaries': 'Listar Resumos das Avaliaes', 'List Assessments': 'Listar as Avaliaes', 'List Asset Assignments': 'Listar Atribuies de Ativos', 'List Assets': 'Listar Ativos', 'List Availability': 'Listar Disponibilidade', 'List Baseline Types': 'Lista de Tipos De Linha', 'List Baselines': 'Lista de Linhas', 'List Brands': 'Lista de Marcas', 'List Budgets': 'Listar Oramentos', 'List Bundles': 'Listar Pacotes', 'List Camp Services': 'Listar Servios de Acampamento', 'List Camp Types': 'Listar Tipos de Acampamentos', 'List Camps': 'Listar Acampamentos', 'List Catalog Items': 'Lista de Itens Do Catlogo', 'List Catalogs': 'Listar catlogos', 'List Certificates': 'Listar certificados', 'List Certifications': 'Listar certificaes', 'List Checklists': 'Lista Listas de Verificao.', 'List Cluster Subsectors': 'Lista Subsetores de Cluster', 'List Clusters': 'Lista Clusters', 'List Commitment Items': 'Lista Itens de Compromisso', 'List Commitments': 'Lista Compromissos', 'List Committed People': 'List Committed People', 'List Competencies': 'Listar competencias', 'List Competency Ratings': 'Listar classificaes de competencias', 'List Conflicts': 'Lista Conflitos', 'List Contact Information': 'Listar informaes do contato', 'List Contacts': 'Listar contatos', 'List Course Certificates': 'Listar certificados de cursos', 'List Courses': 'Listar Cursos', 'List Credentials': 'Listar credenciais', 'List Current': 'Lista Atual', 'List Documents': 'Listar documentos', 'List Donors': 'Listar doadores', 'List Events': 'Lista de Eventos', 'List Facilities': 'Lista de Facilidades', 'List Feature Classes': 'Listar Classes De Recursos', 'List Feature Layers': 'LISTAr Camadas DE RECURSOS', 'List Flood Reports': 'Listar Relatrios de Inundaes', 'List GPS data': 'List GPS data', 'List Groups': 'Listar grupos', 'List Groups/View Members': 'Listar Grupos/visualizar membros', 'List Homes': 'List Homes', 'List Hospitals': 'Listar de Hospitais', 'List Human Resources': 'Lista de Recursos Humanos', 'List Identities': 'Lista de Identidades', 'List Images': 'Lista de Imagens', 'List Impact Assessments': 'Lista de Avaliaes De Impacto', 'List Impact Types': 'Lista de Tipos De Impacto', 'List Impacts': 'Lista de impactos', 'List Import Files': 'List Import Files', 'List Incident Reports': 'Lista de relatrios de incidentes', 'List Inventory Items': 'Listar tens de inventrio', 'List Item Categories': 'Listar categorias de tens', 'List Item Packs': 'Lista pacotes de itens', 'List Items': 'Listar itens', 'List Items in Inventory': 'Lista de Itens no inventrio', 'List Job Roles': 'Listar cargos', 'List Keys': 'Listar Chaves', 'List Kits': 'LISTAR Kits', 'List Layers': 'Listar Camadas', 'List Level 1 Assessments': 'Listar avaliaes nvel 1', 'List Level 1 assessments': 'Listar avaliao nvel 1', 'List Level 2 Assessments': 'Listar avaliaes nvel 2', 'List Level 2 assessments': 'Listar avaliaes nvel 2', 'List Locations': 'Listar Localizaes', 'List Log Entries': 'Listar as entradas de log', 'List Map Configurations': 'Listar configuraes de mapa', 'List Markers': 'Listar marcadores', 'List Members': 'Lista de membros', 'List Memberships': 'Lista de associados', 'List Messages': 'Listar Mensagens', 'List Missing Persons': 'Lista de pessoas desaparecidas', 'List Missions': 'Listar Misses', 'List Need Types': 'Listar tipos de necessidades', 'List Needs': 'Lista de Necessidades', 'List Notes': 'Lista de Notas', 'List Offices': 'Lista de Escritrios', 'List Organizations': 'Listar Organizaes', 'List Patients': 'List Patients', 'List Peers': 'LISTA DE PARES', 'List Personal Effects': 'Lista de objetos pessoais', 'List Persons': 'LISTA DE PESSOAS', 'List Photos': 'Lista de Fotos', 'List Population Statistics': 'Lista das Estatisticas da Populao', 'List Positions': 'Lista de Posies', 'List Problems': 'Lista de Problemas', 'List Projections': 'Lista de Projees', 'List Projects': 'Listar Projectos', 'List Rapid Assessments': 'Listar Avaliaes Rpidas', 'List Received Items': 'Listar Elementos Recebidos', 'List Received Shipments': 'Listar Carga Recebida', 'List Records': 'Listar Registros', 'List Registrations': 'Listar Registraes', 'List Relatives': 'List Relatives', 'List Reports': 'Relatrios de Listas', 'List Request Items': 'Pedido de Itens de lista', 'List Requested Skills': 'List Requested Skills', 'List Requests': 'LISTA DE PEDIDOS', 'List Resources': 'Listar Recursos', 'List Rivers': 'Lista de Rios', 'List Roles': 'Listar Funes', 'List Rooms': 'Listar Salas', 'List Scenarios': 'Listar cenrios', 'List Sections': 'lista de Sees', 'List Sectors': 'Lista de Sectores', 'List Sent Items': 'Os itens da lista Enviada', 'List Sent Shipments': 'Embarques lista Enviada', 'List Service Profiles': 'Lista de servios Perfis', 'List Settings': 'Lista de configuraes', 'List Shelter Services': 'Lista de servios de abrigo', 'List Shelter Types': 'Lista de Tipos De Abrigo', 'List Shelters': 'Lista de Abrigos', 'List Skill Equivalences': 'LISTA DE HABILIDADE Equivalncias', 'List Skill Provisions': 'Listar suprimento de habilidades', 'List Skill Types': 'Lista de Tipos De Habilidade', 'List Skills': 'LISTA DE HABILIDADES', 'List Solutions': 'Listar Solues', 'List Staff': 'Listar Pessoal', 'List Staff Members': 'Listar funcionrios', 'List Staff Types': 'Listar Tipos De Equipe', 'List Status': 'Listar Status', 'List Subscriptions': 'Lista de Assinaturas', 'List Subsectors': 'Listar Subsetores', 'List Support Requests': 'Listar Pedidos de Suporte', 'List Survey Answers': 'Listar Respostas de Pesquisa', 'List Survey Questions': 'Listar Perguntas da Pesquisa', 'List Survey Sections': 'Listar Sees da Pesquisa', 'List Survey Series': 'Listar Sries de Pesquisa', 'List Survey Templates': 'Listar Modelos de Pesquisa', 'List Tasks': 'Lista de Tarefas', 'List Teams': 'Lista de Equipes', 'List Themes': 'Lista de Temas', 'List Tickets': 'lista de Bilhetes', 'List Tracks': 'Rastreia lista', 'List Trainings': 'Listar Treinamentos', 'List Units': 'Lista de Unidades', 'List Users': 'Mostrar usurios', 'List Vehicle Details': 'List Vehicle Details', 'List Vehicles': 'List Vehicles', 'List Volunteers': 'Mostrar Voluntrios', 'List Warehouses': 'Mostrar Depsitos', 'List all': 'Mostrar tudo', 'List available Scenarios': 'Listar Cenrios Disponveis', 'List of CSV files': 'List of CSV files', 'List of CSV files uploaded': 'List of CSV files uploaded', 'List of Items': 'Lista de Itens', 'List of Missing Persons': 'Lista de pessoas desaparecidas', 'List of Peers': 'Lista de pares', 'List of Reports': 'Lista de Relatrios', 'List of Requests': 'Lista de Pedidos', 'List of Spreadsheets': 'Lista de Folhas de Clculo', 'List of Spreadsheets uploaded': 'Lista de Folhas de Clculo transferidas', 'List of Volunteers': 'Lista de Voluntrios', 'List of Volunteers for this skill set': 'Lista de Voluntrios para este conjunto de competncias', 'List of addresses': 'Lista de endereos', 'List unidentified': 'Lista no identificada', 'List/Add': 'Lista/incluir', 'Lists "who is doing what & where". Allows relief agencies to coordinate their activities': 'Lista "quem est fazendo o que & aonde". Permite a agncias humanitrias coordenar suas atividades', 'Live Help': 'Ajuda ao vivo', 'Livelihood': 'Subsistncia', 'Load Cleaned Data into Database': 'Carregue Informaes Claras no Banco de Dados', 'Load Raw File into Grid': 'Carregamento de arquivo bruto na Grid', 'Loading': 'Carregando', 'Local Name': 'Nome local', 'Local Names': 'Nomes locais', 'Location': 'Localizao', 'Location 1': 'Local 1', 'Location 2': 'Local 2', 'Location Details': 'Detalhes da Localizao', 'Location Hierarchy Level 0 Name': 'Nivel Local de hierarquia 0 nome', 'Location Hierarchy Level 1 Name': 'Nivel local de hierarquia 1 nome', 'Location Hierarchy Level 2 Name': 'Nivel local de hierarquia 2 nome', 'Location Hierarchy Level 3 Name': 'Hierarquia local Nvel 3 Nome', 'Location Hierarchy Level 4 Name': 'Hierarquia local Nvel 4 Nome', 'Location Hierarchy Level 5 Name': 'Hierarquia local Nvel 5 Nome', 'Location added': 'Local includo', 'Location cannot be converted into a group.': 'Local no pode ser convertido em um grupo.', 'Location deleted': 'Localidade excluda', 'Location details': 'Detalhes do Local', 'Location group cannot be a parent.': 'Localizao de grupo no pode ser um pai.', 'Location group cannot have a parent.': 'Localizao de grupo no tem um pai.', 'Location groups can be used in the Regions menu.': 'Grupos local pode ser utilizado no menu Regies.', 'Location groups may be used to filter what is shown on the map and in search results to only entities covered by locations in the group.': 'Grupos locais podem ser utilizados para filtrar o que mostrado no mapa e nos resultados da procura apenas as entidades locais abrangidas no grupo.', 'Location updated': 'Local atualizado', 'Location:': 'Localizao:', 'Location: ': 'Location: ', 'Locations': 'Localizaes', 'Locations of this level need to have a parent of level': 'Locais de esse nvel precisa ter um pai de nvel', 'Lockdown': 'BLOQUEIO', 'Log': 'registro', 'Log Entry Details': 'detalhes da entrada de registro', 'Log entry added': 'Entrada de Log includa', 'Log entry deleted': 'Entrada de Log Excluda', 'Log entry updated': 'Entrada de Log de atualizao', 'Login': 'login', 'Logistics': 'Logstica', 'Logistics Management System': 'Sistema de Gesto de Logstica', 'Logo': 'Logotipo', 'Logo file %s missing!': 'Arquivo de logotipo %s ausente!', 'Logout': 'Deslogar', 'Long Text': 'Texto Longo', 'Longitude': 'Longitude', 'Longitude is West - East (sideways).': 'Longitude Oeste - Leste (lateral).', 'Longitude is West-East (sideways).': 'Longitude leste-oeste (direes).', '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 zero no primeiro meridiano (Greenwich Mean Time) e positivo para o leste, em toda a Europa e sia. Longitude negativo para o Ocidente, no outro lado do Atlntico e nas Amricas.', 'Longitude is zero on the prime meridian (through Greenwich, United Kingdom) and is positive to the east, across Europe and Asia. Longitude is negative to the west, across the Atlantic and the Americas.': 'Longitude zero no primeiro meridiano (por meio de Greenwich, Reino Unido) e positivo para o leste, em toda a Europa e sia. Longitude negativo para o Ocidente, no outro lado do Atlntico e nas Amricas.', 'Longitude of Map Center': 'Longitude do Centro do Mapa', 'Longitude of far eastern end of the region of interest.': 'Longitude longe do Oeste no final da regio de interesse.', 'Longitude of far western end of the region of interest.': 'Longitude de oeste longnquo no final da Regio de interesse.', 'Longitude should be between': 'Longitude deve estar entre', 'Looting': 'Saques', 'Lost': 'Perdido', 'Lost Password': 'Senha Perdida', 'Low': 'Baixo', 'Magnetic Storm': 'Tempestade magntica', 'Major Damage': 'Grandes danos', 'Major expenses': 'Despesas principais', 'Major outward damage': 'Danos exteriores principais', 'Make Commitment': 'Ter obrigao', 'Make New Commitment': 'Fazer Novo Compromisso', 'Make Request': 'Fazer Pedido', 'Make preparations per the <instruction>': 'Fazer Preparaes por', 'Male': 'masculino', 'Manage': 'Gerenciar', 'Manage Events': 'Manage Events', 'Manage Relief Item Catalogue': 'Gerenciar Catlogo de Item de Alvio', 'Manage Users & Roles': 'GERENCIAR Usurios & Funes', 'Manage Vehicles': 'Manage Vehicles', 'Manage Warehouses/Sites': 'GERENCIAR Armazns/Sites', 'Manage Your Facilities': 'Gerenciar suas instalaes', 'Manage requests for supplies, assets, staff or other resources. Matches against Inventories where supplies are requested.': 'Gerenciar pedidos de suprimentos, patrimnio, pessoal ou outros recursos. Corresponde aos estoques onde os suprimentos so solicitados.', 'Manage requests of hospitals for assistance.': 'GERENCIAR Pedidos de hospitais para obter assistncia.', 'Manage volunteers by capturing their skills, availability and allocation': 'GERENCIAR voluntrios por captura sua capacidade, Alocao e disponibilidade', 'Manager': 'Gerente', 'Managing Office': 'Gerenciando Office', 'Mandatory. In GeoServer, this is the Layer Name. Within the WFS getCapabilities, this is the FeatureType Name part after the colon(:).': 'Obrigatrio. Em GeoServer, este o nome Da Camada. No getCapabilities WFS, este o nome da parte FeatureType aps os dois pontos (:).', 'Mandatory. The URL to access the service.': 'Obrigatrio. A URL para acessar o servio.', 'Manual': 'Manual', 'Manual Synchronization': 'Sincronizao Manual', 'Many': 'Muitos', 'Map': 'Mapa', 'Map Center Latitude': 'Latitude do Centro do Mapa', 'Map Center Longitude': 'Longitude do centro do mapa', 'Map Configuration': 'Configurao de Mapa', 'Map Configuration Details': 'Detalhes de configurao de mapa', 'Map Configuration added': 'Configurao de mapa includo', 'Map Configuration deleted': 'Configurao de mapa excludo', 'Map Configuration removed': 'Configurao de mapa removido', 'Map Configuration updated': 'Configurao de mapa atualizada', 'Map Configurations': 'Configuraces de mapa', 'Map Height': 'Altura do Mapa', 'Map Service Catalog': 'Catlogo do servio de mapas', 'Map Settings': 'Configuraes do Mapa', 'Map Viewing Client': 'Cliente de visualizao do mapa', 'Map Width': 'Largura do mapa', 'Map Zoom': 'Zoom do mapa', 'Map of Hospitals': 'Mapa de Hospitais', 'MapMaker Hybrid Layer': 'MapMaker Hybrid Layer', 'MapMaker Layer': 'MapMaker Layer', 'Maps': 'Maps', 'Marine Security': 'Segurana da marina', 'Marital Status': 'Estado Civil', 'Marker': 'Marcador', 'Marker Details': 'Detalhes do Marcador', 'Marker added': 'Marcador includo', 'Marker deleted': 'Marcador removido', 'Marker updated': 'Marcador atualizado', 'Markers': 'Marcadores', 'Master': 'Master', 'Master Message Log': 'Mensagem de Log principal', 'Master Message Log to process incoming reports & requests': 'Log de Mensagem Principal para processar relatrios de entrada e pedidos', 'Match Percentage': 'Porcentagem de correspondncia', 'Match Requests': 'Corresponder Pedidos', 'Match percentage indicates the % match between these two records': 'Porcentagem idntica indica a % idntica entre estes dois registros.', 'Match?': 'Combina?', 'Matching Catalog Items': 'Catlogo de itens correspondentes', 'Matching Items': 'Itens correspondentes', 'Matching Records': 'Registros de correspondncia', 'Matrix of Choices (Multiple Answers)': 'Matrix de Opes (Respostas Mltiplas)', 'Matrix of Choices (Only one answer)': 'Matrix de Opes (Apenas uma resposta)', 'Matrix of Text Fields': 'Matriz de campos de texto', 'Max Persons per Dwelling': 'Mx. Pessoas por Habitao', 'Maximum Location Latitude': 'Latitude mxima local', 'Maximum Location Longitude': 'Longitude mxima local', 'Medical and public health': 'Sade Mdica e Pblica', 'Medium': 'Mdio', 'Megabytes per Month': 'Megabytes por ms', 'Members': 'membros', 'Membership': 'Membresia', 'Membership Details': 'Detalhes de Associao', 'Membership added': 'Associao includo', 'Membership deleted': 'Associao Excluda', 'Membership updated': 'Associao ATUALIZADO', 'Memberships': 'Parcelas', 'Message': 'message', 'Message Details': 'deatlhes de mesagens', 'Message Variable': 'Mensagem varivel', 'Message added': 'Mensagem includa', 'Message deleted': 'Mensagem Excluda', 'Message field is required!': 'Campo mensagem obrigatrio!', 'Message updated': 'Mensagem atualizada', 'Message variable': 'Mensagem varivel', 'Messages': 'mensagens.', 'Messaging': 'sistema de mensagens', 'Messaging settings updated': 'Configuraes de mensagens atualizadas', 'Meteorite': 'Meteorito', 'Meteorological (inc. flood)': 'Meteorolgico (inc. Enchente)', 'Method used': 'Mtodo utilizado', 'Middle Name': 'Nome do meio', 'Migrants or ethnic minorities': 'Imigrantes ou minorias tnicas', 'Mileage': 'Mileage', 'Military': 'Militares', 'Minimum Bounding Box': 'Caixa Delimitadora Mnima', 'Minimum Location Latitude': 'Mnimo Latitude de Localidade', 'Minimum Location Longitude': 'Longitude de Localizao Mnima', 'Minimum shift time is 6 hours': 'tempo mnimo de Shift de 6 horas', 'Minor Damage': 'Dano secundrio', 'Minor/None': 'Secundria/Nenhum', 'Minorities participating in coping activities': 'Minorias participando em atividades de cpia', 'Minute': 'Minuto', 'Minutes must be a number between 0 and 60': 'Minutos devem ser um nmero entre 0 e 60', 'Minutes per Month': 'Minutos por Ms', 'Minutes should be a number greater than 0 and less than 60': 'Minutos devem ser um nmero maior que 0 e menor que 60', 'Miscellaneous': 'Variados', 'Missing': 'Perdido', 'Missing Person': 'Pessoa desaparecida', 'Missing Person Details': 'Detalhes da pessoa perdida', 'Missing Person Registry': 'Faltando Registro da Pessoa', 'Missing Person Reports': 'Relatrios da pessoa desaparecida', 'Missing Persons': 'Pessoas desaparecidas', 'Missing Persons Registry': 'Registro de pessoas desaparecidas', 'Missing Persons Report': 'Relatrio de pessoas desaparecidas', 'Missing Report': 'Relatrio de desaparecimento', 'Missing Senior Citizen': 'Cidado snior desaparecido', 'Missing Vulnerable Person': 'Pessoa vulnervel desaparecida', 'Mission Details': 'Detalhes da Misso', 'Mission Record': 'Registro da Misso', 'Mission added': 'Misso includa', 'Mission deleted': 'Misso excluda', 'Mission updated': 'Misso atualizada', 'Missions': 'Misses', 'Mobile': 'telefone celular', 'Mobile Basic Assessment': 'Taxao bsica mvel', 'Mobile Phone': 'Telefone celular', 'Mode': 'modo', 'Model/Type': 'Modelo/Tipo', 'Modem': 'Modem', 'Modem Settings': 'Configuraes do Modem', 'Modem settings updated': 'Configuraes de modem atualizadas', 'Moderate': 'moderate', 'Moderator': 'moderator', 'Modify Information on groups and individuals': 'Modificar Informaes sobre grupos e pessoas', 'Modifying data in spreadsheet before importing it to the database': 'Modificando dados na planilha antes de import-los para o banco de dados', 'Module': 'Mdulo', 'Module disabled!': 'Mdulo desativado!', 'Module provides access to information on current Flood Levels.': 'Mdulo fornece acesso a informaes na atual Onda nveis.', 'Monday': 'segunda-feira', 'Monthly Cost': 'Custo mensal', 'Monthly Salary': 'Salrio mensal', 'Months': 'meses', 'Morgue': 'Morgue', 'Morgue Details': 'Morgue Details', 'Morgue Status': 'Situao do necrotrio', 'Morgue Units Available': 'Unidades disponveis no necrotrio', 'Morgues': 'Morgues', 'Mosque': 'Mesquita', 'Motorcycle': 'Motocicleta', 'Moustache': 'Bigode', 'MultiPolygon': 'multipolygon', 'Multiple': 'Mltiplos', 'Multiple Choice (Multiple Answers)': 'Mltipla escolha (Vrias Respostas)', 'Multiple Choice (Only One Answer)': 'Mltipla Escolha (Apenas uma resposta)', 'Multiple Matches': 'Mltiplas Correspondncias', 'Multiple Text Fields': 'Vrios campos de texto', 'Muslim': 'Muulmano', 'Must a location have a parent location?': 'Um local deve ter uma posio pai?', 'My Current function': 'Minha funo Atual', 'My Details': 'My Details', 'My Tasks': 'Minhas tarefas', 'My Volunteering': 'My Volunteering', 'N/A': 'n/d', 'NO': 'no', 'NZSEE Level 1': 'NZSEE Nvel 1', 'NZSEE Level 2': 'NZSEE Nvel 2', 'Name': 'nome', 'Name and/or ID': 'Nome E/OU ID', 'Name of the file (& optional sub-path) located in static which should be used for the background of the header.': 'O nome do arquivo (& sub OPCIONAL-path) localizado no estticamente que deve ser utilizado para o segundo plano do Cabealho.', 'Name of the file (& optional sub-path) located in static which should be used for the top-left image.': 'Nome do arquivo (e sub-caminho opcional) localizado esttico que deveria ser utilizado para a imagem superior esquerda.', 'Name of the file (& optional sub-path) located in views which should be used for footer.': 'Nome do arquivo (e sub-caminho opcional) localizado nas visualizaes que deve ser utilizado no rodap.', 'Name of the person in local language and script (optional).': 'Nome da pessoa no idioma local e script local (opcional).', 'Name or Job Title': 'Nome ou cargo', 'Name, Org and/or ID': 'Nome, organizao e/ou ID.', 'Name/Model/Type': 'Nome/Modelo/Tipo', 'Names can be added in multiple languages': 'Nomes podem ser adicionados em mltiplos idiomas', 'National': 'Nacional', 'National ID Card': 'Carto de ID Nacional', 'National NGO': 'Nacional ONG', 'Nationality': 'Nacionalidade', 'Nationality of the person.': 'Nacionalidade da pessoa.', 'Nautical Accident': 'Acidente Nutico', 'Nautical Hijacking': 'Sequestro Nutico', 'Need Type': 'Precisa de Tipo', 'Need Type Details': 'Tipo precisa de Detalhes', 'Need Type added': 'Precisa de tipo includo', 'Need Type deleted': 'Precisa de Tipo excludo', 'Need Type updated': 'Tipo de necessidade atualizada', 'Need Types': 'Tipos de necessidade', "Need a 'url' argument!": "Precisa de um argumento ' url!", 'Need added': 'Necessidade includa', 'Need deleted': 'Necessidade excluda', 'Need to be logged-in to be able to submit assessments': 'Precisa estar conectado ao programa para conseguir submeter avaliaes', 'Need to configure Twitter Authentication': 'Precisa configurar a autenticao do Twitter', 'Need to specify a Budget!': ' necessrio especificar um oramento!', 'Need to specify a Kit!': ' necessrio especificar um Kit!', 'Need to specify a Resource!': ' necessrio especificar um recurso!', 'Need to specify a bundle!': ' necessrio especificar um pacote!', 'Need to specify a group!': ' necessrio especificar um grupo!', 'Need to specify a location to search for.': ' necessrio especificar um local para procurar.', 'Need to specify a role!': 'Ser necessrio especificar um papel!', 'Need to specify a table!': 'Ser necessrio especificar uma tabela!', 'Need to specify a user!': 'Ser necessrio especificar um usurio!', 'Need updated': 'Precisa de atualizao', 'Needs': 'necessidades', 'Needs Details': 'detalhes necessarios', 'Needs Maintenance': 'Necessita Manuteno', 'Needs to reduce vulnerability to violence': 'Necessidade de reduzir a vulnerabilidade violncia.', 'Negative Flow Isolation': 'NEGATIVO Fluxo ISOLAMENTO', 'Neighborhood': 'Bairro', 'Neighbouring building hazard': 'Risco de construo vizinhos', 'Neonatal ICU': 'Neonatal ICU', 'Neonatology': 'Neonatologia', 'Network': 'rede', 'Neurology': 'Neurologia', 'New': 'Novo(a)', 'New Assessment reported from': 'Nova Avaliao relatada a partir de', 'New Certificate': 'Novo Certificado', 'New Checklist': 'Nova Verificao', 'New Entry': 'Nova Entrada', 'New Event': 'Novo Evento', 'New Home': 'New Home', 'New Item Category': 'Nova Categoria de tem', 'New Job Role': 'Novo Papel', 'New Location': 'Novo Local', 'New Location Group': 'Novo Grupo de Locais', 'New Patient': 'New Patient', 'New Peer': 'Novo Par', 'New Record': 'Novo Registro', 'New Relative': 'New Relative', 'New Request': 'Nova Requisio', 'New Scenario': 'Novo Cenrio', 'New Skill': 'Nova Habilidade', 'New Solution Choice': 'Escolha nova soluo', 'New Staff Member': 'Novo membro da equipe', 'New Support Request': 'Novo pedido de suporte', 'New Synchronization Peer': 'Novo par de sincronizao', 'New Team': 'Nova equipe', 'New Ticket': 'New Ticket', 'New Training Course': 'Novo Curso de Treinamento', 'New Volunteer': 'Novo Voluntrio', 'New cases in the past 24h': 'Novos casos nas ltimas 24H', 'News': 'Notcias', 'Next': 'Seguinte', 'No': 'no', 'No Activities Found': 'No h actividades', 'No Activities currently registered in this event': 'No Activities currently registered in this event', 'No Alternative Items currently registered': 'Nenhum item alternativo atualmente registrado', 'No Assessment Summaries currently registered': 'Nenhum Sumrio De Avaliao actualmente registrado', 'No Assessments currently registered': 'Nenhuma Avaliao actualmente registrada', 'No Asset Assignments currently registered': 'Nenhum ativo designado encontra-se atualmente registrado', 'No Assets currently registered': 'Sem Ativos registrados atualmente', 'No Assets currently registered in this event': 'Sem ativos atualmente registrados neste evento', 'No Assets currently registered in this scenario': 'Sem ativos atualmente registrados neste cenrio', 'No Baseline Types currently registered': 'Nenhum tipo de base line registrado atualmente', 'No Baselines currently registered': 'Nenhuma linha base registrada atualmente', 'No Brands currently registered': 'Sem Marcas atualmente registrado', 'No Budgets currently registered': 'Nenhum Dos Oramentos registrados atualmente', 'No Bundles currently registered': 'Nenhum pacote atualmente registrado', 'No Camp Services currently registered': 'Nenhum servio de acampamento atualmente registrado', 'No Camp Types currently registered': 'Nenhum tipo de acampamento atualmente registrado', 'No Camps currently registered': 'Sem Acampamentos atualmente registrados', 'No Catalog Items currently registered': 'Nenhum itens do catlogo registrado atualmente', 'No Catalogs currently registered': 'Nenhum catlogo atualmente registrado', 'No Checklist available': 'Checklist no disponvel', 'No Cluster Subsectors currently registered': 'Nenhum sub-setor de cluster registrado atualmente', 'No Clusters currently registered': 'Nenhum Cluster registrado atualmente', 'No Commitment Items currently registered': 'Nenhum Item de Compromisso registrado atualmente', 'No Commitments': 'Sem Compromissos', 'No Credentials currently set': 'Nenhuma credencial atualmente configurada', 'No Details currently registered': 'Nenhum detalhes registrado atualmente', 'No Documents currently attached to this request': 'No Documents currently attached to this request', 'No Documents found': 'Nenhum Documento encontrado', 'No Donors currently registered': 'Sem doadores registrados atualmente', 'No Events currently registered': 'No h eventos atualmente registrados', 'No Facilities currently registered in this event': 'No h Recursos atualmente registrado nesse evento', 'No Facilities currently registered in this scenario': 'No h recursos atualmente registrados neste cenrio', 'No Feature Classes currently defined': 'Nenhuma Classe de Componentes atualmente definidos', 'No Feature Layers currently defined': 'Nenhuma Camada de Componentes atualmente definidos', 'No Flood Reports currently registered': 'Nenhum relatrio de Inundao atualmente registrado', 'No GPS data currently registered': 'No GPS data currently registered', 'No Groups currently defined': 'No h Grupos definidos atualmente', 'No Groups currently registered': 'Nenhum Grupo atualmente registrado', 'No Homes currently registered': 'No Homes currently registered', 'No Hospitals currently registered': 'Nenhum hospital atualmente registrado', 'No Human Resources currently registered in this event': 'Nao h recursos humanos atualmente registrados nesse evento', 'No Human Resources currently registered in this scenario': 'Sem recursos humanos atualmente registrados neste cenrio', 'No Identification Report Available': 'Nenhum Relatrio de Identificao Disponvel', 'No Identities currently registered': 'Nenhuma Identidade atualmente registrada', 'No Image': 'Nenhuma Imagem', 'No Images currently registered': 'Nenhuma Imagem atualmente registrada', 'No Impact Types currently registered': 'Nenhum tipo de impacto atualmente registrado', 'No Impacts currently registered': 'Nenhum Impacto atualmente registrado', 'No Import Files currently uploaded': 'No Import Files currently uploaded', 'No Incident Reports currently registered': 'Nenhum relatrio de incidente registrado atualmente', 'No Incoming Shipments': 'Nenhum Embarque de Entrada', 'No Inventories currently have suitable alternative items in stock': 'No Inventories currently have suitable alternative items in stock', 'No Inventories currently have this item in stock': 'No Inventories currently have this item in stock', 'No Inventory Items currently registered': 'Nenhum Item de Inventrio registrado atualmente', 'No Item Categories currently registered': 'Nenhuma Categoria de Item atualmente registrada', 'No Item Packs currently registered': 'Nenhum Pacote de Itens atualmente registrado', 'No Items currently registered': 'Nenhum item registrado atualmente', 'No Items currently registered in this Inventory': 'Sem itens registrados atualmente neste inventrio', 'No Keys currently defined': 'Nenhuma chave definida no momento', 'No Kits currently registered': 'Nenhum kit registrado no momento', 'No Level 1 Assessments currently registered': 'Nenhuma avaliao nvel 1 registrada no momento', 'No Level 2 Assessments currently registered': 'Nenhum nvel 2 Avaliaes atualmente registrado', 'No Locations currently available': 'Locais No disponveis atualmente', 'No Locations currently registered': 'Locais No registrados atualmente', 'No Map Configurations currently defined': 'Nenhuma configurao de Mapa esto atualmente definidos', 'No Map Configurations currently registered in this event': 'Nenhuma configurao de Mapa esta atualmente registrado nesse evento', 'No Map Configurations currently registered in this scenario': 'Nenhuma configurao de Mapa est atualmente registrado neste cenrio', 'No Markers currently available': 'No h marcadores atualmente disponveis', 'No Match': 'Sem correspondncia', 'No Matching Catalog Items': 'Nenhum Item de Catlogo Correspondente', 'No Matching Items': 'Sem itens correspondentes', 'No Matching Records': 'Sem registros correspondentes', 'No Members currently registered': 'Sem membros registrados atualmente', 'No Memberships currently defined': 'Sem Associaes definidas atualmente', 'No Memberships currently registered': 'Sem Associaes registradas atualmente', 'No Messages currently in Outbox': 'Nenhuma mensagem na Caixa de sada', 'No Need Types currently registered': 'Sem necessidade, Tipos atualmente registrados', 'No Needs currently registered': 'Sem necessidade, atualmente registrado', 'No Offices currently registered': 'Nenhum Escritrio registrado atualmente', 'No Offices found!': 'Menhum Escritrio localizado!', 'No Organizations currently registered': 'Nmero de Organizaes atualmente registradas', 'No Packs for Item': 'No Packs for Item', 'No Patients currently registered': 'No Patients currently registered', 'No People currently committed': 'No People currently committed', 'No People currently registered in this camp': 'Nenhuma pessoa registrada atualmente neste campo', 'No People currently registered in this shelter': 'Nenhuma pessoa registrada atualmente neste abrigo', 'No Persons currently registered': 'Nenhuma pessoa atualmente registrada', 'No Persons currently reported missing': 'nenhuma pessoa reportada atualmente como perdida', 'No Persons found': 'Nenhuma pessoa localizada', 'No Photos found': 'Nenhuma Foto localizada', 'No Picture': 'Nenhuma imagem', 'No Population Statistics currently registered': 'Nenhuma estatstica populacional atualmente registrada', 'No Presence Log Entries currently registered': 'Nenhuma entrada no log Presena atualmente registrado', 'No Problems currently defined': 'Nenhum Problema atualmente definido', 'No Projections currently defined': 'Nenhuma projeo atualmente definida', 'No Projects currently registered': 'Nenhum projeto atualmente registrado', 'No Rapid Assessments currently registered': 'Nenhuma Tributao Rpida atualmente registrada', 'No Ratings for Skill Type': 'No Ratings for Skill Type', 'No Received Items currently registered': 'Nenhum item recebido atualmente registrado', 'No Received Shipments': 'Entregas/Despachos no recebidos', 'No Records currently available': 'Registros atualmente no disponveis', 'No Relatives currently registered': 'No Relatives currently registered', 'No Request Items currently registered': 'No h items de Pedidos registados', 'No Requests': 'No h pedidos', 'No Rivers currently registered': 'No Rios atualmente registrado', 'No Roles currently defined': 'Nenhumas funes atualmente definidas', 'No Rooms currently registered': 'Nenhuma sala atualmente registrada', 'No Scenarios currently registered': 'Nenhum cenrio atualmente registrado', 'No Sections currently registered': 'Sem sees atualmente registradas', 'No Sectors currently registered': 'setores nao atualmente registrados', 'No Sent Items currently registered': 'Nenhum item Enviado atualmente registrado', 'No Sent Shipments': 'Nenhum carregamento enviado', 'No Settings currently defined': 'configuraoes atualmente nao definida', 'No Shelter Services currently registered': 'nenhum servio de abrigo atualmente registrado', 'No Shelter Types currently registered': 'Nenhum tipo de abrigo registrado atualmente', 'No Shelters currently registered': 'abrigos atualmente nao registrados', 'No Skills currently requested': 'No Skills currently requested', 'No Solutions currently defined': 'Sem Solues actualmente definidas', 'No Staff Types currently registered': 'Sem Tipos de Funcionrios actualmente registrados', 'No Staff currently registered': 'Sem Funcionrios actualmente registrados', 'No Subscription available': 'Nenhuma assinatura disponvel', 'No Subsectors currently registered': 'Nenhum sub setor atualmente registrado', 'No Support Requests currently registered': 'Nenhum suporte a pedido atualmente registrado', 'No Survey Answers currently entered.': 'Nenhuma resposta de pesquisa atualmente inscrita.', 'No Survey Answers currently registered': 'Nenhuma resposta a pesquisa atualmente registrada', 'No Survey Questions currently registered': 'Nenhuma pergunta de pesquisa atualmente registrada', 'No Survey Sections currently registered': 'Nenhuma seo de pesquisa atualmente registrada', 'No Survey Series currently registered': 'Nenhuma srie de pesquisa atualmente registrada', 'No Survey Template currently registered': 'Nenhum Modelo de Pesquisa atualmente registrado', 'No Tasks currently registered in this event': 'No Tasks currently registered in this event', 'No Tasks currently registered in this scenario': 'No Tasks currently registered in this scenario', 'No Tasks with Location Data': 'Nenhuma tarefa com local de dados', 'No Teams currently registered': 'Nenhuma equipe atualmente registrada', 'No Themes currently defined': 'Nenhum Tema atualmente definido', 'No Tickets currently registered': 'Sem ingressos atualmente registrados', 'No Tracks currently available': 'nenhum rastreamento atualmente disponvel', 'No Users currently registered': 'Nenhum Usurio actualmente registrado', 'No Vehicle Details currently defined': 'No Vehicle Details currently defined', 'No Vehicles currently registered': 'No Vehicles currently registered', 'No Volunteers currently registered': 'Nenhum Voluntrio actualmente registrado', 'No Warehouses currently registered': 'Nenhum Armazm actualmente registrado', 'No access at all': 'Nenhum acesso', 'No access to this record!': 'No h acesso a esta entrada!', 'No action recommended': 'Nenhuma aco recomendada', 'No conflicts logged': 'Nenhum conflito registrado', 'No contact information available': 'Nenhuma informaes de contato disponvel', 'No contact method found': 'No contact method found', 'No contacts currently registered': 'Nenhum contato atualmente registrado', 'No data in this table - cannot create PDF!': 'Nenhum dado nesta tabela- PDF no pode ser criado!', 'No databases in this application': 'Nenhum banco de dados neste aplicativo', 'No dead body reports available': 'Nenhum relatrio de bito disponvel', 'No entries found': 'Nenhum artigo encontrado', 'No entries matching the query': 'Nenhuma entrada correspondente a consulta', 'No entry available': 'Nenhuma entrada disponvel', 'No forms to the corresponding resource have been downloaded yet.': 'No forms to the corresponding resource have been downloaded yet.', 'No location known for this person': 'Nenhum local conhecido para essa pessoa', 'No locations found for members of this team': 'Locais no localizado para membros deste equipe', 'No log entries matching the query': 'Nenhuma entrada de log correspondente a consulta', 'No match': 'No match', 'No matching records found': 'No matching records found', 'No messages in the system': 'Nenhuma mensagem no sistema', 'No notes available': 'Notas no disponveis', 'No peers currently registered': 'No h pares registrados atualmente', 'No pending registrations found': 'No foram encontrados registros pendentes', 'No pending registrations matching the query': 'No foram encontrados registros pendentes correspondentes consulta efetuada', 'No person record found for current user.': 'Nenhum registro de pessoa localizado para o usurio atual.', 'No problem group defined yet': 'Nenhum grupo problema definido ainda', 'No records matching the query': 'Sem registros correspondentes a consulta', 'No report available.': 'Nenhum Relatrio disponvel.', 'No reports available.': 'No h relatrios disponveis.', 'No reports currently available': 'No h relatrios disponveis actualmente', 'No requests found': 'No foram foram encontrados pedidos', 'No resources currently reported': 'Recursos no reportados actualmente', 'No service profile available': 'Nenhum perfil de servio disponvel', 'No skills currently set': 'No h habilidades atualmente configuradas', 'No staff members currently registered': 'Nenhum membro da equipe atualmente registrado', 'No staff or volunteers currently registered': 'Nenhum funcionrio ou voluntrio atualmente registrado', 'No status information available': 'Informao no est disponvel', 'No synchronization': 'Sem Sincronizao', 'No tasks currently assigned': 'No tasks currently assigned', 'No tasks currently registered': 'Nenhuma tarefa atualmente registrada', 'No template found!': 'Nenhum modelo localizado!', 'No units currently registered': 'Nenhuma unidade actualmente registrada', 'No volunteer availability registered': 'Sem disponibilidade de voluntrio registrada', 'No volunteers currently registered': 'Nenhum Voluntrio actualmente registrado', 'Non-structural Hazards': 'Riscos no-estruturais', 'None': 'Nenhum', 'None (no such record)': 'Nenhum (sem registro )', 'Noodles': 'Macarro', 'Normal': 'Normal', 'Not Applicable': 'No se aplica', 'Not Authorised!': 'No Autorizado!', 'Not Possible': 'Impossvel', 'Not Set': 'no configurado', 'Not authorised!': 'No autorizado!', 'Not installed or incorrectly configured.': 'No instalado ou Configurado Incorretamente.', 'Note': 'Nota', 'Note Details': 'Detalhes da Nota', 'Note Status': 'Status da Nota', 'Note Type': 'Tipo de nota', 'Note added': 'Nota Includa', 'Note deleted': 'NOTA Excluda', 'Note that this list only shows active volunteers. To see all people registered in the system, search from this screen instead': 'Observer que essa lista mostra apenas voluntrios ativos. Para ver todas as pessoas registradas no sistema, procure a partir deste ecr em vez de', 'Note updated': 'Nota atualizada', 'Notes': 'Observaes', 'Notice to Airmen': 'Aviso ao piloto', 'Number': 'nmero', 'Number of Columns': 'Nmero de colunas', 'Number of Patients': 'Nmero de Pacientes', 'Number of People Required': 'Number of People Required', 'Number of Rows': 'Nmero de Linhas', 'Number of additional beds of that type expected to become available in this unit within the next 24 hours.': 'Nmero de camas adicionais de tipo esperado tornar disponvel nesta unidade nas prximas 24 horas.', 'Number of alternative places for studying': 'Nmero de locais alternativos para estudar', 'Number of available/vacant beds of that type in this unit at the time of reporting.': 'Nmero de camas disponveis/livre desse tipo nesta unidade no momento do relatrio.', 'Number of bodies found': 'Number of bodies found', 'Number of deaths during the past 24 hours.': 'Nmero de mortes durante as ltimas 24 horas.', 'Number of discharged patients during the past 24 hours.': 'Nmero de pacientes Descarregados durante as ltimas 24 horas.', 'Number of doctors': 'Nmero de mdicos', 'Number of in-patients at the time of reporting.': 'Nmero de pacientes internos na hora do relatrio.', 'Number of newly admitted patients during the past 24 hours.': 'Nmero de pacientes admitidos durante as ltimas 24 horas.', 'Number of non-medical staff': 'Nmero de funcionrios no-mdico', 'Number of nurses': 'Nmero de enfermeiras', 'Number of private schools': 'Nmero de escolas privadas', 'Number of public schools': 'Nmero de escolas pblicas', 'Number of religious schools': 'Nmero de escolas religiosas', 'Number of residential units': 'Nmero de unidades residenciais', 'Number of residential units not habitable': 'Unidades de nmero residencial no habitveis', 'Number of vacant/available beds in this hospital. Automatically updated from daily reports.': 'Nmero de leitos vagos/disponveis nesse hospital. Atualizado automaticamente a partir de relatrios dirios.', 'Number of vacant/available units to which victims can be transported immediately.': 'Nmero de unidades vagas/disponveis em que vtimas podem ser transportadas imediatamente.', 'Number or Label on the identification tag this person is wearing (if any).': 'Nmero ou cdigo na etiqueta de identificao que a pessoa est usando (se houver).', 'Number or code used to mark the place of find, e.g. flag code, grid coordinates, site reference number or similar (if available)': 'Nmero ou cdigo utilizado para marcar o local de localizao, por exemplo, cdigo de bandeira, grade de coordenadas, nmero de referncia do site ou similar (se disponvel)', 'Number/Percentage of affected population that is Female & Aged 0-5': 'Nmero/percentagem da populao afetada que uma mulher entre 0 e 5 anos', 'Number/Percentage of affected population that is Female & Aged 13-17': 'Nmero/percentagem da populao afetadas do sexo feminino entre 13 e 17 anos', 'Number/Percentage of affected population that is Female & Aged 18-25': 'Nmero/percentagem da populao afetada que Mulher com 18-25 anos', 'Number/Percentage of affected population that is Female & Aged 26-60': 'Nmero/percentagem da populao afetada que Mulher com 26-60 anos', 'Number/Percentage of affected population that is Female & Aged 6-12': 'Nmero/percentagem da populao afetada que Mulher com 6-12 anos', 'Number/Percentage of affected population that is Female & Aged 61+': 'Nmero/percentagem da populao afetada que Mulher > 61 anos', 'Number/Percentage of affected population that is Male & Aged 0-5': 'Nmero/percentagem da populao afetada que Homem com 0-5 anos', 'Number/Percentage of affected population that is Male & Aged 13-17': 'Nmero/percentagem da populao afetada que Homem com 13-17 anos', 'Number/Percentage of affected population that is Male & Aged 18-25': 'Nmero/percentagem da populao afetada que Homem com 18-25 anos', 'Number/Percentage of affected population that is Male & Aged 26-60': 'Nmero/percentagem de populao afetada que do sexo masculino & Idade 26-60', 'Number/Percentage of affected population that is Male & Aged 6-12': 'Nmero/percentagem de populao afectada que do sexo masculino & Idade 6-12', 'Number/Percentage of affected population that is Male & Aged 61+': 'Nmero/percentagem da populao afetada que do sexo masculino & Idade 61+', 'Nursery Beds': 'Camas de berario', 'Nutrition': 'Nutrio', 'Nutrition problems': 'Problemas nutricionais', 'OK': 'OK', 'OR Reason': 'Ou Razo', 'OR Status': 'Ou Status', 'OR Status Reason': 'Ou razo do status', 'OR a site OR a location': 'OU um site OU um local', 'Observer': 'observador', 'Obsolete': 'Obsoleto', 'Obstetrics/Gynecology': 'Obstetrcia/Ginecologia', 'Office': 'escritrio', 'Office Address': 'Endereo do escritrio', 'Office Details': 'Detalhes do Escritrio.', 'Office Phone': 'Telefone do escritrio', 'Office added': 'Escritrio', 'Office deleted': 'Escritrio excludo', 'Office updated': 'Escritrio atualizado', 'Offices': 'Escritrios', 'Offices & Warehouses': 'Escritrios & Armazns', 'Offline Sync': 'Sincronizao desconectada.', 'Offline Sync (from USB/File Backup)': 'Off-line (Sync a partir do USB/arquivo de Backup)', 'Older people as primary caregivers of children': 'Pessoas mais velhas como responsveis primrias de crianas', 'Older people in care homes': 'Pessoas mais velhas em casas de cuidados', 'Older people participating in coping activities': 'Pessoas mais antigos participantes em lidar atividades', 'Older person (>60 yrs)': 'Idosos (>60 anos)', 'On by default?': 'Por padro?', 'On by default? (only applicable to Overlays)': 'Por padro? (apenas aplicvel para Sobreposies)', 'One Time Cost': 'Custo nico', 'One time cost': 'Custo nico', 'One-time': 'nico', 'One-time costs': 'Custos nicos', 'Oops! Something went wrong...': 'Oops! Algo deu errado...', 'Oops! something went wrong on our side.': 'Oops! algo deu errado do nosso lado.', 'Opacity (1 for opaque, 0 for fully-transparent)': 'Opacidade (1 para opaco, 0 para totalmente transparente)', 'Open': 'Abrir', 'Open area': 'Abrir rea', 'Open recent': 'Abrir recente', 'Operating Rooms': 'Salas operacionais', 'Optional': 'Optional', 'Optional Subject to put into Email - can be used as a Security Password by the service provider': 'Optional Subject to put into Email - can be used as a Security Password by the service provider', 'Optional link to an Incident which this Assessment was triggered by.': 'Link opcional para um incidente que esta avaliao foi desencadeada por.', 'Optional selection of a MapServer map.': 'Optional selection of a MapServer map.', 'Optional selection of a background color.': 'Optional selection of a background color.', 'Optional selection of an alternate style.': 'Optional selection of an alternate style.', 'Optional. If you wish to style the features based on values of an attribute, select the attribute to use here.': 'opcional Se voc desejar apresenta o estilo com base nos valores de um atributo, Selecione o atributo a ser utilizado aqui.', 'Optional. In GeoServer, this is the Workspace Namespace URI (not the name!). Within the WFS getCapabilities, this is the FeatureType Name part before the colon(:).': 'opcional Em GeoServer, esta a rea de trabalho Namespace URI (no o nome!). Dentro do getCapabilities WFS, este parte do nome FeatureType antes dos dois pontos (:).', 'Optional. In GeoServer, this is the Workspace Namespace URI. Within the WFS getCapabilities, this is the FeatureType Name part before the colon(:).': 'optional. Em GeoServer, este o espao de Nomes URI. No getCapabilities WFS, este o nome da parte FeatureType antes de os dois pontos (:).', 'Optional. The name of an element whose contents should be a URL of an Image file put into Popups.': 'opcional O nome de um elemento cujo contedo deve ser uma URL de um arquivo de imagem para Popups.', 'Optional. The name of an element whose contents should be put into Popups.': 'opcional O nome de um elemento cujo contedo deve ser adicionado em Popups.', "Optional. The name of the geometry column. In PostGIS this defaults to 'the_geom'.": "opcional O nome da coluna de geometria. Em PostGIS padroniza para 'the_geom'.", 'Optional. The name of the schema. In Geoserver this has the form http://host_name/geoserver/wfs/DescribeFeatureType?version=1.1.0&;typename=workspace_name:layer_name.': 'opcional O nome do esquema. Em Geoserver isto tem o formato http://host_name/geoserver/wfs/DescribeFeatureType?version=1.1.0&;typename=workspace_name:layer_name.', 'Options': 'opes', 'Organisation': 'Organizao', 'Organization': 'Organizao', 'Organization Details': 'Detalhes da Organizao', 'Organization Registry': 'Registro de Organizao', 'Organization added': 'Organizao includa', 'Organization deleted': 'Organizao excluda', 'Organization updated': 'Organizao atualizada', 'Organizations': 'Organizaes', 'Origin': 'Origem', 'Origin of the separated children': 'Origem das crianas separadas', 'Other': 'outro', 'Other (describe)': 'Outros (descreva)', 'Other (specify)': 'Outros motivos (especifique)', 'Other Evidence': 'outras evidencias', 'Other Faucet/Piped Water': 'Outras Torneiras /Agua Encanada', 'Other Isolation': 'Outro Isolamento', 'Other Name': 'outro nome', 'Other activities of boys 13-17yrs': 'Outras atividades de garotos 13-17anos', 'Other activities of boys 13-17yrs before disaster': 'Outras atividades de garotos 17-13anos antes do desastre', 'Other activities of boys <12yrs': 'Outras atividades de garotos <12 anos', 'Other activities of boys <12yrs before disaster': 'Outras atividades de garotos <12anos antes do desastre', 'Other activities of girls 13-17yrs': 'Outras atividades de meninas 13-17anos', 'Other activities of girls 13-17yrs before disaster': 'Outras atividades de meninas 13-17anos antes do desastre', 'Other activities of girls<12yrs': 'Outras atividades de garotas<12anos', 'Other activities of girls<12yrs before disaster': 'Outras atividades de garotas<12anos antes do desastre', 'Other alternative infant nutrition in use': 'Nutrio infantil alternativa em uso', 'Other alternative places for study': 'Outros locais alternativos para estudo', 'Other assistance needed': 'Outra assistncia necessria', 'Other assistance, Rank': 'Outra assistncia, Nmero', 'Other current health problems, adults': 'Outros problemas actuais de sade, adultos', 'Other current health problems, children': 'Outros problemas actuais de sade, crianas', 'Other events': 'outros eventos', 'Other factors affecting school attendance': 'Outros fatores que afetam a frequencia escolar', 'Other major expenses': 'outras despesas importantes', 'Other non-food items': 'Outros itens no alimentcios', 'Other recommendations': 'Outras recomendaes', 'Other residential': 'Outros residentes', 'Other school assistance received': 'Assistncia de outra escola recebida', 'Other school assistance, details': 'Assistncia de outra escola, detalhes', 'Other school assistance, source': 'Assistncia de outra escola, origem', 'Other settings can only be set by editing a file on the server': 'Outras configuraes s podem ser definidas editando um arquivo no servidor', 'Other side dishes in stock': 'Pratos outro lado em aes', 'Other types of water storage containers': 'Outros tipos de recipientes de armazenamento de gua', 'Other ways to obtain food': 'Outras maneiras de obter alimentos', 'Outbound Mail settings are configured in models/000_config.py.': 'Definies de correio de sada so configurados em modelos/000_config..py', 'Outbox': 'Caixa de Sada', 'Outgoing SMS Handler': 'Sada do Manipulador SMS', 'Outgoing SMS handler': 'Manipulador de SMS de sada', 'Overall Hazards': 'Riscos gerais', 'Overhead falling hazard': 'Risco de queda sobrecarga', 'Overland Flow Flood': 'Por via terrestre Fluxo de Enchente', 'Owned Resources': 'Recursos Prprios', 'PAHO UID': 'OPS UID', 'PDAM': 'PDAM', 'PDF File': 'PDF File', 'PIN': 'alfinete', 'PIN number': 'Nmero do pino', 'PIN number ': 'PIN number ', 'PL Women': 'Mulheres PL', 'Pack': 'Pacote', 'Packs': 'Pacotes', 'Page': 'Page', 'Parameters': 'Parmetros de Monitoramento', 'Parapets, ornamentation': 'Passarelas, ornamentao', 'Parent': 'parent', 'Parent Office': 'Escritrio Principal', "Parent level should be higher than this record's level. Parent level is": 'Nvel dos pais deve ser maior que o nvel do registro. Nvel do Pai ', 'Parent needs to be of the correct level': 'Pai precisa ser do nvel correto', 'Parent needs to be set': 'Principal precisa ser configurado', 'Parent needs to be set for locations of level': 'Principal precisa ser configurado para locais de nvel', 'Parents/Caregivers missing children': 'Pais/cuidadores de crianas desaparecidas', 'Parking Area': 'Parking Area', 'Partial': 'Parcial', 'Participant': 'Participante', 'Pashto': 'Pachto', 'Pass': 'Passou', 'Passport': 'passaporte', 'Password': 'senha', "Password fields don't match": 'Os campos de senha no so iguais.', 'Path': 'Caminho', 'Pathology': 'Patologia', 'Patient': 'Patient', 'Patient Details': 'Patient Details', 'Patient Tracking': 'Patient Tracking', 'Patient added': 'Patient added', 'Patient deleted': 'Patient deleted', 'Patient updated': 'Patient updated', 'Patients': 'Pacientes', 'Pediatric ICU': 'UTI Pediatrica', 'Pediatric Psychiatric': 'Psiquitrico Peditra', 'Pediatrics': 'Pediatria', 'Peer': 'Membro', 'Peer Details': 'Detalhes do Membro', 'Peer Registration': 'Registro de par', 'Peer Registration Details': 'Detalhes de Registro do Par', 'Peer Registration Request': 'Requerido Registro do Par', 'Peer Type': 'Por Tipo', 'Peer UID': 'Por UID', 'Peer added': 'Membro adicionado', 'Peer deleted': 'Membro excludo', 'Peer not allowed to push': 'Peer no permitido para envio', 'Peer registration request added': 'Registro Requerido do Par adicionado', 'Peer registration request deleted': 'Registro requerido do par excludo', 'Peer registration request updated': 'Registro requerido do par atualizado', 'Peer updated': 'PAR ATUALIZADO', 'Peers': 'Pares', 'Pending': 'pendente', 'Pending Requests': 'PEDIDOS PENDENTES', 'People': 'pessoas', 'People Needing Food': 'Pessoas precisando de alimento', 'People Needing Shelter': 'Pessoas precisando de abrigo', 'People Needing Water': 'Pessoas precisando de gua', 'People Trapped': 'Pessoas presas', 'Performance Rating': 'Classificao da Performance', 'Person': 'pessoa', 'Person 1': 'Pessoa 1', 'Person 1, Person 2 are the potentially duplicate records': 'Pessoa 1, Pessoa 2 so os registros potencialmente duplicados', 'Person 2': 'Pessoa 2', 'Person De-duplicator': 'Anti-duplicador de Pessoas', 'Person Details': 'Detalhes Pessoais', 'Person Finder': 'Buscador de pessoas', 'Person Registry': 'Registro De Pessoa', 'Person added': 'Pessoa Includa', 'Person added to Commitment': 'Person added to Commitment', 'Person deleted': 'Pessoa removida', 'Person details updated': 'Detalhes pessoais actualizados', 'Person interviewed': 'Pessoa entrevistada', 'Person missing': 'Pessoa perdida', 'Person must be specified!': 'Person must be specified!', 'Person removed from Commitment': 'Person removed from Commitment', 'Person reporting': 'Pessoa relatando', 'Person who has actually seen the person/group.': 'Pessoa que tenha realmente visto a pessoa/Grupo.', 'Person/Group': 'Pessoa/Grupo', 'Personal': 'Pessoal', 'Personal Data': 'Dados pessoais', 'Personal Effects': 'Efeitos pessoal', 'Personal Effects Details': 'Detalhes dos Efeitos Pessoais', 'Personal Map': 'Mapa De Pessoal', 'Personal Profile': 'Perfil pessoal', 'Personal impact of disaster': 'Impacto de desastre pessoal', 'Persons': 'Pessoas', 'Persons in institutions': 'Pessoas em instituies', 'Persons with disability (mental)': 'Pessoas com deficincia (mental)', 'Persons with disability (physical)': 'Pessoas com deficincia (fsica)', 'Phone': 'telefone', 'Phone 1': 'Telefone 1', 'Phone 2': 'Telefone 2', "Phone number to donate to this organization's relief efforts.": 'Nmero de telefone para doar ao servio de assistncia social desta organizao', 'Phone/Business': 'Telefone comercial', 'Phone/Emergency': 'Telefone de emergncia', 'Phone/Exchange': 'Telefone/Exchange', 'Phone/Exchange (Switchboard)': 'Telefone/Cmbio (Central)', 'Photo': 'foto', 'Photo Details': 'Foto com detalhes', 'Photo Taken?': 'Foto tomada?', 'Photo added': 'Foto adicionada (ou includa)', 'Photo deleted': 'Foto deletada (apagada, excluda em definitivo)', 'Photo updated': 'Foto ATUALIZADA', 'Photograph': 'Fotografia ou Arte Fotogrfica', 'Photos': 'fotos, imagens fotogrficas', 'Physical Description': 'Descrio fsica', 'Physical Safety': 'Segurana Fsica', 'Picture': 'Imagem', 'Picture upload and finger print upload facility': 'Fazer upload de imagem e impresso dedo upload facility', 'Place': 'Local', 'Place of Recovery': 'Local de recuperao', 'Places for defecation': 'Locais para a defecao', 'Places the children have been sent to': 'Lugares que as crianas foram enviadas para', 'Planner': 'Planejador', 'Playing': 'Reproduzindo', "Please come back after sometime if that doesn't help.": 'Por favor, volte aps algum tempo se isso no ajuda.', 'Please correct all errors.': 'Por favor CORRIJA todos os erros.', 'Please enter a First Name': 'Por favor insira um primeiro nome', 'Please enter a first name': 'Por favor insira um primeiro nome', 'Please enter a number only': 'Please enter a number only', 'Please enter a person': 'Insira uma pessoa', 'Please enter a site OR a location': 'Por favor digite um site ou um local', 'Please enter a valid email address': 'Please enter a valid email address', 'Please enter the first few letters of the Person/Group for the autocomplete.': 'Por favor Digite as primeiras letras do Pessoa/Grupo para o AutoCompletar.', 'Please enter the recipient': 'Por favor Digite o destinatrio', 'Please fill this!': 'Por favor preencha isso!', 'Please give an estimated figure about how many bodies have been found.': 'Please give an estimated figure about how many bodies have been found.', 'Please provide the URL of the page you are referring to, a description of what you expected to happen & what actually happened.': 'Por favor Fornea a URL da pgina que voc est fazendo referncia , uma descrio do que voc esperava que acontecesse & O que realmente aconteceu.', 'Please provide the URL of the page you are referring to, a description of what you expected to happen & what actually happened. If a ticket was issued then please provide the Ticket ID.': 'Por favor Fornea a URL da pgina que voc est fazendo referncia , uma descrio do que voc esperava que acontecesse & O que realmente aconteceu. Se um bilhete foi emitido ento por favor fornea o ID do bilhete.', 'Please report here where you are:': 'Por favor informe aqui onde voc est:', 'Please select': 'Por favor Selecione', 'Please select another level': 'Por favor selecione outro nvel', 'Please sign-up with your Cell Phone as this allows us to send you Text messages. Please include full Area code.': 'Por favor inscrever-se com seu celular como isso nos permite lhe enviar mensagens de texto. Por favor inclua cdigo de rea total.', '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.': 'Por favor especifique quaisquer problemas e obstculos com a manipulao correcta da doena, em detalhes (em nmeros, se for o caso). Pode tambm dar sugestes - a situao pode ser melhorada.', 'Please use this field to record any additional information, including a history of the record if it is updated.': 'Por favor utilize esse campo para registrar quaisquer informaes adicionais, incluindo um histrico do registro se ele estiver sendo atualizado.', 'Please use this field to record any additional information, including any Special Needs.': 'Por favor utilize esse campo para registrar quaisquer informaes adicionais, incluindo quaisquer necessidades especiais.', 'Please use this field to record any additional information, such as Ushahidi instance IDs. Include a history of the record if it is updated.': 'Por favor utilize esse campo para registrar quaisquer informaes adicionais, como IDs de instncia Ushahidi. Incluir o histrico do registo se este fr actualizado.', 'Pledge Support': 'Suporte da promessa', 'Point': 'Ponto', 'Poisoning': 'Envenenamento', 'Poisonous Gas': 'Gs venenoso', 'Police': 'Polcia', 'Pollution and other environmental': 'Poluio ambiental e outras', 'Polygon': 'Polgono', 'Polygon reference of the rating unit': 'Polgono de referncia da unidade de classificao', 'Poor': 'Pobre', 'Population': 'Populao', 'Population Statistic Details': 'Populao Estatstica Detalhes', 'Population Statistic added': 'Populao Estatstica includa', 'Population Statistic deleted': 'Populao Estatstica excludo', 'Population Statistic updated': 'Populao De Estatstica atualizada', 'Population Statistics': 'Estatsticas De populao', 'Population and number of households': 'populao e nmero de residentes', 'Popup Fields': 'Pop-up Campos', 'Popup Label': 'Rtulo do pop-up', 'Porridge': 'mingau', 'Port': 'porta', 'Port Closure': 'Porta Encerramento', 'Portuguese': 'Portugus', 'Portuguese (Brazil)': 'Portugus (Brasil)', 'Position': 'Posio', 'Position Catalog': 'Catlogo de posies', 'Position Details': 'detalhamento do cargo', 'Position added': 'Cargo inserido', 'Position deleted': 'Cargo excludo', 'Position updated': 'Posio atualizada', 'Positions': 'cargos', 'Postcode': 'Cdigo Postal', 'Poultry': 'Aves', 'Poultry restocking, Rank': 'Reabastecimento de aves domsticas, posio', 'Pounds': 'Libras', 'Power Failure': 'Falha de Energia', 'Powered by Sahana Eden': 'Desenvolvido pela Sahana Eden', 'Pre-cast connections': 'Conexes-cast pr', 'Preferred Name': 'Nome Preferido', 'Pregnant women': 'Mulheres grvidas', 'Preliminary': 'Preliminar', 'Presence': 'Presena', 'Presence Condition': 'Condio de Presena', 'Presence Log': 'Log de Presena', 'Previous': 'Anterior', 'Primary Name': 'Nome Principal', 'Primary Occupancy': 'Principal Ocupao', 'Priority': 'priority', 'Priority from 1 to 9. 1 is most preferred.': 'Prioridade de 1 a 9. 1 prefervel', 'Private': 'Privado', 'Problem': 'Problema do', 'Problem Administration': 'Gesto de problema', 'Problem Details': 'Detalhes do Problema', 'Problem Group': 'Grupo do Problema', 'Problem Title': 'Ttulo do Problema', 'Problem added': 'Problema includo', 'Problem connecting to twitter.com - please refresh': 'Problema ao conectar-se ao twitter.com, tente novamente', 'Problem deleted': 'Problema Excludo', 'Problem updated': 'Problema Atualizado', 'Problems': 'Problemas', 'Procedure': 'Procedimento', 'Process Received Shipment': 'Processo recebeu embarque', 'Process Shipment to Send': 'Processar remessa a enviar', 'Profile': 'profile', 'Project': 'projeto', 'Project Details': 'Detalhes do Projeto', 'Project Status': 'Status do Projeto', 'Project Tracking': 'Acompanhamento do Projeto', 'Project added': 'Projeto includo', 'Project deleted': 'Projeto Excludo', 'Project has no Lat/Lon': 'Projeto no possui Latitude/Longitude', 'Project updated': 'Projeto ATUALIZADO', 'Projection': 'Projeo', 'Projection Details': 'Detalhes da Projeo', 'Projection Type': 'Projection Type', 'Projection added': 'Projeo includa', 'Projection deleted': 'Projeo excluda', 'Projection updated': 'Projeco atualizada', 'Projections': 'projees', 'Projects': 'projetos', 'Property reference in the council system': 'Referncia de propriedade no sistema do conselho', 'Protected resource': 'Recurso protegido', 'Protection': 'Proteco', 'Provide Metadata for your media files': 'Fornecer Metadados para os seus ficheiros media', 'Provide a password': 'Provide a password', 'Provide an optional sketch of the entire building or damage points. Indicate damage points.': 'Fornecer um retrato opcional de todo o edifcio ou reas danificadas. Pontos danos indicar.', 'Proxy-server': 'Servidor Proxy', 'Psychiatrics/Adult': 'Psiquiatras/Adulto', 'Psychiatrics/Pediatric': 'Psiquiatras/Peditrica', 'Public': 'Pblico', 'Public Event': 'Evento pblico', 'Public and private transportation': 'Transporte Pblico e Privado', 'Public assembly': 'Assemblia Pblica', 'Pull tickets from external feed': 'Pull de bilhetes alimentao externa', 'Punjabi': 'Punjabi', 'Purchase Date': 'Data de aquisio', 'Push tickets to external system': 'BILHETES Push PARA sistema externo', 'Pyroclastic Flow': 'Pyroclastic FLuxo', 'Pyroclastic Surge': 'Pyroclastic Aumento', 'Python Serial module not available within the running Python - this needs installing to activate the Modem': 'Mdulo Serial Python no disponveis no a execuo Python-isto tem de instalar para ativar o Modem', 'Quantity': 'Quantidade', 'Quantity Committed': 'Quantidade Comprometida', 'Quantity Fulfilled': 'Quantidade Preenchida', "Quantity in %s's Inventory": 'Quantidade de %s do Inventrio', 'Quantity in Transit': 'Quantidade em Trnsito', 'Quarantine': 'Quarentena', 'Queries': 'Buscas', 'Query': 'Busca', 'Queryable?': 'Consultvel?', 'RC frame with masonry infill': 'Quadro de RC com aterros de alvenaria', 'RECORD A': 'Registro A', 'RECORD B': 'REGISTRO B', 'Race': 'Corrida', 'Radio': 'Radio', 'Radio Callsign': 'Rdio Chamada', 'Radio Details': 'Radio Details', 'Radiological Hazard': 'Risco Radiolgico', 'Radiology': 'Radiologia', 'Railway Accident': 'Acidente Ferrovirio', 'Railway Hijacking': 'Sequestro Ferrovirio', 'Rain Fall': 'Queda de Chuva', 'Rapid Assessment': 'Avaliao Rpida', 'Rapid Assessment Details': 'Rpida Avaliao Detalhes', 'Rapid Assessment added': 'Rapid Avaliao includo', 'Rapid Assessment deleted': 'Rpida Avaliao excludo', 'Rapid Assessment updated': 'Rapid avaliao atualizada', 'Rapid Assessments': 'Rapid Avaliaes', 'Rapid Assessments & Flexible Impact Assessments': 'Rapid Avaliaes & Flexvel Impacto Avaliaes', 'Rapid Close Lead': 'Fechamento Lead rpido', 'Rapid Data Entry': 'Entrada de dados rpida', 'Rating Scale': 'Escala de avaliao', 'Raw Database access': 'Acesso bruto a Base de dados', 'Read-Only': 'somente para leitura', 'Read-only': 'somente para leitura', 'Receive': 'Receber', 'Receive Items': 'Aceitar itens', 'Receive New Shipment': 'Receber Novos Embarques', 'Receive Shipment': 'Receber carregamento', 'Receive this shipment?': 'Receber esse embarque?', 'Received': 'Recebido', 'Received By': 'Recebido Por', 'Received By Person': 'Recebido Por Pessoa', 'Received Item Details': 'Detalhes do item recebido', 'Received Item deleted': 'Recebido item excludo', 'Received Item updated': 'Item recebido atualizado', 'Received Shipment Details': 'Lista de remessa de mercadorias/produtos', 'Received Shipment canceled': 'Remessa de produtos cancelada', 'Received Shipment canceled and items removed from Inventory': 'Recebido carregamento cancelado e itens removidos do inventrio', 'Received Shipment updated': 'Carregamento Recebido Atualizado', 'Received Shipments': 'Carregamento de produtos recebido', 'Receiving and Sending Items': 'Receber e enviar Itens', 'Recipient': 'destinatrio', 'Recipients': 'destinatrios', 'Recommendations for Repair and Reconstruction or Demolition': 'Recomendaes para reparo e reconstruo ou demolio', 'Record': 'registro', 'Record Details': 'Detalhes do Registro', 'Record Saved': 'Registro Gravado', 'Record added': 'Registro includo', 'Record any restriction on use or entry': 'Registro de qualquer restrio utilizao ou entrada', 'Record deleted': 'Registro excludo', 'Record last updated': 'ltimo registro atualizado', 'Record not found': 'Registro no encontrado', 'Record not found!': 'Registro no encontrado!', 'Record updated': 'registro atualizado', 'Recording and Assigning Assets': 'Ativos de Gravao e Designao', 'Records': 'Registros', 'Recovery': 'recuperao', 'Recovery Request': 'pedido de recuperao', 'Recovery Request added': 'Pedido de recuperao adicionado', 'Recovery Request deleted': 'Pedido de recuperao apagado', 'Recovery Request updated': 'Pedido de recuperao atualizado', 'Recovery Requests': 'Pedidos de recuperao', 'Recruitment': 'Recrutamento', 'Recurring': 'Recorrente', 'Recurring Cost': 'Custo recorrente', 'Recurring cost': 'Custo recorrente', 'Recurring costs': 'Custos recorrentes', 'Red': 'vermelho', 'Red Cross / Red Crescent': 'Cruz Vermelha / Red Crescent', 'Reference Document': 'Documento de referncia', 'Refresh Rate (seconds)': 'Taxa de Atualizao (Segundos)', 'Region Location': 'Localizaao da regiao', 'Regional': 'regional', 'Regions': 'Regies', 'Register': 'registro', 'Register Person': 'REGISTRAR PESSOA', 'Register Person into this Camp': 'Registrar Pessoa neste Acampamento', 'Register Person into this Shelter': 'REGISTRAR PESSOA PARA ESTE Abrigo', 'Register them as a volunteer': 'Registr-los como voluntrios', 'Registered People': 'Pessoas Registradas', 'Registered users can': 'Os usurios registrados podem', 'Registration': 'Inscrio', 'Registration Details': 'Detalhes da Inscrio', 'Registration added': 'Inscrio adicionada', 'Registration entry deleted': 'Inscrio excluda', 'Registration is still pending approval from Approver (%s) - please wait until confirmation received.': 'Registro ainda est pendente de aprovao do Aprovador (%s) - Por favor, aguarde at a confirmao recebida.', 'Registration key': 'Registration key', 'Registration updated': 'Inscrio atualizada', 'Rehabilitation/Long Term Care': 'Reabilitao/Cuidados de Longo Termo', 'Reinforced masonry': 'Alvenaria reforada', 'Rejected': 'rejeitado', 'Relative Details': 'Relative Details', 'Relative added': 'Relative added', 'Relative deleted': 'Relative deleted', 'Relative updated': 'Relative updated', 'Relatives': 'Relatives', 'Relief': 'Alivio', 'Relief Team': 'Equipe de socorro', 'Religion': 'Religio', 'Religious': 'Religiosas', 'Religious Leader': 'Lder religioso', 'Relocate as instructed in the <instruction>': 'Relocalizar conforme instrudo no', 'Remove': 'remover', 'Remove Activity from this event': 'Remove Activity from this event', 'Remove Asset from this event': 'Remover ativo deste evento', 'Remove Asset from this scenario': 'Remover ativo deste cenrio', 'Remove Document from this request': 'Remove Document from this request', 'Remove Facility from this event': 'Remover recurso deste evento', 'Remove Facility from this scenario': 'Remover recurso deste cenrio', 'Remove Human Resource from this event': 'REMOVER RECURSOS HUMANOS A partir deste evento', 'Remove Human Resource from this scenario': 'REMOVER RECURSOS HUMANOS A partir deste cenrio', 'Remove Item from Inventory': 'Remover Item do Inventrio', 'Remove Map Configuration from this event': 'REMOVER Mapa de configurao a partir deste evento', 'Remove Map Configuration from this scenario': 'REMOVER Mapa de configurao a partir deste cenrio', 'Remove Person from Commitment': 'Remove Person from Commitment', 'Remove Skill': 'Remove Skill', 'Remove Skill from Request': 'Remove Skill from Request', 'Remove Task from this event': 'Remove Task from this event', 'Remove Task from this scenario': 'Remove Task from this scenario', 'Remove this asset from this event': 'REMOVER este recurso a partir deste evento', 'Remove this asset from this scenario': 'Remover este recurso deste cenrio', 'Remove this facility from this event': 'Remove this facility from this event', 'Remove this facility from this scenario': 'Remove this facility from this scenario', 'Remove this human resource from this event': 'Remove this human resource from this event', 'Remove this human resource from this scenario': 'Remove this human resource from this scenario', 'Remove this task from this event': 'Remove this task from this event', 'Remove this task from this scenario': 'Remove this task from this scenario', 'Repair': 'REPARO', 'Repaired': 'Reparado', 'Repeat your password': 'REPITA sua senha', 'Replace': 'TROCAR', 'Replace if Master': 'Substituir se Principal', 'Replace if Newer': 'Substituir se o Mais Recente', 'Report': 'Relatrio', 'Report Another Assessment...': 'Adicionar Outro Relatrio De Avaliao....', 'Report Details': 'Detalhes do Relatrio', 'Report Resource': 'Reportar Recursos', 'Report Types Include': 'Tipos de relatrio incluem', 'Report added': 'Relatrio includo', 'Report deleted': 'Relatrio removido', 'Report my location': 'Relate meu local', 'Report the contributing factors for the current EMS status.': 'Reportar os factores que contribuem para a situao EMS actual.', 'Report the contributing factors for the current OR status.': 'Reportar os factores que contribuem para a situao OR actual.', 'Report them as found': 'Reportar como encontrados', 'Report them missing': 'Reportar como perdidos', 'Report updated': 'Relatrio atualizado', 'ReportLab module not available within the running Python - this needs installing for PDF output!': 'O mdulo de ReportLab no disponveis na execuo Python - isto requer a instalao para a entrega em PDF!', 'ReportLab not installed': 'ReportLab no instalado', 'Reporter': 'Relator', 'Reporter Name': 'Nome do Relator', 'Reporting on the projects in the region': 'Relatrios sobre os projetos na regio', 'Reports': 'Relatrios', 'Request': 'Pedido', 'Request Added': 'Pedido Includo', 'Request Canceled': 'Pedido Cancelado', 'Request Details': 'Detalhes do Pedido', 'Request From': 'Pedido De', 'Request Item': 'Item de pedido', 'Request Item Details': 'Detalhes do item de pedido', 'Request Item added': 'Item includo no pedido', 'Request Item deleted': 'Item de pedido excludo', 'Request Item from Available Inventory': 'PEDIDO DE Item de Inventrio Disponvel', 'Request Item updated': 'Pedido actualizado', 'Request Items': 'Itens de pedido', 'Request New People': 'Request New People', 'Request Status': 'Status do Pedido', 'Request Type': 'Tipo de Pedido', 'Request Updated': 'Solicitao atualizada', 'Request added': 'Pedido adicionado', 'Request deleted': 'Solicitao excluda', 'Request for Role Upgrade': 'Pedido de upgrade de funo', 'Request updated': 'Pedido actualizado', 'Request, Response & Session': 'Pedido, Resposta & Sesso', 'Requested': 'solicitado', 'Requested By': 'Solicitado Por', 'Requested By Facility': 'Solicitado Pela Instalao', 'Requested By Site': 'Solicitado Por Site', 'Requested From': 'Solicitada a Partir de', 'Requested Items': 'Itens solicitados', 'Requested Skill': 'Requested Skill', 'Requested Skill Details': 'Requested Skill Details', 'Requested Skill updated': 'Requested Skill updated', 'Requested Skills': 'Requested Skills', 'Requested by': 'Solicitado Por', 'Requested on': 'Em solicitada', 'Requester': 'Solicitante', 'Requests': 'Pedidos', 'Requests Management': 'Gerenciamento de Pedidos', 'Required Skill': 'Required Skill', 'Requires Login!': ' necessrio fazer login!', 'Rescue and recovery': 'Resgate e recuperao', 'Reset': 'Restaurar', 'Reset Password': 'restabelecer senha', 'Resolve': 'Resolver', 'Resolve Conflict': 'Resolver Conflito', 'Resolve link brings up a new screen which helps to resolve these duplicate records and update the database.': 'Resolva link que levar at uma nova tela que ajudar a resolver esses registros duplicados e atualizar o banco de dados.', 'Resource': 'Recurso', 'Resource Details': 'Detalhes do recurso', 'Resource added': 'Recurso includo', 'Resource deleted': 'Recurso Excludo', 'Resource updated': 'Recurso atualizado', 'Resources': 'Recursos', 'Respiratory Infections': 'Infeces respiratrias', 'Response': 'Resposta', 'Restricted Access': 'Acesso Restrito', 'Restricted Use': 'Uso restrito', 'Results': 'results', 'Retail Crime': 'Crime a varejo', 'Retrieve Password': 'Recuperar Senha', 'Return': 'Retorno', 'Return to Request': 'Retornar ao pedido', 'Returned': 'Retornado', 'Returned From': 'Retornado a partir de', 'Returned Status': 'Retornado Status', 'Review Incoming Shipment to Receive': 'Reviso da Remessa de Entrada para Receber', 'Rice': 'Arroz', 'Riot': 'Motim', 'River': 'Rio', 'River Details': 'Detalhes do Rio', 'River added': 'Rio adicionado', 'River deleted': 'Rio deletado', 'River updated': 'Rio atualizado', 'Rivers': 'Rios', 'Road Accident': 'Acidente na rua/estrada', 'Road Closed': 'Rua/Estrada fechada', 'Road Conditions': 'Condies da Estrada', 'Road Delay': 'Atraso de Estrada', 'Road Hijacking': 'Sequestro de Estrada', 'Road Usage Condition': 'Condio de Uso de Estrada', 'Roads Layer': 'Roads Layer', 'Role': 'Funo', 'Role Details': 'Detalhes da Funo', 'Role Required': 'Funo requerida', 'Role Updated': 'Funes atualizadas', 'Role added': 'Regra includa', 'Role deleted': 'Funo excluda', 'Role updated': 'Funes atualizadas', 'Role-based': 'Baseada em regra', 'Roles': 'Funes', 'Roles Permitted': 'Funes Permitidas', 'Roof tile': 'Telhado lado a lado', 'Roofs, floors (vertical load)': 'Telhados, pisos (carga vertical)', 'Room': 'Sala', 'Room Details': 'Detalhes da sala', 'Room added': 'Sala includa', 'Room deleted': 'Sala excluda', 'Room updated': 'Sala atualizada', 'Rooms': 'Salas', 'Roster': 'Lista', 'Row Choices (One Per Line)': 'Opes da linha (Um por linha)', 'Rows in table': 'Linhas na tabela', 'Rows selected': 'Linhas Selecionadas', 'Run Functional Tests': 'Executar testes funcionais', 'Run Interval': 'Intervalo de execuo', 'Running Cost': 'Custo corrente', 'Russian': 'Russian', 'SMS Modems (Inbound & Outbound)': 'SMS Modems (Inbound & Outbound)', 'SMS Outbound': 'SMS Outbound', 'SMS Settings': 'SMS Settings', 'SMS settings updated': 'SMS settings updated', 'SMTP to SMS settings updated': 'SMTP to SMS settings updated', 'Safe environment for vulnerable groups': 'Ambiente seguro para grupos vulnerveis', 'Safety Assessment Form': 'Formulrio de avaliao de segurana', 'Safety of children and women affected by disaster?': 'Segurana das crianas e mulheres afetadas pela catstrofe?', 'Sahana Administrator': 'Sahana AdmiNistrador', 'Sahana Agasti': 'Sahana Agasti', 'Sahana Blue': 'Sahana Azul', 'Sahana Community Chat': 'Sahana COMUNIDADE de BATE-PAPO', 'Sahana Eden': 'Sahana Eden', 'Sahana Eden <=> Other': 'Sahana Eden <=> Outros', 'Sahana Eden <=> Sahana Eden': 'Sahana den <=> Sahana den', 'Sahana Eden Humanitarian Management Platform': 'plataforma de gerenciamento humanitrio Sahana den', 'Sahana Eden Website': 'SITE Sahana den', 'Sahana Green': 'Sahana Verde', 'Sahana Steel': 'Sahana Steel', 'Sahana access granted': 'Acesso Sahana CONCEDIDO', 'Salted Fish': 'Peixe Salgado', 'Sanitation problems': 'Problemas de saneamento', 'Satellite': 'satlite', 'Satellite Layer': 'Satellite Layer', 'Satellite Office': 'Escritrio experimental', 'Saturday': 'SAturday', 'Save': 'armazenar', 'Saved.': 'armazenado.', 'Saving...': 'Guardando...', 'Scale of Results': 'Nvel de Resultados', 'Scanned Copy': 'Scanned Copy', 'Scanned Forms Upload': 'Scanned Forms Upload', 'Scenario': 'Cenrio', 'Scenario Details': 'Detalhes do Cenrio', 'Scenario added': 'Cenrio includo', 'Scenario deleted': 'Cenrio excludo', 'Scenario updated': 'Cenrio atualizado', 'Scenarios': 'Cenrios', 'Schedule': 'Horrio', 'Schema': 'Esquema', 'School': 'Escola', 'School Closure': 'Encerramento Escolar', 'School Lockdown': 'Bloqueio escolar', 'School Teacher': 'Professor de escola', 'School activities': 'Actividades escolares', 'School assistance': 'Assistncia escolar', 'School attendance': 'Presena escolar', 'School destroyed': 'Escola Destruda', 'School heavily damaged': 'Escola fortemente danificada', 'School tents received': 'Tendas da escola recebidas', 'School tents, source': 'Tendas de escolha, origem', 'School used for other purpose': 'Escola utilizada para outros fins', 'School/studying': 'Escola/estudando', 'Schools': 'Escolas', 'Search': 'Pesquisar', 'Search Activities': 'procurar atividades', 'Search Activity Report': 'Relatrio de pesquisa de atividades', 'Search Addresses': 'procurar endereos', 'Search Alternative Items': 'Procurar itens alternativos', 'Search Assessment Summaries': 'Procura De Avaliao De RESUMOS', 'Search Assessments': 'Avaliaes de procura', 'Search Asset Assignments': 'Procurar ATIVO Designaes', 'Search Asset Log': 'Procurar log de ativo', 'Search Assets': 'Procurar Recursos', 'Search Baseline Type': 'Procurar Typo de Base', 'Search Baselines': 'Procurar Bases', 'Search Brands': 'Procurar Marcas', 'Search Budgets': 'Procura Oramentos', 'Search Bundles': 'PACOTES Configurveis de procura', 'Search Camp Services': 'Procurar Servios de Acampamento', 'Search Camp Types': 'Procurar Tipos De Acampamento', 'Search Camps': 'Procurar acampamentos', 'Search Catalog Items': 'Itens de procura De Catlogo', 'Search Catalogs': 'Procurar nos Catlogos', 'Search Certificates': 'Procurar Certificados', 'Search Certifications': 'Procurar Certificaes', 'Search Checklists': 'Listas De procura', 'Search Cluster Subsectors': 'Procura De Cluster Subsectores', 'Search Clusters': 'Clusters de procura', 'Search Commitment Items': 'Itens de procura Compromisso', 'Search Commitments': 'Compromissos de procura', 'Search Committed People': 'Search Committed People', 'Search Competencies': 'Procurar Competncias', 'Search Competency Ratings': 'Procurar Indices de Competncia', 'Search Contact Information': 'Procurar informaes de contato', 'Search Contacts': 'Buscar contatos', 'Search Course Certificates': 'procura Certificados de Curso', 'Search Courses': 'Procurar Cursos', 'Search Credentials': 'Credenciais de busca', 'Search Documents': 'Pesquisar documentos', 'Search Donors': 'Procura de Doadores', 'Search Entries': 'Pesquisar Entradas', 'Search Events': 'Pesquisar Eventos', 'Search Facilities': 'Pesquisar Instalaes', 'Search Feature Class': 'Pesquisar classe de dispositivos', 'Search Feature Layers': 'Pesquisar camadas do dispositivo', 'Search Flood Reports': 'Pesquisar relatrios de inundao', 'Search GPS data': 'Search GPS data', 'Search Groups': 'Buscar Grupos', 'Search Homes': 'Search Homes', 'Search Human Resources': 'Pesquise recursos humanos.', 'Search Identity': 'Buscar Identidade', 'Search Images': 'Procurar Imagens', 'Search Impact Type': 'Procurar Tipo de Impacto', 'Search Impacts': 'Procurar Impactos', 'Search Import Files': 'Search Import Files', 'Search Incident Reports': 'Procurar Relatrios de Incidentes', 'Search Inventory Items': 'Procurar Entradas De Inventrio', 'Search Inventory items': 'Procurar Entradas De Inventrio', 'Search Item Categories': 'Buscar categorias de Item', 'Search Item Packs': 'Buscar pocotes de itens', 'Search Items': 'Buscar Itens', 'Search Job Roles': 'Pesquise papis de trabalho', 'Search Keys': 'Procurar chaves', 'Search Kits': 'Procurar kits', 'Search Layers': 'Procurar camadas', 'Search Level': 'Search Level', 'Search Level 1 Assessments': 'Procurar Avaliaes Nvel 1', 'Search Level 2 Assessments': 'Procurar Avaliaes Nvel 2', 'Search Locations': 'Procurar Localidades', 'Search Log Entry': 'Procura de entrada de Log', 'Search Map Configurations': 'Pesquise mapa de configuraes.', 'Search Markers': 'Marcadores De procura', 'Search Member': 'Procurar Membro', 'Search Membership': 'Procurar filiao', 'Search Memberships': 'Pesquisar Associaes', 'Search Missions': 'Procurar Misses', 'Search Need Type': 'Procura Precisa De Tipo', 'Search Needs': 'Procura precisa', 'Search Notes': 'Notes procura', 'Search Offices': 'Escritrios de procura', 'Search Organizations': 'Pesquisar Organizaes', 'Search Patients': 'Search Patients', 'Search Peer': 'PROCURA Par', 'Search Personal Effects': 'Procura objetos pessoais', 'Search Persons': 'Buscar Membros', 'Search Photos': 'Procura Fotos', 'Search Population Statistics': 'Procurar Estatstica de Populao', 'Search Positions': 'Procura de Posies', 'Search Problems': 'Procura de Problemas', 'Search Projections': 'Projees de procura', 'Search Projects': 'Procura de Projetos', 'Search Rapid Assessments': 'Procura de Avaliaes Rpidas', 'Search Received Items': 'Procura de Itens Recebidos', 'Search Received Shipments': 'Embarques de procura Recebidos', 'Search Records': 'registros de procura', 'Search Registations': 'Registations procura', 'Search Registration Request': 'Pedido de registro de procura', 'Search Relatives': 'Search Relatives', 'Search Report': 'Procurar Relatrio', 'Search Reports': 'Procurar Relatrios', 'Search Request': 'pedido de pesquisa', 'Search Request Items': 'Pedido de procura de Itens', 'Search Requested Items': 'Procura de itens solicitados', 'Search Requested Skills': 'Search Requested Skills', 'Search Requests': 'Procura de solicitaes', 'Search Resources': 'Pesquisa de recursos', 'Search Rivers': 'Rios procura', 'Search Roles': 'Pesquisa de papis', 'Search Rooms': 'Procurar Salas', 'Search Scenarios': 'Procurar cenrios', 'Search Sections': 'As Sees de procura', 'Search Sectors': 'Procurar Setores', 'Search Sent Items': 'Procurar Itens Enviados', 'Search Sent Shipments': 'Procurar Despachos Enviados', 'Search Service Profiles': 'Servio de procura Perfis', 'Search Settings': 'Definies de Pesquisa', 'Search Shelter Services': 'Procura Abrigo de servios', 'Search Shelter Types': 'Procura tipos de Abrigo', 'Search Shelters': 'Procurar Abrigos', 'Search Skill Equivalences': 'Procurar equivalencias de habilidades', 'Search Skill Provisions': 'Procurar Disposies de habilidade', 'Search Skill Types': 'Pesquisar Tipos de Habilidades', 'Search Skills': 'Pesquisar Habilidades', 'Search Solutions': 'Pesquisar Solues', 'Search Staff': 'Busca de pessoal', 'Search Staff Types': 'Busca de tipo de pessoal', 'Search Staff or Volunteer': 'Procurar Funcionrio ou Voluntrio', 'Search Status': 'Busca de status', 'Search Subscriptions': 'Busca de assinaturas', 'Search Subsectors': 'Buscar subsetores', 'Search Support Requests': 'Pedidos de suporte a pesquisa', 'Search Tasks': 'Tarefa de Pesquisa', 'Search Teams': 'Times de pesquisa', 'Search Themes': 'Temas de pesquisa', 'Search Tickets': 'Buscar Bilhetes', 'Search Tracks': 'Procurar Trilhas', 'Search Trainings': 'Buscar Treinamentos', 'Search Twitter Tags': 'Procurar Twitter Tags', 'Search Units': 'Procura Unidades', 'Search Users': 'Procurar Usurios', 'Search Vehicle Details': 'Search Vehicle Details', 'Search Vehicles': 'Search Vehicles', 'Search Volunteer Availability': 'Buscar Disponibilidade para Voluntriado', 'Search Volunteers': 'Procura Voluntrios', 'Search Warehouses': 'procura Warehouses', 'Search and Edit Group': 'Procurar e editar GRUPO', 'Search and Edit Individual': 'Procurar e Editar Individual', 'Search for Staff or Volunteers': 'Pesquise por funcionrios ou voluntrios', 'Search for a Location by name, including local names.': 'Pesquisar local por nome, incluindo nomes locais.', 'Search for a Person': 'Procurar Pessoa', 'Search for a Project': 'Procurar Projecto', 'Search for a shipment by looking for text in any field.': 'Procurar carga fazendo uma pesquisa de texto em qualquer campo.', 'Search for a shipment received between these dates': 'Procurar carga recebida entre estas datas', 'Search for a vehicle by text.': 'Search for a vehicle by text.', 'Search for an Organization by name or acronym': 'Procurar por uma Organizao por nome ou iniciais', 'Search for an Organization by name or acronym.': 'Procurar por uma organizao por nome ou iniciais.', 'Search for an asset by text.': 'Pesquisar um recurso por texto.', 'Search for an item by category.': 'Procurar por categoria.', 'Search for an item by Year of Manufacture.': 'Search for an item by Year of Manufacture.', 'Search for an item by brand.': 'Search for an item by brand.', 'Search for an item by catalog.': 'Search for an item by catalog.', 'Search for an item by category.': 'Search for an item by category.', 'Search for an item by its code, name, model and/or comment.': 'Search for an item by its code, name, model and/or comment.', 'Search for an item by text.': 'Procurar por texto.', 'Search for asset by country.': 'Procurar bens por pas.', 'Search for asset by location.': 'Search for asset by location.', 'Search for office by country.': 'Procurar escritrios por pas.', 'Search for office by location.': 'Search for office by location.', 'Search for office by organization.': 'Procurar escritrios por organizao.', 'Search for office by text.': 'Procura por texto do gabinete.', 'Search for vehicle by location.': 'Search for vehicle by location.', 'Search for warehouse by country.': 'Pesquise por depsito por pas.', 'Search for warehouse by location.': 'Search for warehouse by location.', 'Search for warehouse by organization.': 'Pesquise por depsito por organizao.', 'Search for warehouse by text.': 'Pesquise por depsito via campo-texto.', 'Search here for a person record in order to:': 'Buscar aqui por um registro de pessoa a fim de:', 'Search messages': 'Mensagens de Procura', 'Searching for different groups and individuals': 'Procurar diferentes grupos e indivduos', 'Secondary Server (Optional)': 'Servidor secundrio (opcional)', 'Seconds must be a number between 0 and 60': 'Segundos deve ser um nmero entre 0 e 60', 'Section': 'Section', 'Section Details': 'Seo Detalhes', 'Section deleted': 'Seo excludo', 'Section updated': 'Seo atualizada', 'Sections': 'Sees', 'Sections that are part of this template': 'Sections that are part of this template', 'Sections that can be selected': 'Sections that can be selected', 'Sector': 'setor', 'Sector Details': 'Detalhes do Setor', 'Sector added': 'Sector includo', 'Sector deleted': 'Sector apagado', 'Sector updated': 'Setor atualizado', 'Sector(s)': 'Setor(es)', 'Sectors': 'Setores', 'Security Status': 'Status de Segurana', 'Security problems': 'Problemas de Segurana', 'See All Entries': 'Ver todas as entradas', 'See all': 'Ver tudo', 'See unassigned recovery requests': 'Consulte Pedidos de recuperao designado', 'Seen': 'Visto', 'Select': 'select', 'Select Items from the Request': 'Selecionar itens do pedido', 'Select Items from this Inventory': 'Selecionar itens a partir deste Inventrio', 'Select Organization': 'Selecionar Organizao', 'Select Skills from the Request': 'Select Skills from the Request', "Select a Room from the list or click 'Add Room'": "Escolha uma sala da lista ou clique 'Incluir sala'", 'Select a location': 'Selecionar um local', "Select a manager for status 'assigned'": "Select a manager for status 'assigned'", "Select a person in charge for status 'assigned'": "Selecione uma pessoa responsvel para status 'DESIGNADO'", 'Select a question from the list': 'Selecione uma pergunta a partir da lista', 'Select a range for the number of total beds': 'Selecione um intervalo para o nmero de camas total', 'Select all that apply': 'Selecione todas as que se applicam', 'Select an Organization to see a list of offices': 'Selecione uma organizao para ver uma lista de escritrios', 'Select the overlays for Assessments and Activities relating to each Need to identify the gap.': 'Selecione as sobreposies de avaliao e actividades relacionadas com cada necessidade para identificar as lacunas.', 'Select the person assigned to this role for this project.': 'Selecione a pessoa designada para essa funo neste projeto.', "Select this if all specific locations need a parent at the deepest level of the location hierarchy. For example, if 'district' is the smallest division in the hierarchy, then all specific locations would be required to have a district as a parent.": "Selecione isto se todas as localidades especificas precisarem de um pai no nvel mais alto da hierarquia. Por exemplo, se 'distrito' a menor diviso na hierarquia e, em seguida, todos os locais especficos seriam obrigados a ter um distrito como um pai.", "Select this if all specific locations need a parent location in the location hierarchy. This can assist in setting up a 'region' representing an affected area.": 'Selecione isto se todos os locais especficos de uma posio pai na hierarquia do local. Isso pode ajudar na configurao de uma "regio" representando uma rea afetada.', 'Select to show this configuration in the Regions menu.': 'Selecione para mostrar essa configurao no menu regies.', 'Select to show this configuration in the menu.': 'Select to show this configuration in the menu.', 'Selected Jobs': 'Selected Jobs', 'Selects what type of gateway to use for outbound SMS': 'Selects what type of gateway to use for outbound SMS', 'Selects whether to use a Modem, Tropo or other Gateway for sending out SMS': 'Selecione se vau utilizar um Modem, Tropo ou outro Gateway para enviar SMS', 'Send': 'Envie', 'Send Alerts using Email &/or SMS': 'Envio de alertas usando e-mail e/ou SMS', 'Send Commitment as Shipment': 'Enviar compromisso como carregamento', 'Send New Shipment': 'Enviar nova remessa', 'Send Notification': 'Enviar notificao', 'Send Shipment': 'Enviar Carregamento', 'Send a message to this person': 'Enviar uma mensagem para esta pessoa', 'Send a message to this team': 'Enviar uma mensagem para essa equipe', 'Send from %s': 'Enviar de %s', 'Send message': 'Enviar mensagem', 'Send new message': 'Enviar nova mensagem', 'Sends & Receives Alerts via Email & SMS': 'Envia & Recebe Alertas via E-Mail & SMS', 'Senior (50+)': 'Snior (50+)', 'Sent': 'Enviadas', 'Sent By': 'Enviado Por', 'Sent By Person': 'Enviado Por Pessoa', 'Sent Item Details': 'Detalhes do Item enviado', 'Sent Item deleted': 'Enviado Item excludo', 'Sent Item updated': 'Enviado Item atualizado', 'Sent Shipment Details': 'Enviado Detalhes de Embarque', 'Sent Shipment canceled': 'Enviado Carregamento cancelado', 'Sent Shipment canceled and items returned to Inventory': 'Enviado Carregamento cancelado e itens retornado ao Inventrio', 'Sent Shipment updated': 'Enviado Embarque atualizado', 'Sent Shipments': 'Remessas Enviadas', 'Separated children, caregiving arrangements': 'Crianas separados, disposies caregiving', 'Serial Number': 'Numero de srie', 'Series': 'serie', 'Server': 'servidor', 'Service': 'servio', 'Service Catalog': 'Catlogo de Servios', 'Service Due': 'Service Due', 'Service or Facility': 'Servio ou facilidade', 'Service profile added': 'Perfil de servio adicionado', 'Service profile deleted': 'Perfil de servio Excludo', 'Service profile updated': 'Perfil de servio atualizado', 'Services': 'Servios', 'Services Available': 'Servios Disponveis', 'Set Base Site': 'Definir base de dados do site', 'Set By': 'Definido por', 'Set True to allow editing this level of the location hierarchy by users who are not MapAdmins.': 'Configure como True para permitir que este nvel da hierarquia do local possa ser editado por usurios que no sejam administradores.', 'Setting Details': 'Detalhes de ajuste', 'Setting added': 'Configurao adicionada', 'Setting deleted': 'Configurao Excluda', 'Setting updated': 'Configurao atualizada', 'Settings': 'Ajustes', 'Settings updated': 'Ajustes atualizados', 'Settings were reset because authenticating with Twitter failed': 'As configuraes foram redefinidas porque a autenticao com Twitter falhou', 'Settings which can be configured through the web interface are available here.': 'As configuraes que podem ser definidas atravs da interface da web esto disponveis aqui.', 'Severe': 'Severo', 'Severity': 'Gravidade', 'Share a common Marker (unless over-ridden at the Feature level)': 'Compartilhar um marcador comum (a no ser que abaixo-assinado ao nvel de Componente)', 'Shelter': 'Abrigo', 'Shelter & Essential NFIs': 'Abrigo & NFIs Essenciais', 'Shelter Details': 'Detalhes de Abrigo', 'Shelter Name': 'Nome de Abrigo', 'Shelter Registry': 'Registro de Abrigo', 'Shelter Service': 'Servio de Abrigo', 'Shelter Service Details': 'Detalhes do servio de abrigo', 'Shelter Service added': 'Servio de Abrigo includo', 'Shelter Service deleted': 'Servio de Abrigo excludo', 'Shelter Service updated': 'Atualizao de servios de abrigo', 'Shelter Services': 'Servios de abrigo', 'Shelter Type': 'Tipo de abrigo', 'Shelter Type Details': 'Detalhes do tiipo de abrigo', 'Shelter Type added': 'Tipo de abrigo includo', 'Shelter Type deleted': 'Tipo de abrigo excludo', 'Shelter Type updated': 'Abrigos Tipo De atualizao', 'Shelter Types': 'Tipos De abrigo', 'Shelter Types and Services': 'Abrigo Tipos e servios', 'Shelter added': 'Abrigo includo', 'Shelter deleted': 'Abrigo excludo', 'Shelter updated': 'Abrigo atualizado', 'Shelter/NFI Assistance': 'Abrigo/ Assistncia NFI', 'Shelters': 'Abrigos', 'Shipment Created': 'Embarque Criado', 'Shipment Items': 'Itens de Carregamento', 'Shipment Items received by Inventory': 'Itens de Remessa recebidos pelo Inventrio', 'Shipment Items sent from Inventory': 'Itens de Remessa enviados pelo Inventrio', 'Shipment to Send': 'Carga para Enviar', 'Shipments': 'Remessas', 'Shipments To': 'Remessas Para', 'Shooting': 'Tiroteio', 'Short Assessment': 'Curta Avaliao', 'Short Description': 'Breve Descrio', 'Show Checklist': 'Mostrar Lista De Verificao', 'Show Details': 'Mostrar detalhes', 'Show Map': 'Mostrar Mapa', 'Show Region in Menu?': 'Mostrar Regio no Menu?', 'Show in Menu?': 'Show in Menu?', 'Show on Map': 'Mostrar no mapa', 'Show on map': 'Mostrar no mapa', 'Sign-up as a volunteer': 'Inscrever-se como um voluntrio', 'Sign-up for Account': 'Inscrever-se para conta', 'Sign-up succesful - you should hear from us soon!': 'Sua inscriao foi feita com sucesso - aguarde notcias em breve!', 'Sindhi': 'Sindi', 'Single PDF File': 'Single PDF File', 'Site': 'site', 'Site Administration': 'Administrao do site', 'Site or Location': 'Stio ou Local', 'Sites': 'sites', 'Situation': 'Situao', 'Situation Awareness & Geospatial Analysis': 'Situao Reconhecimento & Geoespaciais Anlise', 'Sketch': 'Esboo', 'Skill': 'QUALIFICAO', 'Skill Catalog': 'Catlogo de Conhecimentos', 'Skill Details': 'Detalhes das habilidades', 'Skill Equivalence': 'Equivalncia de Conhecimentos', 'Skill Equivalence Details': 'Detalhes da Equivalncia de Habilidade', 'Skill Equivalence added': 'Equivalncia de Habilidade includa', 'Skill Equivalence deleted': 'Equivalncia de Habilidade excluda', 'Skill Equivalence updated': 'Equivalncia de Habilidade atualizada', 'Skill Equivalences': 'Equivalncias de habilidade', 'Skill Provision': 'Proviso de Habilidade', 'Skill Provision Catalog': 'Catlogo de habilidades disponvel', 'Skill Provision Details': 'Detalhes de habilidades disponvel', 'Skill Provision added': 'Proviso de Habilidade includa', 'Skill Provision deleted': 'Catalogo de habilidades excludo', 'Skill Provision updated': 'Catlogo de habilidades atualizado', 'Skill Provisions': 'Habilidades disponveis', 'Skill Status': 'Status da Habilidade', 'Skill TYpe': 'Tipo de habilidade', 'Skill Type': 'Skill Type', 'Skill Type Catalog': 'Catlogo de tipos de habilidades', 'Skill Type Details': 'Detalhes do tipo de habilidade', 'Skill Type added': 'Tipo de habilidade includo', 'Skill Type deleted': 'Tipo de habilidade excludo', 'Skill Type updated': 'Tipo de habilidade atualizado', 'Skill Types': 'Tipos de habilidade', 'Skill added': 'Habilidade includa', 'Skill added to Request': 'Skill added to Request', 'Skill deleted': 'Habilidade Excluda', 'Skill removed': 'Skill removed', 'Skill removed from Request': 'Skill removed from Request', 'Skill updated': 'Habilidade ATUALIZADA', 'Skill/Training': 'Habilidades/Treinamento', 'Skills': 'Habilidades', 'Skills Catalog': 'Catlogo de habilidades', 'Skills Management': 'Gerenciamento das Habilidades', 'Skype': 'Skype', 'Skype ID': 'ID DO Skype', 'Slightly Damaged': 'Ligeiramente Danificado', 'Slope failure, debris': 'falha de inclinao, destroos', 'Small Trade': 'Pequeno Comrcio', 'Smoke': 'Fumaa', 'Snapshot': 'snapshot', 'Snapshot Report': 'Relatrio de snapshot', 'Snow Fall': 'Queda de neve , nevasca', 'Snow Squall': 'Rajada de neve', 'Soil bulging, liquefaction': 'abaulamento do solo, liquefao', 'Solid waste': 'Resduos slidos', 'Solution': 'Soluo', 'Solution Details': 'Detalhes da Soluo', 'Solution Item': 'Item de Soluo', 'Solution added': 'Soluo adicionada', 'Solution deleted': 'Soluo excluda', 'Solution updated': 'Soluo atualizada', 'Solutions': 'Solues', 'Some': 'Algum', 'Sorry - the server has a problem, please try again later.': 'Sorry - the server has a problem, please try again later.', 'Sorry that location appears to be outside the area of the Parent.': 'Desculpe ! Essa localizao est fora da rea do Pai.', 'Sorry that location appears to be outside the area supported by this deployment.': 'Desculpe ! Essa localizao parece estar fora da rea suportada por esta implementao.', 'Sorry, I could not understand your request': 'Desculpe, eu no pude entender o seu pedido', 'Sorry, only users with the MapAdmin role are allowed to create location groups.': 'Desculpe, apenas usurios com o perfil MapAdmin tem permisso para criar locais dos grupos.', 'Sorry, only users with the MapAdmin role are allowed to edit these locations': 'Desculpe, apenas usurios com o perfil MapAdmin tem permisso para editar estes locais', 'Sorry, something went wrong.': 'Desculpe, algo deu errado.', 'Sorry, that page is forbidden for some reason.': 'Desculpe ! Esta pgina tem acesso restrito por alguma razo.', 'Sorry, that service is temporary unavailable.': 'Desculpe ! Este servio est indisponvel temporariamente.', 'Sorry, there are no addresses to display': 'Desculpe ! No h endereos para visualizar.', "Sorry, things didn't get done on time.": 'Desculpe ! As tarefas no foram concludas em tempo til.', "Sorry, we couldn't find that page.": 'Desculpe, no foi possvel localizar essa pgina.', 'Source': 'source', 'Source ID': 'ID de origem', 'Source Time': 'Origem do tempo', 'Sources of income': 'Fontes de rendimento', 'Space Debris': 'Destroos Espaciais', 'Spanish': 'espanhol', 'Special Ice': 'Gelo Especial', 'Special Marine': 'Marinha especial', 'Specialized Hospital': 'Hospital especializado.', 'Specific Area (e.g. Building/Room) within the Location that this Person/Group is seen.': 'rea especfica (exemplo: edifcio/quarto) com a localizao de onde essa pessoa/grupo visto.', 'Specific locations need to have a parent of level': 'Locais especficos precisam ter um nvel paterno.', 'Specify a descriptive title for the image.': 'Especifique um ttulo descritivo para a imagem.', 'Specify the bed type of this unit.': 'Especifique o tipo de cama dessa unidade.', 'Specify the number of available sets': 'Especificar o nmero de conjuntos disponveis', 'Specify the number of available units (adult doses)': 'Especifique o nmero de unidades disponveis (doses para adultos)', 'Specify the number of available units (litres) of Ringer-Lactate or equivalent solutions': 'Especificar o nmero de unidades disponveis (litros) de Ringer-Lactato ou solues equivalentes', 'Specify the number of sets needed per 24h': 'Especificar o nmero de conjuntos necessrios por 24h', 'Specify the number of units (adult doses) needed per 24h': 'Especificar o nmero de unidades (doses para adultos) necessrio por 24h', 'Specify the number of units (litres) of Ringer-Lactate or equivalent solutions needed per 24h': 'Especificar o nmero de unidades (litros) de Ringer-Lactato ou solues equivalentes necessrias para 24h', 'Speed': 'Speed', 'Spherical Mercator?': 'Mapa Mercator Esfrico?', 'Spreadsheet Importer': 'PLANILHA IMPORTADOR', 'Spreadsheet uploaded': 'Planilha transferido por UPLOAD', 'Spring': 'Primavera', 'Squall': 'Rajada', 'Staff': 'Equipe', 'Staff & Volunteers': 'Colaboradores & Voluntrios', 'Staff 2': 'Equipe 2', 'Staff Details': 'Equipe Detalhes', 'Staff ID': 'ID da equipe', 'Staff List': 'Lista de pessoal', 'Staff Member Details': 'Detalhes de membro da equipe', 'Staff Members': 'Membros da equipe', 'Staff Record': 'Registro de pessoal', 'Staff Type Details': 'Equipe Tipo Detalhes', 'Staff Type added': 'Equipe tipo includo', 'Staff Type deleted': 'Tipo De equipe excludo', 'Staff Type updated': 'Equipe Tipo De atualizao', 'Staff Types': 'Tipos de equipe', 'Staff added': 'Equipe includa', 'Staff and Volunteers': 'Funcionrios e Voluntrios', 'Staff deleted': 'Equipe excluda', 'Staff member added': 'Membro da equipe includo', 'Staff member updated': 'Membro da equipe atualizado', 'Staff present and caring for residents': 'Equipe presente e cuidando de moradores', 'Staff updated': 'Equipe atualizado', 'Staff2': 'staff2', 'Staffing': 'Equipe', 'Stairs': 'Escadas', 'Start Date': 'Data do incio', 'Start date': 'Data Inicial', 'Start of Period': 'Incio do Perodo', 'State': 'Status', 'Stationery': 'Papel de Carta', 'Status': 'Status', 'Status Report': 'Relatrio de status', 'Status Updated': 'Status atualizado', 'Status added': 'Estado adicionado', 'Status deleted': 'Estado excludo', 'Status of clinical operation of the facility.': 'Estado da operao clnica da instalao.', 'Status of general operation of the facility.': 'Estado da operao geral da instalao.', 'Status of morgue capacity.': 'Estado da capacidade da morgue.', 'Status of operations of the emergency department of this hospital.': 'Estado das operaes do Departamento de Emergncia deste hospital.', 'Status of security procedures/access restrictions in the hospital.': 'Estado dos procedimentos de segurana/Restries de Acesso no hospital.', 'Status of the operating rooms of this hospital.': 'Status das salas de operao deste hospital.', 'Status updated': 'Status atualizado', 'Steel frame': 'Estrutura de ao', 'Stolen': 'Roubado', 'Store spreadsheets in the Eden database': 'Arquivar as planilhas no banco de dados Eden', 'Storeys at and above ground level': 'Andares e no nvel do solo acima', 'Storm Force Wind': 'Tempestade Fora Vento', 'Storm Surge': 'ressaca', 'Stowaway': 'Penetra', 'Street Address': 'Endereo residencial', 'Streetview Enabled?': 'Streetview Enabled?', 'Strong Wind': 'vento forte', 'Structural': 'estrutural', 'Structural Hazards': 'riscos estruturais', 'Style': 'Style', 'Style Field': 'Estilo do Campo', 'Style Values': 'Estilo dos Valores', 'Sub-type': 'Subtipo', 'Subject': 'assunto', 'Submission successful - please wait': 'envio bem sucedido - por favor aguarde', 'Submission successful - please wait...': 'envio bem sucedido - por favor aguarde...', 'Submit New': 'Submeter Novamente', 'Submit New (full form)': 'Submeter Novo (formulrio completo)', 'Submit New (triage)': 'Submeter novo (triagem)', 'Submit a request for recovery': 'envie um pedido de recuperao', 'Submit new Level 1 assessment (full form)': 'Submeter novo nvel 1 de avaliao (formulrio completo)', 'Submit new Level 1 assessment (triage)': 'Submeter novo nvel 1 de avaliao (triagem)', 'Submit new Level 2 assessment': 'Submeter novo nvel 2 de avaliao', 'Subscription Details': 'Detalhes da Assinatura', 'Subscription added': 'Assinatura Includa', 'Subscription deleted': 'Assinatura Excluda', 'Subscription updated': 'Assinatura ATUALIZADO', 'Subscriptions': 'assinaturas', 'Subsector': 'Subsetor', 'Subsector Details': 'Detalhes de subsetor', 'Subsector added': 'Subsetor includo', 'Subsector deleted': 'Subsetor excludo', 'Subsector updated': 'Subsetor atualizado', 'Subsectors': 'Subsetores', 'Subsistence Cost': 'custo de subsistencia', 'Suburb': 'Subrbio', 'Suggest not changing this field unless you know what you are doing.': 'Sugerimos no alterar esse campo a menos que voc saiba o que est fazendo.', 'Summary': 'Sumrio', 'Summary by Administration Level': 'Resumo por Nvel de Administrao', 'Sunday': 'Domingo', 'Supervisor': 'Supervisor', 'Supplies': 'Suprimentos', 'Supply Chain Management': 'Supply Chain Management', 'Supply Item Categories': 'Supply Item Categories', 'Support Request': 'Pedido de Suporte', 'Support Requests': 'Pedidos de Suporte', 'Supports the decision making of large groups of Crisis Management Experts by helping the groups create ranked list.': 'Suporta a tomada de deciso de grandes grupos de Especialistas em Gesto de Crises ajudando os grupos a criar listas de classificados.', 'Sure you want to delete this object?': 'Tem certeza que voc quer excluir este objeto?', 'Surgery': 'Cirurgia', 'Survey Answer': 'Resposta da Pesquisa', 'Survey Answer Details': 'Detalhes da Resposta da Pesquisa', 'Survey Answer added': 'Includo Resposta da Pesquisa', 'Survey Answer deleted': 'Excludo a Resposta da Pesquisa', 'Survey Answer updated': 'Resposta da Pesquisa atualizada', 'Survey Module': 'Mdulo de Pesquisa', 'Survey Name': 'Nome da Pesquisa', 'Survey Question': 'Questo de Pesquisa de Opinio', 'Survey Question Details': 'Detalhes da Pergunta de Pesquisa', 'Survey Question Display Name': 'Nome da pergunta de pesquisa', 'Survey Question added': 'Pergunta de pesquisa includa', 'Survey Question deleted': 'Pergunta de pesquisa excluda', 'Survey Question updated': 'Pergunta de pesquisa atualizada', 'Survey Section': 'Seo da Pesquisa de Opinio', 'Survey Section Details': 'Detalhes de Seo de Pesquisa', 'Survey Section Display Name': 'Seo de pesquisa do nome de exibio', 'Survey Section added': 'Seo de Pesquisa includa', 'Survey Section deleted': 'Seo de Pesquisa excluda', 'Survey Section updated': 'Seo de pesquisa atualizada', 'Survey Series': 'Srie de Pesquisa', 'Survey Series Details': 'Srie de Pesquisa Detalhes', 'Survey Series Name': 'Nome de Srie de Pesquisa', 'Survey Series added': 'Srie de Pesquisa includa', 'Survey Series deleted': 'Srie de Pesquisa excluda', 'Survey Series updated': 'Srie de Pesquisa atualizada', 'Survey Template': 'Modelo de Pesquisa de Opinio', 'Survey Template Details': 'Definir detalhes do formulrio', 'Survey Template added': 'Modelo de Pesquisa includo', 'Survey Template deleted': 'Modelo de Pesquisa excludo', 'Survey Template updated': 'Definio de formulrio actualizada', 'Survey Templates': 'Definir formulrios', 'Symbology': 'Simbologia', 'Sync Conflicts': 'Conflitos de Sincronizao', 'Sync History': 'Histrico de Sincronizao', 'Sync Now': 'Sincronizar Agora', 'Sync Partners': 'Sincronizar parceiros', '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.': 'PARCEIROS DE Sincronizao so instncias ou PARES (SahanaEden, SahanaAgasti, Ushahidi, etc. ) que voc deseja a informao de sincronizao com. Clique no link sobre o direito de ir a pgina em que voc pode incluir parceiros de sincronizao, procurar por parceiros de sincronizao e Modific-las.', 'Sync Pools': 'Conjuntos de Sincronizao', 'Sync Schedule': 'Planejamento de Sincronizao', 'Sync Settings': 'Configuraes de Sincronizao', 'Sync process already started on': 'Processo de Sincronizao j iniciado em', 'Sync process already started on ': 'Sync process already started on ', 'Synchronisation': 'Sincronizao', 'Synchronization': 'Sincronizao', 'Synchronization Conflicts': 'Conflitos de Sincronizao', 'Synchronization Details': 'Detalhes de Sincronizao', 'Synchronization History': 'Histrico de Sincronizao', 'Synchronization Peers': 'Parceiros de Sincronizao', 'Synchronization Settings': 'Configuraes de sincronizao', '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': 'Sincronizao permite compartilhar dados que voc tenha com outros e Atualizar seu prprio banco de dados com informaes recentes de outros parceiros. Esta pgina fornece informaes sobre como utilizar os recursos de sincronizao de Sahana den', 'Synchronization not configured.': 'Sincronizao no Configurada.', 'Synchronization settings updated': 'Configuraes de sincronizao atualizadas', 'Syncronisation History': 'Histrico De Sincronizao', "System's Twitter account updated": 'DO SISTEMA Chilreiam conta ATUALIZADO', 'Tags': 'Tags', 'Take shelter in place or per <instruction>': 'Abrigue-se no local ou por', 'Task': 'Task', 'Task Details': 'Detalhes da Tarefa', 'Task List': 'Lista de tarefas', 'Task Status': 'Status da tarefa', 'Task added': 'Task Inclusa', 'Task deleted': 'Tarefa excluda', 'Task removed': 'Task removed', 'Task updated': 'Tarefa atualizada', 'Tasks': 'Tarefas', 'Team': 'Equipe', 'Team Description': 'Descrio da Equipe', 'Team Details': 'Detalhes da Equipe', 'Team ID': 'ID da Equipe', 'Team Id': 'Id da Equipe', 'Team Leader': 'Lder de Equipe', 'Team Member added': 'Membro da equipe includo', 'Team Members': 'Membros da equipe', 'Team Name': 'Nome da equipe', 'Team Type': 'Tipo de equipe', 'Team added': 'Equipe includa', 'Team deleted': 'Equipe excluda', 'Team updated': 'Equipa actualizada', 'Teams': 'Equipes', 'Technical testing only, all recipients disregard': 'Apenas teste tcnico, todos os recipientes ignorem', 'Telecommunications': 'Telecomunicaes', 'Telephone': 'Telefone', 'Telephone Details': 'Telephone Details', 'Telephony': 'Telefonia', 'Tells GeoServer to do MetaTiling which reduces the number of duplicate labels.': 'Tells GeoServer to do MetaTiling which reduces the number of duplicate labels.', 'Temp folder %s not writable - unable to apply theme!': 'PASTA Temp%s no gravvel-impossvel aplicar tema!', 'Template Name': 'Template Name', 'Template file %s not readable - unable to apply theme!': 'Modelo% arquivo no Legvel-impossvel aplicar tema!', 'Templates': 'modelos', 'Term for the fifth-level within-country administrative division (e.g. a voting or postcode subdivision). This level is not often used.': 'Termo para o 5 nvel de diviso administrativa nacional (por exemplo, uma subdiviso de cdigo postal ou de zona de votao). Este nvel no frequentemente utilizado.', 'Term for the fourth-level within-country administrative division (e.g. Village, Neighborhood or Precinct).': 'Termo para o 4 nvel de diviso administrativa nacional(por exemplo, vila, bairro ou distrito).', 'Term for the primary within-country administrative division (e.g. State or Province).': 'Prazo para a principal diviso administrativa dentro do pas (i.e. Estado ou Distrito).', 'Term for the secondary within-country administrative division (e.g. District or County).': 'Prazo para a Secundria diviso administrativa dentro do pas (por exemplo, Bairro ou Municpio).', 'Term for the secondary within-country administrative division (e.g. District).': 'Prazo para a Secundria diviso administrativa dentro do pas (i.e. Bairro).', 'Term for the third-level within-country administrative division (e.g. City or Town).': 'Prazo para o 3 nvel de diviso administrativa dentro do pas (por exemplo, Cidade ou Municipio).', 'Term for the top-level administrative division (i.e. Country).': 'Prazo para a diviso administrativa de nvel superior (por exemplo Pas).', 'Term for the top-level administrative division (typically Country).': 'Prazo para a diviso administrativa de nvel superior (geralmente Pas).', 'Terms of Service\n\nYou have to be eighteen or over to register as a volunteer.': 'Terms of Service\n\nYou have to be eighteen or over to register as a volunteer.', 'Terms of Service:': 'Terms of Service:', 'Territorial Authority': 'Autoridade territoriais', 'Terrorism': 'Terrorismo', 'Tertiary Server (Optional)': 'Servidor tercirio (opcional)', 'Text': 'texto', 'Text Color for Text blocks': 'Cor de texto para os blocos de texto', 'Text before each Text Field (One per line)': 'Texto antes de cada campo de texto (um por linha)', 'Thank you for validating your email. Your user account is still pending for approval by the system administator (%s).You will get a notification by email when your account is activated.': 'Obrigado para validar seu e-mail. Sua conta de usurio ainda est pendente para aprovao pelo administrador do Sistema (%s). voc receber uma notificao por e-mail quando sua conta esteja ativada.', 'Thanks for your assistance': 'Obrigado por sua ajuda', 'The': 'O', 'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1 == db.table2.field2" results in a SQL JOIN.': 'O "query" uma condio como "db.table1.field1==\'value\'". Algo como "db.table1.field1 == db.table2.field2" resulta em uma juno SQL.', 'The Area which this Site is located within.': 'A rea que este Site est localizado', 'The Assessments module allows field workers to send in assessments.': 'O Modulo Avaliaes permite aos trabalhadores de campo que enviem avaliaes.', 'The Author of this Document (optional)': 'O autor deste documento (opcional)', 'The Building Asssesments module allows building safety to be assessed, e.g. after an Earthquake.': 'O mdulo avaliaes De Construo permite a segurana edifcio a ser avaliada, por exemplo, depois de um terremoto.', 'The Camp this Request is from': 'O Alojamento neste pedido de', 'The Camp this person is checking into.': 'O Alojamento que esta pessoa est se registrando.', '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.': 'O local atual do Usurio/Grupo, que pode ser geral (para relatrios) ou precisa (para exibir em um mapa). Digite alguns caracteres para procurar nos locais disponveis.', "The Donor(s) for this project. Multiple values can be selected by holding down the 'Control' key.": "O doador(s) para este projeto. Vrios valores podem ser selecionados ao manter pressionado a chave 'control'", 'The Email Address to which approval requests are sent (normally this would be a Group mail rather than an individual). If the field is blank then requests are approved automatically if the domain matches.': 'O endereo de e-mail para onde os pedidos de aprovao so enviados (normalmente seria um correio de Grupo ao invs de um individual). Se o campo estiver em branco, os pedidos so aprovados automaticamente se o domnio corresponder.', 'The Incident Reporting System allows the General Public to Report Incidents & have these Tracked.': 'O Sistema de Comunicao de Incidentes permite o Pblico em Geral reportar incidentes & ter esses rastreados.', '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.': 'A Localizao da Pessoa vem do, que pode ser geral (para relatrios) ou precisa (para exibir em um mapa). Digite alguns caracteres para procurar nos locais disponveis.', '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.': 'O local que a pessoa vai, que pode ser genrico (para Relatrios) ou preciso (para exibir em um mapa). Digite alguns caracteres para procurar nos locais disponveis.', 'The Media Library provides a catalog of digital media.': 'A Biblioteca de mdias fornece um catlogo de mdia digital.', 'The Messaging 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.': 'O mdulo de mensagens o hub de comunicao principal do sistema Sahana. utilizado para enviar alertas e/ou mensagens utilizando o SMS & e-mail para diferentes grupos e indivduos antes, durante e aps um desastre.', 'The Organization Registry keeps track of all the relief organizations working in the area.': 'O registro Da Organizao mantm controle de todos as organizaes de apoio que trabalham na rea.', 'The Organization 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.': 'O registro da Organizao mantm controle de todas organizaes de ajuda trabalhando numa regio de desastre. Ele captura no apenas os locais onde elas esto ativas, mas tambm captura informaes sobre o conjunto de projetos que est fornecendo em cada regio.', 'The Patient Tracking system keeps track of all the evacuated patients & their relatives.': 'The Patient Tracking system keeps track of all the evacuated patients & their relatives.', 'The Person currently filling this Role.': 'A pessoa atualmente preenchendo esta funo.', 'The Project Tracking module allows the creation of Activities to meet Gaps in Needs Assessments.': 'O mdulo acompanhamento do projeto permite a criao de atividades para preencher Lacunas nas avaliaes de necessidades.', 'The Requests Management 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.': 'O sistema De Gerenciamento De Pedidos um repositrio online central em todas as organizaes de ajuda, trabalhadores de assistncia, agentes do governo e sites de acampamento para a equipe de refugiados pode coordenar o fornecimento da ajuda com seu pedido. Ela permite que usurios aloquem os recursos disponveis para suprir as demandas de forma efetiva e eficiente.', 'The Role this person plays within this hospital.': 'A Funo desta pessoa neste hospital.', 'The Role to which this Role reports.': 'A funo qual essa funo responde.', 'The Shelter Registry 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.': 'O registro do Abrigo rastreia todos os detalhes bsicos abrigos e armazena sobre eles. Ele colabora com outros mdulos para rastrear as pessoas associadas com um abrigo, os servios disponveis etc.', 'The Shelter this Request is from': 'O pedido deste abrigo de', 'The Shelter this Request is from (optional).': 'O pedido este Abrigo de (opcional).', 'The Shelter this person is checking into.': 'O abrigo esta pessoa est verificando no.', 'The URL for the GetCapabilities of a WMS Service whose layers you want accessible via the Map.': 'A URL para o GetCapabilities de um servio WMS cujas camadas voc deseja acessveis atravs do mapa.', 'The URL for the GetCapabilities page of a Web Map Service (WMS) whose layers you want available via the Browser panel on the Map.': 'A URL para a pgina do GetCapabilities de um Web Map Service (WMS), cujas camadas que voc deseja disponveis atravs do painel do navegador no Mapa.', "The URL of the image file. If you don't upload an image file, then you must specify its location here.": 'A URL do arquivo de imagem. Se voce no fizer o upload de um arquivo de imagem, ento voce dever especificar sua localizao aqui.', 'The URL of your web gateway without the post parameters': 'A URL de seu gateway da web sem os parmetros post', 'The URL to access the service.': 'A URL para acessar o servio.', 'The Unique Identifier (UUID) as assigned to this facility by the government.': 'O Idenfificador nico (UUID) conforme designado pelo governo para esta filial.', 'The asset must be assigned to a site OR location.': 'O ativo deve ser assinalado para um site ou local.', 'The attribute which is used for the title of popups.': 'O atributo que usado para o ttulo de popups.', 'The attribute within the KML which is used for the title of popups.': 'O Atributo dentro do KML que utilizado para o ttulo dos pop-ups.', 'The attribute(s) within the KML which are used for the body of popups. (Use a space between attributes)': 'O Atributo(s) no KML que so utilizados para o corpo dos pop-ups. ( utilizar um espao entre atributos )', 'The body height (crown to heel) in cm.': 'A altura do corpo (cabea at o calcanhar) em cm.', 'The contact person for this organization.': 'A pessoa de contato nessa organizao.', 'The country the person usually lives in.': 'O pas que a pessoa vive habitualmente', 'The default Facility for which this person is acting.': 'The default Facility for which this person is acting.', 'The default Facility for which you are acting.': 'The default Facility for which you are acting.', 'The default Organization for whom this person is acting.': 'A Organizao padro para quem esta pessoa est atuando.', 'The default Organization for whom you are acting.': 'A Organizao padro para quem voc est atuando.', 'The duplicate record will be deleted': 'O registro duplicado ser excludo', 'The first or only name of the person (mandatory).': 'O primeiro nome ou nico nome da pessoa (obrigatrio).', 'The form of the URL is http://your/web/map/service?service=WMS&request=GetCapabilities where your/web/map/service stands for the URL path to the WMS.': 'O formulrio da URL http://your/web/map/service?service=WMS&request=GetCapabilities where your/web/map/service que representa o caminho da URL para o WMS.', 'The language you wish the site to be displayed in.': 'O idioma que voc deseja que o site seja exibido.', 'The last known location of the missing person before disappearance.': 'A ltima localizao conhecida da pessoa desaparecida antes do desaparecimento.', 'The level at which Searches are filtered.': 'The level at which Searches are filtered.', 'The list of Brands are maintained by the Administrators.': 'A lista de Marcas sero mantidas pelos administradores.', 'The list of Catalogs are maintained by the Administrators.': 'A lista de catlogos mantida pelos administradores.', 'The list of Item categories are maintained by the Administrators.': 'A lista de categorias dos itens so mantidas pelos administradores.', 'The map will be displayed initially with this latitude at the center.': 'O mapa ser exibido inicialmente com esta latitude no centro.', 'The map will be displayed initially with this longitude at the center.': 'O mapa ser exibido inicialmente com esta longitude no centro.', 'The minimum number of features to form a cluster.': 'O nmero mnimo de recursos para formar um cluster.', 'The name to be used when calling for or directly addressing the person (optional).': 'O nome a ser usado ao chamar por ou diretamente enderear a pessoa (opcional).', 'The next screen will allow you to detail the number of people here & their needs.': 'A prxima tela permitir que voc detalhe o nmero de pessoas aqui e as suas necessidades.', 'The number of Units of Measure of the Alternative Items which is equal to One Unit of Measure of the Item': 'O nmero de unidades de medida dos Itens alternativos igual a uma unidade de medida do Item', 'The number of pixels apart that features need to be before they are clustered.': 'O nmero de separado de pixels de funcionalidades tem que ser antes que eles sejam agrupados.', '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.': 'O nmero de ttulos em torno do mapa visvel para fazer download. Zero significa que a primeira pgina carrega mais rpido, nmeros maiores que zero significam que as paginas seguintes so mais rpida.', 'The person at the location who is reporting this incident (optional)': 'A pessoa no local que est relatando este incidenten (opcional)', 'The person reporting the missing person.': 'A pessoa reportando o desaparecimento de alguem', 'The post variable containing the phone number': 'A variavel post contendo o numero de telefone', 'The post variable on the URL used for sending messages': 'A varivel post no URL utilizada para enviar mensagens', 'The post variables other than the ones containing the message and the phone number': 'As variveis post diferentes das que contm a mensagem e o nmero de telefone', 'The serial port at which the modem is connected - /dev/ttyUSB0, etc on linux and com1, com2, etc on Windows': 'A porta serial no qual o modem est conectado-/dev/ttyUSB0, etc. No linux e com1, com2, etc. No Windows', 'The server did not receive a timely response from another server that it was accessing to fill the request by the browser.': 'O servidor no receber uma resposta oportuna de outro servidor que ele estava acessando para preencher o pedido pelo navegador.', 'The server received an incorrect response from another server that it was accessing to fill the request by the browser.': 'O servidor recebeu uma resposta incorreta a partir de outro servidor que ele estava acessando para preencher o pedido pelo navegador.', 'The site where this position is based.': 'O local onde esta posio se baseia.', 'The staff responsibile for Facilities can make Requests for assistance. Commitments can be made against these Requests however the requests remain open until the requestor confirms that the request is complete.': 'O pessoal responsvel pelas Instalaes podem fazer pedidos de assistncia. Compromissos podem ser feitas em relao a esses pedidos no entanto os pedidos permanecem abertas at o SOLICITANTE confirma que o pedido foi concludo.', 'The subject event no longer poses a threat or concern and any follow on action is described in <instruction>': 'O acontecimento j no representa uma ameaa ou preocupao e a ao a ser tomada descrita em<instruction>', 'The time at which the Event started.': 'O momento em que o evento comeou.', 'The time difference between UTC and your timezone, specify as +HHMM for eastern or -HHMM for western timezones.': 'The time difference between UTC and your timezone, specify as +HHMM for eastern or -HHMM for western timezones.', 'The title of the WMS Browser panel in the Tools panel.': 'O ttulo do painel do navegador WMS em ferramentas.', 'The token associated with this application on': 'O token associado a este aplicativo em', 'The unique identifier which identifies this instance to other instances.': 'O indentificador nico diferencia esta instncia de outras.', 'The way in which an item is normally distributed': 'O modo em que um item normalmente distribudo', 'The weight in kg.': 'O peso em quilogramas.', 'Theme': 'Tema', 'Theme Details': 'Detalhes do Tema', 'Theme added': 'Tema includo', 'Theme deleted': 'Tema excludo', 'Theme updated': 'Tema atualizado', 'Themes': 'Temas', 'There are errors': 'H erros', 'There are insufficient items in the Inventory to send this shipment': 'no h itens suficientes no armazm para o envio desse carregamento', 'There are multiple records at this location': 'H vrios registros neste local', 'There are not sufficient items in the Inventory to send this shipment': 'no h itens suficientes no inventrio para enviar esse carregamento', 'There is no address for this person yet. Add new address.': 'No h endereo para esta pessoa ainda. Adicionar novo endereo.', 'There was a problem, sorry, please try again later.': 'There was a problem, sorry, please try again later.', 'These are settings for Inbound Mail.': 'Estas so as configuraes para Correio de entrada.', 'These are the Incident Categories visible to normal End-Users': 'Estes so as Categorias de incidentes visveis para usurios finais normais.', 'These need to be added in Decimal Degrees.': 'estas precisam ser includas em graus decimais.', 'They': 'Eles', 'This appears to be a duplicate of': 'Isto parece ser duplicado de', 'This appears to be a duplicate of ': 'This appears to be a duplicate of ', 'This email address is already in use': 'This email address is already in use', 'This file already exists on the server as': 'Este arquivo j existe como no servidor', 'This is appropriate if this level is under construction. To prevent accidental modification after this level is complete, this can be set to False.': 'Isso apropriado se esse nvel estiver em construo. Para evitar modificao acidental aps esse nvel estar concludo, pode ser configurado como False.', 'This is the way to transfer data between machines as it maintains referential integrity.': 'Este o caminho para a transferncia de dados entre mquinas que mantm a integridade referencial.', 'This is the way to transfer data between machines as it maintains referential integrity...duplicate data should be removed manually 1st!': 'Este o caminho para a transferncia de dados entre mquinas que mantm a integridade referencial...duplicado dados devem ser removidos manualmente 1!', 'This level is not open for editing.': 'Este nvel no aberto para edio.', 'This might be due to a temporary overloading or maintenance of the server.': 'Isso pode ser devido a uma sobrecarga temporria ou manuteno do servidor.', 'This module allows Inventory Items to be Requested & Shipped between the Inventories of Facilities.': 'Este mdulo permite que itens de inventrio sejam Solicitados & Enviados entre os Inventrios das instalaes.', 'This module allows you to manage Events - whether pre-planned (e.g. exercises) or Live Incidents. You can allocate appropriate Resources (Human, Assets & Facilities) so that these can be mobilized easily.': 'This module allows you to manage Events - whether pre-planned (e.g. exercises) or Live Incidents. You can allocate appropriate Resources (Human, Assets & Facilities) so that these can be mobilized easily.', 'This module allows you to plan scenarios for both Exercises & Events. You can allocate appropriate Resources (Human, Assets & Facilities) so that these can be mobilized easily.': 'Este mdulo permite que voc planeje cenrios para os Exerccios & Eventos. Voc pode alocar apropriado recursos (humanos, Ativos e Recursos) para que estes possam ser mobilizados facilmente.', 'This page shows you logs of past syncs. Click on the link below to go to this page.': 'Esta pgina mostra as logs das sincronizaes passadas. Clique no link abaixo para ir para essa pgina.', 'This screen allows you to upload a collection of photos to the server.': 'Esta tela permite que voc faa upload de um conjunto de fotografias para o servidor.', 'This setting can only be controlled by the Administrator.': 'Esta definico s pode ser controlado pelo administrador.', 'This shipment has already been received.': 'Este carregamento j foi recebido.', 'This shipment has already been sent.': 'Este carregamento j foi enviado.', 'This shipment has not been received - it has NOT been canceled because can still be edited.': 'Este carregamento no foi recebido-ele no foi cancelado porque ainda pode ser editado.', 'This shipment has not been sent - it has NOT been canceled because can still be edited.': 'Este carregamento no foi enviado- ele no foi cancelado porque ainda pode ser editado.', 'This shipment will be confirmed as received.': 'Este carregamento ser confirmado como recebido.', 'This value adds a small mount of distance outside the points. Without this, the outermost points would be on the bounding box, and might not be visible.': 'Esse valor inclui um pequeno valor de distncia fora dos pontos. Sem isto, os pontos mais afastados estariam na caixa delimitadora, e podem no estar visveis.', 'This value gives a minimum width and height in degrees for the region shown. Without this, a map showing a single point would not show any extent around that point. After the map is displayed, it can be zoomed as desired.': 'Este valor fornece uma largura e altura minimas em graus para a regio mostrada. Sem isto, um mapa que mostre um ponto nico no mostraria nenhuma extenso ao redor desse ponto. Depois que o mapa for exibido, pode ser ampliado, conforme desejado.', 'Thunderstorm': 'Trovoada', 'Thursday': 'Quinta-feira', 'Ticket': 'Bilhete', 'Ticket Details': 'Detalhes do bilhete', 'Ticket ID': 'ID do Bilhete', 'Ticket added': 'Bilhete includo', 'Ticket deleted': 'Bilhete removido', 'Ticket updated': 'Bilhete atualizado', 'Ticketing Module': 'Mdulo de bilhetes', 'Tickets': 'Bilhetes', 'Tiled': 'Tiled', 'Tilt-up concrete': 'Inclinar concreto', 'Timber frame': 'Quadro de madeira', 'Timeline': 'Prazo', 'Timeline Report': 'Relatrio de perodos de tempo', 'Timestamp': 'Timestamp', 'Timestamps can be correlated with the timestamps on the photos to locate them on the map.': 'Timestamps can be correlated with the timestamps on the photos to locate them on the map.', 'Title': 'ttulo', 'Title to show for the Web Map Service panel in the Tools panel.': 'Ttulo para mostrar o painel de servio de Mapa da Web no painel de Ferramentas.', 'To': 'para', 'To Location': 'Localidade de destino', 'To Person': 'Para Pessoa', 'To begin the sync process, click the button on the right =>': 'Para iniciar o processo de Sincronizao, clique no boto direita.', 'To begin the sync process, click the button on the right => ': 'To begin the sync process, click the button on the right => ', 'To begin the sync process, click this button =>': 'Para iniciar o processo de Sincronizao, clique neste boto.', 'To begin the sync process, click this button => ': 'To begin the sync process, click this button => ', 'To create a personal map configuration, click': 'Para criar uma configurao do mapa pessoal, clique', 'To create a personal map configuration, click ': 'To create a personal map configuration, click ', 'To edit OpenStreetMap, you need to edit the OpenStreetMap settings in models/000_config.py': 'Para editar OpenStreetMap, voc precisa editar as configuraes do OpenStreetMap em models/000_config.py', 'To search by job title, enter any portion of the title. You may use % as wildcard.': 'Para pesquisar por ttulo, digite qualquer parte do ttulo. Pode utilizar o % como um substituto para qualquer caracter.', "To search by person name, enter any of the first, middle or last names, separated by spaces. You may use % as wildcard. Press 'Search' without input to list all persons.": "Para pesquisar por nome, digite qualquer do primeiro, meio ou ltimos nomes, separados por espaos. Pode utilizar o % como um substituto para qualquer caracter. PRESSIONE ' Search' sem entrada para listar todas as pessoas.", "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.": "Para procurar um corpo, digite o nmero da ID do corpo. Pode utilizar o % como um substituto para qualquer caracter. PRESSIONE ' Search' sem entrada para listar todos os organismos.", "To search for a hospital, enter any of the names or IDs of the hospital, or the organization name or acronym, separated by spaces. You may use % as wildcard. Press 'Search' without input to list all hospitals.": "Para procurar um hospital, digite qualquer um dos nomes ou IDs do hospital, ou o nome da organizao ou Acrnimo, separados por espaos. Pode utilizar o % como um substituto para qualquer caracter. PRESSIONE ' Search' sem entrada para listar todos os hospitais.", "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.": "Para procurar um hospital, digite qualquer um dos nomes ou IDs do hospital, separados por espaos. Pode utilizar o % como um substituto para qualquer caracter. PRESSIONE ' Search' sem entrada para listar todos os hospitais.", "To search for a location, enter the name. You may use % as wildcard. Press 'Search' without input to list all locations.": "Para procurar um local, digite o nome. Pode utilizar o % como um substituto para qualquer caracter. PRESSIONE ' Search' sem entrada para listar todos os locais.", "To search for a patient, enter any of the first, middle or last names, separated by spaces. You may use % as wildcard. Press 'Search' without input to list all patients.": "To search for a patient, enter any of the first, middle or last names, separated by spaces. You may use % as wildcard. Press 'Search' without input to list all patients.", "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.": "Para procurar por uma pessoa, digite qualquer do primeiro, meio ou ltimos nomes e/ou um nmero de ID de uma pessoa, separados por espaos. Pode utilizar o % como um substituto para qualquer caracter. PRESSIONE ' Search' sem entrada para listar todas as pessoas.", "To search for a person, enter any of the first, middle or last names, separated by spaces. You may use % as wildcard. Press 'Search' without input to list all persons.": "Para procurar por uma pessoa, digite ou o primeiro nome, ou o nome do meio ou sobrenome, separados por espaos. Pode utilizar o % como um substituto para qualquer caracter. PRESSIONE ' Search' sem entrada para listar todas as pessoas.", "To search for an assessment, enter any portion the ticket number of the assessment. You may use % as wildcard. Press 'Search' without input to list all assessments.": "Para procurar por uma avaliao, digite qualquer parte o nmero da permisso da avaliao. Pode utilizar o % como um substituto para qualquer caracter. PRESSIONE ' Search' sem entrada para listar todas as avaliaes.", 'To variable': 'Para varivel', 'Tools': 'ferramentas', 'Tornado': 'tornado', 'Total': 'Total', 'Total # of Target Beneficiaries': 'N Total de Beneficirios De Destino', 'Total # of households of site visited': 'N Total de famlias de site Visitado', 'Total Beds': 'Total de Camas', 'Total Beneficiaries': 'Total de Beneficirios', 'Total Cost per Megabyte': 'Custo Total por Megabyte', 'Total Cost per Minute': 'Custo Total por Minuto', 'Total Monthly': 'Total Mensal', 'Total Monthly Cost': 'Custo Total mensal', 'Total Monthly Cost:': 'Custo Total mensal:', 'Total Monthly Cost: ': 'Total Monthly Cost: ', 'Total One-time Costs': 'Total Um tempo de Custos', 'Total Persons': 'Totalizar Pessoas', 'Total Recurring Costs': 'Totalizar Custos Recorrentes', 'Total Unit Cost': 'Total do custo unitrio', 'Total Unit Cost:': 'Custo Unitrio Total:', 'Total Unit Cost: ': 'Total Unit Cost: ', 'Total Units': 'Total de unidades', 'Total gross floor area (square meters)': 'Total de rea bruta (metros quadrados)', 'Total number of beds in this hospital. Automatically updated from daily reports.': 'Nmero Total de leitos neste hospital. Atualizado automaticamente a partir de relatrios dirios.', 'Total number of houses in the area': 'Nmero Total de casas na rea', 'Total number of schools in affected area': 'Nmero Total de escolas em rea afetada', 'Total population of site visited': 'Totalizar Populao do site Visitado', 'Totals for Budget:': 'Total para Oramento', 'Totals for Bundle:': 'Total do Pacote', 'Totals for Kit:': 'Totais para Kit', 'Tourist Group': 'Grupo turstico', 'Town': 'Urbano', 'Traces internally displaced people (IDPs) and their needs': 'Rastreia pessoas deslocadas internamente (PDI) e suas necessidades', 'Tracing': 'Rastreio', 'Track': 'Rastrear', 'Track Details': 'Detalhes do restraio', 'Track deleted': 'Rastreio excludo', 'Track updated': 'Rastreamento atualizado', 'Track uploaded': 'Rastreamento enviado', 'Track with this Person?': 'RASTREAR com esta pessoa?', 'Tracking of Patients': 'Tracking of Patients', 'Tracking of Projects, Activities and Tasks': 'Rastreamento de projetos, atividades e tarefas', 'Tracking of basic information on the location, facilities and size of the Shelters': 'Rastreamento de informaes bsicas sobre a localizao, instalaes e tamanho dos abrigos', 'Tracks': 'Tracks', 'Tracks the location, distibution, capacity and breakdown of victims in Shelters': 'Rastreia o local, distribuio, capacidade e discriminao da vtima em Abrigos', 'Traffic Report': 'Relatrio de trfego', 'Training': 'Treinamento', 'Training Course Catalog': 'Catlogo de cursos de treinamento', 'Training Details': 'Detalhes do treinamento', 'Training added': 'Treinamento includo', 'Training deleted': 'Treinamento excludo', 'Training updated': 'Treinamento atualizado', 'Trainings': 'Treinamentos', 'Transit': 'Trnsito', 'Transit Status': 'Status do Transito', 'Transition Effect': 'Efeito de Transio', 'Transparent?': 'TRANSPARENTE?', 'Transportation assistance, Rank': 'Assistncia de transporte, Classificao', 'Trauma Center': 'Centro de traumas', 'Travel Cost': 'Custo da Viagem', 'Tropical Storm': 'Tempestade Tropical', 'Tropo': 'substiuir, mudar', 'Tropo Messaging Token': 'Sinal de Mensagem Tropo', 'Tropo Settings': 'Configuraes esteja doido parceiro', 'Tropo Voice Token': 'Sinal de Voz Tropo', 'Tropo settings updated': 'Configuraes Tropo Atualizadas', 'Truck': 'Caminho', 'Try checking the URL for errors, maybe it was mistyped.': 'Tente verificar se existem erros na URL, talvez tenha sido um erro de digitao', 'Try hitting refresh/reload button or trying the URL from the address bar again.': 'Tente apertar o boto atualizar/recarregar ou tente a URL a partir da barra de endereos novamente', 'Try refreshing the page or hitting the back button on your browser.': 'Tente atualizar a pgina ou apertar o boto voltar em seu navegador.', 'Tsunami': 'Tsunami', 'Tuesday': 'Tera-feira', 'Twitter': 'Twitter', 'Twitter ID or #hashtag': 'ID Twitter ou #hashtag', 'Twitter Settings': 'Configuraes do Twitter', 'Type': 'type', 'Type of Construction': 'Tipo de Construo', 'Type of water source before the disaster': 'Tipo de fonte de gua antes do desastre', "Type the first few characters of one of the Person's names.": 'Digite os primeiros caracteres de um dos nomes da pessoa.', 'UID': 'uid', 'UN': 'ONU', 'URL': 'Localizador-Padro de Recursos', 'UTC Offset': 'UTC Offset', 'Un-Repairable': 'ONU-Reparveis', 'Unable to parse CSV file!': 'No possvel analisar Arquivo CSV!', 'Understaffed': 'Pessoal', 'Unidentified': 'No identificado', 'Unit Cost': 'Custo por unidade', 'Unit added': 'Unidade includa', 'Unit deleted': 'Unidade Excluda', 'Unit of Measure': 'Unidade de medida', 'Unit updated': 'Unidade Atualizados', 'Units': 'Unidades', 'Unknown': 'unknown', 'Unknown Peer': 'Peer desconhecido', 'Unknown type of facility': 'Tipo desconhecido de instalao', 'Unreinforced masonry': 'Alvenaria obras', 'Unresolved Conflicts': 'Conflitos no resolvidos', 'Unsafe': 'Inseguro', 'Unselect to disable the modem': 'Desmarcar para desativar o modem', 'Unselect to disable this API service': 'Unselect to disable this API service', 'Unselect to disable this SMTP service': 'Unselect to disable this SMTP service', 'Unsent': 'no enviado', 'Unsupported data format!': 'Formato de dados no Suportado!', 'Unsupported method!': 'Mtodo no Suportado!', 'Update': 'atualizao', 'Update Activity Report': 'Atualizar Relatrio de atividade', 'Update Cholera Treatment Capability Information': 'Atualizar informaes de capacidade de tratamento de Clera', 'Update Request': 'Atualizar Pedido', 'Update Service Profile': 'Atualizar Perfil de Servio', 'Update Status': 'Status da Atualizao', 'Update Task Status': 'Atualizar Status da Tarefa', 'Update Unit': 'Atualizar Unidade', 'Update if Master': 'Atualizar se for o principal', 'Update if Newer': 'Atualizar se Mais Recente', 'Update your current ordered list': 'ATUALIZE a seu atual lista ordenada', 'Updated By': 'Atualizado por', 'Upload Comma Separated Value File': 'Upload Comma Separated Value File', 'Upload Format': 'Upload Format', 'Upload OCR Form': 'Upload OCR Form', 'Upload Photos': 'Fazer Upload de Fotos', 'Upload Spreadsheet': 'Fazer atualizacao de Planilha', 'Upload Track': 'Pista de carregamento', 'Upload a CSV file': 'Upload a CSV file', 'Upload a CSV file formatted according to the Template.': 'Upload a CSV file formatted according to the Template.', 'Upload a Spreadsheet': 'Fazer Upload de uma planilha', 'Upload an image file (bmp, gif, jpeg or png), max. 300x300 pixels!': 'Fazer Upload de um arquivo de imagem (bmp, gif, jpeg ou png), mx. 300x300 pixels!', 'Upload an image file here.': 'Fazer atualizacao de um arquivo de imagem aqui.', "Upload an image file here. If you don't upload an image file, then you must specify its location in the URL field.": 'Fazer atualizacao de um arquivo de imagem aqui. Se voce no fizer o upload de um arquivo de imagem, ento voce dever especificar sua localizao no campo URL', 'Upload an image, such as a photo': 'Fazer Upload de uma imagem, como uma foto', 'Uploaded': 'Uploaded', 'Urban Fire': 'Incndio urbano', 'Urban area': 'Zona Urbana', 'Urdu': 'Urdu', 'Urgent': 'Urgente', 'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Utilize (...)&(...) para e, (...)|(...) ou para, e ~(...) para no para construir consultas mais complexas.', 'Use Geocoder for address lookups?': 'Utiliza Geocodificador para consultas de endereos?', 'Use default': 'usar o padro', 'Use these links to download data that is currently in the database.': 'Use estes links para fazer o download de dados actualmente na base de dados.', 'Use this to set the starting location for the Location Selector.': 'Use this to set the starting location for the Location Selector.', 'Used by IRS & Assess': 'Utilizado pela Receita Federal & Avaliar', 'Used in onHover Tooltip & Cluster Popups to differentiate between types.': 'Utilizado em onHover De Dicas & Cluster Popups para diferenciar entre tipos.', 'Used to build onHover Tooltip & 1st field also used in Cluster Popups to differentiate between records.': 'Utilizado para construir onHover Dicas & primeiro campo tambm utilizado no Popups Cluster para diferenciar entre os registros.', 'Used to check that latitude of entered locations is reasonable. May be used to filter lists of resources that have locations.': 'Usado para verificar latitude de locais inseridos razovel. Pode ser utilizado para filtrar listas de recursos que possuem locais.', 'Used to check that longitude of entered locations is reasonable. May be used to filter lists of resources that have locations.': 'Usado para verificar que longitude de locais inserido razovel. Pode ser utilizado para filtrar listas de recursos que possuem locais.', 'Used to import data from spreadsheets into the database': 'Para importar dados utilizada a partir de planilhas no banco de dados', 'Used within Inventory Management, Request Management and Asset Management': 'Utilizado no gerenciamento de inventrio, gerenciamento de Pedido e gerenciamento de ativos', 'User': 'usurio', 'User Account has been Disabled': 'Conta de Usurio foi Desativado', 'User Details': 'Detalhes do Usurio', 'User ID': 'User ID', 'User Management': 'gerenciamento do usurio', 'User Profile': 'Perfil do Utilizador', 'User Requests': 'Pedidos do Utilizador', 'User Updated': 'Utilizador actualizado', 'User added': 'Usurio Includo', 'User already has this role': 'Usurio j tem essa funo', 'User deleted': 'Usurio Excludo', 'User updated': 'Utilizador actualizado', 'Username': 'userName', 'Users': 'usurios', 'Users removed': 'Utilizadores removidos', 'Uses the REST Query Format defined in': 'Utiliza o formato de consulta REST definido em', 'Ushahidi': 'Ushahidi', 'Utilities': 'Servios Pblicos', 'Utility, telecommunication, other non-transport infrastructure': 'Servios Pblicos, telecomunicaes, outra infra-estrutura no-transporte', 'Vacancies': 'Vagas', 'Value': 'value', 'Various Reporting functionalities': 'Diversas funcionalidades de relatrio', 'Vehicle': 'veculo', 'Vehicle Crime': 'Roubo/Furto de veculo', 'Vehicle Details': 'Vehicle Details', 'Vehicle Details added': 'Vehicle Details added', 'Vehicle Details deleted': 'Vehicle Details deleted', 'Vehicle Details updated': 'Vehicle Details updated', 'Vehicle Management': 'Vehicle Management', 'Vehicle Types': 'Tipos de veculo', 'Vehicle added': 'Vehicle added', 'Vehicle deleted': 'Vehicle deleted', 'Vehicle updated': 'Vehicle updated', 'Vehicles': 'Vehicles', 'Vehicles are assets with some extra details.': 'Vehicles are assets with some extra details.', 'Verification Status': 'Status de verificao', 'Verified?': 'Verificado?', 'Verify password': 'Verificar senha', 'Version': 'Version', 'Very Good': 'Muito bom', 'Very High': 'muito alto', 'View Alerts received using either Email or SMS': 'Visualizar alertas utilizando quer o correio electrnico quer SMS.', 'View All': 'Visualizar todos', 'View All Tickets': 'View All Tickets', 'View Error Tickets': 'Ver bilhetes de erro', 'View Fullscreen Map': 'Visualizao Inteira Mapa', 'View Image': 'Visualizar imagem', 'View Items': 'Ver itens', 'View On Map': 'Visualizar no mapa', 'View Outbox': 'Visualizao Outbox', 'View Picture': 'Visualizao de imagem', 'View Results of completed and/or partially completed assessments': 'View Results of completed and/or partially completed assessments', 'View Settings': 'Ver Configuraes', 'View Tickets': 'Visualizar Bilhetes', 'View and/or update their details': 'Visualizar e/ou actualizar os seus detalhes', 'View or update the status of a hospital.': 'VISUALIZAR ou atualizar o status de um hospital.', 'View pending requests and pledge support.': 'Visualizar pedidos pendentes e suporte promessa.', 'View the hospitals on a map.': 'Visualizar os hospitais em um mapa.', 'View/Edit the Database directly': 'Visualizar/Editar o banco de dados diretamente', "View/Edit the Database directly (caution: doesn't respect the framework rules!)": 'Visualizar/Alterar a base de dados directamente ( cuidado : no cumpre com as regras da infraestrutura ! ) ).', 'Village': 'Vila', 'Village Leader': 'Lder da Aldeia', 'Visible?': 'Visvel?', 'Visual Recognition': 'Reconhecimento visual', 'Volcanic Ash Cloud': 'Nuvem de cinzas vulcnicas', 'Volcanic Event': 'Evento vulcnico', 'Volume (m3)': 'Volume (m3)', 'Volunteer Availability': 'Disponibilidade de Voluntrio', 'Volunteer Details': 'Detalhes do voluntrio', 'Volunteer Information': 'Voluntrio Informaes', 'Volunteer Management': 'Gesto de voluntrio', 'Volunteer Project': 'Projeto voluntrio', 'Volunteer Record': 'Voluntrio Registro', 'Volunteer Request': 'Pedido voluntrio', 'Volunteer added': 'Voluntrio includo', 'Volunteer availability added': 'Disponibilidade de voluntrio includa', 'Volunteer availability deleted': 'Disponibilidade de voluntrio excluda', 'Volunteer availability updated': 'Disponibilidade de voluntrio atualizada', 'Volunteer deleted': 'Voluntrio excludo', 'Volunteer details updated': 'Atualizao dos detalhes de voluntrios', 'Volunteer updated': 'Voluntrio atualizado', 'Volunteers': 'Voluntrios', 'Volunteers List': 'Voluntrios Lista', 'Volunteers were notified!': 'Voluntrios foram notificados!', 'Vote': 'voto', 'Votes': 'votos', 'WASH': 'LAVAR', 'WMS Browser Name': 'WMS Nome do Navegador', 'WMS Browser URL': 'WMS Navegador URL', 'Walking Only': 'Apenas andando', 'Wall or other structural damage': 'Parede ou outros danos estruturais', 'Warehouse': 'Depsito', 'Warehouse Details': 'Detalhes do Armazm', 'Warehouse added': 'Warehouse includo', 'Warehouse deleted': 'Deposito apagado', 'Warehouse updated': 'Warehouse ATUALIZADO', 'Warehouses': 'Armazns', 'WatSan': 'WatSan', 'Water Sanitation Hygiene': 'Saneamento de gua', 'Water collection': 'Coleta de gua', 'Water gallon': 'Galo de gua', 'Water storage containers in households': 'Recipientes de armazenamento de gua nos domiclios', 'Water supply': 'Abastecimento de gua', 'Waterspout': 'Waterspout', 'We have tried': 'We have tried', 'Web API settings updated': 'Web API settings updated', 'Web Map Service Browser Name': 'Nome do mapa da Web navegador de servios', 'Web Map Service Browser URL': 'Web Mapa Do navegador de Servios URL', 'Website': 'WebSite', 'Wednesday': 'Wednesday', 'Weight': 'peso', 'Weight (kg)': 'peso (kg)', 'Welcome to the Sahana Portal at': 'Bem-vindo ao Portal Sahana em', 'Well-Known Text': 'Texto bem conhecido', 'What order to be contacted in.': 'What order to be contacted in.', 'Wheat': 'Trigo', 'When a map is displayed that focuses on a collection of points, the map is zoomed to show just the region bounding the points.': 'Quando o mapa que exibido incide sobre um conjunto de pontos, o mapa aproximado para mostrar apenas a regio delimitadora dos pontos.', 'When reports were entered': 'Quando os relatrios foram Digitados', "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.": 'Quando Sincronizando dados com outros, os conflitos acontecem em casos onde dois (ou mais) grupos desejam sincronizar informaes que os dois tenham modificado, ou seja, informaes conflitantes. Mdulo de sincronizao tenta resolver esses conflitos automaticamente mas em alguns casos isso no consegue. Nesses casos, cabe a si resolver esses conflitos manualmente, clique no link direita para ir para esta pgina.', 'Whiskers': 'Bigodes', 'Who is doing what and where': 'Quem est a fazer o qu e onde', 'Who usually collects water for the family?': 'Quem habitualmente colecta gua para a famlia ?', 'Width': 'width', 'Width (m)': 'Largura (m)', 'Wild Fire': 'Fogo Selvagem', 'Wind Chill': 'Vento Frio', 'Window frame': 'Esquadria de janela', 'Winter Storm': 'Tempestade de inverno', 'Women of Child Bearing Age': 'Mulheres da criana Tendo Idade', 'Women participating in coping activities': 'Mulheres que participam em lidar atividades', 'Women who are Pregnant or in Labour': 'Mulheres que esto grvidas ou no trabalho', 'Womens Focus Groups': 'Mulheres de Grupos Foco', 'Wooden plank': 'Tbua de madeira', 'Wooden poles': 'Postes de madeira', 'Working hours end': 'Horas de trabalho final', 'Working hours start': 'Horas de trabalho iniciar', 'Working or other to provide money/food': 'Trabalhando para outros para prover dinheiro / alimentos', 'X-Ray': 'Raio-X', 'XMPP': 'XMPP', 'YES': 'YES', "Yahoo Layers cannot be displayed if there isn't a valid API Key": "Yahoo Layers cannot be displayed if there isn't a valid API Key", 'Year': 'Year', 'Year built': 'Ano de construo', 'Year of Manufacture': 'Ano de fabricao', 'Yellow': 'amarelo', 'Yes': 'YES', 'You are a recovery team?': 'Voc uma equipe de recuperao?', 'You are attempting to delete your own account - are you sure you want to proceed?': 'Voc est tentando excluir sua prpria conta-Tem certeza de que deseja continuar?', 'You are currently reported missing!': 'Voc est atualmente desaparecido!', '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.': 'Voc pode alterar a configurao do Mdulo de Sincronizao na seo configuraes. Essa configurao inclui o seu UUID (nmero de identificao exclusivo), Planejamentos de Sincronizao, servio Farol e assim por diante. Clique no link a seguir para ir para a pgina Configuraes de Sincronizao.', 'You can click on the map below to select the Lat/Lon fields': 'Voc pode clicar no mapa abaixo para selecionar os campos Lat/Lon', 'You can select the Draw tool': 'Pode selecionar a ferramenta Desenho', 'You can set the modem settings for SMS here.': 'Pode definir a configurao do modem SMS aqui.', 'You can use the Conversion Tool to convert from either GPS coordinates or Degrees/Minutes/Seconds.': 'Voc pode utilizar a ferramenta de converso para converter coordenadas de GPS ou graus/minutos/segundos.', 'You do no have permission to cancel this received shipment.': 'Voc no tem permisso para cancelar o recebimento deste carregamento.', 'You do no have permission to cancel this sent shipment.': 'Voc no tem permisso para cancelar o envio desse carregamento.', 'You do no have permission to make this commitment.': 'Voc no tem permisso de fazer este compromisso.', 'You do no have permission to receive this shipment.': 'Voc no tem permisso para receber este carregamento.', 'You do no have permission to send this shipment.': 'Voc no tem permisso para enviar este carregamento.', 'You do not have permission for any facility to make a commitment.': 'Voc no tem permisso em qualquer instalao para estabelecer um compromisso.', 'You do not have permission for any facility to make a request.': 'Voc no tem permisso em qualquer instalao para fazer um pedido.', 'You do not have permission for any facility to receive a shipment.': 'You do not have permission for any facility to receive a shipment.', 'You do not have permission for any facility to send a shipment.': 'You do not have permission for any facility to send a shipment.', 'You do not have permission for any site to add an inventory item.': 'Voc no tem permisso em qualquer site para incluir um item de inventrio.', 'You do not have permission for any site to make a commitment.': 'Voc no tem permisso em qualquer site para assumir um compromisso.', 'You do not have permission for any site to make a request.': 'Voc no tem permisso em qualquer site para fazer um pedido.', 'You do not have permission for any site to perform this action.': 'Voc no tem permisso em qualquer site para executar esta ao.', 'You do not have permission for any site to receive a shipment.': 'Voc no tem permisso para qualquer site para receber um carregamento.', 'You do not have permission for any site to send a shipment.': 'Voc no tem permisso em qualquer site para enviar um carregamento.', 'You do not have permission to cancel this received shipment.': 'Voc no tem permisso para cancelar este carregamento recebido.', 'You do not have permission to cancel this sent shipment.': 'Voc no tem permisso para cancelar essa remessa enviada.', 'You do not have permission to make this commitment.': 'Voc no tem permisso para assumir este compromisso.', 'You do not have permission to receive this shipment.': 'Voc no tem permisso para receber esta remessa.', 'You do not have permission to send a shipment from this site.': 'Voc no tem permisso para enviar um carregamento a partir deste site.', 'You do not have permission to send this shipment.': 'Voc no tem permisso para enviar este carregamento.', 'You have a personal map configuration. To change your personal configuration, click': 'Voc tem uma configurao de mapa pessoal. Para alterar a sua configurao pessoal, clique', 'You have a personal map configuration. To change your personal configuration, click ': 'You have a personal map configuration. To change your personal configuration, click ', 'You have found a dead body?': 'Descobriu um cadver ?', "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.", "You haven't made any calculations": 'No fez quaisquer clculos.', 'You must be logged in to register volunteers.': 'Voc deve estar com login efetuado para registrar voluntrios.', 'You must be logged in to report persons missing or found.': 'Voc deve estar registrado para informar pessoas desaparecidas ou localizadas.', 'You must provide a series id to proceed.': 'Voc deve fornecer um nmero de srie para continuar.', 'You should edit Twitter settings in models/000_config.py': 'Voc deve editar as definies do Twitter em modelos/000_config.py', 'Your current ordered list of solution items is shown below. You can change it by voting again.': 'Seu lista de itens de soluo pedidos aparece abaixo. Voc pode alter-lo ao votar novamente.', 'Your post was added successfully.': 'O post foi includo com xito.', '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.': 'Uma identificao exclusiva (UUID) foi designada para o seu sistema e poder ser usada por outros computadores ao seu redor para identific-lo. Para visualizar o seu UUID, voc pode ir para Sincronizao -> configuraes Sync. Voc tambm pode ver outras configuraes nesta pgina.', 'ZIP Code': 'ZIP Code', 'Zero Hour': 'Hora Zero', 'Zinc roof': 'Telhado de Zinco', 'Zoom': 'Zoom', 'Zoom Levels': 'Nveis de Zoom', 'active': 'ativo', 'added': 'includo', 'all records': 'todos os registros', 'allows a budget to be developed based on staff & equipment costs, including any admin overheads.': 'Permite que um oramento seja desenvolvido com base em despesas com o pessoal e equipamento, incluindo quaisquer despesas gerais administrativas.', 'allows for creation and management of assessments.': 'allows for creation and management of assessments.', 'allows for creation and management of surveys to assess the damage following a natural disaster.': 'permite a criao e gerenciamento de pesquisas para avaliar os danos aps um desastre natural.', 'an individual/team to do in 1-2 days': 'Uma pessoa/Equipe para fazer em 1 Dias-2', 'assigned': 'designado', 'average': 'Na mdia', 'black': 'Preto', 'blond': 'Loiro', 'blue': 'azul', 'brown': 'Marrom', 'business_damaged': 'business_damaged', 'by': 'por', 'c/o Name': 'c/o Nome', 'can be used to extract data from spreadsheets and put them into database tables.': 'Pode ser utilizado para extrair dados de planilhas e coloc-los em tabelas de dados.', 'cancelled': 'CANCELADO', 'caucasoid': 'Caucasoid', 'check all': 'Verificar Tudo', 'click for more details': 'Clique para mais detalhes', 'click here': 'click here', 'completed': 'Concludo', 'confirmed': 'Confirmado', 'consider': 'considerar', "couldn't be parsed so NetworkLinks not followed.": 'No pde ser analisado ento o NetworkLinks no seguiu.', 'curly': 'Encaracolado', 'currently registered': 'Atualmente registrados', 'daily': 'Diariamente', 'dark': 'Escuro', 'data uploaded': 'dados carregados', 'database': 'DATABASE', 'database %s select': '% de dados s SELECIONE', 'db': 'dB', 'deceased': 'Falecido', 'delete all checked': 'excluir todos marcados', 'deleted': 'excludos', 'design': 'projecto', 'diseased': 'Doentes', 'displaced': 'Deslocadas', 'divorced': 'Divorciado', 'done!': 'Pronto!', 'duplicate': 'duplicar', 'edit': 'Editar', 'eg. gas, electricity, water': 'Exemplo: Gs, eletricidade, gua', 'embedded': 'integrado', 'enclosed area': 'rea anexada', 'enter a number between %(min)g and %(max)g': 'enter a number between %(min)g and %(max)g', 'enter an integer between %(min)g and %(max)g': 'enter an integer between %(min)g and %(max)g', 'export as csv file': 'Exportar como arquivo cvs.', 'fat': 'Gordura', 'feedback': 'Retorno', 'female': 'Sexo Feminino', 'flush latrine with septic tank': 'esvaziar latrina com tanque sptico', 'food_sources': 'fuentes de alimento', 'forehead': 'testa', 'form data': 'form data', 'found': 'Localizado', 'from Twitter': 'do Twitter', 'getting': 'getting', 'green': 'verde', 'grey': 'cinza', 'here': 'aqui', 'high': 'Alta', 'hourly': 'Por hora', 'households': 'Membros da famlia', 'identified': 'identificado', 'ignore': 'Ignore', 'in Deg Min Sec format': 'GRAUS Celsius no formato Mn. Segundo', 'in GPS format': 'GPS no formato', 'in Inv.': 'in Inv.', 'inactive': 'inativo', "includes a GroundOverlay or ScreenOverlay which aren't supported in OpenLayers yet, so it may not work properly.": 'Inclui um GroundOverlay ou ScreenOverlay que no so ainda suportados em OpenLayuers, portanto poder no funcionar na totalidade.', 'injured': 'Feridos', 'insert new': 'inserir novo', 'insert new %s': 'inserir novo %s', 'invalid': 'invlido', 'invalid request': 'PEDIDO INVLIDO', '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.': ' um repositrio central de informaes em tempo real onde vtimas de desastres e seus familiares, especialmente casos isolados, refugiados e pessoas deslocadas podem ser abrigados. Informaes como nome, idade, Contate o nmero de Bilhete de Identidade nmero, localizao Deslocadas, e outros detalhes so capturados. Detalhes de impresso Imagem e Dedo de as pessoas possam ser transferidos por upload para o sistema. As pessoas podem tambm ser capturados pelo grupo por eficincia e convenincia.', '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': 'tem como viso ser composto de vrios sub-mdulos que interagem juntos a fim de fornecer funcionalidade complexa para o gerenciamento de itens de ajuda e projeto de uma organizao. Isso inclui um sistema de admisso, um sistema de gesto de depsitos, rastreamento de mercadorias, gesto da cadeia de fornecimentos, de gesto da frota, aquisies, recursos de rastreamento financeiro de ativos e outros e gerenciamento de recursos', 'keeps track of all incoming tickets allowing them to be categorised & routed to the appropriate place for actioning.': 'Mantm controle de todos os bilhetes de entrada permitindo que sejam classificados & direcionados ao local apropriado para atuao.', 'latrines': 'privadas', 'leave empty to detach account': 'deixar em branco para desconectar a conta', 'legend URL': 'Legenda URL', 'light': 'luz', 'login': 'login', 'long': 'Longo', 'long>12cm': 'comprimento>12cm', 'low': 'baixo', 'male': 'masculino', 'manual': 'Manual', 'married': 'casado', 'medium': 'mdio.', 'medium<12cm': 'mdio<12cm', 'meters': 'metros', 'missing': 'ausente', 'module allows the site administrator to configure various options.': 'Mdulo permite que o administrador do site configure vrias opes.', 'module helps monitoring the status of hospitals.': 'Mdulo ajuda monitorando o status de hospitais.', 'module provides a mechanism to collaboratively provide an overview of the developing disaster, using online mapping (GIS).': 'Mdulo fornece um mecanismo para colaborao fornecem uma viso geral do desastre de desenvolvimento, utilizao de mapeamento online (SIG).', 'mongoloid': 'Mongolide', 'more': 'Mais', 'n/a': 'n/d', 'negroid': 'Negride', 'never': 'Nunca', 'new': 'Novo(a)', 'new record inserted': 'Novo registro inserido', 'next 100 rows': 'prximas 100 linhas', 'no': 'no', 'none': 'nenhum', 'normal': 'normal', 'not accessible - no cached version available!': 'No acessvel-nenhuma verso em cache disponvel!', 'not accessible - using cached version from': 'No acessvel-Utilizando verso em Cache', 'not specified': 'no especificado', 'num Zoom Levels': 'Num nveis de Zoom', 'obsolete': 'Obsoleto', 'on': 'Ligar', 'once': 'uma vez', 'open defecation': 'Abrir evacuao', 'optional': 'Optional', 'or import from csv file': 'ou importar a partir do arquivo csv', 'other': 'outros', 'over one hour': 'Mais de uma hora', 'people': 'pessoas', 'piece': 'parte', 'pit': 'cova', 'pit latrine': 'cova de latrina', 'postponed': 'Adiado', 'preliminary template or draft, not actionable in its current form': 'Modelo ou rascunho preliminar, no acionvel em sua forma atual', 'previous 100 rows': '100 linhas anteriores', 'record does not exist': 'Registro no existe', 'record id': 'ID do Registro', 'red': 'vermelho', 'reported': 'relatado', 'reports successfully imported.': 'relatrios importados com xito.', 'representation of the Polygon/Line.': 'Representao do polgono /Linha.', 'retired': 'Aposentado', 'retry': 'retry', 'river': 'Rio', 'see comment': 'Veja o comentrio', 'selected': 'Selecionado', 'separated': 'Separado', 'separated from family': 'Separados da famlia', 'shaved': 'raspado', 'short': 'pequeno', 'short<6cm': 'pequeno<6cm', 'sides': 'lados', 'sign-up now': 'Inscreva-se agora', 'single': 'nico', 'slim': 'estreito', 'specify': 'Especifique.', 'staff': 'equipe', 'staff members': 'Membros da equipe', 'state': 'Estado', 'state location': 'Localizao do Estado', 'straight': 'reto', 'suffered financial losses': 'Sofreram perdas financeiras', 'table': 'table', 'tall': 'Altura', 'this': 'isto', 'times and it is still not working. We give in. Sorry.': 'times and it is still not working. We give in. Sorry.', 'to access the system': 'Para acessar o sistema', 'to download a OCR Form.': 'to download a OCR Form.', 'to reset your password': 'Para Reconfigurar sua senha', 'to verify your email': 'Para verificar seu e-mail', 'tonsure': 'tonsura', 'total': 'Total', 'tweepy module not available within the running Python - this needs installing for non-Tropo Twitter support!': 'Mdulo tweepy no disponvel com a execuo Python-isto necessita da instalao para suporte a tropo Twitter!', 'unable to parse csv file': 'No possvel analisar arquivo csv', 'uncheck all': 'Desmarcar Tudo', 'unidentified': 'IDENTIFICADO', 'unknown': 'unknown', 'unspecified': 'UNSPECIFIED', 'unverified': 'No Verificado', 'updated': 'Atualizado', 'updates only': 'Apenas atualizaes', 'verified': 'Verificado', 'volunteer': 'voluntrio', 'volunteers': 'Voluntrios', 'wavy': 'Serpentina', 'weekly': 'Semanalmente', 'white': 'branco', 'wider area, longer term, usually contain multiple Activities': 'maior rea, maior prazo, contm usualmente mltiplas actividades', 'widowed': 'Vivo', 'window': 'janela', 'within human habitat': 'Dentro do habitat humano', 'xlwt module not available within the running Python - this needs installing for XLS output!': 'Mdulo Xlwt no disponvel no mdulo Python sendo executado - isto necessita ser instalado para sada XLS!', 'yes': 'YES', }
61.737082
995
0.74161
ed2e9fbfce1e8173a04660813facfdf161e513ee
598
py
Python
pyxq/app/__init__.py
goodchinas/pyxq
c7f6ea63084c18178049451f30f32f04080a511c
[ "MIT" ]
4
2019-12-17T11:05:53.000Z
2020-06-01T05:41:02.000Z
pyxq/app/__init__.py
goodchinas/pyxq
c7f6ea63084c18178049451f30f32f04080a511c
[ "MIT" ]
null
null
null
pyxq/app/__init__.py
goodchinas/pyxq
c7f6ea63084c18178049451f30f32f04080a511c
[ "MIT" ]
2
2019-11-13T01:11:53.000Z
2019-12-17T10:55:44.000Z
from .. import ba, cb, actor from ..service import account
27.181818
87
0.610368
ed2eaa3880c0ded822c74f91d96fe10e19adfbe7
25
py
Python
python-files/Analysis/plot_rber_curve.py
AdrianLundell/ldpc-investigation-master-thesis
075f5cd10dae498e4fcda2f4aabedd0e27caf122
[ "MIT" ]
1
2022-03-07T15:52:10.000Z
2022-03-07T15:52:10.000Z
python-files/Analysis/plot_rber_curve.py
AdrianLundell/ldpc-investigation-master-thesis
075f5cd10dae498e4fcda2f4aabedd0e27caf122
[ "MIT" ]
6
2022-03-09T10:31:25.000Z
2022-03-09T10:50:34.000Z
python-files/Analysis/plot_rber_curve.py
AdrianLundell/ldpc-investigation-master-thesis
075f5cd10dae498e4fcda2f4aabedd0e27caf122
[ "MIT" ]
null
null
null
#%% #Calculate_capacity
6.25
19
0.72
ed2f544f652b3b129baea0ccaadd7dd101ff1f6a
49
py
Python
2_b_builtins_dynamic_recall.py
traff/python_completion_benchmark
df25caaabf46f8b6eca34d5618052bff7ea8b0bf
[ "Xnet", "X11" ]
1
2018-11-23T18:53:05.000Z
2018-11-23T18:53:05.000Z
2_b_builtins_dynamic_recall.py
traff/python_completion_benchmark
df25caaabf46f8b6eca34d5618052bff7ea8b0bf
[ "Xnet", "X11" ]
null
null
null
2_b_builtins_dynamic_recall.py
traff/python_completion_benchmark
df25caaabf46f8b6eca34d5618052bff7ea8b0bf
[ "Xnet", "X11" ]
null
null
null
import builtins builtins.foo = 'bar' foo # foo
9.8
20
0.693878
ed2f62da1eeae65673f61b0ca0f66640810c94b0
7,802
py
Python
gva/data/validator/__init__.py
gva-jhabte/gva-data
7a605ff01faa3fd38e91a324341d6166f17544a7
[ "Apache-2.0" ]
null
null
null
gva/data/validator/__init__.py
gva-jhabte/gva-data
7a605ff01faa3fd38e91a324341d6166f17544a7
[ "Apache-2.0" ]
null
null
null
gva/data/validator/__init__.py
gva-jhabte/gva-data
7a605ff01faa3fd38e91a324341d6166f17544a7
[ "Apache-2.0" ]
null
null
null
""" Schema Validation Tests a dictionary against a schema to test for conformity. Schema definition is similar to - but not the same as - avro schemas Supported Types: - string - a character sequence - format - numeric - a number - min: - max - date - a datetime.date or an iso format date or time - boolean - a boolean or a binary value (true/false, on/off, yes/no) - symbols - other - not one of the above, but a required field - nullable - Python Falsy (None, 0, Empty String, etc) - enum - - symbols Example Schema: { "name": "Table Name", "fields": [ {"name": "id", "type": "string"}, {"name": "country", "type": ["string", "nullable"]}, {"name": "followers", "type": ["string", "nullable"]} ] } Notes: - type(var).__name__ in (set) is faster than isinstance """ import datetime from typing import List, Any, Union, Callable import os import re from ...utils.json import serialize, parse VALID_BOOLEAN_VALUES = ("true", "false", "on", "off", "yes", "no", "0", "1") DEFAULT_MIN = -9223372036854775808 DEFAULT_MAX = 9223372036854775807 def is_date(value: Any) -> bool: try: if type(value).__name__ in ("datetime", "date", "time"): return True datetime.datetime.fromisoformat(value) return True except (ValueError, TypeError): return False def is_null(value: Any) -> bool: return not value """ Create a dictionary of the validator functions """ SIMPLE_VALIDATORS = { "date": is_date, "nullable": is_null, "other": other_validator, "list": is_list, "array": is_list, } COMPLEX_VALIDATORS = { "enum": is_valid_enum, "numeric": is_numeric, "string": is_string, "boolean": is_boolean } def get_validators( type_descriptor: Union[List[str], str], **kwargs): """ For a given type definition (the ["string", "nullable"] bit), return the matching validator functions (the _is_x ones) as a list. """ if not type(type_descriptor).__name__ == 'list': type_descriptor = [type_descriptor] # type:ignore validators: List[Any] = [] for descriptor in type_descriptor: if descriptor in COMPLEX_VALIDATORS: validators.append(COMPLEX_VALIDATORS[descriptor](**kwargs)) else: validators.append(SIMPLE_VALIDATORS[descriptor]) return validators def field_validator(value, validators: set) -> bool: """ Execute a set of validator functions (the _is_x) against a value. Return True if any of the validators are True. """ return any([True for validator in validators if validator(value)])
32.781513
137
0.57575
ed3077484491f3ce68c431839bde2db924a8e7be
2,350
py
Python
fuzzers/ECP5/050-pio_routing/fuzzer.py
umarcor/prjtrellis
9b3db7ba9a02e7d2f49c52ce062d5b22e320004c
[ "MIT" ]
256
2018-03-05T00:28:46.000Z
2022-03-04T22:33:29.000Z
fuzzers/ECP5/050-pio_routing/fuzzer.py
umarcor/prjtrellis
9b3db7ba9a02e7d2f49c52ce062d5b22e320004c
[ "MIT" ]
70
2018-03-12T21:55:02.000Z
2020-06-22T12:06:08.000Z
fuzzers/ECP5/050-pio_routing/fuzzer.py
umarcor/prjtrellis
9b3db7ba9a02e7d2f49c52ce062d5b22e320004c
[ "MIT" ]
68
2018-03-12T21:05:01.000Z
2021-03-14T21:08:33.000Z
from fuzzconfig import FuzzConfig import interconnect import nets import pytrellis import re jobs = [ { "pos": [(47, 0), (48, 0), (49, 0)], "cfg": FuzzConfig(job="PIOROUTEL", family="ECP5", device="LFE5U-45F", ncl="pioroute.ncl", tiles=["MIB_R47C0:PICL0", "MIB_R48C0:PICL1", "MIB_R49C0:PICL2"]) }, { "pos": [(47, 90), (48, 90), (49, 90)], "cfg": FuzzConfig(job="PIOROUTER", family="ECP5", device="LFE5U-45F", ncl="pioroute.ncl", tiles=["MIB_R47C90:PICR0", "MIB_R48C90:PICR1", "MIB_R49C90:PICR2"]) }, { "pos": [(0, 22), (1, 23), (0, 22), (1, 23)], "cfg": FuzzConfig(job="PIOROUTET", family="ECP5", device="LFE5U-45F", ncl="pioroute.ncl", tiles=["MIB_R0C22:PIOT0", "MIB_R0C23:PIOT1", "MIB_R1C22:PICT0", "MIB_R1C23:PICT1"]) }, { "pos": [(71, 11), (71, 12), (70, 11), (70, 12)], "cfg": FuzzConfig(job="PIOROUTET", family="ECP5", device="LFE5U-45F", ncl="pioroute.ncl", tiles=["MIB_R71C11:PICB0", "MIB_R71C12:PICB1"]) }, { "pos": [(71, 18), (70, 18)], "cfg": FuzzConfig(job="PIOROUTESB", family="ECP5", device="LFE5U-45F", ncl="pioroute_spicb.ncl", tiles=["MIB_R71C18:SPICB0"]) }, ] if __name__ == "__main__": main()
36.71875
109
0.50383
ed32adc4f5470b9099ab1976e987f8994269a9b8
6,841
py
Python
convnet3d/backend/tensorflow_backend.py
yecharlie/convnet3d
0b2771eec149b196ef59b58d09eef71c9b201d40
[ "MIT" ]
6
2020-03-12T10:28:41.000Z
2021-11-18T16:17:20.000Z
convnet3d/backend/tensorflow_backend.py
yecharlie/convnet3d
0b2771eec149b196ef59b58d09eef71c9b201d40
[ "MIT" ]
null
null
null
convnet3d/backend/tensorflow_backend.py
yecharlie/convnet3d
0b2771eec149b196ef59b58d09eef71c9b201d40
[ "MIT" ]
1
2019-08-01T02:50:05.000Z
2019-08-01T02:50:05.000Z
import tensorflow as tf def _is_tensor(x): """Returns `True` if `x` is a symbolic tensor-like object. From http://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/ops/image_ops_impl.py Args: x: A python object to check. Returns: `True` if `x` is a `tf.Tensor` or `tf.Variable`, otherwise `False`. """ return isinstance(x, (tf.Tensor, tf.Variable)) def _ImageDimensions(image, rank): """Returns the dimensions of an image tensor. From http://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/ops/image_ops_impl.py Args: image: A rank-D Tensor. For 3-D of shape: `[height, width, channels]`. rank: The expected rank of the image Returns: A list of corresponding to the dimensions of the input image. Dimensions that are statically known are python integers, otherwise they are integer scalar tensors. """ if image.get_shape().is_fully_defined(): return image.get_shape().as_list() else: static_shape = image.get_shape().with_rank(rank).as_list() dynamic_shape = tf.unstack(tf.shape(image), rank) return [ s if s is not None else d for s, d in zip(static_shape, dynamic_shape) ] def _CheckAtLeast4DImage(image, require_static=True): """Assert that we are working with properly shaped image. (modified) From http://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/ops/image_ops_impl.py Args: image: >= 4-D Tensor of size [*, height, width, depth, channels] require_static: If `True`, requires that all dimensions of `image` are known and non-zero. Raises: ValueError: if image.shape is not a [>= 4] vector. Returns: An empty list, if `image` has fully defined dimensions. Otherwise, a list containing an assert op is returned. """ try: if image.get_shape().ndims is None: image_shape = image.get_shape().with_rank(4) else: image_shape = image.get_shape().with_rank_at_least(4) except ValueError: raise ValueError("'image' must be at least four-dimensional.") if require_static and not image_shape.is_fully_defined(): raise ValueError('\'image\' must be fully defined.') if any(x == 0 for x in image_shape): raise ValueError( 'all dims of \'image.shape\' must be > 0: %s' % image_shape) if not image_shape.is_fully_defined(): return [ tf.assert_positive( tf.shape(image), ['all dims of "image.shape " must be > 0.']) ] else: return [] def crop_to_bounding_box_3d(image, box, target_size): '''Crops an 3d image to a specificed bounding box. When the size of box is smaller than 'target_size', then the surroundings of image is evenly (approximately) padded with zero. The 'box' with size = 0 is allowed. Args: image: 5-D Tensor of shape '[batch, heigh, width, depth, channels]' or 4-D Tensor of shape '[heights, width, depth, channels]' box: 1-D Tensor of shape '[6,]' representing the cropped area. target_size: The ultimate bounding box size. Returns: if 'image' was 5-D, a 5-D float Tensor of shape '[batch_size] + target_size + [channels]' if 'image' was 4-D, a 5-D float Tensor of shape 'target_size + [channels]' ''' with tf.name_scope(None, 'crop_to_bounding_box_3d', [image]): image = tf.convert_to_tensor(image, name='image') is_batch = True image_shape = image.get_shape() if image_shape.ndims == 4: is_batch = False image = tf.expand_dims(image, 0) elif image_shape.ndims is None: is_batch = False image = tf.expand_dims(image, 0) image.set_shape([None] * 5) elif image_shape.ndims != 5: raise ValueError('\'image\' must have either 4 or 5 dimensions.') assert_ops = _CheckAtLeast4DImage(image, require_static=False) # Never mind what are the real meaning of height/width/depth. They are mimics from the tensorflow API 's writting convention. batch, height, width, depth, channels = _ImageDimensions(image, rank=5) # print('crop_to_bounding_box_3d height:',height) box_size = box[1::2] - box[::2] assert_ops.append(tf.assert_greater_equal([height, width, depth], box[1::2], ['The remote corner of box must not exceed image boundaries.'])) assert_ops.append(tf.assert_non_negative(box[::2], ['The near corner of box must be non negative.'])) assert_ops.append(tf.assert_non_negative(box_size, ['The box size should be non negative.'])) assert_ops.append(tf.assert_greater_equal(target_size, box_size, ['The target size should be not less than box size. '])) with tf.control_dependencies(assert_ops): image = image # tf.with_dependencies(assert_ops, image) cropped = tf.slice( image, tf.stack([0, box[0], box[2], box[4], 0]), tf.stack([-1, box_size[0], box_size[1], box_size[2] , -1]) ) padding_offsets = _max((target_size - box_size) // 2, 0) after_padding_size = target_size - padding_offsets - box_size paddings = tf.reshape( tf.stack([ 0, 0, padding_offsets[0], after_padding_size[0], padding_offsets[1], after_padding_size[1], # noqa: E131 padding_offsets[2], after_padding_size[2], 0, 0 # noqa: E131 ]), [5, 2]) padded = tf.pad(cropped, paddings) result_shape = [ None if _is_tensor(i) else i for i in [batch, target_size[0], target_size[1], target_size[2], channels] ] padded.set_shape(result_shape) if not is_batch: padded = tf.squeeze(padded, axis=[0]) return padded
35.630208
217
0.627686
ed333974ac7fc15e4814ac031f495886accd5008
1,169
py
Python
extensions/everywhere.py
cobrab11/black1-bot
47c1a80029d6183fc990960b422bb3155360702d
[ "Apache-2.0" ]
3
2015-10-15T15:40:17.000Z
2021-06-08T05:39:21.000Z
extensions/everywhere.py
cobrab11/black1-bot
47c1a80029d6183fc990960b422bb3155360702d
[ "Apache-2.0" ]
1
2019-04-06T11:54:56.000Z
2019-04-07T00:57:49.000Z
extensions/everywhere.py
cobrab11/black1-bot
47c1a80029d6183fc990960b422bb3155360702d
[ "Apache-2.0" ]
3
2015-10-26T14:49:57.000Z
2018-03-04T15:34:11.000Z
# BS mark.1-55 # /* coding: utf-8 */ # BlackSmith plugin # everywhere_plugin.py # Coded by: WitcherGeralt ([email protected]) # http://witcher-team.ucoz.ru/ command_handler(handler_everywhere, 100, "everywhere")
27.186047
97
0.637297
ed34a763af3706d73ed657481a4202938e665e7b
327
py
Python
0100.same_tree/solution.py
WZMJ/Algorithms
07f648541d38e24df38bda469665c12df6a50637
[ "MIT" ]
5
2020-05-23T02:18:26.000Z
2021-07-05T05:36:01.000Z
0100.same_tree/solution.py
WZMJ/Algorithms
07f648541d38e24df38bda469665c12df6a50637
[ "MIT" ]
1
2020-06-10T07:17:24.000Z
2020-07-20T02:21:24.000Z
0100.same_tree/solution.py
WZMJ/Algorithms
07f648541d38e24df38bda469665c12df6a50637
[ "MIT" ]
1
2019-04-23T13:01:50.000Z
2019-04-23T13:01:50.000Z
from utils import TreeNode
29.727273
107
0.620795
ed38d1c43b9d70e3ac1c1d8a3bb7c7068b2ec679
6,946
py
Python
tests/test_azure.py
The-Academic-Observatory/mag-archiver
76988020047b4ab9eb2d125f5141dfa7297a6fb3
[ "Apache-2.0" ]
null
null
null
tests/test_azure.py
The-Academic-Observatory/mag-archiver
76988020047b4ab9eb2d125f5141dfa7297a6fb3
[ "Apache-2.0" ]
5
2020-07-22T03:51:17.000Z
2021-08-08T21:56:00.000Z
tests/test_azure.py
The-Academic-Observatory/mag-archiver
76988020047b4ab9eb2d125f5141dfa7297a6fb3
[ "Apache-2.0" ]
1
2020-07-19T22:39:20.000Z
2020-07-19T22:39:20.000Z
# Copyright 2020 Curtin University # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Author: James Diprose import os import unittest import uuid from azure.storage.blob import ContainerClient, BlobClient from mag_archiver.azure import list_containers, copy_container, list_blobs, create_container, delete_container, \ create_blob, delete_table, create_table
39.022472
119
0.662971
ed3a7989a6ca1353a9b8069ec10dfdff872950bd
16,283
py
Python
tensorflow/contrib/framework/python/framework/tensor_util_test.py
uve/tensorflow
e08079463bf43e5963acc41da1f57e95603f8080
[ "Apache-2.0" ]
null
null
null
tensorflow/contrib/framework/python/framework/tensor_util_test.py
uve/tensorflow
e08079463bf43e5963acc41da1f57e95603f8080
[ "Apache-2.0" ]
null
null
null
tensorflow/contrib/framework/python/framework/tensor_util_test.py
uve/tensorflow
e08079463bf43e5963acc41da1f57e95603f8080
[ "Apache-2.0" ]
null
null
null
# Copyright 2016 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """tensor_util tests.""" # pylint: disable=unused-import from __future__ import absolute_import from __future__ import division from __future__ import print_function import re import numpy as np from tensorflow.contrib.framework.python.framework import tensor_util from tensorflow.contrib.framework.python.ops import variables as variables_lib2 from tensorflow.python.framework import constant_op from tensorflow.python.framework import dtypes from tensorflow.python.framework import errors_impl from tensorflow.python.framework import ops from tensorflow.python.framework import tensor_shape from tensorflow.python.framework import test_util from tensorflow.python.ops import array_ops from tensorflow.python.ops import variables as variables_lib from tensorflow.python.platform import test if __name__ == "__main__": test.main()
41.966495
81
0.63772
ed3a9aaa2f6bd7c47892c2149c2e5804bf96b4fe
1,442
py
Python
tpv/modals/sugerencias.py
vallemrv/tpvB3
9988a528b32692b01bd042cc6486188c4dc2109b
[ "Apache-2.0" ]
3
2017-07-16T09:31:56.000Z
2019-03-20T11:11:24.000Z
tpv/modals/sugerencias.py
ljimaz33/tpvB3
9988a528b32692b01bd042cc6486188c4dc2109b
[ "Apache-2.0" ]
null
null
null
tpv/modals/sugerencias.py
ljimaz33/tpvB3
9988a528b32692b01bd042cc6486188c4dc2109b
[ "Apache-2.0" ]
1
2022-01-02T11:22:45.000Z
2022-01-02T11:22:45.000Z
# @Author: Manuel Rodriguez <valle> # @Date: 10-May-2017 # @Email: [email protected] # @Last modified by: valle # @Last modified time: 23-Feb-2018 # @License: Apache license vesion 2.0 from kivy.uix.modalview import ModalView from kivy.uix.button import Button from kivy.properties import ObjectProperty, StringProperty, ListProperty from kivy.lang import Builder Builder.load_file("view/sugerencias.kv")
29.428571
72
0.645631
ed3b6f60e4e30cf75b95e63f68e2b18f1cb5a0e8
1,122
py
Python
templates/integration/__init__.py
p7g/dd-trace-py
141ac0ab6e9962e3b3bafc9de172076075289a19
[ "Apache-2.0", "BSD-3-Clause" ]
308
2016-12-07T16:49:27.000Z
2022-03-15T10:06:45.000Z
templates/integration/__init__.py
p7g/dd-trace-py
141ac0ab6e9962e3b3bafc9de172076075289a19
[ "Apache-2.0", "BSD-3-Clause" ]
1,928
2016-11-28T17:13:18.000Z
2022-03-31T21:43:19.000Z
templates/integration/__init__.py
p7g/dd-trace-py
141ac0ab6e9962e3b3bafc9de172076075289a19
[ "Apache-2.0", "BSD-3-Clause" ]
311
2016-11-27T03:01:49.000Z
2022-03-18T21:34:03.000Z
""" The foo integration instruments the bar and baz features of the foo library. Enabling ~~~~~~~~ The foo integration is enabled automatically when using :ref:`ddtrace-run <ddtracerun>` or :ref:`patch_all() <patch_all>`. Or use :ref:`patch() <patch>` to manually enable the integration:: from ddtrace import patch patch(foo=True) Global Configuration ~~~~~~~~~~~~~~~~~~~~ .. py:data:: ddtrace.config.foo["service"] The service name reported by default for foo instances. This option can also be set with the ``DD_FOO_SERVICE`` environment variable. Default: ``"foo"`` Instance Configuration ~~~~~~~~~~~~~~~~~~~~~~ To configure the foo integration on an per-instance basis use the ``Pin`` API:: import foo from ddtrace import Pin myfoo = foo.Foo() Pin.override(myfoo, service="myfoo") """ from ...internal.utils.importlib import require_modules required_modules = ["foo"] with require_modules(required_modules) as missing_modules: if not missing_modules: from .patch import patch from .patch import unpatch __all__ = ["patch", "unpatch"]
20.777778
70
0.678253
ed3b7de286ac4f4bebceec94867062df2dc32542
8,194
py
Python
libs/linux/wpa_cli.py
hpagseddy/ZPUI
b82819e523987639c2dfab417f9895d7cd7ce049
[ "Apache-2.0", "MIT" ]
null
null
null
libs/linux/wpa_cli.py
hpagseddy/ZPUI
b82819e523987639c2dfab417f9895d7cd7ce049
[ "Apache-2.0", "MIT" ]
2
2020-01-17T00:44:53.000Z
2020-01-19T21:10:48.000Z
libs/linux/wpa_cli.py
hpagseddy/ZPUI
b82819e523987639c2dfab417f9895d7cd7ce049
[ "Apache-2.0", "MIT" ]
1
2020-01-14T22:44:27.000Z
2020-01-14T22:44:27.000Z
from subprocess import check_output, CalledProcessError from ast import literal_eval from time import sleep from helpers import setup_logger logger = setup_logger(__name__, "warning") current_interface = None #wpa_cli related functions and objects #wpa_cli command wrappers and their helpers def connect_new_network(network_info): #First, looking in the known networks conf_networks = list_configured_networks() network_found = False for network in conf_networks: if network_info['ssid'] == network['ssid']: network_found = True select_network(network['network id']) return True #Then, if it's an open network, just connecting if is_open_network(network_info): network_id = add_network() logger.info(set_network(network_id, 'ssid', '"'+network_info['ssid']+'"')) set_network(network_id, 'key_mgmt', 'NONE') select_network(network_id) return True #Else, there's not enough implemented as for now if not network_found: logger.warning("Hell, I dunno.") return False #wpa_cli commands #Helper commands if __name__ == "__main__": print(get_current_interface()) print(get_interfaces()) print(list_configured_networks()) print(connection_status()) print(initiate_scan()) for i in range(7): sleep(1) print(get_scan_results()) print(initiate_scan()) print(initiate_scan())
35.167382
128
0.691726
ed3c39ee9d299277d428f6d6c8408e0b9a778f0c
17,635
py
Python
demos/ServerSideBrowser.py
eukreign/python-v8
f20d7bef766a2ae3573cc536e7d03e07afe9b173
[ "Apache-2.0" ]
2
2018-02-12T22:34:09.000Z
2019-01-03T05:18:00.000Z
demos/ServerSideBrowser.py
eukreign/python-v8
f20d7bef766a2ae3573cc536e7d03e07afe9b173
[ "Apache-2.0" ]
null
null
null
demos/ServerSideBrowser.py
eukreign/python-v8
f20d7bef766a2ae3573cc536e7d03e07afe9b173
[ "Apache-2.0" ]
3
2019-02-13T08:00:06.000Z
2020-05-17T22:40:20.000Z
#!/usr/bin/env python from __future__ import with_statement import sys, traceback, os, os.path import xml.dom.minidom import logging if __name__ == "__main__": with Browser() as browser: if browser.parseCmdLine(): browser.runShell()
34.176357
155
0.489424
ed3c6cc6ba561bf90153ae8e03fe8da305f91245
4,169
py
Python
pypeira/io/fits.py
WielderOfMjoelnir/pypeira
4ef554c577875e09f55673f8e6ea53ba129fb37f
[ "MIT" ]
null
null
null
pypeira/io/fits.py
WielderOfMjoelnir/pypeira
4ef554c577875e09f55673f8e6ea53ba129fb37f
[ "MIT" ]
null
null
null
pypeira/io/fits.py
WielderOfMjoelnir/pypeira
4ef554c577875e09f55673f8e6ea53ba129fb37f
[ "MIT" ]
null
null
null
from __future__ import division import fitsio """ A FITS file is comprised of segments called Header/Data Units (HDUs), where the first HDU is called the 'Primary HDU', or 'Primary Array'. The primary data array can contain a 1-999 dimensional array of 1, 2 or 4 byte integers or 4 or 8 byte floating point numbers using IEEE representation. A typical primary array could contain a 1-D spectrum, a 2-D image, or a 3-D data cube (this is what's coming from the SSC). Any number of additional HDUs may follow the primary array. These additional HDUs are referred to as FITS 'extensions'. Three types of standard extensions are currently defined: * Image Extensions * Contain a 0-999 dimensional array of pixels, similar to primary array * Header begins with XTENSION = 'IMAGE' * ASCII Tables Extensions * Store tabular information with all numberic information stored in ASCII formats While ASCII tables are generellay less efficient than binary tables, they can be made relatively human readable and can store numeric information with essentially arbitrary size and accuracy (e.g., 16 byte reals). * Header begins with XTENSION = 'TABLE' * Binary Table Extensions * Store tabular information in a binary represetation. Each cell in the table can be an array but the dimensionality of the array must be constant within a column. The strict standard supports only one-dimensional arrays, but a convention to support multi-dimensional arrays are widely accepted. * Header begins with XTENSION = 'BINTABLE' In addition to the structures above, there is one other type of FITS HDU called "Random Groups" that is almost exclusively used for applications in radio interferometry. The random groups format should not be used for other types of applications. .. [REF] fits.gsfc.nasa.gov/fits_primer.html """ def read_fits(path, headers_only=False, image_only=False, *args, **kwargs): """ Reader function for the FITS files. Takes advantage of the fitsio reader function. Parameters ---------- path: str Path to the FITS file you want to read headers_only: bool, optional Set to True if you only want to read the headers of the file. If True, the data return will only be the headers of the files read. Default is False. image_only: bool, optional Set to True if you only want to read the image data of the file. If True, the data return will be a numpy array corresponding to the image data of the files read. Default is False. *args: optional Contains all arguments that will be passed onto the fitsio reader. This reader will be fitsio.read_headers() or fitsio.FITS() depending on if 'headers_only' is True or False. **kwargs: optional Contains all keyword arguments that will be passed to the fitsio reader. Returns ------- hdr, image: FITSHDR object, np.array If none of the "only"-keywords are not False, then a (FITSHDR, np.array)-pair will be returned. Note that a FITSHDR can be access by indexing as a normal dictionary. See fitsio.fitslib.FITSHDR for implementation of FITSHDR. FITSHDR object If 'headers_only' is not False it will return in the same manner as for normally, but now the type of the files will be FITSHDR objects. numpy.array If 'image_only' is not False it will return in the same manner as for the FITS object, but now the type of the tiles will be numpy.arrays. """ if headers_only: hdr = read_headers(path, *args, **kwargs) return hdr elif image_only: image = read_image(path, *args, **kwargs) return image else: hdr = read_headers(path, *args, **kwargs) image = read_image(path, *args, **kwargs) return hdr, image
38.962617
104
0.710962
ed3d3135e9d1178c7b64b4da6cccbf9abc64c76d
1,727
py
Python
system/lib/update_musl.py
RyanCargan/emscripten
6d3859f88e1d6394395760153c0a8cfa6a876ac7
[ "MIT" ]
6,541
2019-01-17T22:13:18.000Z
2022-03-31T07:20:21.000Z
system/lib/update_musl.py
RyanCargan/emscripten
6d3859f88e1d6394395760153c0a8cfa6a876ac7
[ "MIT" ]
7,584
2019-01-17T22:58:27.000Z
2022-03-31T23:10:22.000Z
system/lib/update_musl.py
RyanCargan/emscripten
6d3859f88e1d6394395760153c0a8cfa6a876ac7
[ "MIT" ]
1,275
2019-01-19T16:18:04.000Z
2022-03-30T19:32:35.000Z
#!/usr/bin/env python3 # Copyright 2021 The Emscripten Authors. All rights reserved. # Emscripten is available under two separate licenses, the MIT license and the # University of Illinois/NCSA Open Source License. Both these licenses can be # found in the LICENSE file. """Simple script for updating musl from external git repo. The upstream sources, along with our local changes, live at: https://github.com/emscripten-core/musl To update musl first make sure all changes from the emscripten repo are present in the `emscripten` branch of the above repo. Then run `git merge v<musl_version>` to pull in the latest musl changes from a given musl version. Once any merge conflict are resolved those change can then be copied back into emscripten using this script. """ import os import sys import shutil import subprocess script_dir = os.path.abspath(os.path.dirname(__file__)) local_src = os.path.join(script_dir, 'libc', 'musl') exclude_dirs = ( # Top level directories we don't include 'tools', 'obj', 'lib', 'crt', 'musl', 'compat', # Parts of src we don't build 'malloc', # Arch-specific code we don't use 'arm', 'x32', 'sh', 'i386', 'x86_64', 'aarch64', 'riscv64', 's390x', 'mips', 'mips64', 'mipsn32', 'powerpc', 'powerpc64', 'm68k', 'microblaze', 'or1k', 'generic') musl_dir = os.path.abspath(sys.argv[1]) if __name__ == '__main__': main()
28.311475
78
0.72264
ed3dd47b74e1445e656b23816bec9c93f6315a3e
3,358
py
Python
src/scout_apm/instruments/pymongo.py
xiamx/scout_apm_python
d03dab45f65cf7d1030e11fabf6da4cf6e72ee59
[ "MIT" ]
null
null
null
src/scout_apm/instruments/pymongo.py
xiamx/scout_apm_python
d03dab45f65cf7d1030e11fabf6da4cf6e72ee59
[ "MIT" ]
null
null
null
src/scout_apm/instruments/pymongo.py
xiamx/scout_apm_python
d03dab45f65cf7d1030e11fabf6da4cf6e72ee59
[ "MIT" ]
null
null
null
from __future__ import absolute_import, division, print_function, unicode_literals import logging # Used in the exec() call below. from scout_apm.core.monkey import monkeypatch_method, unpatch_method # noqa: F401 from scout_apm.core.tracked_request import TrackedRequest # noqa: F401 logger = logging.getLogger(__name__)
28.700855
87
0.579512
ed3e5d031590d8e6dff347577131d013386c5855
3,235
py
Python
measures/tests/factories.py
uktrade/tamato
4ba2ffb25eea2887e4e081c81da7634cd7b4f9ca
[ "MIT" ]
14
2020-03-25T11:11:29.000Z
2022-03-08T20:41:33.000Z
measures/tests/factories.py
uktrade/tamato
4ba2ffb25eea2887e4e081c81da7634cd7b4f9ca
[ "MIT" ]
352
2020-03-25T10:42:09.000Z
2022-03-30T15:32:26.000Z
measures/tests/factories.py
uktrade/tamato
4ba2ffb25eea2887e4e081c81da7634cd7b4f9ca
[ "MIT" ]
3
2020-08-06T12:22:41.000Z
2022-01-16T11:51:12.000Z
import random from typing import Optional import factory from common.tests import factories from measures.sheet_importers import MeasureSheetRow
37.616279
98
0.681607
ed3e7f550a07ae5965b40bbbda69660ec272d2cf
6,077
py
Python
autoscalingsim/scaling/policiesbuilder/metric/correlator/correlator.py
Remit/autoscaling-simulator
091943c0e9eedf9543e9305682a067ab60f56def
[ "MIT" ]
6
2021-03-10T16:23:10.000Z
2022-01-14T04:57:46.000Z
autoscalingsim/scaling/policiesbuilder/metric/correlator/correlator.py
Remit/autoscaling-simulator
091943c0e9eedf9543e9305682a067ab60f56def
[ "MIT" ]
null
null
null
autoscalingsim/scaling/policiesbuilder/metric/correlator/correlator.py
Remit/autoscaling-simulator
091943c0e9eedf9543e9305682a067ab60f56def
[ "MIT" ]
1
2022-01-14T04:57:55.000Z
2022-01-14T04:57:55.000Z
from abc import ABC, abstractmethod import collections import pandas as pd from autoscalingsim.utils.error_check import ErrorChecker from .correlators import *
57.87619
245
0.751687
ed3f22bc9cd6901491dd74a1964aa19636812550
581
py
Python
tools/test_net.py
by-liu/SegLossBia
9cc639c04084cda9d5fb20ea34699db7e0beaf5c
[ "MIT" ]
18
2021-04-20T17:03:20.000Z
2022-03-12T05:56:24.000Z
tools/test_net.py
by-liu/SegLossBia
9cc639c04084cda9d5fb20ea34699db7e0beaf5c
[ "MIT" ]
null
null
null
tools/test_net.py
by-liu/SegLossBia
9cc639c04084cda9d5fb20ea34699db7e0beaf5c
[ "MIT" ]
1
2021-07-08T17:44:15.000Z
2021-07-08T17:44:15.000Z
import sys import logging from seglossbias.utils import mkdir, setup_logging from seglossbias.engine import default_argument_parser, load_config, DefaultTester logger = logging.getLogger(__name__) if __name__ == "__main__": main()
20.75
82
0.717728
ed3f423aba07bd3e0294dc5b518080a8998ed87f
1,047
py
Python
sarpy/io/nitf/tres/unclass/ENGRDA.py
anielsen001/sarpy
07bf157f54a5304185fc0e1c34010053fd6ae9d9
[ "MIT" ]
null
null
null
sarpy/io/nitf/tres/unclass/ENGRDA.py
anielsen001/sarpy
07bf157f54a5304185fc0e1c34010053fd6ae9d9
[ "MIT" ]
null
null
null
sarpy/io/nitf/tres/unclass/ENGRDA.py
anielsen001/sarpy
07bf157f54a5304185fc0e1c34010053fd6ae9d9
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- from ..tre_elements import TREExtension, TREElement __classification__ = "UNCLASSIFIED" __author__ = "Thomas McCullough"
29.914286
60
0.621777
ed402a46ff5fc00fad7e1376b1ab297b4013340b
7,808
py
Python
jp_doodle/quantity_forest.py
lingruiluo/jp_doodle
b3935208821898f22ab504c2b26dd4d37f08f0e4
[ "BSD-2-Clause" ]
43
2018-10-10T08:38:07.000Z
2022-03-19T22:44:42.000Z
jp_doodle/quantity_forest.py
firmfrol19/jp_doodle
cb34938edaedbe15590ebe8024060dd97bb69fa9
[ "BSD-2-Clause" ]
8
2018-09-17T19:49:45.000Z
2020-08-24T15:51:16.000Z
jp_doodle/quantity_forest.py
firmfrol19/jp_doodle
cb34938edaedbe15590ebe8024060dd97bb69fa9
[ "BSD-2-Clause" ]
5
2019-06-13T15:53:55.000Z
2020-11-13T01:22:56.000Z
from jp_doodle import doodle_files qf_js = doodle_files.vendor_path("js/quantity_forest.js") from jp_doodle import dual_canvas import jp_proxy_widget import os from subprocess import check_output import pprint if bytes != str: unicode = str RIGHT = {"x": 1, "y":0} UP = {"x": 0, "y":1}
34.702222
115
0.523309
ed40391b29c9dd84fbde6dce8cec5a7ba2c96f0b
3,139
py
Python
LeetCode-All-Solution/Python3/LC-0035-Search-Insert-Position.py
YuweiYin/Algorithm_YuweiYin
28648fac59c5a4e3c907978cbd1b3e662ba18fd5
[ "MIT" ]
null
null
null
LeetCode-All-Solution/Python3/LC-0035-Search-Insert-Position.py
YuweiYin/Algorithm_YuweiYin
28648fac59c5a4e3c907978cbd1b3e662ba18fd5
[ "MIT" ]
null
null
null
LeetCode-All-Solution/Python3/LC-0035-Search-Insert-Position.py
YuweiYin/Algorithm_YuweiYin
28648fac59c5a4e3c907978cbd1b3e662ba18fd5
[ "MIT" ]
null
null
null
#!/usr/bin/env python # -*- coding:utf-8 -*- """================================================================= @Project : Algorithm_YuweiYin/LeetCode-All-Solution/Python3 @File : LC-0035-Search-Insert-Position.py @Author : [YuweiYin](https://github.com/YuweiYin) @Date : 2022-01-01 ==================================================================""" import sys import time from typing import List """ LeetCode - 0035 - (Easy) - Search Insert Position https://leetcode.com/problems/search-insert-position/ Description: Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order. Requirement: You must write an algorithm with O(log n) runtime complexity. Example 1: Input: nums = [1,3,5,6], target = 5 Output: 2 Example 2: Input: nums = [1,3,5,6], target = 2 Output: 1 Example 3: Input: nums = [1,3,5,6], target = 7 Output: 4 Constraints: 1 <= nums.length <= 10^4 -10^4 <= nums[i] <= 10^4 nums contains distinct values sorted in ascending order. -10^4 <= target <= 10^4 """ if __name__ == "__main__": sys.exit(main())
28.798165
107
0.572794
ed4086f481b4822d573ede5f8a9108ee4da236b6
290
py
Python
coding202-parsing-json/get-ap-json-1.py
firodj/ciscodevnet-coding-skills-sample-code
4fca975e450cf0c913001fe1b36582f7a094b1e7
[ "Apache-2.0" ]
null
null
null
coding202-parsing-json/get-ap-json-1.py
firodj/ciscodevnet-coding-skills-sample-code
4fca975e450cf0c913001fe1b36582f7a094b1e7
[ "Apache-2.0" ]
null
null
null
coding202-parsing-json/get-ap-json-1.py
firodj/ciscodevnet-coding-skills-sample-code
4fca975e450cf0c913001fe1b36582f7a094b1e7
[ "Apache-2.0" ]
null
null
null
import requests url = 'https://64.103.26.61/api/contextaware/v1/maps/info/DevNetCampus/DevNetBuilding/DevNetZone' headers = {'Authorization': 'Basic bGVhcm5pbmc6bGVhcm5pbmc=='} response = requests.get(url, headers=headers, verify=False) responseString = response.text print(responseString)
41.428571
97
0.8
ed4193bd5735a5283b0caa027d333560a4c2793c
1,078
py
Python
lldb/test/API/lang/swift/optimized_code/bound_generic_enum/TestSwiftOptimizedBoundGenericEnum.py
LaudateCorpus1/llvm-project
ff2e0f0c1112558b3f30d8afec7c9882c33c79e3
[ "Apache-2.0" ]
605
2019-10-18T01:15:54.000Z
2022-03-31T14:31:04.000Z
lldb/test/API/lang/swift/optimized_code/bound_generic_enum/TestSwiftOptimizedBoundGenericEnum.py
LaudateCorpus1/llvm-project
ff2e0f0c1112558b3f30d8afec7c9882c33c79e3
[ "Apache-2.0" ]
3,180
2019-10-18T01:21:21.000Z
2022-03-31T23:25:41.000Z
lldb/test/API/lang/swift/optimized_code/bound_generic_enum/TestSwiftOptimizedBoundGenericEnum.py
LaudateCorpus1/llvm-project
ff2e0f0c1112558b3f30d8afec7c9882c33c79e3
[ "Apache-2.0" ]
275
2019-10-18T05:27:22.000Z
2022-03-30T09:04:21.000Z
import lldb from lldbsuite.test.decorators import * import lldbsuite.test.lldbtest as lldbtest import lldbsuite.test.lldbutil as lldbutil import os import unittest2
35.933333
79
0.705009
ed4253185dfabd501835c1030a3d60a0f1a59215
296
py
Python
kervi/kervi/plugin/routing/kervi_io/__init__.py
wentzlau/kervi
d35a422a6bca6b0ef50a4f9e5c382dece855abdc
[ "MIT" ]
null
null
null
kervi/kervi/plugin/routing/kervi_io/__init__.py
wentzlau/kervi
d35a422a6bca6b0ef50a4f9e5c382dece855abdc
[ "MIT" ]
null
null
null
kervi/kervi/plugin/routing/kervi_io/__init__.py
wentzlau/kervi
d35a422a6bca6b0ef50a4f9e5c382dece855abdc
[ "MIT" ]
null
null
null
#Copyright 2017 Tim Wentlau. #Distributed under the MIT License. See LICENSE in root of project.
32.888889
75
0.787162
ed42d7a8a9a02745abd1180b0c82d5235e6a3711
903
py
Python
bc_gym_planning_env/envs/base/action.py
ghostFaceKillah/bc-gym-planning-env
3cc0eb03adb752d304c3f007675cfff86691d007
[ "MIT" ]
2
2019-04-28T02:26:23.000Z
2021-12-06T16:04:36.000Z
bc_gym_planning_env/envs/base/action.py
ghostFaceKillah/bc-gym-planning-env
3cc0eb03adb752d304c3f007675cfff86691d007
[ "MIT" ]
7
2019-03-12T14:07:40.000Z
2019-05-02T04:46:30.000Z
bc_gym_planning_env/envs/base/action.py
ghostFaceKillah/bc-gym-planning-env
3cc0eb03adb752d304c3f007675cfff86691d007
[ "MIT" ]
7
2019-01-08T08:09:09.000Z
2022-02-07T09:57:02.000Z
""" Code for wrapping the motion primitive action in an object. """ from __future__ import division from __future__ import absolute_import import attr import numpy as np from bc_gym_planning_env.utilities.serialize import Serializable
28.21875
100
0.713178
ed42fcb801fa38e9585e0b02fe9fd71eff57af66
1,863
py
Python
histogram.py
ccfelius/queueing
c38bd2fe230e52d6166a94449cec28f82e245ec2
[ "MIT" ]
1
2020-12-10T17:36:40.000Z
2020-12-10T17:36:40.000Z
histogram.py
ccfelius/queueing
c38bd2fe230e52d6166a94449cec28f82e245ec2
[ "MIT" ]
null
null
null
histogram.py
ccfelius/queueing
c38bd2fe230e52d6166a94449cec28f82e245ec2
[ "MIT" ]
1
2021-01-05T13:08:03.000Z
2021-01-05T13:08:03.000Z
import matplotlib.pyplot as plt import pandas as pd import math import numpy as np from scipy import stats import seaborn as sns data = pd.read_csv("data/500-4.txt", sep="\t") # example1 = data[data["SIM_TIME"] == 500] simulations = 500 simtimes = [5, 50, 150, 500, 1000] # for i in [1, 2, 4]: # data = pd.read_csv(f"data/500-{i}.txt", sep="\t") # example = data[data["SIM_TIME"] == simtime] rhos = [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 0.975] print("DONE") print("\n START MEAN, STDEV, CONF INT") data = pd.read_csv(f"data/500-2.txt", sep="\t") example = data[data["SIM_TIME"] == 150] example1 = data[data["SIM_TIME"] == 500] ex = example[example['RHO'] == 0.1]['AVG_WAIT'] ex2 = example1[example1['RHO'] == 0.1]['AVG_WAIT'] ex_9 = example[example['RHO'] == 0.9]['AVG_WAIT'] ex2_9 = example1[example1['RHO'] == 0.9]['AVG_WAIT'] print("\nMEAN 150, 500, rho 0.1, rho 0.9") print(ex.mean(), ex2.mean()) print(ex_9.mean(), ex2_9.mean()) print("\nSTDEV 150, 500, rho 0.1, rho 0.9") print(ex.std(), ex2.std()) print(ex_9.std(), ex2_9.std()) fig = plt.figure(facecolor='w') ax = fig.add_subplot(111, facecolor='whitesmoke', axisbelow=True) ax.hist(ex_9, bins = 100, alpha=0.8, color = 'cornflowerblue', label="Simtime=150") ax.hist(ex2_9, bins = 100, alpha = 0.5, color='springgreen', label="Simtime=500") # sns.displot(ex_9,) # sns.displot(ex2_9) ax.set_xlabel('Mean waiting time / time unit', fontsize=12) ax.set_ylabel('Density', fontsize=12) ax.set_title('Distribution mean waiting time', fontsize = 14) ax.yaxis.set_tick_params(length=0) ax.xaxis.set_tick_params(length=0) ax.grid(b=True, which='major', c='w', lw=2, ls='-') legend = ax.legend() legend.get_frame().set_alpha(0.5) for spine in ('top', 'right', 'bottom', 'left'): ax.spines[spine].set_visible(False) plt.savefig("plots/histogram-150-500-01.png", dpi=300) plt.show()
30.540984
83
0.662909
ed4391eec6c0ca45d66a840d1a081ef7d248ea7e
558
py
Python
python/1931.py
zheedong/BaekJoon
7f9e00085276a337d18ee3bb90c98126f7af4d3a
[ "MIT" ]
null
null
null
python/1931.py
zheedong/BaekJoon
7f9e00085276a337d18ee3bb90c98126f7af4d3a
[ "MIT" ]
null
null
null
python/1931.py
zheedong/BaekJoon
7f9e00085276a337d18ee3bb90c98126f7af4d3a
[ "MIT" ]
null
null
null
n = int(input()) conf_set = [] for _ in range(n): conf_set.append(tuple(map(int, input().split()))) conf_set.sort(key=lambda x : (x[1], x[0])) # # , solution_list = [conf_set[0]] # Greedy Algorithm for conf in conf_set[1:]: last_conf = solution_list[-1] _, last_end_time = last_conf new_start_time, _ = conf # list , list if new_start_time >= last_end_time: solution_list.append(conf) print(len(solution_list))
23.25
59
0.664875
ed4408c93538d9f83abe75060897c6705abd216b
2,219
py
Python
social_webpy/app.py
python-social-auth/social-app-webpy
edcfd8dd95c66a3524961e5212e13c9c2e8515a3
[ "BSD-3-Clause" ]
2
2017-06-21T15:29:09.000Z
2022-01-26T21:12:25.000Z
social_webpy/app.py
python-social-auth/social-app-webpy
edcfd8dd95c66a3524961e5212e13c9c2e8515a3
[ "BSD-3-Clause" ]
null
null
null
social_webpy/app.py
python-social-auth/social-app-webpy
edcfd8dd95c66a3524961e5212e13c9c2e8515a3
[ "BSD-3-Clause" ]
1
2018-10-21T07:33:36.000Z
2018-10-21T07:33:36.000Z
import web from social_core.actions import do_auth, do_complete, do_disconnect from .utils import psa, load_strategy, load_strategy urls = ( r'/login/(?P<backend>[^/]+)/?', 'auth', r'/complete/(?P<backend>[^/]+)/?', 'complete', r'/disconnect/(?P<backend>[^/]+)/?', 'disconnect', r'/disconnect/(?P<backend>[^/]+)/(?P<association_id>\d+)/?', 'disconnect', ) app_social = web.application(urls, locals())
28.818182
78
0.598918
ed4409f82d978378f6be973493d164c3f3a747dd
2,133
py
Python
stellar/config.py
gomyar/stellar
b2dfbe136f1540f0ca6ac5779ebaeae996a3b747
[ "MIT" ]
null
null
null
stellar/config.py
gomyar/stellar
b2dfbe136f1540f0ca6ac5779ebaeae996a3b747
[ "MIT" ]
null
null
null
stellar/config.py
gomyar/stellar
b2dfbe136f1540f0ca6ac5779ebaeae996a3b747
[ "MIT" ]
null
null
null
import os import logging import yaml from schema import Use, Schema, SchemaError, Optional default_config = { 'logging': 30, 'migrate_from_0_3_2': True } schema = Schema({ 'stellar_url': Use(str), 'url': Use(str), 'project_name': Use(str), 'tracked_databases': [Use(str)], Optional('logging'): int, Optional('migrate_from_0_3_2'): bool })
23.43956
70
0.554149
ed446ef71ae2d9e250f77adc4d3e36a498ecb373
3,239
py
Python
egs2/mr_openslr64/asr1/local/data_prep.py
texpomru13/espnet
7ef005e832e2fb033f356c16f54e0f08762fb4b0
[ "Apache-2.0" ]
1
2022-03-25T14:41:05.000Z
2022-03-25T14:41:05.000Z
egs2/mr_openslr64/asr1/local/data_prep.py
texpomru13/espnet
7ef005e832e2fb033f356c16f54e0f08762fb4b0
[ "Apache-2.0" ]
2
2019-04-23T04:43:33.000Z
2019-05-13T13:06:52.000Z
egs2/mr_openslr64/asr1/local/data_prep.py
texpomru13/espnet
7ef005e832e2fb033f356c16f54e0f08762fb4b0
[ "Apache-2.0" ]
null
null
null
#!/usr/bin/env python3 # Copyright 2021 Carnegie Mellon University (Peter Wu) # Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0) import argparse import os import random if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument("-d", help="downloads directory", type=str, default="downloads") args = parser.parse_args() tsv_path = "%s/line_index.tsv" % args.d with open(tsv_path, "r") as inf: tsv_lines = inf.readlines() tsv_lines = [line.strip() for line in tsv_lines] spk2utt = {} utt2text = {} for line in tsv_lines: l_list = line.split("\t") fid = l_list[0] spk = l_list[0].split("_")[1] text = l_list[1] path = "%s/%s.wav" % (args.d, fid) if os.path.exists(path): utt2text[fid] = text if spk in spk2utt: spk2utt[spk].append(fid) else: spk2utt[spk] = [fid] spks = sorted(list(spk2utt.keys())) num_fids = 0 num_test_spks = 0 for spk in spks: num_test_spks += 1 fids = sorted(list(set(spk2utt[spk]))) num_fids += len(fids) if num_fids >= 2000: break num_test_spks = 2 test_spks = spks[:num_test_spks] train_dev_spks = spks[num_test_spks:] random.Random(0).shuffle(train_dev_spks) num_train = int(len(train_dev_spks) * 0.9) train_spks = train_dev_spks[:num_train] dev_spks = train_dev_spks[num_train:] spks_by_phase = {"train": train_spks, "dev": dev_spks, "test": test_spks} flac_dir = "%s" % args.d sr = 16000 for phase in spks_by_phase: spks = spks_by_phase[phase] text_strs = [] wav_scp_strs = [] spk2utt_strs = [] num_fids = 0 for spk in spks: fids = sorted(list(set(spk2utt[spk]))) num_fids += len(fids) if phase == "test" and num_fids > 2000: curr_num_fids = num_fids - 2000 random.Random(1).shuffle(fids) fids = fids[:curr_num_fids] utts = [spk + "-" + f for f in fids] utts_str = " ".join(utts) spk2utt_strs.append("%s %s" % (spk, utts_str)) for fid, utt in zip(fids, utts): cmd = "ffmpeg -i %s/%s.wav -f wav -ar %d -ab 16 -ac 1 - |" % ( flac_dir, fid, sr, ) text_strs.append("%s %s" % (utt, utt2text[fid])) wav_scp_strs.append("%s %s" % (utt, cmd)) phase_dir = "data/marathi_%s" % phase if not os.path.exists(phase_dir): os.makedirs(phase_dir) text_strs = sorted(text_strs) wav_scp_strs = sorted(wav_scp_strs) spk2utt_strs = sorted(spk2utt_strs) with open(os.path.join(phase_dir, "text"), "w+") as ouf: for s in text_strs: ouf.write("%s\n" % s) with open(os.path.join(phase_dir, "wav.scp"), "w+") as ouf: for s in wav_scp_strs: ouf.write("%s\n" % s) with open(os.path.join(phase_dir, "spk2utt"), "w+") as ouf: for s in spk2utt_strs: ouf.write("%s\n" % s)
32.39
88
0.538747
ed44cdd790149a7a7aba7ae668b2598d57504c5a
9,404
py
Python
movement_validation/features/feature_processing_options.py
eulerkaku/movement_validation
af939a42a97c1de889cf13bad0c22a2824d60947
[ "MIT" ]
null
null
null
movement_validation/features/feature_processing_options.py
eulerkaku/movement_validation
af939a42a97c1de889cf13bad0c22a2824d60947
[ "MIT" ]
null
null
null
movement_validation/features/feature_processing_options.py
eulerkaku/movement_validation
af939a42a97c1de889cf13bad0c22a2824d60947
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- """ This module will hold a class that will be referenced when processing features. I'd like to move things from "config" into here ... - @JimHokanson """ from __future__ import division from .. import utils #Can't do this, would be circular #from .worm_features import WormFeatures
34.072464
116
0.606231
ed44fdb0f01181ea268ba486b1d64620229b6b81
634
py
Python
xos/ec2_observer/steps/__init__.py
wathsalav/xos
f6bcaa37a948ee41729236afe7fce0802e002404
[ "Apache-2.0" ]
null
null
null
xos/ec2_observer/steps/__init__.py
wathsalav/xos
f6bcaa37a948ee41729236afe7fce0802e002404
[ "Apache-2.0" ]
null
null
null
xos/ec2_observer/steps/__init__.py
wathsalav/xos
f6bcaa37a948ee41729236afe7fce0802e002404
[ "Apache-2.0" ]
null
null
null
#from .sync_external_routes import SyncExternalRoutes #from .sync_network_slivers import SyncNetworkSlivers #from .sync_networks import SyncNetworks #from .sync_network_deployments import SyncNetworkDeployments #from .sync_site_privileges import SyncSitePrivilege #from .sync_slice_memberships import SyncSliceMemberships #from .sync_slices import SyncSlices #from .sync_sliver_ips import SyncSliverIps #from .sync_slivers import SyncSlivers #from .sync_users import SyncUsers #from .sync_roles import SyncRoles #from .sync_nodes import SyncNodes #from .sync_images import SyncImages #from .garbage_collector import GarbageCollector
39.625
61
0.865931
ed45225f06a1a8cadf577895bd9772f8a5fae7c7
1,240
py
Python
src/napari_geojson/_tests/test_writer.py
NHPatterson/napari-geojson
8e7925dc7600608673d489e24e8760c4669eaa0b
[ "BSD-3-Clause" ]
null
null
null
src/napari_geojson/_tests/test_writer.py
NHPatterson/napari-geojson
8e7925dc7600608673d489e24e8760c4669eaa0b
[ "BSD-3-Clause" ]
6
2021-12-31T06:04:05.000Z
2022-02-27T15:19:29.000Z
src/napari_geojson/_tests/test_writer.py
NHPatterson/napari-geojson
8e7925dc7600608673d489e24e8760c4669eaa0b
[ "BSD-3-Clause" ]
1
2022-02-22T20:35:07.000Z
2022-02-22T20:35:07.000Z
import geojson import pytest from napari_geojson import write_shapes ellipse = [[[0, 0], [0, 5], [5, 5], [5, 0]], "ellipse", "Polygon"] line = [[[0, 0], [5, 5]], "line", "LineString"] polygon = [[[0, 0], [5, 5], [0, 10]], "polygon", "Polygon"] polyline = [[[0, 0], [5, 5], [0, 10]], "path", "LineString"] rectangle = [[[0, 0], [0, 5], [5, 5], [5, 0]], "rectangle", "Polygon"] sample_shapes = [ellipse, line, polygon, polyline, rectangle] sample_shapes_ids = ["ellipse", "line", "polygon", "polyline", "rectangle"]
33.513514
75
0.647581
ed487e9bb61e7b47c76c3fe0f4b895d4d0e7a7e7
12,688
py
Python
pgmpy/models/ClusterGraph.py
echoyi/pgmpy
c37dda4401f23ec73fc5d17d957867cd62e588d3
[ "MIT" ]
null
null
null
pgmpy/models/ClusterGraph.py
echoyi/pgmpy
c37dda4401f23ec73fc5d17d957867cd62e588d3
[ "MIT" ]
null
null
null
pgmpy/models/ClusterGraph.py
echoyi/pgmpy
c37dda4401f23ec73fc5d17d957867cd62e588d3
[ "MIT" ]
null
null
null
#!/usr/bin/env python3 from collections import defaultdict import numpy as np from pgmpy.base import UndirectedGraph from pgmpy.factors import factor_product
34.953168
119
0.534994
ed48aebeb275b2b66a2ca1e46510e44f4c833499
1,474
py
Python
plugins/commands_window/plugin.py
stonewell/eim
50fc4bb6e265ed8a5eb84577fd203e83934d55a7
[ "MIT" ]
null
null
null
plugins/commands_window/plugin.py
stonewell/eim
50fc4bb6e265ed8a5eb84577fd203e83934d55a7
[ "MIT" ]
null
null
null
plugins/commands_window/plugin.py
stonewell/eim
50fc4bb6e265ed8a5eb84577fd203e83934d55a7
[ "MIT" ]
null
null
null
from PySide6.QtWidgets import QListWidgetItem from yapsy.IPlugin import IPlugin
25.859649
80
0.683853
ed493a7b9c217715b159a3e6f8cf67b68a3aa7f3
478
py
Python
custom_components/helpers.py
zroger49/broadlink_custom_component
c7b0f9648f1dbaad64e573561e852b689be5a755
[ "MIT" ]
null
null
null
custom_components/helpers.py
zroger49/broadlink_custom_component
c7b0f9648f1dbaad64e573561e852b689be5a755
[ "MIT" ]
2
2022-01-30T15:29:17.000Z
2022-03-13T10:54:58.000Z
custom_components/helpers.py
racelandshop/broadlink_custom_component
c7b0f9648f1dbaad64e573561e852b689be5a755
[ "MIT" ]
1
2022-01-16T16:05:24.000Z
2022-01-16T16:05:24.000Z
"""Helpers for the Broadlink remote.""" from base64 import b64decode from homeassistant.helpers import config_validation as cv def decode_packet(value): """Decode a data packet given for a Broadlink remote.""" value = cv.string(value) extra = len(value) % 4 if extra > 0: value = value + ("=" * (4 - extra)) return b64decode(value) def format_mac(mac): """Format a MAC address.""" return ":".join([format(octet, "02x") for octet in mac])
26.555556
60
0.65272
ed49ab3c5d4f24945d71fc6987cac08699af6050
692
py
Python
problems/139.Word_Break/AC_dp_n2.py
subramp-prep/leetcode
d125201d9021ab9b1eea5e5393c2db4edd84e740
[ "Unlicense" ]
null
null
null
problems/139.Word_Break/AC_dp_n2.py
subramp-prep/leetcode
d125201d9021ab9b1eea5e5393c2db4edd84e740
[ "Unlicense" ]
null
null
null
problems/139.Word_Break/AC_dp_n2.py
subramp-prep/leetcode
d125201d9021ab9b1eea5e5393c2db4edd84e740
[ "Unlicense" ]
null
null
null
#!/usr/bin/python # -*- coding: utf-8 -*- # Author: illuz <iilluzen[at]gmail.com> # File: AC_dp_n2.py # Create Date: 2015-04-21 10:21:18 # Usage: AC_dp_n2.py # Descripton: # debug s = Solution() print s.wordBreak('a', ['a'])
23.862069
58
0.460983
ed49cff59f1ab26e4ca17666763624af983410cc
8,641
py
Python
examples/pybullet/gym/pybullet_envs/bullet/kukaCamGymEnv.py
motionfigures/bullet3
4a66d6c80b38a87ecbdf2fd5c4d281f0b5913d22
[ "Zlib" ]
51
2018-11-11T12:47:38.000Z
2022-03-06T08:39:43.000Z
examples/pybullet/gym/pybullet_envs/bullet/kukaCamGymEnv.py
motionfigures/bullet3
4a66d6c80b38a87ecbdf2fd5c4d281f0b5913d22
[ "Zlib" ]
2
2019-11-15T03:21:45.000Z
2020-09-10T11:53:58.000Z
examples/pybullet/gym/pybullet_envs/bullet/kukaCamGymEnv.py
motionfigures/bullet3
4a66d6c80b38a87ecbdf2fd5c4d281f0b5913d22
[ "Zlib" ]
14
2018-12-12T09:12:14.000Z
2021-10-17T14:30:25.000Z
import os, inspect currentdir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))) parentdir = os.path.dirname(os.path.dirname(currentdir)) os.sys.path.insert(0,parentdir) import math import gym from gym import spaces from gym.utils import seeding import numpy as np import time import pybullet as p from . import kuka import random import pybullet_data from pkg_resources import parse_version maxSteps = 1000 RENDER_HEIGHT = 720 RENDER_WIDTH = 960
32.731061
270
0.661035
ed4a2840446404d2f282a8452d7b98f961fd5554
6,392
py
Python
hi-ml-histopathology/src/histopathology/preprocessing/tiling.py
kumar-pratik/hi-ml
a108cf4ea244a76127adedc0ca60f0a5afdfb3e8
[ "MIT" ]
402
2020-09-22T16:38:16.000Z
2022-03-30T09:56:03.000Z
hi-ml-histopathology/src/histopathology/preprocessing/tiling.py
kumar-pratik/hi-ml
a108cf4ea244a76127adedc0ca60f0a5afdfb3e8
[ "MIT" ]
259
2020-09-23T09:32:33.000Z
2022-03-30T18:15:01.000Z
hi-ml-histopathology/src/histopathology/preprocessing/tiling.py
kumar-pratik/hi-ml
a108cf4ea244a76127adedc0ca60f0a5afdfb3e8
[ "MIT" ]
112
2020-09-23T00:12:58.000Z
2022-03-31T07:39:55.000Z
# ------------------------------------------------------------------------------------------ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License (MIT). See LICENSE in the repo root for license information. # ------------------------------------------------------------------------------------------ # These tiling implementations are adapted from PANDA Kaggle solutions, for example: # https://github.com/kentaroy47/Kaggle-PANDA-1st-place-solution/blob/master/src/data_process/a00_save_tiles.py from typing import Any, Optional, Tuple import numpy as np def get_1d_padding(length: int, tile_size: int) -> Tuple[int, int]: """Computes symmetric padding for `length` to be divisible by `tile_size`.""" pad = (tile_size - length % tile_size) % tile_size return (pad // 2, pad - pad // 2) def pad_for_tiling_2d(array: np.ndarray, tile_size: int, channels_first: Optional[bool] = True, **pad_kwargs: Any) -> Tuple[np.ndarray, np.ndarray]: """Symmetrically pads a 2D `array` such that both dimensions are divisible by `tile_size`. :param array: 2D image array. :param tile_size: Width/height of each tile in pixels. :param channels_first: Whether `array` is in CHW (`True`, default) or HWC (`False`) layout. :param pad_kwargs: Keyword arguments to be passed to `np.pad()` (e.g. `constant_values=0`). :return: A tuple containing: - `padded_array`: Resulting array, in the same CHW/HWC layout as the input. - `offset`: XY offset introduced by the padding. Add this to coordinates relative to the original array to obtain indices for the padded array. """ height, width = array.shape[1:] if channels_first else array.shape[:-1] padding_h = get_1d_padding(height, tile_size) padding_w = get_1d_padding(width, tile_size) padding = [padding_h, padding_w] channels_axis = 0 if channels_first else 2 padding.insert(channels_axis, (0, 0)) # zero padding on channels axis padded_array = np.pad(array, padding, **pad_kwargs) offset = (padding_w[0], padding_h[0]) return padded_array, np.array(offset) def tile_array_2d(array: np.ndarray, tile_size: int, channels_first: Optional[bool] = True, **pad_kwargs: Any) -> Tuple[np.ndarray, np.ndarray]: """Split an image array into square non-overlapping tiles. The array will be padded symmetrically if its dimensions are not exact multiples of `tile_size`. :param array: Image array. :param tile_size: Width/height of each tile in pixels. :param pad_kwargs: Keyword arguments to be passed to `np.pad()` (e.g. `constant_values=0`). :param channels_first: Whether `array` is in CHW (`True`, default) or HWC (`False`) layout. :return: A tuple containing: - `tiles`: A batch of tiles in NCHW layout. - `coords`: XY coordinates of each tile, in the same order. """ padded_array, (offset_w, offset_h) = pad_for_tiling_2d(array, tile_size, channels_first, **pad_kwargs) if channels_first: channels, height, width = padded_array.shape else: height, width, channels = padded_array.shape n_tiles_h = height // tile_size n_tiles_w = width // tile_size if channels_first: intermediate_shape = (channels, n_tiles_h, tile_size, n_tiles_w, tile_size) axis_order = (1, 3, 0, 2, 4) # (n_tiles_h, n_tiles_w, channels, tile_size, tile_size) output_shape = (n_tiles_h * n_tiles_w, channels, tile_size, tile_size) else: intermediate_shape = (n_tiles_h, tile_size, n_tiles_w, tile_size, channels) axis_order = (0, 2, 1, 3, 4) # (n_tiles_h, n_tiles_w, tile_size, tile_size, channels) output_shape = (n_tiles_h * n_tiles_w, tile_size, tile_size, channels) tiles = padded_array.reshape(intermediate_shape) # Split width and height axes tiles = tiles.transpose(axis_order) tiles = tiles.reshape(output_shape) # Flatten tile batch dimension # Compute top-left coordinates of every tile, relative to the original array's origin coords_h = tile_size * np.arange(n_tiles_h) - offset_h coords_w = tile_size * np.arange(n_tiles_w) - offset_w # Shape: (n_tiles_h * n_tiles_w, 2) coords = np.stack(np.meshgrid(coords_w, coords_h), axis=-1).reshape(-1, 2) return tiles, coords def assemble_tiles_2d(tiles: np.ndarray, coords: np.ndarray, fill_value: Optional[float] = np.nan, channels_first: Optional[bool] = True) -> Tuple[np.ndarray, np.ndarray]: """Assembles a 2D array from sequences of tiles and coordinates. :param tiles: Stack of tiles with batch dimension first. :param coords: XY tile coordinates, assumed to be spaced by multiples of `tile_size` (shape: [N, 2]). :param tile_size: Size of each tile; must be >0. :param fill_value: Value to assign to empty elements (default: `NaN`). :param channels_first: Whether each tile is in CHW (`True`, default) or HWC (`False`) layout. :return: A tuple containing: - `array`: The reassembled 2D array with the smallest dimensions to contain all given tiles. - `offset`: The lowest XY coordinates. - `offset`: XY offset introduced by the assembly. Add this to tile coordinates to obtain indices for the assembled array. """ if coords.shape[0] != tiles.shape[0]: raise ValueError(f"Tile coordinates and values must have the same length, " f"got {coords.shape[0]} and {tiles.shape[0]}") if channels_first: n_tiles, channels, tile_size, _ = tiles.shape else: n_tiles, tile_size, _, channels = tiles.shape tile_xs, tile_ys = coords.T x_min, x_max = min(tile_xs), max(tile_xs + tile_size) y_min, y_max = min(tile_ys), max(tile_ys + tile_size) width = x_max - x_min height = y_max - y_min output_shape = (channels, height, width) if channels_first else (height, width, channels) array = np.full(output_shape, fill_value) offset = np.array([-x_min, -y_min]) for idx in range(n_tiles): row = coords[idx, 1] + offset[1] col = coords[idx, 0] + offset[0] if channels_first: array[:, row:row + tile_size, col:col + tile_size] = tiles[idx] else: array[row:row + tile_size, col:col + tile_size, :] = tiles[idx] return array, offset
49.550388
110
0.661608
ed4a5900145229cd2e22ae9792f8a8881bfd83d3
9,697
py
Python
miniapp/miniapp/hartreefock/hf.py
savcardamone/tyche-
ea89edea89a607291e4fe0ba738d75522f54dc1a
[ "MIT" ]
null
null
null
miniapp/miniapp/hartreefock/hf.py
savcardamone/tyche-
ea89edea89a607291e4fe0ba738d75522f54dc1a
[ "MIT" ]
1
2018-12-28T13:30:16.000Z
2018-12-29T10:30:33.000Z
miniapp/miniapp/hartreefock/hf.py
savcardamone/tyche
ea89edea89a607291e4fe0ba738d75522f54dc1a
[ "MIT" ]
null
null
null
from math import pi from numpy import array, ndarray, divide, sqrt, argsort, sort, diag, trace from numpy.linalg import eig, norm if __name__ == "__main__": hf = HartreeFock(4) hf.run(2000)
39.579592
131
0.607301
ed4a99de0c0a371040dd37f7fc6fad45e488b616
132
py
Python
6.爬取豆瓣排行榜电影数据(含GUI界面版)/main.py
shengqiangzhang/examples-of-web-crawlers
89eb6c169b8824a6a9bc78e7a32e064d33560aa7
[ "MIT" ]
12,023
2019-03-13T08:53:27.000Z
2022-03-31T21:31:15.000Z
6.爬取豆瓣排行榜电影数据(含GUI界面版)/main.py
shengqiangzhang/examples-of-web-crawlers
89eb6c169b8824a6a9bc78e7a32e064d33560aa7
[ "MIT" ]
100
2019-03-14T04:09:12.000Z
2022-03-22T14:24:11.000Z
6.爬取豆瓣排行榜电影数据(含GUI界面版)/main.py
shengqiangzhang/examples-of-web-crawlers
89eb6c169b8824a6a9bc78e7a32e064d33560aa7
[ "MIT" ]
3,693
2019-03-13T08:21:22.000Z
2022-03-31T16:07:08.000Z
# -*- coding:utf-8 -*- from uiObject import uiObject # main if __name__ == '__main__': ui = uiObject() ui.ui_process()
13.2
29
0.621212
ed4ce61eb4af04f3704ae96a5870d43583535a63
524
py
Python
photos/models.py
eude313/vault
d3e24cf01d15de94244b7d2e80316355a0827f74
[ "MIT" ]
null
null
null
photos/models.py
eude313/vault
d3e24cf01d15de94244b7d2e80316355a0827f74
[ "MIT" ]
null
null
null
photos/models.py
eude313/vault
d3e24cf01d15de94244b7d2e80316355a0827f74
[ "MIT" ]
null
null
null
from django.db import models from cloudinary.models import CloudinaryField # Create your models here.
29.111111
94
0.71374
ed4d3cea76d6d1815b54c52a975d47ddfb5f8c99
7,496
py
Python
server/djangoapp/restapis.py
christiansencq/ibm_capstone
d445fd40c0267be0948a5d85e9d43828b908641c
[ "Apache-2.0" ]
null
null
null
server/djangoapp/restapis.py
christiansencq/ibm_capstone
d445fd40c0267be0948a5d85e9d43828b908641c
[ "Apache-2.0" ]
null
null
null
server/djangoapp/restapis.py
christiansencq/ibm_capstone
d445fd40c0267be0948a5d85e9d43828b908641c
[ "Apache-2.0" ]
null
null
null
import requests import json # import related models here from .models import CarDealer, DealerReview from requests.auth import HTTPBasicAuth import logging logger = logging.getLogger(__name__) # Create a `get_request` to make HTTP GET requests # e.g., response = requests.get(url, params=params, headers={'Content-Type': 'application/json'}, # auth=HTTPBasicAuth('apikey', api_key)) # Create a `post_request` to make HTTP POST requests # e.g., response = requests.post(url, params=kwargs, json=payload) # Create a get_dealers_from_cf method to get dealers from a cloud function # Create an `analyze_review_sentiments` method to call Watson NLU and analyze text # def analyze_review_sentiments(text): # - Call get_request() with specified arguments # - Get the returned sentiment label such as Positive or Negative
46.271605
140
0.603522
ed4d8f444cbb7eba10514b86dbcd28fb80cd5824
2,035
py
Python
examples/python/upload.py
oslokommune/okdata-data-uploader
fc006ae90440b267613260bba90235799bf0cf6e
[ "MIT" ]
null
null
null
examples/python/upload.py
oslokommune/okdata-data-uploader
fc006ae90440b267613260bba90235799bf0cf6e
[ "MIT" ]
null
null
null
examples/python/upload.py
oslokommune/okdata-data-uploader
fc006ae90440b267613260bba90235799bf0cf6e
[ "MIT" ]
null
null
null
import logging from configparser import ConfigParser from sdk.data_uploader import DataUploader logging.basicConfig(level=logging.INFO) log = logging.getLogger() config = ConfigParser() config.read("config.ini") ##### # Datasets to be added to metadata API datasetData = { "title": "Test", "description": "Test data", "keywords": ["test"], "accessRights": "non-public", "objective": "Formlsbeskrivelse", "contactPoint": { "name": "Tim", "email": "[email protected]", "phone": "12345678", }, "publisher": "Tim", } datasetVersionData = {"version": "6", "schema": {}, "transformation": {}} datasetVersionEditionData = { "edition": "2019-05-28T15:37:00+02:00", "description": "Data for one hour", "startTime": "2018-12-21T08:00:00+01:00", "endTime": "2018-12-21T09:00:00+01:00", } ###### # The dataset* variables are optional, if these are set in config.ini this script will # not run the relevant DataUploader function datasetId = config.get("dataUploader", "datasetId", fallback=None) datasetVersion = config.get("dataUploader", "datasetVersion", fallback=None) datasetVersionEdition = config.get( "dataUploader", "datasetVersionEdition", fallback=None ) upload = DataUploader(config) try: log.info("Uploading a file to S3") upload.login() if datasetId is None: upload.createDataset(datasetData) if datasetVersion is None: upload.createVersion(datasetVersionData) if datasetVersionEdition is None: upload.createEdition(datasetVersionEditionData) log.info(f"Dataset: {upload.datasetId}") log.info(f"Version: {upload.datasetVersion}") log.info(f"Edition: {upload.datasetVersionEdition}") if upload.upload("README.md"): log.info("Done... go brew some coffee") else: log.error("Could not upload file....") except Exception as e: log.exception(f">> Something went horrible wrong:\n{e}") # To upload with curl: cmd = upload.curl("tmp3.zip") # Max upload size for now is 5GB
30.373134
86
0.678624
ed4da4c3e62ea1a20080eade8fbb9743d55cdd88
3,558
py
Python
doc/examples.py
Enerccio/mahjong
903505a7886c31845dfa6b3f54c936a4feb29e6e
[ "MIT" ]
254
2017-09-20T15:02:20.000Z
2022-03-28T11:33:28.000Z
doc/examples.py
Enerccio/mahjong
903505a7886c31845dfa6b3f54c936a4feb29e6e
[ "MIT" ]
39
2017-09-23T14:28:36.000Z
2022-01-06T08:41:57.000Z
doc/examples.py
Enerccio/mahjong
903505a7886c31845dfa6b3f54c936a4feb29e6e
[ "MIT" ]
38
2017-10-19T09:06:53.000Z
2022-03-15T05:08:22.000Z
from mahjong.hand_calculating.hand import HandCalculator from mahjong.meld import Meld from mahjong.hand_calculating.hand_config import HandConfig, OptionalRules from mahjong.shanten import Shanten from mahjong.tile import TilesConverter calculator = HandCalculator() # useful helper #################################################################### # Tanyao hand by ron # #################################################################### # we had to use all 14 tiles in that array tiles = TilesConverter.string_to_136_array(man='22444', pin='333567', sou='444') win_tile = TilesConverter.string_to_136_array(sou='4')[0] result = calculator.estimate_hand_value(tiles, win_tile) print_hand_result(result) #################################################################### # Tanyao hand by tsumo # #################################################################### result = calculator.estimate_hand_value(tiles, win_tile, config=HandConfig(is_tsumo=True)) print_hand_result(result) #################################################################### # Add open set to hand # #################################################################### melds = [Meld(meld_type=Meld.PON, tiles=TilesConverter.string_to_136_array(man='444'))] result = calculator.estimate_hand_value(tiles, win_tile, melds=melds, config=HandConfig(options=OptionalRules(has_open_tanyao=True))) print_hand_result(result) #################################################################### # Shanten calculation # #################################################################### shanten = Shanten() tiles = TilesConverter.string_to_34_array(man='13569', pin='123459', sou='443') result = shanten.calculate_shanten(tiles) print(result) #################################################################### # Kazoe as a sanbaiman # #################################################################### tiles = TilesConverter.string_to_136_array(man='22244466677788') win_tile = TilesConverter.string_to_136_array(man='7')[0] melds = [ Meld(Meld.KAN, TilesConverter.string_to_136_array(man='2222'), False) ] dora_indicators = [ TilesConverter.string_to_136_array(man='1')[0], TilesConverter.string_to_136_array(man='1')[0], TilesConverter.string_to_136_array(man='1')[0], TilesConverter.string_to_136_array(man='1')[0], ] config = HandConfig(is_riichi=True, options=OptionalRules(kazoe=HandConfig.KAZOE_SANBAIMAN)) result = calculator.estimate_hand_value(tiles, win_tile, melds, dora_indicators, config) print_hand_result(result) #################################################################### # Change the cost of yaku # #################################################################### config = HandConfig(is_renhou=True) # renhou as an yakuman - old style config.yaku.renhou.han_closed = 13 tiles = TilesConverter.string_to_136_array(man='22444', pin='333567', sou='444') win_tile = TilesConverter.string_to_136_array(sou='4')[0] result = calculator.estimate_hand_value(tiles, win_tile, config=config) print_hand_result(result)
35.227723
133
0.537943
ed4e6dc26f15763248de005c84025114cd89fa6c
436
py
Python
src/infi/mount_utils/solaris/mounter.py
Infinidat/mount-utils
e4e08e21c278a2391494a7b9d9d7efdaeb393a9c
[ "BSD-3-Clause" ]
null
null
null
src/infi/mount_utils/solaris/mounter.py
Infinidat/mount-utils
e4e08e21c278a2391494a7b9d9d7efdaeb393a9c
[ "BSD-3-Clause" ]
null
null
null
src/infi/mount_utils/solaris/mounter.py
Infinidat/mount-utils
e4e08e21c278a2391494a7b9d9d7efdaeb393a9c
[ "BSD-3-Clause" ]
null
null
null
from ..base.mounter import MounterMixin, execute_mount
31.142857
84
0.694954
ed4edc151ca26cac5de8e4d708a84551964ac057
14,366
py
Python
sdk/python/pulumi_oci/database/get_external_non_container_database.py
EladGabay/pulumi-oci
6841e27d4a1a7e15c672306b769912efbfd3ba99
[ "ECL-2.0", "Apache-2.0" ]
5
2021-08-17T11:14:46.000Z
2021-12-31T02:07:03.000Z
sdk/python/pulumi_oci/database/get_external_non_container_database.py
pulumi-oci/pulumi-oci
6841e27d4a1a7e15c672306b769912efbfd3ba99
[ "ECL-2.0", "Apache-2.0" ]
1
2021-09-06T11:21:29.000Z
2021-09-06T11:21:29.000Z
sdk/python/pulumi_oci/database/get_external_non_container_database.py
pulumi-oci/pulumi-oci
6841e27d4a1a7e15c672306b769912efbfd3ba99
[ "ECL-2.0", "Apache-2.0" ]
2
2021-08-24T23:31:30.000Z
2022-01-02T19:26:54.000Z
# coding=utf-8 # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** # *** Do not edit by hand unless you're certain you know what you are doing! *** import warnings import pulumi import pulumi.runtime from typing import Any, Mapping, Optional, Sequence, Union, overload from .. import _utilities from . import outputs __all__ = [ 'GetExternalNonContainerDatabaseResult', 'AwaitableGetExternalNonContainerDatabaseResult', 'get_external_non_container_database', ] def get_external_non_container_database(external_non_container_database_id: Optional[str] = None, opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExternalNonContainerDatabaseResult: """ This data source provides details about a specific External Non Container Database resource in Oracle Cloud Infrastructure Database service. Gets information about a specific external non-container database. ## Example Usage ```python import pulumi import pulumi_oci as oci test_external_non_container_database = oci.database.get_external_non_container_database(external_non_container_database_id=oci_database_external_non_container_database["test_external_non_container_database"]["id"]) ``` :param str external_non_container_database_id: The external non-container database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). """ __args__ = dict() __args__['externalNonContainerDatabaseId'] = external_non_container_database_id if opts is None: opts = pulumi.InvokeOptions() if opts.version is None: opts.version = _utilities.get_version() __ret__ = pulumi.runtime.invoke('oci:database/getExternalNonContainerDatabase:getExternalNonContainerDatabase', __args__, opts=opts, typ=GetExternalNonContainerDatabaseResult).value return AwaitableGetExternalNonContainerDatabaseResult( character_set=__ret__.character_set, compartment_id=__ret__.compartment_id, database_configuration=__ret__.database_configuration, database_edition=__ret__.database_edition, database_management_config=__ret__.database_management_config, database_version=__ret__.database_version, db_id=__ret__.db_id, db_packs=__ret__.db_packs, db_unique_name=__ret__.db_unique_name, defined_tags=__ret__.defined_tags, display_name=__ret__.display_name, external_non_container_database_id=__ret__.external_non_container_database_id, freeform_tags=__ret__.freeform_tags, id=__ret__.id, lifecycle_details=__ret__.lifecycle_details, ncharacter_set=__ret__.ncharacter_set, operations_insights_config=__ret__.operations_insights_config, state=__ret__.state, time_created=__ret__.time_created, time_zone=__ret__.time_zone)
45.034483
457
0.69748
ed4f8a612b9b05faf17087ad729a1b5925503103
1,358
py
Python
setup.py
xmedius/xmedius-mailrelayserver
44bb55c4b543e96bb23a45499d281c1bbab18abf
[ "MIT" ]
null
null
null
setup.py
xmedius/xmedius-mailrelayserver
44bb55c4b543e96bb23a45499d281c1bbab18abf
[ "MIT" ]
null
null
null
setup.py
xmedius/xmedius-mailrelayserver
44bb55c4b543e96bb23a45499d281c1bbab18abf
[ "MIT" ]
null
null
null
from setuptools import setup from setuptools.command.install import install setup( name='xmediusmailrelayserver', version='1.0.0', description='The Python module to be used to relay mail to different servers depending on patterns', long_description='See https://github.com/xmedius/xmedius-mailrelayserver for more information', url='https://github.com/xmedius/xmedius-mailrelayserver/', author='XMedius R&D', license='MIT', classifiers=[ 'Programming Language :: Python :: 3.6', 'Environment :: Win32 (MS Windows)', 'Operating System :: Microsoft :: Windows' ], cmdclass={ 'install': PostInstallCommand }, packages=['xmediusmailrelayserver'], package_data={'xmediusmailrelayserver': ['config.yml']}, install_requires=['pyyaml', 'aiosmtpd'], dependency_links=[] )
30.863636
104
0.667158
ed502bad0b09f0685ca1ff615fe9d8b7f8ad7287
1,554
py
Python
143.py
tsbxmw/leetcode
e751311b8b5f2769874351717a22c35c19b48a36
[ "MIT" ]
null
null
null
143.py
tsbxmw/leetcode
e751311b8b5f2769874351717a22c35c19b48a36
[ "MIT" ]
null
null
null
143.py
tsbxmw/leetcode
e751311b8b5f2769874351717a22c35c19b48a36
[ "MIT" ]
null
null
null
# 143. # LL0L1Ln-1Ln # L0LnL1Ln-1L2Ln-2 # # 1: # 1->2->3->4, 1->4->2->3. # 2: # 1->2->3->4->5, 1->5->2->4->3. # Definition for singly-linked list. # class ListNode: # def __init__(self, x): # self.val = x # self.next = None # Definition for singly-linked list. # class ListNode: # def __init__(self, x): # self.val = x # self.next = None ## ## 1 - 2 - 3 - 4 - 5 ## | | ## temp = 1.next == 2 ## 1.next = 4.next == 5 ## 4.next = None ## 1.next.next == 5.next = 2 ## now = 2 ## last = 3.next
24.28125
62
0.462677
ed50775b4eac2d767b8b5f1e618533d64da3321f
1,882
py
Python
CraftProtocol/NBT/NBTTagList.py
Toranktto/CraftProtocol
a6f4a67756c3868820ab76df5e148d76b020d990
[ "MIT" ]
21
2018-05-12T20:18:02.000Z
2022-02-18T17:33:50.000Z
CraftProtocol/NBT/NBTTagList.py
Toranktto/CraftProtocol
a6f4a67756c3868820ab76df5e148d76b020d990
[ "MIT" ]
1
2018-06-23T09:13:39.000Z
2018-06-27T01:22:27.000Z
CraftProtocol/NBT/NBTTagList.py
Toranktto/CraftProtocol
a6f4a67756c3868820ab76df5e148d76b020d990
[ "MIT" ]
2
2018-05-19T21:36:00.000Z
2020-10-02T03:23:13.000Z
#!/usr/bin/env python from CraftProtocol.NBT.NBTBase import NBTBase from CraftProtocol.NBT.NBTProvider import NBTProvider from CraftProtocol.StreamIO import StreamIO
25.093333
88
0.643996
ed5085f9be9c98ff85fd3851495ed53a851d06cd
25,960
py
Python
examples/0b02b172-ad67-449b-b4a2-ff645b28c508.py
lapaniku/GAS
e49ce302689af683da744cd172e0359c0ba0af86
[ "MIT" ]
37
2021-12-12T17:36:24.000Z
2022-03-12T15:46:56.000Z
examples/0b02b172-ad67-449b-b4a2-ff645b28c508.py
lapaniku/GAS
e49ce302689af683da744cd172e0359c0ba0af86
[ "MIT" ]
1
2021-12-19T12:39:10.000Z
2021-12-19T12:39:10.000Z
examples/0b02b172-ad67-449b-b4a2-ff645b28c508.py
lapaniku/GAS
e49ce302689af683da744cd172e0359c0ba0af86
[ "MIT" ]
3
2021-12-17T17:29:35.000Z
2022-03-12T15:26:49.000Z
# This program was generated by "Generative Art Synthesizer" # Generation date: 2021-11-28 09:21:40 UTC # GAS change date: 2021-11-28 09:20:21 UTC # GAS md5 hash: ad55481e87ca5a7e9a8e92cd336d1cad # Python version: 3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)] # For more information visit: https://github.com/volotat/GAS #import python libraries import os #OS version: default import numpy as np #Numpy version: 1.19.5 from PIL import Image #PIL version: 8.1.2 #set initial params SIZE = 768 GRID_CHANNELS = 16 #define grid transformation methods #set initial grid grid = np.zeros((SIZE, SIZE, GRID_CHANNELS)) x = ((np.arange(SIZE)/(SIZE-1) - 0.5) * 2).reshape((1, SIZE)).repeat(SIZE, 0) y = ((np.arange(SIZE)/(SIZE-1) - 0.5) * 2).reshape((SIZE, 1)).repeat(SIZE, 1) grid[:,:,0] = (x * 0.9386329219527516 + y * -0.45147169454413794) / 2 grid[:,:,1] = (x * 0.8090860808441245 + y * 0.2914526739617249) / 2 grid[:,:,2] = (x * 0.9804797761207309 + y * -0.5063344373124843) / 2 grid[:,:,3] = (x * -0.8484277738516293 + y * -0.5155435342135386) / 2 grid[:,:,4] = (x * -0.6644350461377522 + y * 0.1739322518414499) / 2 grid[:,:,5] = (x * -0.5986715486203882 + y * 0.9515468928881716) / 2 grid[:,:,6] = (x * 0.2265055481768512 + y * 0.4365452266748293) / 2 grid[:,:,7] = (x * 0.5049774961793401 + y * 0.05113255120007798) / 2 grid[:,:,8] = (x * -0.3391983246964396 + y * -0.5135707069423852) / 2 grid[:,:,9] = (x * -0.4075423366723827 + y * 0.5388833863473126) / 2 grid[:,:,10] = (x * -0.4262457935185371 + y * -0.6817079327248272) / 2 grid[:,:,11] = (x * 0.8435706697714382 + y * 0.7746597063144072) / 2 grid[:,:,12] = (x * -0.5303146721156469 + y * -0.41048419195488317) / 2 grid[:,:,13] = (x * -0.5864100240508576 + y * -0.9425245660964123) / 2 grid[:,:,14] = (x * -0.7665883618456049 + y * -0.3867357840809138) / 2 grid[:,:,15] = (x * 0.49037959172682255 + y * -0.7671554143072785) / 2 #apply transformations to the grid grid = transit(grid, 4, [7, 6, 12, 8, 9, 0, 1], [0.05863158300898051, 0.3467981515651057, 0.262107802795733, 0.038001653167336905, 0.2112967596903696, 0.002128256606899112, 0.08103579316557531]) grid = shift(grid, 3, 3, 2.4622222565241207) grid = sin(grid, 10, 0, 0.5112825397666086, 37.95950546335726) grid = sin(grid, 12, 13, 3.6938747278005737, 76.37702042567852) grid = magnitude(grid, 15, [5, 3, 8, 0, 15], 2) grid = prod(grid, 2, [3, 11, 1]) grid = smooth_min(grid, 3, 2, 7) grid = smooth_max(grid, 8, 10, 6) grid = prod(grid, 3, [2, 6, 10, 7, 4]) grid = smooth_min(grid, 7, 12, 0) grid = transit(grid, 2, [1, 2], [0.9078557995211777, 0.09214420047882232]) grid = smooth_max(grid, 1, 0, 1) grid = sin(grid, 9, 4, 3.0281102269529683, 11.185401112275173) grid = sin(grid, 10, 4, 1.2844464834351186, -45.836492724169695) grid = sin(grid, 1, 2, -1.5301674594368837, -60.29431568717391) grid = transit(grid, 2, [13, 11, 5], [0.421270391024163, 0.5054038923567993, 0.07332571661903758]) grid = transit(grid, 11, [1, 15, 5, 0, 6, 12, 2, 7, 4], [0.03047869593495055, 0.024092687676923453, 0.02665655056773558, 0.17667886361751853, 0.15211061797378253, 0.016462544099609754, 0.0072484377164178625, 0.4477791048998878, 0.11849249751317383]) grid = transit(grid, 10, [5, 11, 15, 8, 2, 13, 12, 3, 6], [0.1020239434902293, 0.05405846145210329, 0.11525379082942891, 0.11556721863292163, 0.12372657123165616, 0.1356897031789931, 0.20047556686480725, 0.09921434949484752, 0.05399039482501285]) grid = transit(grid, 9, [5], [1.0]) grid = transit(grid, 15, [12, 0, 1, 11], [0.01847979792505241, 0.33442336387003857, 0.15192425697494277, 0.4951725812299663]) grid = sin(grid, 4, 8, 3.386521226555936, 60.95572898751007) grid = shift(grid, 14, 2, 2.55681173849493) grid = sin(grid, 10, 14, 0.8649185298731181, 3.1973516320924773) grid = sin(grid, 9, 7, -2.4657577404884132, 72.95418196004374) grid = transit(grid, 12, [7, 4, 10, 5], [0.5076634403621766, 0.003404332378773421, 0.04142944289977586, 0.4475027843592742]) grid = inverse(grid, 4, 5) grid = transit(grid, 1, [4, 14, 0, 13], [0.2785496566747933, 0.004915230889640017, 0.30146401859790545, 0.4150710938376613]) grid = sin(grid, 3, 11, -6.496603906160505, -73.75617586359363) grid = transit(grid, 6, [6, 14], [0.7201753385758813, 0.2798246614241187]) grid = prod(grid, 4, [10, 0, 2, 4, 8, 5, 6, 7]) grid = transit(grid, 8, [3], [1.0]) grid = inverse(grid, 8, 5) grid = smooth_max(grid, 10, 5, 13) grid = sin(grid, 9, 10, -1.8565532127479274, -54.75186223635349) grid = transit(grid, 10, [14], [1.0]) grid = transit(grid, 15, [11, 4, 10], [0.6926745567135898, 0.1831142410590532, 0.12421120222735695]) grid = magnitude(grid, 7, [6, 12, 7, 13, 8], 2) grid = transit(grid, 8, [3, 15, 9, 6, 11], [0.036102265915692405, 0.1224495166624379, 0.2384660328868578, 0.3357862916746864, 0.2671958928603256]) grid = smooth_min(grid, 1, 1, 11) grid = transit(grid, 5, [11, 4, 2, 1, 13, 12, 0, 8], [0.08486049729383285, 0.15069099224942706, 0.024923245737924458, 0.07191051851248272, 0.25942601829807205, 0.16834508849259286, 0.14540219911263502, 0.094441440303033]) grid = transit(grid, 11, [12], [1.0]) grid = power(grid, 3, 5, 0.10200689258338674) grid = transit(grid, 2, [10, 11, 4, 15, 0, 6], [0.24973877983541862, 0.3378766591098989, 0.15974656746239488, 0.027776085211312595, 0.02330072841260748, 0.20156117996836745]) grid = smooth_min(grid, 0, 5, 1) grid = magnitude(grid, 0, [5, 0], 2) grid = transit(grid, 6, [15, 8], [0.5303803951305812, 0.4696196048694189]) grid = inverse(grid, 0, 0) grid = magnitude(grid, 13, [8], 2) grid = transit(grid, 13, [15, 5, 9, 4, 6, 12], [0.18067242214638962, 0.12939497982917472, 0.08164480089591167, 0.24583958083442445, 0.2244518823086713, 0.13799633398542827]) grid = transit(grid, 11, [0], [1.0]) grid = magnitude(grid, 0, [4, 13], 2) grid = transit(grid, 8, [5, 4, 15, 6, 14, 0, 3, 11], [0.13835365002720226, 0.008781149737259792, 0.24627334258742545, 0.04870190081124998, 0.049950480577274, 0.15123046752435387, 0.31255198044446264, 0.04415702829077187]) grid = transit(grid, 1, [3], [1.0]) grid = magnitude(grid, 14, [4], 2) grid = sin(grid, 1, 5, 8.18216846853571, -6.729427492311089) grid = magnitude(grid, 11, [8, 2], 2) grid = transit(grid, 7, [12, 11, 13, 4], [0.1713900685471786, 0.14082681623065177, 0.19859698568682838, 0.4891861295353413]) grid = transit(grid, 13, [12, 15, 9, 2, 0, 1, 5], [0.18796556626817826, 0.19260744772691155, 0.11226112831146452, 0.08161640805634696, 0.08706050582840198, 0.2243337708440404, 0.11415517296465624]) grid = sin(grid, 11, 13, -6.909579361872105, 70.84834564082374) grid = transit(grid, 2, [11, 7, 13], [0.3629247592109436, 0.10073172896374764, 0.5363435118253088]) grid = sin(grid, 1, 5, 0.6814927249849106, 30.75954926767548) grid = inverse(grid, 8, 7) grid = prod(grid, 10, [5, 2]) grid = transit(grid, 15, [0, 3], [0.29345909580747953, 0.7065409041925205]) grid = sin(grid, 12, 4, -1.6398586072056767, 84.51374680259704) grid = sin(grid, 1, 1, -0.183401440709518, -88.40242580975152) grid = transit(grid, 12, [3, 13, 2, 9, 0], [0.24803411847529433, 0.2425397323068922, 0.0904752958055755, 0.11683555248582808, 0.30211530092641004]) grid = sin(grid, 5, 2, -2.2972705471452146, -12.522748365129786) grid = smooth_min(grid, 12, 9, 11) grid = sin(grid, 4, 15, -1.9527829039221054, 20.537776250912316) grid = transit(grid, 7, [11, 9, 2], [0.5001532946669459, 0.42070604285213226, 0.07914066248092186]) grid = inverse(grid, 5, 12) grid = sin(grid, 10, 2, 0.9155140652310594, -34.1653400637653) grid = transit(grid, 8, [14], [1.0]) grid = transit(grid, 4, [1, 12, 15, 13, 3], [0.32356965941479515, 0.022696478437764827, 0.2132573540073865, 0.11957266769813353, 0.3209038404419199]) grid = transit(grid, 6, [1, 7, 0, 2, 9, 4, 8], [0.06904450551777742, 0.12680650314665426, 0.1756104206123629, 0.013987480750913602, 0.1337935702206657, 0.39097327478734406, 0.08978424496428203]) grid = smooth_min(grid, 9, 9, 10) grid = shift(grid, 8, 1, -0.2952350240798842) grid = sin(grid, 11, 6, 1.576100090732909, -21.508000199215132) grid = shift(grid, 11, 5, 1.0526879494498724) grid = transit(grid, 1, [14], [1.0]) grid = transit(grid, 8, [9, 10, 2, 15, 13], [0.3265190472987195, 0.21568397721657098, 0.06226802479442838, 0.0028158122366541832, 0.39271313845362693]) grid = magnitude(grid, 11, [13, 10, 12, 2, 11, 14], 2) grid = transit(grid, 12, [8, 11, 3], [0.2717231795161624, 0.38648847983305307, 0.3417883406507845]) grid = transit(grid, 15, [7, 3], [0.9172074355564371, 0.08279256444356292]) grid = transit(grid, 13, [1, 2, 7, 5, 8, 9, 15], [0.085742434722219, 0.4119764535375412, 0.08377067725345017, 0.13045782410775286, 0.02917564277599849, 0.12489006625007311, 0.13398690135296518]) grid = transit(grid, 2, [2, 0, 11, 10, 5, 4, 15, 13], [0.1869735689344564, 0.06343641920215143, 0.038951322931441136, 0.04613309733662021, 0.19750663742298355, 0.16072124228620793, 0.15869932715876592, 0.14757838472737334]) grid = transit(grid, 2, [1, 7], [0.18247956114317448, 0.8175204388568255]) grid = transit(grid, 8, [11, 15, 0], [0.08195235243098883, 0.6796005904358621, 0.23844705713314918]) grid = power(grid, 14, 0, 0.10854801586669052) grid = shift(grid, 8, 9, 2.766857264282361) grid = transit(grid, 3, [6, 14, 0, 3, 15, 4, 2, 11, 13], [0.03597236183123865, 0.04938629068404894, 0.08457069101219464, 0.014801187461296406, 0.3649334871683411, 0.28062233683539095, 0.08637063851194285, 0.06076815802338077, 0.022574848472165728]) grid = transit(grid, 4, [11, 4, 15, 10, 8, 5, 2, 3], [0.23701292672659616, 0.08316792464084911, 0.017867439461611043, 0.36417402420248035, 0.02841485585755143, 0.19916101840344472, 0.03422984110049058, 0.03597196960697647]) grid = magnitude(grid, 13, [11, 7], 2) grid = sin(grid, 4, 8, 4.28026157040775, -75.14180284322572) grid = prod(grid, 3, [14, 15]) grid = inverse(grid, 5, 5) grid = transit(grid, 4, [8, 4, 15, 9, 10], [0.10267794314653868, 0.019022820046952493, 0.061606568183823145, 0.4832751235896067, 0.33341754503307897]) grid = transit(grid, 13, [10, 8, 9, 12, 2], [0.031587088727564654, 0.024264739611302585, 0.0306940545567164, 0.19611241111174804, 0.7173417059926683]) grid = transit(grid, 0, [7, 1, 11, 0, 15], [0.036901331671075975, 0.5054281720479712, 0.13288430351514774, 0.10820806749406277, 0.21657812527174225]) grid = transit(grid, 3, [7, 3, 12, 9], [0.13643904772292245, 0.38438336340747, 0.15936221296996333, 0.31981537589964426]) grid = sin(grid, 10, 3, -2.5681840787633137, -30.256455817944243) grid = sin(grid, 8, 2, 3.501615294498545, -75.50049353340206) grid = prod(grid, 9, [1, 4, 0, 6]) grid = transit(grid, 8, [9, 3], [0.30088974760959275, 0.6991102523904072]) grid = transit(grid, 8, [2, 11, 15, 4, 1, 0, 14], [0.29712982335534416, 0.2526657169525107, 0.08415696601637544, 0.18541009701166816, 0.011062110917544764, 0.017334502896306194, 0.1522407828502505]) grid = prod(grid, 2, [8, 7, 11, 10, 15, 0, 5]) grid = transit(grid, 11, [7, 2, 3, 9, 5], [0.24039798004748805, 0.2886075990223525, 0.18742374307846998, 0.11615833154358073, 0.16741234630810867]) grid = prod(grid, 0, [0, 1, 2, 14]) grid = prod(grid, 9, [10, 11, 8, 15, 0, 12, 3]) grid = transit(grid, 13, [5, 15, 10], [0.13237609957996088, 0.22944646977966682, 0.6381774306403722]) grid = transit(grid, 6, [15], [1.0]) grid = sin(grid, 15, 0, -0.033265790773207085, 51.94880270063618) grid = smooth_min(grid, 13, 10, 15) grid = transit(grid, 1, [12, 8, 10, 4, 2], [0.43102537693091664, 0.25433300797798253, 0.21618454566402304, 0.046743011673522995, 0.05171405775355483]) grid = sin(grid, 10, 10, 0.9558311639914843, -47.618914508652054) grid = shift(grid, 9, 8, -1.1449289879251126) grid = transit(grid, 7, [4, 10, 1, 13, 5, 0, 7, 8, 9, 12, 6, 11, 14], [0.10006330804326793, 0.03891760159161208, 0.005474465860804227, 0.12962618248625338, 0.03090992138168193, 0.016043163973997736, 0.13259375374543056, 0.09920705802758992, 0.1415090600653345, 0.09597789664069131, 0.06106766497801195, 0.14032187015082653, 0.008288053054498123]) grid = prod(grid, 15, [12, 15]) grid = prod(grid, 8, [11, 7, 4, 12]) grid = transit(grid, 7, [15, 6, 2, 7], [0.45073658968521574, 0.16060948991238613, 0.12949271785123345, 0.2591612025511646]) grid = transit(grid, 10, [11, 4, 2, 8, 14], [0.3705316303566195, 0.1755951969700656, 0.043989590834687294, 0.22866693087969006, 0.1812166509589377]) grid = sin(grid, 4, 2, -3.329894296119046, -76.41676919069447) grid = smooth_min(grid, 11, 8, 12) grid = transit(grid, 1, [1, 14, 8], [0.38986786543390084, 0.40057743619803005, 0.20955469836806906]) grid = transit(grid, 9, [5], [1.0]) grid = shift(grid, 9, 13, -5.367438086043798) grid = magnitude(grid, 13, [2, 0], 2) grid = transit(grid, 13, [6, 2, 3, 15, 5, 7], [0.06492287400539203, 0.21223490901058306, 0.36311130408652753, 0.09994467226348329, 0.12833432959710458, 0.1314519110369097]) grid = transit(grid, 8, [6, 2], [0.6857167761482571, 0.31428322385174284]) grid = shift(grid, 6, 15, 4.115946851379848) grid = transit(grid, 15, [13, 3], [0.5897775709748927, 0.41022242902510725]) grid = sin(grid, 12, 14, 1.097917736937588, 58.87772371184383) grid = transit(grid, 11, [9, 11], [0.37033495928182997, 0.6296650407181701]) grid = smooth_min(grid, 4, 1, 8) grid = sin(grid, 4, 4, 3.47544933993972, -37.11795195118333) grid = sin(grid, 11, 7, -0.3409112713023047, 75.93313567333723) grid = transit(grid, 11, [5, 10, 7], [0.22694849313985146, 0.5162695719847235, 0.25678193487542517]) grid = sin(grid, 9, 9, -4.261918262131112, 18.680580924548693) grid = smooth_max(grid, 2, 2, 11) grid = sin(grid, 13, 13, 7.718114740496995, 55.242200715207815) grid = sin(grid, 12, 10, -3.1151555334821888, 17.571856948335267) grid = prod(grid, 6, [2, 4, 13]) grid = transit(grid, 5, [1, 9, 3, 10, 4], [0.24075568684771534, 0.02527375632067568, 0.4828116495090197, 0.09546712897709621, 0.15569177834549294]) grid = sin(grid, 6, 3, -0.1377650382373763, -96.34412250071645) grid = sin(grid, 7, 3, 1.6405444007982959, -37.09230830685477) grid = transit(grid, 9, [8], [1.0]) grid = sin(grid, 5, 10, -1.5052434957207308, 24.900059771988836) grid = sin(grid, 8, 10, 2.5947698108630664, -90.74050288622541) grid = sin(grid, 9, 8, -0.8743741598911887, 15.92872484723533) grid = transit(grid, 4, [3, 13, 9, 8, 5, 2, 12], [0.05731677054419865, 0.08527765171582982, 0.33929504571762287, 0.1932983536368378, 0.0036374435750729187, 0.12289545051895708, 0.19827928429148084]) grid = transit(grid, 8, [13, 9, 5, 7, 14], [0.05801706264076675, 0.341923243761946, 0.0494872820880747, 0.29583940098242745, 0.2547330105267852]) grid = inverse(grid, 11, 5) grid = magnitude(grid, 14, [4, 6, 1, 0], 2) grid = transit(grid, 13, [11, 0], [0.6569516962992897, 0.3430483037007103]) grid = sin(grid, 14, 5, 0.053526366336325744, 4.147364704932215) grid = transit(grid, 4, [3], [1.0]) grid = sin(grid, 3, 12, -4.078686662791614, 24.459526349523884) grid = inverse(grid, 15, 10) grid = shift(grid, 6, 1, -1.115193397983063) grid = smooth_max(grid, 13, 3, 8) grid = transit(grid, 13, [13, 0, 5, 14], [0.09662806703796267, 0.1621478194912538, 0.21548762580464817, 0.5257364876661353]) grid = inverse(grid, 1, 0) grid = smooth_max(grid, 1, 15, 12) grid = prod(grid, 11, [3]) grid = smooth_max(grid, 8, 11, 15) grid = sin(grid, 12, 6, -3.621533174445339, 24.02414911462421) grid = sin(grid, 1, 11, 0.5071121900678415, 10.950101187785563) grid = shift(grid, 13, 3, 5.677279514103952) grid = transit(grid, 3, [15, 11, 2, 8, 0], [0.28772794692354614, 0.1935939805514465, 0.06024872230823076, 0.13457223936247906, 0.32385711085429764]) grid = transit(grid, 1, [7, 2, 6, 1, 4, 0], [0.2070905138265326, 0.06562120796792839, 0.17355051228662716, 0.05514926535269553, 0.0829726599151083, 0.41561584065110807]) grid = transit(grid, 2, [0, 4, 2], [0.010597803396528332, 0.7371576932264431, 0.25224450337702853]) grid = sin(grid, 11, 8, 4.303514875116891, -67.11152580467314) grid = prod(grid, 5, [3, 9, 2]) grid = sin(grid, 5, 1, 2.0751861425380627, 63.37681521624819) grid = smooth_min(grid, 11, 10, 9) grid = sin(grid, 13, 2, 4.295107938126156, 57.378601701270014) grid = sin(grid, 10, 2, -0.010214061334835559, 20.43114218394348) grid = transit(grid, 8, [1], [1.0]) grid = sin(grid, 4, 9, 0.2366252211469413, -40.63773874328931) grid = sin(grid, 9, 15, -2.507870105026106, -89.43842740853354) grid = transit(grid, 0, [12, 6, 4, 9, 1, 0, 14], [0.36336761526831185, 0.17372789204937897, 0.08036453739500136, 0.09747098994785518, 0.040818441056887325, 0.16796111771248814, 0.07628940657007711]) grid = transit(grid, 3, [11, 1, 12, 9, 0, 8, 15, 2, 10, 14], [0.20381942291270427, 0.07753380798970702, 0.11445683149439734, 0.08475226158626031, 0.1416941580568898, 0.020968563089492034, 0.0847896752697893, 0.0921589665387646, 0.008240731277180186, 0.17158558178481512]) grid = transit(grid, 5, [11, 10], [0.9817011300708863, 0.018298869929113594]) grid = sin(grid, 14, 8, -0.4693746108213766, -98.17810769380118) grid = sin(grid, 12, 10, 3.6427863324838423, 99.297524709649) grid = sin(grid, 5, 14, -1.45141083652418, -99.85812912291547) grid = transit(grid, 0, [4, 3, 8], [0.23275058190778222, 0.49901982570530873, 0.2682295923869092]) grid = magnitude(grid, 8, [10, 9, 12, 4, 7, 15], 2) grid = sin(grid, 12, 7, 1.439019575760617, 13.126437741104823) grid = transit(grid, 10, [15, 8, 13, 2], [0.32464063956303774, 0.20922781529873477, 0.16179927966914437, 0.30433226546908315]) grid = magnitude(grid, 6, [14, 5, 13, 11, 2, 9], 2) grid = sin(grid, 9, 5, -5.606152225672729, -35.928477282758536) grid = transit(grid, 0, [7, 11, 15, 8, 12, 0, 4, 14, 3, 5], [0.11084510086381213, 0.003439701966452383, 0.10819642722960272, 0.15371289739415475, 0.25812192912399506, 0.005727171643985687, 0.14633649245899077, 0.033890406689391105, 0.05550396325806974, 0.1242259093715456]) grid = smooth_max(grid, 10, 15, 10) grid = transit(grid, 11, [9, 0, 11, 7, 3, 8], [0.03500911832175082, 0.03265868671024263, 0.3248025339288217, 0.4234363710484886, 0.13338109758306646, 0.050712192407629864]) grid = transit(grid, 7, [14, 2, 13, 1, 11, 3, 8, 7], [0.207462236904601, 0.11516125867317799, 0.12240760599022518, 0.05066197369764289, 0.13869178538077429, 0.09948828746526778, 0.16686217850764798, 0.09926467338066268]) grid = transit(grid, 6, [6, 13, 7], [0.16813621041531998, 0.42150135317124293, 0.410362436413437]) grid = inverse(grid, 6, 6) grid = sin(grid, 7, 15, -4.9164570678736865, 86.15931416043557) grid = sin(grid, 1, 7, 1.6265187305620117, -97.13150019385894) grid = transit(grid, 11, [0, 9], [0.1290607634325389, 0.8709392365674611]) grid = transit(grid, 14, [14, 13, 15], [0.530662002197574, 0.1082014600047566, 0.36113653779766947]) grid = transit(grid, 14, [10, 14, 4, 9, 13, 6], [0.3199750359220948, 0.07376266150860299, 0.03622483092076182, 0.09070212266434277, 0.4030414045204916, 0.07629394446370606]) grid = magnitude(grid, 13, [7, 4, 15], 2) grid = transit(grid, 13, [6, 15, 11, 9, 12], [0.21908823570589997, 0.1636179110868493, 0.03797238284324163, 0.29532957711092916, 0.2839918932530799]) grid = sin(grid, 4, 3, 2.634465399239887, 62.07538440217337) grid = sin(grid, 7, 2, 3.41043792019894, 65.36615977552518) grid = transit(grid, 0, [14, 3, 11, 10, 7], [0.5203714128788618, 0.068511863728177, 0.10141059844877331, 0.2728285912351676, 0.036877533709020166]) grid = transit(grid, 7, [11], [1.0]) grid = transit(grid, 5, [9, 13, 3, 14], [0.28064413535886806, 0.5181512474389621, 0.1504742947642479, 0.050730322437922]) grid = prod(grid, 1, [12, 13]) grid = sin(grid, 6, 14, -1.927951619591129, -65.3028706482776) grid = prod(grid, 14, [13]) grid = sin(grid, 1, 12, -0.5111321725063378, 18.261359970959475) grid = power(grid, 6, 5, 0.9223892145169746) grid = transit(grid, 2, [9, 11, 10], [0.2662646690994658, 0.2460545507972383, 0.4876807801032959]) grid = transit(grid, 2, [7], [1.0]) grid = sin(grid, 10, 9, 6.219381309190064, -71.03631884776823) grid = sin(grid, 9, 6, 1.6821417847846682, -64.12547446801875) grid = sin(grid, 13, 3, -0.15800274281797377, 90.63950889076133) grid = sin(grid, 14, 14, -1.842523240371888, 74.23947694195837) grid = inverse(grid, 7, 8) grid = smooth_max(grid, 10, 3, 15) grid = magnitude(grid, 9, [15, 7], 2) grid = transit(grid, 4, [4, 12, 14, 15, 7, 1], [0.20378471182464508, 0.038241020379710625, 0.16903312106740406, 0.3387613981701764, 0.11303295854369695, 0.13714679001436697]) grid = transit(grid, 4, [14, 11, 12, 13, 4, 7], [0.23221079251346607, 0.3307147367708056, 0.26199556841553734, 0.018127231672754242, 0.13788777275073352, 0.01906389787670339]) grid = sin(grid, 4, 7, 3.7705302330112063, 56.91558505626969) grid = sin(grid, 3, 9, 1.4275963527158242, -76.78247379244436) grid = sin(grid, 2, 5, -5.225820110717917, 57.71107021356826) grid = transit(grid, 2, [12], [1.0]) grid = prod(grid, 14, [11, 10]) grid = transit(grid, 2, [0, 15, 10], [0.005204838856346087, 0.5116602651328436, 0.48313489601081044]) grid = transit(grid, 10, [10], [1.0]) grid = transit(grid, 1, [8, 10, 15, 14, 9], [0.33493798319460544, 0.14040206011900094, 0.3010385316537353, 0.07412413198773361, 0.14949729304492473]) grid = magnitude(grid, 10, [11, 0, 5], 2) grid = magnitude(grid, 9, [15, 3, 11, 0, 14], 2) grid = sin(grid, 4, 5, -1.8457292172108153, -53.43885199947502) grid = sin(grid, 10, 0, 7.741409383532979, -12.082110529508299) grid = prod(grid, 11, [9]) grid = sin(grid, 4, 3, 0.10154488887533689, 12.479110491961137) grid = magnitude(grid, 1, [7], 2) grid = smooth_min(grid, 7, 4, 13) grid = magnitude(grid, 5, [7], 2) grid = transit(grid, 6, [9, 11, 2, 13], [0.381505247910628, 0.12073241493361198, 0.3454992433435407, 0.15226309381221942]) grid = magnitude(grid, 10, [7, 15, 5], 2) grid = magnitude(grid, 9, [12, 14, 4], 2) grid = shift(grid, 3, 9, 3.0393348894939773) grid = shift(grid, 2, 4, 2.1961962516242517) grid = prod(grid, 15, [3, 5, 0, 1]) grid = sin(grid, 6, 11, -0.7697482296056479, 23.55348445076298) grid = sin(grid, 7, 7, 0.5492744322205282, 35.873568370773654) grid = transit(grid, 7, [13], [1.0]) grid = sin(grid, 3, 12, 6.470760426148978, -53.62090724330151) grid = sin(grid, 10, 10, 0.7827958631857042, -90.82177259964699) grid = transit(grid, 6, [8, 6, 5, 7, 4, 2], [0.39579476392315127, 0.3200094081197146, 0.06439062651950353, 0.03284446726347166, 0.04732779189481446, 0.13963294227934445]) grid = smooth_min(grid, 0, 13, 15) grid = smooth_max(grid, 5, 8, 4) grid = transit(grid, 10, [1], [1.0]) grid = transit(grid, 15, [15], [1.0]) grid = prod(grid, 13, [6, 3, 7]) grid = sin(grid, 0, 3, -3.561651028660104, 11.539889679902203) grid = power(grid, 10, 5, 0.12539493928522222) grid = power(grid, 0, 12, 2.5526439221510495) grid = sin(grid, 4, 10, -3.680544885171134, 30.633332441673872) grid = transit(grid, 11, [12, 6, 9], [0.1597221050818672, 0.523275926379751, 0.31700196853838186]) grid = sin(grid, 14, 7, 5.409920766787869, -58.09956716630187) grid = sin(grid, 2, 15, -2.5319898824657017, -45.01904701883333) grid = shift(grid, 5, 5, 3.1584260780059252) grid = transit(grid, 10, [9, 8], [0.7777441717493406, 0.22225582825065934]) grid = transit(grid, 3, [9], [1.0]) grid = transit(grid, 11, [2], [1.0]) #create color space res = np.zeros((SIZE, SIZE, 3)) res += shift_colors(grid[:,:,0:1].repeat(3, -1), [1.9355805467383669, 1.4677093499726706, 1.2451388311186942]) res = res / 1 res = ((res + 1) / 2 * 255).clip(0,255) #save results im = Image.fromarray(np.uint8(res)) im.save(os.path.basename(__file__) + '.png') #save layers img = np.zeros((SIZE * 4, SIZE * 4)) for j in range(GRID_CHANNELS): x = j % 4 y = j // 4 img[x*SIZE:(x + 1)*SIZE, y*SIZE:(y+1)*SIZE] = grid[:,:,j] img = (img + 1) * 127.5 im = Image.fromarray(np.uint8(img)) im.save(os.path.basename(__file__) + '_layers.png')
64.9
346
0.689908
ed510f09d28e1fdb65727ee044b934fd67984f9c
2,555
py
Python
onmt/bin/build_vocab.py
comydream/OpenNMT-py
2f3c810069ca03b752d9886782648e576b39a06d
[ "MIT" ]
1
2021-10-01T15:03:35.000Z
2021-10-01T15:03:35.000Z
onmt/bin/build_vocab.py
urialon/OpenNMT-py
bdca05a3fac8f864b21c86a8ad03c09895212e70
[ "MIT" ]
null
null
null
onmt/bin/build_vocab.py
urialon/OpenNMT-py
bdca05a3fac8f864b21c86a8ad03c09895212e70
[ "MIT" ]
null
null
null
#!/usr/bin/env python """Get vocabulary coutings from transformed corpora samples.""" from onmt.utils.logging import init_logger from onmt.utils.misc import set_random_seed, check_path from onmt.utils.parse import ArgumentParser from onmt.opts import dynamic_prepare_opts from onmt.inputters.corpus import build_vocab from onmt.transforms import make_transforms, get_transforms_cls def build_vocab_main(opts): """Apply transforms to samples of specified data and build vocab from it. Transforms that need vocab will be disabled in this. Built vocab is saved in plain text format as following and can be pass as `-src_vocab` (and `-tgt_vocab`) when training: ``` <tok_0>\t<count_0> <tok_1>\t<count_1> ``` """ ArgumentParser.validate_prepare_opts(opts, build_vocab_only=True) assert opts.n_sample == -1 or opts.n_sample > 1, \ f"Illegal argument n_sample={opts.n_sample}." logger = init_logger() set_random_seed(opts.seed, False) transforms_cls = get_transforms_cls(opts._all_transform) fields = None transforms = make_transforms(opts, transforms_cls, fields) logger.info(f"Counter vocab from {opts.n_sample} samples.") src_counter, tgt_counter, src_feats_counter = build_vocab( opts, transforms, n_sample=opts.n_sample) logger.info(f"Counters src:{len(src_counter)}") logger.info(f"Counters tgt:{len(tgt_counter)}") for feat_name, feat_counter in src_feats_counter.items(): logger.info(f"Counters {feat_name}:{len(feat_counter)}") if opts.share_vocab: src_counter += tgt_counter tgt_counter = src_counter logger.info(f"Counters after share:{len(src_counter)}") save_counter(src_counter, opts.src_vocab) else: save_counter(src_counter, opts.src_vocab) save_counter(tgt_counter, opts.tgt_vocab) for k, v in src_feats_counter.items(): save_counter(v, opts.src_feats_vocab[k]) if __name__ == '__main__': main()
33.618421
77
0.706849
ed51b4414d9639f63dd9eb5d177b6130aa8d5108
2,756
py
Python
schools3/ml/experiments/feat_pruning_experiment.py
dssg/mlpolicylab_fall20_schools3_public
f8eff4c56e9bada1eb81ddaca03686d7ef53c2c4
[ "MIT" ]
null
null
null
schools3/ml/experiments/feat_pruning_experiment.py
dssg/mlpolicylab_fall20_schools3_public
f8eff4c56e9bada1eb81ddaca03686d7ef53c2c4
[ "MIT" ]
null
null
null
schools3/ml/experiments/feat_pruning_experiment.py
dssg/mlpolicylab_fall20_schools3_public
f8eff4c56e9bada1eb81ddaca03686d7ef53c2c4
[ "MIT" ]
null
null
null
import numpy as np import pandas as pd from schools3.ml.experiments.models_experiment import ModelsExperiment from schools3.data.base.cohort import Cohort from schools3.config import main_config from schools3.config import global_config from schools3.data.datasets.dataset import Dataset from schools3.ml.experiments.feat_importances_experiment import FeatureImportancesExperiment from schools3.ml.experiments.single_dataset_experiment import SingleDatasetExperiment from schools3.ml.models.tfkeras_model import TFKerasModel from schools3.ml.models.sklearn_model import SklearnModel import schools3.config.ml.experiments.feat_pruning_experiment_config as config from schools3.config.data.datasets import dataset_config # an experiment that trains models with subsets of the features according to their permutation importance rank # like SingleDatasetExperiment, this works on a specific grade
43.746032
123
0.717707