messages.po 38 KB

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