messages.po 57 KB

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