messages.po 52 KB

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