messages.po 71 KB

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