messages.po 72 KB

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