messages.po 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803
  1. # Portuguese (Brazil) translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Adam Tauber <asciimoo@gmail.com>, 2017
  7. # C. E., 2020
  8. # C. E., 2018
  9. # Gabriel Nunes <gabriel.hkr@gmail.com>, 2017
  10. # Guimarães Mello <matheus.mello@disroot.org>, 2017
  11. # Neton Brício <fervelinux@gmail.com>, 2015
  12. # pizzaiolo, 2016
  13. # shizuka, 2018
  14. # Leonardo Colman <dev@leonardo.colman.com.br>, 2022.
  15. # Adriano Xavier <px.adriano@gmail.com>, 2022.
  16. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  17. # calb sepherus <calb.sepherus@protonmail.com>, 2022.
  18. # Yan Lyra <yanlyra3@gmail.com>, 2022.
  19. # zaioti <zaioti@tuta.io>, 2022.
  20. # Spectro <spectro@keemail.me>, 2023.
  21. # lhostfree951 <freeehost9191@gmail.com>, 2023.
  22. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  23. # Coccocoas_Helper <coccocoahelper@gmail.com>, 2023.
  24. # ETRB <codeberg-cm58mk@r.acmrb.uk>, 2023.
  25. # LeoLomardo <leoland771@gmail.com>, 2024.
  26. msgid ""
  27. msgstr ""
  28. "Project-Id-Version: searx\n"
  29. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  30. "POT-Creation-Date: 2024-02-25 14:00+0000\n"
  31. "PO-Revision-Date: 2024-02-23 07:08+0000\n"
  32. "Last-Translator: return42 <markus.heiser@darmarit.de>\n"
  33. "Language: pt_BR\n"
  34. "Language-Team: Portuguese (Brazil) "
  35. "<https://translate.codeberg.org/projects/searxng/searxng/pt_BR/>\n"
  36. "Plural-Forms: nplurals=2; plural=n > 1;\n"
  37. "MIME-Version: 1.0\n"
  38. "Content-Type: text/plain; charset=utf-8\n"
  39. "Content-Transfer-Encoding: 8bit\n"
  40. "Generated-By: Babel 2.14.0\n"
  41. #. CONSTANT_NAMES['NO_SUBGROUPING']
  42. #: searx/searxng.msg
  43. msgid "without further subgrouping"
  44. msgstr "sem mais subgrupos"
  45. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  46. #: searx/searxng.msg
  47. msgid "other"
  48. msgstr "outro"
  49. #. CATEGORY_NAMES['FILES']
  50. #: searx/searxng.msg
  51. msgid "files"
  52. msgstr "arquivos"
  53. #. CATEGORY_NAMES['GENERAL']
  54. #: searx/searxng.msg
  55. msgid "general"
  56. msgstr "geral"
  57. #. CATEGORY_NAMES['MUSIC']
  58. #: searx/searxng.msg
  59. msgid "music"
  60. msgstr "música"
  61. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  62. #: searx/searxng.msg
  63. msgid "social media"
  64. msgstr "redes sociais"
  65. #. CATEGORY_NAMES['IMAGES']
  66. #: searx/searxng.msg
  67. msgid "images"
  68. msgstr "imagens"
  69. #. CATEGORY_NAMES['VIDEOS']
  70. #: searx/searxng.msg
  71. msgid "videos"
  72. msgstr "vídeos"
  73. #. CATEGORY_NAMES['IT']
  74. #: searx/searxng.msg
  75. msgid "it"
  76. msgstr "TI"
  77. #. CATEGORY_NAMES['NEWS']
  78. #: searx/searxng.msg
  79. msgid "news"
  80. msgstr "notícias"
  81. #. CATEGORY_NAMES['MAP']
  82. #: searx/searxng.msg
  83. msgid "map"
  84. msgstr "mapas"
  85. #. CATEGORY_NAMES['ONIONS']
  86. #: searx/searxng.msg
  87. msgid "onions"
  88. msgstr "onions"
  89. #. CATEGORY_NAMES['SCIENCE']
  90. #: searx/searxng.msg
  91. msgid "science"
  92. msgstr "ciência"
  93. #. CATEGORY_GROUPS['APPS']
  94. #: searx/searxng.msg
  95. msgid "apps"
  96. msgstr "aplicativos"
  97. #. CATEGORY_GROUPS['DICTIONARIES']
  98. #: searx/searxng.msg
  99. msgid "dictionaries"
  100. msgstr "dicionários"
  101. #. CATEGORY_GROUPS['LYRICS']
  102. #: searx/searxng.msg
  103. msgid "lyrics"
  104. msgstr "letras"
  105. #. CATEGORY_GROUPS['PACKAGES']
  106. #: searx/searxng.msg
  107. msgid "packages"
  108. msgstr "pacotes"
  109. #. CATEGORY_GROUPS['Q_A']
  110. #: searx/searxng.msg
  111. msgid "q&a"
  112. msgstr "dúvidas"
  113. #. CATEGORY_GROUPS['REPOS']
  114. #: searx/searxng.msg
  115. msgid "repos"
  116. msgstr "repositórios"
  117. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  118. #: searx/searxng.msg
  119. msgid "software wikis"
  120. msgstr "wikis de software"
  121. #. CATEGORY_GROUPS['WEB']
  122. #: searx/searxng.msg
  123. msgid "web"
  124. msgstr "web"
  125. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  126. #: searx/searxng.msg
  127. msgid "scientific publications"
  128. msgstr "publicações científicas"
  129. #. STYLE_NAMES['AUTO']
  130. #: searx/searxng.msg
  131. msgid "auto"
  132. msgstr "automático"
  133. #. STYLE_NAMES['LIGHT']
  134. #: searx/searxng.msg
  135. msgid "light"
  136. msgstr "claro"
  137. #. STYLE_NAMES['DARK']
  138. #: searx/searxng.msg
  139. msgid "dark"
  140. msgstr "escuro"
  141. #. BRAND_CUSTOM_LINKS['UPTIME']
  142. #: searx/searxng.msg
  143. msgid "Uptime"
  144. msgstr "Tempo de excução"
  145. #. BRAND_CUSTOM_LINKS['ABOUT']
  146. #: searx/searxng.msg searx/templates/simple/base.html:49
  147. msgid "About"
  148. msgstr "Sobre"
  149. #: searx/webapp.py:332
  150. msgid "No item found"
  151. msgstr "Nenhum item encontrado"
  152. #: searx/engines/qwant.py:280
  153. #: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
  154. msgid "Source"
  155. msgstr "Fonte"
  156. #: searx/webapp.py:336
  157. msgid "Error loading the next page"
  158. msgstr "Erro ao carregar a próxima página"
  159. #: searx/webapp.py:483 searx/webapp.py:879
  160. msgid "Invalid settings, please edit your preferences"
  161. msgstr "Configurações inválidas, por favor, edite suas preferências"
  162. #: searx/webapp.py:499
  163. msgid "Invalid settings"
  164. msgstr "Configurações inválidas"
  165. #: searx/webapp.py:576 searx/webapp.py:658
  166. msgid "search error"
  167. msgstr "erro de busca"
  168. #: searx/webutils.py:34
  169. msgid "timeout"
  170. msgstr "tempo esgotado"
  171. #: searx/webutils.py:35
  172. msgid "parsing error"
  173. msgstr "erro de leitura"
  174. #: searx/webutils.py:36
  175. msgid "HTTP protocol error"
  176. msgstr "erro de protocolo HTTP"
  177. #: searx/webutils.py:37
  178. msgid "network error"
  179. msgstr "erro de rede"
  180. #: searx/webutils.py:38
  181. msgid "SSL error: certificate validation has failed"
  182. msgstr "Erro de SSL: validação de certificado falhou"
  183. #: searx/webutils.py:40
  184. msgid "unexpected crash"
  185. msgstr "falha inesperada"
  186. #: searx/webutils.py:47
  187. msgid "HTTP error"
  188. msgstr "erro HTTP"
  189. #: searx/webutils.py:48
  190. msgid "HTTP connection error"
  191. msgstr "erro de conexão HTTP"
  192. #: searx/webutils.py:54
  193. msgid "proxy error"
  194. msgstr "erro de proxy"
  195. #: searx/webutils.py:55
  196. msgid "CAPTCHA"
  197. msgstr "CAPTCHA"
  198. #: searx/webutils.py:56
  199. msgid "too many requests"
  200. msgstr "muitas solicitações"
  201. #: searx/webutils.py:57
  202. msgid "access denied"
  203. msgstr "acesso negado"
  204. #: searx/webutils.py:58
  205. msgid "server API error"
  206. msgstr "erro de API do servidor"
  207. #: searx/webutils.py:77
  208. msgid "Suspended"
  209. msgstr "Suspenso"
  210. #: searx/webutils.py:315
  211. msgid "{minutes} minute(s) ago"
  212. msgstr "{minutes} minuto(s) atrás"
  213. #: searx/webutils.py:316
  214. msgid "{hours} hour(s), {minutes} minute(s) ago"
  215. msgstr "{hours} hora(s), {minutes} minuto(s) atrás"
  216. #: searx/answerers/random/answerer.py:73
  217. msgid "Random value generator"
  218. msgstr "Gerador de valor aleatório"
  219. #: searx/answerers/random/answerer.py:74
  220. msgid "Generate different random values"
  221. msgstr "Gerar diferentes valores aleatórios"
  222. #: searx/answerers/statistics/answerer.py:47
  223. msgid "Statistics functions"
  224. msgstr "Funções estatísticas"
  225. #: searx/answerers/statistics/answerer.py:48
  226. msgid "Compute {functions} of the arguments"
  227. msgstr "Computar {functions} dos argumentos"
  228. #: searx/engines/openstreetmap.py:160
  229. msgid "Get directions"
  230. msgstr "Obter instruções"
  231. #: searx/engines/pdbe.py:96
  232. msgid "{title} (OBSOLETE)"
  233. msgstr "{title} (OBSOLETO)"
  234. #: searx/engines/pdbe.py:103
  235. msgid "This entry has been superseded by"
  236. msgstr "Esta entrada foi substituída por"
  237. #: searx/engines/qwant.py:282
  238. msgid "Channel"
  239. msgstr "Canal"
  240. #: searx/engines/radio_browser.py:104
  241. msgid "radio"
  242. msgstr "rádio"
  243. #: searx/engines/radio_browser.py:106
  244. msgid "bitrate"
  245. msgstr "fluxo de transferência de bits"
  246. #: searx/engines/radio_browser.py:107
  247. msgid "votes"
  248. msgstr "vótos"
  249. #: searx/engines/radio_browser.py:108
  250. msgid "clicks"
  251. msgstr "cliques"
  252. #: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
  253. msgid "Language"
  254. msgstr "Idioma"
  255. #: searx/engines/semantic_scholar.py:79
  256. msgid ""
  257. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  258. "{lastCitationVelocityYear}"
  259. msgstr ""
  260. "{numCitations} citações do ano {firstCitationVelocityYear} até "
  261. "{lastCitationVelocityYear}"
  262. #: searx/engines/tineye.py:40
  263. msgid ""
  264. "Could not read that image url. This may be due to an unsupported file "
  265. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  266. " WebP."
  267. msgstr ""
  268. "Não foi possível fazer a leitura desta URL. Isso pode ter ocorrido devido"
  269. " a um formato de arquivo não suportado. Apenas os seguintes tipos de "
  270. "imagem são suportados pelo TinEye: JPEG, PNG, GIF, BMP, TIFF ou WebP."
  271. #: searx/engines/tineye.py:46
  272. msgid ""
  273. "The image is too simple to find matches. TinEye requires a basic level of"
  274. " visual detail to successfully identify matches."
  275. msgstr ""
  276. "Esta imagem é simples demais para achar outras correspondências. TinEye "
  277. "necessita de um nível básico de detalhe visual para identificar as "
  278. "correspondências."
  279. #: searx/engines/tineye.py:52
  280. msgid "The image could not be downloaded."
  281. msgstr "Essa imagem não pôde ser baixada."
  282. #: searx/engines/wttr.py:101
  283. msgid "Morning"
  284. msgstr "manhã"
  285. #: searx/engines/wttr.py:101
  286. msgid "Noon"
  287. msgstr "Meio dia"
  288. #: searx/engines/wttr.py:101
  289. msgid "Evening"
  290. msgstr "Tarde"
  291. #: searx/engines/wttr.py:101
  292. msgid "Night"
  293. msgstr "Noite"
  294. #: searx/engines/zlibrary.py:130
  295. msgid "Book rating"
  296. msgstr "Avaliação de livro"
  297. #: searx/engines/zlibrary.py:131
  298. msgid "File quality"
  299. msgstr "Qualidade do arquivo"
  300. #: searx/plugins/hash_plugin.py:24
  301. msgid "Converts strings to different hash digests."
  302. msgstr "Converte as sequências em diferentes resultados de hash."
  303. #: searx/plugins/hash_plugin.py:52
  304. msgid "hash digest"
  305. msgstr "resultado de hash"
  306. #: searx/plugins/hostname_replace.py:9
  307. msgid "Hostname replace"
  308. msgstr "Substituir host"
  309. #: searx/plugins/hostname_replace.py:10
  310. msgid "Rewrite result hostnames or remove results based on the hostname"
  311. msgstr "Sobreescreve hosts dos resultados ou remove resultados baseado no host"
  312. #: searx/plugins/oa_doi_rewrite.py:9
  313. msgid "Open Access DOI rewrite"
  314. msgstr "Reescrita DOI de acesso aberto"
  315. #: searx/plugins/oa_doi_rewrite.py:10
  316. msgid ""
  317. "Avoid paywalls by redirecting to open-access versions of publications "
  318. "when available"
  319. msgstr ""
  320. "Evita \"paywalls\" ao redirecionar para versões de acesso livre de "
  321. "publicações, quando possível"
  322. #: searx/plugins/self_info.py:10
  323. msgid "Self Information"
  324. msgstr "Autoinformação"
  325. #: searx/plugins/self_info.py:11
  326. msgid ""
  327. "Displays your IP if the query is \"ip\" and your user agent if the query "
  328. "contains \"user agent\"."
  329. msgstr ""
  330. "Exibe o seu IP se a consulta contiver \"ip\" e seu agente de usuário, se "
  331. "a consulta contiver \"user agent\"."
  332. #: searx/plugins/tor_check.py:25
  333. msgid "Tor check plugin"
  334. msgstr "Plugin de verificação Tor"
  335. #: searx/plugins/tor_check.py:28
  336. msgid ""
  337. "This plugin checks if the address of the request is a Tor exit-node, and "
  338. "informs the user if it is; like check.torproject.org, but from SearXNG."
  339. msgstr ""
  340. "Este plugin verifica se o endereço do pedido vem de um nó de saída do Tor"
  341. " e informa ao usuário se sim; é semelhante ao check.torproject.org, mas "
  342. "para o SearXNG."
  343. #: searx/plugins/tor_check.py:62
  344. msgid ""
  345. "Could not download the list of Tor exit-nodes from: "
  346. "https://check.torproject.org/exit-addresses"
  347. msgstr ""
  348. "Não foi possível baixar a lista de nós de saída do Tor de: "
  349. "https://check.torproject.org/exit-addresses"
  350. #: searx/plugins/tor_check.py:78
  351. msgid ""
  352. "You are using Tor and it looks like you have this external IP address: "
  353. "{ip_address}"
  354. msgstr ""
  355. "Você está usando o Tor e parece que tem este endereço IP externo: "
  356. "{ip_address}"
  357. #: searx/plugins/tor_check.py:86
  358. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  359. msgstr "Você não está usando o Tor e tem este endereço IP externo: {ip_address}"
  360. #: searx/plugins/tracker_url_remover.py:29
  361. msgid "Tracker URL remover"
  362. msgstr "Removedor de rastreador da URL"
  363. #: searx/plugins/tracker_url_remover.py:30
  364. msgid "Remove trackers arguments from the returned URL"
  365. msgstr "Remover os argumentos de rastreio da URL recebida"
  366. #: searx/templates/simple/404.html:4
  367. msgid "Page not found"
  368. msgstr "Página não encontrada"
  369. #: searx/templates/simple/404.html:6
  370. #, python-format
  371. msgid "Go to %(search_page)s."
  372. msgstr "Ir a %(search_page)s."
  373. #: searx/templates/simple/404.html:6
  374. msgid "search page"
  375. msgstr "página de busca"
  376. #: searx/templates/simple/base.html:53
  377. msgid "Donate"
  378. msgstr "Doar"
  379. #: searx/templates/simple/base.html:57
  380. #: searx/templates/simple/preferences.html:156
  381. msgid "Preferences"
  382. msgstr "Preferências"
  383. #: searx/templates/simple/base.html:67
  384. msgid "Powered by"
  385. msgstr "Distribuído por"
  386. #: searx/templates/simple/base.html:67
  387. msgid "a privacy-respecting, open metasearch engine"
  388. msgstr "um mecanismo de metapesquisa aberto e que respeita a privacidade"
  389. #: searx/templates/simple/base.html:68
  390. #: searx/templates/simple/result_templates/packages.html:59
  391. msgid "Source code"
  392. msgstr "Código fonte"
  393. #: searx/templates/simple/base.html:69
  394. msgid "Issue tracker"
  395. msgstr "Rastreador de problemas"
  396. #: searx/templates/simple/base.html:70 searx/templates/simple/stats.html:18
  397. msgid "Engine stats"
  398. msgstr "Estatísticas de busca"
  399. #: searx/templates/simple/base.html:72
  400. msgid "Public instances"
  401. msgstr "Instâncias públicas"
  402. #: searx/templates/simple/base.html:75
  403. msgid "Privacy policy"
  404. msgstr "Política de Privacidade"
  405. #: searx/templates/simple/base.html:78
  406. msgid "Contact instance maintainer"
  407. msgstr "Contatar o responsável da instância"
  408. #: searx/templates/simple/categories.html:26
  409. msgid "Click on the magnifier to perform search"
  410. msgstr "Clique na lupa para realizar a busca"
  411. #: searx/templates/simple/macros.html:36
  412. msgid "Length"
  413. msgstr "Duração"
  414. #: searx/templates/simple/macros.html:37
  415. #: searx/templates/simple/result_templates/files.html:34
  416. #: searx/templates/simple/result_templates/images.html:18
  417. #: searx/templates/simple/result_templates/paper.html:6
  418. msgid "Author"
  419. msgstr "Autor"
  420. #: searx/templates/simple/macros.html:45
  421. msgid "cached"
  422. msgstr "em cache"
  423. #: searx/templates/simple/macros.html:45
  424. msgid "proxied"
  425. msgstr "por proxy"
  426. #: searx/templates/simple/new_issue.html:64
  427. msgid "Start submiting a new issue on GitHub"
  428. msgstr "Submeta um novo problema no Github"
  429. #: searx/templates/simple/new_issue.html:66
  430. msgid "Please check for existing bugs about this engine on GitHub"
  431. msgstr "Por favor, cheque bugs existentes sobre essa engine no GitHub"
  432. #: searx/templates/simple/new_issue.html:69
  433. msgid "I confirm there is no existing bug about the issue I encounter"
  434. msgstr ""
  435. "Eu confirmo que não há nenhum bug existente sobre o problema que eu "
  436. "encontrei"
  437. #: searx/templates/simple/new_issue.html:71
  438. msgid "If this is a public instance, please specify the URL in the bug report"
  439. msgstr ""
  440. "Se essa for uma instância pública, por favor, especifique a URL no "
  441. "relatório do bug"
  442. #: searx/templates/simple/new_issue.html:72
  443. msgid "Submit a new issue on Github including the above information"
  444. msgstr "Envie um novo problema no Github incluindo as informações acima"
  445. #: searx/templates/simple/preferences.html:65
  446. msgid "No HTTPS"
  447. msgstr "Sem HTTPS"
  448. #: searx/templates/simple/elements/engines_msg.html:18
  449. #: searx/templates/simple/preferences.html:69
  450. #: searx/templates/simple/preferences.html:70
  451. msgid "View error logs and submit a bug report"
  452. msgstr "Ver o registros de erros e enviar um relatório"
  453. #: searx/templates/simple/preferences.html:74
  454. msgid "!bang for this engine"
  455. msgstr "!bang para esse serviço"
  456. #: searx/templates/simple/preferences.html:80
  457. msgid "!bang for its categories"
  458. msgstr "!bang para essa categoria"
  459. #: searx/templates/simple/preferences.html:102
  460. #: searx/templates/simple/stats.html:64
  461. msgid "Median"
  462. msgstr "Mediana"
  463. #: searx/templates/simple/preferences.html:103
  464. #: searx/templates/simple/stats.html:70
  465. msgid "P80"
  466. msgstr "P80"
  467. #: searx/templates/simple/preferences.html:104
  468. #: searx/templates/simple/stats.html:76
  469. msgid "P95"
  470. msgstr "P95"
  471. #: searx/templates/simple/preferences.html:136
  472. msgid "Failed checker test(s): "
  473. msgstr "Teste(s) de verificador falhou: "
  474. #: searx/templates/simple/preferences.html:138
  475. msgid "Errors:"
  476. msgstr "Erros:"
  477. #: searx/templates/simple/preferences.html:162
  478. msgid "General"
  479. msgstr "Geral"
  480. #: searx/templates/simple/preferences.html:165
  481. msgid "Default categories"
  482. msgstr "Categorias padrão"
  483. #: searx/templates/simple/preferences.html:187
  484. msgid "User interface"
  485. msgstr "Interface de usuário"
  486. #: searx/templates/simple/preferences.html:208
  487. msgid "Privacy"
  488. msgstr "Privacidade"
  489. #: searx/templates/simple/preferences.html:221
  490. msgid "Engines"
  491. msgstr "Motores de pesquisa"
  492. #: searx/templates/simple/preferences.html:223
  493. msgid "Currently used search engines"
  494. msgstr "Serviço de busca em uso"
  495. #: searx/templates/simple/preferences.html:231
  496. msgid "Special Queries"
  497. msgstr "Consultas especiais"
  498. #: searx/templates/simple/preferences.html:237
  499. msgid "Cookies"
  500. msgstr "Cookies"
  501. #: searx/templates/simple/results.html:23
  502. msgid "Answers"
  503. msgstr "Respostas"
  504. #: searx/templates/simple/results.html:38
  505. msgid "Number of results"
  506. msgstr "Número de resultados"
  507. #: searx/templates/simple/results.html:44
  508. msgid "Info"
  509. msgstr "Informações"
  510. #: searx/templates/simple/results.html:73
  511. msgid "Try searching for:"
  512. msgstr "Tente pesquisar por:"
  513. #: searx/templates/simple/results.html:105
  514. msgid "Back to top"
  515. msgstr "de volta ao topo"
  516. #: searx/templates/simple/results.html:123
  517. msgid "Previous page"
  518. msgstr "Página anterior"
  519. #: searx/templates/simple/results.html:141
  520. msgid "Next page"
  521. msgstr "Próxima página"
  522. #: searx/templates/simple/search.html:3
  523. msgid "Display the front page"
  524. msgstr "Mostrar a página inicial"
  525. #: searx/templates/simple/search.html:9
  526. #: searx/templates/simple/simple_search.html:5
  527. msgid "Search for..."
  528. msgstr "Buscar por..."
  529. #: searx/templates/simple/search.html:10
  530. #: searx/templates/simple/simple_search.html:6
  531. msgid "clear"
  532. msgstr "limpar"
  533. #: searx/templates/simple/search.html:11
  534. #: searx/templates/simple/simple_search.html:7
  535. msgid "search"
  536. msgstr "buscar"
  537. #: searx/templates/simple/stats.html:21
  538. msgid "There is currently no data available. "
  539. msgstr "Atualmente, não há dados disponíveis. "
  540. #: searx/templates/simple/preferences/engines.html:18
  541. #: searx/templates/simple/stats.html:25
  542. msgid "Engine name"
  543. msgstr "Nome do motor"
  544. #: searx/templates/simple/stats.html:26
  545. msgid "Scores"
  546. msgstr "Pontuações"
  547. #: searx/templates/simple/stats.html:27
  548. msgid "Result count"
  549. msgstr "Contagem de resultados"
  550. #: searx/templates/simple/preferences/engines.html:25
  551. #: searx/templates/simple/stats.html:28
  552. msgid "Response time"
  553. msgstr "Tempo de resposta"
  554. #: searx/templates/simple/preferences/engines.html:29
  555. #: searx/templates/simple/stats.html:29
  556. msgid "Reliability"
  557. msgstr "Consistência"
  558. #: searx/templates/simple/stats.html:59
  559. msgid "Total"
  560. msgstr "Total"
  561. #: searx/templates/simple/stats.html:60
  562. msgid "HTTP"
  563. msgstr "HTTP"
  564. #: searx/templates/simple/stats.html:61
  565. msgid "Processing"
  566. msgstr "Processando"
  567. #: searx/templates/simple/stats.html:99
  568. msgid "Warnings"
  569. msgstr "Avisos"
  570. #: searx/templates/simple/stats.html:99
  571. msgid "Errors and exceptions"
  572. msgstr "Erros e exceções"
  573. #: searx/templates/simple/stats.html:105
  574. msgid "Exception"
  575. msgstr "Exceção"
  576. #: searx/templates/simple/stats.html:107
  577. msgid "Message"
  578. msgstr "Mensagem"
  579. #: searx/templates/simple/stats.html:109
  580. msgid "Percentage"
  581. msgstr "Porcentagem"
  582. #: searx/templates/simple/stats.html:111
  583. msgid "Parameter"
  584. msgstr "Parâmetro"
  585. #: searx/templates/simple/result_templates/files.html:36
  586. #: searx/templates/simple/stats.html:119
  587. msgid "Filename"
  588. msgstr "Nome do arquivo"
  589. #: searx/templates/simple/stats.html:120
  590. msgid "Function"
  591. msgstr "Função"
  592. #: searx/templates/simple/stats.html:121
  593. msgid "Code"
  594. msgstr "Código"
  595. #: searx/templates/simple/stats.html:128
  596. msgid "Checker"
  597. msgstr "Verificador"
  598. #: searx/templates/simple/stats.html:131
  599. msgid "Failed test"
  600. msgstr "O teste falhou"
  601. #: searx/templates/simple/stats.html:132
  602. msgid "Comment(s)"
  603. msgstr "Comentário(s)"
  604. #: searx/templates/simple/elements/apis.html:3
  605. msgid "Download results"
  606. msgstr "Resultados de download"
  607. #: searx/templates/simple/elements/engines_msg.html:7
  608. msgid "Messages from the search engines"
  609. msgstr "Mensagens dos sítios web de busca"
  610. #: searx/templates/simple/elements/engines_msg.html:12
  611. msgid "Error!"
  612. msgstr "Erro!"
  613. #: searx/templates/simple/elements/engines_msg.html:13
  614. msgid "Engines cannot retrieve results"
  615. msgstr "Os motores de busca não conseguiram obter resultados"
  616. #: searx/templates/simple/elements/search_url.html:3
  617. msgid "Search URL"
  618. msgstr "Buscar URL"
  619. #: searx/templates/simple/elements/search_url.html:4
  620. #: searx/templates/simple/preferences/cookies.html:54
  621. msgid "Copied"
  622. msgstr "Copiado"
  623. #: searx/templates/simple/elements/search_url.html:4
  624. #: searx/templates/simple/preferences/cookies.html:54
  625. msgid "Copy"
  626. msgstr "Copiar"
  627. #: searx/templates/simple/elements/suggestions.html:3
  628. msgid "Suggestions"
  629. msgstr "Sugestões"
  630. #: searx/templates/simple/filters/languages.html:1
  631. #: searx/templates/simple/preferences/language.html:2
  632. msgid "Search language"
  633. msgstr "Idioma de busca"
  634. #: searx/templates/simple/filters/languages.html:2
  635. #: searx/templates/simple/preferences/language.html:7
  636. msgid "Default language"
  637. msgstr "Idioma padrão"
  638. #: searx/templates/simple/filters/languages.html:4
  639. #: searx/templates/simple/preferences/language.html:11
  640. msgid "Auto-detect"
  641. msgstr "Auto-detectar"
  642. #: searx/templates/simple/filters/safesearch.html:1
  643. #: searx/templates/simple/filters/safesearch.html:2
  644. #: searx/templates/simple/filters/safesearch.html:3
  645. #: searx/templates/simple/filters/safesearch.html:4
  646. #: searx/templates/simple/preferences/engines.html:21
  647. #: searx/templates/simple/preferences/safesearch.html:2
  648. msgid "SafeSearch"
  649. msgstr "Busca Segura"
  650. #: searx/templates/simple/filters/safesearch.html:2
  651. #: searx/templates/simple/preferences/safesearch.html:7
  652. msgid "Strict"
  653. msgstr "Rigoroso"
  654. #: searx/templates/simple/filters/safesearch.html:3
  655. #: searx/templates/simple/preferences/safesearch.html:11
  656. msgid "Moderate"
  657. msgstr "Moderado"
  658. #: searx/templates/simple/filters/safesearch.html:4
  659. #: searx/templates/simple/preferences/safesearch.html:15
  660. msgid "None"
  661. msgstr "Nenhum"
  662. #: searx/templates/simple/filters/time_range.html:1
  663. #: searx/templates/simple/preferences/engines.html:22
  664. msgid "Time range"
  665. msgstr "Intervalo de tempo"
  666. #: searx/templates/simple/filters/time_range.html:3
  667. msgid "Anytime"
  668. msgstr "A qualquer momento"
  669. #: searx/templates/simple/filters/time_range.html:6
  670. msgid "Last day"
  671. msgstr "Ontem"
  672. #: searx/templates/simple/filters/time_range.html:9
  673. msgid "Last week"
  674. msgstr "Semana passada"
  675. #: searx/templates/simple/filters/time_range.html:12
  676. msgid "Last month"
  677. msgstr "Mês passado"
  678. #: searx/templates/simple/filters/time_range.html:15
  679. msgid "Last year"
  680. msgstr "Ano passado"
  681. #: searx/templates/simple/messages/no_cookies.html:3
  682. msgid "Information!"
  683. msgstr "Informação!"
  684. #: searx/templates/simple/messages/no_cookies.html:4
  685. msgid "currently, there are no cookies defined."
  686. msgstr "atualmente, não há cookies definidos."
  687. #: searx/templates/simple/messages/no_results.html:6
  688. msgid "Sorry!"
  689. msgstr "Desculpe!"
  690. #: searx/templates/simple/messages/no_results.html:12
  691. msgid "No results were found. You can try to:"
  692. msgstr "Nenhum resultado foi encontrado. Você pode tentar:"
  693. #: searx/templates/simple/messages/no_results.html:14
  694. msgid "There are no more results. You can try to:"
  695. msgstr "Sem mais resultados, você pode tentar:"
  696. #: searx/templates/simple/messages/no_results.html:19
  697. msgid "Refresh the page."
  698. msgstr "Atualize a página."
  699. #: searx/templates/simple/messages/no_results.html:20
  700. msgid "Search for another query or select another category (above)."
  701. msgstr "Pesquise outro termo ou selecione uma categoria diferente (acima)."
  702. #: searx/templates/simple/messages/no_results.html:21
  703. msgid "Change the search engine used in the preferences:"
  704. msgstr "Modifique o mecanismo de busca utilizado nas preferências:"
  705. #: searx/templates/simple/messages/no_results.html:22
  706. msgid "Switch to another instance:"
  707. msgstr "Mude para outra instância:"
  708. #: searx/templates/simple/messages/no_results.html:24
  709. msgid "Search for another query or select another category."
  710. msgstr "Pesquise outro termo ou selecione uma categoria diferente."
  711. #: searx/templates/simple/messages/no_results.html:25
  712. msgid "Go back to the previous page using the previous page button."
  713. msgstr "Volte para a página anterior usando o botão 'página anterior'."
  714. #: searx/templates/simple/preferences/answerers.html:4
  715. #: searx/templates/simple/preferences/engines.html:17
  716. msgid "Allow"
  717. msgstr "Permitir"
  718. #: searx/templates/simple/preferences/answerers.html:5
  719. msgid "Keywords"
  720. msgstr "Palavras-chave"
  721. #: searx/templates/simple/preferences/answerers.html:6
  722. #: searx/templates/simple/result_templates/packages.html:7
  723. msgid "Name"
  724. msgstr "Nome"
  725. #: searx/templates/simple/preferences/answerers.html:7
  726. msgid "Description"
  727. msgstr "Descrição"
  728. #: searx/templates/simple/preferences/answerers.html:8
  729. msgid "Examples"
  730. msgstr "Exemplos"
  731. #: searx/templates/simple/preferences/answerers.html:13
  732. msgid "This is the list of SearXNG's instant answering modules."
  733. msgstr "Esta é a lista de módulos de resposta instantânea do SearXNG."
  734. #: searx/templates/simple/preferences/answerers.html:29
  735. msgid "This is the list of plugins."
  736. msgstr "Esta é a lista de plugins."
  737. #: searx/templates/simple/preferences/autocomplete.html:2
  738. msgid "Autocomplete"
  739. msgstr "Autocompletar"
  740. #: searx/templates/simple/preferences/autocomplete.html:15
  741. msgid "Find stuff as you type"
  742. msgstr "Exibir sugestões enquanto você digita"
  743. #: searx/templates/simple/preferences/center_alignment.html:2
  744. msgid "Center Alignment"
  745. msgstr "Alinhamento central"
  746. #: searx/templates/simple/preferences/center_alignment.html:14
  747. msgid "Displays results in the center of the page (Oscar layout)."
  748. msgstr "Exibe os resultados no centro da página (layout Oscar)."
  749. #: searx/templates/simple/preferences/cookies.html:2
  750. msgid ""
  751. "This is the list of cookies and their values SearXNG is storing on your "
  752. "computer."
  753. msgstr ""
  754. "Esta é a lista de cookies e seus valores que o SearXNG armazena em seu "
  755. "computador."
  756. #: searx/templates/simple/preferences/cookies.html:3
  757. msgid "With that list, you can assess SearXNG transparency."
  758. msgstr "Com essa lista, você pode avaliar a transparência do SearXNG."
  759. #: searx/templates/simple/preferences/cookies.html:9
  760. msgid "Cookie name"
  761. msgstr "Nome do cookie"
  762. #: searx/templates/simple/preferences/cookies.html:10
  763. msgid "Value"
  764. msgstr "Valor"
  765. #: searx/templates/simple/preferences/cookies.html:23
  766. msgid "Search URL of the currently saved preferences"
  767. msgstr "A URL de Pesquisa das configurações atuais salvas"
  768. #: searx/templates/simple/preferences/cookies.html:32
  769. msgid ""
  770. "Note: specifying custom settings in the search URL can reduce privacy by "
  771. "leaking data to the clicked result sites."
  772. msgstr ""
  773. "Observe: ao especificar configurações personalizadas na URL de pesquisa "
  774. "você pode reduzir a privacidade vazando dados para os sites clicados nos "
  775. "resultados."
  776. #: searx/templates/simple/preferences/cookies.html:35
  777. msgid "URL to restore your preferences in another browser"
  778. msgstr "URL para restaurar suas preferências em outro navegador"
  779. #: searx/templates/simple/preferences/cookies.html:43
  780. msgid ""
  781. "Specifying custom settings in the preferences URL can be used to sync "
  782. "preferences across devices."
  783. msgstr ""
  784. "Especificar preferências customizadas na URL pode ser usado para "
  785. "sincronizar preferências em outros dispositivos."
  786. #: searx/templates/simple/preferences/cookies.html:46
  787. msgid "Copy preferences hash"
  788. msgstr "Copiar hash de preferências"
  789. #: searx/templates/simple/preferences/cookies.html:57
  790. msgid "Insert copied preferences hash (without URL) to restore"
  791. msgstr "Insira hash de preferência copiado (sem URL) para restaurar"
  792. #: searx/templates/simple/preferences/cookies.html:59
  793. msgid "Preferences hash"
  794. msgstr "Hash's de preferência"
  795. #: searx/templates/simple/preferences/doi_resolver.html:2
  796. msgid "Open Access DOI resolver"
  797. msgstr "Resolvedor DOI de Acesso Aberto"
  798. #: searx/templates/simple/preferences/doi_resolver.html:14
  799. msgid "Select service used by DOI rewrite"
  800. msgstr "Selecione o serviço utilizado pelo DOI rewrite"
  801. #: searx/templates/simple/preferences/engines.html:9
  802. msgid ""
  803. "This tab does not exists in the user interface, but you can search in "
  804. "these engines by its !bangs."
  805. msgstr ""
  806. "Essa aba não existe na interface de usuário, mas você pode pesquisar "
  807. "nessas ferramentas/motores pelos seus !bangs."
  808. #: searx/templates/simple/preferences/engines.html:19
  809. msgid "!bang"
  810. msgstr "!bang"
  811. #: searx/templates/simple/preferences/engines.html:20
  812. msgid "Supports selected language"
  813. msgstr "Suporta o idioma selecionado"
  814. #: searx/templates/simple/preferences/engines.html:23
  815. msgid "Weight"
  816. msgstr "Peso"
  817. #: searx/templates/simple/preferences/engines.html:27
  818. msgid "Max time"
  819. msgstr "Tempo máximo"
  820. #: searx/templates/simple/preferences/footer.html:2
  821. msgid ""
  822. "These settings are stored in your cookies, this allows us not to store "
  823. "this data about you."
  824. msgstr ""
  825. "Essas configurações são armazenadas em seus cookies, nos não armazenamos "
  826. "nenhum dado a seu respeito."
  827. #: searx/templates/simple/preferences/footer.html:3
  828. msgid ""
  829. "These cookies serve your sole convenience, we don't use these cookies to "
  830. "track you."
  831. msgstr ""
  832. "Estes cookies servem ao seu único propósito, nós não usamos esses cookies"
  833. " para rastreá-lo."
  834. #: searx/templates/simple/preferences/footer.html:6
  835. msgid "Save"
  836. msgstr "Salvar"
  837. #: searx/templates/simple/preferences/footer.html:9
  838. msgid "Reset defaults"
  839. msgstr "Redefinir configurações"
  840. #: searx/templates/simple/preferences/footer.html:13
  841. msgid "Back"
  842. msgstr "Voltar"
  843. #: searx/templates/simple/preferences/hotkeys.html:2
  844. msgid "Hotkeys"
  845. msgstr "Atalhos"
  846. #: searx/templates/simple/preferences/hotkeys.html:13
  847. msgid "Vim-like"
  848. msgstr "Estilo-Vim"
  849. #: searx/templates/simple/preferences/hotkeys.html:18
  850. msgid ""
  851. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  852. "key on main or result page to get help."
  853. msgstr ""
  854. "Navegue os resultados de busca com atalhos (JavaScript é necessário). "
  855. "Pressione a tecla \"h\" na página principal ou de resultados para obter "
  856. "ajuda."
  857. #: searx/templates/simple/preferences/image_proxy.html:2
  858. msgid "Image proxy"
  859. msgstr "Proxy de imagem"
  860. #: searx/templates/simple/preferences/image_proxy.html:14
  861. msgid "Proxying image results through SearXNG"
  862. msgstr "Usar proxy para resultados da imagem no SearXNG"
  863. #: searx/templates/simple/preferences/infinite_scroll.html:2
  864. msgid "Infinite scroll"
  865. msgstr "Rolagem infinita"
  866. #: searx/templates/simple/preferences/infinite_scroll.html:14
  867. msgid "Automatically load next page when scrolling to bottom of current page"
  868. msgstr ""
  869. "Automaticamente carregar a próxima página ao rolar até o fim da página "
  870. "atual"
  871. #: searx/templates/simple/preferences/language.html:24
  872. msgid "What language do you prefer for search?"
  873. msgstr "Que idioma você prefere para a busca?"
  874. #: searx/templates/simple/preferences/language.html:25
  875. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  876. msgstr ""
  877. "Escolha Auto-detect para permitir que o SearXNG detecte automaticamente o"
  878. " idioma da sua consulta."
  879. #: searx/templates/simple/preferences/method.html:2
  880. msgid "HTTP Method"
  881. msgstr "Método HTTP"
  882. #: searx/templates/simple/preferences/method.html:14
  883. msgid "Change how forms are submitted"
  884. msgstr "Mude como os formulários são submetidos"
  885. #: searx/templates/simple/preferences/query_in_title.html:2
  886. msgid "Query in the page's title"
  887. msgstr "Consultar no título da página"
  888. #: searx/templates/simple/preferences/query_in_title.html:14
  889. msgid ""
  890. "When enabled, the result page's title contains your query. Your browser "
  891. "can record this title"
  892. msgstr ""
  893. "Quando ativado, o título da página de resultados conterá sua consulta. "
  894. "Seu navegador pode registrar este título"
  895. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  896. msgid "Results on new tabs"
  897. msgstr "Resultados em novas abas"
  898. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  899. msgid "Open result links on new browser tabs"
  900. msgstr "Abrir resultados em novas abas do navegador"
  901. #: searx/templates/simple/preferences/safesearch.html:20
  902. msgid "Filter content"
  903. msgstr "Filtrar conteúdo"
  904. #: searx/templates/simple/preferences/search_on_category_select.html:2
  905. msgid "Search on category select"
  906. msgstr "Pesquisar na categoria selecionada"
  907. #: searx/templates/simple/preferences/search_on_category_select.html:14
  908. msgid ""
  909. "Perform search immediately if a category selected. Disable to select "
  910. "multiple categories"
  911. msgstr ""
  912. "Faça a busca imediatamente se existir uma categoria selecionada. "
  913. "Desabilite para selecionar múltiplas categorias"
  914. #: searx/templates/simple/preferences/theme.html:2
  915. msgid "Theme"
  916. msgstr "Tema"
  917. #: searx/templates/simple/preferences/theme.html:14
  918. msgid "Change SearXNG layout"
  919. msgstr "Mudar a interface do SearXNG"
  920. #: searx/templates/simple/preferences/theme.html:19
  921. msgid "Theme style"
  922. msgstr "Estilo do tema"
  923. #: searx/templates/simple/preferences/theme.html:31
  924. msgid "Choose auto to follow your browser settings"
  925. msgstr "Escolha auto para seguir as configurações do seu navegador"
  926. #: searx/templates/simple/preferences/tokens.html:2
  927. msgid "Engine tokens"
  928. msgstr "Tokens de busca"
  929. #: searx/templates/simple/preferences/tokens.html:9
  930. msgid "Access tokens for private engines"
  931. msgstr "Acesso a tokens para buscadores privados"
  932. #: searx/templates/simple/preferences/ui_locale.html:2
  933. msgid "Interface language"
  934. msgstr "Idioma da interface"
  935. #: searx/templates/simple/preferences/ui_locale.html:14
  936. msgid "Change the language of the layout"
  937. msgstr "Alterar o idioma da interface"
  938. #: searx/templates/simple/result_templates/code.html:13
  939. msgid "repo"
  940. msgstr "repositórios"
  941. #: searx/templates/simple/result_templates/default.html:6
  942. #: searx/templates/simple/result_templates/files.html:8
  943. #: searx/templates/simple/result_templates/files.html:11
  944. msgid "show media"
  945. msgstr "exibir mídia"
  946. #: searx/templates/simple/result_templates/default.html:6
  947. #: searx/templates/simple/result_templates/files.html:8
  948. msgid "hide media"
  949. msgstr "ocultar mídia"
  950. #: searx/templates/simple/result_templates/default.html:14
  951. #: searx/templates/simple/result_templates/videos.html:14
  952. msgid "This site did not provide any description."
  953. msgstr "Esse site não disponibilizou uma descrição."
  954. #: searx/templates/simple/result_templates/files.html:38
  955. #: searx/templates/simple/result_templates/torrent.html:11
  956. msgid "Filesize"
  957. msgstr "Tamanho do arquivo"
  958. #: searx/templates/simple/result_templates/files.html:39
  959. #: searx/templates/simple/result_templates/torrent.html:12
  960. msgid "Bytes"
  961. msgstr "Bytes"
  962. #: searx/templates/simple/result_templates/files.html:40
  963. #: searx/templates/simple/result_templates/torrent.html:13
  964. msgid "kiB"
  965. msgstr "kiB"
  966. #: searx/templates/simple/result_templates/files.html:41
  967. #: searx/templates/simple/result_templates/torrent.html:14
  968. msgid "MiB"
  969. msgstr "MiB"
  970. #: searx/templates/simple/result_templates/files.html:42
  971. #: searx/templates/simple/result_templates/torrent.html:15
  972. msgid "GiB"
  973. msgstr "GiB"
  974. #: searx/templates/simple/result_templates/files.html:43
  975. #: searx/templates/simple/result_templates/torrent.html:16
  976. msgid "TiB"
  977. msgstr "TiB"
  978. #: searx/templates/simple/result_templates/files.html:47
  979. msgid "Date"
  980. msgstr "Data"
  981. #: searx/templates/simple/result_templates/files.html:49
  982. #: searx/templates/simple/result_templates/paper.html:24
  983. msgid "Type"
  984. msgstr "Tipo"
  985. #: searx/templates/simple/result_templates/images.html:19
  986. msgid "Format"
  987. msgstr "Formato"
  988. #: searx/templates/simple/result_templates/images.html:21
  989. msgid "Engine"
  990. msgstr "Motor de busca"
  991. #: searx/templates/simple/result_templates/images.html:22
  992. msgid "View source"
  993. msgstr "Ver código-fonte"
  994. #: searx/templates/simple/result_templates/map.html:12
  995. msgid "address"
  996. msgstr "endereço"
  997. #: searx/templates/simple/result_templates/map.html:43
  998. msgid "show map"
  999. msgstr "exibir mapas"
  1000. #: searx/templates/simple/result_templates/map.html:43
  1001. msgid "hide map"
  1002. msgstr "ocultar mapas"
  1003. #: searx/templates/simple/result_templates/packages.html:12
  1004. msgid "Version"
  1005. msgstr ""
  1006. #: searx/templates/simple/result_templates/packages.html:18
  1007. msgid "Maintainer"
  1008. msgstr ""
  1009. #: searx/templates/simple/result_templates/packages.html:24
  1010. msgid "Updated at"
  1011. msgstr ""
  1012. #: searx/templates/simple/result_templates/packages.html:30
  1013. #: searx/templates/simple/result_templates/paper.html:25
  1014. msgid "Tags"
  1015. msgstr "Tags"
  1016. #: searx/templates/simple/result_templates/packages.html:36
  1017. msgid "Popularity"
  1018. msgstr ""
  1019. #: searx/templates/simple/result_templates/packages.html:42
  1020. msgid "License"
  1021. msgstr ""
  1022. #: searx/templates/simple/result_templates/packages.html:52
  1023. msgid "Project"
  1024. msgstr ""
  1025. #: searx/templates/simple/result_templates/packages.html:55
  1026. msgid "Project homepage"
  1027. msgstr ""
  1028. #: searx/templates/simple/result_templates/paper.html:5
  1029. msgid "Published date"
  1030. msgstr "Data de publicação"
  1031. #: searx/templates/simple/result_templates/paper.html:9
  1032. msgid "Journal"
  1033. msgstr "Jornal"
  1034. #: searx/templates/simple/result_templates/paper.html:22
  1035. msgid "Editor"
  1036. msgstr "Editor"
  1037. #: searx/templates/simple/result_templates/paper.html:23
  1038. msgid "Publisher"
  1039. msgstr "Editor"
  1040. #: searx/templates/simple/result_templates/paper.html:26
  1041. msgid "DOI"
  1042. msgstr "IOD"
  1043. #: searx/templates/simple/result_templates/paper.html:27
  1044. msgid "ISSN"
  1045. msgstr "NSPI"
  1046. #: searx/templates/simple/result_templates/paper.html:28
  1047. msgid "ISBN"
  1048. msgstr "NLPI"
  1049. #: searx/templates/simple/result_templates/paper.html:33
  1050. msgid "PDF"
  1051. msgstr "PDF"
  1052. #: searx/templates/simple/result_templates/paper.html:34
  1053. msgid "HTML"
  1054. msgstr "HTML"
  1055. #: searx/templates/simple/result_templates/torrent.html:6
  1056. msgid "magnet link"
  1057. msgstr "link magnético"
  1058. #: searx/templates/simple/result_templates/torrent.html:7
  1059. msgid "torrent file"
  1060. msgstr "arquivo torrent"
  1061. #: searx/templates/simple/result_templates/torrent.html:9
  1062. msgid "Seeder"
  1063. msgstr "Semeador"
  1064. #: searx/templates/simple/result_templates/torrent.html:9
  1065. msgid "Leecher"
  1066. msgstr "Leecher"
  1067. #: searx/templates/simple/result_templates/torrent.html:20
  1068. msgid "Number of Files"
  1069. msgstr "Número de Arquivos"
  1070. #: searx/templates/simple/result_templates/videos.html:6
  1071. msgid "show video"
  1072. msgstr "exibir vídeo"
  1073. #: searx/templates/simple/result_templates/videos.html:6
  1074. msgid "hide video"
  1075. msgstr "ocultar vídeo"
  1076. #~ msgid "Engine time (sec)"
  1077. #~ msgstr "Tempo do motor (segundos)"
  1078. #~ msgid "Page loads (sec)"
  1079. #~ msgstr "Carregamento da página (sec)"
  1080. #~ msgid "Errors"
  1081. #~ msgstr "Erros"
  1082. #~ msgid "CAPTCHA required"
  1083. #~ msgstr "CAPTCHA requerido"
  1084. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1085. #~ msgstr "Redirecionar conexões HTTP para HTTPS, se possível"
  1086. #~ msgid ""
  1087. #~ "Results are opened in the same "
  1088. #~ "window by default. This plugin "
  1089. #~ "overwrites the default behaviour to open"
  1090. #~ " links on new tabs/windows. (JavaScript "
  1091. #~ "required)"
  1092. #~ msgstr ""
  1093. #~ "Os resultados são abertos na mesma "
  1094. #~ "janela por padrão. Este complemento muda"
  1095. #~ " o comportamento padrão ao abrir "
  1096. #~ "links em novas abas/janelas (JavaScript "
  1097. #~ "necessário)."
  1098. #~ msgid "Color"
  1099. #~ msgstr "Cor"
  1100. #~ msgid "Blue (default)"
  1101. #~ msgstr "Azul (padrão)"
  1102. #~ msgid "Violet"
  1103. #~ msgstr "Violeta"
  1104. #~ msgid "Green"
  1105. #~ msgstr "Verde"
  1106. #~ msgid "Cyan"
  1107. #~ msgstr "Ciano"
  1108. #~ msgid "Orange"
  1109. #~ msgstr "Laranja"
  1110. #~ msgid "Red"
  1111. #~ msgstr "Vermelho"
  1112. #~ msgid "Category"
  1113. #~ msgstr "Categoria"
  1114. #~ msgid "Block"
  1115. #~ msgstr "Bloqueado"
  1116. #~ msgid "original context"
  1117. #~ msgstr "Contexto original"
  1118. #~ msgid "Plugins"
  1119. #~ msgstr "Complementos"
  1120. #~ msgid "Answerers"
  1121. #~ msgstr "Operadores de Resposta"
  1122. #~ msgid "Avg. time"
  1123. #~ msgstr "Tempo médio"
  1124. #~ msgid "show details"
  1125. #~ msgstr "Exibir detalhes"
  1126. #~ msgid "hide details"
  1127. #~ msgstr "ocultar detalhes"
  1128. #~ msgid "Load more..."
  1129. #~ msgstr "Mostrar mais..."
  1130. #~ msgid "Loading..."
  1131. #~ msgstr "Carregando..."
  1132. #~ msgid "Change searx layout"
  1133. #~ msgstr "Alterar interface do searx"
  1134. #~ msgid "Proxying image results through searx"
  1135. #~ msgstr "Usar proxy para resultado de imagens exibidas através do searx"
  1136. #~ msgid "This is the list of searx's instant answering modules."
  1137. #~ msgstr "Esta é a lista do módulos de resposta instantânea do searx."
  1138. #~ msgid ""
  1139. #~ "This is the list of cookies and"
  1140. #~ " their values searx is storing on "
  1141. #~ "your computer."
  1142. #~ msgstr ""
  1143. #~ "Esta é a lista de cookies que "
  1144. #~ "o searx está armazenando em seu "
  1145. #~ "computador."
  1146. #~ msgid "With that list, you can assess searx transparency."
  1147. #~ msgstr "Com essa lista, você pode avaliar a transparência do searx."
  1148. #~ msgid "It look like you are using searx first time."
  1149. #~ msgstr "Parece que você está usando o searx pela primeira vez."
  1150. #~ msgid "Please, try again later or find another searx instance."
  1151. #~ msgstr ""
  1152. #~ "Por favor, tente novamente mais tarde"
  1153. #~ " ou procure outra instância do searx."
  1154. #~ msgid "Themes"
  1155. #~ msgstr "Temas"
  1156. #~ msgid "Reliablity"
  1157. #~ msgstr ""
  1158. #~ msgid ""
  1159. #~ "When enabled, the result page's title"
  1160. #~ " contains your query. Your browser "
  1161. #~ "can record this title."
  1162. #~ msgstr ""
  1163. #~ msgid "Method"
  1164. #~ msgstr "Método"
  1165. #~ msgid ""
  1166. #~ "This tab does not show up for "
  1167. #~ "search results but you can search "
  1168. #~ "the engines listed here via bangs."
  1169. #~ msgstr ""
  1170. #~ msgid "Advanced settings"
  1171. #~ msgstr "Configurações avançadas"
  1172. #~ msgid "Close"
  1173. #~ msgstr "Fechar"
  1174. #~ msgid "Language"
  1175. #~ msgstr "Idioma"
  1176. #~ msgid "broken"
  1177. #~ msgstr "quebrado"
  1178. #~ msgid "supported"
  1179. #~ msgstr "suportado"
  1180. #~ msgid "not supported"
  1181. #~ msgstr "não suportado"
  1182. #~ msgid "about"
  1183. #~ msgstr "sobre"
  1184. #~ msgid "Avg."
  1185. #~ msgstr "Média"
  1186. #~ msgid "User Interface"
  1187. #~ msgstr "Interface do usuário"
  1188. #~ msgid "Choose style for this theme"
  1189. #~ msgstr "Escolher um estilo para este tema"
  1190. #~ msgid "Style"
  1191. #~ msgstr "Estilo"
  1192. #~ msgid "Show advanced settings"
  1193. #~ msgstr "Mostrar configurações avançadas"
  1194. #~ msgid "Show advanced settings panel in the home page by default"
  1195. #~ msgstr ""
  1196. #~ "Mostrar por padrão o painel de "
  1197. #~ "configurações avançadas na página inicial"
  1198. #~ msgid "Allow all"
  1199. #~ msgstr "Permitir tudo"
  1200. #~ msgid "Disable all"
  1201. #~ msgstr "Desativar tudo"
  1202. #~ msgid "Selected language"
  1203. #~ msgstr "Idioma selecionado"
  1204. #~ msgid "Query"
  1205. #~ msgstr "Consulta"
  1206. #~ msgid "save"
  1207. #~ msgstr "salvar"
  1208. #~ msgid "back"
  1209. #~ msgstr "voltar"
  1210. #~ msgid "Links"
  1211. #~ msgstr "Links"
  1212. #~ msgid "RSS subscription"
  1213. #~ msgstr "Assinatura RSS"
  1214. #~ msgid "Search results"
  1215. #~ msgstr "Procurar resultados"
  1216. #~ msgid "next page"
  1217. #~ msgstr "próxima página"
  1218. #~ msgid "previous page"
  1219. #~ msgstr "página anterior"
  1220. #~ msgid "Start search"
  1221. #~ msgstr "Iniciar busca"
  1222. #~ msgid "Clear search"
  1223. #~ msgstr "Limpar busca"
  1224. #~ msgid "Clear"
  1225. #~ msgstr "Limpar"
  1226. #~ msgid "stats"
  1227. #~ msgstr "estatísticas"
  1228. #~ msgid "Heads up!"
  1229. #~ msgstr "Atenção!"
  1230. #~ msgid "It look like you are using SearXNG first time."
  1231. #~ msgstr "Parece que você está usando o SearXNG pela primeira vez."
  1232. #~ msgid "Well done!"
  1233. #~ msgstr "Muito bem!"
  1234. #~ msgid "Settings saved successfully."
  1235. #~ msgstr "Configurações salvas com sucesso."
  1236. #~ msgid "Oh snap!"
  1237. #~ msgstr "Oh não!"
  1238. #~ msgid "Something went wrong."
  1239. #~ msgstr "Algo deu errado."
  1240. #~ msgid "Date"
  1241. #~ msgstr "Data"
  1242. #~ msgid "Type"
  1243. #~ msgstr "Tipo"
  1244. #~ msgid "Get image"
  1245. #~ msgstr "Obter imagem"
  1246. #~ msgid "Center Alignment"
  1247. #~ msgstr ""
  1248. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1249. #~ msgstr ""
  1250. #~ msgid "preferences"
  1251. #~ msgstr "preferências"
  1252. #~ msgid "Scores per result"
  1253. #~ msgstr "Pontuações por resultado"
  1254. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1255. #~ msgstr "um mecanismo de metabusca que respeita a sua privacidade"
  1256. #~ msgid "No abstract is available for this publication."
  1257. #~ msgstr "Nenhum resumo disponível para essa publicação."
  1258. #~ msgid "Self Informations"
  1259. #~ msgstr "Informações Próprias"
  1260. #~ msgid ""
  1261. #~ "Change how forms are submited, <a "
  1262. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1263. #~ " rel=\"external\">learn more about request "
  1264. #~ "methods</a>"
  1265. #~ msgstr ""
  1266. #~ "Alterar como os formulários são "
  1267. #~ "submetidos<a "
  1268. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1269. #~ " rel=\"external\">saiba mais sobre os "
  1270. #~ "métodos de solicitação</a>"
  1271. #~ msgid ""
  1272. #~ "This plugin checks if the address "
  1273. #~ "of the request is a TOR exit "
  1274. #~ "node, and informs the user if it"
  1275. #~ " is, like check.torproject.org but from "
  1276. #~ "searxng."
  1277. #~ msgstr ""
  1278. #~ "Esse plugin checa se o endereço do"
  1279. #~ " requerimento é um nódulo de saída"
  1280. #~ " TOR, e informa o usuário se "
  1281. #~ "ele realmente for, parecido com "
  1282. #~ "check.torproject.org mas para searxng."
  1283. #~ msgid ""
  1284. #~ "The TOR exit node list "
  1285. #~ "(https://check.torproject.org/exit-addresses) is "
  1286. #~ "unreachable."
  1287. #~ msgstr ""
  1288. #~ "A lista de nódulos de saída TOR"
  1289. #~ " (https://check.torproject.org/exit-addresses) é "
  1290. #~ "inalcançável."
  1291. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1292. #~ msgstr "Você está usando TOR. Seu endereço de IP aparenta ser: {ip_address}."
  1293. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1294. #~ msgstr ""
  1295. #~ "Você não está usando TOR. Seu "
  1296. #~ "endereço de IP aparenta ser: "
  1297. #~ "{ip_address}."
  1298. #~ msgid ""
  1299. #~ "The could not download the list of"
  1300. #~ " Tor exit-nodes from "
  1301. #~ "https://check.torproject.org/exit-addresses."
  1302. #~ msgstr ""
  1303. #~ msgid ""
  1304. #~ "You are using Tor. It looks like"
  1305. #~ " you have this external IP address:"
  1306. #~ " {ip_address}."
  1307. #~ msgstr ""
  1308. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1309. #~ msgstr ""
  1310. #~ msgid "Autodetect search language"
  1311. #~ msgstr "Detecção automática de idioma de pesquisa"
  1312. #~ msgid "Automatically detect the query search language and switch to it."
  1313. #~ msgstr ""
  1314. #~ "Detecte automaticamente o idioma de "
  1315. #~ "pesquisa da consulta e mude para "
  1316. #~ "ele."
  1317. #~ msgid "others"
  1318. #~ msgstr "outros"
  1319. #~ msgid ""
  1320. #~ "This tab does not show up for "
  1321. #~ "search results, but you can search "
  1322. #~ "the engines listed here via bangs."
  1323. #~ msgstr ""
  1324. #~ "Esta aba não aparece para resultados "
  1325. #~ "de busca, mas você pode buscar os"
  1326. #~ " sites listados aqui via bangs."
  1327. #~ msgid "Shortcut"
  1328. #~ msgstr "Atalhos"
  1329. #~ msgid "!bang"
  1330. #~ msgstr ""
  1331. #~ msgid ""
  1332. #~ "This tab dues not exists in the"
  1333. #~ " user interface, but you can search"
  1334. #~ " in these engines by its !bangs."
  1335. #~ msgstr ""
  1336. #~ "Essa aba não existe na interface "
  1337. #~ "de usuário, mas você pode pesquisar "
  1338. #~ "nessas ferramentas/motores pelos seus !bangs."
  1339. #~ msgid "Engines cannot retrieve results."
  1340. #~ msgstr "Os motores de busca não podem extrair os resultados."
  1341. #~ msgid "Please, try again later or find another SearXNG instance."
  1342. #~ msgstr ""
  1343. #~ "Por favor, tente novamente mais tarde"
  1344. #~ " ou encontre outra instância do "
  1345. #~ "SearXNG."
  1346. #~ msgid ""
  1347. #~ "Redirect to open-access versions of "
  1348. #~ "publications when available (plugin required)"
  1349. #~ msgstr ""
  1350. #~ "Quando disponível, redirecionar para as "
  1351. #~ "versões de acesso livre das publicações"
  1352. #~ " (necessário plugin)"
  1353. #~ msgid "Bang"
  1354. #~ msgstr "!bang"
  1355. #~ msgid ""
  1356. #~ "Change how forms are submitted, <a "
  1357. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1358. #~ " rel=\"external\">learn more about request "
  1359. #~ "methods</a>"
  1360. #~ msgstr ""
  1361. #~ "Mude como formulários são enviados, <a"
  1362. #~ " "
  1363. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1364. #~ " rel=\"external\">aprenda mais sobre métodos "
  1365. #~ "de requisição</a>"
  1366. #~ msgid "On"
  1367. #~ msgstr "Ligado"
  1368. #~ msgid "Off"
  1369. #~ msgstr "Desligado"
  1370. #~ msgid "Enabled"
  1371. #~ msgstr "Habilitado"
  1372. #~ msgid "Disabled"
  1373. #~ msgstr "Desabilitado"
  1374. #~ msgid ""
  1375. #~ "Perform search immediately if a category"
  1376. #~ " selected. Disable to select multiple "
  1377. #~ "categories. (JavaScript required)"
  1378. #~ msgstr ""
  1379. #~ "Executar a busca imediatamente se a "
  1380. #~ "categoria está selecionada. Desativar para "
  1381. #~ "selecionar várias categorias. (Necessário "
  1382. #~ "JavaScript)"
  1383. #~ msgid "Vim-like hotkeys"
  1384. #~ msgstr "Atalhos estilo Vim"
  1385. #~ msgid ""
  1386. #~ "Navigate search results with Vim-like"
  1387. #~ " hotkeys (JavaScript required). Press \"h\""
  1388. #~ " key on main or result page to"
  1389. #~ " get help."
  1390. #~ msgstr ""
  1391. #~ "Navegar pelos resultados de busca com"
  1392. #~ " atalhos semelhantes ao Vim (JavaScript "
  1393. #~ "necessário). Aperte \"h\" na página de"
  1394. #~ " resultados para obter ajuda."
  1395. #~ msgid ""
  1396. #~ "we didn't find any results. Please "
  1397. #~ "use another query or search in "
  1398. #~ "more categories."
  1399. #~ msgstr ""
  1400. #~ "Não encontramos nenhum resultado. Utilize "
  1401. #~ "outra consulta ou pesquisa em mais "
  1402. #~ "categorias."