messages.po 71 KB

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