messages.po 56 KB

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