messages.po 65 KB

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