messages.po 71 KB

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