messages.po 61 KB

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