messages.po 45 KB

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