messages.po 59 KB

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