messages.po 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959
  1. # Interlingua translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Guimarães Mello <matheus.mello@disroot.org>, 2017,2019
  7. # return42 <markus.heiser@darmarit.de>, 2023.
  8. msgid ""
  9. msgstr ""
  10. "Project-Id-Version: searx\n"
  11. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  12. "POT-Creation-Date: 2024-12-16 07:46+0000\n"
  13. "PO-Revision-Date: 2023-06-22 09:02+0000\n"
  14. "Last-Translator: return42 <markus.heiser@darmarit.de>\n"
  15. "Language: ia\n"
  16. "Language-Team: Interlingua "
  17. "<https://translate.codeberg.org/projects/searxng/searxng/ia/>\n"
  18. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  19. "MIME-Version: 1.0\n"
  20. "Content-Type: text/plain; charset=utf-8\n"
  21. "Content-Transfer-Encoding: 8bit\n"
  22. "Generated-By: Babel 2.16.0\n"
  23. #. CONSTANT_NAMES['NO_SUBGROUPING']
  24. #: searx/searxng.msg
  25. msgid "without further subgrouping"
  26. msgstr "sin plus subgruppos"
  27. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  28. #: searx/searxng.msg
  29. msgid "other"
  30. msgstr "alteres"
  31. #. CATEGORY_NAMES['FILES']
  32. #: searx/searxng.msg
  33. msgid "files"
  34. msgstr "files"
  35. #. CATEGORY_NAMES['GENERAL']
  36. #: searx/searxng.msg
  37. msgid "general"
  38. msgstr "general"
  39. #. CATEGORY_NAMES['MUSIC']
  40. #: searx/searxng.msg
  41. msgid "music"
  42. msgstr "musica"
  43. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  44. #: searx/searxng.msg
  45. msgid "social media"
  46. msgstr "medios social"
  47. #. CATEGORY_NAMES['IMAGES']
  48. #: searx/searxng.msg
  49. msgid "images"
  50. msgstr "imagines"
  51. #. CATEGORY_NAMES['VIDEOS']
  52. #: searx/searxng.msg
  53. msgid "videos"
  54. msgstr "videos"
  55. #. CATEGORY_NAMES['RADIO']
  56. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  57. msgid "radio"
  58. msgstr ""
  59. #. CATEGORY_NAMES['TV']
  60. #: searx/searxng.msg
  61. msgid "tv"
  62. msgstr ""
  63. #. CATEGORY_NAMES['IT']
  64. #: searx/searxng.msg
  65. msgid "it"
  66. msgstr "software"
  67. #. CATEGORY_NAMES['NEWS']
  68. #: searx/searxng.msg
  69. msgid "news"
  70. msgstr "novas"
  71. #. CATEGORY_NAMES['MAP']
  72. #: searx/searxng.msg
  73. msgid "map"
  74. msgstr "mappa"
  75. #. CATEGORY_NAMES['ONIONS']
  76. #: searx/searxng.msg
  77. msgid "onions"
  78. msgstr "servicios occulte"
  79. #. CATEGORY_NAMES['SCIENCE']
  80. #: searx/searxng.msg
  81. msgid "science"
  82. msgstr "scientia"
  83. #. CATEGORY_NAMES['DUMMY']
  84. #: searx/searxng.msg
  85. msgid "dummy"
  86. msgstr ""
  87. #. CATEGORY_GROUPS['APPS']
  88. #: searx/searxng.msg
  89. msgid "apps"
  90. msgstr "applicationes"
  91. #. CATEGORY_GROUPS['DICTIONARIES']
  92. #: searx/searxng.msg
  93. msgid "dictionaries"
  94. msgstr ""
  95. #. CATEGORY_GROUPS['LYRICS']
  96. #: searx/searxng.msg
  97. msgid "lyrics"
  98. msgstr ""
  99. #. CATEGORY_GROUPS['PACKAGES']
  100. #: searx/searxng.msg
  101. msgid "packages"
  102. msgstr ""
  103. #. CATEGORY_GROUPS['Q_A']
  104. #: searx/searxng.msg
  105. msgid "q&a"
  106. msgstr ""
  107. #. CATEGORY_GROUPS['REPOS']
  108. #: searx/searxng.msg
  109. msgid "repos"
  110. msgstr ""
  111. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  112. #: searx/searxng.msg
  113. msgid "software wikis"
  114. msgstr ""
  115. #. CATEGORY_GROUPS['WEB']
  116. #: searx/searxng.msg
  117. msgid "web"
  118. msgstr ""
  119. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  120. #: searx/searxng.msg
  121. msgid "scientific publications"
  122. msgstr ""
  123. #. STYLE_NAMES['AUTO']
  124. #: searx/searxng.msg
  125. msgid "auto"
  126. msgstr ""
  127. #. STYLE_NAMES['LIGHT']
  128. #: searx/searxng.msg
  129. msgid "light"
  130. msgstr ""
  131. #. STYLE_NAMES['DARK']
  132. #: searx/searxng.msg
  133. msgid "dark"
  134. msgstr ""
  135. #. STYLE_NAMES['BLACK']
  136. #: searx/searxng.msg
  137. msgid "black"
  138. msgstr ""
  139. #. BRAND_CUSTOM_LINKS['UPTIME']
  140. #: searx/searxng.msg
  141. msgid "Uptime"
  142. msgstr ""
  143. #. BRAND_CUSTOM_LINKS['ABOUT']
  144. #: searx/searxng.msg searx/templates/simple/base.html:50
  145. msgid "About"
  146. msgstr ""
  147. #. WEATHER_TERMS['AVERAGE TEMP.']
  148. #: searx/engines/wttr.py:32 searx/searxng.msg
  149. msgid "Average temp."
  150. msgstr ""
  151. #. WEATHER_TERMS['CLOUD COVER']
  152. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  153. msgid "Cloud cover"
  154. msgstr ""
  155. #. WEATHER_TERMS['CONDITION']
  156. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  157. #: searx/searxng.msg
  158. msgid "Condition"
  159. msgstr ""
  160. #. WEATHER_TERMS['CURRENT CONDITION']
  161. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  162. #: searx/searxng.msg
  163. msgid "Current condition"
  164. msgstr ""
  165. #. WEATHER_TERMS['EVENING']
  166. #: searx/engines/wttr.py:100 searx/searxng.msg
  167. msgid "Evening"
  168. msgstr ""
  169. #. WEATHER_TERMS['FEELS LIKE']
  170. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  171. #: searx/engines/wttr.py:59 searx/searxng.msg
  172. msgid "Feels like"
  173. msgstr ""
  174. #. WEATHER_TERMS['HUMIDITY']
  175. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  176. #: searx/engines/wttr.py:68 searx/searxng.msg
  177. msgid "Humidity"
  178. msgstr ""
  179. #. WEATHER_TERMS['MAX TEMP.']
  180. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  181. #: searx/searxng.msg
  182. msgid "Max temp."
  183. msgstr ""
  184. #. WEATHER_TERMS['MIN TEMP.']
  185. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  186. #: searx/searxng.msg
  187. msgid "Min temp."
  188. msgstr ""
  189. #. WEATHER_TERMS['MORNING']
  190. #: searx/engines/wttr.py:100 searx/searxng.msg
  191. msgid "Morning"
  192. msgstr ""
  193. #. WEATHER_TERMS['NIGHT']
  194. #: searx/engines/wttr.py:100 searx/searxng.msg
  195. msgid "Night"
  196. msgstr ""
  197. #. WEATHER_TERMS['NOON']
  198. #: searx/engines/wttr.py:100 searx/searxng.msg
  199. msgid "Noon"
  200. msgstr ""
  201. #. WEATHER_TERMS['PRESSURE']
  202. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  203. msgid "Pressure"
  204. msgstr ""
  205. #. WEATHER_TERMS['SUNRISE']
  206. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  207. #: searx/searxng.msg
  208. msgid "Sunrise"
  209. msgstr ""
  210. #. WEATHER_TERMS['SUNSET']
  211. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  212. #: searx/searxng.msg
  213. msgid "Sunset"
  214. msgstr ""
  215. #. WEATHER_TERMS['TEMPERATURE']
  216. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  217. #: searx/engines/wttr.py:55 searx/searxng.msg
  218. msgid "Temperature"
  219. msgstr ""
  220. #. WEATHER_TERMS['UV INDEX']
  221. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  222. #: searx/searxng.msg
  223. msgid "UV index"
  224. msgstr ""
  225. #. WEATHER_TERMS['VISIBILITY']
  226. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  227. #: searx/searxng.msg
  228. msgid "Visibility"
  229. msgstr ""
  230. #. WEATHER_TERMS['WIND']
  231. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  232. #: searx/engines/wttr.py:62 searx/searxng.msg
  233. msgid "Wind"
  234. msgstr ""
  235. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  236. #: searx/engines/lemmy.py:85 searx/searxng.msg
  237. msgid "subscribers"
  238. msgstr ""
  239. #. SOCIAL_MEDIA_TERMS['POSTS']
  240. #: searx/engines/lemmy.py:86 searx/searxng.msg
  241. msgid "posts"
  242. msgstr ""
  243. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  244. #: searx/engines/lemmy.py:87 searx/searxng.msg
  245. msgid "active users"
  246. msgstr ""
  247. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  248. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  249. #: searx/engines/lemmy.py:130 searx/searxng.msg
  250. msgid "comments"
  251. msgstr ""
  252. #. SOCIAL_MEDIA_TERMS['USER']
  253. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  254. msgid "user"
  255. msgstr ""
  256. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  257. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  258. msgid "community"
  259. msgstr ""
  260. #. SOCIAL_MEDIA_TERMS['POINTS']
  261. #: searx/engines/hackernews.py:82 searx/searxng.msg
  262. msgid "points"
  263. msgstr ""
  264. #. SOCIAL_MEDIA_TERMS['TITLE']
  265. #: searx/searxng.msg
  266. msgid "title"
  267. msgstr ""
  268. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  269. #: searx/engines/hackernews.py:85 searx/searxng.msg
  270. msgid "author"
  271. msgstr ""
  272. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  273. #: searx/engines/discourse.py:149 searx/searxng.msg
  274. msgid "open"
  275. msgstr ""
  276. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  277. #: searx/engines/discourse.py:149 searx/searxng.msg
  278. msgid "closed"
  279. msgstr ""
  280. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  281. #: searx/engines/discourse.py:160 searx/searxng.msg
  282. msgid "answered"
  283. msgstr ""
  284. #: searx/webapp.py:323
  285. msgid "No item found"
  286. msgstr "Nulle item trovate"
  287. #: searx/engines/qwant.py:288
  288. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:325
  289. msgid "Source"
  290. msgstr ""
  291. #: searx/webapp.py:327
  292. msgid "Error loading the next page"
  293. msgstr ""
  294. #: searx/webapp.py:496 searx/webapp.py:904
  295. msgid "Invalid settings, please edit your preferences"
  296. msgstr "Configurationes non valide, per favor, modifica tu preferentias"
  297. #: searx/webapp.py:512
  298. msgid "Invalid settings"
  299. msgstr "Configurationes invalide"
  300. #: searx/webapp.py:589 searx/webapp.py:679
  301. msgid "search error"
  302. msgstr "error in recerca"
  303. #: searx/webutils.py:36
  304. msgid "timeout"
  305. msgstr ""
  306. #: searx/webutils.py:37
  307. msgid "parsing error"
  308. msgstr ""
  309. #: searx/webutils.py:38
  310. msgid "HTTP protocol error"
  311. msgstr ""
  312. #: searx/webutils.py:39
  313. msgid "network error"
  314. msgstr ""
  315. #: searx/webutils.py:40
  316. msgid "SSL error: certificate validation has failed"
  317. msgstr ""
  318. #: searx/webutils.py:42
  319. msgid "unexpected crash"
  320. msgstr ""
  321. #: searx/webutils.py:49
  322. msgid "HTTP error"
  323. msgstr ""
  324. #: searx/webutils.py:50
  325. msgid "HTTP connection error"
  326. msgstr ""
  327. #: searx/webutils.py:56
  328. msgid "proxy error"
  329. msgstr ""
  330. #: searx/webutils.py:57
  331. msgid "CAPTCHA"
  332. msgstr ""
  333. #: searx/webutils.py:58
  334. msgid "too many requests"
  335. msgstr ""
  336. #: searx/webutils.py:59
  337. msgid "access denied"
  338. msgstr ""
  339. #: searx/webutils.py:60
  340. msgid "server API error"
  341. msgstr ""
  342. #: searx/webutils.py:79
  343. msgid "Suspended"
  344. msgstr ""
  345. #: searx/webutils.py:314
  346. msgid "{minutes} minute(s) ago"
  347. msgstr "{minutes} minuta(s) retro"
  348. #: searx/webutils.py:315
  349. msgid "{hours} hour(s), {minutes} minute(s) ago"
  350. msgstr "{hours} hora(s), {minutes} minuta(s) retro"
  351. #: searx/answerers/random/answerer.py:76
  352. msgid "Random value generator"
  353. msgstr "Generator de valores aleatori"
  354. #: searx/answerers/random/answerer.py:77
  355. msgid "Generate different random values"
  356. msgstr "Generar differente valores aleatori"
  357. #: searx/answerers/statistics/answerer.py:50
  358. msgid "Statistics functions"
  359. msgstr "Functiones statistic"
  360. #: searx/answerers/statistics/answerer.py:51
  361. msgid "Compute {functions} of the arguments"
  362. msgstr "Computa {functions} del argumentos"
  363. #: searx/engines/mozhi.py:57
  364. msgid "Synonyms"
  365. msgstr ""
  366. #: searx/engines/openstreetmap.py:159
  367. msgid "Get directions"
  368. msgstr ""
  369. #: searx/engines/pdbe.py:96
  370. msgid "{title} (OBSOLETE)"
  371. msgstr ""
  372. #: searx/engines/pdbe.py:103
  373. msgid "This entry has been superseded by"
  374. msgstr "Iste entrata esseva substituite per"
  375. #: searx/engines/qwant.py:290
  376. msgid "Channel"
  377. msgstr ""
  378. #: searx/engines/radio_browser.py:105
  379. msgid "bitrate"
  380. msgstr ""
  381. #: searx/engines/radio_browser.py:106
  382. msgid "votes"
  383. msgstr ""
  384. #: searx/engines/radio_browser.py:107
  385. msgid "clicks"
  386. msgstr ""
  387. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  388. #: searx/engines/zlibrary.py:137
  389. msgid "Language"
  390. msgstr ""
  391. #: searx/engines/semantic_scholar.py:78
  392. msgid ""
  393. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  394. "{lastCitationVelocityYear}"
  395. msgstr ""
  396. #: searx/engines/tineye.py:45
  397. msgid ""
  398. "Could not read that image url. This may be due to an unsupported file "
  399. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  400. " WebP."
  401. msgstr ""
  402. #: searx/engines/tineye.py:51
  403. msgid ""
  404. "The image is too simple to find matches. TinEye requires a basic level of"
  405. " visual detail to successfully identify matches."
  406. msgstr ""
  407. #: searx/engines/tineye.py:57
  408. msgid "The image could not be downloaded."
  409. msgstr ""
  410. #: searx/engines/zlibrary.py:138
  411. msgid "Book rating"
  412. msgstr ""
  413. #: searx/engines/zlibrary.py:139
  414. msgid "File quality"
  415. msgstr ""
  416. #: searx/plugins/calculator.py:18
  417. msgid "Calculate mathematical expressions via the search bar"
  418. msgstr ""
  419. #: searx/plugins/hash_plugin.py:10
  420. msgid "Converts strings to different hash digests."
  421. msgstr ""
  422. #: searx/plugins/hash_plugin.py:38
  423. msgid "hash digest"
  424. msgstr ""
  425. #: searx/plugins/hostnames.py:103
  426. msgid "Hostnames plugin"
  427. msgstr ""
  428. #: searx/plugins/hostnames.py:104
  429. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  430. msgstr ""
  431. #: searx/plugins/oa_doi_rewrite.py:12
  432. msgid "Open Access DOI rewrite"
  433. msgstr ""
  434. #: searx/plugins/oa_doi_rewrite.py:13
  435. msgid ""
  436. "Avoid paywalls by redirecting to open-access versions of publications "
  437. "when available"
  438. msgstr ""
  439. "Evita paywalls per redirectionar a versiones de publicationes in accesso "
  440. "aperte, quando disponibile"
  441. #: searx/plugins/self_info.py:9
  442. msgid "Self Information"
  443. msgstr ""
  444. #: searx/plugins/self_info.py:10
  445. msgid ""
  446. "Displays your IP if the query is \"ip\" and your user agent if the query "
  447. "contains \"user agent\"."
  448. msgstr ""
  449. "Monstra tu IP si le consulta es \"ip\"; e monstra tu agente de usator si "
  450. "le consulta contine \"user agent\"."
  451. #: searx/plugins/self_info.py:28
  452. msgid "Your IP is: "
  453. msgstr ""
  454. #: searx/plugins/self_info.py:31
  455. msgid "Your user-agent is: "
  456. msgstr ""
  457. #: searx/plugins/tor_check.py:24
  458. msgid "Tor check plugin"
  459. msgstr ""
  460. #: searx/plugins/tor_check.py:27
  461. msgid ""
  462. "This plugin checks if the address of the request is a Tor exit-node, and "
  463. "informs the user if it is; like check.torproject.org, but from SearXNG."
  464. msgstr ""
  465. #: searx/plugins/tor_check.py:61
  466. msgid ""
  467. "Could not download the list of Tor exit-nodes from: "
  468. "https://check.torproject.org/exit-addresses"
  469. msgstr ""
  470. #: searx/plugins/tor_check.py:77
  471. msgid ""
  472. "You are using Tor and it looks like you have this external IP address: "
  473. "{ip_address}"
  474. msgstr ""
  475. #: searx/plugins/tor_check.py:85
  476. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  477. msgstr ""
  478. #: searx/plugins/tracker_url_remover.py:16
  479. msgid "Tracker URL remover"
  480. msgstr "Remover tracker del URL"
  481. #: searx/plugins/tracker_url_remover.py:17
  482. msgid "Remove trackers arguments from the returned URL"
  483. msgstr "Remover argumentos del tracker ab le URL retornate"
  484. #: searx/plugins/unit_converter.py:29
  485. msgid "Convert between units"
  486. msgstr ""
  487. #: searx/templates/simple/404.html:4
  488. msgid "Page not found"
  489. msgstr "Pagina non trovate"
  490. #: searx/templates/simple/404.html:6
  491. #, python-format
  492. msgid "Go to %(search_page)s."
  493. msgstr "Ir al %(search_page)s."
  494. #: searx/templates/simple/404.html:6
  495. msgid "search page"
  496. msgstr "pagina de recerca"
  497. #: searx/templates/simple/base.html:54
  498. msgid "Donate"
  499. msgstr ""
  500. #: searx/templates/simple/base.html:58
  501. #: searx/templates/simple/preferences.html:156
  502. msgid "Preferences"
  503. msgstr "Preferentias"
  504. #: searx/templates/simple/base.html:68
  505. msgid "Powered by"
  506. msgstr "Actionate per"
  507. #: searx/templates/simple/base.html:68
  508. msgid "a privacy-respecting, open metasearch engine"
  509. msgstr ""
  510. #: searx/templates/simple/base.html:69
  511. #: searx/templates/simple/result_templates/packages.html:59
  512. msgid "Source code"
  513. msgstr ""
  514. #: searx/templates/simple/base.html:70
  515. msgid "Issue tracker"
  516. msgstr ""
  517. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  518. msgid "Engine stats"
  519. msgstr "Statisticas de motores"
  520. #: searx/templates/simple/base.html:73
  521. msgid "Public instances"
  522. msgstr ""
  523. #: searx/templates/simple/base.html:76
  524. msgid "Privacy policy"
  525. msgstr ""
  526. #: searx/templates/simple/base.html:79
  527. msgid "Contact instance maintainer"
  528. msgstr ""
  529. #: searx/templates/simple/categories.html:26
  530. msgid "Click on the magnifier to perform search"
  531. msgstr "Clicca sur le lupa pro exequer le recerca"
  532. #: searx/templates/simple/macros.html:40
  533. msgid "Length"
  534. msgstr ""
  535. #: searx/templates/simple/macros.html:41
  536. msgid "Views"
  537. msgstr ""
  538. #: searx/templates/simple/macros.html:42
  539. #: searx/templates/simple/result_templates/files.html:34
  540. #: searx/templates/simple/result_templates/images.html:19
  541. #: searx/templates/simple/result_templates/paper.html:6
  542. msgid "Author"
  543. msgstr ""
  544. #: searx/templates/simple/macros.html:50
  545. msgid "cached"
  546. msgstr "in cache"
  547. #: searx/templates/simple/macros.html:50
  548. msgid "proxied"
  549. msgstr "per proxy"
  550. #: searx/templates/simple/new_issue.html:64
  551. msgid "Start submitting a new issue on GitHub"
  552. msgstr ""
  553. #: searx/templates/simple/new_issue.html:66
  554. msgid "Please check for existing bugs about this engine on GitHub"
  555. msgstr ""
  556. #: searx/templates/simple/new_issue.html:69
  557. msgid "I confirm there is no existing bug about the issue I encounter"
  558. msgstr ""
  559. #: searx/templates/simple/new_issue.html:71
  560. msgid "If this is a public instance, please specify the URL in the bug report"
  561. msgstr ""
  562. #: searx/templates/simple/new_issue.html:72
  563. msgid "Submit a new issue on Github including the above information"
  564. msgstr ""
  565. #: searx/templates/simple/preferences.html:65
  566. msgid "No HTTPS"
  567. msgstr ""
  568. #: searx/templates/simple/elements/engines_msg.html:14
  569. #: searx/templates/simple/preferences.html:69
  570. #: searx/templates/simple/preferences.html:70
  571. msgid "View error logs and submit a bug report"
  572. msgstr ""
  573. #: searx/templates/simple/preferences.html:74
  574. msgid "!bang for this engine"
  575. msgstr ""
  576. #: searx/templates/simple/preferences.html:80
  577. msgid "!bang for its categories"
  578. msgstr ""
  579. #: searx/templates/simple/preferences.html:102
  580. #: searx/templates/simple/stats.html:64
  581. msgid "Median"
  582. msgstr ""
  583. #: searx/templates/simple/preferences.html:103
  584. #: searx/templates/simple/stats.html:70
  585. msgid "P80"
  586. msgstr "P80"
  587. #: searx/templates/simple/preferences.html:104
  588. #: searx/templates/simple/stats.html:76
  589. msgid "P95"
  590. msgstr "P95"
  591. #: searx/templates/simple/preferences.html:136
  592. msgid "Failed checker test(s): "
  593. msgstr ""
  594. #: searx/templates/simple/preferences.html:138
  595. msgid "Errors:"
  596. msgstr ""
  597. #: searx/templates/simple/preferences.html:162
  598. msgid "General"
  599. msgstr "General"
  600. #: searx/templates/simple/preferences.html:165
  601. msgid "Default categories"
  602. msgstr "categorias predefinite"
  603. #: searx/templates/simple/preferences.html:190
  604. msgid "User interface"
  605. msgstr "Interfacie del usator"
  606. #: searx/templates/simple/preferences.html:212
  607. msgid "Privacy"
  608. msgstr "Confidentialitate"
  609. #: searx/templates/simple/preferences.html:225
  610. msgid "Engines"
  611. msgstr "Motores"
  612. #: searx/templates/simple/preferences.html:227
  613. msgid "Currently used search engines"
  614. msgstr "Motores de recerca actualmente usate"
  615. #: searx/templates/simple/preferences.html:235
  616. msgid "Special Queries"
  617. msgstr ""
  618. #: searx/templates/simple/preferences.html:241
  619. msgid "Cookies"
  620. msgstr "Cookies"
  621. #: searx/templates/simple/results.html:23
  622. msgid "Answers"
  623. msgstr "Replicas"
  624. #: searx/templates/simple/results.html:42
  625. msgid "Number of results"
  626. msgstr "Numero de resultatos"
  627. #: searx/templates/simple/results.html:48
  628. msgid "Info"
  629. msgstr ""
  630. #: searx/templates/simple/results.html:75
  631. msgid "Try searching for:"
  632. msgstr "Essaya recercar pro:"
  633. #: searx/templates/simple/results.html:107
  634. msgid "Back to top"
  635. msgstr ""
  636. #: searx/templates/simple/results.html:125
  637. msgid "Previous page"
  638. msgstr ""
  639. #: searx/templates/simple/results.html:143
  640. msgid "Next page"
  641. msgstr ""
  642. #: searx/templates/simple/search.html:3
  643. msgid "Display the front page"
  644. msgstr ""
  645. #: searx/templates/simple/search.html:9
  646. #: searx/templates/simple/simple_search.html:5
  647. msgid "Search for..."
  648. msgstr "Recercar re..."
  649. #: searx/templates/simple/search.html:10
  650. #: searx/templates/simple/simple_search.html:6
  651. msgid "clear"
  652. msgstr ""
  653. #: searx/templates/simple/search.html:11
  654. #: searx/templates/simple/simple_search.html:7
  655. msgid "search"
  656. msgstr ""
  657. #: searx/templates/simple/stats.html:21
  658. msgid "There is currently no data available. "
  659. msgstr "Actualmente, il non ha datos disponibile."
  660. #: searx/templates/simple/preferences/engines.html:24
  661. #: searx/templates/simple/stats.html:25
  662. msgid "Engine name"
  663. msgstr "Nomine del motor"
  664. #: searx/templates/simple/stats.html:26
  665. msgid "Scores"
  666. msgstr "Punctos"
  667. #: searx/templates/simple/stats.html:27
  668. msgid "Result count"
  669. msgstr ""
  670. #: searx/templates/simple/elements/engines_msg.html:7
  671. #: searx/templates/simple/preferences/engines.html:31
  672. #: searx/templates/simple/stats.html:28
  673. msgid "Response time"
  674. msgstr ""
  675. #: searx/templates/simple/preferences/engines.html:35
  676. #: searx/templates/simple/stats.html:29
  677. msgid "Reliability"
  678. msgstr ""
  679. #: searx/templates/simple/stats.html:59
  680. msgid "Total"
  681. msgstr ""
  682. #: searx/templates/simple/stats.html:60
  683. msgid "HTTP"
  684. msgstr "HTTP"
  685. #: searx/templates/simple/stats.html:61
  686. msgid "Processing"
  687. msgstr ""
  688. #: searx/templates/simple/stats.html:99
  689. msgid "Warnings"
  690. msgstr ""
  691. #: searx/templates/simple/stats.html:99
  692. msgid "Errors and exceptions"
  693. msgstr ""
  694. #: searx/templates/simple/stats.html:105
  695. msgid "Exception"
  696. msgstr ""
  697. #: searx/templates/simple/stats.html:107
  698. msgid "Message"
  699. msgstr ""
  700. #: searx/templates/simple/stats.html:109
  701. msgid "Percentage"
  702. msgstr ""
  703. #: searx/templates/simple/stats.html:111
  704. msgid "Parameter"
  705. msgstr ""
  706. #: searx/templates/simple/result_templates/files.html:36
  707. #: searx/templates/simple/stats.html:119
  708. msgid "Filename"
  709. msgstr ""
  710. #: searx/templates/simple/stats.html:120
  711. msgid "Function"
  712. msgstr ""
  713. #: searx/templates/simple/stats.html:121
  714. msgid "Code"
  715. msgstr ""
  716. #: searx/templates/simple/stats.html:128
  717. msgid "Checker"
  718. msgstr ""
  719. #: searx/templates/simple/stats.html:131
  720. msgid "Failed test"
  721. msgstr ""
  722. #: searx/templates/simple/stats.html:132
  723. msgid "Comment(s)"
  724. msgstr ""
  725. #: searx/templates/simple/elements/apis.html:3
  726. msgid "Download results"
  727. msgstr "Discargar resultatos"
  728. #: searx/templates/simple/elements/engines_msg.html:4
  729. msgid "Messages from the search engines"
  730. msgstr ""
  731. #: searx/templates/simple/elements/engines_msg.html:7
  732. msgid "seconds"
  733. msgstr ""
  734. #: searx/templates/simple/elements/search_url.html:3
  735. msgid "Search URL"
  736. msgstr "Recercar URL"
  737. #: searx/templates/simple/elements/search_url.html:4
  738. #: searx/templates/simple/preferences/cookies.html:54
  739. msgid "Copied"
  740. msgstr ""
  741. #: searx/templates/simple/elements/search_url.html:4
  742. #: searx/templates/simple/preferences/cookies.html:54
  743. msgid "Copy"
  744. msgstr ""
  745. #: searx/templates/simple/elements/suggestions.html:3
  746. msgid "Suggestions"
  747. msgstr "Suggestiones"
  748. #: searx/templates/simple/filters/languages.html:1
  749. #: searx/templates/simple/preferences/language.html:2
  750. msgid "Search language"
  751. msgstr "Lingua pro le recerca"
  752. #: searx/templates/simple/filters/languages.html:4
  753. #: searx/templates/simple/preferences/language.html:7
  754. msgid "Default language"
  755. msgstr "Lingua predefinite"
  756. #: searx/templates/simple/filters/languages.html:8
  757. #: searx/templates/simple/preferences/language.html:11
  758. msgid "Auto-detect"
  759. msgstr ""
  760. #: searx/templates/simple/filters/safesearch.html:1
  761. #: searx/templates/simple/filters/safesearch.html:2
  762. #: searx/templates/simple/filters/safesearch.html:3
  763. #: searx/templates/simple/filters/safesearch.html:4
  764. #: searx/templates/simple/preferences/engines.html:27
  765. #: searx/templates/simple/preferences/safesearch.html:2
  766. msgid "SafeSearch"
  767. msgstr "Filtro de contento potentialmente offensive"
  768. #: searx/templates/simple/filters/safesearch.html:2
  769. #: searx/templates/simple/preferences/safesearch.html:7
  770. msgid "Strict"
  771. msgstr "Rigorose"
  772. #: searx/templates/simple/filters/safesearch.html:3
  773. #: searx/templates/simple/preferences/safesearch.html:11
  774. msgid "Moderate"
  775. msgstr "Moderate"
  776. #: searx/templates/simple/filters/safesearch.html:4
  777. #: searx/templates/simple/preferences/safesearch.html:15
  778. msgid "None"
  779. msgstr "Nulle"
  780. #: searx/templates/simple/filters/time_range.html:1
  781. #: searx/templates/simple/preferences/engines.html:28
  782. msgid "Time range"
  783. msgstr "Intervallo de tempore"
  784. #: searx/templates/simple/filters/time_range.html:3
  785. msgid "Anytime"
  786. msgstr "Aliquando"
  787. #: searx/templates/simple/filters/time_range.html:6
  788. msgid "Last day"
  789. msgstr "Le die passate"
  790. #: searx/templates/simple/filters/time_range.html:9
  791. msgid "Last week"
  792. msgstr "Le septimana passate"
  793. #: searx/templates/simple/filters/time_range.html:12
  794. msgid "Last month"
  795. msgstr "Le mense passate"
  796. #: searx/templates/simple/filters/time_range.html:15
  797. msgid "Last year"
  798. msgstr "Le anno passate"
  799. #: searx/templates/simple/messages/no_cookies.html:3
  800. msgid "Information!"
  801. msgstr "Information!"
  802. #: searx/templates/simple/messages/no_cookies.html:4
  803. msgid "currently, there are no cookies defined."
  804. msgstr "actualmente, il non ha cookies definite."
  805. #: searx/templates/simple/messages/no_results.html:6
  806. msgid "Sorry!"
  807. msgstr "Pardono!"
  808. #: searx/templates/simple/messages/no_results.html:12
  809. msgid "No results were found. You can try to:"
  810. msgstr ""
  811. #: searx/templates/simple/messages/no_results.html:14
  812. msgid "There are no more results. You can try to:"
  813. msgstr ""
  814. #: searx/templates/simple/messages/no_results.html:19
  815. msgid "Refresh the page."
  816. msgstr ""
  817. #: searx/templates/simple/messages/no_results.html:20
  818. msgid "Search for another query or select another category (above)."
  819. msgstr ""
  820. #: searx/templates/simple/messages/no_results.html:21
  821. msgid "Change the search engine used in the preferences:"
  822. msgstr ""
  823. #: searx/templates/simple/messages/no_results.html:22
  824. msgid "Switch to another instance:"
  825. msgstr ""
  826. #: searx/templates/simple/messages/no_results.html:24
  827. msgid "Search for another query or select another category."
  828. msgstr ""
  829. #: searx/templates/simple/messages/no_results.html:25
  830. msgid "Go back to the previous page using the previous page button."
  831. msgstr ""
  832. #: searx/templates/simple/preferences/answerers.html:4
  833. #: searx/templates/simple/preferences/engines.html:23
  834. msgid "Allow"
  835. msgstr "Permitter"
  836. #: searx/templates/simple/preferences/answerers.html:5
  837. msgid "Keywords"
  838. msgstr "Parolas clave"
  839. #: searx/templates/simple/preferences/answerers.html:6
  840. #: searx/templates/simple/result_templates/packages.html:7
  841. msgid "Name"
  842. msgstr "Nomine"
  843. #: searx/templates/simple/preferences/answerers.html:7
  844. msgid "Description"
  845. msgstr "Description"
  846. #: searx/templates/simple/preferences/answerers.html:8
  847. msgid "Examples"
  848. msgstr "Exemplos"
  849. #: searx/templates/simple/preferences/answerers.html:13
  850. msgid "This is the list of SearXNG's instant answering modules."
  851. msgstr ""
  852. #: searx/templates/simple/preferences/answerers.html:29
  853. msgid "This is the list of plugins."
  854. msgstr ""
  855. #: searx/templates/simple/preferences/autocomplete.html:2
  856. msgid "Autocomplete"
  857. msgstr "Autocompletar"
  858. #: searx/templates/simple/preferences/autocomplete.html:15
  859. msgid "Find stuff as you type"
  860. msgstr "Trova cosas durante que tu scribe"
  861. #: searx/templates/simple/preferences/center_alignment.html:2
  862. msgid "Center Alignment"
  863. msgstr ""
  864. #: searx/templates/simple/preferences/center_alignment.html:14
  865. msgid "Displays results in the center of the page (Oscar layout)."
  866. msgstr ""
  867. #: searx/templates/simple/preferences/cookies.html:2
  868. msgid ""
  869. "This is the list of cookies and their values SearXNG is storing on your "
  870. "computer."
  871. msgstr ""
  872. #: searx/templates/simple/preferences/cookies.html:3
  873. msgid "With that list, you can assess SearXNG transparency."
  874. msgstr ""
  875. #: searx/templates/simple/preferences/cookies.html:9
  876. msgid "Cookie name"
  877. msgstr "Nomine de cookie"
  878. #: searx/templates/simple/preferences/cookies.html:10
  879. msgid "Value"
  880. msgstr "Valor"
  881. #: searx/templates/simple/preferences/cookies.html:23
  882. msgid "Search URL of the currently saved preferences"
  883. msgstr "URL de Recerca del preferentias actualmente salvate"
  884. #: searx/templates/simple/preferences/cookies.html:32
  885. msgid ""
  886. "Note: specifying custom settings in the search URL can reduce privacy by "
  887. "leaking data to the clicked result sites."
  888. msgstr ""
  889. "Nota: specificar configurationes personalisate in le URL de Recerca pote "
  890. "reducer le confidentialitate per lassar escappar datos al sitos cliccate "
  891. "in le resultatos."
  892. #: searx/templates/simple/preferences/cookies.html:35
  893. msgid "URL to restore your preferences in another browser"
  894. msgstr ""
  895. #: searx/templates/simple/preferences/cookies.html:43
  896. msgid ""
  897. "Specifying custom settings in the preferences URL can be used to sync "
  898. "preferences across devices."
  899. msgstr ""
  900. #: searx/templates/simple/preferences/cookies.html:46
  901. msgid "Copy preferences hash"
  902. msgstr ""
  903. #: searx/templates/simple/preferences/cookies.html:57
  904. msgid "Insert copied preferences hash (without URL) to restore"
  905. msgstr ""
  906. #: searx/templates/simple/preferences/cookies.html:59
  907. msgid "Preferences hash"
  908. msgstr ""
  909. #: searx/templates/simple/preferences/doi_resolver.html:2
  910. msgid "Open Access DOI resolver"
  911. msgstr ""
  912. #: searx/templates/simple/preferences/doi_resolver.html:14
  913. msgid "Select service used by DOI rewrite"
  914. msgstr ""
  915. #: searx/templates/simple/preferences/engines.html:9
  916. msgid ""
  917. "This tab does not exists in the user interface, but you can search in "
  918. "these engines by its !bangs."
  919. msgstr ""
  920. #: searx/templates/simple/preferences/engines.html:15
  921. msgid "Enable all"
  922. msgstr ""
  923. #: searx/templates/simple/preferences/engines.html:16
  924. msgid "Disable all"
  925. msgstr ""
  926. #: searx/templates/simple/preferences/engines.html:25
  927. msgid "!bang"
  928. msgstr ""
  929. #: searx/templates/simple/preferences/engines.html:26
  930. msgid "Supports selected language"
  931. msgstr "Supporta le lingua selectionate"
  932. #: searx/templates/simple/preferences/engines.html:29
  933. msgid "Weight"
  934. msgstr ""
  935. #: searx/templates/simple/preferences/engines.html:33
  936. msgid "Max time"
  937. msgstr "Tempore maxime"
  938. #: searx/templates/simple/preferences/favicon.html:2
  939. msgid "Favicon Resolver"
  940. msgstr ""
  941. #: searx/templates/simple/preferences/favicon.html:15
  942. msgid "Display favicons near search results"
  943. msgstr ""
  944. #: searx/templates/simple/preferences/footer.html:2
  945. msgid ""
  946. "These settings are stored in your cookies, this allows us not to store "
  947. "this data about you."
  948. msgstr ""
  949. "Iste preferentias es salvate in tu cookies, le qual permitte nos non "
  950. "salvar iste datos super vos."
  951. #: searx/templates/simple/preferences/footer.html:3
  952. msgid ""
  953. "These cookies serve your sole convenience, we don't use these cookies to "
  954. "track you."
  955. msgstr ""
  956. "Iste cookies servi solmente a tu convenientia, nos non usa iste cookies "
  957. "pro traciar te."
  958. #: searx/templates/simple/preferences/footer.html:6
  959. msgid "Save"
  960. msgstr ""
  961. #: searx/templates/simple/preferences/footer.html:9
  962. msgid "Reset defaults"
  963. msgstr "Restablir configurationes"
  964. #: searx/templates/simple/preferences/footer.html:13
  965. msgid "Back"
  966. msgstr ""
  967. #: searx/templates/simple/preferences/hotkeys.html:2
  968. msgid "Hotkeys"
  969. msgstr ""
  970. #: searx/templates/simple/preferences/hotkeys.html:13
  971. msgid "Vim-like"
  972. msgstr ""
  973. #: searx/templates/simple/preferences/hotkeys.html:18
  974. msgid ""
  975. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  976. "key on main or result page to get help."
  977. msgstr ""
  978. #: searx/templates/simple/preferences/image_proxy.html:2
  979. msgid "Image proxy"
  980. msgstr "Proxy pro imagines"
  981. #: searx/templates/simple/preferences/image_proxy.html:14
  982. msgid "Proxying image results through SearXNG"
  983. msgstr ""
  984. #: searx/templates/simple/preferences/infinite_scroll.html:2
  985. msgid "Infinite scroll"
  986. msgstr "Rolamento infinite"
  987. #: searx/templates/simple/preferences/infinite_scroll.html:14
  988. msgid "Automatically load next page when scrolling to bottom of current page"
  989. msgstr ""
  990. "Automaticamente cargar le proxime pagina quando arrivar al fundo del "
  991. "pagina actual"
  992. #: searx/templates/simple/preferences/language.html:24
  993. msgid "What language do you prefer for search?"
  994. msgstr "Qual lingua tu prefere pro recercar?"
  995. #: searx/templates/simple/preferences/language.html:25
  996. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  997. msgstr ""
  998. #: searx/templates/simple/preferences/method.html:2
  999. msgid "HTTP Method"
  1000. msgstr ""
  1001. #: searx/templates/simple/preferences/method.html:14
  1002. msgid "Change how forms are submitted"
  1003. msgstr ""
  1004. #: searx/templates/simple/preferences/query_in_title.html:2
  1005. msgid "Query in the page's title"
  1006. msgstr ""
  1007. #: searx/templates/simple/preferences/query_in_title.html:14
  1008. msgid ""
  1009. "When enabled, the result page's title contains your query. Your browser "
  1010. "can record this title"
  1011. msgstr ""
  1012. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1013. msgid "Results on new tabs"
  1014. msgstr "Resultatos sur nove schedas"
  1015. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1016. msgid "Open result links on new browser tabs"
  1017. msgstr "Aperir le resultatos sur nove schedas del navigator"
  1018. #: searx/templates/simple/preferences/safesearch.html:20
  1019. msgid "Filter content"
  1020. msgstr "Filtrar contento"
  1021. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1022. msgid "Search on category select"
  1023. msgstr "Recercar in le categoria selectionate"
  1024. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1025. msgid ""
  1026. "Perform search immediately if a category selected. Disable to select "
  1027. "multiple categories"
  1028. msgstr ""
  1029. #: searx/templates/simple/preferences/theme.html:2
  1030. msgid "Theme"
  1031. msgstr ""
  1032. #: searx/templates/simple/preferences/theme.html:14
  1033. msgid "Change SearXNG layout"
  1034. msgstr ""
  1035. #: searx/templates/simple/preferences/theme.html:19
  1036. msgid "Theme style"
  1037. msgstr ""
  1038. #: searx/templates/simple/preferences/theme.html:31
  1039. msgid "Choose auto to follow your browser settings"
  1040. msgstr ""
  1041. #: searx/templates/simple/preferences/tokens.html:2
  1042. msgid "Engine tokens"
  1043. msgstr ""
  1044. #: searx/templates/simple/preferences/tokens.html:9
  1045. msgid "Access tokens for private engines"
  1046. msgstr ""
  1047. #: searx/templates/simple/preferences/ui_locale.html:2
  1048. msgid "Interface language"
  1049. msgstr "Lingua del interfacie"
  1050. #: searx/templates/simple/preferences/ui_locale.html:14
  1051. msgid "Change the language of the layout"
  1052. msgstr "Cambia le lingua del interfacie"
  1053. #: searx/templates/simple/preferences/urlformatting.html:2
  1054. msgid "URL formatting"
  1055. msgstr ""
  1056. #: searx/templates/simple/preferences/urlformatting.html:8
  1057. msgid "Pretty"
  1058. msgstr ""
  1059. #: searx/templates/simple/preferences/urlformatting.html:13
  1060. msgid "Full"
  1061. msgstr ""
  1062. #: searx/templates/simple/preferences/urlformatting.html:18
  1063. msgid "Host"
  1064. msgstr ""
  1065. #: searx/templates/simple/preferences/urlformatting.html:23
  1066. msgid "Change result URL formatting"
  1067. msgstr ""
  1068. #: searx/templates/simple/result_templates/code.html:13
  1069. msgid "repo"
  1070. msgstr ""
  1071. #: searx/templates/simple/result_templates/default.html:6
  1072. #: searx/templates/simple/result_templates/files.html:8
  1073. #: searx/templates/simple/result_templates/files.html:11
  1074. msgid "show media"
  1075. msgstr "monstrar multimedia"
  1076. #: searx/templates/simple/result_templates/default.html:6
  1077. #: searx/templates/simple/result_templates/files.html:8
  1078. msgid "hide media"
  1079. msgstr "occultar multimedia"
  1080. #: searx/templates/simple/result_templates/default.html:14
  1081. #: searx/templates/simple/result_templates/videos.html:14
  1082. msgid "This site did not provide any description."
  1083. msgstr ""
  1084. #: searx/templates/simple/result_templates/files.html:38
  1085. #: searx/templates/simple/result_templates/images.html:22
  1086. #: searx/templates/simple/result_templates/torrent.html:11
  1087. msgid "Filesize"
  1088. msgstr "Dimension del file"
  1089. #: searx/templates/simple/result_templates/files.html:40
  1090. msgid "Date"
  1091. msgstr ""
  1092. #: searx/templates/simple/result_templates/files.html:42
  1093. #: searx/templates/simple/result_templates/paper.html:24
  1094. msgid "Type"
  1095. msgstr ""
  1096. #: searx/templates/simple/result_templates/images.html:20
  1097. msgid "Resolution"
  1098. msgstr ""
  1099. #: searx/templates/simple/result_templates/images.html:21
  1100. msgid "Format"
  1101. msgstr ""
  1102. #: searx/templates/simple/result_templates/images.html:24
  1103. msgid "Engine"
  1104. msgstr ""
  1105. #: searx/templates/simple/result_templates/images.html:25
  1106. msgid "View source"
  1107. msgstr "Vider fonte"
  1108. #: searx/templates/simple/result_templates/map.html:12
  1109. msgid "address"
  1110. msgstr ""
  1111. #: searx/templates/simple/result_templates/map.html:43
  1112. msgid "show map"
  1113. msgstr "monstrar mappa"
  1114. #: searx/templates/simple/result_templates/map.html:43
  1115. msgid "hide map"
  1116. msgstr "occultar mappa"
  1117. #: searx/templates/simple/result_templates/packages.html:12
  1118. msgid "Version"
  1119. msgstr ""
  1120. #: searx/templates/simple/result_templates/packages.html:18
  1121. msgid "Maintainer"
  1122. msgstr ""
  1123. #: searx/templates/simple/result_templates/packages.html:24
  1124. msgid "Updated at"
  1125. msgstr ""
  1126. #: searx/templates/simple/result_templates/packages.html:30
  1127. #: searx/templates/simple/result_templates/paper.html:25
  1128. msgid "Tags"
  1129. msgstr ""
  1130. #: searx/templates/simple/result_templates/packages.html:36
  1131. msgid "Popularity"
  1132. msgstr ""
  1133. #: searx/templates/simple/result_templates/packages.html:42
  1134. msgid "License"
  1135. msgstr ""
  1136. #: searx/templates/simple/result_templates/packages.html:52
  1137. msgid "Project"
  1138. msgstr ""
  1139. #: searx/templates/simple/result_templates/packages.html:55
  1140. msgid "Project homepage"
  1141. msgstr ""
  1142. #: searx/templates/simple/result_templates/paper.html:5
  1143. msgid "Published date"
  1144. msgstr ""
  1145. #: searx/templates/simple/result_templates/paper.html:9
  1146. msgid "Journal"
  1147. msgstr ""
  1148. #: searx/templates/simple/result_templates/paper.html:22
  1149. msgid "Editor"
  1150. msgstr ""
  1151. #: searx/templates/simple/result_templates/paper.html:23
  1152. msgid "Publisher"
  1153. msgstr ""
  1154. #: searx/templates/simple/result_templates/paper.html:26
  1155. msgid "DOI"
  1156. msgstr "DOI"
  1157. #: searx/templates/simple/result_templates/paper.html:27
  1158. msgid "ISSN"
  1159. msgstr "ISSN"
  1160. #: searx/templates/simple/result_templates/paper.html:28
  1161. msgid "ISBN"
  1162. msgstr "ISBN"
  1163. #: searx/templates/simple/result_templates/paper.html:33
  1164. msgid "PDF"
  1165. msgstr "PDF"
  1166. #: searx/templates/simple/result_templates/paper.html:34
  1167. msgid "HTML"
  1168. msgstr "HTML"
  1169. #: searx/templates/simple/result_templates/torrent.html:6
  1170. msgid "magnet link"
  1171. msgstr "ligamine magnetic"
  1172. #: searx/templates/simple/result_templates/torrent.html:7
  1173. msgid "torrent file"
  1174. msgstr "file torrente"
  1175. #: searx/templates/simple/result_templates/torrent.html:9
  1176. msgid "Seeder"
  1177. msgstr "Seeder"
  1178. #: searx/templates/simple/result_templates/torrent.html:9
  1179. msgid "Leecher"
  1180. msgstr "Leecher"
  1181. #: searx/templates/simple/result_templates/torrent.html:13
  1182. msgid "Number of Files"
  1183. msgstr "Numero de Files"
  1184. #: searx/templates/simple/result_templates/videos.html:6
  1185. msgid "show video"
  1186. msgstr "monstrar video"
  1187. #: searx/templates/simple/result_templates/videos.html:6
  1188. msgid "hide video"
  1189. msgstr "occultar video"
  1190. #~ msgid "Engine time (sec)"
  1191. #~ msgstr "Tempore de motor (secundas)"
  1192. #~ msgid "Page loads (sec)"
  1193. #~ msgstr "Cargas de pagina (secundas)"
  1194. #~ msgid "Errors"
  1195. #~ msgstr "Errores"
  1196. #~ msgid "CAPTCHA required"
  1197. #~ msgstr ""
  1198. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1199. #~ msgstr "Rescriber ligamines HTTP a HTTPS si possibile"
  1200. #~ msgid ""
  1201. #~ "Results are opened in the same "
  1202. #~ "window by default. This plugin "
  1203. #~ "overwrites the default behaviour to open"
  1204. #~ " links on new tabs/windows. (JavaScript "
  1205. #~ "required)"
  1206. #~ msgstr ""
  1207. #~ "Resultatos es aperite in le mesme "
  1208. #~ "fenestra per predefinition. Iste extension "
  1209. #~ "superscribe le comportamento predefinite pro"
  1210. #~ " aperir ligamines in nove "
  1211. #~ "schedas/fenestras. (JavaScript es necessari)"
  1212. #~ msgid "Color"
  1213. #~ msgstr "Color"
  1214. #~ msgid "Blue (default)"
  1215. #~ msgstr "Blau (standard)"
  1216. #~ msgid "Violet"
  1217. #~ msgstr "Violette"
  1218. #~ msgid "Green"
  1219. #~ msgstr "Verde"
  1220. #~ msgid "Cyan"
  1221. #~ msgstr "Cyano"
  1222. #~ msgid "Orange"
  1223. #~ msgstr "Orange"
  1224. #~ msgid "Red"
  1225. #~ msgstr "Rubie"
  1226. #~ msgid "Category"
  1227. #~ msgstr "Categoria"
  1228. #~ msgid "Block"
  1229. #~ msgstr "Blocar"
  1230. #~ msgid "original context"
  1231. #~ msgstr "contexto original"
  1232. #~ msgid "Plugins"
  1233. #~ msgstr "Extensiones"
  1234. #~ msgid "Answerers"
  1235. #~ msgstr "Modulos de Responsa"
  1236. #~ msgid "Avg. time"
  1237. #~ msgstr "Tempore medie"
  1238. #~ msgid "show details"
  1239. #~ msgstr "monstrar detalios"
  1240. #~ msgid "hide details"
  1241. #~ msgstr "occultar detalios"
  1242. #~ msgid "Load more..."
  1243. #~ msgstr "Cargar plus..."
  1244. #~ msgid "Loading..."
  1245. #~ msgstr ""
  1246. #~ msgid "Change searx layout"
  1247. #~ msgstr "Cambiar le interfacie de searx"
  1248. #~ msgid "Proxying image results through searx"
  1249. #~ msgstr "Usar proxy pro obtener resultatos de imagines per searx"
  1250. #~ msgid "This is the list of searx's instant answering modules."
  1251. #~ msgstr "Isto es le lista del modulos de responsa instantanee de searx."
  1252. #~ msgid ""
  1253. #~ "This is the list of cookies and"
  1254. #~ " their values searx is storing on "
  1255. #~ "your computer."
  1256. #~ msgstr ""
  1257. #~ "Isto es le lista de cookies e "
  1258. #~ "lor valores que searx salva in tu"
  1259. #~ " computator."
  1260. #~ msgid "With that list, you can assess searx transparency."
  1261. #~ msgstr "Per iste lista, tu pote evalutar le transparentia de searx."
  1262. #~ msgid "It look like you are using searx first time."
  1263. #~ msgstr "Il pare que tu usa searx pro le prime vice."
  1264. #~ msgid "Please, try again later or find another searx instance."
  1265. #~ msgstr ""
  1266. #~ "Per favor, essaya de novo plus "
  1267. #~ "tarde o trova un altere instantia "
  1268. #~ "de searx"
  1269. #~ msgid "Themes"
  1270. #~ msgstr "Themas"
  1271. #~ msgid "Reliablity"
  1272. #~ msgstr ""
  1273. #~ msgid ""
  1274. #~ "When enabled, the result page's title"
  1275. #~ " contains your query. Your browser "
  1276. #~ "can record this title."
  1277. #~ msgstr ""
  1278. #~ msgid "Method"
  1279. #~ msgstr "Methodo"
  1280. #~ msgid ""
  1281. #~ "This tab does not show up for "
  1282. #~ "search results but you can search "
  1283. #~ "the engines listed here via bangs."
  1284. #~ msgstr ""
  1285. #~ msgid "Advanced settings"
  1286. #~ msgstr "Configurationes avantiate"
  1287. #~ msgid "Close"
  1288. #~ msgstr "Clauder"
  1289. #~ msgid "Language"
  1290. #~ msgstr ""
  1291. #~ msgid "broken"
  1292. #~ msgstr ""
  1293. #~ msgid "supported"
  1294. #~ msgstr "supportate"
  1295. #~ msgid "not supported"
  1296. #~ msgstr "non supportate"
  1297. #~ msgid "about"
  1298. #~ msgstr "a proposito"
  1299. #~ msgid "Avg."
  1300. #~ msgstr ""
  1301. #~ msgid "User Interface"
  1302. #~ msgstr ""
  1303. #~ msgid "Choose style for this theme"
  1304. #~ msgstr "Selectiona un stilo pro iste thema"
  1305. #~ msgid "Style"
  1306. #~ msgstr "Stilo"
  1307. #~ msgid "Show advanced settings"
  1308. #~ msgstr ""
  1309. #~ msgid "Show advanced settings panel in the home page by default"
  1310. #~ msgstr ""
  1311. #~ msgid "Allow all"
  1312. #~ msgstr ""
  1313. #~ msgid "Disable all"
  1314. #~ msgstr ""
  1315. #~ msgid "Selected language"
  1316. #~ msgstr "Lingua selectionate"
  1317. #~ msgid "Query"
  1318. #~ msgstr ""
  1319. #~ msgid "save"
  1320. #~ msgstr "salveguardar"
  1321. #~ msgid "back"
  1322. #~ msgstr "retroceder"
  1323. #~ msgid "Links"
  1324. #~ msgstr "Ligamines"
  1325. #~ msgid "RSS subscription"
  1326. #~ msgstr ""
  1327. #~ msgid "Search results"
  1328. #~ msgstr "Resultatos de recerca"
  1329. #~ msgid "next page"
  1330. #~ msgstr "pagina sequente"
  1331. #~ msgid "previous page"
  1332. #~ msgstr "pagina previe"
  1333. #~ msgid "Start search"
  1334. #~ msgstr "Initiar recerca"
  1335. #~ msgid "Clear search"
  1336. #~ msgstr ""
  1337. #~ msgid "Clear"
  1338. #~ msgstr ""
  1339. #~ msgid "stats"
  1340. #~ msgstr "statisticas"
  1341. #~ msgid "Heads up!"
  1342. #~ msgstr "Attention!"
  1343. #~ msgid "It look like you are using SearXNG first time."
  1344. #~ msgstr ""
  1345. #~ msgid "Well done!"
  1346. #~ msgstr "Bravo!"
  1347. #~ msgid "Settings saved successfully."
  1348. #~ msgstr "Le configurationes es salvate con successo."
  1349. #~ msgid "Oh snap!"
  1350. #~ msgstr "Oh no!"
  1351. #~ msgid "Something went wrong."
  1352. #~ msgstr "Alco occurreva mal."
  1353. #~ msgid "Date"
  1354. #~ msgstr ""
  1355. #~ msgid "Type"
  1356. #~ msgstr ""
  1357. #~ msgid "Get image"
  1358. #~ msgstr "Obtener imagine"
  1359. #~ msgid "Center Alignment"
  1360. #~ msgstr ""
  1361. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1362. #~ msgstr ""
  1363. #~ msgid "preferences"
  1364. #~ msgstr "preferentias"
  1365. #~ msgid "Scores per result"
  1366. #~ msgstr "Punctos per resultato"
  1367. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1368. #~ msgstr ""
  1369. #~ "un motor de meta-recerca, capabile "
  1370. #~ "de reprogrammation e respectuose al "
  1371. #~ "confidentialitate"
  1372. #~ msgid "No abstract is available for this publication."
  1373. #~ msgstr ""
  1374. #~ msgid "Self Informations"
  1375. #~ msgstr ""
  1376. #~ msgid ""
  1377. #~ "Change how forms are submited, <a "
  1378. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1379. #~ " rel=\"external\">learn more about request "
  1380. #~ "methods</a>"
  1381. #~ msgstr ""
  1382. #~ "Cambiar como le formularios es "
  1383. #~ "submittite. <a "
  1384. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1385. #~ " rel=\"external\"> apprende plus re "
  1386. #~ "methodos de requesta </a>"
  1387. #~ msgid ""
  1388. #~ "This plugin checks if the address "
  1389. #~ "of the request is a TOR exit "
  1390. #~ "node, and informs the user if it"
  1391. #~ " is, like check.torproject.org but from "
  1392. #~ "searxng."
  1393. #~ msgstr ""
  1394. #~ msgid ""
  1395. #~ "The TOR exit node list "
  1396. #~ "(https://check.torproject.org/exit-addresses) is "
  1397. #~ "unreachable."
  1398. #~ msgstr ""
  1399. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1400. #~ msgstr ""
  1401. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1402. #~ msgstr ""
  1403. #~ msgid ""
  1404. #~ "The could not download the list of"
  1405. #~ " Tor exit-nodes from "
  1406. #~ "https://check.torproject.org/exit-addresses."
  1407. #~ msgstr ""
  1408. #~ msgid ""
  1409. #~ "You are using Tor. It looks like"
  1410. #~ " you have this external IP address:"
  1411. #~ " {ip_address}."
  1412. #~ msgstr ""
  1413. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1414. #~ msgstr ""
  1415. #~ msgid "Autodetect search language"
  1416. #~ msgstr ""
  1417. #~ msgid "Automatically detect the query search language and switch to it."
  1418. #~ msgstr ""
  1419. #~ msgid "others"
  1420. #~ msgstr ""
  1421. #~ msgid ""
  1422. #~ "This tab does not show up for "
  1423. #~ "search results, but you can search "
  1424. #~ "the engines listed here via bangs."
  1425. #~ msgstr ""
  1426. #~ msgid "Shortcut"
  1427. #~ msgstr "Via breve"
  1428. #~ msgid "!bang"
  1429. #~ msgstr ""
  1430. #~ msgid ""
  1431. #~ "This tab dues not exists in the"
  1432. #~ " user interface, but you can search"
  1433. #~ " in these engines by its !bangs."
  1434. #~ msgstr ""
  1435. #~ msgid "Engines cannot retrieve results."
  1436. #~ msgstr "Le motores non poteva obtener resultatos."
  1437. #~ msgid "Please, try again later or find another SearXNG instance."
  1438. #~ msgstr ""
  1439. #~ msgid ""
  1440. #~ "Redirect to open-access versions of "
  1441. #~ "publications when available (plugin required)"
  1442. #~ msgstr ""
  1443. #~ msgid "Bang"
  1444. #~ msgstr "!bang"
  1445. #~ msgid ""
  1446. #~ "Change how forms are submitted, <a "
  1447. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1448. #~ " rel=\"external\">learn more about request "
  1449. #~ "methods</a>"
  1450. #~ msgstr ""
  1451. #~ msgid "On"
  1452. #~ msgstr "Activate"
  1453. #~ msgid "Off"
  1454. #~ msgstr "Disactivate"
  1455. #~ msgid "Enabled"
  1456. #~ msgstr "Activate"
  1457. #~ msgid "Disabled"
  1458. #~ msgstr "Disactivate"
  1459. #~ msgid ""
  1460. #~ "Perform search immediately if a category"
  1461. #~ " selected. Disable to select multiple "
  1462. #~ "categories. (JavaScript required)"
  1463. #~ msgstr ""
  1464. #~ "Exequer le recerca immediatemente si un"
  1465. #~ " categoria es selectionate. Disactiva lo"
  1466. #~ " pro selectionar multiple categorias. "
  1467. #~ "(JavaScript es necessari)"
  1468. #~ msgid "Vim-like hotkeys"
  1469. #~ msgstr "Vias breve de claviero tal como in Vim"
  1470. #~ msgid ""
  1471. #~ "Navigate search results with Vim-like"
  1472. #~ " hotkeys (JavaScript required). Press \"h\""
  1473. #~ " key on main or result page to"
  1474. #~ " get help."
  1475. #~ msgstr ""
  1476. #~ "Navigar in le resultatos de recerca "
  1477. #~ "per vias breve de claviero à la"
  1478. #~ " Vim (JavaScript es necessari). Pulsa "
  1479. #~ "le clave \"h\" super le pagina del"
  1480. #~ " resultato pro obtener adjuta."
  1481. #~ msgid ""
  1482. #~ "we didn't find any results. Please "
  1483. #~ "use another query or search in "
  1484. #~ "more categories."
  1485. #~ msgstr ""
  1486. #~ "Nos trovava nulle resultatos. Per favor,"
  1487. #~ " usa altere consulta o recerca in "
  1488. #~ "plus categorias."
  1489. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1490. #~ msgstr ""
  1491. #~ msgid "Bytes"
  1492. #~ msgstr "Bytes"
  1493. #~ msgid "kiB"
  1494. #~ msgstr "kiB"
  1495. #~ msgid "MiB"
  1496. #~ msgstr "MiB"
  1497. #~ msgid "GiB"
  1498. #~ msgstr "GiB"
  1499. #~ msgid "TiB"
  1500. #~ msgstr "TiB"
  1501. #~ msgid "Hostname replace"
  1502. #~ msgstr ""
  1503. #~ msgid "Error!"
  1504. #~ msgstr "Error!"
  1505. #~ msgid "Engines cannot retrieve results"
  1506. #~ msgstr "Le motores non poteva obtener resultatos"
  1507. #~ msgid "Start submiting a new issue on GitHub"
  1508. #~ msgstr ""