messages.po 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986
  1. # French translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Alexandre Flament <alex@al-f.net>, 2017-2018, 2022.
  7. # Benjamin Sonntag <benjamin@sonntag.fr>, 2014
  8. # Cqoicebordel, 2014
  9. # Cqoicebordel, 2014-2017,2020
  10. # Étienne Deparis <etienne@depar.is>, 2019
  11. # FIRST AUTHOR <EMAIL@ADDRESS>, 2014
  12. # Noémi Ványi <sitbackandwait@gmail.com>, 2017
  13. # rike, 2014
  14. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  15. # Cedrik Boudreau <cedrik@arweave.org>, 2022.
  16. # Peter Martin <weblate@pe7er.com>, 2022.
  17. # NoEnd-yt <isaac.landau2104@gmail.com>, 2023.
  18. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  19. # microsoftocsharp <kottiberyu@gmail.com>, 2023.
  20. # quenty_occitania <quentinantonin@free.fr>, 2023.
  21. # GeoffreyGx <GeoffreyGx@users.noreply.translate.codeberg.org>, 2024.
  22. # Heyian <Heyian@users.noreply.translate.codeberg.org>, 2024.
  23. # return42 <return42@users.noreply.translate.codeberg.org>, 2024.
  24. # Vulcain <Vulcain@users.noreply.translate.codeberg.org>, 2024.
  25. # wags07 <wags07@users.noreply.translate.codeberg.org>, 2024.
  26. # Aeris1One <Aeris1One@users.noreply.translate.codeberg.org>, 2024.
  27. msgid ""
  28. msgstr ""
  29. "Project-Id-Version: searx\n"
  30. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  31. "POT-Creation-Date: 2024-09-03 15:52+0000\n"
  32. "PO-Revision-Date: 2024-08-14 16:18+0000\n"
  33. "Last-Translator: Aeris1One "
  34. "<Aeris1One@users.noreply.translate.codeberg.org>\n"
  35. "Language: fr\n"
  36. "Language-Team: French "
  37. "<https://translate.codeberg.org/projects/searxng/searxng/fr/>\n"
  38. "Plural-Forms: nplurals=2; plural=n > 1;\n"
  39. "MIME-Version: 1.0\n"
  40. "Content-Type: text/plain; charset=utf-8\n"
  41. "Content-Transfer-Encoding: 8bit\n"
  42. "Generated-By: Babel 2.16.0\n"
  43. #. CONSTANT_NAMES['NO_SUBGROUPING']
  44. #: searx/searxng.msg
  45. msgid "without further subgrouping"
  46. msgstr "sans autre sous-groupe"
  47. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  48. #: searx/searxng.msg
  49. msgid "other"
  50. msgstr "autre"
  51. #. CATEGORY_NAMES['FILES']
  52. #: searx/searxng.msg
  53. msgid "files"
  54. msgstr "fichiers"
  55. #. CATEGORY_NAMES['GENERAL']
  56. #: searx/searxng.msg
  57. msgid "general"
  58. msgstr "général"
  59. #. CATEGORY_NAMES['MUSIC']
  60. #: searx/searxng.msg
  61. msgid "music"
  62. msgstr "musique"
  63. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  64. #: searx/searxng.msg
  65. msgid "social media"
  66. msgstr "réseaux sociaux"
  67. #. CATEGORY_NAMES['IMAGES']
  68. #: searx/searxng.msg
  69. msgid "images"
  70. msgstr "images"
  71. #. CATEGORY_NAMES['VIDEOS']
  72. #: searx/searxng.msg
  73. msgid "videos"
  74. msgstr "vidéos"
  75. #. CATEGORY_NAMES['RADIO']
  76. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  77. msgid "radio"
  78. msgstr "radio"
  79. #. CATEGORY_NAMES['TV']
  80. #: searx/searxng.msg
  81. msgid "tv"
  82. msgstr "tv"
  83. #. CATEGORY_NAMES['IT']
  84. #: searx/searxng.msg
  85. msgid "it"
  86. msgstr "informatique"
  87. #. CATEGORY_NAMES['NEWS']
  88. #: searx/searxng.msg
  89. msgid "news"
  90. msgstr "actualités"
  91. #. CATEGORY_NAMES['MAP']
  92. #: searx/searxng.msg
  93. msgid "map"
  94. msgstr "carte"
  95. #. CATEGORY_NAMES['ONIONS']
  96. #: searx/searxng.msg
  97. msgid "onions"
  98. msgstr "onions"
  99. #. CATEGORY_NAMES['SCIENCE']
  100. #: searx/searxng.msg
  101. msgid "science"
  102. msgstr "science"
  103. #. CATEGORY_GROUPS['APPS']
  104. #: searx/searxng.msg
  105. msgid "apps"
  106. msgstr "applications"
  107. #. CATEGORY_GROUPS['DICTIONARIES']
  108. #: searx/searxng.msg
  109. msgid "dictionaries"
  110. msgstr "dictionnaires"
  111. #. CATEGORY_GROUPS['LYRICS']
  112. #: searx/searxng.msg
  113. msgid "lyrics"
  114. msgstr "paroles"
  115. #. CATEGORY_GROUPS['PACKAGES']
  116. #: searx/searxng.msg
  117. msgid "packages"
  118. msgstr "paquets"
  119. #. CATEGORY_GROUPS['Q_A']
  120. #: searx/searxng.msg
  121. msgid "q&a"
  122. msgstr "questions/réponses"
  123. #. CATEGORY_GROUPS['REPOS']
  124. #: searx/searxng.msg
  125. msgid "repos"
  126. msgstr "dépôts"
  127. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  128. #: searx/searxng.msg
  129. msgid "software wikis"
  130. msgstr "documentations d'applications"
  131. #. CATEGORY_GROUPS['WEB']
  132. #: searx/searxng.msg
  133. msgid "web"
  134. msgstr "web"
  135. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  136. #: searx/searxng.msg
  137. msgid "scientific publications"
  138. msgstr "publications scientifiques"
  139. #. STYLE_NAMES['AUTO']
  140. #: searx/searxng.msg
  141. msgid "auto"
  142. msgstr "auto"
  143. #. STYLE_NAMES['LIGHT']
  144. #: searx/searxng.msg
  145. msgid "light"
  146. msgstr "clair"
  147. #. STYLE_NAMES['DARK']
  148. #: searx/searxng.msg
  149. msgid "dark"
  150. msgstr "sombre"
  151. #. BRAND_CUSTOM_LINKS['UPTIME']
  152. #: searx/searxng.msg
  153. msgid "Uptime"
  154. msgstr "Temps de fonctionnement"
  155. #. BRAND_CUSTOM_LINKS['ABOUT']
  156. #: searx/searxng.msg searx/templates/simple/base.html:50
  157. msgid "About"
  158. msgstr "À propos"
  159. #. WEATHER_TERMS['AVERAGE TEMP.']
  160. #: searx/searxng.msg
  161. msgid "Average temp."
  162. msgstr "Temp. moyenne"
  163. #. WEATHER_TERMS['CLOUD COVER']
  164. #: searx/searxng.msg
  165. msgid "Cloud cover"
  166. msgstr "Couvert nuageux"
  167. #. WEATHER_TERMS['CONDITION']
  168. #: searx/searxng.msg
  169. msgid "Condition"
  170. msgstr "Condition"
  171. #. WEATHER_TERMS['CURRENT CONDITION']
  172. #: searx/searxng.msg
  173. msgid "Current condition"
  174. msgstr "Condition actuelle"
  175. #. WEATHER_TERMS['EVENING']
  176. #: searx/engines/wttr.py:100 searx/searxng.msg
  177. msgid "Evening"
  178. msgstr "Soir"
  179. #. WEATHER_TERMS['FEELS LIKE']
  180. #: searx/searxng.msg
  181. msgid "Feels like"
  182. msgstr "Ressenti"
  183. #. WEATHER_TERMS['HUMIDITY']
  184. #: searx/searxng.msg
  185. msgid "Humidity"
  186. msgstr "Humidité"
  187. #. WEATHER_TERMS['MAX TEMP.']
  188. #: searx/searxng.msg
  189. msgid "Max temp."
  190. msgstr "Temp. maximale"
  191. #. WEATHER_TERMS['MIN TEMP.']
  192. #: searx/searxng.msg
  193. msgid "Min temp."
  194. msgstr "Temp. minimale"
  195. #. WEATHER_TERMS['MORNING']
  196. #: searx/engines/wttr.py:100 searx/searxng.msg
  197. msgid "Morning"
  198. msgstr "Matin"
  199. #. WEATHER_TERMS['NIGHT']
  200. #: searx/engines/wttr.py:100 searx/searxng.msg
  201. msgid "Night"
  202. msgstr "Nuit"
  203. #. WEATHER_TERMS['NOON']
  204. #: searx/engines/wttr.py:100 searx/searxng.msg
  205. msgid "Noon"
  206. msgstr "Midi"
  207. #. WEATHER_TERMS['PRESSURE']
  208. #: searx/searxng.msg
  209. msgid "Pressure"
  210. msgstr "Pression"
  211. #. WEATHER_TERMS['SUNRISE']
  212. #: searx/searxng.msg
  213. msgid "Sunrise"
  214. msgstr "Lever du soleil"
  215. #. WEATHER_TERMS['SUNSET']
  216. #: searx/searxng.msg
  217. msgid "Sunset"
  218. msgstr "Coucher de soleil"
  219. #. WEATHER_TERMS['TEMPERATURE']
  220. #: searx/searxng.msg
  221. msgid "Temperature"
  222. msgstr "Température"
  223. #. WEATHER_TERMS['UV INDEX']
  224. #: searx/searxng.msg
  225. msgid "UV index"
  226. msgstr "Indice UV"
  227. #. WEATHER_TERMS['VISIBILITY']
  228. #: searx/searxng.msg
  229. msgid "Visibility"
  230. msgstr "Visibilité"
  231. #. WEATHER_TERMS['WIND']
  232. #: searx/searxng.msg
  233. msgid "Wind"
  234. msgstr "Le vent"
  235. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  236. #: searx/searxng.msg
  237. msgid "subscribers"
  238. msgstr "Abonnés"
  239. #. SOCIAL_MEDIA_TERMS['POSTS']
  240. #: searx/searxng.msg
  241. msgid "posts"
  242. msgstr "Posts"
  243. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  244. #: searx/searxng.msg
  245. msgid "active users"
  246. msgstr "utilisateurs actifs"
  247. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  248. #: searx/searxng.msg
  249. msgid "comments"
  250. msgstr "Commentaires"
  251. #. SOCIAL_MEDIA_TERMS['USER']
  252. #: searx/searxng.msg
  253. msgid "user"
  254. msgstr "utilisateur"
  255. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  256. #: searx/searxng.msg
  257. msgid "community"
  258. msgstr "Communauté"
  259. #. SOCIAL_MEDIA_TERMS['POINTS']
  260. #: searx/searxng.msg
  261. msgid "points"
  262. msgstr "points"
  263. #. SOCIAL_MEDIA_TERMS['TITLE']
  264. #: searx/searxng.msg
  265. msgid "title"
  266. msgstr "Titre"
  267. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  268. #: searx/searxng.msg
  269. msgid "author"
  270. msgstr "Auteur"
  271. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  272. #: searx/engines/discourse.py:149 searx/searxng.msg
  273. msgid "open"
  274. msgstr "Ouvert"
  275. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  276. #: searx/engines/discourse.py:149 searx/searxng.msg
  277. msgid "closed"
  278. msgstr "Fermé"
  279. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  280. #: searx/engines/discourse.py:160 searx/searxng.msg
  281. msgid "answered"
  282. msgstr "répondu"
  283. #: searx/webapp.py:330
  284. msgid "No item found"
  285. msgstr "Pas d'élément trouvé"
  286. #: searx/engines/qwant.py:281
  287. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
  288. msgid "Source"
  289. msgstr "Source"
  290. #: searx/webapp.py:334
  291. msgid "Error loading the next page"
  292. msgstr "Erreur lors du chargement de la page suivante"
  293. #: searx/webapp.py:491 searx/webapp.py:894
  294. msgid "Invalid settings, please edit your preferences"
  295. msgstr "Paramètres non valides, veuillez éditer vos préférences"
  296. #: searx/webapp.py:507
  297. msgid "Invalid settings"
  298. msgstr "Paramètres non valides"
  299. #: searx/webapp.py:584 searx/webapp.py:666
  300. msgid "search error"
  301. msgstr "erreur de recherche"
  302. #: searx/webutils.py:36
  303. msgid "timeout"
  304. msgstr "délai dépassé"
  305. #: searx/webutils.py:37
  306. msgid "parsing error"
  307. msgstr "erreur d'analyse"
  308. #: searx/webutils.py:38
  309. msgid "HTTP protocol error"
  310. msgstr "erreur de protocole HTTP"
  311. #: searx/webutils.py:39
  312. msgid "network error"
  313. msgstr "Erreur de réseau"
  314. #: searx/webutils.py:40
  315. msgid "SSL error: certificate validation has failed"
  316. msgstr "Erreur SSL : La vérification du certificat a échoué"
  317. #: searx/webutils.py:42
  318. msgid "unexpected crash"
  319. msgstr "erreur inattendue"
  320. #: searx/webutils.py:49
  321. msgid "HTTP error"
  322. msgstr "erreur HTTP"
  323. #: searx/webutils.py:50
  324. msgid "HTTP connection error"
  325. msgstr "erreur de connexion HTTP"
  326. #: searx/webutils.py:56
  327. msgid "proxy error"
  328. msgstr "Erreur proxy"
  329. #: searx/webutils.py:57
  330. msgid "CAPTCHA"
  331. msgstr "CAPTCHA"
  332. #: searx/webutils.py:58
  333. msgid "too many requests"
  334. msgstr "trop de requêtes"
  335. #: searx/webutils.py:59
  336. msgid "access denied"
  337. msgstr "accès refusé"
  338. #: searx/webutils.py:60
  339. msgid "server API error"
  340. msgstr "erreur API du serveur"
  341. #: searx/webutils.py:79
  342. msgid "Suspended"
  343. msgstr "Suspendu"
  344. #: searx/webutils.py:314
  345. msgid "{minutes} minute(s) ago"
  346. msgstr "il y a {minutes} minute(s)"
  347. #: searx/webutils.py:315
  348. msgid "{hours} hour(s), {minutes} minute(s) ago"
  349. msgstr "il y a {hours} heure(s), {minutes} minute(s)"
  350. #: searx/answerers/random/answerer.py:76
  351. msgid "Random value generator"
  352. msgstr "Générateur de valeur aléatoire"
  353. #: searx/answerers/random/answerer.py:77
  354. msgid "Generate different random values"
  355. msgstr "Crée des valeurs aléatoires différentes"
  356. #: searx/answerers/statistics/answerer.py:50
  357. msgid "Statistics functions"
  358. msgstr "Fonctions statistiques"
  359. #: searx/answerers/statistics/answerer.py:51
  360. msgid "Compute {functions} of the arguments"
  361. msgstr "Calcule les {functions} des arguments"
  362. #: searx/engines/openstreetmap.py:159
  363. msgid "Get directions"
  364. msgstr "Obtenir l'itinéraire"
  365. #: searx/engines/pdbe.py:96
  366. msgid "{title} (OBSOLETE)"
  367. msgstr "{title} (OBSOLÈTE)"
  368. #: searx/engines/pdbe.py:103
  369. msgid "This entry has been superseded by"
  370. msgstr "Cet item a été remplacé par"
  371. #: searx/engines/qwant.py:283
  372. msgid "Channel"
  373. msgstr "Chaîne"
  374. #: searx/engines/radio_browser.py:105
  375. msgid "bitrate"
  376. msgstr "débit"
  377. #: searx/engines/radio_browser.py:106
  378. msgid "votes"
  379. msgstr "voix"
  380. #: searx/engines/radio_browser.py:107
  381. msgid "clicks"
  382. msgstr "clics"
  383. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  384. #: searx/engines/zlibrary.py:137
  385. msgid "Language"
  386. msgstr "Langue"
  387. #: searx/engines/semantic_scholar.py:78
  388. msgid ""
  389. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  390. "{lastCitationVelocityYear}"
  391. msgstr ""
  392. "{numCitations} citations de l'année {firstCitationVelocityYear} à "
  393. "{lastCitationVelocityYear}"
  394. #: searx/engines/tineye.py:45
  395. msgid ""
  396. "Could not read that image url. This may be due to an unsupported file "
  397. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  398. " WebP."
  399. msgstr ""
  400. "Impossible de lire l'url de l'image. Cela peut être dû à un format de "
  401. "fichier non pris en charge. TinEye ne prend en charge que les images au "
  402. "format JPEG, PNG, GIF, BMP, TIFF ou WebP."
  403. #: searx/engines/tineye.py:51
  404. msgid ""
  405. "The image is too simple to find matches. TinEye requires a basic level of"
  406. " visual detail to successfully identify matches."
  407. msgstr ""
  408. "L'image est trop simple pour trouver des correspondances. TinEye a besoin"
  409. " d'un niveau de détail visuel minimum pour réussir à identifier les "
  410. "correspondances."
  411. #: searx/engines/tineye.py:57
  412. msgid "The image could not be downloaded."
  413. msgstr "L'image n'a pas pu être téléchargée."
  414. #: searx/engines/zlibrary.py:138
  415. msgid "Book rating"
  416. msgstr "Évaluation du livre"
  417. #: searx/engines/zlibrary.py:139
  418. msgid "File quality"
  419. msgstr "Qualité du fichier"
  420. #: searx/plugins/calculator.py:12
  421. msgid "Calculate mathematical expressions via the search bar"
  422. msgstr "Calculer des expressions mathématiques dans la barre de recherche"
  423. #: searx/plugins/hash_plugin.py:10
  424. msgid "Converts strings to different hash digests."
  425. msgstr "Convertit les chaînes de caractères en différents condensés de hachage."
  426. #: searx/plugins/hash_plugin.py:38
  427. msgid "hash digest"
  428. msgstr "hash digest"
  429. #: searx/plugins/hostnames.py:103
  430. msgid "Hostnames plugin"
  431. msgstr "Plugin de noms d’hôtes"
  432. #: searx/plugins/hostnames.py:104
  433. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  434. msgstr ""
  435. "Réécrire les noms de domaines, supprimer des résultats ou les prioriser "
  436. "en se basant sur les domaines"
  437. #: searx/plugins/oa_doi_rewrite.py:12
  438. msgid "Open Access DOI rewrite"
  439. msgstr "Utiliser Open Access DOI"
  440. #: searx/plugins/oa_doi_rewrite.py:13
  441. msgid ""
  442. "Avoid paywalls by redirecting to open-access versions of publications "
  443. "when available"
  444. msgstr ""
  445. "Contourne les verrous payants de certaines publications scientifiques en "
  446. "redirigeant vers la version ouverte de ces papiers si elle est disponible"
  447. #: searx/plugins/self_info.py:9
  448. msgid "Self Information"
  449. msgstr "Informations sur le navigateur"
  450. #: searx/plugins/self_info.py:10
  451. msgid ""
  452. "Displays your IP if the query is \"ip\" and your user agent if the query "
  453. "contains \"user agent\"."
  454. msgstr ""
  455. "Affiche votre adresse IP si la requête est \"ip\", et affiche votre user-"
  456. "agent si la requête contient \"user agent\"."
  457. #: searx/plugins/self_info.py:28
  458. msgid "Your IP is: "
  459. msgstr "Votre IP est : "
  460. #: searx/plugins/self_info.py:31
  461. msgid "Your user-agent is: "
  462. msgstr "Votre agent-utilisateur est : "
  463. #: searx/plugins/tor_check.py:24
  464. msgid "Tor check plugin"
  465. msgstr "Plugin de vérification de Tor"
  466. #: searx/plugins/tor_check.py:27
  467. msgid ""
  468. "This plugin checks if the address of the request is a Tor exit-node, and "
  469. "informs the user if it is; like check.torproject.org, but from SearXNG."
  470. msgstr ""
  471. "Ce plugin vérifie si l’adresse de la requête est un nœud de sortie Tor, "
  472. "et informe l’utilisateur si c’en est un ; par exemple "
  473. "check.torproject.org, mais depuis SearXNG."
  474. #: searx/plugins/tor_check.py:61
  475. msgid ""
  476. "Could not download the list of Tor exit-nodes from: "
  477. "https://check.torproject.org/exit-addresses"
  478. msgstr ""
  479. "Erreur lors du téléchargement des noeuds de sortie Tor depuis : "
  480. "https://check.torproject.org/exit-addresses"
  481. #: searx/plugins/tor_check.py:77
  482. msgid ""
  483. "You are using Tor and it looks like you have this external IP address: "
  484. "{ip_address}"
  485. msgstr "Vous utilisez Tor et votre adresse IP externe semble être : {ip_address}"
  486. #: searx/plugins/tor_check.py:85
  487. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  488. msgstr "Vous n'utilisez pas Tor et votre adresse IP externe est : {ip_address}"
  489. #: searx/plugins/tracker_url_remover.py:16
  490. msgid "Tracker URL remover"
  491. msgstr "Nettoyeur d'URL de suivis"
  492. #: searx/plugins/tracker_url_remover.py:17
  493. msgid "Remove trackers arguments from the returned URL"
  494. msgstr "Retire les arguments utilisés pour vous pister des URL retournées"
  495. #: searx/plugins/unit_converter.py:29
  496. msgid "Convert between units"
  497. msgstr "Convertit entre les unités"
  498. #: searx/templates/simple/404.html:4
  499. msgid "Page not found"
  500. msgstr "Page non trouvée"
  501. #: searx/templates/simple/404.html:6
  502. #, python-format
  503. msgid "Go to %(search_page)s."
  504. msgstr "Aller à %(search_page)s."
  505. #: searx/templates/simple/404.html:6
  506. msgid "search page"
  507. msgstr "la page d'accueil"
  508. #: searx/templates/simple/base.html:54
  509. msgid "Donate"
  510. msgstr "Faire un don"
  511. #: searx/templates/simple/base.html:58
  512. #: searx/templates/simple/preferences.html:156
  513. msgid "Preferences"
  514. msgstr "Préférences"
  515. #: searx/templates/simple/base.html:68
  516. msgid "Powered by"
  517. msgstr "Propulsé par"
  518. #: searx/templates/simple/base.html:68
  519. msgid "a privacy-respecting, open metasearch engine"
  520. msgstr "un métamoteur ouvert et respectueux de la vie privée"
  521. #: searx/templates/simple/base.html:69
  522. #: searx/templates/simple/result_templates/packages.html:59
  523. msgid "Source code"
  524. msgstr "Code source"
  525. #: searx/templates/simple/base.html:70
  526. msgid "Issue tracker"
  527. msgstr "Suivi des problèmes"
  528. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  529. msgid "Engine stats"
  530. msgstr "Statistiques des moteurs"
  531. #: searx/templates/simple/base.html:73
  532. msgid "Public instances"
  533. msgstr "Instances publiques"
  534. #: searx/templates/simple/base.html:76
  535. msgid "Privacy policy"
  536. msgstr "Politique de confidentialité"
  537. #: searx/templates/simple/base.html:79
  538. msgid "Contact instance maintainer"
  539. msgstr "Contacter le responsable de l'instance"
  540. #: searx/templates/simple/categories.html:26
  541. msgid "Click on the magnifier to perform search"
  542. msgstr "Cliquez sur la loupe pour effectuer une recherche"
  543. #: searx/templates/simple/macros.html:35
  544. msgid "Length"
  545. msgstr "Durée"
  546. #: searx/templates/simple/macros.html:36
  547. msgid "Views"
  548. msgstr "vues"
  549. #: searx/templates/simple/macros.html:37
  550. #: searx/templates/simple/result_templates/files.html:34
  551. #: searx/templates/simple/result_templates/images.html:19
  552. #: searx/templates/simple/result_templates/paper.html:6
  553. msgid "Author"
  554. msgstr "Auteur"
  555. #: searx/templates/simple/macros.html:45
  556. msgid "cached"
  557. msgstr "en cache"
  558. #: searx/templates/simple/macros.html:45
  559. msgid "proxied"
  560. msgstr "proxifié"
  561. #: searx/templates/simple/new_issue.html:64
  562. msgid "Start submiting a new issue on GitHub"
  563. msgstr "Soumettre un nouveau problème sur GitHub"
  564. #: searx/templates/simple/new_issue.html:66
  565. msgid "Please check for existing bugs about this engine on GitHub"
  566. msgstr ""
  567. "Merci de vérifier l’existence de bugs sur ce moteur de recherche sur "
  568. "GitHub"
  569. #: searx/templates/simple/new_issue.html:69
  570. msgid "I confirm there is no existing bug about the issue I encounter"
  571. msgstr "Je confirme qu'il n'existe pas de bug pour le problème que j'ai rencontré"
  572. #: searx/templates/simple/new_issue.html:71
  573. msgid "If this is a public instance, please specify the URL in the bug report"
  574. msgstr ""
  575. "Si c'est une instance public, merci de spécifier l'URL dans le rapport de"
  576. " bug"
  577. #: searx/templates/simple/new_issue.html:72
  578. msgid "Submit a new issue on Github including the above information"
  579. msgstr "Soumettre un nouveau ticket sur Github incluant l'information ci-dessus"
  580. #: searx/templates/simple/preferences.html:65
  581. msgid "No HTTPS"
  582. msgstr "Pas de HTTPS"
  583. #: searx/templates/simple/elements/engines_msg.html:14
  584. #: searx/templates/simple/preferences.html:69
  585. #: searx/templates/simple/preferences.html:70
  586. msgid "View error logs and submit a bug report"
  587. msgstr "Afficher les journaux d'erreurs et soumettre un rapport de bogue"
  588. #: searx/templates/simple/preferences.html:74
  589. msgid "!bang for this engine"
  590. msgstr "!bang pour ce moteur de recherche"
  591. #: searx/templates/simple/preferences.html:80
  592. msgid "!bang for its categories"
  593. msgstr "!bang pour ses catégories"
  594. #: searx/templates/simple/preferences.html:102
  595. #: searx/templates/simple/stats.html:64
  596. msgid "Median"
  597. msgstr "Médiane"
  598. #: searx/templates/simple/preferences.html:103
  599. #: searx/templates/simple/stats.html:70
  600. msgid "P80"
  601. msgstr "P80"
  602. #: searx/templates/simple/preferences.html:104
  603. #: searx/templates/simple/stats.html:76
  604. msgid "P95"
  605. msgstr "P95"
  606. #: searx/templates/simple/preferences.html:136
  607. msgid "Failed checker test(s): "
  608. msgstr "Test(s) du checker échoué(s) : "
  609. #: searx/templates/simple/preferences.html:138
  610. msgid "Errors:"
  611. msgstr "Erreurs :"
  612. #: searx/templates/simple/preferences.html:162
  613. msgid "General"
  614. msgstr "Général"
  615. #: searx/templates/simple/preferences.html:165
  616. msgid "Default categories"
  617. msgstr "Catégories par défaut"
  618. #: searx/templates/simple/preferences.html:187
  619. msgid "User interface"
  620. msgstr "Interface utilisateur"
  621. #: searx/templates/simple/preferences.html:208
  622. msgid "Privacy"
  623. msgstr "Vie privée"
  624. #: searx/templates/simple/preferences.html:221
  625. msgid "Engines"
  626. msgstr "Moteurs"
  627. #: searx/templates/simple/preferences.html:223
  628. msgid "Currently used search engines"
  629. msgstr "Moteurs de recherche actuellement utilisés"
  630. #: searx/templates/simple/preferences.html:231
  631. msgid "Special Queries"
  632. msgstr "Requêtes spéciales"
  633. #: searx/templates/simple/preferences.html:237
  634. msgid "Cookies"
  635. msgstr "Cookies"
  636. #: searx/templates/simple/results.html:23
  637. msgid "Answers"
  638. msgstr "Réponses"
  639. #: searx/templates/simple/results.html:42
  640. msgid "Number of results"
  641. msgstr "Nombre de résultats"
  642. #: searx/templates/simple/results.html:48
  643. msgid "Info"
  644. msgstr "Infos"
  645. #: searx/templates/simple/results.html:75
  646. msgid "Try searching for:"
  647. msgstr "Essayez de chercher :"
  648. #: searx/templates/simple/results.html:107
  649. msgid "Back to top"
  650. msgstr "Retour en haut de page"
  651. #: searx/templates/simple/results.html:125
  652. msgid "Previous page"
  653. msgstr "Page précédente"
  654. #: searx/templates/simple/results.html:143
  655. msgid "Next page"
  656. msgstr "page suivante"
  657. #: searx/templates/simple/search.html:3
  658. msgid "Display the front page"
  659. msgstr "Afficher la page d'accueil"
  660. #: searx/templates/simple/search.html:9
  661. #: searx/templates/simple/simple_search.html:5
  662. msgid "Search for..."
  663. msgstr "Rechercher..."
  664. #: searx/templates/simple/search.html:10
  665. #: searx/templates/simple/simple_search.html:6
  666. msgid "clear"
  667. msgstr "effacer"
  668. #: searx/templates/simple/search.html:11
  669. #: searx/templates/simple/simple_search.html:7
  670. msgid "search"
  671. msgstr "chercher"
  672. #: searx/templates/simple/stats.html:21
  673. msgid "There is currently no data available. "
  674. msgstr "Aucune donnée disponible pour l'instant. "
  675. #: searx/templates/simple/preferences/engines.html:24
  676. #: searx/templates/simple/stats.html:25
  677. msgid "Engine name"
  678. msgstr "Nom du moteur"
  679. #: searx/templates/simple/stats.html:26
  680. msgid "Scores"
  681. msgstr "Score"
  682. #: searx/templates/simple/stats.html:27
  683. msgid "Result count"
  684. msgstr "Nombre de résultats"
  685. #: searx/templates/simple/elements/engines_msg.html:7
  686. #: searx/templates/simple/preferences/engines.html:31
  687. #: searx/templates/simple/stats.html:28
  688. msgid "Response time"
  689. msgstr "Temps de réponse"
  690. #: searx/templates/simple/preferences/engines.html:35
  691. #: searx/templates/simple/stats.html:29
  692. msgid "Reliability"
  693. msgstr "Fiabilité"
  694. #: searx/templates/simple/stats.html:59
  695. msgid "Total"
  696. msgstr "Total"
  697. #: searx/templates/simple/stats.html:60
  698. msgid "HTTP"
  699. msgstr "HTTP"
  700. #: searx/templates/simple/stats.html:61
  701. msgid "Processing"
  702. msgstr "Traitement"
  703. #: searx/templates/simple/stats.html:99
  704. msgid "Warnings"
  705. msgstr "Attention"
  706. #: searx/templates/simple/stats.html:99
  707. msgid "Errors and exceptions"
  708. msgstr "Erreurs et exceptions"
  709. #: searx/templates/simple/stats.html:105
  710. msgid "Exception"
  711. msgstr "Exception"
  712. #: searx/templates/simple/stats.html:107
  713. msgid "Message"
  714. msgstr "Message"
  715. #: searx/templates/simple/stats.html:109
  716. msgid "Percentage"
  717. msgstr "Pourcentage"
  718. #: searx/templates/simple/stats.html:111
  719. msgid "Parameter"
  720. msgstr "Paramètre"
  721. #: searx/templates/simple/result_templates/files.html:36
  722. #: searx/templates/simple/stats.html:119
  723. msgid "Filename"
  724. msgstr "Nom de fichier"
  725. #: searx/templates/simple/stats.html:120
  726. msgid "Function"
  727. msgstr "Fonction"
  728. #: searx/templates/simple/stats.html:121
  729. msgid "Code"
  730. msgstr "Code"
  731. #: searx/templates/simple/stats.html:128
  732. msgid "Checker"
  733. msgstr "Checker"
  734. #: searx/templates/simple/stats.html:131
  735. msgid "Failed test"
  736. msgstr "Test échoué"
  737. #: searx/templates/simple/stats.html:132
  738. msgid "Comment(s)"
  739. msgstr "Commentaire(s)"
  740. #: searx/templates/simple/elements/apis.html:3
  741. msgid "Download results"
  742. msgstr "Télécharger les résultats"
  743. #: searx/templates/simple/elements/engines_msg.html:4
  744. msgid "Messages from the search engines"
  745. msgstr "Messages des moteurs de recherche"
  746. #: searx/templates/simple/elements/engines_msg.html:7
  747. msgid "seconds"
  748. msgstr ""
  749. #: searx/templates/simple/elements/search_url.html:3
  750. msgid "Search URL"
  751. msgstr "URL de recherche"
  752. #: searx/templates/simple/elements/search_url.html:4
  753. #: searx/templates/simple/preferences/cookies.html:54
  754. msgid "Copied"
  755. msgstr "Copié"
  756. #: searx/templates/simple/elements/search_url.html:4
  757. #: searx/templates/simple/preferences/cookies.html:54
  758. msgid "Copy"
  759. msgstr "Copier"
  760. #: searx/templates/simple/elements/suggestions.html:3
  761. msgid "Suggestions"
  762. msgstr "Suggestions"
  763. #: searx/templates/simple/filters/languages.html:1
  764. #: searx/templates/simple/preferences/language.html:2
  765. msgid "Search language"
  766. msgstr "Langue de recherche"
  767. #: searx/templates/simple/filters/languages.html:4
  768. #: searx/templates/simple/preferences/language.html:7
  769. msgid "Default language"
  770. msgstr "Langue par défaut"
  771. #: searx/templates/simple/filters/languages.html:8
  772. #: searx/templates/simple/preferences/language.html:11
  773. msgid "Auto-detect"
  774. msgstr "Détection automatique"
  775. #: searx/templates/simple/filters/safesearch.html:1
  776. #: searx/templates/simple/filters/safesearch.html:2
  777. #: searx/templates/simple/filters/safesearch.html:3
  778. #: searx/templates/simple/filters/safesearch.html:4
  779. #: searx/templates/simple/preferences/engines.html:27
  780. #: searx/templates/simple/preferences/safesearch.html:2
  781. msgid "SafeSearch"
  782. msgstr "Recherche sécurisée"
  783. #: searx/templates/simple/filters/safesearch.html:2
  784. #: searx/templates/simple/preferences/safesearch.html:7
  785. msgid "Strict"
  786. msgstr "Stricte"
  787. #: searx/templates/simple/filters/safesearch.html:3
  788. #: searx/templates/simple/preferences/safesearch.html:11
  789. msgid "Moderate"
  790. msgstr "Modérée"
  791. #: searx/templates/simple/filters/safesearch.html:4
  792. #: searx/templates/simple/preferences/safesearch.html:15
  793. msgid "None"
  794. msgstr "Désactivé"
  795. #: searx/templates/simple/filters/time_range.html:1
  796. #: searx/templates/simple/preferences/engines.html:28
  797. msgid "Time range"
  798. msgstr "Intervalle de temps"
  799. #: searx/templates/simple/filters/time_range.html:3
  800. msgid "Anytime"
  801. msgstr "À tout moment"
  802. #: searx/templates/simple/filters/time_range.html:6
  803. msgid "Last day"
  804. msgstr "Dernières 24h"
  805. #: searx/templates/simple/filters/time_range.html:9
  806. msgid "Last week"
  807. msgstr "Semaine précédente"
  808. #: searx/templates/simple/filters/time_range.html:12
  809. msgid "Last month"
  810. msgstr "Mois précédent"
  811. #: searx/templates/simple/filters/time_range.html:15
  812. msgid "Last year"
  813. msgstr "Année précédente"
  814. #: searx/templates/simple/messages/no_cookies.html:3
  815. msgid "Information!"
  816. msgstr "Information !"
  817. #: searx/templates/simple/messages/no_cookies.html:4
  818. msgid "currently, there are no cookies defined."
  819. msgstr "il n'y a pas de cookies définis pour le moment."
  820. #: searx/templates/simple/messages/no_results.html:6
  821. msgid "Sorry!"
  822. msgstr "Désolé !"
  823. #: searx/templates/simple/messages/no_results.html:12
  824. msgid "No results were found. You can try to:"
  825. msgstr "Aucun résultat trouvé. Vous pouvez essayer de:"
  826. #: searx/templates/simple/messages/no_results.html:14
  827. msgid "There are no more results. You can try to:"
  828. msgstr "Il n'y a plus d'autres résultats. Vous pouvez essayer de:"
  829. #: searx/templates/simple/messages/no_results.html:19
  830. msgid "Refresh the page."
  831. msgstr "Rafraîchir la page."
  832. #: searx/templates/simple/messages/no_results.html:20
  833. msgid "Search for another query or select another category (above)."
  834. msgstr "Faire une autre requête ou sélectionnez une autre catégorie (ci-dessus)."
  835. #: searx/templates/simple/messages/no_results.html:21
  836. msgid "Change the search engine used in the preferences:"
  837. msgstr "Changez le moteur de recherche utilisé dans les préférences:"
  838. #: searx/templates/simple/messages/no_results.html:22
  839. msgid "Switch to another instance:"
  840. msgstr "Basculer sur une autre instance:"
  841. #: searx/templates/simple/messages/no_results.html:24
  842. msgid "Search for another query or select another category."
  843. msgstr "Cherchez avec une autre requête ou sélectionnez une autre catégorie."
  844. #: searx/templates/simple/messages/no_results.html:25
  845. msgid "Go back to the previous page using the previous page button."
  846. msgstr "Retour à la page précédente en utilisant le bouton de page précédente."
  847. #: searx/templates/simple/preferences/answerers.html:4
  848. #: searx/templates/simple/preferences/engines.html:23
  849. msgid "Allow"
  850. msgstr "Autoriser"
  851. #: searx/templates/simple/preferences/answerers.html:5
  852. msgid "Keywords"
  853. msgstr "Mots clés"
  854. #: searx/templates/simple/preferences/answerers.html:6
  855. #: searx/templates/simple/result_templates/packages.html:7
  856. msgid "Name"
  857. msgstr "Nom"
  858. #: searx/templates/simple/preferences/answerers.html:7
  859. msgid "Description"
  860. msgstr "Description"
  861. #: searx/templates/simple/preferences/answerers.html:8
  862. msgid "Examples"
  863. msgstr "Exemples"
  864. #: searx/templates/simple/preferences/answerers.html:13
  865. msgid "This is the list of SearXNG's instant answering modules."
  866. msgstr "Liste des modules de réponse instantanée de SearXNG."
  867. #: searx/templates/simple/preferences/answerers.html:29
  868. msgid "This is the list of plugins."
  869. msgstr "Voici la liste des plugins."
  870. #: searx/templates/simple/preferences/autocomplete.html:2
  871. msgid "Autocomplete"
  872. msgstr "Complétion automatique"
  873. #: searx/templates/simple/preferences/autocomplete.html:15
  874. msgid "Find stuff as you type"
  875. msgstr "Chercher au fil de la saisie"
  876. #: searx/templates/simple/preferences/center_alignment.html:2
  877. msgid "Center Alignment"
  878. msgstr "Centrer"
  879. #: searx/templates/simple/preferences/center_alignment.html:14
  880. msgid "Displays results in the center of the page (Oscar layout)."
  881. msgstr "Affiche les résultats au centre de la page (similaire au thème Oscar)."
  882. #: searx/templates/simple/preferences/cookies.html:2
  883. msgid ""
  884. "This is the list of cookies and their values SearXNG is storing on your "
  885. "computer."
  886. msgstr ""
  887. "Les cookies et leurs valeurs que SearXNG stocke sur votre ordinateur sont"
  888. " énumérés ci-dessous."
  889. #: searx/templates/simple/preferences/cookies.html:3
  890. msgid "With that list, you can assess SearXNG transparency."
  891. msgstr "Avec cette liste, vous pouvez juger de la transparence de searx."
  892. #: searx/templates/simple/preferences/cookies.html:9
  893. msgid "Cookie name"
  894. msgstr "Nom du cookie"
  895. #: searx/templates/simple/preferences/cookies.html:10
  896. msgid "Value"
  897. msgstr "Valeur"
  898. #: searx/templates/simple/preferences/cookies.html:23
  899. msgid "Search URL of the currently saved preferences"
  900. msgstr "Adresse de recherche des réglages actuels"
  901. #: searx/templates/simple/preferences/cookies.html:32
  902. msgid ""
  903. "Note: specifying custom settings in the search URL can reduce privacy by "
  904. "leaking data to the clicked result sites."
  905. msgstr ""
  906. "Note : utiliser des réglages personnalisés dans l'adresse de recherche "
  907. "peut réduire la vie privée en donnant accès à certaines données aux sites"
  908. " des résultats sélectionnés."
  909. #: searx/templates/simple/preferences/cookies.html:35
  910. msgid "URL to restore your preferences in another browser"
  911. msgstr "URL pour restaurer vos préférences dans un autre navigateur"
  912. #: searx/templates/simple/preferences/cookies.html:43
  913. msgid ""
  914. "Specifying custom settings in the preferences URL can be used to sync "
  915. "preferences across devices."
  916. msgstr ""
  917. "La spécification de paramètres personnalisés dans l'URL des préférences "
  918. "peut être utilisée pour synchroniser les préférences entre les appareils."
  919. #: searx/templates/simple/preferences/cookies.html:46
  920. msgid "Copy preferences hash"
  921. msgstr "Copier le hash des préférences"
  922. #: searx/templates/simple/preferences/cookies.html:57
  923. msgid "Insert copied preferences hash (without URL) to restore"
  924. msgstr "Insérer le hash de préférences copié à restaurer (sans l'URL)"
  925. #: searx/templates/simple/preferences/cookies.html:59
  926. msgid "Preferences hash"
  927. msgstr "Hash des préférences"
  928. #: searx/templates/simple/preferences/doi_resolver.html:2
  929. msgid "Open Access DOI resolver"
  930. msgstr "Résolveur Open Access DOI"
  931. #: searx/templates/simple/preferences/doi_resolver.html:14
  932. msgid "Select service used by DOI rewrite"
  933. msgstr "Sélectionner le service utilisé pour la réécriture par DOI"
  934. #: searx/templates/simple/preferences/engines.html:9
  935. msgid ""
  936. "This tab does not exists in the user interface, but you can search in "
  937. "these engines by its !bangs."
  938. msgstr ""
  939. "Cet onglet n'existe pas dans l'interface utilisateur, mais vous pouvez "
  940. "effectuer des recherches dans ces moteurs grâce à ses !bangs."
  941. #: searx/templates/simple/preferences/engines.html:15
  942. msgid "Enable all"
  943. msgstr "Activer tout"
  944. #: searx/templates/simple/preferences/engines.html:16
  945. msgid "Disable all"
  946. msgstr "Désactiver tout"
  947. #: searx/templates/simple/preferences/engines.html:25
  948. msgid "!bang"
  949. msgstr "!bang"
  950. #: searx/templates/simple/preferences/engines.html:26
  951. msgid "Supports selected language"
  952. msgstr "Supporte la langue sélectionnée"
  953. #: searx/templates/simple/preferences/engines.html:29
  954. msgid "Weight"
  955. msgstr "Poids"
  956. #: searx/templates/simple/preferences/engines.html:33
  957. msgid "Max time"
  958. msgstr "Temps max"
  959. #: searx/templates/simple/preferences/footer.html:2
  960. msgid ""
  961. "These settings are stored in your cookies, this allows us not to store "
  962. "this data about you."
  963. msgstr ""
  964. "Ces paramètres sont stockés dans vos cookies ; ceci nous permet de ne pas"
  965. " collecter vos données."
  966. #: searx/templates/simple/preferences/footer.html:3
  967. msgid ""
  968. "These cookies serve your sole convenience, we don't use these cookies to "
  969. "track you."
  970. msgstr ""
  971. "Ces cookies existent pour votre confort d'utilisation, nous ne les "
  972. "utilisons pas pour vous espionner."
  973. #: searx/templates/simple/preferences/footer.html:6
  974. msgid "Save"
  975. msgstr "Enregistrer"
  976. #: searx/templates/simple/preferences/footer.html:9
  977. msgid "Reset defaults"
  978. msgstr "Remettre les valeurs par défaut"
  979. #: searx/templates/simple/preferences/footer.html:13
  980. msgid "Back"
  981. msgstr "Retour"
  982. #: searx/templates/simple/preferences/hotkeys.html:2
  983. msgid "Hotkeys"
  984. msgstr "Raccourcis clavier"
  985. #: searx/templates/simple/preferences/hotkeys.html:13
  986. msgid "Vim-like"
  987. msgstr "Comme-vim"
  988. #: searx/templates/simple/preferences/hotkeys.html:18
  989. msgid ""
  990. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  991. "key on main or result page to get help."
  992. msgstr ""
  993. "Parcourir les résultats avec les raccourcis clavier (nécessite "
  994. "Javascript). Pressez \"h\" sur la page principale pour obtenir de l'aide."
  995. #: searx/templates/simple/preferences/image_proxy.html:2
  996. msgid "Image proxy"
  997. msgstr "Proxy d'images"
  998. #: searx/templates/simple/preferences/image_proxy.html:14
  999. msgid "Proxying image results through SearXNG"
  1000. msgstr "Proxifier les images à travers SearXNG"
  1001. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1002. msgid "Infinite scroll"
  1003. msgstr "Défilement infini"
  1004. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1005. msgid "Automatically load next page when scrolling to bottom of current page"
  1006. msgstr ""
  1007. "Charge automatiquement la page suivante quand vous arrivez en bas de la "
  1008. "page"
  1009. #: searx/templates/simple/preferences/language.html:24
  1010. msgid "What language do you prefer for search?"
  1011. msgstr "Dans quelle langue préférez-vous effectuer la recherche ?"
  1012. #: searx/templates/simple/preferences/language.html:25
  1013. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1014. msgstr ""
  1015. "Choisissez détection automatique pour laisser SearXNG détecter la langue "
  1016. "de votre recherche."
  1017. #: searx/templates/simple/preferences/method.html:2
  1018. msgid "HTTP Method"
  1019. msgstr "Méthode HTTP"
  1020. #: searx/templates/simple/preferences/method.html:14
  1021. msgid "Change how forms are submitted"
  1022. msgstr "Modifier le mode de soumission des formulaires"
  1023. #: searx/templates/simple/preferences/query_in_title.html:2
  1024. msgid "Query in the page's title"
  1025. msgstr "Requête dans le titre de la page"
  1026. #: searx/templates/simple/preferences/query_in_title.html:14
  1027. msgid ""
  1028. "When enabled, the result page's title contains your query. Your browser "
  1029. "can record this title"
  1030. msgstr ""
  1031. "Activer pour inclure la requête utilisateur dans le titre de la page "
  1032. "HTML. Votre navigateur peut enregistrer ce titre de page"
  1033. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1034. msgid "Results on new tabs"
  1035. msgstr "Résultats dans de nouveaux onglets"
  1036. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1037. msgid "Open result links on new browser tabs"
  1038. msgstr "Ouvrir les liens de résultats dans un nouvel onglet"
  1039. #: searx/templates/simple/preferences/safesearch.html:20
  1040. msgid "Filter content"
  1041. msgstr "Filtrer le contenu"
  1042. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1043. msgid "Search on category select"
  1044. msgstr "Lancer la recherche lors du choix d'une catégorie"
  1045. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1046. msgid ""
  1047. "Perform search immediately if a category selected. Disable to select "
  1048. "multiple categories"
  1049. msgstr ""
  1050. "Effectuer la recherche immédiatement si une catégorie est sélectionnée. "
  1051. "Désactiver pour sélectionner de plusieurs catégories"
  1052. #: searx/templates/simple/preferences/theme.html:2
  1053. msgid "Theme"
  1054. msgstr "Thème"
  1055. #: searx/templates/simple/preferences/theme.html:14
  1056. msgid "Change SearXNG layout"
  1057. msgstr "Change l'apparence de SearXNG"
  1058. #: searx/templates/simple/preferences/theme.html:19
  1059. msgid "Theme style"
  1060. msgstr "Style du thème"
  1061. #: searx/templates/simple/preferences/theme.html:31
  1062. msgid "Choose auto to follow your browser settings"
  1063. msgstr "Choisissez auto pour respecter les paramètres de votre navigateur"
  1064. #: searx/templates/simple/preferences/tokens.html:2
  1065. msgid "Engine tokens"
  1066. msgstr "Jetons de moteur"
  1067. #: searx/templates/simple/preferences/tokens.html:9
  1068. msgid "Access tokens for private engines"
  1069. msgstr "Jetons d'accès pour les moteurs privés"
  1070. #: searx/templates/simple/preferences/ui_locale.html:2
  1071. msgid "Interface language"
  1072. msgstr "Langue de l'interface"
  1073. #: searx/templates/simple/preferences/ui_locale.html:14
  1074. msgid "Change the language of the layout"
  1075. msgstr "Changer la langue d'affichage"
  1076. #: searx/templates/simple/result_templates/code.html:13
  1077. msgid "repo"
  1078. msgstr "dépôts"
  1079. #: searx/templates/simple/result_templates/default.html:6
  1080. #: searx/templates/simple/result_templates/files.html:8
  1081. #: searx/templates/simple/result_templates/files.html:11
  1082. msgid "show media"
  1083. msgstr "afficher le média"
  1084. #: searx/templates/simple/result_templates/default.html:6
  1085. #: searx/templates/simple/result_templates/files.html:8
  1086. msgid "hide media"
  1087. msgstr "cacher le media"
  1088. #: searx/templates/simple/result_templates/default.html:14
  1089. #: searx/templates/simple/result_templates/videos.html:14
  1090. msgid "This site did not provide any description."
  1091. msgstr "Ce site n'a pas fourni de description."
  1092. #: searx/templates/simple/result_templates/files.html:38
  1093. #: searx/templates/simple/result_templates/images.html:22
  1094. #: searx/templates/simple/result_templates/torrent.html:11
  1095. msgid "Filesize"
  1096. msgstr "Taille du fichier"
  1097. #: searx/templates/simple/result_templates/files.html:40
  1098. msgid "Date"
  1099. msgstr "Date"
  1100. #: searx/templates/simple/result_templates/files.html:42
  1101. #: searx/templates/simple/result_templates/paper.html:24
  1102. msgid "Type"
  1103. msgstr "Type"
  1104. #: searx/templates/simple/result_templates/images.html:20
  1105. msgid "Resolution"
  1106. msgstr "Résolution"
  1107. #: searx/templates/simple/result_templates/images.html:21
  1108. msgid "Format"
  1109. msgstr "Format"
  1110. #: searx/templates/simple/result_templates/images.html:24
  1111. msgid "Engine"
  1112. msgstr "Moteur"
  1113. #: searx/templates/simple/result_templates/images.html:25
  1114. msgid "View source"
  1115. msgstr "Voir la source"
  1116. #: searx/templates/simple/result_templates/map.html:12
  1117. msgid "address"
  1118. msgstr "adresse"
  1119. #: searx/templates/simple/result_templates/map.html:43
  1120. msgid "show map"
  1121. msgstr "afficher la carte"
  1122. #: searx/templates/simple/result_templates/map.html:43
  1123. msgid "hide map"
  1124. msgstr "cacher la carte"
  1125. #: searx/templates/simple/result_templates/packages.html:12
  1126. msgid "Version"
  1127. msgstr "Version"
  1128. #: searx/templates/simple/result_templates/packages.html:18
  1129. msgid "Maintainer"
  1130. msgstr "Mainteneur"
  1131. #: searx/templates/simple/result_templates/packages.html:24
  1132. msgid "Updated at"
  1133. msgstr "Mis à jour le"
  1134. #: searx/templates/simple/result_templates/packages.html:30
  1135. #: searx/templates/simple/result_templates/paper.html:25
  1136. msgid "Tags"
  1137. msgstr "Tags"
  1138. #: searx/templates/simple/result_templates/packages.html:36
  1139. msgid "Popularity"
  1140. msgstr "Popularité"
  1141. #: searx/templates/simple/result_templates/packages.html:42
  1142. msgid "License"
  1143. msgstr "Licence"
  1144. #: searx/templates/simple/result_templates/packages.html:52
  1145. msgid "Project"
  1146. msgstr "Projet"
  1147. #: searx/templates/simple/result_templates/packages.html:55
  1148. msgid "Project homepage"
  1149. msgstr "Page d'accueil du projet"
  1150. #: searx/templates/simple/result_templates/paper.html:5
  1151. msgid "Published date"
  1152. msgstr "Date de publication"
  1153. #: searx/templates/simple/result_templates/paper.html:9
  1154. msgid "Journal"
  1155. msgstr "Journal"
  1156. #: searx/templates/simple/result_templates/paper.html:22
  1157. msgid "Editor"
  1158. msgstr "Rédacteur·rice en chef"
  1159. #: searx/templates/simple/result_templates/paper.html:23
  1160. msgid "Publisher"
  1161. msgstr "Éditeur"
  1162. #: searx/templates/simple/result_templates/paper.html:26
  1163. msgid "DOI"
  1164. msgstr "DOI"
  1165. #: searx/templates/simple/result_templates/paper.html:27
  1166. msgid "ISSN"
  1167. msgstr "ISSN"
  1168. #: searx/templates/simple/result_templates/paper.html:28
  1169. msgid "ISBN"
  1170. msgstr "ISBN"
  1171. #: searx/templates/simple/result_templates/paper.html:33
  1172. msgid "PDF"
  1173. msgstr "PDF"
  1174. #: searx/templates/simple/result_templates/paper.html:34
  1175. msgid "HTML"
  1176. msgstr "HTML"
  1177. #: searx/templates/simple/result_templates/torrent.html:6
  1178. msgid "magnet link"
  1179. msgstr "lien magnet"
  1180. #: searx/templates/simple/result_templates/torrent.html:7
  1181. msgid "torrent file"
  1182. msgstr "fichier torrent"
  1183. #: searx/templates/simple/result_templates/torrent.html:9
  1184. msgid "Seeder"
  1185. msgstr "Seeder"
  1186. #: searx/templates/simple/result_templates/torrent.html:9
  1187. msgid "Leecher"
  1188. msgstr "Leecher"
  1189. #: searx/templates/simple/result_templates/torrent.html:13
  1190. msgid "Number of Files"
  1191. msgstr "Nombre de fichiers"
  1192. #: searx/templates/simple/result_templates/videos.html:6
  1193. msgid "show video"
  1194. msgstr "afficher la vidéo"
  1195. #: searx/templates/simple/result_templates/videos.html:6
  1196. msgid "hide video"
  1197. msgstr "cacher la vidéo"
  1198. #~ msgid "Engine time (sec)"
  1199. #~ msgstr "Temps du moteur (sec)"
  1200. #~ msgid "Page loads (sec)"
  1201. #~ msgstr "Chargement de la page (sec)"
  1202. #~ msgid "Errors"
  1203. #~ msgstr "Erreur"
  1204. #~ msgid "CAPTCHA required"
  1205. #~ msgstr "CAPTCHA nécessaire"
  1206. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1207. #~ msgstr "Réécrire les liens HTTP en HTTPS si possible"
  1208. #~ msgid ""
  1209. #~ "Results are opened in the same "
  1210. #~ "window by default. This plugin "
  1211. #~ "overwrites the default behaviour to open"
  1212. #~ " links on new tabs/windows. (JavaScript "
  1213. #~ "required)"
  1214. #~ msgstr ""
  1215. #~ "Les résultats sont ouvert dans la "
  1216. #~ "même fenêtre par défaut. Cette extension"
  1217. #~ " change le comportement par défaut "
  1218. #~ "pour ouvrir les liens dans des "
  1219. #~ "nouveaux onglets ou fenêtres (Javascript "
  1220. #~ "est nécessaire)"
  1221. #~ msgid "Color"
  1222. #~ msgstr "Couleur"
  1223. #~ msgid "Blue (default)"
  1224. #~ msgstr "Bleu (défaut)"
  1225. #~ msgid "Violet"
  1226. #~ msgstr "Violet"
  1227. #~ msgid "Green"
  1228. #~ msgstr "Vert"
  1229. #~ msgid "Cyan"
  1230. #~ msgstr "Cyan"
  1231. #~ msgid "Orange"
  1232. #~ msgstr "Orange"
  1233. #~ msgid "Red"
  1234. #~ msgstr "Rouge"
  1235. #~ msgid "Category"
  1236. #~ msgstr "Catégorie"
  1237. #~ msgid "Block"
  1238. #~ msgstr "Bloquer"
  1239. #~ msgid "original context"
  1240. #~ msgstr "contexte original"
  1241. #~ msgid "Plugins"
  1242. #~ msgstr "Plugins"
  1243. #~ msgid "Answerers"
  1244. #~ msgstr "Réponses instantanées"
  1245. #~ msgid "Avg. time"
  1246. #~ msgstr "Temps moy."
  1247. #~ msgid "show details"
  1248. #~ msgstr "afficher les détails"
  1249. #~ msgid "hide details"
  1250. #~ msgstr "cacher les détails"
  1251. #~ msgid "Load more..."
  1252. #~ msgstr "Afficher plus..."
  1253. #~ msgid "Loading..."
  1254. #~ msgstr "Chargement…"
  1255. #~ msgid "Change searx layout"
  1256. #~ msgstr "Modifier l'affichage de searx"
  1257. #~ msgid "Proxying image results through searx"
  1258. #~ msgstr "Proxifier les images de résultats à travers searx"
  1259. #~ msgid "This is the list of searx's instant answering modules."
  1260. #~ msgstr "Voici la liste des module de searx produisant une réponse instantanée."
  1261. #~ msgid ""
  1262. #~ "This is the list of cookies and"
  1263. #~ " their values searx is storing on "
  1264. #~ "your computer."
  1265. #~ msgstr ""
  1266. #~ "C'est une liste de cookies et de"
  1267. #~ " leurs valeurs que searx enregistre "
  1268. #~ "sur votre ordinateur."
  1269. #~ msgid "With that list, you can assess searx transparency."
  1270. #~ msgstr "Avec cette liste, vous pouvez juger de la transparence de searx."
  1271. #~ msgid "It look like you are using searx first time."
  1272. #~ msgstr "Il semble que ce soit la première fois que vous utilisez searx."
  1273. #~ msgid "Please, try again later or find another searx instance."
  1274. #~ msgstr ""
  1275. #~ "Veuillez réessayer ultérieurement, ou utiliser"
  1276. #~ " une instance différente de searx."
  1277. #~ msgid "Themes"
  1278. #~ msgstr "Thème"
  1279. #~ msgid "Reliablity"
  1280. #~ msgstr "Fiabilité"
  1281. #~ msgid ""
  1282. #~ "When enabled, the result page's title"
  1283. #~ " contains your query. Your browser "
  1284. #~ "can record this title."
  1285. #~ msgstr ""
  1286. #~ msgid "Method"
  1287. #~ msgstr "Méthode"
  1288. #~ msgid ""
  1289. #~ "This tab does not show up for "
  1290. #~ "search results but you can search "
  1291. #~ "the engines listed here via bangs."
  1292. #~ msgstr ""
  1293. #~ msgid "Advanced settings"
  1294. #~ msgstr "Paramètres avancés"
  1295. #~ msgid "Close"
  1296. #~ msgstr "Fermer"
  1297. #~ msgid "Language"
  1298. #~ msgstr "Langue"
  1299. #~ msgid "broken"
  1300. #~ msgstr "non fonctionnel"
  1301. #~ msgid "supported"
  1302. #~ msgstr "pris en charge"
  1303. #~ msgid "not supported"
  1304. #~ msgstr "non pris en charge"
  1305. #~ msgid "about"
  1306. #~ msgstr "À propos"
  1307. #~ msgid "Avg."
  1308. #~ msgstr "Moy."
  1309. #~ msgid "User Interface"
  1310. #~ msgstr "Interface utilisateur"
  1311. #~ msgid "Choose style for this theme"
  1312. #~ msgstr "Choisir un style pour ce thème"
  1313. #~ msgid "Style"
  1314. #~ msgstr "Style"
  1315. #~ msgid "Show advanced settings"
  1316. #~ msgstr "Afficher les paramètres avancés"
  1317. #~ msgid "Show advanced settings panel in the home page by default"
  1318. #~ msgstr "Par défaut, afficher les paramètres avancés sur la page d'accueil"
  1319. #~ msgid "Allow all"
  1320. #~ msgstr "Tout autoriser"
  1321. #~ msgid "Disable all"
  1322. #~ msgstr "Tout désactiver"
  1323. #~ msgid "Selected language"
  1324. #~ msgstr "Langue choisie"
  1325. #~ msgid "Query"
  1326. #~ msgstr "Requête"
  1327. #~ msgid "save"
  1328. #~ msgstr "enregistrer"
  1329. #~ msgid "back"
  1330. #~ msgstr "retour"
  1331. #~ msgid "Links"
  1332. #~ msgstr "Liens"
  1333. #~ msgid "RSS subscription"
  1334. #~ msgstr "Abonnement RSS"
  1335. #~ msgid "Search results"
  1336. #~ msgstr "Résultats de recherche"
  1337. #~ msgid "next page"
  1338. #~ msgstr "page suivante"
  1339. #~ msgid "previous page"
  1340. #~ msgstr "page précédente"
  1341. #~ msgid "Start search"
  1342. #~ msgstr "Lancer une recherche"
  1343. #~ msgid "Clear search"
  1344. #~ msgstr "Effacer la recherche"
  1345. #~ msgid "Clear"
  1346. #~ msgstr "Effacer"
  1347. #~ msgid "stats"
  1348. #~ msgstr "statistiques"
  1349. #~ msgid "Heads up!"
  1350. #~ msgstr "Astuces !"
  1351. #~ msgid "It look like you are using SearXNG first time."
  1352. #~ msgstr "Il semblerait que vous utilisez SearXNG pour la première fois."
  1353. #~ msgid "Well done!"
  1354. #~ msgstr "Bravo !"
  1355. #~ msgid "Settings saved successfully."
  1356. #~ msgstr "Les préférences ont été sauvegardées avec succès."
  1357. #~ msgid "Oh snap!"
  1358. #~ msgstr "Oups !"
  1359. #~ msgid "Something went wrong."
  1360. #~ msgstr "Il y a un problème."
  1361. #~ msgid "Date"
  1362. #~ msgstr "Date"
  1363. #~ msgid "Type"
  1364. #~ msgstr "Type"
  1365. #~ msgid "Get image"
  1366. #~ msgstr "Voir l'image"
  1367. #~ msgid "Center Alignment"
  1368. #~ msgstr "Centré"
  1369. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1370. #~ msgstr ""
  1371. #~ "Affiche les résultats au centre de "
  1372. #~ "la page (mise en page du thème "
  1373. #~ "Oscar)."
  1374. #~ msgid "preferences"
  1375. #~ msgstr "préférences"
  1376. #~ msgid "Scores per result"
  1377. #~ msgstr "Score par résultat"
  1378. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1379. #~ msgstr "un métamoteur de recherche hackable et respectueux de la vie privée"
  1380. #~ msgid "No abstract is available for this publication."
  1381. #~ msgstr "Aucun résumé disponible pour cette publication."
  1382. #~ msgid "Self Informations"
  1383. #~ msgstr "Informations sur le navigateur"
  1384. #~ msgid ""
  1385. #~ "Change how forms are submited, <a "
  1386. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1387. #~ " rel=\"external\">learn more about request "
  1388. #~ "methods</a>"
  1389. #~ msgstr ""
  1390. #~ "Permet de choisir comment la recherche"
  1391. #~ " est envoyée, <a "
  1392. #~ "href=\"https://fr.wikipedia.org/wiki/Hypertext_Transfer_Protocol#M.C3.A9thodes\""
  1393. #~ " rel=\"external\">en savoir plus sur les"
  1394. #~ " méthodes HTTP</a>"
  1395. #~ msgid ""
  1396. #~ "This plugin checks if the address "
  1397. #~ "of the request is a TOR exit "
  1398. #~ "node, and informs the user if it"
  1399. #~ " is, like check.torproject.org but from "
  1400. #~ "searxng."
  1401. #~ msgstr ""
  1402. #~ "Ce plugin vérifie si l'adresse de "
  1403. #~ "la requête est un nœud de sortie"
  1404. #~ " TOR, et informe l'utilisateur si "
  1405. #~ "c'est le cas, comme check.torproject.org "
  1406. #~ "mais depuis searxng."
  1407. #~ msgid ""
  1408. #~ "The TOR exit node list "
  1409. #~ "(https://check.torproject.org/exit-addresses) is "
  1410. #~ "unreachable."
  1411. #~ msgstr ""
  1412. #~ "La liste des nœuds de sortie TOR"
  1413. #~ " (https://check.torproject.org/exit-addresses) est "
  1414. #~ "inaccessible."
  1415. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1416. #~ msgstr "Vous utilisez TOR. Votre adresse IP semble être : {ip_address}."
  1417. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1418. #~ msgstr "Vous n'utilisez pas TOR. Votre adresse ip semble être : {ip_address}."
  1419. #~ msgid ""
  1420. #~ "The could not download the list of"
  1421. #~ " Tor exit-nodes from "
  1422. #~ "https://check.torproject.org/exit-addresses."
  1423. #~ msgstr ""
  1424. #~ msgid ""
  1425. #~ "You are using Tor. It looks like"
  1426. #~ " you have this external IP address:"
  1427. #~ " {ip_address}."
  1428. #~ msgstr ""
  1429. #~ "Vous utilisez Tor. Il semble que "
  1430. #~ "vous avez cette adresse IP externe "
  1431. #~ ": {ip_address}."
  1432. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1433. #~ msgstr ""
  1434. #~ "Vous n’utilisez pas Tor. Vous avez "
  1435. #~ "cette adresse IP externe : {ip_address}."
  1436. #~ msgid "Autodetect search language"
  1437. #~ msgstr "Détecter automatiquement la langue de la recherche"
  1438. #~ msgid "Automatically detect the query search language and switch to it."
  1439. #~ msgstr "Détecter automatiquement la langue de la recherche et y passer."
  1440. #~ msgid "others"
  1441. #~ msgstr "autres"
  1442. #~ msgid ""
  1443. #~ "This tab does not show up for "
  1444. #~ "search results, but you can search "
  1445. #~ "the engines listed here via bangs."
  1446. #~ msgstr ""
  1447. #~ "Cet onglet n'apparaît pas dans les "
  1448. #~ "résultats de recherche, mais vous pouvez"
  1449. #~ " effectuer des recherches dans les "
  1450. #~ "moteurs répertoriés ici via bangs."
  1451. #~ msgid "Shortcut"
  1452. #~ msgstr "Raccourci"
  1453. #~ msgid "!bang"
  1454. #~ msgstr ""
  1455. #~ msgid ""
  1456. #~ "This tab dues not exists in the"
  1457. #~ " user interface, but you can search"
  1458. #~ " in these engines by its !bangs."
  1459. #~ msgstr ""
  1460. #~ "Cet onglet n'existe pas dans l'interface"
  1461. #~ " utilisateur, mais vous pouvez effectuer"
  1462. #~ " des recherches dans ces moteurs "
  1463. #~ "grâce à ses !bangs."
  1464. #~ msgid "Engines cannot retrieve results."
  1465. #~ msgstr "Les moteurs ne peuvent récupérer de résultats."
  1466. #~ msgid "Please, try again later or find another SearXNG instance."
  1467. #~ msgstr ""
  1468. #~ "Veuillez réessayer ultérieurement ou trouver"
  1469. #~ " une autre instance SearXNG."
  1470. #~ msgid ""
  1471. #~ "Redirect to open-access versions of "
  1472. #~ "publications when available (plugin required)"
  1473. #~ msgstr ""
  1474. #~ "Rediriger vers les versions des articles"
  1475. #~ " en libre accès lorsqu'elles sont "
  1476. #~ "disponibles (nécessite un plugin)"
  1477. #~ msgid "Bang"
  1478. #~ msgstr "!bang"
  1479. #~ msgid ""
  1480. #~ "Change how forms are submitted, <a "
  1481. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1482. #~ " rel=\"external\">learn more about request "
  1483. #~ "methods</a>"
  1484. #~ msgstr ""
  1485. #~ "Permet de choisir comment la recherche"
  1486. #~ " est envoyée, <a "
  1487. #~ "href=\"https://fr.wikipedia.org/wiki/Hypertext_Transfer_Protocol#M.C3.A9thodes\""
  1488. #~ " rel=\"external\">en savoir plus sur les"
  1489. #~ " méthodes HTTP</a>"
  1490. #~ msgid "On"
  1491. #~ msgstr "Activé"
  1492. #~ msgid "Off"
  1493. #~ msgstr "Désactivé"
  1494. #~ msgid "Enabled"
  1495. #~ msgstr "Activé"
  1496. #~ msgid "Disabled"
  1497. #~ msgstr "Désactivé"
  1498. #~ msgid ""
  1499. #~ "Perform search immediately if a category"
  1500. #~ " selected. Disable to select multiple "
  1501. #~ "categories. (JavaScript required)"
  1502. #~ msgstr ""
  1503. #~ "Exécute la recherche immédiatement si "
  1504. #~ "une catégorie est sélectionnée. Désactiver "
  1505. #~ "pour sélectionner plusieurs catégories "
  1506. #~ "(nécessite JavaScript)"
  1507. #~ msgid "Vim-like hotkeys"
  1508. #~ msgstr "Raccourcis clavier comme Vim"
  1509. #~ msgid ""
  1510. #~ "Navigate search results with Vim-like"
  1511. #~ " hotkeys (JavaScript required). Press \"h\""
  1512. #~ " key on main or result page to"
  1513. #~ " get help."
  1514. #~ msgstr ""
  1515. #~ "Parcourez les résultats de recherche "
  1516. #~ "avec des raccourcis clavier similaires à"
  1517. #~ " Vim (Javascript est nécessaire. Appuyez"
  1518. #~ " sur \"h\" dans la fenêtre principale"
  1519. #~ " de résultats pour afficher de "
  1520. #~ "l'aide."
  1521. #~ msgid ""
  1522. #~ "we didn't find any results. Please "
  1523. #~ "use another query or search in "
  1524. #~ "more categories."
  1525. #~ msgstr ""
  1526. #~ "nous n'avons trouvé aucun résultat. "
  1527. #~ "Effectuez une autre recherche ou changez"
  1528. #~ " de catégorie."
  1529. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1530. #~ msgstr "Réécrit ou supprime les résultats en se basant sur les noms de domaine"
  1531. #~ msgid "Bytes"
  1532. #~ msgstr "octets"
  1533. #~ msgid "kiB"
  1534. #~ msgstr "kio"
  1535. #~ msgid "MiB"
  1536. #~ msgstr "Mio"
  1537. #~ msgid "GiB"
  1538. #~ msgstr "Gio"
  1539. #~ msgid "TiB"
  1540. #~ msgstr "Tio"
  1541. #~ msgid "Hostname replace"
  1542. #~ msgstr "Remplacer les noms de domaine"
  1543. #~ msgid "Error!"
  1544. #~ msgstr "Erreur !"
  1545. #~ msgid "Engines cannot retrieve results"
  1546. #~ msgstr "Les moteurs ne peuvent pas récupérer de résultats"