messages.po 66 KB

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