messages.po 45 KB

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