messages.po 62 KB

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