messages.po 42 KB

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