messages.po 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028
  1. # Portuguese translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Dickprince, 2017
  7. # C. E., 2018
  8. # Markus Heiser <markus.heiser@darmarit.de>, 2022, 2023.
  9. # Miguel Silva <miguelcabeca.dev@gmail.com>, 2022.
  10. # Ricardo Simões <xmcorporation@gmail.com>, 2022.
  11. # zaioti <zaioti@tuta.io>, 2022.
  12. # Alexandre Flament <alex@al-f.net>, 2022.
  13. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  14. # fabiosantoscode <fabiosantosart@gmail.com>, 2023.
  15. # Coccocoas_Helper <coccocoahelper@gmail.com>, 2023.
  16. # return42 <return42@users.noreply.translate.codeberg.org>, 2024, 2025.
  17. # lspepinho <lspepinho@users.noreply.translate.codeberg.org>, 2024.
  18. # diodio <diodio@users.noreply.translate.codeberg.org>, 2024.
  19. # gvlx <gvlx@users.noreply.translate.codeberg.org>, 2024, 2025.
  20. # ds451 <ds451@users.noreply.translate.codeberg.org>, 2024.
  21. # Pedro_Tresp <Pedro_Tresp@users.noreply.translate.codeberg.org>, 2024.
  22. # saltsnorter <saltsnorter@users.noreply.translate.codeberg.org>, 2024.
  23. # Anonymous <anonymous@users.noreply.translate.codeberg.org>, 2025.
  24. msgid ""
  25. msgstr ""
  26. "Project-Id-Version: searx\n"
  27. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  28. "POT-Creation-Date: 2025-01-06 15:28+0000\n"
  29. "PO-Revision-Date: 2025-01-06 15:53+0000\n"
  30. "Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
  31. "Language-Team: Portuguese <https://translate.codeberg.org/projects/searxng/"
  32. "searxng/pt/>\n"
  33. "Language: pt\n"
  34. "MIME-Version: 1.0\n"
  35. "Content-Type: text/plain; charset=utf-8\n"
  36. "Content-Transfer-Encoding: 8bit\n"
  37. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  38. "X-Generator: Weblate 5.9.2\n"
  39. "Generated-By: Babel 2.16.0\n"
  40. #. CONSTANT_NAMES['NO_SUBGROUPING']
  41. #: searx/searxng.msg
  42. msgid "without further subgrouping"
  43. msgstr "sem subagrupamento adicional"
  44. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  45. #: searx/searxng.msg
  46. msgid "other"
  47. msgstr "outro"
  48. #. CATEGORY_NAMES['FILES']
  49. #: searx/searxng.msg
  50. msgid "files"
  51. msgstr "arquivos"
  52. #. CATEGORY_NAMES['GENERAL']
  53. #: searx/searxng.msg
  54. msgid "general"
  55. msgstr "geral"
  56. #. CATEGORY_NAMES['MUSIC']
  57. #: searx/searxng.msg
  58. msgid "music"
  59. msgstr "música"
  60. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  61. #: searx/searxng.msg
  62. msgid "social media"
  63. msgstr "redes sociais"
  64. #. CATEGORY_NAMES['IMAGES']
  65. #: searx/searxng.msg
  66. msgid "images"
  67. msgstr "imagens"
  68. #. CATEGORY_NAMES['VIDEOS']
  69. #: searx/searxng.msg
  70. msgid "videos"
  71. msgstr "vídeos"
  72. #. CATEGORY_NAMES['RADIO']
  73. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  74. msgid "radio"
  75. msgstr "radio"
  76. #. CATEGORY_NAMES['TV']
  77. #: searx/searxng.msg
  78. msgid "tv"
  79. msgstr "tv"
  80. #. CATEGORY_NAMES['IT']
  81. #: searx/searxng.msg
  82. msgid "it"
  83. msgstr "ti"
  84. #. CATEGORY_NAMES['NEWS']
  85. #: searx/searxng.msg
  86. msgid "news"
  87. msgstr "notícias"
  88. #. CATEGORY_NAMES['MAP']
  89. #: searx/searxng.msg
  90. msgid "map"
  91. msgstr "mapa"
  92. #. CATEGORY_NAMES['ONIONS']
  93. #: searx/searxng.msg
  94. msgid "onions"
  95. msgstr "onion"
  96. #. CATEGORY_NAMES['SCIENCE']
  97. #: searx/searxng.msg
  98. msgid "science"
  99. msgstr "ciência"
  100. #. CATEGORY_GROUPS['APPS']
  101. #: searx/searxng.msg
  102. msgid "apps"
  103. msgstr "aplicativos"
  104. #. CATEGORY_GROUPS['DICTIONARIES']
  105. #: searx/searxng.msg
  106. msgid "dictionaries"
  107. msgstr "dicionários"
  108. #. CATEGORY_GROUPS['LYRICS']
  109. #: searx/searxng.msg
  110. msgid "lyrics"
  111. msgstr "letras"
  112. #. CATEGORY_GROUPS['PACKAGES']
  113. #: searx/searxng.msg
  114. msgid "packages"
  115. msgstr "pacotes"
  116. #. CATEGORY_GROUPS['Q_A']
  117. #: searx/searxng.msg
  118. msgid "q&a"
  119. msgstr "perguntas e respostas"
  120. #. CATEGORY_GROUPS['REPOS']
  121. #: searx/searxng.msg
  122. msgid "repos"
  123. msgstr "repositórios"
  124. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  125. #: searx/searxng.msg
  126. msgid "software wikis"
  127. msgstr "wikis do software"
  128. #. CATEGORY_GROUPS['WEB']
  129. #: searx/searxng.msg
  130. msgid "web"
  131. msgstr "rede"
  132. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  133. #: searx/searxng.msg
  134. msgid "scientific publications"
  135. msgstr "publicações científicas"
  136. #. STYLE_NAMES['AUTO']
  137. #: searx/searxng.msg
  138. msgid "auto"
  139. msgstr "automático"
  140. #. STYLE_NAMES['LIGHT']
  141. #: searx/searxng.msg
  142. msgid "light"
  143. msgstr "claro"
  144. #. STYLE_NAMES['DARK']
  145. #: searx/searxng.msg
  146. msgid "dark"
  147. msgstr "escuro"
  148. #. STYLE_NAMES['BLACK']
  149. #: searx/searxng.msg
  150. msgid "black"
  151. msgstr "preto"
  152. #. BRAND_CUSTOM_LINKS['UPTIME']
  153. #: searx/searxng.msg
  154. msgid "Uptime"
  155. msgstr "Tempo em funcionamento"
  156. #. BRAND_CUSTOM_LINKS['ABOUT']
  157. #: searx/searxng.msg searx/templates/simple/base.html:50
  158. msgid "About"
  159. msgstr "Acerca"
  160. #. WEATHER_TERMS['AVERAGE TEMP.']
  161. #: searx/engines/wttr.py:32 searx/searxng.msg
  162. msgid "Average temp."
  163. msgstr "Temperatura média."
  164. #. WEATHER_TERMS['CLOUD COVER']
  165. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  166. msgid "Cloud cover"
  167. msgstr "Cobertura de nuvens"
  168. #. WEATHER_TERMS['CONDITION']
  169. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  170. #: searx/searxng.msg
  171. msgid "Condition"
  172. msgstr "Condição"
  173. #. WEATHER_TERMS['CURRENT CONDITION']
  174. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  175. #: searx/searxng.msg
  176. msgid "Current condition"
  177. msgstr "Condição atual"
  178. #. WEATHER_TERMS['EVENING']
  179. #: searx/engines/wttr.py:100 searx/searxng.msg
  180. msgid "Evening"
  181. msgstr "Tarde"
  182. #. WEATHER_TERMS['FEELS LIKE']
  183. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  184. #: searx/engines/wttr.py:59 searx/searxng.msg
  185. msgid "Feels like"
  186. msgstr "Sensação térmica"
  187. #. WEATHER_TERMS['HUMIDITY']
  188. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  189. #: searx/engines/wttr.py:68 searx/searxng.msg
  190. msgid "Humidity"
  191. msgstr "Humidade"
  192. #. WEATHER_TERMS['MAX TEMP.']
  193. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  194. #: searx/searxng.msg
  195. msgid "Max temp."
  196. msgstr "Temperatura máxima."
  197. #. WEATHER_TERMS['MIN TEMP.']
  198. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  199. #: searx/searxng.msg
  200. msgid "Min temp."
  201. msgstr "Temperatura mínima"
  202. #. WEATHER_TERMS['MORNING']
  203. #: searx/engines/wttr.py:100 searx/searxng.msg
  204. msgid "Morning"
  205. msgstr "Manhã"
  206. #. WEATHER_TERMS['NIGHT']
  207. #: searx/engines/wttr.py:100 searx/searxng.msg
  208. msgid "Night"
  209. msgstr "Noite"
  210. #. WEATHER_TERMS['NOON']
  211. #: searx/engines/wttr.py:100 searx/searxng.msg
  212. msgid "Noon"
  213. msgstr "Meio-dia"
  214. #. WEATHER_TERMS['PRESSURE']
  215. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  216. msgid "Pressure"
  217. msgstr "Pressão"
  218. #. WEATHER_TERMS['SUNRISE']
  219. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  220. #: searx/searxng.msg
  221. msgid "Sunrise"
  222. msgstr "Nascer do sol"
  223. #. WEATHER_TERMS['SUNSET']
  224. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  225. #: searx/searxng.msg
  226. msgid "Sunset"
  227. msgstr "Pôr do sol"
  228. #. WEATHER_TERMS['TEMPERATURE']
  229. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  230. #: searx/engines/wttr.py:55 searx/searxng.msg
  231. msgid "Temperature"
  232. msgstr "Temperatura"
  233. #. WEATHER_TERMS['UV INDEX']
  234. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  235. #: searx/searxng.msg
  236. msgid "UV index"
  237. msgstr "Índice UV"
  238. #. WEATHER_TERMS['VISIBILITY']
  239. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  240. #: searx/searxng.msg
  241. msgid "Visibility"
  242. msgstr "Visibilidade"
  243. #. WEATHER_TERMS['WIND']
  244. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  245. #: searx/engines/wttr.py:62 searx/searxng.msg
  246. msgid "Wind"
  247. msgstr "Vento"
  248. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  249. #: searx/engines/lemmy.py:85 searx/searxng.msg
  250. msgid "subscribers"
  251. msgstr "Subscritores"
  252. #. SOCIAL_MEDIA_TERMS['POSTS']
  253. #: searx/engines/lemmy.py:86 searx/searxng.msg
  254. msgid "posts"
  255. msgstr "Publicações"
  256. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  257. #: searx/engines/lemmy.py:87 searx/searxng.msg
  258. msgid "active users"
  259. msgstr "utilizadores átivos"
  260. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  261. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  262. #: searx/engines/lemmy.py:130 searx/searxng.msg
  263. msgid "comments"
  264. msgstr "comentadores"
  265. #. SOCIAL_MEDIA_TERMS['USER']
  266. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  267. msgid "user"
  268. msgstr "utilizador"
  269. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  270. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  271. msgid "community"
  272. msgstr "comunidade"
  273. #. SOCIAL_MEDIA_TERMS['POINTS']
  274. #: searx/engines/hackernews.py:82 searx/searxng.msg
  275. msgid "points"
  276. msgstr "pontos"
  277. #. SOCIAL_MEDIA_TERMS['TITLE']
  278. #: searx/searxng.msg
  279. msgid "title"
  280. msgstr "título"
  281. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  282. #: searx/engines/hackernews.py:85 searx/searxng.msg
  283. msgid "author"
  284. msgstr "autor"
  285. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  286. #: searx/engines/discourse.py:149 searx/searxng.msg
  287. msgid "open"
  288. msgstr "aberta"
  289. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  290. #: searx/engines/discourse.py:149 searx/searxng.msg
  291. msgid "closed"
  292. msgstr "fechada"
  293. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  294. #: searx/engines/discourse.py:160 searx/searxng.msg
  295. msgid "answered"
  296. msgstr "respondido"
  297. #: searx/webapp.py:323
  298. msgid "No item found"
  299. msgstr "Nenhum item encontrado"
  300. #: searx/engines/qwant.py:288
  301. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:325
  302. msgid "Source"
  303. msgstr "Fonte"
  304. #: searx/webapp.py:327
  305. msgid "Error loading the next page"
  306. msgstr "Erro ao carregar a próxima página"
  307. #: searx/webapp.py:492 searx/webapp.py:900
  308. msgid "Invalid settings, please edit your preferences"
  309. msgstr "Definições inválidas, por favor edite as suas preferências"
  310. #: searx/webapp.py:508
  311. msgid "Invalid settings"
  312. msgstr "Configurações inválidas"
  313. #: searx/webapp.py:585 searx/webapp.py:675
  314. msgid "search error"
  315. msgstr "erro de procura"
  316. #: searx/webutils.py:36
  317. msgid "timeout"
  318. msgstr "tempo esgotado"
  319. #: searx/webutils.py:37
  320. msgid "parsing error"
  321. msgstr "erro de análise"
  322. #: searx/webutils.py:38
  323. msgid "HTTP protocol error"
  324. msgstr "Erro de protocolo HTTP"
  325. #: searx/webutils.py:39
  326. msgid "network error"
  327. msgstr "erro de rede"
  328. #: searx/webutils.py:40
  329. msgid "SSL error: certificate validation has failed"
  330. msgstr "Erro SSL: falha na validação do certificado"
  331. #: searx/webutils.py:42
  332. msgid "unexpected crash"
  333. msgstr "falha inesperada"
  334. #: searx/webutils.py:49
  335. msgid "HTTP error"
  336. msgstr "Erro HTTP"
  337. #: searx/webutils.py:50
  338. msgid "HTTP connection error"
  339. msgstr "Erro de conexão HTTP"
  340. #: searx/webutils.py:56
  341. msgid "proxy error"
  342. msgstr "erro de proxy"
  343. #: searx/webutils.py:57
  344. msgid "CAPTCHA"
  345. msgstr "CAPTCHA"
  346. #: searx/webutils.py:58
  347. msgid "too many requests"
  348. msgstr "demasiados pedidos"
  349. #: searx/webutils.py:59
  350. msgid "access denied"
  351. msgstr "acesso negado"
  352. #: searx/webutils.py:60
  353. msgid "server API error"
  354. msgstr "erro de API do servidor"
  355. #: searx/webutils.py:79
  356. msgid "Suspended"
  357. msgstr "Suspenso"
  358. #: searx/webutils.py:314
  359. msgid "{minutes} minute(s) ago"
  360. msgstr "{minutes} minuto(s) atrás"
  361. #: searx/webutils.py:315
  362. msgid "{hours} hour(s), {minutes} minute(s) ago"
  363. msgstr "{hours} hora(s), {minutes} minuto(s) atrás"
  364. #: searx/answerers/random/answerer.py:76
  365. msgid "Random value generator"
  366. msgstr "Gerador de valores aleatórios"
  367. #: searx/answerers/random/answerer.py:77
  368. msgid "Generate different random values"
  369. msgstr "Gerar valores aleatórios diferentes"
  370. #: searx/answerers/statistics/answerer.py:50
  371. msgid "Statistics functions"
  372. msgstr "Funções de estatística"
  373. #: searx/answerers/statistics/answerer.py:51
  374. msgid "Compute {functions} of the arguments"
  375. msgstr "Calcular {functions} dos argumentos"
  376. #: searx/engines/mozhi.py:57
  377. msgid "Synonyms"
  378. msgstr "Sinônimos"
  379. #: searx/engines/openstreetmap.py:159
  380. msgid "Get directions"
  381. msgstr "Obter direções"
  382. #: searx/engines/pdbe.py:96
  383. msgid "{title} (OBSOLETE)"
  384. msgstr "{title} (OBSOLETO)"
  385. #: searx/engines/pdbe.py:103
  386. msgid "This entry has been superseded by"
  387. msgstr "Esta entrada foi substituída por"
  388. #: searx/engines/qwant.py:290
  389. msgid "Channel"
  390. msgstr "Canal"
  391. #: searx/engines/radio_browser.py:105
  392. msgid "bitrate"
  393. msgstr "bitrate"
  394. #: searx/engines/radio_browser.py:106
  395. msgid "votes"
  396. msgstr "votos"
  397. #: searx/engines/radio_browser.py:107
  398. msgid "clicks"
  399. msgstr "clica"
  400. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  401. #: searx/engines/zlibrary.py:137
  402. msgid "Language"
  403. msgstr "Idioma"
  404. #: searx/engines/semantic_scholar.py:78
  405. msgid ""
  406. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  407. "{lastCitationVelocityYear}"
  408. msgstr ""
  409. "{numCitations} citações do ano {firstCitationVelocityYear} até "
  410. "{lastCitationVelocityYear}"
  411. #: searx/engines/tineye.py:45
  412. msgid ""
  413. "Could not read that image url. This may be due to an unsupported file "
  414. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  415. " WebP."
  416. msgstr ""
  417. "Não foi possível ler o url dessa imagem. Pode ser devido a um formato de "
  418. "ficheiro não suportado.O TinEye só suporta imagens que estejam em "
  419. "JPEG,PNG,GIF,BMP,TIFF ou WebP."
  420. #: searx/engines/tineye.py:51
  421. msgid ""
  422. "The image is too simple to find matches. TinEye requires a basic level of"
  423. " visual detail to successfully identify matches."
  424. msgstr ""
  425. "A imagem é demasiado simples para encontrar fósforos. O TinEye requer um "
  426. "nível básico de detalhe visual para identificar com sucesso os fósforos."
  427. #: searx/engines/tineye.py:57
  428. msgid "The image could not be downloaded."
  429. msgstr "Não é possível fazer download da imagem."
  430. #: searx/engines/zlibrary.py:138
  431. msgid "Book rating"
  432. msgstr "Classificação do livro"
  433. #: searx/engines/zlibrary.py:139
  434. msgid "File quality"
  435. msgstr "Qualidade do ficheiro"
  436. #: searx/plugins/calculator.py:18
  437. msgid "Calculate mathematical expressions via the search bar"
  438. msgstr "Calcular expressões matemáticas na barra de pesquisa"
  439. #: searx/plugins/hash_plugin.py:10
  440. msgid "Converts strings to different hash digests."
  441. msgstr "Converte strings em diferentes resumos de hash."
  442. #: searx/plugins/hash_plugin.py:38
  443. msgid "hash digest"
  444. msgstr "resumo de hash"
  445. #: searx/plugins/hostnames.py:103
  446. msgid "Hostnames plugin"
  447. msgstr "Plugin hostnames"
  448. #: searx/plugins/hostnames.py:104
  449. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  450. msgstr ""
  451. "Reescreve hostname, apaga resultados ou prioriza-os com base no hostname"
  452. #: searx/plugins/oa_doi_rewrite.py:12
  453. msgid "Open Access DOI rewrite"
  454. msgstr "Reescrita DOI de acesso aberto"
  455. #: searx/plugins/oa_doi_rewrite.py:13
  456. msgid ""
  457. "Avoid paywalls by redirecting to open-access versions of publications "
  458. "when available"
  459. msgstr ""
  460. "Evite acessos pagos acedendo a versões de livre acesso sempre que disponível"
  461. #: searx/plugins/self_info.py:9
  462. msgid "Self Information"
  463. msgstr "Informação"
  464. #: searx/plugins/self_info.py:10
  465. msgid ""
  466. "Displays your IP if the query is \"ip\" and your user agent if the query "
  467. "contains \"user agent\"."
  468. msgstr ""
  469. "Mostrar IP se a pesquisar por \"IP\" e mostrar o user agent se pesquisar por "
  470. "\"user agent\"."
  471. #: searx/plugins/self_info.py:28
  472. msgid "Your IP is: "
  473. msgstr "O seu endereço IP é: "
  474. #: searx/plugins/self_info.py:31
  475. msgid "Your user-agent is: "
  476. msgstr "O seu user-agent é: "
  477. #: searx/plugins/tor_check.py:24
  478. msgid "Tor check plugin"
  479. msgstr "Verificar plugin Tor"
  480. #: searx/plugins/tor_check.py:27
  481. msgid ""
  482. "This plugin checks if the address of the request is a Tor exit-node, and "
  483. "informs the user if it is; like check.torproject.org, but from SearXNG."
  484. msgstr ""
  485. "Este plug-in verifica se o endereço da solicitação é um nó de saída do Tor e "
  486. "informa ao usuário se for; como check.torproject.org, mas de SearXNG."
  487. #: searx/plugins/tor_check.py:61
  488. msgid ""
  489. "Could not download the list of Tor exit-nodes from: "
  490. "https://check.torproject.org/exit-addresses"
  491. msgstr ""
  492. "Não foi possível obter a lista de nós de saída Tor de: "
  493. "https://check.torproject.org/exit-addresses"
  494. #: searx/plugins/tor_check.py:77
  495. msgid ""
  496. "You are using Tor and it looks like you have this external IP address: "
  497. "{ip_address}"
  498. msgstr "Você está a usar Tor e parece ter este endereço IP externo: {ip_address}"
  499. #: searx/plugins/tor_check.py:85
  500. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  501. msgstr ""
  502. "Você não está a usar Tor e parece ter este endereço IP externo: "
  503. "{ip_address}"
  504. #: searx/plugins/tracker_url_remover.py:16
  505. msgid "Tracker URL remover"
  506. msgstr "Remover rastreio de hiperligação"
  507. #: searx/plugins/tracker_url_remover.py:17
  508. msgid "Remove trackers arguments from the returned URL"
  509. msgstr "Remover argumentos de rastreio da hiperligação devolvida"
  510. #: searx/plugins/unit_converter.py:29
  511. msgid "Convert between units"
  512. msgstr "Conversão de unidades"
  513. #: searx/templates/simple/404.html:4
  514. msgid "Page not found"
  515. msgstr "Página não encontrada"
  516. #: searx/templates/simple/404.html:6
  517. #, python-format
  518. msgid "Go to %(search_page)s."
  519. msgstr "Ir para %(search_page)s."
  520. #: searx/templates/simple/404.html:6
  521. msgid "search page"
  522. msgstr "pesquisar página"
  523. #: searx/templates/simple/base.html:54
  524. msgid "Donate"
  525. msgstr "Doar"
  526. #: searx/templates/simple/base.html:58
  527. #: searx/templates/simple/preferences.html:156
  528. msgid "Preferences"
  529. msgstr "Preferências"
  530. #: searx/templates/simple/base.html:68
  531. msgid "Powered by"
  532. msgstr "Produzido por"
  533. #: searx/templates/simple/base.html:68
  534. msgid "a privacy-respecting, open metasearch engine"
  535. msgstr "Um motor de multi-pesquisa, que respeita a privacidade"
  536. #: searx/templates/simple/base.html:69
  537. #: searx/templates/simple/result_templates/packages.html:59
  538. msgid "Source code"
  539. msgstr "Código fonte"
  540. #: searx/templates/simple/base.html:70
  541. msgid "Issue tracker"
  542. msgstr "Rastreador de problemas"
  543. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  544. msgid "Engine stats"
  545. msgstr "Estatísticas de motor de pesquisa"
  546. #: searx/templates/simple/base.html:73
  547. msgid "Public instances"
  548. msgstr "Instâncias públicas"
  549. #: searx/templates/simple/base.html:76
  550. msgid "Privacy policy"
  551. msgstr "Política de privacidade"
  552. #: searx/templates/simple/base.html:79
  553. msgid "Contact instance maintainer"
  554. msgstr "Contate o mantenedor da instância"
  555. #: searx/templates/simple/categories.html:26
  556. msgid "Click on the magnifier to perform search"
  557. msgstr "Clique na lupa para realizar a pesquisa"
  558. #: searx/templates/simple/macros.html:40
  559. msgid "Length"
  560. msgstr "Comprimento"
  561. #: searx/templates/simple/macros.html:41
  562. msgid "Views"
  563. msgstr "Viazualisações"
  564. #: searx/templates/simple/macros.html:42
  565. #: searx/templates/simple/result_templates/files.html:34
  566. #: searx/templates/simple/result_templates/images.html:19
  567. #: searx/templates/simple/result_templates/paper.html:6
  568. msgid "Author"
  569. msgstr "Autor"
  570. #: searx/templates/simple/macros.html:50
  571. msgid "cached"
  572. msgstr "armazenados em cache"
  573. #: searx/templates/simple/macros.html:50
  574. msgid "proxied"
  575. msgstr "via proxy"
  576. #: searx/templates/simple/new_issue.html:64
  577. msgid "Start submitting a new issue on GitHub"
  578. msgstr "Começa por submter um topico em GitHub"
  579. #: searx/templates/simple/new_issue.html:66
  580. msgid "Please check for existing bugs about this engine on GitHub"
  581. msgstr "Por favor verifique se há bugs existentes sobre este motor no GitHub"
  582. #: searx/templates/simple/new_issue.html:69
  583. msgid "I confirm there is no existing bug about the issue I encounter"
  584. msgstr "Confirmo que não há bug existente sobre o problema que encontro"
  585. #: searx/templates/simple/new_issue.html:71
  586. msgid "If this is a public instance, please specify the URL in the bug report"
  587. msgstr ""
  588. "Se esta for uma instância pública, especifique a URL no relatório do bug"
  589. #: searx/templates/simple/new_issue.html:72
  590. msgid "Submit a new issue on Github including the above information"
  591. msgstr "Submeta um novo problema no Github incluindo a informação acima"
  592. #: searx/templates/simple/preferences.html:65
  593. msgid "No HTTPS"
  594. msgstr "Sem HTTPS"
  595. #: searx/templates/simple/elements/engines_msg.html:14
  596. #: searx/templates/simple/preferences.html:69
  597. #: searx/templates/simple/preferences.html:70
  598. msgid "View error logs and submit a bug report"
  599. msgstr "Olhar os logs de erro e submeter um relatório de bug"
  600. #: searx/templates/simple/preferences.html:74
  601. msgid "!bang for this engine"
  602. msgstr "!atalho para este motor"
  603. #: searx/templates/simple/preferences.html:80
  604. msgid "!bang for its categories"
  605. msgstr "!atalho para as categorias do motor"
  606. #: searx/templates/simple/preferences.html:102
  607. #: searx/templates/simple/stats.html:64
  608. msgid "Median"
  609. msgstr "Mediana"
  610. #: searx/templates/simple/preferences.html:103
  611. #: searx/templates/simple/stats.html:70
  612. msgid "P80"
  613. msgstr "P80"
  614. #: searx/templates/simple/preferences.html:104
  615. #: searx/templates/simple/stats.html:76
  616. msgid "P95"
  617. msgstr "P95"
  618. #: searx/templates/simple/preferences.html:136
  619. msgid "Failed checker test(s): "
  620. msgstr "Teste(s) de verificador(es) falhado(s): "
  621. #: searx/templates/simple/preferences.html:138
  622. msgid "Errors:"
  623. msgstr "Erros:"
  624. #: searx/templates/simple/preferences.html:162
  625. msgid "General"
  626. msgstr "Geral"
  627. #: searx/templates/simple/preferences.html:165
  628. msgid "Default categories"
  629. msgstr "Categorias Padrão"
  630. #: searx/templates/simple/preferences.html:190
  631. msgid "User interface"
  632. msgstr "Interface de utilizador"
  633. #: searx/templates/simple/preferences.html:212
  634. msgid "Privacy"
  635. msgstr "Privacidade"
  636. #: searx/templates/simple/preferences.html:225
  637. msgid "Engines"
  638. msgstr "Motores de pesquisa"
  639. #: searx/templates/simple/preferences.html:227
  640. msgid "Currently used search engines"
  641. msgstr "Motores de pesquisa utilizados"
  642. #: searx/templates/simple/preferences.html:235
  643. msgid "Special Queries"
  644. msgstr "Consultas especiais"
  645. #: searx/templates/simple/preferences.html:241
  646. msgid "Cookies"
  647. msgstr "Cookies"
  648. #: searx/templates/simple/results.html:23
  649. msgid "Answers"
  650. msgstr "Respostas"
  651. #: searx/templates/simple/results.html:42
  652. msgid "Number of results"
  653. msgstr "Número de resultados"
  654. #: searx/templates/simple/results.html:48
  655. msgid "Info"
  656. msgstr "Informações"
  657. #: searx/templates/simple/results.html:75
  658. msgid "Try searching for:"
  659. msgstr "Tente pesquisar por:"
  660. #: searx/templates/simple/results.html:107
  661. msgid "Back to top"
  662. msgstr "Voltar ao topo"
  663. #: searx/templates/simple/results.html:125
  664. msgid "Previous page"
  665. msgstr "Página anterior"
  666. #: searx/templates/simple/results.html:143
  667. msgid "Next page"
  668. msgstr "Página seguinte"
  669. #: searx/templates/simple/search.html:3
  670. msgid "Display the front page"
  671. msgstr "Mostrar a primeira página"
  672. #: searx/templates/simple/search.html:9
  673. #: searx/templates/simple/simple_search.html:5
  674. msgid "Search for..."
  675. msgstr "Procurar por..."
  676. #: searx/templates/simple/search.html:10
  677. #: searx/templates/simple/simple_search.html:6
  678. msgid "clear"
  679. msgstr "limpar"
  680. #: searx/templates/simple/search.html:11
  681. #: searx/templates/simple/simple_search.html:7
  682. msgid "search"
  683. msgstr "pesquisa"
  684. #: searx/templates/simple/stats.html:21
  685. msgid "There is currently no data available. "
  686. msgstr "Não existem dados disponíveis. "
  687. #: searx/templates/simple/preferences/engines.html:24
  688. #: searx/templates/simple/stats.html:25
  689. msgid "Engine name"
  690. msgstr "Nome do motor de pesquisa"
  691. #: searx/templates/simple/stats.html:26
  692. msgid "Scores"
  693. msgstr "Contagens"
  694. #: searx/templates/simple/stats.html:27
  695. msgid "Result count"
  696. msgstr "Quantidade de resultados"
  697. #: searx/templates/simple/elements/engines_msg.html:7
  698. #: searx/templates/simple/preferences/engines.html:31
  699. #: searx/templates/simple/stats.html:28
  700. msgid "Response time"
  701. msgstr "Tempo de resposta"
  702. #: searx/templates/simple/preferences/engines.html:35
  703. #: searx/templates/simple/stats.html:29
  704. msgid "Reliability"
  705. msgstr "Confiabilidade"
  706. #: searx/templates/simple/stats.html:59
  707. msgid "Total"
  708. msgstr "Total"
  709. #: searx/templates/simple/stats.html:60
  710. msgid "HTTP"
  711. msgstr "HTTP"
  712. #: searx/templates/simple/stats.html:61
  713. msgid "Processing"
  714. msgstr "Processar"
  715. #: searx/templates/simple/stats.html:99
  716. msgid "Warnings"
  717. msgstr "Avisos"
  718. #: searx/templates/simple/stats.html:99
  719. msgid "Errors and exceptions"
  720. msgstr "Erros e excepções"
  721. #: searx/templates/simple/stats.html:105
  722. msgid "Exception"
  723. msgstr "Excepção"
  724. #: searx/templates/simple/stats.html:107
  725. msgid "Message"
  726. msgstr "Mensagem"
  727. #: searx/templates/simple/stats.html:109
  728. msgid "Percentage"
  729. msgstr "Percentagem"
  730. #: searx/templates/simple/stats.html:111
  731. msgid "Parameter"
  732. msgstr "Parâmetro"
  733. #: searx/templates/simple/result_templates/files.html:36
  734. #: searx/templates/simple/stats.html:119
  735. msgid "Filename"
  736. msgstr "Nome do ficheiro"
  737. #: searx/templates/simple/stats.html:120
  738. msgid "Function"
  739. msgstr "Função"
  740. #: searx/templates/simple/stats.html:121
  741. msgid "Code"
  742. msgstr "Código"
  743. #: searx/templates/simple/stats.html:128
  744. msgid "Checker"
  745. msgstr "Checker"
  746. #: searx/templates/simple/stats.html:131
  747. msgid "Failed test"
  748. msgstr "Teste falhado"
  749. #: searx/templates/simple/stats.html:132
  750. msgid "Comment(s)"
  751. msgstr "Comentário(s)"
  752. #: searx/templates/simple/elements/apis.html:3
  753. msgid "Download results"
  754. msgstr "Resultados de transferências"
  755. #: searx/templates/simple/elements/engines_msg.html:4
  756. msgid "Messages from the search engines"
  757. msgstr "Mensagens dos mecanismos"
  758. #: searx/templates/simple/elements/engines_msg.html:7
  759. msgid "seconds"
  760. msgstr "s"
  761. #: searx/templates/simple/elements/search_url.html:3
  762. msgid "Search URL"
  763. msgstr "Procurar hiperligação"
  764. #: searx/templates/simple/elements/search_url.html:4
  765. #: searx/templates/simple/preferences/cookies.html:54
  766. msgid "Copied"
  767. msgstr "copiado"
  768. #: searx/templates/simple/elements/search_url.html:4
  769. #: searx/templates/simple/preferences/cookies.html:54
  770. msgid "Copy"
  771. msgstr "copiar"
  772. #: searx/templates/simple/elements/suggestions.html:3
  773. msgid "Suggestions"
  774. msgstr "Sugestões"
  775. #: searx/templates/simple/filters/languages.html:1
  776. #: searx/templates/simple/preferences/language.html:2
  777. msgid "Search language"
  778. msgstr "Idioma de pesquisa"
  779. #: searx/templates/simple/filters/languages.html:4
  780. #: searx/templates/simple/preferences/language.html:7
  781. msgid "Default language"
  782. msgstr "Idioma padrão"
  783. #: searx/templates/simple/filters/languages.html:8
  784. #: searx/templates/simple/preferences/language.html:11
  785. msgid "Auto-detect"
  786. msgstr "Auto-detetar"
  787. #: searx/templates/simple/filters/safesearch.html:1
  788. #: searx/templates/simple/filters/safesearch.html:2
  789. #: searx/templates/simple/filters/safesearch.html:3
  790. #: searx/templates/simple/filters/safesearch.html:4
  791. #: searx/templates/simple/preferences/engines.html:27
  792. #: searx/templates/simple/preferences/safesearch.html:2
  793. msgid "SafeSearch"
  794. msgstr "Pesquisa segura"
  795. #: searx/templates/simple/filters/safesearch.html:2
  796. #: searx/templates/simple/preferences/safesearch.html:7
  797. msgid "Strict"
  798. msgstr "Rigoroso"
  799. #: searx/templates/simple/filters/safesearch.html:3
  800. #: searx/templates/simple/preferences/safesearch.html:11
  801. msgid "Moderate"
  802. msgstr "Moderado"
  803. #: searx/templates/simple/filters/safesearch.html:4
  804. #: searx/templates/simple/preferences/safesearch.html:15
  805. msgid "None"
  806. msgstr "Nenhum"
  807. #: searx/templates/simple/filters/time_range.html:1
  808. #: searx/templates/simple/preferences/engines.html:28
  809. msgid "Time range"
  810. msgstr "Período de tempo"
  811. #: searx/templates/simple/filters/time_range.html:3
  812. msgid "Anytime"
  813. msgstr "Qualquer altura"
  814. #: searx/templates/simple/filters/time_range.html:6
  815. msgid "Last day"
  816. msgstr "Ontem"
  817. #: searx/templates/simple/filters/time_range.html:9
  818. msgid "Last week"
  819. msgstr "Semana passada"
  820. #: searx/templates/simple/filters/time_range.html:12
  821. msgid "Last month"
  822. msgstr "Mês passado"
  823. #: searx/templates/simple/filters/time_range.html:15
  824. msgid "Last year"
  825. msgstr "Ano passado"
  826. #: searx/templates/simple/messages/no_cookies.html:3
  827. msgid "Information!"
  828. msgstr "Informação!"
  829. #: searx/templates/simple/messages/no_cookies.html:4
  830. msgid "currently, there are no cookies defined."
  831. msgstr "neste momento, não existem cookies definidos."
  832. #: searx/templates/simple/messages/no_results.html:6
  833. msgid "Sorry!"
  834. msgstr "Desculpe!"
  835. #: searx/templates/simple/messages/no_results.html:12
  836. msgid "No results were found. You can try to:"
  837. msgstr "Nenhum resultado encontrado. Pode tentar:"
  838. #: searx/templates/simple/messages/no_results.html:14
  839. msgid "There are no more results. You can try to:"
  840. msgstr "Não existem mais resultados. Podes tentar:"
  841. #: searx/templates/simple/messages/no_results.html:19
  842. msgid "Refresh the page."
  843. msgstr "Atualize a página."
  844. #: searx/templates/simple/messages/no_results.html:20
  845. msgid "Search for another query or select another category (above)."
  846. msgstr ""
  847. "Pesquisar por outras palavras chaves ou escolher outra categoria (abaixo)."
  848. #: searx/templates/simple/messages/no_results.html:21
  849. msgid "Change the search engine used in the preferences:"
  850. msgstr "Alterar o motor de busca usado nas preferências:"
  851. #: searx/templates/simple/messages/no_results.html:22
  852. msgid "Switch to another instance:"
  853. msgstr "Troque de instância:"
  854. #: searx/templates/simple/messages/no_results.html:24
  855. msgid "Search for another query or select another category."
  856. msgstr ""
  857. "Pesquisar por outras palavras-chave ou selecionar outra categoria (abaixo)."
  858. #: searx/templates/simple/messages/no_results.html:25
  859. msgid "Go back to the previous page using the previous page button."
  860. msgstr "Volte à página anterior usando o botão de 'página anterior'."
  861. #: searx/templates/simple/preferences/answerers.html:4
  862. #: searx/templates/simple/preferences/engines.html:23
  863. msgid "Allow"
  864. msgstr "Permitir"
  865. #: searx/templates/simple/preferences/answerers.html:5
  866. msgid "Keywords"
  867. msgstr "Palavras-chave"
  868. #: searx/templates/simple/preferences/answerers.html:6
  869. #: searx/templates/simple/result_templates/packages.html:7
  870. msgid "Name"
  871. msgstr "Nome"
  872. #: searx/templates/simple/preferences/answerers.html:7
  873. msgid "Description"
  874. msgstr "Descrição"
  875. #: searx/templates/simple/preferences/answerers.html:8
  876. msgid "Examples"
  877. msgstr "Exemplos"
  878. #: searx/templates/simple/preferences/answerers.html:13
  879. msgid "This is the list of SearXNG's instant answering modules."
  880. msgstr "Essa é a lista de módulos de resposta instântanea da SearXNG."
  881. #: searx/templates/simple/preferences/answerers.html:29
  882. msgid "This is the list of plugins."
  883. msgstr "Essa é a lista de plugins."
  884. #: searx/templates/simple/preferences/autocomplete.html:2
  885. msgid "Autocomplete"
  886. msgstr "Preenchimento automático"
  887. #: searx/templates/simple/preferences/autocomplete.html:15
  888. msgid "Find stuff as you type"
  889. msgstr "Pesquisar enquanto escreve"
  890. #: searx/templates/simple/preferences/center_alignment.html:2
  891. msgid "Center Alignment"
  892. msgstr "Alinhar ao centro"
  893. #: searx/templates/simple/preferences/center_alignment.html:14
  894. msgid "Displays results in the center of the page (Oscar layout)."
  895. msgstr "Exibe os resultados no centro da página (esquema do Oscar)."
  896. #: searx/templates/simple/preferences/cookies.html:2
  897. msgid ""
  898. "This is the list of cookies and their values SearXNG is storing on your "
  899. "computer."
  900. msgstr ""
  901. "Essa é a lista dos cookies e seus valores que a SearXNG está armazenando no "
  902. "seu computador."
  903. #: searx/templates/simple/preferences/cookies.html:3
  904. msgid "With that list, you can assess SearXNG transparency."
  905. msgstr "Com ela, você pode avaliar a transparência da SearXNG."
  906. #: searx/templates/simple/preferences/cookies.html:9
  907. msgid "Cookie name"
  908. msgstr "Nome de cookie"
  909. #: searx/templates/simple/preferences/cookies.html:10
  910. msgid "Value"
  911. msgstr "Valor"
  912. #: searx/templates/simple/preferences/cookies.html:23
  913. msgid "Search URL of the currently saved preferences"
  914. msgstr "URL de pesquisa das preferências salvas atualmente"
  915. #: searx/templates/simple/preferences/cookies.html:32
  916. msgid ""
  917. "Note: specifying custom settings in the search URL can reduce privacy by "
  918. "leaking data to the clicked result sites."
  919. msgstr ""
  920. "Nota: a especificação de configurações personalizadas no URL de pesquisa "
  921. "pode reduzir a privacidade ao vazar dados para os sites de resultados "
  922. "clicados."
  923. #: searx/templates/simple/preferences/cookies.html:35
  924. msgid "URL to restore your preferences in another browser"
  925. msgstr "URL para restaurar suas preferências em outro navegador"
  926. #: searx/templates/simple/preferences/cookies.html:43
  927. msgid ""
  928. "Specifying custom settings in the preferences URL can be used to sync "
  929. "preferences across devices."
  930. msgstr ""
  931. "Especificar configurações customizadas na URL de preferências pode ser usado "
  932. "para sincronizar preferências entre dispositivos."
  933. #: searx/templates/simple/preferences/cookies.html:46
  934. msgid "Copy preferences hash"
  935. msgstr "Copiar a assinatura das preferências"
  936. #: searx/templates/simple/preferences/cookies.html:57
  937. msgid "Insert copied preferences hash (without URL) to restore"
  938. msgstr "Inserir a assinatura das preferências copiada (sem URL) para restaurar"
  939. #: searx/templates/simple/preferences/cookies.html:59
  940. msgid "Preferences hash"
  941. msgstr "Assinatura das preferências"
  942. #: searx/templates/simple/preferences/doi_resolver.html:2
  943. msgid "Open Access DOI resolver"
  944. msgstr "Resolvedor DOI de Acesso Aberto"
  945. #: searx/templates/simple/preferences/doi_resolver.html:14
  946. msgid "Select service used by DOI rewrite"
  947. msgstr "Selecione o serviço utilizado pela reescrita do DOI"
  948. #: searx/templates/simple/preferences/engines.html:9
  949. msgid ""
  950. "This tab does not exists in the user interface, but you can search in "
  951. "these engines by its !bangs."
  952. msgstr ""
  953. "Esta aba não existe no interface de utilizador, mas pode procurar nestes "
  954. "motores usando os seus !atalhos."
  955. #: searx/templates/simple/preferences/engines.html:15
  956. msgid "Enable all"
  957. msgstr "Activa tudo"
  958. #: searx/templates/simple/preferences/engines.html:16
  959. msgid "Disable all"
  960. msgstr "Desactiva tudo"
  961. #: searx/templates/simple/preferences/engines.html:25
  962. msgid "!bang"
  963. msgstr "!bang"
  964. #: searx/templates/simple/preferences/engines.html:26
  965. msgid "Supports selected language"
  966. msgstr "Suporta idioma selecionado"
  967. #: searx/templates/simple/preferences/engines.html:29
  968. msgid "Weight"
  969. msgstr "Peso"
  970. #: searx/templates/simple/preferences/engines.html:33
  971. msgid "Max time"
  972. msgstr "Tempo máximo"
  973. #: searx/templates/simple/preferences/favicon.html:2
  974. msgid "Favicon Resolver"
  975. msgstr "Solucionador do Favicon"
  976. #: searx/templates/simple/preferences/favicon.html:15
  977. msgid "Display favicons near search results"
  978. msgstr "Monstra os favicons nos proximos os resultados"
  979. #: searx/templates/simple/preferences/footer.html:2
  980. msgid ""
  981. "These settings are stored in your cookies, this allows us not to store "
  982. "this data about you."
  983. msgstr ""
  984. "Estas definições são guardadas nos seus cookies, isto permite-nos que não "
  985. "guardemos informação sobre si."
  986. #: searx/templates/simple/preferences/footer.html:3
  987. msgid ""
  988. "These cookies serve your sole convenience, we don't use these cookies to "
  989. "track you."
  990. msgstr ""
  991. "Estes cookies servem somente para sua conveniência, não os utilizamos para o "
  992. "rastrear."
  993. #: searx/templates/simple/preferences/footer.html:6
  994. msgid "Save"
  995. msgstr "Guardar"
  996. #: searx/templates/simple/preferences/footer.html:9
  997. msgid "Reset defaults"
  998. msgstr "Repor predefinições"
  999. #: searx/templates/simple/preferences/footer.html:13
  1000. msgid "Back"
  1001. msgstr "Voltar"
  1002. #: searx/templates/simple/preferences/hotkeys.html:2
  1003. msgid "Hotkeys"
  1004. msgstr "Teclas de atalho"
  1005. #: searx/templates/simple/preferences/hotkeys.html:13
  1006. msgid "Vim-like"
  1007. msgstr "Como em Vim"
  1008. #: searx/templates/simple/preferences/hotkeys.html:18
  1009. msgid ""
  1010. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1011. "key on main or result page to get help."
  1012. msgstr ""
  1013. "Navegue os resultados de pesquisa com teclas de atalhos de (JavaScript "
  1014. "necessário). Pressione a tecla \"h\" na página principal ou de resultados "
  1015. "para conseguir ajuda."
  1016. #: searx/templates/simple/preferences/image_proxy.html:2
  1017. msgid "Image proxy"
  1018. msgstr "Proxy de imagem"
  1019. #: searx/templates/simple/preferences/image_proxy.html:14
  1020. msgid "Proxying image results through SearXNG"
  1021. msgstr "Procurar resultados de imagem através do SearXNG"
  1022. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1023. msgid "Infinite scroll"
  1024. msgstr "Deslocação Infinita"
  1025. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1026. msgid "Automatically load next page when scrolling to bottom of current page"
  1027. msgstr ""
  1028. "Carregar automaticamente a próxima página assim que se desloque para o fim "
  1029. "da página atual"
  1030. #: searx/templates/simple/preferences/language.html:24
  1031. msgid "What language do you prefer for search?"
  1032. msgstr "Que idioma de pesquisa prefere?"
  1033. #: searx/templates/simple/preferences/language.html:25
  1034. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1035. msgstr "Escolha Auto-detetar para deixar SearXNG detetar a língua da sua pesquisa."
  1036. #: searx/templates/simple/preferences/method.html:2
  1037. msgid "HTTP Method"
  1038. msgstr "Método HTTP"
  1039. #: searx/templates/simple/preferences/method.html:14
  1040. msgid "Change how forms are submitted"
  1041. msgstr "Mude como as fórmulas são submetidas"
  1042. #: searx/templates/simple/preferences/query_in_title.html:2
  1043. msgid "Query in the page's title"
  1044. msgstr "Procura no título da página"
  1045. #: searx/templates/simple/preferences/query_in_title.html:14
  1046. msgid ""
  1047. "When enabled, the result page's title contains your query. Your browser "
  1048. "can record this title"
  1049. msgstr ""
  1050. "Quando habilitado, o título da página resultante contém sua frase de "
  1051. "pesquisa. O seu navegador pode gravar esse título"
  1052. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1053. msgid "Results on new tabs"
  1054. msgstr "Resultados em novos separadores"
  1055. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1056. msgid "Open result links on new browser tabs"
  1057. msgstr "Abrir resultados num novo separador"
  1058. #: searx/templates/simple/preferences/safesearch.html:20
  1059. msgid "Filter content"
  1060. msgstr "Filtrar conteúdo"
  1061. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1062. msgid "Search on category select"
  1063. msgstr "Pesquisar na seleção de categoria"
  1064. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1065. msgid ""
  1066. "Perform search immediately if a category selected. Disable to select "
  1067. "multiple categories"
  1068. msgstr ""
  1069. "Pesquisar imediatamente se uma categoria estiver selecionada. Desative para "
  1070. "selecionar múltiplas categorias"
  1071. #: searx/templates/simple/preferences/theme.html:2
  1072. msgid "Theme"
  1073. msgstr "Tema"
  1074. #: searx/templates/simple/preferences/theme.html:14
  1075. msgid "Change SearXNG layout"
  1076. msgstr "Mudar o layout do SearXNG"
  1077. #: searx/templates/simple/preferences/theme.html:19
  1078. msgid "Theme style"
  1079. msgstr "Estilo de tema"
  1080. #: searx/templates/simple/preferences/theme.html:31
  1081. msgid "Choose auto to follow your browser settings"
  1082. msgstr "Escolha auto para seguir as definições do seu navegador"
  1083. #: searx/templates/simple/preferences/tokens.html:2
  1084. msgid "Engine tokens"
  1085. msgstr "Tokens do Motor"
  1086. #: searx/templates/simple/preferences/tokens.html:9
  1087. msgid "Access tokens for private engines"
  1088. msgstr "Access tokens para private engines"
  1089. #: searx/templates/simple/preferences/ui_locale.html:2
  1090. msgid "Interface language"
  1091. msgstr "Idioma de interface"
  1092. #: searx/templates/simple/preferences/ui_locale.html:14
  1093. msgid "Change the language of the layout"
  1094. msgstr "Alterar o idioma do esquema"
  1095. #: searx/templates/simple/preferences/urlformatting.html:2
  1096. msgid "URL formatting"
  1097. msgstr "Formatação do URL"
  1098. #: searx/templates/simple/preferences/urlformatting.html:8
  1099. msgid "Pretty"
  1100. msgstr ""
  1101. #: searx/templates/simple/preferences/urlformatting.html:13
  1102. msgid "Full"
  1103. msgstr ""
  1104. #: searx/templates/simple/preferences/urlformatting.html:18
  1105. msgid "Host"
  1106. msgstr ""
  1107. #: searx/templates/simple/preferences/urlformatting.html:23
  1108. msgid "Change result URL formatting"
  1109. msgstr ""
  1110. #: searx/templates/simple/result_templates/code.html:13
  1111. msgid "repo"
  1112. msgstr "repositório"
  1113. #: searx/templates/simple/result_templates/default.html:6
  1114. #: searx/templates/simple/result_templates/files.html:8
  1115. #: searx/templates/simple/result_templates/files.html:11
  1116. msgid "show media"
  1117. msgstr "mostrar média"
  1118. #: searx/templates/simple/result_templates/default.html:6
  1119. #: searx/templates/simple/result_templates/files.html:8
  1120. msgid "hide media"
  1121. msgstr "esconder média"
  1122. #: searx/templates/simple/result_templates/default.html:14
  1123. #: searx/templates/simple/result_templates/videos.html:14
  1124. msgid "This site did not provide any description."
  1125. msgstr "Este site não forneceu qualquer descrição."
  1126. #: searx/templates/simple/result_templates/files.html:38
  1127. #: searx/templates/simple/result_templates/images.html:22
  1128. #: searx/templates/simple/result_templates/torrent.html:11
  1129. msgid "Filesize"
  1130. msgstr "Tamanho de ficheiro"
  1131. #: searx/templates/simple/result_templates/files.html:40
  1132. msgid "Date"
  1133. msgstr "Data"
  1134. #: searx/templates/simple/result_templates/files.html:42
  1135. #: searx/templates/simple/result_templates/paper.html:24
  1136. msgid "Type"
  1137. msgstr "Tipo"
  1138. #: searx/templates/simple/result_templates/images.html:20
  1139. msgid "Resolution"
  1140. msgstr "Resolução"
  1141. #: searx/templates/simple/result_templates/images.html:21
  1142. msgid "Format"
  1143. msgstr "Formato"
  1144. #: searx/templates/simple/result_templates/images.html:24
  1145. msgid "Engine"
  1146. msgstr "Engine"
  1147. #: searx/templates/simple/result_templates/images.html:25
  1148. msgid "View source"
  1149. msgstr "Ver fonte"
  1150. #: searx/templates/simple/result_templates/map.html:12
  1151. msgid "address"
  1152. msgstr "endereço"
  1153. #: searx/templates/simple/result_templates/map.html:43
  1154. msgid "show map"
  1155. msgstr "mostrar mapa"
  1156. #: searx/templates/simple/result_templates/map.html:43
  1157. msgid "hide map"
  1158. msgstr "esconder mapa"
  1159. #: searx/templates/simple/result_templates/packages.html:12
  1160. msgid "Version"
  1161. msgstr "Versão"
  1162. #: searx/templates/simple/result_templates/packages.html:18
  1163. msgid "Maintainer"
  1164. msgstr "Gestor"
  1165. #: searx/templates/simple/result_templates/packages.html:24
  1166. msgid "Updated at"
  1167. msgstr "Atualizado em"
  1168. #: searx/templates/simple/result_templates/packages.html:30
  1169. #: searx/templates/simple/result_templates/paper.html:25
  1170. msgid "Tags"
  1171. msgstr "Etiquetas"
  1172. #: searx/templates/simple/result_templates/packages.html:36
  1173. msgid "Popularity"
  1174. msgstr "Popularidade"
  1175. #: searx/templates/simple/result_templates/packages.html:42
  1176. msgid "License"
  1177. msgstr "Licença"
  1178. #: searx/templates/simple/result_templates/packages.html:52
  1179. msgid "Project"
  1180. msgstr "Projeto"
  1181. #: searx/templates/simple/result_templates/packages.html:55
  1182. msgid "Project homepage"
  1183. msgstr "Página do projeto"
  1184. #: searx/templates/simple/result_templates/paper.html:5
  1185. msgid "Published date"
  1186. msgstr "Data de publicação"
  1187. #: searx/templates/simple/result_templates/paper.html:9
  1188. msgid "Journal"
  1189. msgstr "Jornal"
  1190. #: searx/templates/simple/result_templates/paper.html:22
  1191. msgid "Editor"
  1192. msgstr "Editor"
  1193. #: searx/templates/simple/result_templates/paper.html:23
  1194. msgid "Publisher"
  1195. msgstr "Editora"
  1196. #: searx/templates/simple/result_templates/paper.html:26
  1197. msgid "DOI"
  1198. msgstr "DOI"
  1199. #: searx/templates/simple/result_templates/paper.html:27
  1200. msgid "ISSN"
  1201. msgstr "ISSN"
  1202. #: searx/templates/simple/result_templates/paper.html:28
  1203. msgid "ISBN"
  1204. msgstr "ISBN"
  1205. #: searx/templates/simple/result_templates/paper.html:33
  1206. msgid "PDF"
  1207. msgstr "PDF"
  1208. #: searx/templates/simple/result_templates/paper.html:34
  1209. msgid "HTML"
  1210. msgstr "HTML"
  1211. #: searx/templates/simple/result_templates/torrent.html:6
  1212. msgid "magnet link"
  1213. msgstr "hiperligação magnética"
  1214. #: searx/templates/simple/result_templates/torrent.html:7
  1215. msgid "torrent file"
  1216. msgstr "ficheiro torrent"
  1217. #: searx/templates/simple/result_templates/torrent.html:9
  1218. msgid "Seeder"
  1219. msgstr "Seeder"
  1220. #: searx/templates/simple/result_templates/torrent.html:9
  1221. msgid "Leecher"
  1222. msgstr "Leecher"
  1223. #: searx/templates/simple/result_templates/torrent.html:13
  1224. msgid "Number of Files"
  1225. msgstr "Número de Ficheiros"
  1226. #: searx/templates/simple/result_templates/videos.html:6
  1227. msgid "show video"
  1228. msgstr "mostrar vídeo"
  1229. #: searx/templates/simple/result_templates/videos.html:6
  1230. msgid "hide video"
  1231. msgstr "esconder vídeo"
  1232. #~ msgid "Engine time (sec)"
  1233. #~ msgstr "Tempo de pesquisa (seg)"
  1234. #~ msgid "Page loads (sec)"
  1235. #~ msgstr "Página carregada (seg)"
  1236. #~ msgid "Errors"
  1237. #~ msgstr "Erros"
  1238. #~ msgid "CAPTCHA required"
  1239. #~ msgstr ""
  1240. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1241. #~ msgstr "Reformulação de hiperligações HTTP para HTTPS se possível"
  1242. #~ msgid ""
  1243. #~ "Results are opened in the same "
  1244. #~ "window by default. This plugin "
  1245. #~ "overwrites the default behaviour to open"
  1246. #~ " links on new tabs/windows. (JavaScript "
  1247. #~ "required)"
  1248. #~ msgstr ""
  1249. #~ "Por defeito os resultados são abertos"
  1250. #~ " no mesmo separador. Esta extensão "
  1251. #~ "sobreguarda o comportamento padrão de "
  1252. #~ "abrir hiperligações num novo separador. "
  1253. #~ "(Necessário JavaScript)"
  1254. #~ msgid "Color"
  1255. #~ msgstr "Cor"
  1256. #~ msgid "Blue (default)"
  1257. #~ msgstr "Azul (padrão)"
  1258. #~ msgid "Violet"
  1259. #~ msgstr "Violeta"
  1260. #~ msgid "Green"
  1261. #~ msgstr "Verde"
  1262. #~ msgid "Cyan"
  1263. #~ msgstr "Ciano"
  1264. #~ msgid "Orange"
  1265. #~ msgstr "Laranja"
  1266. #~ msgid "Red"
  1267. #~ msgstr "Vermelho"
  1268. #~ msgid "Category"
  1269. #~ msgstr "Categoria"
  1270. #~ msgid "Block"
  1271. #~ msgstr "Bloquear"
  1272. #~ msgid "original context"
  1273. #~ msgstr "contexto original"
  1274. #~ msgid "Plugins"
  1275. #~ msgstr "Extensões"
  1276. #~ msgid "Answerers"
  1277. #~ msgstr "Remetente"
  1278. #~ msgid "Avg. time"
  1279. #~ msgstr "Tempo médio"
  1280. #~ msgid "show details"
  1281. #~ msgstr "mostrar detalhes"
  1282. #~ msgid "hide details"
  1283. #~ msgstr "esconder detalhes"
  1284. #~ msgid "Load more..."
  1285. #~ msgstr "Carregar mais..."
  1286. #~ msgid "Loading..."
  1287. #~ msgstr ""
  1288. #~ msgid "Change searx layout"
  1289. #~ msgstr "Alterar esquema do searx"
  1290. #~ msgid "Proxying image results through searx"
  1291. #~ msgstr "Resultados de imagens pelo proxy searx"
  1292. #~ msgid "This is the list of searx's instant answering modules."
  1293. #~ msgstr "Esta é a lista dos modulos instantâneos de resposta do searx"
  1294. #~ msgid ""
  1295. #~ "This is the list of cookies and"
  1296. #~ " their values searx is storing on "
  1297. #~ "your computer."
  1298. #~ msgstr ""
  1299. #~ "Esta é a lista de cookies e "
  1300. #~ "os valores que o searx está a "
  1301. #~ "guardar no seu computador."
  1302. #~ msgid "With that list, you can assess searx transparency."
  1303. #~ msgstr "Com essa lista pode aceder à transparência do searx."
  1304. #~ msgid "It look like you are using searx first time."
  1305. #~ msgstr "Parece que está a utilizar o searx pela primeira vez."
  1306. #~ msgid "Please, try again later or find another searx instance."
  1307. #~ msgstr ""
  1308. #~ "Por favor, tente novamente mais tarde"
  1309. #~ " ou encontre outra ocorrência de "
  1310. #~ "searx."
  1311. #~ msgid "Themes"
  1312. #~ msgstr "Temas"
  1313. #~ msgid "Reliablity"
  1314. #~ msgstr ""
  1315. #~ msgid ""
  1316. #~ "When enabled, the result page's title"
  1317. #~ " contains your query. Your browser "
  1318. #~ "can record this title."
  1319. #~ msgstr ""
  1320. #~ msgid "Method"
  1321. #~ msgstr "Método"
  1322. #~ msgid ""
  1323. #~ "This tab does not show up for "
  1324. #~ "search results but you can search "
  1325. #~ "the engines listed here via bangs."
  1326. #~ msgstr ""
  1327. #~ msgid "Advanced settings"
  1328. #~ msgstr "Definições avançadas"
  1329. #~ msgid "Close"
  1330. #~ msgstr "Fechar"
  1331. #~ msgid "Language"
  1332. #~ msgstr "Linguagem"
  1333. #~ msgid "broken"
  1334. #~ msgstr "quebrado"
  1335. #~ msgid "supported"
  1336. #~ msgstr "suportado"
  1337. #~ msgid "not supported"
  1338. #~ msgstr "não suportado"
  1339. #~ msgid "about"
  1340. #~ msgstr "sobre"
  1341. #~ msgid "Avg."
  1342. #~ msgstr "Média"
  1343. #~ msgid "User Interface"
  1344. #~ msgstr "Interface de usuário"
  1345. #~ msgid "Choose style for this theme"
  1346. #~ msgstr "Escolher estilo para este tema"
  1347. #~ msgid "Style"
  1348. #~ msgstr "Estilo"
  1349. #~ msgid "Show advanced settings"
  1350. #~ msgstr "Mostrar as configurações avançadas"
  1351. #~ msgid "Show advanced settings panel in the home page by default"
  1352. #~ msgstr "Mostrar configurações de painel avançadas na página inicial por padrão"
  1353. #~ msgid "Allow all"
  1354. #~ msgstr "Habilitar todos"
  1355. #~ msgid "Disable all"
  1356. #~ msgstr "Desabilitar todos"
  1357. #~ msgid "Selected language"
  1358. #~ msgstr "Idioma selecionado"
  1359. #~ msgid "Query"
  1360. #~ msgstr "Pesquisa"
  1361. #~ msgid "save"
  1362. #~ msgstr "Guardar"
  1363. #~ msgid "back"
  1364. #~ msgstr "Atrás"
  1365. #~ msgid "Links"
  1366. #~ msgstr "Hiperligações"
  1367. #~ msgid "RSS subscription"
  1368. #~ msgstr "Inscrição RSS"
  1369. #~ msgid "Search results"
  1370. #~ msgstr "Resultados de pesquisa"
  1371. #~ msgid "next page"
  1372. #~ msgstr "página seguinte"
  1373. #~ msgid "previous page"
  1374. #~ msgstr "página anterior"
  1375. #~ msgid "Start search"
  1376. #~ msgstr "Começar pesquisa"
  1377. #~ msgid "Clear search"
  1378. #~ msgstr "Limpar pesquisa"
  1379. #~ msgid "Clear"
  1380. #~ msgstr "Limpar"
  1381. #~ msgid "stats"
  1382. #~ msgstr "estatísticas"
  1383. #~ msgid "Heads up!"
  1384. #~ msgstr "Atenção!"
  1385. #~ msgid "It look like you are using SearXNG first time."
  1386. #~ msgstr "Parece que está a usar o SearXNG pela primeira vez."
  1387. #~ msgid "Well done!"
  1388. #~ msgstr "Muito bem!"
  1389. #~ msgid "Settings saved successfully."
  1390. #~ msgstr "Definições guardadas com sucesso."
  1391. #~ msgid "Oh snap!"
  1392. #~ msgstr "Ora bolas!"
  1393. #~ msgid "Something went wrong."
  1394. #~ msgstr "Alguma coisa correu mal."
  1395. #~ msgid "Date"
  1396. #~ msgstr "Data"
  1397. #~ msgid "Type"
  1398. #~ msgstr "Tipo"
  1399. #~ msgid "Get image"
  1400. #~ msgstr "Obter imagem"
  1401. #~ msgid "Center Alignment"
  1402. #~ msgstr ""
  1403. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1404. #~ msgstr ""
  1405. #~ msgid "preferences"
  1406. #~ msgstr "preferências"
  1407. #~ msgid "Scores per result"
  1408. #~ msgstr "Contagens por resultado"
  1409. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1410. #~ msgstr "um motor de metapesquisa editável e respeitador da sua privacidade"
  1411. #~ msgid "No abstract is available for this publication."
  1412. #~ msgstr "Nenhum resumo está disponível para esta publicação."
  1413. #~ msgid "Self Informations"
  1414. #~ msgstr "Auto-informações"
  1415. #~ msgid ""
  1416. #~ "Change how forms are submited, <a "
  1417. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1418. #~ " rel=\"external\">learn more about request "
  1419. #~ "methods</a>"
  1420. #~ msgstr ""
  1421. #~ "Alterar como formulários são submetidos, "
  1422. #~ "<a "
  1423. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1424. #~ " rel=\"external\">aprender mais sobre métodos "
  1425. #~ "de pedidos</a>"
  1426. #~ msgid ""
  1427. #~ "This plugin checks if the address "
  1428. #~ "of the request is a TOR exit "
  1429. #~ "node, and informs the user if it"
  1430. #~ " is, like check.torproject.org but from "
  1431. #~ "searxng."
  1432. #~ msgstr ""
  1433. #~ "Este plugin verifica se o endereço "
  1434. #~ "do pedido é um nó de saída "
  1435. #~ "do TOR, e informa o utilizador se"
  1436. #~ " é, como check.torproject.org mas de "
  1437. #~ "searchxng."
  1438. #~ msgid ""
  1439. #~ "The TOR exit node list "
  1440. #~ "(https://check.torproject.org/exit-addresses) is "
  1441. #~ "unreachable."
  1442. #~ msgstr ""
  1443. #~ "A lista de nós de saída dos "
  1444. #~ "TOR (https://check.torproject.org/exit-addresses) é"
  1445. #~ " inalcançável."
  1446. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1447. #~ msgstr "Está a utilizar os TOR. O seu endereço IP parece estar: {ip_address}."
  1448. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1449. #~ msgstr "Não está a usar o TOR. O seu endereço IP parece ser: {ip_address}."
  1450. #~ msgid ""
  1451. #~ "The could not download the list of"
  1452. #~ " Tor exit-nodes from "
  1453. #~ "https://check.torproject.org/exit-addresses."
  1454. #~ msgstr ""
  1455. #~ msgid ""
  1456. #~ "You are using Tor. It looks like"
  1457. #~ " you have this external IP address:"
  1458. #~ " {ip_address}."
  1459. #~ msgstr ""
  1460. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1461. #~ msgstr ""
  1462. #~ msgid "Autodetect search language"
  1463. #~ msgstr "Deteção automatica da li"
  1464. #~ msgid "Automatically detect the query search language and switch to it."
  1465. #~ msgstr ""
  1466. #~ "Detecte automaticamente o idioma de "
  1467. #~ "pesquisa consultado e mude para ele."
  1468. #~ msgid "others"
  1469. #~ msgstr "outros"
  1470. #~ msgid ""
  1471. #~ "This tab does not show up for "
  1472. #~ "search results, but you can search "
  1473. #~ "the engines listed here via bangs."
  1474. #~ msgstr ""
  1475. #~ "Este separador não aparece para "
  1476. #~ "resultados de pesquisa, mas pode "
  1477. #~ "pesquisar os motores aqui listados "
  1478. #~ "através de bangs."
  1479. #~ msgid "Shortcut"
  1480. #~ msgstr "Atalho"
  1481. #~ msgid "!bang"
  1482. #~ msgstr ""
  1483. #~ msgid ""
  1484. #~ "This tab dues not exists in the"
  1485. #~ " user interface, but you can search"
  1486. #~ " in these engines by its !bangs."
  1487. #~ msgstr ""
  1488. #~ "Esta aba não existe no interface "
  1489. #~ "de utilizador, mas pode procurar nestes"
  1490. #~ " motores usando os seus !atalhos."
  1491. #~ msgid "Engines cannot retrieve results."
  1492. #~ msgstr "Mecanismos não podem recuperar resultados."
  1493. #~ msgid "Please, try again later or find another SearXNG instance."
  1494. #~ msgstr ""
  1495. #~ "Por favor, tente novamente mais tarde"
  1496. #~ " ou encontre outra instância SearXNG."
  1497. #~ msgid ""
  1498. #~ "Redirect to open-access versions of "
  1499. #~ "publications when available (plugin required)"
  1500. #~ msgstr ""
  1501. #~ "Redirecionar para versões de acesso "
  1502. #~ "aberto de publicações quando disponíveis "
  1503. #~ "(requer plug-in)"
  1504. #~ msgid "Bang"
  1505. #~ msgstr "Atalho"
  1506. #~ msgid ""
  1507. #~ "Change how forms are submitted, <a "
  1508. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1509. #~ " rel=\"external\">learn more about request "
  1510. #~ "methods</a>"
  1511. #~ msgstr ""
  1512. #~ "Modifique como os formulários são "
  1513. #~ "submetidos, <a "
  1514. #~ "href=\"https://pt.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Métodos_de_solicitação\""
  1515. #~ " rel=\"external\">mais sobre métodos de "
  1516. #~ "solicitação</a>"
  1517. #~ msgid "On"
  1518. #~ msgstr "Ligado"
  1519. #~ msgid "Off"
  1520. #~ msgstr "Desligado"
  1521. #~ msgid "Enabled"
  1522. #~ msgstr "Ativado"
  1523. #~ msgid "Disabled"
  1524. #~ msgstr "Desativado"
  1525. #~ msgid ""
  1526. #~ "Perform search immediately if a category"
  1527. #~ " selected. Disable to select multiple "
  1528. #~ "categories. (JavaScript required)"
  1529. #~ msgstr ""
  1530. #~ "Realizar imediatamente uma pesquisa após "
  1531. #~ "selecionar uma categoria. Desative esta "
  1532. #~ "opção para selecionar várias categorias. "
  1533. #~ "(Necessário JavaScript)"
  1534. #~ msgid "Vim-like hotkeys"
  1535. #~ msgstr "Atalhos Vim"
  1536. #~ msgid ""
  1537. #~ "Navigate search results with Vim-like"
  1538. #~ " hotkeys (JavaScript required). Press \"h\""
  1539. #~ " key on main or result page to"
  1540. #~ " get help."
  1541. #~ msgstr ""
  1542. #~ "Navegar resultados de pesquisa com "
  1543. #~ "atalhos semelhantes ao Vim (Necessário "
  1544. #~ "JavaScript). Pressione a tecla \"h\" "
  1545. #~ "para obter ajuda."
  1546. #~ msgid ""
  1547. #~ "we didn't find any results. Please "
  1548. #~ "use another query or search in "
  1549. #~ "more categories."
  1550. #~ msgstr ""
  1551. #~ "não encontramos nenhum resultado. Por "
  1552. #~ "favor pesquise outra coisa ou utilize"
  1553. #~ " mais categorias na sua pesquisa."
  1554. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1555. #~ msgstr ""
  1556. #~ "Reescrever os nomes de host dos "
  1557. #~ "resultados ou remover os resultados com"
  1558. #~ " base no nome do host"
  1559. #~ msgid "Bytes"
  1560. #~ msgstr "Bytes"
  1561. #~ msgid "kiB"
  1562. #~ msgstr "kiB"
  1563. #~ msgid "MiB"
  1564. #~ msgstr "MiB"
  1565. #~ msgid "GiB"
  1566. #~ msgstr "GiB"
  1567. #~ msgid "TiB"
  1568. #~ msgstr "TiB"
  1569. #~ msgid "Hostname replace"
  1570. #~ msgstr "Substituição do nome do host"
  1571. #~ msgid "Error!"
  1572. #~ msgstr "Erro!"
  1573. #~ msgid "Engines cannot retrieve results"
  1574. #~ msgstr "Mecanismos não podem recuperar resultados"
  1575. #~ msgid "Start submiting a new issue on GitHub"
  1576. #~ msgstr "Iniciar envio de novo problema para o GitHub"
  1577. #~ msgid "dummy"
  1578. #~ msgstr ""