messages.po 57 KB

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