messages.po 48 KB

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