messages.po 69 KB

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