messages.po 50 KB

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