messages.po 44 KB

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