messages.po 48 KB

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