messages.po 55 KB

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