messages.po 38 KB

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