cura.po 274 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536
  1. # Cura
  2. # Copyright (C) 2019 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ruben Dulek <r.dulek@ultimaker.com>, 2019.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 4.0\n"
  9. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  10. "POT-Creation-Date: 2019-02-26 16:36+0100\n"
  11. "PO-Revision-Date: 2018-09-28 14:59+0200\n"
  12. "Last-Translator: Bothof <info@bothof.nl>\n"
  13. "Language-Team: French\n"
  14. "Language: fr_FR\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=2; plural=(n > 1);\n"
  19. "X-Generator: Poedit 2.0.6\n"
  20. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:22
  21. msgctxt "@action"
  22. msgid "Machine Settings"
  23. msgstr "Paramètres de la machine"
  24. #: /home/ruben/Projects/Cura/plugins/XRayView/__init__.py:12
  25. msgctxt "@item:inlistbox"
  26. msgid "X-Ray view"
  27. msgstr "Visualisation par rayons X"
  28. #: /home/ruben/Projects/Cura/plugins/X3DReader/__init__.py:13
  29. msgctxt "@item:inlistbox"
  30. msgid "X3D File"
  31. msgstr "Fichier X3D"
  32. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/__init__.py:16
  33. #: /home/ruben/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
  34. #: /home/ruben/Projects/Cura/plugins/GCodeReader/__init__.py:14
  35. msgctxt "@item:inlistbox"
  36. msgid "G-code File"
  37. msgstr "Fichier GCode"
  38. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67
  39. msgctxt "@error:not supported"
  40. msgid "GCodeWriter does not support non-text mode."
  41. msgstr "GCodeWriter ne prend pas en charge le mode non-texte."
  42. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73
  43. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89
  44. msgctxt "@warning:status"
  45. msgid "Please prepare G-code before exporting."
  46. msgstr "Veuillez préparer le G-Code avant d'exporter."
  47. #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31
  48. msgctxt "@info:title"
  49. msgid "3D Model Assistant"
  50. msgstr "Assistant de modèle 3D"
  51. #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:86
  52. #, python-brace-format
  53. msgctxt "@info:status"
  54. msgid ""
  55. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  56. "<p>{model_names}</p>\n"
  57. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  58. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  59. msgstr ""
  60. "<p>Un ou plusieurs modèles 3D peuvent ne pas s'imprimer de manière optimale en raison de la taille du modèle et de la configuration matérielle :</p>\n"
  61. "<p>{model_names}</p>\n"
  62. "<p>Découvrez comment optimiser la qualité et la fiabilité de l'impression.</p>\n"
  63. "<p><a href=\"https://ultimaker.com/3D-model-assistant »>Consultez le guide de qualité d'impression</a></p>"
  64. #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32
  65. msgctxt "@item:inmenu"
  66. msgid "Changelog"
  67. msgstr ""
  68. #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33
  69. msgctxt "@item:inmenu"
  70. msgid "Show Changelog"
  71. msgstr "Afficher le récapitulatif des changements"
  72. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:25
  73. msgctxt "@action"
  74. msgid "Update Firmware"
  75. msgstr "Mettre à jour le firmware"
  76. #: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23
  77. msgctxt "@item:inmenu"
  78. msgid "Flatten active settings"
  79. msgstr "Aplatir les paramètres actifs"
  80. #: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35
  81. msgctxt "@info:status"
  82. msgid "Profile has been flattened & activated."
  83. msgstr "Le profil a été aplati et activé."
  84. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:33
  85. msgctxt "@item:inmenu"
  86. msgid "USB printing"
  87. msgstr "Impression par USB"
  88. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:34
  89. msgctxt "@action:button Preceded by 'Ready to'."
  90. msgid "Print via USB"
  91. msgstr "Imprimer via USB"
  92. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:35
  93. msgctxt "@info:tooltip"
  94. msgid "Print via USB"
  95. msgstr "Imprimer via USB"
  96. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:71
  97. msgctxt "@info:status"
  98. msgid "Connected via USB"
  99. msgstr "Connecté via USB"
  100. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:96
  101. msgctxt "@label"
  102. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  103. msgstr "Une impression USB est en cours, la fermeture de Cura arrêtera cette impression. Êtes-vous sûr ?"
  104. #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15
  105. #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15
  106. msgctxt "X3G Writer File Description"
  107. msgid "X3G File"
  108. msgstr "Fichier X3G"
  109. #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/GPX-prefix/src/GPX/slicerplugins/cura15.06/X3gWriter/__init__.py:16
  110. msgctxt "X3g Writer Plugin Description"
  111. msgid "Writes X3g to files"
  112. msgstr "Écrit X3G dans des fichiers"
  113. #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/GPX-prefix/src/GPX/slicerplugins/cura15.06/X3gWriter/__init__.py:21
  114. msgctxt "X3g Writer File Description"
  115. msgid "X3g File"
  116. msgstr "Fichier X3G"
  117. #: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
  118. #: /home/ruben/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
  119. msgctxt "@item:inlistbox"
  120. msgid "Compressed G-code File"
  121. msgstr "Fichier G-Code compressé"
  122. #: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38
  123. msgctxt "@error:not supported"
  124. msgid "GCodeGzWriter does not support text mode."
  125. msgstr "GCodeGzWriter ne prend pas en charge le mode texte."
  126. #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:28
  127. msgctxt "@item:inlistbox"
  128. msgid "Ultimaker Format Package"
  129. msgstr "Ultimaker Format Package"
  130. #: /home/ruben/Projects/Cura/plugins/PrepareStage/__init__.py:12
  131. msgctxt "@item:inmenu"
  132. msgid "Prepare"
  133. msgstr "Préparer"
  134. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  135. msgctxt "@action:button Preceded by 'Ready to'."
  136. msgid "Save to Removable Drive"
  137. msgstr "Enregistrer sur un lecteur amovible"
  138. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  139. #, python-brace-format
  140. msgctxt "@item:inlistbox"
  141. msgid "Save to Removable Drive {0}"
  142. msgstr "Enregistrer sur un lecteur amovible {0}"
  143. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64
  144. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:106
  145. msgctxt "@info:status"
  146. msgid "There are no file formats available to write with!"
  147. msgstr "Aucun format de fichier n'est disponible pour écriture !"
  148. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:94
  149. #, python-brace-format
  150. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  151. msgid "Saving to Removable Drive <filename>{0}</filename>"
  152. msgstr "Enregistrement sur le lecteur amovible <filename>{0}</filename>"
  153. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:94
  154. msgctxt "@info:title"
  155. msgid "Saving"
  156. msgstr "Enregistrement"
  157. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:104
  158. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:107
  159. #, python-brace-format
  160. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  161. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  162. msgstr "Impossible d'enregistrer <filename>{0}</filename> : <message>{1}</message>"
  163. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  164. #, python-brace-format
  165. msgctxt "@info:status Don't translate the tag {device}!"
  166. msgid "Could not find a file name when trying to write to {device}."
  167. msgstr "Impossible de trouver un nom de fichier lors d'une tentative d'écriture sur {device}."
  168. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:136
  169. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  170. #, python-brace-format
  171. msgctxt "@info:status"
  172. msgid "Could not save to removable drive {0}: {1}"
  173. msgstr "Impossible d'enregistrer sur le lecteur {0}: {1}"
  174. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137
  175. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:152
  176. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133
  177. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140
  178. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1629
  179. msgctxt "@info:title"
  180. msgid "Error"
  181. msgstr "Erreur"
  182. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:145
  183. #, python-brace-format
  184. msgctxt "@info:status"
  185. msgid "Saved to Removable Drive {0} as {1}"
  186. msgstr "Enregistré sur le lecteur amovible {0} sous {1}"
  187. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:145
  188. msgctxt "@info:title"
  189. msgid "File Saved"
  190. msgstr "Fichier enregistré"
  191. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:146
  192. msgctxt "@action:button"
  193. msgid "Eject"
  194. msgstr "Ejecter"
  195. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:146
  196. #, python-brace-format
  197. msgctxt "@action"
  198. msgid "Eject removable device {0}"
  199. msgstr "Ejecter le lecteur amovible {0}"
  200. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  201. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  202. #: /home/ruben/Projects/Cura/cura/OAuth2/AuthorizationService.py:186
  203. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1619
  204. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1719
  205. msgctxt "@info:title"
  206. msgid "Warning"
  207. msgstr "Avertissement"
  208. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  209. #, python-brace-format
  210. msgctxt "@info:status"
  211. msgid "Ejected {0}. You can now safely remove the drive."
  212. msgstr "Lecteur {0} éjecté. Vous pouvez maintenant le retirer en tout sécurité."
  213. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  214. msgctxt "@info:title"
  215. msgid "Safely Remove Hardware"
  216. msgstr "Retirez le lecteur en toute sécurité"
  217. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  218. #, python-brace-format
  219. msgctxt "@info:status"
  220. msgid "Failed to eject {0}. Another program may be using the drive."
  221. msgstr "Impossible d'éjecter {0}. Un autre programme utilise peut-être ce lecteur."
  222. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:68
  223. msgctxt "@item:intext"
  224. msgid "Removable Drive"
  225. msgstr "Lecteur amovible"
  226. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74
  227. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:88
  228. msgctxt "@action:button Preceded by 'Ready to'."
  229. msgid "Print over network"
  230. msgstr "Imprimer sur le réseau"
  231. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75
  232. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89
  233. msgctxt "@properties:tooltip"
  234. msgid "Print over network"
  235. msgstr "Imprimer sur le réseau"
  236. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88
  237. msgctxt "@info:status"
  238. msgid "Connected over the network."
  239. msgstr "Connecté sur le réseau."
  240. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91
  241. msgctxt "@info:status"
  242. msgid "Connected over the network. Please approve the access request on the printer."
  243. msgstr "Connecté sur le réseau. Veuillez approuver la demande d'accès sur l'imprimante."
  244. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93
  245. msgctxt "@info:status"
  246. msgid "Connected over the network. No access to control the printer."
  247. msgstr "Connecté sur le réseau. Pas d'accès pour commander l'imprimante."
  248. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98
  249. msgctxt "@info:status"
  250. msgid "Access to the printer requested. Please approve the request on the printer"
  251. msgstr "Accès à l'imprimante demandé. Veuillez approuver la demande sur l'imprimante"
  252. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101
  253. msgctxt "@info:title"
  254. msgid "Authentication status"
  255. msgstr "Statut d'authentification"
  256. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103
  257. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109
  258. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113
  259. msgctxt "@info:title"
  260. msgid "Authentication Status"
  261. msgstr "Statut d'authentification"
  262. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104
  263. #: /home/ruben/Projects/Cura/cura/OAuth2/AuthorizationService.py:187
  264. msgctxt "@action:button"
  265. msgid "Retry"
  266. msgstr "Réessayer"
  267. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105
  268. msgctxt "@info:tooltip"
  269. msgid "Re-send the access request"
  270. msgstr "Renvoyer la demande d'accès"
  271. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:108
  272. msgctxt "@info:status"
  273. msgid "Access to the printer accepted"
  274. msgstr "Accès à l'imprimante accepté"
  275. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:112
  276. msgctxt "@info:status"
  277. msgid "No access to print with this printer. Unable to send print job."
  278. msgstr "Aucun accès pour imprimer avec cette imprimante. Impossible d'envoyer la tâche d'impression."
  279. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114
  280. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:65
  281. msgctxt "@action:button"
  282. msgid "Request Access"
  283. msgstr "Demande d'accès"
  284. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:116
  285. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:66
  286. msgctxt "@info:tooltip"
  287. msgid "Send access request to the printer"
  288. msgstr "Envoyer la demande d'accès à l'imprimante"
  289. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:201
  290. msgctxt "@label"
  291. msgid "Unable to start a new print job."
  292. msgstr "Impossible de démarrer une nouvelle tâche d'impression."
  293. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:203
  294. msgctxt "@label"
  295. msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing."
  296. msgstr "Un problème avec la configuration de votre Ultimaker empêche le démarrage de l'impression. Veuillez résoudre ce problème avant de continuer."
  297. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:209
  298. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:231
  299. msgctxt "@window:title"
  300. msgid "Mismatched configuration"
  301. msgstr "Configuration différente"
  302. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:223
  303. msgctxt "@label"
  304. msgid "Are you sure you wish to print with the selected configuration?"
  305. msgstr "Êtes-vous sûr(e) de vouloir imprimer avec la configuration sélectionnée ?"
  306. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:225
  307. msgctxt "@label"
  308. msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  309. msgstr "Problème de compatibilité entre la configuration ou l'étalonnage de l'imprimante et Cura. Pour un résultat optimal, découpez toujours pour les PrintCores et matériaux insérés dans votre imprimante."
  310. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:252
  311. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:162
  312. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162
  313. msgctxt "@info:status"
  314. msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  315. msgstr "Envoi de nouvelles tâches (temporairement) bloqué, envoi de la tâche d'impression précédente en cours."
  316. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:259
  317. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:180
  318. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197
  319. msgctxt "@info:status"
  320. msgid "Sending data to printer"
  321. msgstr "Envoi des données à l'imprimante"
  322. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260
  323. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:182
  324. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:199
  325. msgctxt "@info:title"
  326. msgid "Sending Data"
  327. msgstr "Envoi des données"
  328. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261
  329. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:200
  330. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:19
  331. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:81
  332. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:395
  333. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:20
  334. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:38
  335. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143
  336. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188
  337. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391
  338. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:87
  339. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:254
  340. msgctxt "@action:button"
  341. msgid "Cancel"
  342. msgstr "Annuler"
  343. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:324
  344. #, python-brace-format
  345. msgctxt "@info:status"
  346. msgid "No Printcore loaded in slot {slot_number}"
  347. msgstr "Pas de PrintCore inséré dans la fente {slot_number}"
  348. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:330
  349. #, python-brace-format
  350. msgctxt "@info:status"
  351. msgid "No material loaded in slot {slot_number}"
  352. msgstr "Aucun matériau inséré dans la fente {slot_number}"
  353. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:353
  354. #, python-brace-format
  355. msgctxt "@label"
  356. msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  357. msgstr "PrintCore différent (Cura : {cura_printcore_name}, Imprimante : {remote_printcore_name}) sélectionné pour l'extrudeuse {extruder_id}"
  358. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:362
  359. #, python-brace-format
  360. msgctxt "@label"
  361. msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  362. msgstr "Matériau différent (Cura : {0}, Imprimante : {1}) sélectionné pour l'extrudeuse {2}"
  363. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:548
  364. msgctxt "@window:title"
  365. msgid "Sync with your printer"
  366. msgstr "Synchroniser avec votre imprimante"
  367. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:550
  368. msgctxt "@label"
  369. msgid "Would you like to use your current printer configuration in Cura?"
  370. msgstr "Voulez-vous utiliser votre configuration d'imprimante actuelle dans Cura ?"
  371. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:552
  372. msgctxt "@label"
  373. msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  374. msgstr "Les PrintCores et / ou matériaux sur votre imprimante diffèrent de ceux de votre projet actuel. Pour un résultat optimal, découpez toujours pour les PrintCores et matériaux insérés dans votre imprimante."
  375. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:91
  376. msgctxt "@info:status"
  377. msgid "Connected over the network"
  378. msgstr "Connecté sur le réseau"
  379. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:275
  380. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:342
  381. msgctxt "@info:status"
  382. msgid "Print job was successfully sent to the printer."
  383. msgstr "L'envoi de la tâche d'impression à l'imprimante a réussi."
  384. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:277
  385. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:343
  386. msgctxt "@info:title"
  387. msgid "Data Sent"
  388. msgstr "Données envoyées"
  389. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:278
  390. msgctxt "@action:button"
  391. msgid "View in Monitor"
  392. msgstr "Afficher sur le moniteur"
  393. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:390
  394. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:290
  395. #, python-brace-format
  396. msgctxt "@info:status"
  397. msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  398. msgstr "{printer_name} a terminé d'imprimer '{job_name}'."
  399. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:392
  400. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:294
  401. #, python-brace-format
  402. msgctxt "@info:status"
  403. msgid "The print job '{job_name}' was finished."
  404. msgstr "La tâche d'impression '{job_name}' est terminée."
  405. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:393
  406. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:289
  407. msgctxt "@info:status"
  408. msgid "Print finished"
  409. msgstr "Impression terminée"
  410. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:573
  411. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:607
  412. msgctxt "@label:material"
  413. msgid "Empty"
  414. msgstr ""
  415. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:574
  416. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:608
  417. msgctxt "@label:material"
  418. msgid "Unknown"
  419. msgstr ""
  420. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:151
  421. msgctxt "@action:button"
  422. msgid "Print via Cloud"
  423. msgstr ""
  424. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
  425. msgctxt "@properties:tooltip"
  426. msgid "Print via Cloud"
  427. msgstr ""
  428. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
  429. msgctxt "@info:status"
  430. msgid "Connected via Cloud"
  431. msgstr ""
  432. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163
  433. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:331
  434. msgctxt "@info:title"
  435. msgid "Cloud error"
  436. msgstr ""
  437. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:180
  438. msgctxt "@info:status"
  439. msgid "Could not export print job."
  440. msgstr ""
  441. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:330
  442. msgctxt "@info:text"
  443. msgid "Could not upload the data to the printer."
  444. msgstr ""
  445. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/Utils.py:51
  446. msgctxt "@info:status"
  447. msgid "tomorrow"
  448. msgstr ""
  449. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/Utils.py:54
  450. msgctxt "@info:status"
  451. msgid "today"
  452. msgstr ""
  453. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:151
  454. msgctxt "@info:description"
  455. msgid "There was an error connecting to the cloud."
  456. msgstr ""
  457. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudProgressMessage.py:14
  458. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudProgressMessage.py:15
  459. msgctxt "@info:status"
  460. msgid "Sending data to remote cluster"
  461. msgstr ""
  462. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/UM3OutputDevicePlugin.py:456
  463. msgctxt "@info:status"
  464. msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  465. msgstr ""
  466. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/UM3OutputDevicePlugin.py:460
  467. msgctxt "@info:status"
  468. msgid "Connect to Ultimaker Cloud"
  469. msgstr ""
  470. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/UM3OutputDevicePlugin.py:461
  471. msgctxt "@action"
  472. msgid "Don't ask me again for this printer."
  473. msgstr ""
  474. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/UM3OutputDevicePlugin.py:464
  475. msgctxt "@action"
  476. msgid "Get started"
  477. msgstr ""
  478. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/UM3OutputDevicePlugin.py:478
  479. msgctxt "@info:status"
  480. msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  481. msgstr ""
  482. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/UM3OutputDevicePlugin.py:482
  483. msgctxt "@info:status"
  484. msgid "Connected!"
  485. msgstr ""
  486. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/UM3OutputDevicePlugin.py:486
  487. msgctxt "@action"
  488. msgid "Review your connection"
  489. msgstr ""
  490. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:30
  491. msgctxt "@action"
  492. msgid "Connect via Network"
  493. msgstr "Connecter via le réseau"
  494. #: /home/ruben/Projects/Cura/plugins/MonitorStage/__init__.py:14
  495. msgctxt "@item:inmenu"
  496. msgid "Monitor"
  497. msgstr "Surveiller"
  498. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:124
  499. msgctxt "@info"
  500. msgid "Could not access update information."
  501. msgstr "Impossible d'accéder aux informations de mise à jour."
  502. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  503. #, python-brace-format
  504. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  505. msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  506. msgstr "De nouvelles fonctionnalités sont disponibles pour votre {machine_name} ! Il est recommandé de mettre à jour le firmware sur votre imprimante."
  507. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:21
  508. #, python-format
  509. msgctxt "@info:title The %s gets replaced with the printer name."
  510. msgid "New %s firmware available"
  511. msgstr "Nouveau firmware %s disponible"
  512. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:27
  513. msgctxt "@action:button"
  514. msgid "How to update"
  515. msgstr "Comment effectuer la mise à jour"
  516. #: /home/ruben/Projects/Cura/plugins/SimulationView/__init__.py:15
  517. msgctxt "@item:inlistbox"
  518. msgid "Layer view"
  519. msgstr "Vue en couches"
  520. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:114
  521. msgctxt "@info:status"
  522. msgid "Cura does not accurately display layers when Wire Printing is enabled"
  523. msgstr "Cura n'affiche pas les couches avec précision lorsque l'impression filaire est activée"
  524. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:115
  525. msgctxt "@info:title"
  526. msgid "Simulation View"
  527. msgstr "Vue simulation"
  528. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  529. msgctxt "@item:inmenu"
  530. msgid "Post Processing"
  531. msgstr ""
  532. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  533. msgctxt "@item:inmenu"
  534. msgid "Modify G-Code"
  535. msgstr ""
  536. #: /home/ruben/Projects/Cura/plugins/SupportEraser/__init__.py:12
  537. msgctxt "@label"
  538. msgid "Support Blocker"
  539. msgstr "Blocage des supports"
  540. #: /home/ruben/Projects/Cura/plugins/SupportEraser/__init__.py:13
  541. msgctxt "@info:tooltip"
  542. msgid "Create a volume in which supports are not printed."
  543. msgstr "Créer un volume dans lequel les supports ne sont pas imprimés."
  544. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52
  545. msgctxt "@info"
  546. msgid "Cura collects anonymized usage statistics."
  547. msgstr "Cura recueille des statistiques d'utilisation anonymes."
  548. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:55
  549. msgctxt "@info:title"
  550. msgid "Collecting Data"
  551. msgstr "Collecte des données"
  552. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:57
  553. msgctxt "@action:button"
  554. msgid "More info"
  555. msgstr "Plus d'informations"
  556. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:58
  557. msgctxt "@action:tooltip"
  558. msgid "See more information on what data Cura sends."
  559. msgstr "Voir plus d'informations sur les données envoyées par Cura."
  560. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:60
  561. msgctxt "@action:button"
  562. msgid "Allow"
  563. msgstr "Autoriser"
  564. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:61
  565. msgctxt "@action:tooltip"
  566. msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing."
  567. msgstr "Autoriser Cura à envoyer des statistiques d'utilisation anonymes pour mieux prioriser les améliorations futures apportées à Cura. Certaines de vos préférences et paramètres sont envoyés, ainsi que la version du logiciel Cura et un hachage des modèles que vous découpez."
  568. #: /home/ruben/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
  569. msgctxt "@item:inlistbox"
  570. msgid "Cura 15.04 profiles"
  571. msgstr "Profils Cura 15.04"
  572. #: /home/ruben/Projects/Cura/plugins/R2D2/__init__.py:17
  573. msgctxt "@item:inmenu"
  574. msgid "Evaluation"
  575. msgstr ""
  576. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14
  577. msgctxt "@item:inlistbox"
  578. msgid "JPG Image"
  579. msgstr "Image JPG"
  580. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:18
  581. msgctxt "@item:inlistbox"
  582. msgid "JPEG Image"
  583. msgstr "Image JPEG"
  584. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:22
  585. msgctxt "@item:inlistbox"
  586. msgid "PNG Image"
  587. msgstr "Image PNG"
  588. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:26
  589. msgctxt "@item:inlistbox"
  590. msgid "BMP Image"
  591. msgstr "Image BMP"
  592. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:30
  593. msgctxt "@item:inlistbox"
  594. msgid "GIF Image"
  595. msgstr "Image GIF"
  596. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:334
  597. msgctxt "@info:status"
  598. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  599. msgstr "Impossible de découper le matériau actuel, car celui-ci est incompatible avec la machine ou la configuration sélectionnée."
  600. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:334
  601. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:365
  602. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:389
  603. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:398
  604. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:407
  605. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:416
  606. msgctxt "@info:title"
  607. msgid "Unable to slice"
  608. msgstr "Impossible de découper"
  609. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364
  610. #, python-brace-format
  611. msgctxt "@info:status"
  612. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  613. msgstr "Impossible de couper avec les paramètres actuels. Les paramètres suivants contiennent des erreurs : {0}"
  614. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388
  615. #, python-brace-format
  616. msgctxt "@info:status"
  617. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  618. msgstr "Impossible de couper en raison de certains paramètres par modèle. Les paramètres suivants contiennent des erreurs sur un ou plusieurs modèles : {error_labels}"
  619. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397
  620. msgctxt "@info:status"
  621. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  622. msgstr "Impossible de couper car la tour primaire ou la (les) position(s) d'amorçage ne sont pas valides."
  623. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406
  624. #, python-format
  625. msgctxt "@info:status"
  626. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  627. msgstr "Impossible de couper car il existe des objets associés à l'extrudeuse désactivée %s."
  628. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415
  629. msgctxt "@info:status"
  630. msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder."
  631. msgstr ""
  632. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50
  633. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:255
  634. msgctxt "@info:status"
  635. msgid "Processing Layers"
  636. msgstr "Traitement des couches"
  637. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:255
  638. msgctxt "@info:title"
  639. msgid "Information"
  640. msgstr "Informations"
  641. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  642. msgctxt "@label"
  643. msgid "Per Model Settings"
  644. msgstr "Paramètres par modèle"
  645. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  646. msgctxt "@info:tooltip"
  647. msgid "Configure Per Model Settings"
  648. msgstr "Configurer les paramètres par modèle"
  649. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:175
  650. msgctxt "@title:tab"
  651. msgid "Recommended"
  652. msgstr "Recommandé"
  653. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:177
  654. msgctxt "@title:tab"
  655. msgid "Custom"
  656. msgstr "Personnalisé"
  657. #: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28
  658. #: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34
  659. msgctxt "@item:inlistbox"
  660. msgid "3MF File"
  661. msgstr "Fichier 3MF"
  662. #: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190
  663. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:763
  664. msgctxt "@label"
  665. msgid "Nozzle"
  666. msgstr "Buse"
  667. #: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:469
  668. #, python-brace-format
  669. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  670. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  671. msgstr "Le fichier projet <filename>{0}</filename> contient un type de machine inconnu <message>{1}</message>. Impossible d'importer la machine. Les modèles seront importés à la place."
  672. #: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:472
  673. msgctxt "@info:title"
  674. msgid "Open Project File"
  675. msgstr "Ouvrir un fichier de projet"
  676. #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12
  677. msgctxt "@item:inmenu"
  678. msgid "Solid view"
  679. msgstr "Vue solide"
  680. #: /home/ruben/Projects/Cura/plugins/GCodeReader/__init__.py:18
  681. msgctxt "@item:inlistbox"
  682. msgid "G File"
  683. msgstr "Fichier G"
  684. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324
  685. msgctxt "@info:status"
  686. msgid "Parsing G-code"
  687. msgstr "Analyse du G-Code"
  688. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:326
  689. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:476
  690. msgctxt "@info:title"
  691. msgid "G-code Details"
  692. msgstr "Détails G-Code"
  693. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:474
  694. msgctxt "@info:generic"
  695. msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
  696. msgstr "Assurez-vous que le g-code est adapté à votre imprimante et à la configuration de l'imprimante avant d'y envoyer le fichier. La représentation du g-code peut ne pas être exacte."
  697. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
  698. msgctxt "@item:inmenu"
  699. msgid "Manage backups"
  700. msgstr ""
  701. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
  702. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
  703. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:55
  704. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104
  705. msgctxt "@info:title"
  706. msgid "Backup"
  707. msgstr "Sauvegarde"
  708. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:55
  709. msgctxt "@info:backup_status"
  710. msgid "There was an error listing your backups."
  711. msgstr ""
  712. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:121
  713. msgctxt "@info:backup_status"
  714. msgid "There was an error trying to restore your backup."
  715. msgstr ""
  716. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/UploadBackupJob.py:15
  717. msgctxt "@info:title"
  718. msgid "Backups"
  719. msgstr ""
  720. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/UploadBackupJob.py:27
  721. msgctxt "@info:backup_status"
  722. msgid "Uploading your backup..."
  723. msgstr ""
  724. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/UploadBackupJob.py:36
  725. msgctxt "@info:backup_status"
  726. msgid "There was an error while uploading your backup."
  727. msgstr ""
  728. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/UploadBackupJob.py:39
  729. msgctxt "@info:backup_status"
  730. msgid "Your backup has finished uploading."
  731. msgstr ""
  732. #: /home/ruben/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
  733. #: /home/ruben/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
  734. msgctxt "@item:inlistbox"
  735. msgid "Cura Profile"
  736. msgstr "Profil Cura"
  737. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12
  738. msgctxt "@item:inmenu"
  739. msgid "Profile Assistant"
  740. msgstr "Assistant de profil"
  741. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:18
  742. msgctxt "@item:inlistbox"
  743. msgid "Profile Assistant"
  744. msgstr "Assistant de profil"
  745. #: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26
  746. msgctxt "@item:inlistbox"
  747. msgid "3MF file"
  748. msgstr "Fichier 3MF"
  749. #: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34
  750. msgctxt "@item:inlistbox"
  751. msgid "Cura Project 3MF file"
  752. msgstr "Projet Cura fichier 3MF"
  753. #: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179
  754. msgctxt "@error:zip"
  755. msgid "Error writing 3mf file."
  756. msgstr "Erreur d'écriture du fichier 3MF."
  757. #: /home/ruben/Projects/Cura/plugins/PreviewStage/__init__.py:13
  758. msgctxt "@item:inmenu"
  759. msgid "Preview"
  760. msgstr ""
  761. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17
  762. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18
  763. msgctxt "@action"
  764. msgid "Select upgrades"
  765. msgstr "Sélectionner les mises à niveau"
  766. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:21
  767. msgctxt "@action"
  768. msgid "Level build plate"
  769. msgstr "Nivellement du plateau"
  770. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:81
  771. msgctxt "@tooltip"
  772. msgid "Outer Wall"
  773. msgstr "Paroi externe"
  774. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:82
  775. msgctxt "@tooltip"
  776. msgid "Inner Walls"
  777. msgstr "Parois internes"
  778. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:83
  779. msgctxt "@tooltip"
  780. msgid "Skin"
  781. msgstr "Couche extérieure"
  782. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:84
  783. msgctxt "@tooltip"
  784. msgid "Infill"
  785. msgstr "Remplissage"
  786. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:85
  787. msgctxt "@tooltip"
  788. msgid "Support Infill"
  789. msgstr "Remplissage du support"
  790. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:86
  791. msgctxt "@tooltip"
  792. msgid "Support Interface"
  793. msgstr "Interface du support"
  794. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:87
  795. msgctxt "@tooltip"
  796. msgid "Support"
  797. msgstr "Support"
  798. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:88
  799. msgctxt "@tooltip"
  800. msgid "Skirt"
  801. msgstr "Jupe"
  802. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:89
  803. msgctxt "@tooltip"
  804. msgid "Travel"
  805. msgstr "Déplacement"
  806. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:90
  807. msgctxt "@tooltip"
  808. msgid "Retractions"
  809. msgstr "Rétractions"
  810. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:91
  811. msgctxt "@tooltip"
  812. msgid "Other"
  813. msgstr "Autre"
  814. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:309
  815. #, python-brace-format
  816. msgctxt "@label"
  817. msgid "Pre-sliced file {0}"
  818. msgstr "Fichier {0} prédécoupé"
  819. #: /home/ruben/Projects/Cura/cura/API/Account.py:77
  820. msgctxt "@info:title"
  821. msgid "Login failed"
  822. msgstr "La connexion a échoué"
  823. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:201
  824. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121
  825. msgctxt "@title:window"
  826. msgid "File Already Exists"
  827. msgstr "Le fichier existe déjà"
  828. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:202
  829. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122
  830. #, python-brace-format
  831. msgctxt "@label Don't translate the XML tag <filename>!"
  832. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  833. msgstr "Le fichier <filename>{0}</filename> existe déjà. Êtes-vous sûr de vouloir le remplacer ?"
  834. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:425
  835. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:428
  836. msgctxt "@info:status"
  837. msgid "Invalid file URL:"
  838. msgstr ""
  839. #: /home/ruben/Projects/Cura/cura/Settings/ExtrudersModel.py:206
  840. msgctxt "@menuitem"
  841. msgid "Not overridden"
  842. msgstr "Pas écrasé"
  843. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:915
  844. #, python-format
  845. msgctxt "@info:generic"
  846. msgid "Settings have been changed to match the current availability of extruders: [%s]"
  847. msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles : [%s]"
  848. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:917
  849. msgctxt "@info:title"
  850. msgid "Settings updated"
  851. msgstr "Paramètres mis à jour"
  852. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:1458
  853. msgctxt "@info:title"
  854. msgid "Extruder(s) Disabled"
  855. msgstr ""
  856. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:131
  857. #, python-brace-format
  858. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  859. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  860. msgstr "Échec de l'exportation du profil vers <filename>{0}</filename> : <message>{1}</message>"
  861. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:138
  862. #, python-brace-format
  863. msgctxt "@info:status Don't translate the XML tag <filename>!"
  864. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  865. msgstr "Échec de l'exportation du profil vers <filename>{0}</filename> : le plug-in du générateur a rapporté une erreur."
  866. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:143
  867. #, python-brace-format
  868. msgctxt "@info:status Don't translate the XML tag <filename>!"
  869. msgid "Exported profile to <filename>{0}</filename>"
  870. msgstr "Profil exporté vers <filename>{0}</filename>"
  871. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144
  872. msgctxt "@info:title"
  873. msgid "Export succeeded"
  874. msgstr "L'exportation a réussi"
  875. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:170
  876. #, python-brace-format
  877. msgctxt "@info:status Don't translate the XML tags <filename>!"
  878. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  879. msgstr ""
  880. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:177
  881. #, python-brace-format
  882. msgctxt "@info:status Don't translate the XML tags <filename>!"
  883. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  884. msgstr ""
  885. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:190
  886. #, python-brace-format
  887. msgctxt "@info:status Don't translate the XML tags <filename>!"
  888. msgid "No custom profile to import in file <filename>{0}</filename>"
  889. msgstr "Aucun profil personnalisé à importer dans le fichier <filename>{0}</filename>"
  890. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:194
  891. #, python-brace-format
  892. msgctxt "@info:status Don't translate the XML tags <filename>!"
  893. msgid "Failed to import profile from <filename>{0}</filename>:"
  894. msgstr "Échec de l'importation du profil depuis le fichier <filename>{0}</filename> :"
  895. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:218
  896. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228
  897. #, python-brace-format
  898. msgctxt "@info:status Don't translate the XML tags <filename>!"
  899. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  900. msgstr "Le profil <filename>{0}</filename> contient des données incorrectes ; échec de l'importation."
  901. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:241
  902. #, python-brace-format
  903. msgctxt "@info:status Don't translate the XML tags <filename>!"
  904. msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  905. msgstr "La machine définie dans le profil <filename>{0}</filename> ({1}) ne correspond pas à votre machine actuelle ({2}) ; échec de l'importation."
  906. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:313
  907. #, python-brace-format
  908. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  909. msgid "Failed to import profile from <filename>{0}</filename>:"
  910. msgstr "Échec de l'importation du profil depuis le fichier <filename>{0}</filename> :"
  911. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:316
  912. #, python-brace-format
  913. msgctxt "@info:status"
  914. msgid "Successfully imported profile {0}"
  915. msgstr "Importation du profil {0} réussie"
  916. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:319
  917. #, python-brace-format
  918. msgctxt "@info:status"
  919. msgid "File {0} does not contain any valid profile."
  920. msgstr "Le fichier {0} ne contient pas de profil valide."
  921. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:322
  922. #, python-brace-format
  923. msgctxt "@info:status"
  924. msgid "Profile {0} has an unknown file type or is corrupted."
  925. msgstr "Le profil {0} est un type de fichier inconnu ou est corrompu."
  926. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:340
  927. msgctxt "@label"
  928. msgid "Custom profile"
  929. msgstr "Personnaliser le profil"
  930. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:356
  931. msgctxt "@info:status"
  932. msgid "Profile is missing a quality type."
  933. msgstr "Il manque un type de qualité au profil."
  934. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370
  935. #, python-brace-format
  936. msgctxt "@info:status"
  937. msgid "Could not find a quality type {0} for the current configuration."
  938. msgstr "Impossible de trouver un type de qualité {0} pour la configuration actuelle."
  939. #: /home/ruben/Projects/Cura/cura/ObjectsModel.py:69
  940. #, python-brace-format
  941. msgctxt "@label"
  942. msgid "Group #{group_nr}"
  943. msgstr "Groupe nº {group_nr}"
  944. #: /home/ruben/Projects/Cura/cura/Machines/Models/MachineManagementModel.py:65
  945. msgctxt "@info:title"
  946. msgid "Network enabled printers"
  947. msgstr "Imprimantes réseau"
  948. #: /home/ruben/Projects/Cura/cura/Machines/Models/MachineManagementModel.py:80
  949. msgctxt "@info:title"
  950. msgid "Local printers"
  951. msgstr "Imprimantes locales"
  952. #: /home/ruben/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:109
  953. #, python-brace-format
  954. msgctxt "@item:inlistbox"
  955. msgid "All Supported Types ({0})"
  956. msgstr "Tous les types supportés ({0})"
  957. #: /home/ruben/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:110
  958. msgctxt "@item:inlistbox"
  959. msgid "All Files (*)"
  960. msgstr "Tous les fichiers (*)"
  961. #: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:665
  962. msgctxt "@label"
  963. msgid "Custom Material"
  964. msgstr "Matériau personnalisé"
  965. #: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:666
  966. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:256
  967. msgctxt "@label"
  968. msgid "Custom"
  969. msgstr "Personnalisé"
  970. #: /home/ruben/Projects/Cura/cura/BuildVolume.py:81
  971. msgctxt "@info:status"
  972. msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
  973. msgstr "La hauteur du volume d'impression a été réduite en raison de la valeur du paramètre « Séquence d'impression » afin d'éviter que le portique ne heurte les modèles imprimés."
  974. #: /home/ruben/Projects/Cura/cura/BuildVolume.py:83
  975. msgctxt "@info:title"
  976. msgid "Build Volume"
  977. msgstr "Volume d'impression"
  978. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99
  979. msgctxt "@info:backup_failed"
  980. msgid "Could not create archive from user data directory: {}"
  981. msgstr "Impossible de créer une archive à partir du répertoire de données de l'utilisateur : {}"
  982. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:114
  983. msgctxt "@info:backup_failed"
  984. msgid "Tried to restore a Cura backup without having proper data or meta data."
  985. msgstr "A essayé de restaurer une sauvegarde Cura sans disposer de données ou de métadonnées appropriées."
  986. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:124
  987. msgctxt "@info:backup_failed"
  988. msgid "Tried to restore a Cura backup that does not match your current version."
  989. msgstr "A essayé de restaurer une sauvegarde Cura qui ne correspond pas à votre version actuelle."
  990. #: /home/ruben/Projects/Cura/cura/OAuth2/AuthorizationService.py:186
  991. msgctxt "@info"
  992. msgid "Unable to reach the Ultimaker account server."
  993. msgstr ""
  994. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:27
  995. msgctxt "@info:status"
  996. msgid "Multiplying and placing objects"
  997. msgstr "Multiplication et placement d'objets"
  998. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28
  999. msgctxt "@info:title"
  1000. msgid "Placing Objects"
  1001. msgstr ""
  1002. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100
  1003. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:103
  1004. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
  1005. msgctxt "@info:status"
  1006. msgid "Unable to find a location within the build volume for all objects"
  1007. msgstr "Impossible de trouver un emplacement dans le volume d'impression pour tous les objets"
  1008. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100
  1009. msgctxt "@info:title"
  1010. msgid "Placing Object"
  1011. msgstr "Placement de l'objet"
  1012. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30
  1013. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
  1014. msgctxt "@info:status"
  1015. msgid "Finding new location for objects"
  1016. msgstr "Recherche d'un nouvel emplacement pour les objets"
  1017. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34
  1018. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
  1019. msgctxt "@info:title"
  1020. msgid "Finding Location"
  1021. msgstr "Recherche d'emplacement"
  1022. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:104
  1023. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
  1024. msgctxt "@info:title"
  1025. msgid "Can't Find Location"
  1026. msgstr "Impossible de trouver un emplacement"
  1027. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:83
  1028. msgctxt "@title:window"
  1029. msgid "Cura can't start"
  1030. msgstr "Échec du démarrage de Cura"
  1031. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:89
  1032. msgctxt "@label crash message"
  1033. msgid ""
  1034. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  1035. " <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n"
  1036. " <p>Backups can be found in the configuration folder.</p>\n"
  1037. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  1038. " "
  1039. msgstr ""
  1040. "<p><b>Oups, un problème est survenu dans Ultimaker Cura.</p></b>\n"
  1041. " <p>Une erreur irrécupérable est survenue lors du démarrage. Elle peut avoir été causée par des fichiers de configuration incorrects. Nous vous suggérons de sauvegarder et de réinitialiser votre configuration.</p>\n"
  1042. " <p>Les sauvegardes se trouvent dans le dossier de configuration.</p>\n"
  1043. " <p>Veuillez nous envoyer ce rapport d'incident pour que nous puissions résoudre le problème.</p>\n"
  1044. " "
  1045. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:98
  1046. msgctxt "@action:button"
  1047. msgid "Send crash report to Ultimaker"
  1048. msgstr "Envoyer le rapport de d'incident à Ultimaker"
  1049. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:101
  1050. msgctxt "@action:button"
  1051. msgid "Show detailed crash report"
  1052. msgstr "Afficher le rapport d'incident détaillé"
  1053. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:105
  1054. msgctxt "@action:button"
  1055. msgid "Show configuration folder"
  1056. msgstr "Afficher le dossier de configuration"
  1057. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:116
  1058. msgctxt "@action:button"
  1059. msgid "Backup and Reset Configuration"
  1060. msgstr "Sauvegarder et réinitialiser la configuration"
  1061. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:145
  1062. msgctxt "@title:window"
  1063. msgid "Crash Report"
  1064. msgstr "Rapport d'incident"
  1065. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:165
  1066. msgctxt "@label crash message"
  1067. msgid ""
  1068. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  1069. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  1070. " "
  1071. msgstr ""
  1072. "<p><b>Une erreur fatale est survenue dans Cura. Veuillez nous envoyer ce rapport d'incident pour résoudre le problème</p></b>\n"
  1073. " <p>Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs</p>\n"
  1074. " "
  1075. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:173
  1076. msgctxt "@title:groupbox"
  1077. msgid "System information"
  1078. msgstr "Informations système"
  1079. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:181
  1080. msgctxt "@label unknown version of Cura"
  1081. msgid "Unknown"
  1082. msgstr "Inconnu"
  1083. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:183
  1084. msgctxt "@label Cura version number"
  1085. msgid "Cura version"
  1086. msgstr "Version Cura"
  1087. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:184
  1088. msgctxt "@label Type of platform"
  1089. msgid "Platform"
  1090. msgstr "Plate-forme"
  1091. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:185
  1092. msgctxt "@label"
  1093. msgid "Qt version"
  1094. msgstr "Version Qt"
  1095. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:186
  1096. msgctxt "@label"
  1097. msgid "PyQt version"
  1098. msgstr "Version PyQt"
  1099. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:187
  1100. msgctxt "@label OpenGL version"
  1101. msgid "OpenGL"
  1102. msgstr "OpenGL"
  1103. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:204
  1104. msgctxt "@label"
  1105. msgid "Not yet initialized<br/>"
  1106. msgstr "Pas encore initialisé<br/>"
  1107. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:207
  1108. #, python-brace-format
  1109. msgctxt "@label OpenGL version"
  1110. msgid "<li>OpenGL Version: {version}</li>"
  1111. msgstr "<li>Version OpenGL : {version}</li>"
  1112. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:208
  1113. #, python-brace-format
  1114. msgctxt "@label OpenGL vendor"
  1115. msgid "<li>OpenGL Vendor: {vendor}</li>"
  1116. msgstr "<li>Revendeur OpenGL : {vendor}</li>"
  1117. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:209
  1118. #, python-brace-format
  1119. msgctxt "@label OpenGL renderer"
  1120. msgid "<li>OpenGL Renderer: {renderer}</li>"
  1121. msgstr "<li>Moteur de rendu OpenGL : {renderer}</li>"
  1122. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:218
  1123. msgctxt "@title:groupbox"
  1124. msgid "Error traceback"
  1125. msgstr "Retraçage de l'erreur"
  1126. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:299
  1127. msgctxt "@title:groupbox"
  1128. msgid "Logs"
  1129. msgstr "Journaux"
  1130. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:322
  1131. msgctxt "@title:groupbox"
  1132. msgid "User description"
  1133. msgstr "Description de l'utilisateur"
  1134. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:341
  1135. msgctxt "@action:button"
  1136. msgid "Send report"
  1137. msgstr "Envoyer rapport"
  1138. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:480
  1139. msgctxt "@info:progress"
  1140. msgid "Loading machines..."
  1141. msgstr "Chargement des machines..."
  1142. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:781
  1143. msgctxt "@info:progress"
  1144. msgid "Setting up scene..."
  1145. msgstr "Préparation de la scène..."
  1146. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:817
  1147. msgctxt "@info:progress"
  1148. msgid "Loading interface..."
  1149. msgstr "Chargement de l'interface..."
  1150. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1059
  1151. #, python-format
  1152. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  1153. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  1154. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  1155. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1618
  1156. #, python-brace-format
  1157. msgctxt "@info:status"
  1158. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  1159. msgstr "Un seul fichier G-Code peut être chargé à la fois. Importation de {0} sautée"
  1160. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1628
  1161. #, python-brace-format
  1162. msgctxt "@info:status"
  1163. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  1164. msgstr "Impossible d'ouvrir un autre fichier si le G-Code est en cours de chargement. Importation de {0} sautée"
  1165. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1718
  1166. msgctxt "@info:status"
  1167. msgid "The selected model was too small to load."
  1168. msgstr "Le modèle sélectionné était trop petit pour être chargé."
  1169. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:62
  1170. msgctxt "@title"
  1171. msgid "Machine Settings"
  1172. msgstr "Paramètres de la machine"
  1173. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:81
  1174. msgctxt "@title:tab"
  1175. msgid "Printer"
  1176. msgstr "Imprimante"
  1177. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:100
  1178. msgctxt "@label"
  1179. msgid "Printer Settings"
  1180. msgstr "Paramètres de l'imprimante"
  1181. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111
  1182. msgctxt "@label"
  1183. msgid "X (Width)"
  1184. msgstr "X (Largeur)"
  1185. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:112
  1186. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:122
  1187. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:132
  1188. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238
  1189. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:387
  1190. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403
  1191. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429
  1192. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:441
  1193. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:897
  1194. msgctxt "@label"
  1195. msgid "mm"
  1196. msgstr "mm"
  1197. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121
  1198. msgctxt "@label"
  1199. msgid "Y (Depth)"
  1200. msgstr "Y (Profondeur)"
  1201. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131
  1202. msgctxt "@label"
  1203. msgid "Z (Height)"
  1204. msgstr "Z (Hauteur)"
  1205. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:143
  1206. msgctxt "@label"
  1207. msgid "Build plate shape"
  1208. msgstr "Forme du plateau"
  1209. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:152
  1210. msgctxt "@option:check"
  1211. msgid "Origin at center"
  1212. msgstr "Origine au centre"
  1213. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:160
  1214. msgctxt "@option:check"
  1215. msgid "Heated bed"
  1216. msgstr "Plateau chauffant"
  1217. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:171
  1218. msgctxt "@label"
  1219. msgid "G-code flavor"
  1220. msgstr "Parfum G-Code"
  1221. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:184
  1222. msgctxt "@label"
  1223. msgid "Printhead Settings"
  1224. msgstr "Paramètres de la tête d'impression"
  1225. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194
  1226. msgctxt "@label"
  1227. msgid "X min"
  1228. msgstr "X min"
  1229. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:195
  1230. msgctxt "@tooltip"
  1231. msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  1232. msgstr "Distance entre la gauche de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »."
  1233. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204
  1234. msgctxt "@label"
  1235. msgid "Y min"
  1236. msgstr "Y min"
  1237. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:205
  1238. msgctxt "@tooltip"
  1239. msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  1240. msgstr "Distance entre le devant de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »."
  1241. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214
  1242. msgctxt "@label"
  1243. msgid "X max"
  1244. msgstr "X max"
  1245. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:215
  1246. msgctxt "@tooltip"
  1247. msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  1248. msgstr "Distance entre la droite de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »."
  1249. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224
  1250. msgctxt "@label"
  1251. msgid "Y max"
  1252. msgstr "Y max"
  1253. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:225
  1254. msgctxt "@tooltip"
  1255. msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  1256. msgstr "Distance entre le dos de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »."
  1257. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237
  1258. msgctxt "@label"
  1259. msgid "Gantry height"
  1260. msgstr "Hauteur du portique"
  1261. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:239
  1262. msgctxt "@tooltip"
  1263. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"."
  1264. msgstr "La différence de hauteur entre la pointe de la buse et le système de portique (axes X et Y). Permet d'empêcher les collisions entre les impressions précédentes et le portique lors d'une impression « Un à la fois »."
  1265. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:258
  1266. msgctxt "@label"
  1267. msgid "Number of Extruders"
  1268. msgstr "Nombre d'extrudeuses"
  1269. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:314
  1270. msgctxt "@label"
  1271. msgid "Start G-code"
  1272. msgstr "G-Code de démarrage"
  1273. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:324
  1274. msgctxt "@tooltip"
  1275. msgid "G-code commands to be executed at the very start."
  1276. msgstr "Commandes G-Code à exécuter au tout début."
  1277. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:333
  1278. msgctxt "@label"
  1279. msgid "End G-code"
  1280. msgstr "G-Code de fin"
  1281. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:343
  1282. msgctxt "@tooltip"
  1283. msgid "G-code commands to be executed at the very end."
  1284. msgstr "Commandes G-Code à exécuter tout à la fin."
  1285. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:374
  1286. msgctxt "@label"
  1287. msgid "Nozzle Settings"
  1288. msgstr "Paramètres de la buse"
  1289. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386
  1290. msgctxt "@label"
  1291. msgid "Nozzle size"
  1292. msgstr "Taille de la buse"
  1293. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402
  1294. msgctxt "@label"
  1295. msgid "Compatible material diameter"
  1296. msgstr "Diamètre du matériau compatible"
  1297. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:404
  1298. msgctxt "@tooltip"
  1299. msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  1300. msgstr "Le diamètre nominal de filament pris en charge par l'imprimante. Le diamètre exact sera remplacé par le matériau et / ou le profil."
  1301. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:428
  1302. msgctxt "@label"
  1303. msgid "Nozzle offset X"
  1304. msgstr "Décalage buse X"
  1305. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:440
  1306. msgctxt "@label"
  1307. msgid "Nozzle offset Y"
  1308. msgstr "Décalage buse Y"
  1309. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452
  1310. msgctxt "@label"
  1311. msgid "Cooling Fan Number"
  1312. msgstr "Numéro du ventilateur de refroidissement"
  1313. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:453
  1314. msgctxt "@label"
  1315. msgid ""
  1316. msgstr ""
  1317. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:473
  1318. msgctxt "@label"
  1319. msgid "Extruder Start G-code"
  1320. msgstr "Extrudeuse G-Code de démarrage"
  1321. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:491
  1322. msgctxt "@label"
  1323. msgid "Extruder End G-code"
  1324. msgstr "Extrudeuse G-Code de fin"
  1325. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18
  1326. msgctxt "@action:button"
  1327. msgid "Install"
  1328. msgstr "Installer"
  1329. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:20
  1330. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:44
  1331. msgctxt "@action:button"
  1332. msgid "Installed"
  1333. msgstr "Installé"
  1334. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxErrorPage.qml:16
  1335. msgctxt "@info"
  1336. msgid "Could not connect to the Cura Package database. Please check your connection."
  1337. msgstr "Impossible de se connecter à la base de données Cura Package. Veuillez vérifier votre connexion."
  1338. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/SmallRatingWidget.qml:27
  1339. msgctxt "@label"
  1340. msgid "ratings"
  1341. msgstr ""
  1342. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38
  1343. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:28
  1344. msgctxt "@title:tab"
  1345. msgid "Plugins"
  1346. msgstr "Plug-ins"
  1347. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:69
  1348. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:42
  1349. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66
  1350. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:361
  1351. msgctxt "@title:tab"
  1352. msgid "Materials"
  1353. msgstr "Matériaux"
  1354. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91
  1355. msgctxt "@label"
  1356. msgid "Your rating"
  1357. msgstr ""
  1358. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98
  1359. msgctxt "@label"
  1360. msgid "Version"
  1361. msgstr "Version"
  1362. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:105
  1363. msgctxt "@label"
  1364. msgid "Last updated"
  1365. msgstr "Dernière mise à jour"
  1366. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:112
  1367. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AddMachineDialog.qml:260
  1368. msgctxt "@label"
  1369. msgid "Author"
  1370. msgstr "Auteur"
  1371. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:119
  1372. msgctxt "@label"
  1373. msgid "Downloads"
  1374. msgstr "Téléchargements"
  1375. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:181
  1376. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:222
  1377. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:265
  1378. msgctxt "@label"
  1379. msgid "Unknown"
  1380. msgstr "Inconnu"
  1381. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:54
  1382. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1383. msgid "<a href='%1'>Log in</a> is required to install or update"
  1384. msgstr ""
  1385. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:73
  1386. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:34
  1387. msgctxt "@action:button"
  1388. msgid "Update"
  1389. msgstr "Mise à jour"
  1390. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:74
  1391. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:35
  1392. msgctxt "@action:button"
  1393. msgid "Updating"
  1394. msgstr "Mise à jour"
  1395. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:75
  1396. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:36
  1397. msgctxt "@action:button"
  1398. msgid "Updated"
  1399. msgstr "Mis à jour"
  1400. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:13
  1401. msgctxt "@title"
  1402. msgid "Marketplace"
  1403. msgstr ""
  1404. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxBackColumn.qml:25
  1405. msgctxt "@action:button"
  1406. msgid "Back"
  1407. msgstr "Précédent"
  1408. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20
  1409. msgctxt "@title:window"
  1410. msgid "Confirm uninstall"
  1411. msgstr "Confirmer la désinstallation"
  1412. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:50
  1413. msgctxt "@text:window"
  1414. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  1415. msgstr "Vous désinstallez des matériaux et/ou des profils qui sont encore en cours d'utilisation. La confirmation réinitialisera les matériaux / profils suivants à leurs valeurs par défaut."
  1416. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51
  1417. msgctxt "@text:window"
  1418. msgid "Materials"
  1419. msgstr "Matériaux"
  1420. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52
  1421. msgctxt "@text:window"
  1422. msgid "Profiles"
  1423. msgstr "Profils"
  1424. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:90
  1425. msgctxt "@action:button"
  1426. msgid "Confirm"
  1427. msgstr "Confirmer"
  1428. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/RatingWidget.qml:54
  1429. msgctxt "@label"
  1430. msgid "You need to login first before you can rate"
  1431. msgstr ""
  1432. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/RatingWidget.qml:54
  1433. msgctxt "@label"
  1434. msgid "You need to install the package before you can rate"
  1435. msgstr ""
  1436. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:19
  1437. msgctxt "@info"
  1438. msgid "You will need to restart Cura before changes in packages have effect."
  1439. msgstr "Vous devez redémarrer Cura pour que les changements apportés aux paquets ne prennent effet."
  1440. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:45
  1441. msgctxt "@info:button"
  1442. msgid "Quit Cura"
  1443. msgstr "Quitter Cura"
  1444. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34
  1445. msgctxt "@label"
  1446. msgid "Community Contributions"
  1447. msgstr "Contributions de la communauté"
  1448. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34
  1449. msgctxt "@label"
  1450. msgid "Community Plugins"
  1451. msgstr "Plug-ins de la communauté"
  1452. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43
  1453. msgctxt "@label"
  1454. msgid "Generic Materials"
  1455. msgstr "Matériaux génériques"
  1456. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:56
  1457. msgctxt "@title:tab"
  1458. msgid "Installed"
  1459. msgstr "Installé"
  1460. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:22
  1461. msgctxt "@label"
  1462. msgid "Will install upon restarting"
  1463. msgstr "S'installera au redémarrage"
  1464. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:53
  1465. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1466. msgid "<a href='%1'>Log in</a> is required to update"
  1467. msgstr ""
  1468. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:71
  1469. msgctxt "@action:button"
  1470. msgid "Downgrade"
  1471. msgstr "Revenir à une version précédente"
  1472. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:71
  1473. msgctxt "@action:button"
  1474. msgid "Uninstall"
  1475. msgstr "Désinstaller"
  1476. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:16
  1477. msgctxt "@title:window"
  1478. msgid "Plugin License Agreement"
  1479. msgstr "Plug-in d'accord de licence"
  1480. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:33
  1481. msgctxt "@label"
  1482. msgid ""
  1483. "This plugin contains a license.\n"
  1484. "You need to accept this license to install this plugin.\n"
  1485. "Do you agree with the terms below?"
  1486. msgstr ""
  1487. "Ce plug-in contient une licence.\n"
  1488. "Vous devez approuver cette licence pour installer ce plug-in.\n"
  1489. "Acceptez-vous les clauses ci-dessous ?"
  1490. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:55
  1491. msgctxt "@action:button"
  1492. msgid "Accept"
  1493. msgstr "Accepter"
  1494. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:66
  1495. msgctxt "@action:button"
  1496. msgid "Decline"
  1497. msgstr "Refuser"
  1498. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23
  1499. msgctxt "@label"
  1500. msgid "Featured"
  1501. msgstr "Fonctionnalités"
  1502. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:66
  1503. msgctxt "@label"
  1504. msgid "Compatibility"
  1505. msgstr "Compatibilité"
  1506. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:203
  1507. msgctxt "@action:label"
  1508. msgid "Technical Data Sheet"
  1509. msgstr ""
  1510. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:212
  1511. msgctxt "@action:label"
  1512. msgid "Safety Data Sheet"
  1513. msgstr ""
  1514. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:221
  1515. msgctxt "@action:label"
  1516. msgid "Printing Guidelines"
  1517. msgstr ""
  1518. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:230
  1519. msgctxt "@action:label"
  1520. msgid "Website"
  1521. msgstr ""
  1522. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLoadingPage.qml:16
  1523. msgctxt "@info"
  1524. msgid "Fetching packages..."
  1525. msgstr "Récupération des paquets..."
  1526. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:90
  1527. msgctxt "@label"
  1528. msgid "Website"
  1529. msgstr "Site Internet"
  1530. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:97
  1531. msgctxt "@label"
  1532. msgid "Email"
  1533. msgstr "E-mail"
  1534. #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
  1535. msgctxt "@info:tooltip"
  1536. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  1537. msgstr "Certains éléments pourraient causer des problèmes à cette impression. Cliquez pour voir les conseils d'ajustement."
  1538. #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:18
  1539. msgctxt "@label"
  1540. msgid "Changelog"
  1541. msgstr "Récapitulatif des changements"
  1542. #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37
  1543. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
  1544. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:85
  1545. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
  1546. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508
  1547. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:123
  1548. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168
  1549. msgctxt "@action:button"
  1550. msgid "Close"
  1551. msgstr "Fermer"
  1552. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1553. msgctxt "@title"
  1554. msgid "Update Firmware"
  1555. msgstr "Mettre à jour le firmware"
  1556. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1557. msgctxt "@label"
  1558. msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
  1559. msgstr "Le firmware est le logiciel fonctionnant directement dans votre imprimante 3D. Ce firmware contrôle les moteurs pas à pas, régule la température et surtout, fait que votre machine fonctionne."
  1560. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1561. msgctxt "@label"
  1562. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1563. msgstr "Le firmware fourni avec les nouvelles imprimantes fonctionne, mais les nouvelles versions ont tendance à fournir davantage de fonctionnalités ainsi que des améliorations."
  1564. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1565. msgctxt "@action:button"
  1566. msgid "Automatically upgrade Firmware"
  1567. msgstr "Mise à niveau automatique du firmware"
  1568. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1569. msgctxt "@action:button"
  1570. msgid "Upload custom Firmware"
  1571. msgstr "Charger le firmware personnalisé"
  1572. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1573. msgctxt "@label"
  1574. msgid "Firmware can not be updated because there is no connection with the printer."
  1575. msgstr "Impossible de se connecter à l'imprimante ; échec de la mise à jour du firmware."
  1576. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1577. msgctxt "@label"
  1578. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1579. msgstr "Échec de la mise à jour du firmware, car cette fonctionnalité n'est pas prise en charge par la connexion avec l'imprimante."
  1580. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1581. msgctxt "@title:window"
  1582. msgid "Select custom firmware"
  1583. msgstr "Sélectionner le firmware personnalisé"
  1584. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1585. msgctxt "@title:window"
  1586. msgid "Firmware Update"
  1587. msgstr "Mise à jour du firmware"
  1588. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1589. msgctxt "@label"
  1590. msgid "Updating firmware."
  1591. msgstr "Mise à jour du firmware en cours."
  1592. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1593. msgctxt "@label"
  1594. msgid "Firmware update completed."
  1595. msgstr "Mise à jour du firmware terminée."
  1596. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1597. msgctxt "@label"
  1598. msgid "Firmware update failed due to an unknown error."
  1599. msgstr "Échec de la mise à jour du firmware en raison d'une erreur inconnue."
  1600. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1601. msgctxt "@label"
  1602. msgid "Firmware update failed due to an communication error."
  1603. msgstr "Échec de la mise à jour du firmware en raison d'une erreur de communication."
  1604. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1605. msgctxt "@label"
  1606. msgid "Firmware update failed due to an input/output error."
  1607. msgstr "Échec de la mise à jour du firmware en raison d'une erreur d'entrée/de sortie."
  1608. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1609. msgctxt "@label"
  1610. msgid "Firmware update failed due to missing firmware."
  1611. msgstr "Échec de la mise à jour du firmware en raison du firmware manquant."
  1612. #: /home/ruben/Projects/Cura/plugins/UserAgreement/UserAgreement.qml:16
  1613. msgctxt "@title:window"
  1614. msgid "User Agreement"
  1615. msgstr "Accord utilisateur"
  1616. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:208
  1617. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:254
  1618. msgctxt "@info"
  1619. msgid "These options are not available because you are monitoring a cloud printer."
  1620. msgstr ""
  1621. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241
  1622. msgctxt "@info"
  1623. msgid "The webcam is not available because you are monitoring a cloud printer."
  1624. msgstr ""
  1625. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:301
  1626. msgctxt "@label:status"
  1627. msgid "Loading..."
  1628. msgstr ""
  1629. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:305
  1630. msgctxt "@label:status"
  1631. msgid "Unavailable"
  1632. msgstr "Indisponible"
  1633. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:309
  1634. msgctxt "@label:status"
  1635. msgid "Unreachable"
  1636. msgstr ""
  1637. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:313
  1638. msgctxt "@label:status"
  1639. msgid "Idle"
  1640. msgstr ""
  1641. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:353
  1642. msgctxt "@label"
  1643. msgid "Untitled"
  1644. msgstr ""
  1645. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:373
  1646. msgctxt "@label"
  1647. msgid "Anonymous"
  1648. msgstr ""
  1649. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:399
  1650. msgctxt "@label:status"
  1651. msgid "Requires configuration changes"
  1652. msgstr ""
  1653. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:436
  1654. msgctxt "@action:button"
  1655. msgid "Details"
  1656. msgstr ""
  1657. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:132
  1658. msgctxt "@label"
  1659. msgid "Unavailable printer"
  1660. msgstr ""
  1661. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:134
  1662. msgctxt "@label"
  1663. msgid "First available"
  1664. msgstr ""
  1665. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:187
  1666. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:132
  1667. msgctxt "@label"
  1668. msgid "Glass"
  1669. msgstr "Verre"
  1670. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  1671. msgctxt "@label"
  1672. msgid "Queued"
  1673. msgstr "Mis en file d'attente"
  1674. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:67
  1675. msgctxt "@label link to connect manager"
  1676. msgid "Go to Cura Connect"
  1677. msgstr ""
  1678. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:102
  1679. msgctxt "@label"
  1680. msgid "Print jobs"
  1681. msgstr ""
  1682. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116
  1683. msgctxt "@label"
  1684. msgid "Total print time"
  1685. msgstr ""
  1686. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:130
  1687. msgctxt "@label"
  1688. msgid "Waiting for"
  1689. msgstr ""
  1690. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:246
  1691. msgctxt "@label link to connect manager"
  1692. msgid "View print history"
  1693. msgstr ""
  1694. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:46
  1695. msgctxt "@window:title"
  1696. msgid "Existing Connection"
  1697. msgstr "Connexion existante"
  1698. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:48
  1699. msgctxt "@message:text"
  1700. msgid "This printer/group is already added to Cura. Please select another printer/group."
  1701. msgstr "Ce groupe / cette imprimante a déjà été ajouté à Cura. Veuillez sélectionner un autre groupe / imprimante."
  1702. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:65
  1703. msgctxt "@title:window"
  1704. msgid "Connect to Networked Printer"
  1705. msgstr "Connecter à l'imprimante en réseau"
  1706. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  1707. msgctxt "@label"
  1708. msgid ""
  1709. "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer.\n"
  1710. "\n"
  1711. "Select your printer from the list below:"
  1712. msgstr ""
  1713. "Pour imprimer directement sur votre imprimante sur le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble réseau ou en connectant votre imprimante à votre réseau Wi-Fi. Si vous ne connectez pas Cura avec votre imprimante, vous pouvez utiliser une clé USB pour transférer les fichiers g-code sur votre imprimante.\n"
  1714. "\n"
  1715. "Sélectionnez votre imprimante dans la liste ci-dessous :"
  1716. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:87
  1717. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:44
  1718. msgctxt "@action:button"
  1719. msgid "Add"
  1720. msgstr "Ajouter"
  1721. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:97
  1722. msgctxt "@action:button"
  1723. msgid "Edit"
  1724. msgstr "Modifier"
  1725. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:108
  1726. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128
  1727. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50
  1728. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117
  1729. msgctxt "@action:button"
  1730. msgid "Remove"
  1731. msgstr "Supprimer"
  1732. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:116
  1733. msgctxt "@action:button"
  1734. msgid "Refresh"
  1735. msgstr "Rafraîchir"
  1736. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:211
  1737. msgctxt "@label"
  1738. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1739. msgstr "Si votre imprimante n'apparaît pas dans la liste, lisez le <a href='%1'>guide de dépannage de l'impression en réseau</a>"
  1740. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:240
  1741. msgctxt "@label"
  1742. msgid "Type"
  1743. msgstr "Type"
  1744. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:279
  1745. msgctxt "@label"
  1746. msgid "Firmware version"
  1747. msgstr "Version du firmware"
  1748. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:293
  1749. msgctxt "@label"
  1750. msgid "Address"
  1751. msgstr "Adresse"
  1752. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:317
  1753. msgctxt "@label"
  1754. msgid "This printer is not set up to host a group of printers."
  1755. msgstr "Cette imprimante n'est pas configurée pour héberger un groupe d'imprimantes."
  1756. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321
  1757. msgctxt "@label"
  1758. msgid "This printer is the host for a group of %1 printers."
  1759. msgstr "Cette imprimante est l'hôte d'un groupe d'imprimantes %1."
  1760. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:332
  1761. msgctxt "@label"
  1762. msgid "The printer at this address has not yet responded."
  1763. msgstr "L'imprimante à cette adresse n'a pas encore répondu."
  1764. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:337
  1765. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:74
  1766. msgctxt "@action:button"
  1767. msgid "Connect"
  1768. msgstr "Connecter"
  1769. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:351
  1770. msgctxt "@title:window"
  1771. msgid "Printer Address"
  1772. msgstr "Adresse de l'imprimante"
  1773. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:374
  1774. msgctxt "@alabel"
  1775. msgid "Enter the IP address or hostname of your printer on the network."
  1776. msgstr "Saisissez l'adresse IP ou le nom d'hôte de votre imprimante sur le réseau."
  1777. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:404
  1778. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132
  1779. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181
  1780. msgctxt "@action:button"
  1781. msgid "OK"
  1782. msgstr "OK"
  1783. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  1784. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  1785. msgctxt "@label:status"
  1786. msgid "Aborted"
  1787. msgstr "Abandonné"
  1788. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  1789. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  1790. msgctxt "@label:status"
  1791. msgid "Finished"
  1792. msgstr "Terminé"
  1793. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  1794. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  1795. msgctxt "@label:status"
  1796. msgid "Preparing..."
  1797. msgstr ""
  1798. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  1799. msgctxt "@label:status"
  1800. msgid "Aborting..."
  1801. msgstr ""
  1802. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  1803. msgctxt "@label:status"
  1804. msgid "Pausing..."
  1805. msgstr ""
  1806. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  1807. msgctxt "@label:status"
  1808. msgid "Paused"
  1809. msgstr "En pause"
  1810. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  1811. msgctxt "@label:status"
  1812. msgid "Resuming..."
  1813. msgstr ""
  1814. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108
  1815. msgctxt "@label:status"
  1816. msgid "Action required"
  1817. msgstr "Action requise"
  1818. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110
  1819. msgctxt "@label:status"
  1820. msgid "Finishes %1 at %2"
  1821. msgstr ""
  1822. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44
  1823. msgctxt "@action:button"
  1824. msgid "Print"
  1825. msgstr "Imprimer"
  1826. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:47
  1827. msgctxt "@title:window"
  1828. msgid "Print over network"
  1829. msgstr "Imprimer sur le réseau"
  1830. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:79
  1831. msgctxt "@label"
  1832. msgid "Printer selection"
  1833. msgstr "Sélection d'imprimantes"
  1834. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  1835. msgctxt "@label"
  1836. msgid "Move to top"
  1837. msgstr "Déplacer l'impression en haut"
  1838. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  1839. msgctxt "@label"
  1840. msgid "Delete"
  1841. msgstr "Effacer"
  1842. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  1843. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289
  1844. msgctxt "@label"
  1845. msgid "Resume"
  1846. msgstr "Reprendre"
  1847. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  1848. msgctxt "@label"
  1849. msgid "Pausing..."
  1850. msgstr ""
  1851. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  1852. msgctxt "@label"
  1853. msgid "Resuming..."
  1854. msgstr ""
  1855. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  1856. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284
  1857. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293
  1858. msgctxt "@label"
  1859. msgid "Pause"
  1860. msgstr "Pause"
  1861. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1862. msgctxt "@label"
  1863. msgid "Aborting..."
  1864. msgstr ""
  1865. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1866. msgctxt "@label"
  1867. msgid "Abort"
  1868. msgstr "Abandonner"
  1869. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  1870. msgctxt "@label %1 is the name of a print job."
  1871. msgid "Are you sure you want to move %1 to the top of the queue?"
  1872. msgstr "Êtes-vous sûr de vouloir déplacer %1 en haut de la file d'attente ?"
  1873. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  1874. msgctxt "@window:title"
  1875. msgid "Move print job to top"
  1876. msgstr "Déplacer l'impression en haut de la file d'attente"
  1877. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  1878. msgctxt "@label %1 is the name of a print job."
  1879. msgid "Are you sure you want to delete %1?"
  1880. msgstr "Êtes-vous sûr de vouloir supprimer %1 ?"
  1881. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  1882. msgctxt "@window:title"
  1883. msgid "Delete print job"
  1884. msgstr "Supprimer l'impression"
  1885. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  1886. msgctxt "@label %1 is the name of a print job."
  1887. msgid "Are you sure you want to abort %1?"
  1888. msgstr "Êtes-vous sûr de vouloir annuler %1 ?"
  1889. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
  1890. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335
  1891. msgctxt "@window:title"
  1892. msgid "Abort print"
  1893. msgstr "Abandonner l'impression"
  1894. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1895. msgctxt "@title:window"
  1896. msgid "Configuration Changes"
  1897. msgstr ""
  1898. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  1899. msgctxt "@action:button"
  1900. msgid "Override"
  1901. msgstr ""
  1902. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:64
  1903. msgctxt "@label"
  1904. msgid "The assigned printer, %1, requires the following configuration change:"
  1905. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  1906. msgstr[0] ""
  1907. msgstr[1] ""
  1908. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:68
  1909. msgctxt "@label"
  1910. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  1911. msgstr "L'imprimante %1 est assignée, mais le projet contient une configuration matérielle inconnue."
  1912. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:78
  1913. msgctxt "@label"
  1914. msgid "Change material %1 from %2 to %3."
  1915. msgstr "Changer le matériau %1 de %2 à %3."
  1916. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:81
  1917. msgctxt "@label"
  1918. msgid "Load %3 as material %1 (This cannot be overridden)."
  1919. msgstr "Charger %3 comme matériau %1 (Ceci ne peut pas être remplacé)."
  1920. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:84
  1921. msgctxt "@label"
  1922. msgid "Change print core %1 from %2 to %3."
  1923. msgstr "Changer le print core %1 de %2 à %3."
  1924. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  1925. msgctxt "@label"
  1926. msgid "Change build plate to %1 (This cannot be overridden)."
  1927. msgstr "Changer le plateau en %1 (Ceci ne peut pas être remplacé)."
  1928. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:94
  1929. msgctxt "@label"
  1930. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  1931. msgstr ""
  1932. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:135
  1933. msgctxt "@label"
  1934. msgid "Aluminum"
  1935. msgstr "Aluminium"
  1936. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:75
  1937. msgctxt "@info:tooltip"
  1938. msgid "Connect to a printer"
  1939. msgstr "Connecter à une imprimante"
  1940. #: /home/ruben/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:92
  1941. msgctxt "@info"
  1942. msgid ""
  1943. "Please make sure your printer has a connection:\n"
  1944. "- Check if the printer is turned on.\n"
  1945. "- Check if the printer is connected to the network."
  1946. msgstr ""
  1947. #: /home/ruben/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:110
  1948. msgctxt "@info"
  1949. msgid "Please select a network connected printer to monitor."
  1950. msgstr ""
  1951. #: /home/ruben/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:126
  1952. msgctxt "@info"
  1953. msgid "Please connect your Ultimaker printer to your local network."
  1954. msgstr ""
  1955. #: /home/ruben/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:165
  1956. msgctxt "@label link to technical assistance"
  1957. msgid "View user manuals online"
  1958. msgstr ""
  1959. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18
  1960. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47
  1961. msgctxt "@label"
  1962. msgid "Color scheme"
  1963. msgstr "Modèle de couleurs"
  1964. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:105
  1965. msgctxt "@label:listbox"
  1966. msgid "Material Color"
  1967. msgstr "Couleur du matériau"
  1968. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
  1969. msgctxt "@label:listbox"
  1970. msgid "Line Type"
  1971. msgstr "Type de ligne"
  1972. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
  1973. msgctxt "@label:listbox"
  1974. msgid "Feedrate"
  1975. msgstr "Taux d'alimentation"
  1976. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
  1977. msgctxt "@label:listbox"
  1978. msgid "Layer thickness"
  1979. msgstr "Épaisseur de la couche"
  1980. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:154
  1981. msgctxt "@label"
  1982. msgid "Compatibility Mode"
  1983. msgstr "Mode de compatibilité"
  1984. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:229
  1985. msgctxt "@label"
  1986. msgid "Travels"
  1987. msgstr ""
  1988. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:235
  1989. msgctxt "@label"
  1990. msgid "Helpers"
  1991. msgstr ""
  1992. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:241
  1993. msgctxt "@label"
  1994. msgid "Shell"
  1995. msgstr ""
  1996. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:247
  1997. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  1998. msgctxt "@label"
  1999. msgid "Infill"
  2000. msgstr "Remplissage"
  2001. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:297
  2002. msgctxt "@label"
  2003. msgid "Only Show Top Layers"
  2004. msgstr "Afficher uniquement les couches supérieures"
  2005. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:307
  2006. msgctxt "@label"
  2007. msgid "Show 5 Detailed Layers On Top"
  2008. msgstr "Afficher 5 niveaux détaillés en haut"
  2009. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:321
  2010. msgctxt "@label"
  2011. msgid "Top / Bottom"
  2012. msgstr "Haut / bas"
  2013. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:325
  2014. msgctxt "@label"
  2015. msgid "Inner Wall"
  2016. msgstr "Paroi interne"
  2017. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:383
  2018. msgctxt "@label"
  2019. msgid "min"
  2020. msgstr "min."
  2021. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:432
  2022. msgctxt "@label"
  2023. msgid "max"
  2024. msgstr "max."
  2025. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
  2026. msgctxt "@title:window"
  2027. msgid "Post Processing Plugin"
  2028. msgstr "Plug-in de post-traitement"
  2029. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  2030. msgctxt "@label"
  2031. msgid "Post Processing Scripts"
  2032. msgstr "Scripts de post-traitement"
  2033. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
  2034. msgctxt "@action"
  2035. msgid "Add a script"
  2036. msgstr "Ajouter un script"
  2037. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
  2038. msgctxt "@label"
  2039. msgid "Settings"
  2040. msgstr "Paramètres"
  2041. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:493
  2042. msgctxt "@info:tooltip"
  2043. msgid "Change active post-processing scripts"
  2044. msgstr "Modifier les scripts de post-traitement actifs"
  2045. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16
  2046. msgctxt "@title:window"
  2047. msgid "More information on anonymous data collection"
  2048. msgstr "Plus d'informations sur la collecte de données anonymes"
  2049. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:66
  2050. msgctxt "@text:window"
  2051. msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent."
  2052. msgstr "Cura envoie des données anonymes à Ultimaker afin d'améliorer la qualité d'impression et l'expérience utilisateur. Voici un exemple de toutes les données envoyées."
  2053. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:101
  2054. msgctxt "@text:window"
  2055. msgid "I don't want to send this data"
  2056. msgstr ""
  2057. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:111
  2058. msgctxt "@text:window"
  2059. msgid "Allow sending this data to Ultimaker and help us improve Cura"
  2060. msgstr ""
  2061. #: /home/ruben/Projects/Cura/plugins/R2D2/EvaluationSidebar.qml:49
  2062. msgctxt "@label"
  2063. msgid "No print selected"
  2064. msgstr ""
  2065. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
  2066. msgctxt "@title:window"
  2067. msgid "Convert Image..."
  2068. msgstr "Conversion de l'image..."
  2069. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
  2070. msgctxt "@info:tooltip"
  2071. msgid "The maximum distance of each pixel from \"Base.\""
  2072. msgstr "La distance maximale de chaque pixel à partir de la « Base »."
  2073. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
  2074. msgctxt "@action:label"
  2075. msgid "Height (mm)"
  2076. msgstr "Hauteur (mm)"
  2077. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
  2078. msgctxt "@info:tooltip"
  2079. msgid "The base height from the build plate in millimeters."
  2080. msgstr "La hauteur de la base à partir du plateau en millimètres."
  2081. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
  2082. msgctxt "@action:label"
  2083. msgid "Base (mm)"
  2084. msgstr "Base (mm)"
  2085. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
  2086. msgctxt "@info:tooltip"
  2087. msgid "The width in millimeters on the build plate."
  2088. msgstr "La largeur en millimètres sur le plateau."
  2089. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
  2090. msgctxt "@action:label"
  2091. msgid "Width (mm)"
  2092. msgstr "Largeur (mm)"
  2093. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
  2094. msgctxt "@info:tooltip"
  2095. msgid "The depth in millimeters on the build plate"
  2096. msgstr "La profondeur en millimètres sur le plateau"
  2097. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
  2098. msgctxt "@action:label"
  2099. msgid "Depth (mm)"
  2100. msgstr "Profondeur (mm)"
  2101. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
  2102. msgctxt "@info:tooltip"
  2103. msgid "By default, white pixels represent high points on the mesh and black pixels represent low points on the mesh. Change this option to reverse the behavior such that black pixels represent high points on the mesh and white pixels represent low points on the mesh."
  2104. msgstr "Par défaut, les pixels blancs représentent les points hauts sur la maille tandis que les pixels noirs représentent les points bas sur la maille. Modifiez cette option pour inverser le comportement de manière à ce que les pixels noirs représentent les points hauts sur la maille et les pixels blancs les points bas."
  2105. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  2106. msgctxt "@item:inlistbox"
  2107. msgid "Lighter is higher"
  2108. msgstr "Le plus clair est plus haut"
  2109. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  2110. msgctxt "@item:inlistbox"
  2111. msgid "Darker is higher"
  2112. msgstr "Le plus foncé est plus haut"
  2113. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
  2114. msgctxt "@info:tooltip"
  2115. msgid "The amount of smoothing to apply to the image."
  2116. msgstr "La quantité de lissage à appliquer à l'image."
  2117. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:154
  2118. msgctxt "@action:label"
  2119. msgid "Smoothing"
  2120. msgstr "Lissage"
  2121. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37
  2122. msgctxt "@label"
  2123. msgid "Mesh Type"
  2124. msgstr "Type de maille"
  2125. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68
  2126. msgctxt "@label"
  2127. msgid "Normal model"
  2128. msgstr "Modèle normal"
  2129. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75
  2130. msgctxt "@label"
  2131. msgid "Print as support"
  2132. msgstr "Imprimer comme support"
  2133. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83
  2134. msgctxt "@label"
  2135. msgid "Don't support overlap with other models"
  2136. msgstr "Ne pas prendre en charge le chevauchement avec d'autres modèles"
  2137. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91
  2138. msgctxt "@label"
  2139. msgid "Modify settings for overlap with other models"
  2140. msgstr "Modifier les paramètres de chevauchement avec d'autres modèles"
  2141. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99
  2142. msgctxt "@label"
  2143. msgid "Modify settings for infill of other models"
  2144. msgstr "Modifier les paramètres de remplissage d'autres modèles"
  2145. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:346
  2146. msgctxt "@action:button"
  2147. msgid "Select settings"
  2148. msgstr "Sélectionner les paramètres"
  2149. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:388
  2150. msgctxt "@title:window"
  2151. msgid "Select Settings to Customize for this model"
  2152. msgstr "Sélectionner les paramètres pour personnaliser ce modèle"
  2153. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431
  2154. #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
  2155. msgctxt "@label:textbox"
  2156. msgid "Filter..."
  2157. msgstr "Filtrer..."
  2158. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445
  2159. msgctxt "@label:checkbox"
  2160. msgid "Show all"
  2161. msgstr "Afficher tout"
  2162. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:14
  2163. msgctxt "@title:window"
  2164. msgid "Open Project"
  2165. msgstr "Ouvrir un projet"
  2166. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:58
  2167. msgctxt "@action:ComboBox option"
  2168. msgid "Update existing"
  2169. msgstr "Mettre à jour l'existant"
  2170. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:59
  2171. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:116
  2172. msgctxt "@action:ComboBox option"
  2173. msgid "Create new"
  2174. msgstr "Créer"
  2175. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70
  2176. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:73
  2177. msgctxt "@action:title"
  2178. msgid "Summary - Cura Project"
  2179. msgstr "Résumé - Projet Cura"
  2180. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92
  2181. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  2182. msgctxt "@action:label"
  2183. msgid "Printer settings"
  2184. msgstr "Paramètres de l'imprimante"
  2185. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108
  2186. msgctxt "@info:tooltip"
  2187. msgid "How should the conflict in the machine be resolved?"
  2188. msgstr "Comment le conflit de la machine doit-il être résolu ?"
  2189. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:115
  2190. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:124
  2191. msgctxt "@action:ComboBox option"
  2192. msgid "Update"
  2193. msgstr "Mise à jour"
  2194. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143
  2195. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106
  2196. msgctxt "@action:label"
  2197. msgid "Type"
  2198. msgstr "Type"
  2199. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:159
  2200. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  2201. msgctxt "@action:label"
  2202. msgid "Printer Group"
  2203. msgstr "Groupe d'imprimantes"
  2204. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180
  2205. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:197
  2206. msgctxt "@action:label"
  2207. msgid "Profile settings"
  2208. msgstr "Paramètres de profil"
  2209. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:196
  2210. msgctxt "@info:tooltip"
  2211. msgid "How should the conflict in the profile be resolved?"
  2212. msgstr "Comment le conflit du profil doit-il être résolu ?"
  2213. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216
  2214. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308
  2215. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  2216. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:221
  2217. msgctxt "@action:label"
  2218. msgid "Name"
  2219. msgstr "Nom"
  2220. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231
  2221. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:205
  2222. msgctxt "@action:label"
  2223. msgid "Not in profile"
  2224. msgstr "Absent du profil"
  2225. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236
  2226. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:210
  2227. msgctxt "@action:label"
  2228. msgid "%1 override"
  2229. msgid_plural "%1 overrides"
  2230. msgstr[0] "%1 écrasent"
  2231. msgstr[1] "%1 écrase"
  2232. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:247
  2233. msgctxt "@action:label"
  2234. msgid "Derivative from"
  2235. msgstr "Dérivé de"
  2236. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:252
  2237. msgctxt "@action:label"
  2238. msgid "%1, %2 override"
  2239. msgid_plural "%1, %2 overrides"
  2240. msgstr[0] "%1, %2 écrasent"
  2241. msgstr[1] "%1, %2 écrase"
  2242. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268
  2243. msgctxt "@action:label"
  2244. msgid "Material settings"
  2245. msgstr "Paramètres du matériau"
  2246. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:284
  2247. msgctxt "@info:tooltip"
  2248. msgid "How should the conflict in the material be resolved?"
  2249. msgstr "Comment le conflit du matériau doit-il être résolu ?"
  2250. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327
  2251. msgctxt "@action:label"
  2252. msgid "Setting visibility"
  2253. msgstr "Visibilité des paramètres"
  2254. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:336
  2255. msgctxt "@action:label"
  2256. msgid "Mode"
  2257. msgstr "Mode"
  2258. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352
  2259. msgctxt "@action:label"
  2260. msgid "Visible settings:"
  2261. msgstr "Paramètres visibles :"
  2262. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357
  2263. msgctxt "@action:label"
  2264. msgid "%1 out of %2"
  2265. msgstr "%1 sur %2"
  2266. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:383
  2267. msgctxt "@action:warning"
  2268. msgid "Loading a project will clear all models on the build plate."
  2269. msgstr "Le chargement d'un projet effacera tous les modèles sur le plateau."
  2270. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:401
  2271. msgctxt "@action:button"
  2272. msgid "Open"
  2273. msgstr "Ouvrir"
  2274. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2275. msgctxt "@title"
  2276. msgid "My Backups"
  2277. msgstr ""
  2278. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  2279. msgctxt "@empty_state"
  2280. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  2281. msgstr ""
  2282. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  2283. msgctxt "@backup_limit_info"
  2284. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  2285. msgstr ""
  2286. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2287. msgctxt "@description"
  2288. msgid "Backup and synchronize your Cura settings."
  2289. msgstr ""
  2290. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
  2291. #: /home/ruben/Projects/Cura/resources/qml/Account/GeneralOperations.qml:68
  2292. msgctxt "@button"
  2293. msgid "Sign in"
  2294. msgstr ""
  2295. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:24
  2296. msgctxt "@title:window"
  2297. msgid "Cura Backups"
  2298. msgstr ""
  2299. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2300. msgctxt "@backuplist:label"
  2301. msgid "Cura Version"
  2302. msgstr ""
  2303. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2304. msgctxt "@backuplist:label"
  2305. msgid "Machines"
  2306. msgstr ""
  2307. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2308. msgctxt "@backuplist:label"
  2309. msgid "Materials"
  2310. msgstr ""
  2311. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2312. msgctxt "@backuplist:label"
  2313. msgid "Profiles"
  2314. msgstr ""
  2315. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2316. msgctxt "@backuplist:label"
  2317. msgid "Plugins"
  2318. msgstr ""
  2319. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  2320. msgctxt "@button"
  2321. msgid "Restore"
  2322. msgstr ""
  2323. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
  2324. msgctxt "@dialog:title"
  2325. msgid "Delete Backup"
  2326. msgstr ""
  2327. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  2328. msgctxt "@dialog:info"
  2329. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2330. msgstr ""
  2331. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
  2332. msgctxt "@dialog:title"
  2333. msgid "Restore Backup"
  2334. msgstr ""
  2335. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  2336. msgctxt "@dialog:info"
  2337. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  2338. msgstr ""
  2339. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2340. msgctxt "@button"
  2341. msgid "Want more?"
  2342. msgstr ""
  2343. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2344. msgctxt "@button"
  2345. msgid "Backup Now"
  2346. msgstr ""
  2347. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2348. msgctxt "@checkbox:description"
  2349. msgid "Auto Backup"
  2350. msgstr ""
  2351. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2352. msgctxt "@checkbox:description"
  2353. msgid "Automatically create a backup each day that Cura is started."
  2354. msgstr ""
  2355. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorMainSettingsSelector.qml:75
  2356. msgctxt "@label"
  2357. msgid "Not supported"
  2358. msgstr ""
  2359. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:35
  2360. msgctxt "@action:button"
  2361. msgid "Previous"
  2362. msgstr "Précédent"
  2363. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:60
  2364. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154
  2365. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  2366. msgctxt "@action:button"
  2367. msgid "Export"
  2368. msgstr "Exporter"
  2369. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:62
  2370. msgctxt "@action:button"
  2371. msgid "Next"
  2372. msgstr "Suivant"
  2373. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:169
  2374. msgctxt "@label"
  2375. msgid "Tip"
  2376. msgstr "Astuce"
  2377. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:160
  2378. msgctxt "@label"
  2379. msgid "Print experiment"
  2380. msgstr "Test d'impression"
  2381. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:25
  2382. msgctxt "@label"
  2383. msgid "Checklist"
  2384. msgstr "Liste de contrôle"
  2385. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26
  2386. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25
  2387. msgctxt "@title"
  2388. msgid "Select Printer Upgrades"
  2389. msgstr "Sélectionner les mises à niveau de l'imprimante"
  2390. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:38
  2391. msgctxt "@label"
  2392. msgid "Please select any upgrades made to this Ultimaker 2."
  2393. msgstr "Sélectionnez les mises à niveau disponibles pour cet Ultimaker 2."
  2394. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:47
  2395. msgctxt "@label"
  2396. msgid "Olsson Block"
  2397. msgstr "Blocage Olsson"
  2398. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:27
  2399. msgctxt "@title"
  2400. msgid "Build Plate Leveling"
  2401. msgstr "Nivellement du plateau"
  2402. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:38
  2403. msgctxt "@label"
  2404. msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
  2405. msgstr "Pour obtenir des résultats d'impression optimaux, vous pouvez maintenant régler votre plateau. Quand vous cliquez sur 'Aller à la position suivante', la buse se déplacera vers les différentes positions pouvant être réglées."
  2406. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:47
  2407. msgctxt "@label"
  2408. msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
  2409. msgstr "Pour chacune des positions ; glissez un bout de papier sous la buse et ajustez la hauteur du plateau. La hauteur du plateau est juste lorsque la pointe de la buse gratte légèrement le papier."
  2410. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:62
  2411. msgctxt "@action:button"
  2412. msgid "Start Build Plate Leveling"
  2413. msgstr "Démarrer le nivellement du plateau"
  2414. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:74
  2415. msgctxt "@action:button"
  2416. msgid "Move to Next Position"
  2417. msgstr "Aller à la position suivante"
  2418. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:37
  2419. msgctxt "@label"
  2420. msgid "Please select any upgrades made to this Ultimaker Original"
  2421. msgstr "Sélectionnez les mises à niveau disponibles pour cet Ultimaker Original"
  2422. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:45
  2423. msgctxt "@label"
  2424. msgid "Heated Build Plate (official kit or self-built)"
  2425. msgstr "Plateau chauffant (kit officiel ou fabriqué soi-même)"
  2426. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:119
  2427. msgctxt "@label:MonitorStatus"
  2428. msgid "Not connected to a printer"
  2429. msgstr "Non connecté à une imprimante"
  2430. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:123
  2431. msgctxt "@label:MonitorStatus"
  2432. msgid "Printer does not accept commands"
  2433. msgstr "L'imprimante n'accepte pas les commandes"
  2434. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:133
  2435. msgctxt "@label:MonitorStatus"
  2436. msgid "In maintenance. Please check the printer"
  2437. msgstr "En maintenance. Vérifiez l'imprimante"
  2438. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:144
  2439. msgctxt "@label:MonitorStatus"
  2440. msgid "Lost connection with the printer"
  2441. msgstr "Connexion avec l'imprimante perdue"
  2442. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:146
  2443. msgctxt "@label:MonitorStatus"
  2444. msgid "Printing..."
  2445. msgstr "Impression..."
  2446. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:149
  2447. msgctxt "@label:MonitorStatus"
  2448. msgid "Paused"
  2449. msgstr "En pause"
  2450. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:152
  2451. msgctxt "@label:MonitorStatus"
  2452. msgid "Preparing..."
  2453. msgstr "Préparation..."
  2454. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:154
  2455. msgctxt "@label:MonitorStatus"
  2456. msgid "Please remove the print"
  2457. msgstr "Supprimez l'imprimante"
  2458. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325
  2459. msgctxt "@label"
  2460. msgid "Abort Print"
  2461. msgstr "Abandonner l'impression"
  2462. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337
  2463. msgctxt "@label"
  2464. msgid "Are you sure you want to abort the print?"
  2465. msgstr "Êtes-vous sûr(e) de vouloir abandonner l'impression ?"
  2466. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71
  2467. msgctxt "@title"
  2468. msgid "Information"
  2469. msgstr "Informations"
  2470. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100
  2471. msgctxt "@title:window"
  2472. msgid "Confirm Diameter Change"
  2473. msgstr "Confirmer le changement de diamètre"
  2474. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  2475. msgctxt "@label (%1 is a number)"
  2476. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  2477. msgstr "Le nouveau diamètre de filament est réglé sur %1 mm, ce qui n'est pas compatible avec l'extrudeuse actuelle. Souhaitez-vous poursuivre ?"
  2478. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133
  2479. msgctxt "@label"
  2480. msgid "Display Name"
  2481. msgstr "Afficher le nom"
  2482. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143
  2483. msgctxt "@label"
  2484. msgid "Brand"
  2485. msgstr "Marque"
  2486. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153
  2487. msgctxt "@label"
  2488. msgid "Material Type"
  2489. msgstr "Type de matériau"
  2490. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162
  2491. msgctxt "@label"
  2492. msgid "Color"
  2493. msgstr "Couleur"
  2494. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212
  2495. msgctxt "@label"
  2496. msgid "Properties"
  2497. msgstr "Propriétés"
  2498. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214
  2499. msgctxt "@label"
  2500. msgid "Density"
  2501. msgstr "Densité"
  2502. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229
  2503. msgctxt "@label"
  2504. msgid "Diameter"
  2505. msgstr "Diamètre"
  2506. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263
  2507. msgctxt "@label"
  2508. msgid "Filament Cost"
  2509. msgstr "Coût du filament"
  2510. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280
  2511. msgctxt "@label"
  2512. msgid "Filament weight"
  2513. msgstr "Poids du filament"
  2514. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298
  2515. msgctxt "@label"
  2516. msgid "Filament length"
  2517. msgstr "Longueur du filament"
  2518. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307
  2519. msgctxt "@label"
  2520. msgid "Cost per Meter"
  2521. msgstr "Coût au mètre"
  2522. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321
  2523. msgctxt "@label"
  2524. msgid "This material is linked to %1 and shares some of its properties."
  2525. msgstr "Ce matériau est lié à %1 et partage certaines de ses propriétés."
  2526. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328
  2527. msgctxt "@label"
  2528. msgid "Unlink Material"
  2529. msgstr "Délier le matériau"
  2530. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339
  2531. msgctxt "@label"
  2532. msgid "Description"
  2533. msgstr "Description"
  2534. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352
  2535. msgctxt "@label"
  2536. msgid "Adhesion Information"
  2537. msgstr "Informations d'adhérence"
  2538. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378
  2539. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:17
  2540. msgctxt "@label"
  2541. msgid "Print settings"
  2542. msgstr "Paramètres d'impression"
  2543. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84
  2544. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:37
  2545. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72
  2546. msgctxt "@action:button"
  2547. msgid "Activate"
  2548. msgstr "Activer"
  2549. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101
  2550. msgctxt "@action:button"
  2551. msgid "Create"
  2552. msgstr "Créer"
  2553. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114
  2554. msgctxt "@action:button"
  2555. msgid "Duplicate"
  2556. msgstr "Dupliquer"
  2557. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  2558. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142
  2559. msgctxt "@action:button"
  2560. msgid "Import"
  2561. msgstr "Importer"
  2562. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203
  2563. msgctxt "@action:label"
  2564. msgid "Printer"
  2565. msgstr "Imprimante"
  2566. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262
  2567. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:246
  2568. msgctxt "@title:window"
  2569. msgid "Confirm Remove"
  2570. msgstr "Confirmer la suppression"
  2571. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263
  2572. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:247
  2573. msgctxt "@label (%1 is object name)"
  2574. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  2575. msgstr "Êtes-vous sûr de vouloir supprimer l'objet %1 ? Vous ne pourrez pas revenir en arrière !"
  2576. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277
  2577. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285
  2578. msgctxt "@title:window"
  2579. msgid "Import Material"
  2580. msgstr "Importer un matériau"
  2581. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286
  2582. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2583. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  2584. msgstr "Impossible d'importer le matériau <filename>%1</filename> : <message>%2</message>"
  2585. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290
  2586. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2587. msgid "Successfully imported material <filename>%1</filename>"
  2588. msgstr "Matériau <filename>%1</filename> importé avec succès"
  2589. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308
  2590. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316
  2591. msgctxt "@title:window"
  2592. msgid "Export Material"
  2593. msgstr "Exporter un matériau"
  2594. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320
  2595. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  2596. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  2597. msgstr "Échec de l'exportation de matériau vers <filename>%1</filename> : <message>%2</message>"
  2598. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326
  2599. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2600. msgid "Successfully exported material to <filename>%1</filename>"
  2601. msgstr "Matériau exporté avec succès vers <filename>%1</filename>"
  2602. #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
  2603. msgctxt "@title:tab"
  2604. msgid "Setting Visibility"
  2605. msgstr "Visibilité des paramètres"
  2606. #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
  2607. msgctxt "@label:textbox"
  2608. msgid "Check all"
  2609. msgstr "Vérifier tout"
  2610. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:47
  2611. msgctxt "@info:status"
  2612. msgid "Calculated"
  2613. msgstr "Calculer"
  2614. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:60
  2615. msgctxt "@title:column"
  2616. msgid "Setting"
  2617. msgstr "Paramètre"
  2618. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:67
  2619. msgctxt "@title:column"
  2620. msgid "Profile"
  2621. msgstr "Profil"
  2622. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:74
  2623. msgctxt "@title:column"
  2624. msgid "Current"
  2625. msgstr "Actuel"
  2626. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
  2627. msgctxt "@title:column"
  2628. msgid "Unit"
  2629. msgstr "Unité"
  2630. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15
  2631. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:354
  2632. msgctxt "@title:tab"
  2633. msgid "General"
  2634. msgstr "Général"
  2635. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:126
  2636. msgctxt "@label"
  2637. msgid "Interface"
  2638. msgstr "Interface"
  2639. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137
  2640. msgctxt "@label"
  2641. msgid "Language:"
  2642. msgstr "Langue :"
  2643. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:204
  2644. msgctxt "@label"
  2645. msgid "Currency:"
  2646. msgstr "Devise :"
  2647. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:217
  2648. msgctxt "@label"
  2649. msgid "Theme:"
  2650. msgstr "Thème :"
  2651. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:273
  2652. msgctxt "@label"
  2653. msgid "You will need to restart the application for these changes to have effect."
  2654. msgstr "Vous devez redémarrer l'application pour que ces changements prennent effet."
  2655. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:290
  2656. msgctxt "@info:tooltip"
  2657. msgid "Slice automatically when changing settings."
  2658. msgstr "Découper automatiquement si les paramètres sont modifiés."
  2659. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:298
  2660. msgctxt "@option:check"
  2661. msgid "Slice automatically"
  2662. msgstr "Découper automatiquement"
  2663. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:312
  2664. msgctxt "@label"
  2665. msgid "Viewport behavior"
  2666. msgstr "Comportement Viewport"
  2667. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320
  2668. msgctxt "@info:tooltip"
  2669. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  2670. msgstr "Surligne les parties non supportées du modèle en rouge. Sans ajouter de support, ces zones ne s'imprimeront pas correctement."
  2671. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:329
  2672. msgctxt "@option:check"
  2673. msgid "Display overhang"
  2674. msgstr "Mettre en surbrillance les porte-à-faux"
  2675. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:336
  2676. msgctxt "@info:tooltip"
  2677. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  2678. msgstr "Déplace la caméra afin que le modèle sélectionné se trouve au centre de la vue"
  2679. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:341
  2680. msgctxt "@action:button"
  2681. msgid "Center camera when item is selected"
  2682. msgstr "Centrer la caméra lorsqu'un élément est sélectionné"
  2683. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350
  2684. msgctxt "@info:tooltip"
  2685. msgid "Should the default zoom behavior of cura be inverted?"
  2686. msgstr "Le comportement de zoom par défaut de Cura doit-il être inversé ?"
  2687. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355
  2688. msgctxt "@action:button"
  2689. msgid "Invert the direction of camera zoom."
  2690. msgstr "Inverser la direction du zoom de la caméra."
  2691. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365
  2692. msgctxt "@info:tooltip"
  2693. msgid "Should zooming move in the direction of the mouse?"
  2694. msgstr "Le zoom doit-il se faire dans la direction de la souris ?"
  2695. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370
  2696. msgctxt "@action:button"
  2697. msgid "Zoom toward mouse direction"
  2698. msgstr "Zoomer vers la direction de la souris"
  2699. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:380
  2700. msgctxt "@info:tooltip"
  2701. msgid "Should models on the platform be moved so that they no longer intersect?"
  2702. msgstr "Les modèles dans la zone d'impression doivent-ils être déplacés afin de ne plus se croiser ?"
  2703. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:385
  2704. msgctxt "@option:check"
  2705. msgid "Ensure models are kept apart"
  2706. msgstr "Veillez à ce que les modèles restent séparés"
  2707. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:394
  2708. msgctxt "@info:tooltip"
  2709. msgid "Should models on the platform be moved down to touch the build plate?"
  2710. msgstr "Les modèles dans la zone d'impression doivent-ils être abaissés afin de toucher le plateau ?"
  2711. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:399
  2712. msgctxt "@option:check"
  2713. msgid "Automatically drop models to the build plate"
  2714. msgstr "Abaisser automatiquement les modèles sur le plateau"
  2715. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411
  2716. msgctxt "@info:tooltip"
  2717. msgid "Show caution message in g-code reader."
  2718. msgstr "Afficher le message d'avertissement dans le lecteur G-Code."
  2719. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:420
  2720. msgctxt "@option:check"
  2721. msgid "Caution message in g-code reader"
  2722. msgstr "Message d'avertissement dans le lecteur G-Code"
  2723. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:428
  2724. msgctxt "@info:tooltip"
  2725. msgid "Should layer be forced into compatibility mode?"
  2726. msgstr "La couche doit-elle être forcée en mode de compatibilité ?"
  2727. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:433
  2728. msgctxt "@option:check"
  2729. msgid "Force layer view compatibility mode (restart required)"
  2730. msgstr "Forcer l'affichage de la couche en mode de compatibilité (redémarrage requis)"
  2731. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:449
  2732. msgctxt "@label"
  2733. msgid "Opening and saving files"
  2734. msgstr "Ouvrir et enregistrer des fichiers"
  2735. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:456
  2736. msgctxt "@info:tooltip"
  2737. msgid "Should models be scaled to the build volume if they are too large?"
  2738. msgstr "Les modèles doivent-ils être mis à l'échelle du volume d'impression s'ils sont trop grands ?"
  2739. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:461
  2740. msgctxt "@option:check"
  2741. msgid "Scale large models"
  2742. msgstr "Réduire la taille des modèles trop grands"
  2743. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:471
  2744. msgctxt "@info:tooltip"
  2745. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  2746. msgstr "Un modèle peut apparaître en tout petit si son unité est par exemple en mètres plutôt qu'en millimètres. Ces modèles doivent-ils être agrandis ?"
  2747. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:476
  2748. msgctxt "@option:check"
  2749. msgid "Scale extremely small models"
  2750. msgstr "Mettre à l'échelle les modèles extrêmement petits"
  2751. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:486
  2752. msgctxt "@info:tooltip"
  2753. msgid "Should models be selected after they are loaded?"
  2754. msgstr "Les modèles doivent-ils être sélectionnés après leur chargement ?"
  2755. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:491
  2756. msgctxt "@option:check"
  2757. msgid "Select models when loaded"
  2758. msgstr "Sélectionner les modèles lorsqu'ils sont chargés"
  2759. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:501
  2760. msgctxt "@info:tooltip"
  2761. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  2762. msgstr "Un préfixe basé sur le nom de l'imprimante doit-il être automatiquement ajouté au nom de la tâche d'impression ?"
  2763. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:506
  2764. msgctxt "@option:check"
  2765. msgid "Add machine prefix to job name"
  2766. msgstr "Ajouter le préfixe de la machine au nom de la tâche"
  2767. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516
  2768. msgctxt "@info:tooltip"
  2769. msgid "Should a summary be shown when saving a project file?"
  2770. msgstr "Un résumé doit-il être affiché lors de l'enregistrement d'un fichier de projet ?"
  2771. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:520
  2772. msgctxt "@option:check"
  2773. msgid "Show summary dialog when saving project"
  2774. msgstr "Afficher la boîte de dialogue du résumé lors de l'enregistrement du projet"
  2775. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:530
  2776. msgctxt "@info:tooltip"
  2777. msgid "Default behavior when opening a project file"
  2778. msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet"
  2779. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:538
  2780. msgctxt "@window:text"
  2781. msgid "Default behavior when opening a project file: "
  2782. msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet : "
  2783. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:552
  2784. msgctxt "@option:openProject"
  2785. msgid "Always ask me this"
  2786. msgstr "Toujours me demander"
  2787. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:553
  2788. msgctxt "@option:openProject"
  2789. msgid "Always open as a project"
  2790. msgstr "Toujours ouvrir comme projet"
  2791. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:554
  2792. msgctxt "@option:openProject"
  2793. msgid "Always import models"
  2794. msgstr "Toujours importer les modèles"
  2795. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590
  2796. msgctxt "@info:tooltip"
  2797. msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
  2798. msgstr "Lorsque vous apportez des modifications à un profil puis passez à un autre profil, une boîte de dialogue apparaît, vous demandant si vous souhaitez conserver les modifications. Vous pouvez aussi choisir une option par défaut, et le dialogue ne s'affichera plus."
  2799. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:599
  2800. msgctxt "@label"
  2801. msgid "Profiles"
  2802. msgstr "Profils"
  2803. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:604
  2804. msgctxt "@window:text"
  2805. msgid "Default behavior for changed setting values when switching to a different profile: "
  2806. msgstr "Comportement par défaut pour les valeurs de paramètres modifiées lors du passage à un profil différent : "
  2807. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:618
  2808. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157
  2809. msgctxt "@option:discardOrKeep"
  2810. msgid "Always ask me this"
  2811. msgstr "Toujours me demander"
  2812. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619
  2813. msgctxt "@option:discardOrKeep"
  2814. msgid "Always discard changed settings"
  2815. msgstr "Toujours rejeter les paramètres modifiés"
  2816. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620
  2817. msgctxt "@option:discardOrKeep"
  2818. msgid "Always transfer changed settings to new profile"
  2819. msgstr "Toujours transférer les paramètres modifiés dans le nouveau profil"
  2820. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:654
  2821. msgctxt "@label"
  2822. msgid "Privacy"
  2823. msgstr "Confidentialité"
  2824. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:661
  2825. msgctxt "@info:tooltip"
  2826. msgid "Should Cura check for updates when the program is started?"
  2827. msgstr "Cura doit-il vérifier les mises à jour au démarrage du programme ?"
  2828. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666
  2829. msgctxt "@option:check"
  2830. msgid "Check for updates on start"
  2831. msgstr "Vérifier les mises à jour au démarrage"
  2832. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:676
  2833. msgctxt "@info:tooltip"
  2834. msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
  2835. msgstr "Les données anonymes de votre impression doivent-elles être envoyées à Ultimaker ? Notez qu'aucun modèle, aucune adresse IP ni aucune autre information permettant de vous identifier personnellement ne seront envoyés ou stockés."
  2836. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:681
  2837. msgctxt "@option:check"
  2838. msgid "Send (anonymous) print information"
  2839. msgstr "Envoyer des informations (anonymes) sur l'impression"
  2840. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:690
  2841. msgctxt "@action:button"
  2842. msgid "More information"
  2843. msgstr "Plus d'informations"
  2844. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708
  2845. msgctxt "@label"
  2846. msgid "Experimental"
  2847. msgstr "Expérimental"
  2848. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:715
  2849. msgctxt "@info:tooltip"
  2850. msgid "Use multi build plate functionality"
  2851. msgstr "Utiliser la fonctionnalité multi-plateau"
  2852. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:720
  2853. msgctxt "@option:check"
  2854. msgid "Use multi build plate functionality (restart required)"
  2855. msgstr "Utiliser la fonctionnalité multi-plateau (redémarrage requis)"
  2856. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
  2857. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:359
  2858. msgctxt "@title:tab"
  2859. msgid "Printers"
  2860. msgstr "Imprimantes"
  2861. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:57
  2862. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129
  2863. msgctxt "@action:button"
  2864. msgid "Rename"
  2865. msgstr "Renommer"
  2866. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36
  2867. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:363
  2868. msgctxt "@title:tab"
  2869. msgid "Profiles"
  2870. msgstr "Profils"
  2871. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:87
  2872. msgctxt "@label"
  2873. msgid "Create"
  2874. msgstr "Créer"
  2875. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:102
  2876. msgctxt "@label"
  2877. msgid "Duplicate"
  2878. msgstr "Dupliquer"
  2879. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174
  2880. msgctxt "@title:window"
  2881. msgid "Create Profile"
  2882. msgstr "Créer un profil"
  2883. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:176
  2884. msgctxt "@info"
  2885. msgid "Please provide a name for this profile."
  2886. msgstr ""
  2887. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:232
  2888. msgctxt "@title:window"
  2889. msgid "Duplicate Profile"
  2890. msgstr "Dupliquer un profil"
  2891. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263
  2892. msgctxt "@title:window"
  2893. msgid "Rename Profile"
  2894. msgstr "Renommer le profil"
  2895. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:276
  2896. msgctxt "@title:window"
  2897. msgid "Import Profile"
  2898. msgstr "Importer un profil"
  2899. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:302
  2900. msgctxt "@title:window"
  2901. msgid "Export Profile"
  2902. msgstr "Exporter un profil"
  2903. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:357
  2904. msgctxt "@label %1 is printer name"
  2905. msgid "Printer: %1"
  2906. msgstr "Imprimante : %1"
  2907. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:413
  2908. msgctxt "@label"
  2909. msgid "Default profiles"
  2910. msgstr ""
  2911. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:413
  2912. msgctxt "@label"
  2913. msgid "Custom profiles"
  2914. msgstr "Personnaliser les profils"
  2915. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:490
  2916. msgctxt "@action:button"
  2917. msgid "Update profile with current settings/overrides"
  2918. msgstr "Mettre à jour le profil à l'aide des paramètres / forçages actuels"
  2919. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:497
  2920. msgctxt "@action:button"
  2921. msgid "Discard current changes"
  2922. msgstr "Ignorer les modifications actuelles"
  2923. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:514
  2924. msgctxt "@action:label"
  2925. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  2926. msgstr "Ce profil utilise les paramètres par défaut spécifiés par l'imprimante, de sorte qu'aucun paramètre / forçage n'apparaît dans la liste ci-dessous."
  2927. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:521
  2928. msgctxt "@action:label"
  2929. msgid "Your current settings match the selected profile."
  2930. msgstr "Vos paramètres actuels correspondent au profil sélectionné."
  2931. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:540
  2932. msgctxt "@title:tab"
  2933. msgid "Global Settings"
  2934. msgstr "Paramètres généraux"
  2935. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:87
  2936. msgctxt "@action:button"
  2937. msgid "Marketplace"
  2938. msgstr ""
  2939. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
  2940. #: /home/ruben/Projects/Cura/resources/qml/Menus/FileMenu.qml:13
  2941. msgctxt "@title:menu menubar:toplevel"
  2942. msgid "&File"
  2943. msgstr "&Fichier"
  2944. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  2945. msgctxt "@title:menu menubar:toplevel"
  2946. msgid "&Edit"
  2947. msgstr "&Modifier"
  2948. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:48
  2949. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
  2950. msgctxt "@title:menu menubar:toplevel"
  2951. msgid "&View"
  2952. msgstr "&Visualisation"
  2953. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:50
  2954. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2955. msgctxt "@title:menu menubar:toplevel"
  2956. msgid "&Settings"
  2957. msgstr ""
  2958. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:55
  2959. msgctxt "@title:menu menubar:toplevel"
  2960. msgid "E&xtensions"
  2961. msgstr "E&xtensions"
  2962. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:89
  2963. msgctxt "@title:menu menubar:toplevel"
  2964. msgid "P&references"
  2965. msgstr "P&références"
  2966. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:97
  2967. msgctxt "@title:menu menubar:toplevel"
  2968. msgid "&Help"
  2969. msgstr "&Aide"
  2970. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:123
  2971. msgctxt "@title:window"
  2972. msgid "New project"
  2973. msgstr "Nouveau projet"
  2974. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:124
  2975. msgctxt "@info:question"
  2976. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  2977. msgstr "Êtes-vous sûr(e) de souhaiter lancer un nouveau projet ? Cela supprimera les objets du plateau ainsi que tous paramètres non enregistrés."
  2978. #: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:88
  2979. msgctxt "@text Print job name"
  2980. msgid "Untitled"
  2981. msgstr "Sans titre"
  2982. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:68
  2983. msgctxt "@label:textbox"
  2984. msgid "search settings"
  2985. msgstr ""
  2986. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:465
  2987. msgctxt "@action:menu"
  2988. msgid "Copy value to all extruders"
  2989. msgstr "Copier la valeur vers tous les extrudeurs"
  2990. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:474
  2991. msgctxt "@action:menu"
  2992. msgid "Copy all changed values to all extruders"
  2993. msgstr "Copier toutes les valeurs modifiées vers toutes les extrudeuses"
  2994. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:511
  2995. msgctxt "@action:menu"
  2996. msgid "Hide this setting"
  2997. msgstr "Masquer ce paramètre"
  2998. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:529
  2999. msgctxt "@action:menu"
  3000. msgid "Don't show this setting"
  3001. msgstr "Masquer ce paramètre"
  3002. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:533
  3003. msgctxt "@action:menu"
  3004. msgid "Keep this setting visible"
  3005. msgstr "Afficher ce paramètre"
  3006. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:557
  3007. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:417
  3008. msgctxt "@action:menu"
  3009. msgid "Configure setting visibility..."
  3010. msgstr "Configurer la visibilité des paramètres..."
  3011. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingCategory.qml:237
  3012. msgctxt "@label"
  3013. msgid ""
  3014. "Some hidden settings use values different from their normal calculated value.\n"
  3015. "\n"
  3016. "Click to make these settings visible."
  3017. msgstr ""
  3018. "Certains paramètres masqués utilisent des valeurs différentes de leur valeur normalement calculée.\n"
  3019. "\n"
  3020. "Cliquez pour rendre ces paramètres visibles."
  3021. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:66
  3022. msgctxt "@label Header for list of settings."
  3023. msgid "Affects"
  3024. msgstr "Touche"
  3025. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:71
  3026. msgctxt "@label Header for list of settings."
  3027. msgid "Affected By"
  3028. msgstr "Touché par"
  3029. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:166
  3030. msgctxt "@label"
  3031. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  3032. msgstr "Ce paramètre est toujours partagé par toutes les extrudeuses. Le modifier ici entraînera la modification de la valeur pour toutes les extrudeuses."
  3033. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:170
  3034. msgctxt "@label"
  3035. msgid "The value is resolved from per-extruder values "
  3036. msgstr "La valeur est résolue à partir des valeurs par extrudeur "
  3037. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:208
  3038. msgctxt "@label"
  3039. msgid ""
  3040. "This setting has a value that is different from the profile.\n"
  3041. "\n"
  3042. "Click to restore the value of the profile."
  3043. msgstr ""
  3044. "Ce paramètre possède une valeur qui est différente du profil.\n"
  3045. "\n"
  3046. "Cliquez pour restaurer la valeur du profil."
  3047. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:302
  3048. msgctxt "@label"
  3049. msgid ""
  3050. "This setting is normally calculated, but it currently has an absolute value set.\n"
  3051. "\n"
  3052. "Click to restore the calculated value."
  3053. msgstr ""
  3054. "Ce paramètre est normalement calculé mais il possède actuellement une valeur absolue définie.\n"
  3055. "\n"
  3056. "Cliquez pour restaurer la valeur calculée."
  3057. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:129
  3058. msgctxt "@button"
  3059. msgid "Recommended"
  3060. msgstr ""
  3061. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142
  3062. msgctxt "@button"
  3063. msgid "Custom"
  3064. msgstr ""
  3065. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
  3066. msgctxt "@label"
  3067. msgid "Gradual infill"
  3068. msgstr ""
  3069. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
  3070. msgctxt "@label"
  3071. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  3072. msgstr "Un remplissage graduel augmentera la quantité de remplissage vers le haut."
  3073. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:29
  3074. msgctxt "@label"
  3075. msgid "Support"
  3076. msgstr ""
  3077. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:70
  3078. msgctxt "@label"
  3079. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  3080. msgstr "Générer des structures pour soutenir les parties du modèle qui possèdent des porte-à-faux. Sans ces structures, ces parties s'effondreront durant l'impression."
  3081. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:136
  3082. msgctxt "@label"
  3083. msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  3084. msgstr "Sélectionnez l'extrudeur à utiliser comme support. Cela créera des structures de support sous le modèle afin de l'empêcher de s'affaisser ou de s'imprimer dans les airs."
  3085. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:28
  3086. msgctxt "@label"
  3087. msgid "Adhesion"
  3088. msgstr ""
  3089. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:85
  3090. msgctxt "@label"
  3091. msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
  3092. msgstr "Activez l'impression d'une bordure ou plaquette (Brim/Raft). Cela ajoutera une zone plate autour de ou sous votre objet qui est facile à découper par la suite."
  3093. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:175
  3094. msgctxt "@label"
  3095. msgid "Layer Height"
  3096. msgstr "Hauteur de la couche"
  3097. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:206
  3098. msgctxt "@tooltip"
  3099. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  3100. msgstr "Vous avez modifié certains paramètres du profil. Si vous souhaitez les modifier, allez dans le mode Personnaliser."
  3101. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:355
  3102. msgctxt "@tooltip"
  3103. msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  3104. msgstr ""
  3105. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:449
  3106. msgctxt "@tooltip"
  3107. msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  3108. msgstr "Un profil personnalisé est actuellement actif. Pour activer le curseur de qualité, choisissez un profil de qualité par défaut dans l'onglet Personnaliser"
  3109. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  3110. msgctxt "@label:Should be short"
  3111. msgid "On"
  3112. msgstr ""
  3113. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  3114. msgctxt "@label:Should be short"
  3115. msgid "Off"
  3116. msgstr ""
  3117. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Custom/GlobalProfileSelector.qml:27
  3118. msgctxt "@label"
  3119. msgid "Profile"
  3120. msgstr ""
  3121. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Custom/GlobalProfileSelector.qml:94
  3122. msgctxt "@tooltip"
  3123. msgid ""
  3124. "Some setting/override values are different from the values stored in the profile.\n"
  3125. "\n"
  3126. "Click to open the profile manager."
  3127. msgstr ""
  3128. "Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. \n"
  3129. "\n"
  3130. "Cliquez pour ouvrir le gestionnaire de profils."
  3131. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  3132. msgctxt "@label shown when we load a Gcode file"
  3133. msgid "Print setup disabled. G code file can not be modified."
  3134. msgstr ""
  3135. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  3136. msgctxt "@label"
  3137. msgid "Printer control"
  3138. msgstr "Contrôle de l'imprimante"
  3139. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  3140. msgctxt "@label"
  3141. msgid "Jog Position"
  3142. msgstr "Position de coupe"
  3143. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  3144. msgctxt "@label"
  3145. msgid "X/Y"
  3146. msgstr "X/Y"
  3147. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  3148. msgctxt "@label"
  3149. msgid "Z"
  3150. msgstr "Z"
  3151. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  3152. msgctxt "@label"
  3153. msgid "Jog Distance"
  3154. msgstr "Distance de coupe"
  3155. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  3156. msgctxt "@label"
  3157. msgid "Send G-code"
  3158. msgstr "Envoyer G-Code"
  3159. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:364
  3160. msgctxt "@tooltip of G-code command input"
  3161. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  3162. msgstr "Envoyer une commande G-Code personnalisée à l'imprimante connectée. Appuyez sur « Entrée » pour envoyer la commande."
  3163. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:38
  3164. msgctxt "@label"
  3165. msgid "Extruder"
  3166. msgstr "Extrudeuse"
  3167. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:68
  3168. msgctxt "@tooltip"
  3169. msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
  3170. msgstr "Température cible de l'extrémité chauffante. L'extrémité chauffante sera chauffée ou refroidie pour tendre vers cette température. Si la valeur est 0, le chauffage de l'extrémité chauffante sera coupé."
  3171. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:100
  3172. msgctxt "@tooltip"
  3173. msgid "The current temperature of this hotend."
  3174. msgstr "Température actuelle de cette extrémité chauffante."
  3175. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:174
  3176. msgctxt "@tooltip of temperature input"
  3177. msgid "The temperature to pre-heat the hotend to."
  3178. msgstr "Température jusqu'à laquelle préchauffer l'extrémité chauffante."
  3179. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:338
  3180. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  3181. msgctxt "@button Cancel pre-heating"
  3182. msgid "Cancel"
  3183. msgstr "Annuler"
  3184. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
  3185. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  3186. msgctxt "@button"
  3187. msgid "Pre-heat"
  3188. msgstr "Préchauffer"
  3189. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367
  3190. msgctxt "@tooltip of pre-heat"
  3191. msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
  3192. msgstr "Préchauffez l'extrémité chauffante avant l'impression. Vous pouvez continuer l'ajustement de votre impression pendant qu'elle chauffe, ce qui vous évitera un temps d'attente lorsque vous serez prêt à lancer l'impression."
  3193. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:403
  3194. msgctxt "@tooltip"
  3195. msgid "The colour of the material in this extruder."
  3196. msgstr "Couleur du matériau dans cet extrudeur."
  3197. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:435
  3198. msgctxt "@tooltip"
  3199. msgid "The material in this extruder."
  3200. msgstr "Matériau dans cet extrudeur."
  3201. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:467
  3202. msgctxt "@tooltip"
  3203. msgid "The nozzle inserted in this extruder."
  3204. msgstr "Buse insérée dans cet extrudeur."
  3205. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  3206. msgctxt "@info:status"
  3207. msgid "The printer is not connected."
  3208. msgstr "L'imprimante n'est pas connectée."
  3209. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  3210. msgctxt "@label"
  3211. msgid "Build plate"
  3212. msgstr "Plateau"
  3213. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  3214. msgctxt "@tooltip"
  3215. msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
  3216. msgstr "Température cible du plateau chauffant. Le plateau sera chauffé ou refroidi pour tendre vers cette température. Si la valeur est 0, le chauffage du plateau sera éteint."
  3217. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  3218. msgctxt "@tooltip"
  3219. msgid "The current temperature of the heated bed."
  3220. msgstr "Température actuelle du plateau chauffant."
  3221. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  3222. msgctxt "@tooltip of temperature input"
  3223. msgid "The temperature to pre-heat the bed to."
  3224. msgstr "Température jusqu'à laquelle préchauffer le plateau."
  3225. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  3226. msgctxt "@tooltip of pre-heat"
  3227. msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
  3228. msgstr "Préchauffez le plateau avant l'impression. Vous pouvez continuer à ajuster votre impression pendant qu'il chauffe, et vous n'aurez pas à attendre que le plateau chauffe lorsque vous serez prêt à lancer l'impression."
  3229. #: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3230. msgctxt "@label:category menu label"
  3231. msgid "Material"
  3232. msgstr "Matériau"
  3233. #: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:42
  3234. msgctxt "@label:category menu label"
  3235. msgid "Favorites"
  3236. msgstr "Favoris"
  3237. #: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:66
  3238. msgctxt "@label:category menu label"
  3239. msgid "Generic"
  3240. msgstr "Générique"
  3241. #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
  3242. msgctxt "@label:category menu label"
  3243. msgid "Network enabled printers"
  3244. msgstr "Imprimantes réseau"
  3245. #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
  3246. msgctxt "@label:category menu label"
  3247. msgid "Local printers"
  3248. msgstr "Imprimantes locales"
  3249. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15
  3250. msgctxt "@title:menu menubar:settings"
  3251. msgid "&Printer"
  3252. msgstr "Im&primante"
  3253. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:26
  3254. msgctxt "@title:menu"
  3255. msgid "&Material"
  3256. msgstr "&Matériau"
  3257. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:35
  3258. msgctxt "@action:inmenu"
  3259. msgid "Set as Active Extruder"
  3260. msgstr "Définir comme extrudeur actif"
  3261. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:41
  3262. msgctxt "@action:inmenu"
  3263. msgid "Enable Extruder"
  3264. msgstr "Activer l'extrudeuse"
  3265. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:48
  3266. msgctxt "@action:inmenu"
  3267. msgid "Disable Extruder"
  3268. msgstr "Désactiver l'extrudeuse"
  3269. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:62
  3270. msgctxt "@title:menu"
  3271. msgid "&Build plate"
  3272. msgstr "Plateau"
  3273. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:65
  3274. msgctxt "@title:settings"
  3275. msgid "&Profile"
  3276. msgstr "&Profil"
  3277. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19
  3278. msgctxt "@action:inmenu menubar:view"
  3279. msgid "&Camera position"
  3280. msgstr "Position de la &caméra"
  3281. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:35
  3282. msgctxt "@action:inmenu menubar:view"
  3283. msgid "&Build plate"
  3284. msgstr "&Plateau"
  3285. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
  3286. msgctxt "@action:inmenu"
  3287. msgid "Visible Settings"
  3288. msgstr "Paramètres visibles"
  3289. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  3290. msgctxt "@action:inmenu"
  3291. msgid "Show All Settings"
  3292. msgstr "Afficher tous les paramètres"
  3293. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:53
  3294. msgctxt "@action:inmenu"
  3295. msgid "Manage Setting Visibility..."
  3296. msgstr "Gérer la visibilité des paramètres..."
  3297. #: /home/ruben/Projects/Cura/resources/qml/Menus/FileMenu.qml:32
  3298. msgctxt "@title:menu menubar:file"
  3299. msgid "&Save..."
  3300. msgstr "Enregi&strer..."
  3301. #: /home/ruben/Projects/Cura/resources/qml/Menus/FileMenu.qml:53
  3302. msgctxt "@title:menu menubar:file"
  3303. msgid "&Export..."
  3304. msgstr "&Exporter..."
  3305. #: /home/ruben/Projects/Cura/resources/qml/Menus/FileMenu.qml:64
  3306. msgctxt "@action:inmenu menubar:file"
  3307. msgid "Export Selection..."
  3308. msgstr "Exporter la sélection..."
  3309. #: /home/ruben/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
  3310. msgctxt "@label"
  3311. msgid "Print Selected Model With:"
  3312. msgid_plural "Print Selected Models With:"
  3313. msgstr[0] "Imprimer le modèle sélectionné avec :"
  3314. msgstr[1] "Imprimer les modèles sélectionnés avec :"
  3315. #: /home/ruben/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
  3316. msgctxt "@title:window"
  3317. msgid "Multiply Selected Model"
  3318. msgid_plural "Multiply Selected Models"
  3319. msgstr[0] "Multiplier le modèle sélectionné"
  3320. msgstr[1] "Multiplier les modèles sélectionnés"
  3321. #: /home/ruben/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
  3322. msgctxt "@label"
  3323. msgid "Number of Copies"
  3324. msgstr "Nombre de copies"
  3325. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3326. msgctxt "@header"
  3327. msgid "Configurations"
  3328. msgstr ""
  3329. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110
  3330. msgctxt "@label"
  3331. msgid "Select configuration"
  3332. msgstr ""
  3333. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:201
  3334. msgctxt "@label"
  3335. msgid "See the material compatibility chart"
  3336. msgstr ""
  3337. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:274
  3338. msgctxt "@label"
  3339. msgid "Configurations"
  3340. msgstr ""
  3341. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
  3342. msgctxt "@label"
  3343. msgid "Loading available configurations from the printer..."
  3344. msgstr ""
  3345. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
  3346. msgctxt "@label"
  3347. msgid "The configurations are not available because the printer is disconnected."
  3348. msgstr ""
  3349. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  3350. msgctxt "@header"
  3351. msgid "Custom"
  3352. msgstr ""
  3353. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  3354. msgctxt "@label"
  3355. msgid "Printer"
  3356. msgstr ""
  3357. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:202
  3358. msgctxt "@label"
  3359. msgid "Enabled"
  3360. msgstr ""
  3361. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:239
  3362. msgctxt "@label"
  3363. msgid "Material"
  3364. msgstr "Matériau"
  3365. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:344
  3366. msgctxt "@label"
  3367. msgid "Use glue for better adhesion with this material combination."
  3368. msgstr ""
  3369. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:128
  3370. msgctxt "@label"
  3371. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3372. msgstr ""
  3373. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:129
  3374. msgctxt "@label"
  3375. msgid "Marketplace"
  3376. msgstr ""
  3377. #: /home/ruben/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  3378. msgctxt "@title:menu menubar:file"
  3379. msgid "Open &Recent"
  3380. msgstr "Ouvrir un fichier &récent"
  3381. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:145
  3382. msgctxt "@label"
  3383. msgid "Active print"
  3384. msgstr "Activer l'impression"
  3385. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:153
  3386. msgctxt "@label"
  3387. msgid "Job Name"
  3388. msgstr "Nom de la tâche"
  3389. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:161
  3390. msgctxt "@label"
  3391. msgid "Printing Time"
  3392. msgstr "Durée d'impression"
  3393. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:169
  3394. msgctxt "@label"
  3395. msgid "Estimated time left"
  3396. msgstr "Durée restante estimée"
  3397. #: /home/ruben/Projects/Cura/resources/qml/ViewsSelector.qml:50
  3398. msgctxt "@label"
  3399. msgid "View types"
  3400. msgstr ""
  3401. #: /home/ruben/Projects/Cura/resources/qml/Account/UserOperations.qml:23
  3402. msgctxt "@label"
  3403. msgid "Hi "
  3404. msgstr ""
  3405. #: /home/ruben/Projects/Cura/resources/qml/Account/UserOperations.qml:40
  3406. msgctxt "@button"
  3407. msgid "Ultimaker account"
  3408. msgstr ""
  3409. #: /home/ruben/Projects/Cura/resources/qml/Account/UserOperations.qml:49
  3410. msgctxt "@button"
  3411. msgid "Sign out"
  3412. msgstr ""
  3413. #: /home/ruben/Projects/Cura/resources/qml/Account/AccountWidget.qml:24
  3414. msgctxt "@action:button"
  3415. msgid "Sign in"
  3416. msgstr ""
  3417. #: /home/ruben/Projects/Cura/resources/qml/Account/GeneralOperations.qml:29
  3418. msgctxt "@label"
  3419. msgid "Ultimaker Cloud"
  3420. msgstr ""
  3421. #: /home/ruben/Projects/Cura/resources/qml/Account/GeneralOperations.qml:40
  3422. msgctxt "@label"
  3423. msgid "The next generation 3D printing workflow"
  3424. msgstr ""
  3425. #: /home/ruben/Projects/Cura/resources/qml/Account/GeneralOperations.qml:51
  3426. msgctxt "@text"
  3427. msgid ""
  3428. "- Send print jobs to Ultimaker printers outside your local network\n"
  3429. "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  3430. "- Get exclusive access to material profiles from leading brands"
  3431. msgstr ""
  3432. #: /home/ruben/Projects/Cura/resources/qml/Account/GeneralOperations.qml:78
  3433. msgctxt "@button"
  3434. msgid "Create account"
  3435. msgstr ""
  3436. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  3437. msgctxt "@label"
  3438. msgid "No time estimation available"
  3439. msgstr ""
  3440. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:76
  3441. msgctxt "@label"
  3442. msgid "No cost estimation available"
  3443. msgstr ""
  3444. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:117
  3445. msgctxt "@button"
  3446. msgid "Preview"
  3447. msgstr ""
  3448. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:49
  3449. msgctxt "@label:PrintjobStatus"
  3450. msgid "Slicing..."
  3451. msgstr "Découpe en cours..."
  3452. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:61
  3453. msgctxt "@label:PrintjobStatus"
  3454. msgid "Unable to Slice"
  3455. msgstr "Impossible de découper"
  3456. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:116
  3457. msgctxt "@button"
  3458. msgid "Slice"
  3459. msgstr ""
  3460. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:117
  3461. msgctxt "@label"
  3462. msgid "Start the slicing process"
  3463. msgstr ""
  3464. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:131
  3465. msgctxt "@button"
  3466. msgid "Cancel"
  3467. msgstr ""
  3468. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  3469. msgctxt "@label"
  3470. msgid "Time specification"
  3471. msgstr ""
  3472. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  3473. msgctxt "@label"
  3474. msgid "Material specification"
  3475. msgstr ""
  3476. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  3477. msgctxt "@label m for meter"
  3478. msgid "%1m"
  3479. msgstr "%1m"
  3480. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  3481. msgctxt "@label g for grams"
  3482. msgid "%1g"
  3483. msgstr "%1g"
  3484. #: /home/ruben/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3485. msgctxt "@label"
  3486. msgid "Connected printers"
  3487. msgstr ""
  3488. #: /home/ruben/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3489. msgctxt "@label"
  3490. msgid "Preset printers"
  3491. msgstr ""
  3492. #: /home/ruben/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:161
  3493. msgctxt "@button"
  3494. msgid "Add printer"
  3495. msgstr ""
  3496. #: /home/ruben/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:173
  3497. msgctxt "@button"
  3498. msgid "Manage printers"
  3499. msgstr ""
  3500. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78
  3501. msgctxt "@action:inmenu"
  3502. msgid "Show Online Troubleshooting Guide"
  3503. msgstr ""
  3504. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85
  3505. msgctxt "@action:inmenu"
  3506. msgid "Toggle Full Screen"
  3507. msgstr "Passer en Plein écran"
  3508. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:92
  3509. msgctxt "@action:inmenu menubar:edit"
  3510. msgid "&Undo"
  3511. msgstr "&Annuler"
  3512. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:102
  3513. msgctxt "@action:inmenu menubar:edit"
  3514. msgid "&Redo"
  3515. msgstr "&Rétablir"
  3516. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:112
  3517. msgctxt "@action:inmenu menubar:file"
  3518. msgid "&Quit"
  3519. msgstr "&Quitter"
  3520. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120
  3521. msgctxt "@action:inmenu menubar:view"
  3522. msgid "3D View"
  3523. msgstr "Vue 3D"
  3524. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127
  3525. msgctxt "@action:inmenu menubar:view"
  3526. msgid "Front View"
  3527. msgstr "Vue de face"
  3528. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134
  3529. msgctxt "@action:inmenu menubar:view"
  3530. msgid "Top View"
  3531. msgstr "Vue du dessus"
  3532. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141
  3533. msgctxt "@action:inmenu menubar:view"
  3534. msgid "Left Side View"
  3535. msgstr "Vue latérale gauche"
  3536. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148
  3537. msgctxt "@action:inmenu menubar:view"
  3538. msgid "Right Side View"
  3539. msgstr "Vue latérale droite"
  3540. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:155
  3541. msgctxt "@action:inmenu"
  3542. msgid "Configure Cura..."
  3543. msgstr "Configurer Cura..."
  3544. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:162
  3545. msgctxt "@action:inmenu menubar:printer"
  3546. msgid "&Add Printer..."
  3547. msgstr "&Ajouter une imprimante..."
  3548. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:168
  3549. msgctxt "@action:inmenu menubar:printer"
  3550. msgid "Manage Pr&inters..."
  3551. msgstr "Gérer les &imprimantes..."
  3552. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:175
  3553. msgctxt "@action:inmenu"
  3554. msgid "Manage Materials..."
  3555. msgstr "Gérer les matériaux..."
  3556. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:184
  3557. msgctxt "@action:inmenu menubar:profile"
  3558. msgid "&Update profile with current settings/overrides"
  3559. msgstr "&Mettre à jour le profil à l'aide des paramètres / forçages actuels"
  3560. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:192
  3561. msgctxt "@action:inmenu menubar:profile"
  3562. msgid "&Discard current changes"
  3563. msgstr "&Ignorer les modifications actuelles"
  3564. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:204
  3565. msgctxt "@action:inmenu menubar:profile"
  3566. msgid "&Create profile from current settings/overrides..."
  3567. msgstr "&Créer un profil à partir des paramètres / forçages actuels..."
  3568. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:210
  3569. msgctxt "@action:inmenu menubar:profile"
  3570. msgid "Manage Profiles..."
  3571. msgstr "Gérer les profils..."
  3572. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:218
  3573. msgctxt "@action:inmenu menubar:help"
  3574. msgid "Show Online &Documentation"
  3575. msgstr "Afficher la &documentation en ligne"
  3576. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:226
  3577. msgctxt "@action:inmenu menubar:help"
  3578. msgid "Report a &Bug"
  3579. msgstr "Notifier un &bug"
  3580. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:234
  3581. msgctxt "@action:inmenu menubar:help"
  3582. msgid "About..."
  3583. msgstr "À propos de..."
  3584. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:241
  3585. msgctxt "@action:inmenu menubar:edit"
  3586. msgid "Delete Selected Model"
  3587. msgid_plural "Delete Selected Models"
  3588. msgstr[0] "Supprimer le modèle sélectionné"
  3589. msgstr[1] "Supprimer les modèles sélectionnés"
  3590. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251
  3591. msgctxt "@action:inmenu menubar:edit"
  3592. msgid "Center Selected Model"
  3593. msgid_plural "Center Selected Models"
  3594. msgstr[0] "Centrer le modèle sélectionné"
  3595. msgstr[1] "Centrer les modèles sélectionnés"
  3596. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260
  3597. msgctxt "@action:inmenu menubar:edit"
  3598. msgid "Multiply Selected Model"
  3599. msgid_plural "Multiply Selected Models"
  3600. msgstr[0] "Multiplier le modèle sélectionné"
  3601. msgstr[1] "Multiplier les modèles sélectionnés"
  3602. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:269
  3603. msgctxt "@action:inmenu"
  3604. msgid "Delete Model"
  3605. msgstr "Supprimer le modèle"
  3606. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:277
  3607. msgctxt "@action:inmenu"
  3608. msgid "Ce&nter Model on Platform"
  3609. msgstr "Ce&ntrer le modèle sur le plateau"
  3610. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:283
  3611. msgctxt "@action:inmenu menubar:edit"
  3612. msgid "&Group Models"
  3613. msgstr "&Grouper les modèles"
  3614. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:303
  3615. msgctxt "@action:inmenu menubar:edit"
  3616. msgid "Ungroup Models"
  3617. msgstr "Dégrouper les modèles"
  3618. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:313
  3619. msgctxt "@action:inmenu menubar:edit"
  3620. msgid "&Merge Models"
  3621. msgstr "&Fusionner les modèles"
  3622. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:323
  3623. msgctxt "@action:inmenu"
  3624. msgid "&Multiply Model..."
  3625. msgstr "&Multiplier le modèle..."
  3626. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:330
  3627. msgctxt "@action:inmenu menubar:edit"
  3628. msgid "Select All Models"
  3629. msgstr "Sélectionner tous les modèles"
  3630. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:340
  3631. msgctxt "@action:inmenu menubar:edit"
  3632. msgid "Clear Build Plate"
  3633. msgstr "Supprimer les objets du plateau"
  3634. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350
  3635. msgctxt "@action:inmenu menubar:file"
  3636. msgid "Reload All Models"
  3637. msgstr "Recharger tous les modèles"
  3638. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:359
  3639. msgctxt "@action:inmenu menubar:edit"
  3640. msgid "Arrange All Models To All Build Plates"
  3641. msgstr "Réorganiser tous les modèles sur tous les plateaux"
  3642. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:366
  3643. msgctxt "@action:inmenu menubar:edit"
  3644. msgid "Arrange All Models"
  3645. msgstr "Réorganiser tous les modèles"
  3646. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:374
  3647. msgctxt "@action:inmenu menubar:edit"
  3648. msgid "Arrange Selection"
  3649. msgstr "Réorganiser la sélection"
  3650. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:381
  3651. msgctxt "@action:inmenu menubar:edit"
  3652. msgid "Reset All Model Positions"
  3653. msgstr "Réinitialiser toutes les positions des modèles"
  3654. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:388
  3655. msgctxt "@action:inmenu menubar:edit"
  3656. msgid "Reset All Model Transformations"
  3657. msgstr "Réinitialiser tous les modèles et transformations"
  3658. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:395
  3659. msgctxt "@action:inmenu menubar:file"
  3660. msgid "&Open File(s)..."
  3661. msgstr "&Ouvrir le(s) fichier(s)..."
  3662. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:403
  3663. msgctxt "@action:inmenu menubar:file"
  3664. msgid "&New Project..."
  3665. msgstr "&Nouveau projet..."
  3666. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:410
  3667. msgctxt "@action:inmenu menubar:help"
  3668. msgid "Show Configuration Folder"
  3669. msgstr "Afficher le dossier de configuration"
  3670. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:424
  3671. msgctxt "@action:menu"
  3672. msgid "&Marketplace"
  3673. msgstr ""
  3674. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:23
  3675. msgctxt "@title:window"
  3676. msgid "Ultimaker Cura"
  3677. msgstr "Ultimaker Cura"
  3678. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:181
  3679. msgctxt "@label"
  3680. msgid "This package will be installed after restarting."
  3681. msgstr "Ce paquet sera installé après le redémarrage."
  3682. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:357
  3683. msgctxt "@title:tab"
  3684. msgid "Settings"
  3685. msgstr "Paramètres"
  3686. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:486
  3687. msgctxt "@title:window"
  3688. msgid "Closing Cura"
  3689. msgstr "Fermeture de Cura"
  3690. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:487
  3691. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:499
  3692. msgctxt "@label"
  3693. msgid "Are you sure you want to exit Cura?"
  3694. msgstr "Êtes-vous sûr de vouloir quitter Cura ?"
  3695. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531
  3696. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
  3697. msgctxt "@title:window"
  3698. msgid "Open file(s)"
  3699. msgstr "Ouvrir le(s) fichier(s)"
  3700. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:632
  3701. msgctxt "@window:title"
  3702. msgid "Install Package"
  3703. msgstr "Installer le paquet"
  3704. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:640
  3705. msgctxt "@title:window"
  3706. msgid "Open File(s)"
  3707. msgstr "Ouvrir le(s) fichier(s)"
  3708. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:643
  3709. msgctxt "@text:window"
  3710. msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
  3711. msgstr "Nous avons trouvé au moins un fichier G-Code parmi les fichiers que vous avez sélectionné. Vous ne pouvez ouvrir qu'un seul fichier G-Code à la fois. Si vous souhaitez ouvrir un fichier G-Code, veuillez ne sélectionner qu'un seul fichier de ce type."
  3712. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713
  3713. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AddMachineDialog.qml:18
  3714. msgctxt "@title:window"
  3715. msgid "Add Printer"
  3716. msgstr "Ajouter une imprimante"
  3717. #: /home/ruben/Projects/Cura/resources/qml/ExtruderButton.qml:16
  3718. msgctxt "@label %1 is filled in with the name of an extruder"
  3719. msgid "Print Selected Model with %1"
  3720. msgid_plural "Print Selected Models with %1"
  3721. msgstr[0] "Imprimer le modèle sélectionné avec %1"
  3722. msgstr[1] "Imprimer les modèles sélectionnés avec %1"
  3723. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
  3724. msgctxt "@title:window"
  3725. msgid "Discard or Keep changes"
  3726. msgstr "Annuler ou conserver les modifications"
  3727. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
  3728. msgctxt "@text:window"
  3729. msgid ""
  3730. "You have customized some profile settings.\n"
  3731. "Would you like to keep or discard those settings?"
  3732. msgstr ""
  3733. "Vous avez personnalisé certains paramètres du profil.\n"
  3734. "Souhaitez-vous conserver ces changements, ou les annuler ?"
  3735. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:110
  3736. msgctxt "@title:column"
  3737. msgid "Profile settings"
  3738. msgstr "Paramètres du profil"
  3739. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:117
  3740. msgctxt "@title:column"
  3741. msgid "Default"
  3742. msgstr "Par défaut"
  3743. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124
  3744. msgctxt "@title:column"
  3745. msgid "Customized"
  3746. msgstr "Personnalisé"
  3747. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
  3748. msgctxt "@option:discardOrKeep"
  3749. msgid "Discard and never ask again"
  3750. msgstr "Annuler et ne plus me demander"
  3751. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
  3752. msgctxt "@option:discardOrKeep"
  3753. msgid "Keep and never ask again"
  3754. msgstr "Conserver et ne plus me demander"
  3755. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:196
  3756. msgctxt "@action:button"
  3757. msgid "Discard"
  3758. msgstr "Annuler"
  3759. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:209
  3760. msgctxt "@action:button"
  3761. msgid "Keep"
  3762. msgstr "Conserver"
  3763. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:222
  3764. msgctxt "@action:button"
  3765. msgid "Create New Profile"
  3766. msgstr "Créer un nouveau profil"
  3767. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AddMachineDialog.qml:78
  3768. msgctxt "@title:tab"
  3769. msgid "Add a printer to Cura"
  3770. msgstr ""
  3771. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AddMachineDialog.qml:92
  3772. msgctxt "@title:tab"
  3773. msgid ""
  3774. "Select the printer you want to use from the list below.\n"
  3775. "\n"
  3776. "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog."
  3777. msgstr ""
  3778. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AddMachineDialog.qml:249
  3779. msgctxt "@label"
  3780. msgid "Manufacturer"
  3781. msgstr ""
  3782. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AddMachineDialog.qml:271
  3783. msgctxt "@label"
  3784. msgid "Printer Name"
  3785. msgstr ""
  3786. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AddMachineDialog.qml:294
  3787. msgctxt "@action:button"
  3788. msgid "Add Printer"
  3789. msgstr "Ajouter une imprimante"
  3790. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  3791. msgctxt "@title:window"
  3792. msgid "About Cura"
  3793. msgstr "À propos de Cura"
  3794. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:56
  3795. msgctxt "@label"
  3796. msgid "version: %1"
  3797. msgstr "version : %1"
  3798. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:71
  3799. msgctxt "@label"
  3800. msgid "End-to-end solution for fused filament 3D printing."
  3801. msgstr "Solution complète pour l'impression 3D par dépôt de filament fondu."
  3802. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:84
  3803. msgctxt "@info:credit"
  3804. msgid ""
  3805. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  3806. "Cura proudly uses the following open source projects:"
  3807. msgstr ""
  3808. "Cura a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker.\n"
  3809. "Cura est fier d'utiliser les projets open source suivants :"
  3810. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:134
  3811. msgctxt "@label"
  3812. msgid "Graphical user interface"
  3813. msgstr "Interface utilisateur graphique"
  3814. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  3815. msgctxt "@label"
  3816. msgid "Application framework"
  3817. msgstr "Cadre d'application"
  3818. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  3819. msgctxt "@label"
  3820. msgid "G-code generator"
  3821. msgstr "Générateur G-Code"
  3822. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  3823. msgctxt "@label"
  3824. msgid "Interprocess communication library"
  3825. msgstr "Bibliothèque de communication interprocess"
  3826. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139
  3827. msgctxt "@label"
  3828. msgid "Programming language"
  3829. msgstr "Langage de programmation"
  3830. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  3831. msgctxt "@label"
  3832. msgid "GUI framework"
  3833. msgstr "Cadre IUG"
  3834. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  3835. msgctxt "@label"
  3836. msgid "GUI framework bindings"
  3837. msgstr "Liens cadre IUG"
  3838. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  3839. msgctxt "@label"
  3840. msgid "C/C++ Binding library"
  3841. msgstr "Bibliothèque C/C++ Binding"
  3842. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  3843. msgctxt "@label"
  3844. msgid "Data interchange format"
  3845. msgstr "Format d'échange de données"
  3846. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  3847. msgctxt "@label"
  3848. msgid "Support library for scientific computing"
  3849. msgstr "Prise en charge de la bibliothèque pour le calcul scientifique"
  3850. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  3851. msgctxt "@label"
  3852. msgid "Support library for faster math"
  3853. msgstr "Prise en charge de la bibliothèque pour des maths plus rapides"
  3854. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  3855. msgctxt "@label"
  3856. msgid "Support library for handling STL files"
  3857. msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers STL"
  3858. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  3859. msgctxt "@label"
  3860. msgid "Support library for handling planar objects"
  3861. msgstr "Prise en charge de la bibliothèque pour le traitement des objets planaires"
  3862. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  3863. msgctxt "@label"
  3864. msgid "Support library for handling triangular meshes"
  3865. msgstr "Prise en charge de la bibliothèque pour le traitement des mailles triangulaires"
  3866. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  3867. msgctxt "@label"
  3868. msgid "Support library for analysis of complex networks"
  3869. msgstr "Prise en charge de la bibliothèque pour l'analyse de réseaux complexes"
  3870. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  3871. msgctxt "@label"
  3872. msgid "Support library for handling 3MF files"
  3873. msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers 3MF"
  3874. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  3875. msgctxt "@label"
  3876. msgid "Support library for file metadata and streaming"
  3877. msgstr "Prise en charge de la bibliothèque pour les métadonnées et le streaming de fichiers"
  3878. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  3879. msgctxt "@label"
  3880. msgid "Serial communication library"
  3881. msgstr "Bibliothèque de communication série"
  3882. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  3883. msgctxt "@label"
  3884. msgid "ZeroConf discovery library"
  3885. msgstr "Bibliothèque de découverte ZeroConf"
  3886. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  3887. msgctxt "@label"
  3888. msgid "Polygon clipping library"
  3889. msgstr "Bibliothèque de découpe polygone"
  3890. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  3891. msgctxt "@Label"
  3892. msgid "Python HTTP library"
  3893. msgstr "Bibliothèque Python HTTP"
  3894. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  3895. msgctxt "@label"
  3896. msgid "Font"
  3897. msgstr "Police"
  3898. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  3899. msgctxt "@label"
  3900. msgid "SVG icons"
  3901. msgstr "Icônes SVG"
  3902. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3903. msgctxt "@label"
  3904. msgid "Linux cross-distribution application deployment"
  3905. msgstr "Déploiement d'applications sur multiples distributions Linux"
  3906. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  3907. msgctxt "@text:window"
  3908. msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
  3909. msgstr "Nous avons trouvé au moins un fichier de projet parmi les fichiers que vous avez sélectionnés. Vous ne pouvez ouvrir qu'un seul fichier de projet à la fois. Nous vous conseillons de n'importer que les modèles de ces fichiers. Souhaitez-vous continuer ?"
  3910. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:99
  3911. msgctxt "@action:button"
  3912. msgid "Import all as models"
  3913. msgstr "Importer tout comme modèles"
  3914. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
  3915. msgctxt "@title:window"
  3916. msgid "Save Project"
  3917. msgstr "Enregistrer le projet"
  3918. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:138
  3919. msgctxt "@action:label"
  3920. msgid "Build plate"
  3921. msgstr "Plateau"
  3922. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:170
  3923. msgctxt "@action:label"
  3924. msgid "Extruder %1"
  3925. msgstr "Extrudeuse %1"
  3926. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:180
  3927. msgctxt "@action:label"
  3928. msgid "%1 & material"
  3929. msgstr "%1 & matériau"
  3930. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243
  3931. msgctxt "@action:label"
  3932. msgid "Don't show project summary on save again"
  3933. msgstr "Ne pas afficher à nouveau le résumé du projet lors de l'enregistrement"
  3934. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:262
  3935. msgctxt "@action:button"
  3936. msgid "Save"
  3937. msgstr "Enregistrer"
  3938. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  3939. msgctxt "@title:window"
  3940. msgid "Open project file"
  3941. msgstr "Ouvrir un fichier de projet"
  3942. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:93
  3943. msgctxt "@text:window"
  3944. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3945. msgstr "Ceci est un fichier de projet Cura. Souhaitez-vous l'ouvrir comme projet ou en importer les modèles ?"
  3946. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:103
  3947. msgctxt "@text:window"
  3948. msgid "Remember my choice"
  3949. msgstr "Se souvenir de mon choix"
  3950. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:122
  3951. msgctxt "@action:button"
  3952. msgid "Open as project"
  3953. msgstr "Ouvrir comme projet"
  3954. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:131
  3955. msgctxt "@action:button"
  3956. msgid "Import models"
  3957. msgstr "Importer les modèles"
  3958. #: /home/ruben/Projects/Cura/resources/qml/ObjectsList.qml:210
  3959. msgctxt "@option:check"
  3960. msgid "See only current build plate"
  3961. msgstr "Afficher uniquement le plateau actuel"
  3962. #: /home/ruben/Projects/Cura/resources/qml/ObjectsList.qml:226
  3963. msgctxt "@action:button"
  3964. msgid "Arrange to all build plates"
  3965. msgstr "Réorganiser sur tous les plateaux"
  3966. #: /home/ruben/Projects/Cura/resources/qml/ObjectsList.qml:246
  3967. msgctxt "@action:button"
  3968. msgid "Arrange current build plate"
  3969. msgstr "Réorganiser le plateau actuel"
  3970. #: X3GWriter/plugin.json
  3971. msgctxt "description"
  3972. msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  3973. msgstr "Permet de sauvegarder la tranche résultante sous forme de fichier X3G, pour prendre en charge les imprimantes qui lisent ce format (Malyan, Makerbot et autres imprimantes basées sur Sailfish)."
  3974. #: X3GWriter/plugin.json
  3975. msgctxt "name"
  3976. msgid "X3GWriter"
  3977. msgstr "X3GWriter"
  3978. #~ msgid "Modify G-Code"
  3979. #~ msgstr "Modifier le G-Code"
  3980. #~ msgctxt "@info:status"
  3981. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  3982. #~ msgstr "Rien à couper car aucun des modèles ne convient au volume d'impression. Mettez à l'échelle ou faites pivoter les modèles pour les faire correspondre."
  3983. #~ msgctxt "@info:status"
  3984. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  3985. #~ msgstr "Le matériau sélectionné est incompatible avec la machine ou la configuration sélectionnée."
  3986. #~ msgctxt "@info:title"
  3987. #~ msgid "Incompatible Material"
  3988. #~ msgstr "Matériau incompatible"
  3989. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3990. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  3991. #~ msgstr "Échec de l'importation du profil depuis le fichier <filename>{0}</filename> : <message>{1}</message>"
  3992. #~ msgctxt "@title"
  3993. #~ msgid "Toolbox"
  3994. #~ msgstr "Boîte à outils"
  3995. #~ msgctxt "@label"
  3996. #~ msgid "Not available"
  3997. #~ msgstr "Non disponible"
  3998. #~ msgctxt "@label"
  3999. #~ msgid "Unreachable"
  4000. #~ msgstr "Injoignable"
  4001. #~ msgctxt "@label"
  4002. #~ msgid "Available"
  4003. #~ msgstr "Disponible"
  4004. #~ msgctxt "@label:status"
  4005. #~ msgid "Preparing"
  4006. #~ msgstr "Préparation"
  4007. #~ msgctxt "@label:status"
  4008. #~ msgid "Pausing"
  4009. #~ msgstr "Mise en pause"
  4010. #~ msgctxt "@label:status"
  4011. #~ msgid "Resuming"
  4012. #~ msgstr "Reprise"
  4013. #~ msgctxt "@label"
  4014. #~ msgid "Waiting for: Unavailable printer"
  4015. #~ msgstr "En attente : imprimante non disponible"
  4016. #~ msgctxt "@label"
  4017. #~ msgid "Waiting for: First available"
  4018. #~ msgstr "En attente : première imprimante disponible"
  4019. #~ msgctxt "@label"
  4020. #~ msgid "Waiting for: "
  4021. #~ msgstr "En attente : "
  4022. #~ msgctxt "@label"
  4023. #~ msgid "Configuration change"
  4024. #~ msgstr "Modification des configurations"
  4025. #~ msgctxt "@label"
  4026. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  4027. #~ msgstr "L'imprimante assignée, %1, nécessite d'apporter la ou les modifications suivantes à la configuration :"
  4028. #~ msgctxt "@label"
  4029. #~ msgid "Override"
  4030. #~ msgstr "Remplacer"
  4031. #~ msgctxt "@label"
  4032. #~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?"
  4033. #~ msgstr "Le fait de démarrer un travail d'impression avec une configuration incompatible peut endommager votre imprimante 3D. Êtes-vous sûr de vouloir remplacer la configuration et imprimer %1 ?"
  4034. #~ msgctxt "@window:title"
  4035. #~ msgid "Override configuration configuration and start print"
  4036. #~ msgstr "Remplacer la configuration et lancer l'impression"
  4037. #~ msgctxt "@label link to connect manager"
  4038. #~ msgid "Manage queue"
  4039. #~ msgstr "Gérer la file d'attente"
  4040. #~ msgctxt "@label"
  4041. #~ msgid "Printing"
  4042. #~ msgstr "Impression"
  4043. #~ msgctxt "@label link to connect manager"
  4044. #~ msgid "Manage printers"
  4045. #~ msgstr "Gérer les imprimantes"
  4046. #~ msgctxt "@action:button"
  4047. #~ msgid "Activate Configuration"
  4048. #~ msgstr "Activer la configuration"
  4049. #~ msgctxt "@info:tooltip"
  4050. #~ msgid "Load the configuration of the printer into Cura"
  4051. #~ msgstr "Charger la configuration de l'imprimante dans Cura"
  4052. #~ msgctxt "@label"
  4053. #~ msgid "Show Travels"
  4054. #~ msgstr "Afficher les déplacements"
  4055. #~ msgctxt "@label"
  4056. #~ msgid "Show Helpers"
  4057. #~ msgstr "Afficher les aides"
  4058. #~ msgctxt "@label"
  4059. #~ msgid "Show Shell"
  4060. #~ msgstr "Afficher la coque"
  4061. #~ msgctxt "@label"
  4062. #~ msgid "Show Infill"
  4063. #~ msgstr "Afficher le remplissage"
  4064. #~ msgctxt "@text:window"
  4065. #~ msgid "I don't want to send these data"
  4066. #~ msgstr "Je ne veux pas envoyer ces données"
  4067. #~ msgctxt "@text:window"
  4068. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  4069. #~ msgstr "Permettre l'envoi de ces données à Ultimaker et nous aider à améliorer Cura"
  4070. #~ msgctxt "@label"
  4071. #~ msgid "Printer type:"
  4072. #~ msgstr "Type d'imprimante :"
  4073. #~ msgctxt "@label"
  4074. #~ msgid "Connection:"
  4075. #~ msgstr "Connexion :"
  4076. #~ msgctxt "@label"
  4077. #~ msgid "State:"
  4078. #~ msgstr "État :"
  4079. #~ msgctxt "@label:MonitorStatus"
  4080. #~ msgid "Waiting for a printjob"
  4081. #~ msgstr "En attente d'une tâche d'impression"
  4082. #~ msgctxt "@label:MonitorStatus"
  4083. #~ msgid "Waiting for someone to clear the build plate"
  4084. #~ msgstr "En attente du dégagement du plateau"
  4085. #~ msgctxt "@label:MonitorStatus"
  4086. #~ msgid "Aborting print..."
  4087. #~ msgstr "Abandon de l'impression..."
  4088. #~ msgctxt "@label"
  4089. #~ msgid "Protected profiles"
  4090. #~ msgstr "Profils protégés"
  4091. #~ msgctxt "@label"
  4092. #~ msgid "Printer Name:"
  4093. #~ msgstr "Nom de l'imprimante :"
  4094. #~ msgctxt "@label"
  4095. #~ msgid "Profile:"
  4096. #~ msgstr "Profil :"
  4097. #~ msgctxt "@label:textbox"
  4098. #~ msgid "Search..."
  4099. #~ msgstr "Rechercher..."
  4100. #~ msgctxt "@action:inmenu"
  4101. #~ msgid "Collapse All"
  4102. #~ msgstr "Réduire tout"
  4103. #~ msgctxt "@action:inmenu"
  4104. #~ msgid "Expand All"
  4105. #~ msgstr "Développer tout"
  4106. #~ msgctxt "@label:header configurations"
  4107. #~ msgid "Available configurations"
  4108. #~ msgstr "Configurations disponibles"
  4109. #~ msgctxt "@label:extruder label"
  4110. #~ msgid "Extruder"
  4111. #~ msgstr "Extrudeuse"
  4112. #~ msgctxt "@label:extruder label"
  4113. #~ msgid "Yes"
  4114. #~ msgstr "Oui"
  4115. #~ msgctxt "@label:extruder label"
  4116. #~ msgid "No"
  4117. #~ msgstr "Non"
  4118. #~ msgctxt "@label:listbox"
  4119. #~ msgid "Print Setup"
  4120. #~ msgstr "Configuration de l'impression"
  4121. #~ msgctxt "@label:listbox"
  4122. #~ msgid ""
  4123. #~ "Print Setup disabled\n"
  4124. #~ "G-code files cannot be modified"
  4125. #~ msgstr ""
  4126. #~ "Configuration de l'impression désactivée\n"
  4127. #~ "Les fichiers G-Code ne peuvent pas être modifiés"
  4128. #~ msgctxt "@label Hours and minutes"
  4129. #~ msgid "00h 00min"
  4130. #~ msgstr "00h 00min"
  4131. #~ msgctxt "@tooltip"
  4132. #~ msgid "Time specification"
  4133. #~ msgstr "Spécification de temps"
  4134. #~ msgctxt "@label"
  4135. #~ msgid "Cost specification"
  4136. #~ msgstr "Spécification de coût"
  4137. #~ msgctxt "@label"
  4138. #~ msgid "Total:"
  4139. #~ msgstr "Total :"
  4140. #~ msgctxt "@tooltip"
  4141. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  4142. #~ msgstr "<b>Configuration de l'impression recommandée</b><br/><br/>Imprimer avec les paramètres recommandés pour l'imprimante, le matériau et la qualité sélectionnés."
  4143. #~ msgctxt "@tooltip"
  4144. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  4145. #~ msgstr "<b>Configuration de l'impression personnalisée</b><br/><br/>Imprimer avec un contrôle fin de chaque élément du processus de découpe."
  4146. #~ msgctxt "@action:inmenu menubar:help"
  4147. #~ msgid "Show Engine &Log..."
  4148. #~ msgstr "Afficher le &journal du moteur..."
  4149. #~ msgctxt "@action:menu"
  4150. #~ msgid "Browse packages..."
  4151. #~ msgstr "Parcourir les paquets..."
  4152. #~ msgctxt "@action:inmenu menubar:view"
  4153. #~ msgid "Expand/Collapse Sidebar"
  4154. #~ msgstr "Déplier / replier la barre latérale"
  4155. #~ msgctxt "@label:PrintjobStatus"
  4156. #~ msgid "Please load a 3D model"
  4157. #~ msgstr "Veuillez charger un modèle 3D"
  4158. #~ msgctxt "@label:PrintjobStatus"
  4159. #~ msgid "Ready to slice"
  4160. #~ msgstr "Prêt à découper"
  4161. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  4162. #~ msgid "Ready to %1"
  4163. #~ msgstr "Prêt à %1"
  4164. #~ msgctxt "@label:PrintjobStatus"
  4165. #~ msgid "Slicing unavailable"
  4166. #~ msgstr "Découpe indisponible"
  4167. #~ msgctxt "@info:tooltip"
  4168. #~ msgid "Slice current printjob"
  4169. #~ msgstr "Découper la tâche d'impression en cours"
  4170. #~ msgctxt "@info:tooltip"
  4171. #~ msgid "Cancel slicing process"
  4172. #~ msgstr "Annuler le processus de découpe"
  4173. #~ msgctxt "@label:Printjob"
  4174. #~ msgid "Prepare"
  4175. #~ msgstr "Préparer"
  4176. #~ msgctxt "@label:Printjob"
  4177. #~ msgid "Cancel"
  4178. #~ msgstr "Annuler"
  4179. #~ msgctxt "@info:tooltip"
  4180. #~ msgid "Select the active output device"
  4181. #~ msgstr "Sélectionner le périphérique de sortie actif"
  4182. #~ msgctxt "@title:menu"
  4183. #~ msgid "&View"
  4184. #~ msgstr "&Visualisation"
  4185. #~ msgctxt "@title:menu"
  4186. #~ msgid "&Settings"
  4187. #~ msgstr "&Paramètres"
  4188. #~ msgctxt "@title:menu menubar:toplevel"
  4189. #~ msgid "&Toolbox"
  4190. #~ msgstr "&Boîte à outils"
  4191. #~ msgctxt "@action:button"
  4192. #~ msgid "Open File"
  4193. #~ msgstr "Ouvrir un fichier"
  4194. #~ msgctxt "@tooltip"
  4195. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  4196. #~ msgstr "Ce profil de qualité n'est pas disponible pour votre matériau et configuration des buses actuels. Veuillez modifier ces derniers pour activer ce profil de qualité"
  4197. #~ msgctxt "@label"
  4198. #~ msgid "Print Speed"
  4199. #~ msgstr "Vitesse d’impression"
  4200. #~ msgctxt "@label"
  4201. #~ msgid "Slower"
  4202. #~ msgstr "Ralentir"
  4203. #~ msgctxt "@label"
  4204. #~ msgid "Faster"
  4205. #~ msgstr "Accélérer"
  4206. #~ msgctxt "@label"
  4207. #~ msgid "Enable gradual"
  4208. #~ msgstr "Permettre le remplissage graduel"
  4209. #~ msgctxt "@label"
  4210. #~ msgid "Generate Support"
  4211. #~ msgstr "Générer les supports"
  4212. #~ msgctxt "@label"
  4213. #~ msgid "Build Plate Adhesion"
  4214. #~ msgstr "Adhérence au plateau"
  4215. #~ msgctxt "@label"
  4216. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  4217. #~ msgstr "Besoin d'aide pour améliorer vos impressions ?<br>Lisez les <a href='%1'>Guides de dépannage Ultimaker</a>"
  4218. #~ msgctxt "@title:window"
  4219. #~ msgid "Engine Log"
  4220. #~ msgstr "Journal du moteur"
  4221. #~ msgctxt "@label"
  4222. #~ msgid "Printer type"
  4223. #~ msgstr "Type d'imprimante"
  4224. #~ msgctxt "@label"
  4225. #~ msgid "Use glue with this material combination"
  4226. #~ msgstr "Utiliser de la colle avec cette combinaison de matériaux"
  4227. #~ msgctxt "@label"
  4228. #~ msgid "Check compatibility"
  4229. #~ msgstr "Vérifier la compatibilité"
  4230. #~ msgctxt "@tooltip"
  4231. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  4232. #~ msgstr "Cliquez ici pour vérifier la compatibilité des matériaux sur Ultimaker.com."
  4233. #~ msgctxt "description"
  4234. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4235. #~ msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)"
  4236. #~ msgctxt "name"
  4237. #~ msgid "Machine Settings action"
  4238. #~ msgstr "Action Paramètres de la machine"
  4239. #~ msgctxt "description"
  4240. #~ msgid "Find, manage and install new Cura packages."
  4241. #~ msgstr "Rechercher, gérer et installer de nouveaux paquets Cura."
  4242. #~ msgctxt "name"
  4243. #~ msgid "Toolbox"
  4244. #~ msgstr "Boîte à outils"
  4245. #~ msgctxt "description"
  4246. #~ msgid "Provides the X-Ray view."
  4247. #~ msgstr "Permet la vue Rayon-X."
  4248. #~ msgctxt "name"
  4249. #~ msgid "X-Ray View"
  4250. #~ msgstr "Vue Rayon-X"
  4251. #~ msgctxt "description"
  4252. #~ msgid "Provides support for reading X3D files."
  4253. #~ msgstr "Fournit la prise en charge de la lecture de fichiers X3D."
  4254. #~ msgctxt "name"
  4255. #~ msgid "X3D Reader"
  4256. #~ msgstr "Lecteur X3D"
  4257. #~ msgctxt "description"
  4258. #~ msgid "Writes g-code to a file."
  4259. #~ msgstr "Enregistre le G-Code dans un fichier."
  4260. #~ msgctxt "name"
  4261. #~ msgid "G-code Writer"
  4262. #~ msgstr "Générateur de G-Code"
  4263. #~ msgctxt "description"
  4264. #~ msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4265. #~ msgstr "Vérifie les modèles et la configuration de l'impression pour déceler d'éventuels problèmes d'impression et donne des suggestions."
  4266. #~ msgctxt "name"
  4267. #~ msgid "Model Checker"
  4268. #~ msgstr "Contrôleur de modèle"
  4269. #~ msgctxt "description"
  4270. #~ msgid "Dump the contents of all settings to a HTML file."
  4271. #~ msgstr "Exporter les contenus de tous les paramètres vers un fichier HTML."
  4272. #~ msgctxt "name"
  4273. #~ msgid "God Mode"
  4274. #~ msgstr "Mode God"
  4275. #~ msgctxt "description"
  4276. #~ msgid "Shows changes since latest checked version."
  4277. #~ msgstr "Affiche les changements depuis la dernière version."
  4278. #~ msgctxt "name"
  4279. #~ msgid "Changelog"
  4280. #~ msgstr "Récapitulatif des changements"
  4281. #~ msgctxt "description"
  4282. #~ msgid "Provides a machine actions for updating firmware."
  4283. #~ msgstr "Fournit à une machine des actions permettant la mise à jour du firmware."
  4284. #~ msgctxt "name"
  4285. #~ msgid "Firmware Updater"
  4286. #~ msgstr "Programme de mise à jour du firmware"
  4287. #~ msgctxt "description"
  4288. #~ msgid "Create a flattend quality changes profile."
  4289. #~ msgstr "Créer un profil de changements de qualité aplati."
  4290. #~ msgctxt "name"
  4291. #~ msgid "Profile flatener"
  4292. #~ msgstr "Aplatisseur de profil"
  4293. #~ msgctxt "description"
  4294. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4295. #~ msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware."
  4296. #~ msgctxt "name"
  4297. #~ msgid "USB printing"
  4298. #~ msgstr "Impression par USB"
  4299. #~ msgctxt "description"
  4300. #~ msgid "Ask the user once if he/she agrees with our license."
  4301. #~ msgstr "Demander à l'utilisateur une fois s'il appose son accord à notre licence."
  4302. #~ msgctxt "name"
  4303. #~ msgid "UserAgreement"
  4304. #~ msgstr "UserAgreement"
  4305. #~ msgctxt "description"
  4306. #~ msgid "Writes g-code to a compressed archive."
  4307. #~ msgstr "Enregistre le G-Code dans une archive compressée."
  4308. #~ msgctxt "name"
  4309. #~ msgid "Compressed G-code Writer"
  4310. #~ msgstr "Générateur de G-Code compressé"
  4311. #~ msgctxt "description"
  4312. #~ msgid "Provides support for writing Ultimaker Format Packages."
  4313. #~ msgstr "Permet l'écriture de fichiers Ultimaker Format Package."
  4314. #~ msgctxt "name"
  4315. #~ msgid "UFP Writer"
  4316. #~ msgstr "Générateur UFP"
  4317. #~ msgctxt "description"
  4318. #~ msgid "Provides a prepare stage in Cura."
  4319. #~ msgstr "Fournit une étape de préparation dans Cura."
  4320. #~ msgctxt "name"
  4321. #~ msgid "Prepare Stage"
  4322. #~ msgstr "Étape de préparation"
  4323. #~ msgctxt "description"
  4324. #~ msgid "Provides removable drive hotplugging and writing support."
  4325. #~ msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible."
  4326. #~ msgctxt "name"
  4327. #~ msgid "Removable Drive Output Device Plugin"
  4328. #~ msgstr "Plugin de périphérique de sortie sur disque amovible"
  4329. #~ msgctxt "description"
  4330. #~ msgid "Manages network connections to Ultimaker 3 printers."
  4331. #~ msgstr "Gère les connexions réseau vers les imprimantes Ultimaker 3."
  4332. #~ msgctxt "name"
  4333. #~ msgid "UM3 Network Connection"
  4334. #~ msgstr "Connexion au réseau UM3"
  4335. #~ msgctxt "description"
  4336. #~ msgid "Provides a monitor stage in Cura."
  4337. #~ msgstr "Fournit une étape de surveillance dans Cura."
  4338. #~ msgctxt "name"
  4339. #~ msgid "Monitor Stage"
  4340. #~ msgstr "Étape de surveillance"
  4341. #~ msgctxt "description"
  4342. #~ msgid "Checks for firmware updates."
  4343. #~ msgstr "Vérifie les mises à jour du firmware."
  4344. #~ msgctxt "name"
  4345. #~ msgid "Firmware Update Checker"
  4346. #~ msgstr "Vérificateur des mises à jour du firmware"
  4347. #~ msgctxt "description"
  4348. #~ msgid "Provides the Simulation view."
  4349. #~ msgstr "Fournit la Vue simulation."
  4350. #~ msgctxt "name"
  4351. #~ msgid "Simulation View"
  4352. #~ msgstr "Vue simulation"
  4353. #~ msgctxt "description"
  4354. #~ msgid "Reads g-code from a compressed archive."
  4355. #~ msgstr "Lit le G-Code à partir d'une archive compressée."
  4356. #~ msgctxt "name"
  4357. #~ msgid "Compressed G-code Reader"
  4358. #~ msgstr "Lecteur G-Code compressé"
  4359. #~ msgctxt "description"
  4360. #~ msgid "Extension that allows for user created scripts for post processing"
  4361. #~ msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur"
  4362. #~ msgctxt "name"
  4363. #~ msgid "Post Processing"
  4364. #~ msgstr "Post-traitement"
  4365. #~ msgctxt "description"
  4366. #~ msgid "Creates an eraser mesh to block the printing of support in certain places"
  4367. #~ msgstr "Crée un maillage effaceur pour bloquer l'impression du support en certains endroits"
  4368. #~ msgctxt "name"
  4369. #~ msgid "Support Eraser"
  4370. #~ msgstr "Effaceur de support"
  4371. #~ msgctxt "description"
  4372. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  4373. #~ msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences."
  4374. #~ msgctxt "name"
  4375. #~ msgid "Slice info"
  4376. #~ msgstr "Information sur le découpage"
  4377. #~ msgctxt "description"
  4378. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  4379. #~ msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML."
  4380. #~ msgctxt "name"
  4381. #~ msgid "Material Profiles"
  4382. #~ msgstr "Profils matériels"
  4383. #~ msgctxt "description"
  4384. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  4385. #~ msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures."
  4386. #~ msgctxt "name"
  4387. #~ msgid "Legacy Cura Profile Reader"
  4388. #~ msgstr "Lecteur de profil Cura antérieur"
  4389. #~ msgctxt "description"
  4390. #~ msgid "Provides support for importing profiles from g-code files."
  4391. #~ msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code."
  4392. #~ msgctxt "name"
  4393. #~ msgid "G-code Profile Reader"
  4394. #~ msgstr "Lecteur de profil G-Code"
  4395. #~ msgctxt "description"
  4396. #~ msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4397. #~ msgstr "Configurations des mises à niveau de Cura 3.2 vers Cura 3.3."
  4398. #~ msgctxt "name"
  4399. #~ msgid "Version Upgrade 3.2 to 3.3"
  4400. #~ msgstr "Mise à niveau de 3.2 vers 3.3"
  4401. #~ msgctxt "description"
  4402. #~ msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  4403. #~ msgstr "Configurations des mises à niveau de Cura 3.3 vers Cura 3.4."
  4404. #~ msgctxt "name"
  4405. #~ msgid "Version Upgrade 3.3 to 3.4"
  4406. #~ msgstr "Mise à niveau de 3.3 vers 3.4"
  4407. #~ msgctxt "description"
  4408. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4409. #~ msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6."
  4410. #~ msgctxt "name"
  4411. #~ msgid "Version Upgrade 2.5 to 2.6"
  4412. #~ msgstr "Mise à niveau de 2.5 vers 2.6"
  4413. #~ msgctxt "description"
  4414. #~ msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4415. #~ msgstr "Met à niveau les configurations, de Cura 2.7 vers Cura 3.0."
  4416. #~ msgctxt "name"
  4417. #~ msgid "Version Upgrade 2.7 to 3.0"
  4418. #~ msgstr "Mise à niveau de version, de 2.7 vers 3.0"
  4419. #~ msgctxt "description"
  4420. #~ msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4421. #~ msgstr "Configurations des mises à niveau de Cura 3.4 vers Cura 3.5."
  4422. #~ msgctxt "name"
  4423. #~ msgid "Version Upgrade 3.4 to 3.5"
  4424. #~ msgstr "Mise à niveau de 3.4 vers 3.5"
  4425. #~ msgctxt "description"
  4426. #~ msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  4427. #~ msgstr "Met à niveau les configurations, de Cura 3.0 vers Cura 3.1."
  4428. #~ msgctxt "name"
  4429. #~ msgid "Version Upgrade 3.0 to 3.1"
  4430. #~ msgstr "Mise à niveau de version, de 3.0 vers 3.1"
  4431. #~ msgctxt "description"
  4432. #~ msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  4433. #~ msgstr "Configurations des mises à niveau de Cura 2.6 vers Cura 2.7."
  4434. #~ msgctxt "name"
  4435. #~ msgid "Version Upgrade 2.6 to 2.7"
  4436. #~ msgstr "Mise à niveau de 2.6 vers 2.7"
  4437. #~ msgctxt "description"
  4438. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4439. #~ msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2."
  4440. #~ msgctxt "name"
  4441. #~ msgid "Version Upgrade 2.1 to 2.2"
  4442. #~ msgstr "Mise à niveau vers 2.1 vers 2.2"
  4443. #~ msgctxt "description"
  4444. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4445. #~ msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4."
  4446. #~ msgctxt "name"
  4447. #~ msgid "Version Upgrade 2.2 to 2.4"
  4448. #~ msgstr "Mise à niveau de 2.2 vers 2.4"
  4449. #~ msgctxt "description"
  4450. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  4451. #~ msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D."
  4452. #~ msgctxt "name"
  4453. #~ msgid "Image Reader"
  4454. #~ msgstr "Lecteur d'images"
  4455. #~ msgctxt "description"
  4456. #~ msgid "Provides the link to the CuraEngine slicing backend."
  4457. #~ msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine."
  4458. #~ msgctxt "name"
  4459. #~ msgid "CuraEngine Backend"
  4460. #~ msgstr "Système CuraEngine"
  4461. #~ msgctxt "description"
  4462. #~ msgid "Provides the Per Model Settings."
  4463. #~ msgstr "Fournit les paramètres par modèle."
  4464. #~ msgctxt "name"
  4465. #~ msgid "Per Model Settings Tool"
  4466. #~ msgstr "Outil de paramètres par modèle"
  4467. #~ msgctxt "description"
  4468. #~ msgid "Provides support for reading 3MF files."
  4469. #~ msgstr "Fournit la prise en charge de la lecture de fichiers 3MF."
  4470. #~ msgctxt "name"
  4471. #~ msgid "3MF Reader"
  4472. #~ msgstr "Lecteur 3MF"
  4473. #~ msgctxt "description"
  4474. #~ msgid "Provides a normal solid mesh view."
  4475. #~ msgstr "Affiche une vue en maille solide normale."
  4476. #~ msgctxt "name"
  4477. #~ msgid "Solid View"
  4478. #~ msgstr "Vue solide"
  4479. #~ msgctxt "description"
  4480. #~ msgid "Allows loading and displaying G-code files."
  4481. #~ msgstr "Permet le chargement et l'affichage de fichiers G-Code."
  4482. #~ msgctxt "name"
  4483. #~ msgid "G-code Reader"
  4484. #~ msgstr "Lecteur G-Code"
  4485. #~ msgctxt "description"
  4486. #~ msgid "Provides support for exporting Cura profiles."
  4487. #~ msgstr "Fournit la prise en charge de l'exportation de profils Cura."
  4488. #~ msgctxt "name"
  4489. #~ msgid "Cura Profile Writer"
  4490. #~ msgstr "Générateur de profil Cura"
  4491. #~ msgctxt "description"
  4492. #~ msgid "Provides support for writing 3MF files."
  4493. #~ msgstr "Permet l'écriture de fichiers 3MF."
  4494. #~ msgctxt "name"
  4495. #~ msgid "3MF Writer"
  4496. #~ msgstr "Générateur 3MF"
  4497. #~ msgctxt "description"
  4498. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4499. #~ msgstr "Fournit les actions de la machine pour les machines Ultimaker (telles que l'assistant de calibration du plateau, sélection des mises à niveau, etc.)"
  4500. #~ msgctxt "name"
  4501. #~ msgid "Ultimaker machine actions"
  4502. #~ msgstr "Actions de la machine Ultimaker"
  4503. #~ msgctxt "description"
  4504. #~ msgid "Provides support for importing Cura profiles."
  4505. #~ msgstr "Fournit la prise en charge de l'importation de profils Cura."
  4506. #~ msgctxt "name"
  4507. #~ msgid "Cura Profile Reader"
  4508. #~ msgstr "Lecteur de profil Cura"
  4509. #~ msgctxt "@warning:status"
  4510. #~ msgid "Please generate G-code before saving."
  4511. #~ msgstr "Veuillez générer le G-Code avant d'enregistrer."
  4512. #~ msgctxt "@action"
  4513. #~ msgid "Upgrade Firmware"
  4514. #~ msgstr "Mise à niveau du firmware"
  4515. #~ msgctxt "@label unknown material"
  4516. #~ msgid "Unknown"
  4517. #~ msgstr "Inconnu"
  4518. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4519. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  4520. #~ msgstr "Aucun profil personnalisé à importer dans le fichier <filename>{0}</filename>"
  4521. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4522. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  4523. #~ msgstr "Le profil <filename>{0}</filename> contient des données incorrectes ; échec de l'importation."
  4524. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4525. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  4526. #~ msgstr "La machine définie dans le profil <filename>{0}</filename> ({1}) ne correspond pas à votre machine actuelle ({2}) ; échec de l'importation."
  4527. #~ msgctxt "@title:window"
  4528. #~ msgid "Confirm uninstall "
  4529. #~ msgstr "Confirmer la désinstallation "
  4530. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  4531. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  4532. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  4533. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  4534. #~ msgid "%1m / ~ %2g"
  4535. #~ msgstr "%1m / ~ %2g"
  4536. #~ msgctxt "@title"
  4537. #~ msgid "Upgrade Firmware"
  4538. #~ msgstr "Mise à niveau du firmware"
  4539. #~ msgctxt "description"
  4540. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  4541. #~ msgstr "Permet aux fabricants de matériaux de créer de nouveaux matériaux et profils de qualité à l'aide d'une interface utilisateur ad hoc."
  4542. #~ msgctxt "name"
  4543. #~ msgid "Print Profile Assistant"
  4544. #~ msgstr "Assistant de profil d'impression"
  4545. #~ msgctxt "@action:button"
  4546. #~ msgid "Print with Doodle3D WiFi-Box"
  4547. #~ msgstr "Imprimer avec Doodle3D WiFi-Box"
  4548. #~ msgctxt "@properties:tooltip"
  4549. #~ msgid "Print with Doodle3D WiFi-Box"
  4550. #~ msgstr "Imprimer avec Doodle3D WiFi-Box"
  4551. #~ msgctxt "@info:status"
  4552. #~ msgid "Connecting to Doodle3D Connect"
  4553. #~ msgstr "Connexion avec Doodle3D Connecter..."
  4554. #~ msgctxt "@info:status"
  4555. #~ msgid "Sending data to Doodle3D Connect"
  4556. #~ msgstr "Envoi de données vers Doodle3D Connecter..."
  4557. #~ msgctxt "@info:status"
  4558. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  4559. #~ msgstr "Impossible d'envoyer les données à Doodle3D Connect. Une autre tâche est-elle toujours active ?"
  4560. #~ msgctxt "@info:status"
  4561. #~ msgid "Storing data on Doodle3D Connect"
  4562. #~ msgstr "Enregistrement de données dans Doodle3D Connecter..."
  4563. #~ msgctxt "@info:status"
  4564. #~ msgid "File sent to Doodle3D Connect"
  4565. #~ msgstr "Fichier envoyé vers Doodle3D Connecter"
  4566. #~ msgctxt "@action:button"
  4567. #~ msgid "Open Connect..."
  4568. #~ msgstr "Ouvrir Connect..."
  4569. #~ msgctxt "@info:tooltip"
  4570. #~ msgid "Open the Doodle3D Connect web interface"
  4571. #~ msgstr "Ouvrir l'interface web Doodle3D Connecter"
  4572. #~ msgctxt "@item:inlistbox"
  4573. #~ msgid "Blender file"
  4574. #~ msgstr "Fichier Blender"
  4575. #~ msgctxt "@info:status"
  4576. #~ msgid ""
  4577. #~ "Could not export using \"{}\" quality!\n"
  4578. #~ "Felt back to \"{}\"."
  4579. #~ msgstr ""
  4580. #~ "Impossible d'exporter avec la qualité \"{}\" !\n"
  4581. #~ "Qualité redéfinie sur \"{}\"."
  4582. #~ msgctxt "@label"
  4583. #~ msgid "Contact"
  4584. #~ msgstr "Contact"
  4585. #~ msgctxt "@label"
  4586. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  4587. #~ msgstr "L'imprimante n'est pas configurée pour héberger un groupe d'imprimantes Ultimaker 3."
  4588. #~ msgctxt "@label"
  4589. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  4590. #~ msgstr "L'imprimante est le patron pour un groupe de %1 imprimantes Ultimaker 3."
  4591. #~ msgctxt "@label: arg 1 is group name"
  4592. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  4593. #~ msgstr "%1 n'est pas configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3."
  4594. #~ msgctxt "@label link to connect manager"
  4595. #~ msgid "Add/Remove printers"
  4596. #~ msgstr "Ajouter / supprimer une imprimante"
  4597. #~ msgctxt "@info:tooltip"
  4598. #~ msgid "Opens the print jobs page with your default web browser."
  4599. #~ msgstr "Ouvre la page des tâches d'impression avec votre navigateur web."
  4600. #~ msgctxt "@action:button"
  4601. #~ msgid "View print jobs"
  4602. #~ msgstr "Afficher les tâches d'impression"
  4603. #~ msgctxt "@label:status"
  4604. #~ msgid "Preparing to print"
  4605. #~ msgstr "Préparation..."
  4606. #~ msgctxt "@label:status"
  4607. #~ msgid "Printing"
  4608. #~ msgstr "Impression..."
  4609. #~ msgctxt "@label:status"
  4610. #~ msgid "Available"
  4611. #~ msgstr "Disponible"
  4612. #~ msgctxt "@label:status"
  4613. #~ msgid "Lost connection with the printer"
  4614. #~ msgstr "Connexion avec l'imprimante perdue"
  4615. #~ msgctxt "@label:status"
  4616. #~ msgid "Unknown"
  4617. #~ msgstr "Inconnu"
  4618. #~ msgctxt "@label:status"
  4619. #~ msgid "Disabled"
  4620. #~ msgstr "Désactivé"
  4621. #~ msgctxt "@label:status"
  4622. #~ msgid "Reserved"
  4623. #~ msgstr "Réservée"
  4624. #~ msgctxt "@label"
  4625. #~ msgid "Preparing to print"
  4626. #~ msgstr "Préparation de l'impression..."
  4627. #~ msgctxt "@label:status"
  4628. #~ msgid "Print aborted"
  4629. #~ msgstr "Abandon de l'impression"
  4630. #~ msgctxt "@label"
  4631. #~ msgid "Not accepting print jobs"
  4632. #~ msgstr "Non acceptation des tâches d'impression"
  4633. #~ msgctxt "@label"
  4634. #~ msgid "Finishes at: "
  4635. #~ msgstr "Complète a: "
  4636. #~ msgctxt "@label"
  4637. #~ msgid "Clear build plate"
  4638. #~ msgstr "Enlever les objets du plateau"
  4639. #~ msgctxt "@label"
  4640. #~ msgid "Waiting for configuration change"
  4641. #~ msgstr "En attente de modification de configuration"
  4642. #~ msgctxt "@title"
  4643. #~ msgid "Print jobs"
  4644. #~ msgstr "Imprimer les tâches"
  4645. #~ msgctxt "@label:title"
  4646. #~ msgid "Printers"
  4647. #~ msgstr "Imprimantes"
  4648. #~ msgctxt "@action:button"
  4649. #~ msgid "View printers"
  4650. #~ msgstr "Afficher les imprimantes"
  4651. #~ msgctxt "@label:"
  4652. #~ msgid "Pause"
  4653. #~ msgstr "Pause"
  4654. #~ msgctxt "@label:"
  4655. #~ msgid "Resume"
  4656. #~ msgstr "Reprendre"
  4657. #~ msgctxt "@label:"
  4658. #~ msgid "Abort Print"
  4659. #~ msgstr "Abandonner l'impression"
  4660. #~ msgctxt "@option:openProject"
  4661. #~ msgid "Always ask"
  4662. #~ msgstr "Toujours demander"
  4663. #~ msgctxt "@label"
  4664. #~ msgid "Override Profile"
  4665. #~ msgstr "Écraser le profil"
  4666. #~ msgctxt "@info:tooltip"
  4667. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  4668. #~ msgstr "Les modèles nouvellement chargés doivent-ils être disposés sur le plateau ? Utilisé en conjonction avec le multi-plateau (EXPÉRIMENTAL)"
  4669. #~ msgctxt "@option:check"
  4670. #~ msgid "Do not arrange objects on load"
  4671. #~ msgstr "Ne pas réorganiser les objets lors du chargement"
  4672. #~ msgctxt "@action:inmenu menubar:file"
  4673. #~ msgid "&Save Selection to File"
  4674. #~ msgstr "Enregi&strer la sélection dans un fichier"
  4675. #~ msgctxt "@title:menu menubar:file"
  4676. #~ msgid "Save &As..."
  4677. #~ msgstr "Enregistrer &sous..."
  4678. #~ msgctxt "@title:menu menubar:file"
  4679. #~ msgid "Save &Project..."
  4680. #~ msgstr "Enregistrer le &projet..."
  4681. # Added after the string freeze.
  4682. #~ msgctxt "@label"
  4683. #~ msgid "Use adhesion sheet or glue with this material combination"
  4684. #~ msgstr "Utilisez feuilles d'adhérence ou de la colle avec cette combinaison des matériaux"
  4685. #~ msgctxt "description"
  4686. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  4687. #~ msgstr "Accepte les G-Code et les envoie par Wi-Fi à une box WiFi Doodle3D."
  4688. #~ msgctxt "name"
  4689. #~ msgid "Doodle3D WiFi-Box"
  4690. #~ msgstr "Box WiFi Doodle3D"
  4691. #~ msgctxt "description"
  4692. #~ msgid "Provides an edit window for direct script editing."
  4693. #~ msgstr "Fournit une fenêtre d'édition pour l'édition directe de script."
  4694. #~ msgctxt "name"
  4695. #~ msgid "Live scripting tool"
  4696. #~ msgstr "Outil de scripting en direct"
  4697. #~ msgctxt "description"
  4698. #~ msgid "Helps to open Blender files directly in Cura."
  4699. #~ msgstr "Aide à ouvrir les fichiers Blender directement dans Cura."
  4700. #~ msgctxt "name"
  4701. #~ msgid "Blender Integration (experimental)"
  4702. #~ msgstr "Intégration Blender (expérimental)"
  4703. #~ msgctxt "@info:title"
  4704. #~ msgid "Model Checker Warning"
  4705. #~ msgstr "Avertissement contrôleur de modèle"
  4706. #~ msgctxt "@info:status"
  4707. #~ msgid ""
  4708. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  4709. #~ "Tips that may be useful to improve the print quality:\n"
  4710. #~ "1) Use rounded corners.\n"
  4711. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  4712. #~ "3) Use a different material."
  4713. #~ msgstr ""
  4714. #~ "Certains modèles peuvent ne pas être imprimés de manière optimale en raison de la taille de l'objet et du matériau choisi pour les modèles : {model_names}.\n"
  4715. #~ "Conseils utiles pour améliorer la qualité d'impression :\n"
  4716. #~ "1) Utiliser des coins arrondis.\n"
  4717. #~ "2) Éteindre le ventilateur (seulement si le modèle ne contient pas de petits détails).\n"
  4718. #~ "3) Utiliser un matériau différent."
  4719. #~ msgctxt "@info:status"
  4720. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  4721. #~ msgstr "SolidWorks a signalé des erreurs lors de l'ouverture de votre fichier. Nous vous recommandons de résoudre ces problèmes dans SolidWorks lui-même."
  4722. #~ msgctxt "@info:status"
  4723. #~ msgid ""
  4724. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  4725. #~ "\n"
  4726. #~ "Thanks!"
  4727. #~ msgstr ""
  4728. #~ "Aucun modèle n'a été trouvé à l'intérieur de votre dessin. Pouvez-vous vérifier son contenu de nouveau et vous assurer qu'une pièce ou un assemblage est présent ?\n"
  4729. #~ "\n"
  4730. #~ "Merci !"
  4731. #~ msgctxt "@info:status"
  4732. #~ msgid ""
  4733. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  4734. #~ "\n"
  4735. #~ "Sorry!"
  4736. #~ msgstr ""
  4737. #~ "Plus d'une pièce ou d'un assemblage ont été trouvés dans votre dessin. Nous ne prenons actuellement en charge que les dessins comptant une seule pièce ou un seul assemblage.\n"
  4738. #~ "\n"
  4739. #~ "Désolé !"
  4740. #~ msgctxt "@item:inlistbox"
  4741. #~ msgid "SolidWorks part file"
  4742. #~ msgstr "Fichier de composant SolidWorks"
  4743. #~ msgctxt "@item:inlistbox"
  4744. #~ msgid "SolidWorks assembly file"
  4745. #~ msgstr "Fichier d'assemblage SolidWorks"
  4746. #~ msgctxt "@item:inlistbox"
  4747. #~ msgid "SolidWorks drawing file"
  4748. #~ msgstr "Fichier de dessin SolidWorks"
  4749. #~ msgctxt "@info:status"
  4750. #~ msgid ""
  4751. #~ "Dear customer,\n"
  4752. #~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n"
  4753. #~ "\n"
  4754. #~ "With kind regards\n"
  4755. #~ " - Thomas Karl Pietrowski"
  4756. #~ msgstr ""
  4757. #~ "Cher client,\n"
  4758. #~ "Nous n'avons pas pu trouver une installation valide de SolidWorks sur votre système. Cela signifie soit que SolidWorks n'est pas installé, soit que vous ne possédez pas de licence valide. Veuillez vous assurer que l'exécution de SolidWorks lui-même fonctionne sans problèmes et / ou contactez votre service IT.\n"
  4759. #~ "\n"
  4760. #~ "Cordialement,\n"
  4761. #~ " - Thomas Karl Pietrowski"
  4762. #~ msgctxt "@info:status"
  4763. #~ msgid ""
  4764. #~ "Dear customer,\n"
  4765. #~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n"
  4766. #~ "\n"
  4767. #~ "With kind regards\n"
  4768. #~ " - Thomas Karl Pietrowski"
  4769. #~ msgstr ""
  4770. #~ "Cher client,\n"
  4771. #~ "Vous exécutez actuellement ce plug-in sur un système d'exploitation autre que Windows. Ce plug-in fonctionne uniquement sous Windows et lorsque SolidWorks est installé avec une licence valide. Veuillez installer ce plug-in sur un poste Windows où SolidWorks est installé.\n"
  4772. #~ "\n"
  4773. #~ "Cordialement,\n"
  4774. #~ " - Thomas Karl Pietrowski"
  4775. #~ msgid "Configure"
  4776. #~ msgstr "Configurer"
  4777. #~ msgid "Installation guide for SolidWorks macro"
  4778. #~ msgstr "Guide d'installation SolidWorks macro"
  4779. #~ msgctxt "@action:button"
  4780. #~ msgid "Disable"
  4781. #~ msgstr "Désactiver"
  4782. #~ msgctxt "@action:tooltip"
  4783. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  4784. #~ msgstr "Ne pas autoriser Cura à envoyer des statistiques d'utilisation anonymes. Vous pouvez modifier ce paramètre dans les préférences."
  4785. #~ msgid "Install"
  4786. #~ msgstr "Installer"
  4787. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  4788. #~ msgstr "Échec de la copie des fichiers plug-ins Siemens NX. Veuillez vérifier votre UGII_USER_DIR. Il n'est pas défini sur un répertoire."
  4789. #~ msgid "Successfully installed Siemens NX Cura plugin."
  4790. #~ msgstr "L'installation du plug-in Siemens NX Cura a réussie."
  4791. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  4792. #~ msgstr "Échec de la copie des fichiers plug-ins Siemens NX. Veuillez vérifier votre UGII_USER_DIR."
  4793. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  4794. #~ msgstr "Échec de l'installation du plug-in Siemens NX. Impossible de définir la variable d'environnement UGII_USER_DIR pour Siemens NX."
  4795. #~ msgctxt "@info:status"
  4796. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  4797. #~ msgstr "Échec de l'obtention de l'identifiant du plug-in au départ de <filename>{0}</filename>"
  4798. #~ msgctxt "@info:tile"
  4799. #~ msgid "Warning"
  4800. #~ msgstr "Avertissement"
  4801. #~ msgctxt "@window:title"
  4802. #~ msgid "Plugin browser"
  4803. #~ msgstr "Navigateur de plug-ins"
  4804. #~ msgctxt "@label"
  4805. #~ msgid "Ultimaker 3"
  4806. #~ msgstr "Ultimaker 3"
  4807. #~ msgctxt "@label"
  4808. #~ msgid "Ultimaker 3 Extended"
  4809. #~ msgstr "Ultimaker 3 Extended"
  4810. #~ msgctxt "@title:window"
  4811. #~ msgid "SolidWorks: Export wizard"
  4812. #~ msgstr "SolidWorks : assistant d'exportation"
  4813. #~ msgctxt "@action:label"
  4814. #~ msgid "Quality:"
  4815. #~ msgstr "Qualité :"
  4816. #~ msgctxt "@option:curaSolidworksStlQuality"
  4817. #~ msgid "Fine (3D-printing)"
  4818. #~ msgstr "Fine (impression 3D)"
  4819. #~ msgctxt "@option:curaSolidworksStlQuality"
  4820. #~ msgid "Coarse (3D-printing)"
  4821. #~ msgstr "Grossière (impression 3D)"
  4822. #~ msgctxt "@option:curaSolidworksStlQuality"
  4823. #~ msgid "Fine (SolidWorks)"
  4824. #~ msgstr "Fine (SolidWorks)"
  4825. #~ msgctxt "@option:curaSolidworksStlQuality"
  4826. #~ msgid "Coarse (SolidWorks)"
  4827. #~ msgstr "Grossière (SolidWorks)"
  4828. #~ msgctxt "@text:window"
  4829. #~ msgid "Show this dialog again"
  4830. #~ msgstr "Afficher de nouveau cette boîte de dialogue"
  4831. #~ msgctxt "@action:button"
  4832. #~ msgid "Continue"
  4833. #~ msgstr "Continuer"
  4834. #~ msgctxt "@action:button"
  4835. #~ msgid "Abort"
  4836. #~ msgstr "Abandonner"
  4837. #~ msgctxt "@title:window"
  4838. #~ msgid "How to install Cura SolidWorks macro"
  4839. #~ msgstr "Modalités d’installation de Cura SolidWorks macro"
  4840. #~ msgctxt "@description:label"
  4841. #~ msgid "Steps:"
  4842. #~ msgstr "Procédure :"
  4843. #~ msgctxt "@action:button"
  4844. #~ msgid ""
  4845. #~ "Open the directory\n"
  4846. #~ "with macro and icon"
  4847. #~ msgstr ""
  4848. #~ "Ouvrez le répertoire\n"
  4849. #~ "contenant la macro et l'icône"
  4850. #~ msgctxt "@description:label"
  4851. #~ msgid "Instructions:"
  4852. #~ msgstr "Instructions :"
  4853. #~ msgctxt "@action:playpause"
  4854. #~ msgid "Play"
  4855. #~ msgstr "Jouer"
  4856. #~ msgctxt "@action:playpause"
  4857. #~ msgid "Pause"
  4858. #~ msgstr "Pause"
  4859. #~ msgctxt "@action:button"
  4860. #~ msgid "Previous Step"
  4861. #~ msgstr "Étape précédente"
  4862. #~ msgctxt "@action:button"
  4863. #~ msgid "Done"
  4864. #~ msgstr "Terminé"
  4865. #~ msgctxt "@action:button"
  4866. #~ msgid "Next Step"
  4867. #~ msgstr "Étape suivante"
  4868. #~ msgctxt "@title:window"
  4869. #~ msgid "SolidWorks plugin: Configuration"
  4870. #~ msgstr "Plug-in SolidWorks : configuration"
  4871. #~ msgctxt "@title:tab"
  4872. #~ msgid "Conversion settings"
  4873. #~ msgstr "Paramètres de conversion"
  4874. #~ msgctxt "@label"
  4875. #~ msgid "First choice:"
  4876. #~ msgstr "Premier choix :"
  4877. #~ msgctxt "@text:menu"
  4878. #~ msgid "Latest installed version (Recommended)"
  4879. #~ msgstr "Dernière version installée (recommandé)"
  4880. #~ msgctxt "@text:menu"
  4881. #~ msgid "Default version"
  4882. #~ msgstr "Version par défaut"
  4883. #~ msgctxt "@label"
  4884. #~ msgid "Show wizard before opening SolidWorks files"
  4885. #~ msgstr "Afficher l'Assistant avant d'ouvrir les fichiers SolidWorks"
  4886. #~ msgctxt "@label"
  4887. #~ msgid "Automatically rotate opened file into normed orientation"
  4888. #~ msgstr "Rotation automatique du fichier ouvert en orientation normalisée"
  4889. #~ msgctxt "@title:tab"
  4890. #~ msgid "Installation(s)"
  4891. #~ msgstr "Installation(s)"
  4892. #~ msgctxt "@label"
  4893. #~ msgid "COM service found"
  4894. #~ msgstr "Service COM trouvé"
  4895. #~ msgctxt "@label"
  4896. #~ msgid "Executable found"
  4897. #~ msgstr "Fichier exécutable trouvé"
  4898. #~ msgctxt "@label"
  4899. #~ msgid "COM starting"
  4900. #~ msgstr "Lancement de COM"
  4901. #~ msgctxt "@label"
  4902. #~ msgid "Revision number"
  4903. #~ msgstr "Numéro de révision"
  4904. #~ msgctxt "@label"
  4905. #~ msgid "Functions available"
  4906. #~ msgstr "Fonctions disponibles"
  4907. #~ msgctxt "@label (%1 is object name)"
  4908. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  4909. #~ msgstr "Le nouveau diamètre du matériau est défini sur %1 mm, ce qui n'est pas compatible avec la machine actuelle. Souhaitez-vous continuer ?"
  4910. #~ msgctxt "@action:menu"
  4911. #~ msgid "Browse plugins..."
  4912. #~ msgstr "Parcourir les plug-ins..."
  4913. #~ msgctxt "@title:menu menubar:toplevel"
  4914. #~ msgid "P&lugins"
  4915. #~ msgstr "&Plug-ins"
  4916. #~ msgctxt "@window:title"
  4917. #~ msgid "Install Plugin"
  4918. #~ msgstr "Installer plug-in"
  4919. #~ msgctxt "description"
  4920. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  4921. #~ msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)"
  4922. #~ msgctxt "description"
  4923. #~ msgid "Manages network connections to Ultimaker 3 printers"
  4924. #~ msgstr "Gère les connexions réseau vers les imprimantes Ultimaker 3"
  4925. #~ msgctxt "description"
  4926. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  4927. #~ msgstr "Donne la possibilité d'ouvrir certains fichiers via SolidWorks. La conversion est ensuite effectuée par ce plug-in et des optimisations supplémentaires."
  4928. #~ msgctxt "name"
  4929. #~ msgid "SolidWorks Integration"
  4930. #~ msgstr "Intégration SolidWorks"
  4931. #~ msgctxt "description"
  4932. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  4933. #~ msgstr "Enregistre automatiquement les Préférences, Machines et Profils après des modifications."
  4934. #~ msgctxt "name"
  4935. #~ msgid "Auto Save"
  4936. #~ msgstr "Enregistrement auto"
  4937. #~ msgctxt "description"
  4938. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  4939. #~ msgstr "Vous aide à installer un bouton « exporter vers Cura » dans Siemens NX."
  4940. #~ msgctxt "name"
  4941. #~ msgid "Siemens NX Integration"
  4942. #~ msgstr "Siemens NX Integration"
  4943. #~ msgctxt "description"
  4944. #~ msgid "Find, manage and install new plugins."
  4945. #~ msgstr "Rechercher, gérer et installer de nouveaux plug-ins."
  4946. #~ msgctxt "name"
  4947. #~ msgid "Plugin Browser"
  4948. #~ msgstr "Navigateur de plug-ins"
  4949. #~ msgctxt "description"
  4950. #~ msgid "Ask the user once if he/she agrees with our license"
  4951. #~ msgstr "Demander à l'utilisateur une fois s'il appose son accord à notre licence"
  4952. #~ msgctxt "description"
  4953. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  4954. #~ msgstr "Fournit les actions de la machine pour les machines Ultimaker (telles que l'assistant de calibration du plateau, sélection des mises à niveau, etc.)"
  4955. #~ msgctxt "@item:inlistbox"
  4956. #~ msgid "GCode File"
  4957. #~ msgstr "Fichier GCode"
  4958. #~ msgctxt "@info:status"
  4959. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  4960. #~ msgstr "Impossible de démarrer une nouvelle tâche car l'imprimante est occupée ou n'est pas connectée."
  4961. #~ msgctxt "@info:title"
  4962. #~ msgid "Printer Unavailable"
  4963. #~ msgstr "Imprimante indisponible"
  4964. #~ msgctxt "@info:status"
  4965. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  4966. #~ msgstr "L'imprimante ne prend pas en charge l'impression par USB car elle utilise UltiGCode."
  4967. #~ msgctxt "@info:title"
  4968. #~ msgid "USB Printing"
  4969. #~ msgstr "Impression par USB"
  4970. #~ msgctxt "@info:status"
  4971. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  4972. #~ msgstr "Impossible de démarrer une nouvelle tâche car l'imprimante ne prend pas en charge l'impression par USB."
  4973. #~ msgctxt "@info"
  4974. #~ msgid "Unable to update firmware because there are no printers connected."
  4975. #~ msgstr "Impossible de mettre à jour le firmware car il n'y a aucune imprimante connectée."
  4976. #~ msgctxt "@info"
  4977. #~ msgid "Could not find firmware required for the printer at %s."
  4978. #~ msgstr "Impossible de trouver le firmware requis pour l'imprimante sur %s."
  4979. #~ msgctxt "@info:title"
  4980. #~ msgid "Printer Firmware"
  4981. #~ msgstr "Firmware de l'imprimante"
  4982. #~ msgctxt "@info:title"
  4983. #~ msgid "Connection status"
  4984. #~ msgstr "Statut de la connexion"
  4985. #~ msgctxt "@info:title"
  4986. #~ msgid "Connection Status"
  4987. #~ msgstr "Statut de la connexion"
  4988. #~ msgctxt "@info:status"
  4989. #~ msgid "Access request was denied on the printer."
  4990. #~ msgstr "La demande d'accès à l'imprimante a été refusée."
  4991. #~ msgctxt "@info:status"
  4992. #~ msgid "Access request failed due to a timeout."
  4993. #~ msgstr "Durée d'attente dépassée. Échec de la demande d'accès."
  4994. #~ msgctxt "@info:status"
  4995. #~ msgid "The connection with the network was lost."
  4996. #~ msgstr "Interruption de connexion au le réseau."
  4997. #~ msgctxt "@info:status"
  4998. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  4999. #~ msgstr "La connexion avec l'imprimante est interrompue. Vérifiez que votre imprimante est connectée."
  5000. #~ msgctxt "@info:status"
  5001. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  5002. #~ msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. L'état actuel de l'imprimante est %s."
  5003. #~ msgctxt "@info:title"
  5004. #~ msgid "Printer Status"
  5005. #~ msgstr "Statut de l'imprimante"
  5006. #~ msgctxt "@info:status"
  5007. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  5008. #~ msgstr "Impossible de démarrer une nouvelle tâche d'impression. Pas de PrintCore inséré dans la fente {0}."
  5009. #~ msgctxt "@info:status"
  5010. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  5011. #~ msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. Pas de matériau chargé dans la fente {0}."
  5012. #~ msgctxt "@label"
  5013. #~ msgid "Not enough material for spool {0}."
  5014. #~ msgstr "Pas suffisamment de matériau pour la bobine {0}."
  5015. #~ msgctxt "@label"
  5016. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5017. #~ msgstr "PrintCore différent (Cura : {0}, Imprimante : {1}) sélectionné pour l'extrudeur {2}"
  5018. #~ msgctxt "@label"
  5019. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  5020. #~ msgstr "Le PrintCore {0} n'est pas correctement calibré. Le calibrage XY doit être effectué sur l'imprimante."
  5021. #~ msgctxt "@info:status"
  5022. #~ msgid "Unable to send data to printer. Is another job still active?"
  5023. #~ msgstr "Impossible d'envoyer les données à l'imprimante. Une autre tâche est-elle toujours active ?"
  5024. #~ msgctxt "@label:MonitorStatus"
  5025. #~ msgid "Print aborted. Please check the printer"
  5026. #~ msgstr "Abandon de l'impression. Vérifiez l'imprimante"
  5027. #~ msgctxt "@label:MonitorStatus"
  5028. #~ msgid "Pausing print..."
  5029. #~ msgstr "Mise en pause de l'impression..."
  5030. #~ msgctxt "@label:MonitorStatus"
  5031. #~ msgid "Resuming print..."
  5032. #~ msgstr "Reprise de l'impression..."
  5033. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  5034. #~ msgstr "L'imprimante n'est pas configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3."
  5035. #~ msgctxt "Count is number of printers."
  5036. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  5037. #~ msgstr "L'imprimante n'est pas configurée pour héberger un groupe de {count} imprimantes connectées Ultimaker 3."
  5038. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  5039. #~ msgstr "{printer_name} a terminé d'imprimer '{job_name}'. Veuillez enlever l'impression et confirmer avoir nettoyé le plateau."
  5040. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  5041. #~ msgstr "{printer_name} est réservé pour imprimer '{job_name}'. Veuillez modifier la configuration de l'imprimante pour qu'elle corresponde à la tâche et commence l'impression."
  5042. #~ msgctxt "@info:status"
  5043. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  5044. #~ msgstr "Impossible d'envoyer une nouvelle tâche d'impression : cette imprimante 3D n'est pas (encore) configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3."
  5045. #~ msgctxt "@info:status"
  5046. #~ msgid "Unable to send print job to group {cluster_name}."
  5047. #~ msgstr "Impossible d'envoyer la tâche d'impression vers le groupe {cluster_name}."
  5048. #~ msgctxt "@info:status"
  5049. #~ msgid "Sent {file_name} to group {cluster_name}."
  5050. #~ msgstr "<filename>{file_name}</filename> envoyé vers le groupe {cluster_name}."
  5051. #~ msgctxt "@action:button"
  5052. #~ msgid "Show print jobs"
  5053. #~ msgstr "Afficher les tâches d'impression"
  5054. #~ msgctxt "@info:tooltip"
  5055. #~ msgid "Opens the print jobs interface in your browser."
  5056. #~ msgstr "Ouvre l'interface d'impression des tâches dans votre navigateur."
  5057. #~ msgctxt "@label Printer name"
  5058. #~ msgid "Unknown"
  5059. #~ msgstr "Inconnu"
  5060. #~ msgctxt "@info:progress"
  5061. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  5062. #~ msgstr "Envoi de <filename>{file_name}</filename> vers le groupe {cluster_name}..."
  5063. #~ msgctxt "@info:status"
  5064. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  5065. #~ msgstr "SolidWorks a signalé des erreurs lors de l'ouverture de votre fichier. Nous vous recommandons de résoudre ces problèmes dans SolidWorks lui-même."
  5066. #~ msgctxt "@info:status"
  5067. #~ msgid ""
  5068. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  5069. #~ "\n"
  5070. #~ " Thanks!."
  5071. #~ msgstr ""
  5072. #~ "Aucun modèle n'a été trouvé à l'intérieur de votre dessin. Pouvez-vous vérifier son contenu de nouveau et vous assurer qu'une pièce ou un assemblage est présent ?\n"
  5073. #~ "\n"
  5074. #~ " Merci !"
  5075. #~ msgctxt "@info:status"
  5076. #~ msgid ""
  5077. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  5078. #~ "\n"
  5079. #~ "Sorry!"
  5080. #~ msgstr ""
  5081. #~ "Plus d'une pièce ou d'un ensemble de pièces ont été trouvés dans votre dessin. Nous ne prenons actuellement en charge que les dessins comptant exactement une pièce ou un ensemble de pièces.\n"
  5082. #~ "\n"
  5083. #~ "Désolé !"
  5084. #~ msgctxt "@item:material"
  5085. #~ msgid "No material loaded"
  5086. #~ msgstr "Pas de matériau chargé"
  5087. #~ msgctxt "@item:material"
  5088. #~ msgid "Unknown material"
  5089. #~ msgstr "Matériau inconnu"
  5090. #~ msgctxt "@info:status Has a cancel button next to it."
  5091. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  5092. #~ msgstr "Le diamètre du matériau sélectionné rend le matériau incompatible avec l'imprimante actuelle."
  5093. #~ msgctxt "@action:button"
  5094. #~ msgid "Undo"
  5095. #~ msgstr "Annuler"
  5096. #~ msgctxt "@action"
  5097. #~ msgid "Undo changing the material diameter."
  5098. #~ msgstr "Annuler la modification du diamètre du matériau."
  5099. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5100. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  5101. #~ msgstr "La machine définie dans le profil <filename>{0}</filename> ne correspond pas à votre machine actuelle ; échec de l'importation."
  5102. #~ msgctxt "@label crash message"
  5103. #~ msgid ""
  5104. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  5105. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  5106. #~ " "
  5107. #~ msgstr ""
  5108. #~ "<p><b>Une erreur fatale s'est produite. Veuillez nous envoyer ce Rapport d'incident pour résoudre le problème</p></b>\n"
  5109. #~ " <p>Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs</p>\n"
  5110. #~ " "
  5111. #~ msgctxt "@label"
  5112. #~ msgid "not yet initialised<br/>"
  5113. #~ msgstr "pas encore initialisé<br/>"
  5114. #~ msgctxt "@label"
  5115. #~ msgid "Gcode flavor"
  5116. #~ msgstr "GCode Parfum"
  5117. #~ msgctxt "@label"
  5118. #~ msgid "Start Gcode"
  5119. #~ msgstr "Début Gcode"
  5120. #~ msgctxt "@tooltip"
  5121. #~ msgid "Gcode commands to be executed at the very start."
  5122. #~ msgstr "Commandes Gcode à exécuter au tout début."
  5123. #~ msgctxt "@label"
  5124. #~ msgid "End Gcode"
  5125. #~ msgstr "Fin Gcode"
  5126. #~ msgctxt "@tooltip"
  5127. #~ msgid "Gcode commands to be executed at the very end."
  5128. #~ msgstr "Commandes Gcode à exécuter tout à la fin."
  5129. #~ msgctxt "@label"
  5130. #~ msgid "Extruder Start Gcode"
  5131. #~ msgstr "Extrudeur Gcode de démarrage"
  5132. #~ msgctxt "@label"
  5133. #~ msgid "Extruder End Gcode"
  5134. #~ msgstr "Extrudeur Gcode de fin"
  5135. #~ msgctxt "@label"
  5136. #~ msgid "Starting firmware update, this may take a while."
  5137. #~ msgstr "Démarrage de la mise à jour du firmware, cela peut prendre un certain temps."
  5138. #~ msgctxt "@label"
  5139. #~ msgid "Unknown error code: %1"
  5140. #~ msgstr "Code erreur inconnue : %1"
  5141. #~ msgctxt "@label Printer name"
  5142. #~ msgid "Ultimaker 3"
  5143. #~ msgstr "Ultimaker 3"
  5144. #~ msgctxt "@label Printer name"
  5145. #~ msgid "Ultimaker 3 Extended"
  5146. #~ msgstr "Ultimaker 3 Extended"
  5147. #~ msgctxt "@label Printer status"
  5148. #~ msgid "Unknown"
  5149. #~ msgstr "Inconnu"
  5150. #~ msgctxt "@title:window"
  5151. #~ msgid "Find & Update plugins"
  5152. #~ msgstr "Rechercher et mettre à jour les plug-ins"
  5153. #~ msgctxt "@label"
  5154. #~ msgid "Here you can find a list of Third Party plugins."
  5155. #~ msgstr "Vous pouvez trouver ici une liste de plug-ins de sources tierces."
  5156. #~ msgctxt "@action:button"
  5157. #~ msgid "Upgrade"
  5158. #~ msgstr "Mettre à niveau"
  5159. #~ msgctxt "@action:button"
  5160. #~ msgid "Download"
  5161. #~ msgstr "Télécharger"
  5162. #~ msgctxt "@info:tooltip"
  5163. #~ msgid "Show caution message in gcode reader."
  5164. #~ msgstr "Afficher le message d'avertissement dans le lecteur gcode."
  5165. #~ msgctxt "@option:check"
  5166. #~ msgid "Caution message in gcode reader"
  5167. #~ msgstr "Message d'avertissement dans lecteur gcode."
  5168. #~ msgctxt "@window:title"
  5169. #~ msgid "Import Profile"
  5170. #~ msgstr "Importer un profil"
  5171. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  5172. #~ msgid "Printer: %1, %2: %3"
  5173. #~ msgstr "Imprimante : %1, %2 : %3"
  5174. #~ msgctxt "@action:label %1 is printer name"
  5175. #~ msgid "Printer: %1"
  5176. #~ msgstr "Imprimante : %1"
  5177. #~ msgctxt "@label"
  5178. #~ msgid "GCode generator"
  5179. #~ msgstr "Générateur GCode"
  5180. #~ msgctxt "@action:menu"
  5181. #~ msgid "Configure setting visiblity..."
  5182. #~ msgstr "Configurer la visibilité des paramètres..."
  5183. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  5184. #~ msgid "Automatic: %1"
  5185. #~ msgstr "Automatique : %1"
  5186. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  5187. #~ msgid "Automatic: %1"
  5188. #~ msgstr "Automatique : %1"
  5189. #~ msgctxt "@info:status"
  5190. #~ msgid "No printer connected"
  5191. #~ msgstr "Aucune imprimante n'est connectée"
  5192. #~ msgctxt "@tooltip"
  5193. #~ msgid "The current temperature of this extruder."
  5194. #~ msgstr "Température actuelle de cet extrudeur."
  5195. #~ msgctxt "@action:menu"
  5196. #~ msgid "Installed plugins..."
  5197. #~ msgstr "Plug-ins installés..."
  5198. #~ msgctxt "@label"
  5199. #~ msgid "Support Extruder"
  5200. #~ msgstr "Extrudeur pour matériau support"
  5201. #~ msgctxt "description"
  5202. #~ msgid "Writes GCode to a file."
  5203. #~ msgstr "Enregistre le GCode dans un fichier."
  5204. #~ msgctxt "name"
  5205. #~ msgid "GCode Writer"
  5206. #~ msgstr "Générateur de GCode"
  5207. #~ msgctxt "name"
  5208. #~ msgid "GCode Profile Reader"
  5209. #~ msgstr "Lecteur de profil GCode"
  5210. #~ msgctxt "@info:status"
  5211. #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!"
  5212. #~ msgstr "Des erreurs sont apparues lors de l'ouverture de votre fichier SolidWorks ! Veuillez vérifier s'il est possible d'ouvrir votre fichier dans SolidWorks sans que cela ne cause de problèmes."
  5213. #~ msgctxt "@info:status"
  5214. #~ msgid "Error while starting %s!"
  5215. #~ msgstr "Erreur lors du lancement de %s !"
  5216. #~ msgctxt "@item:inlistbox"
  5217. #~ msgid "Simulation view"
  5218. #~ msgstr "Vue simulation"
  5219. #~ msgctxt "@info"
  5220. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  5221. #~ msgstr "Cura collecte des statistiques anonymes sur le découpage. Vous pouvez désactiver cette fonctionnalité dans les préférences."
  5222. #~ msgctxt "@action:button"
  5223. #~ msgid "Dismiss"
  5224. #~ msgstr "Ignorer"
  5225. #~ msgctxt "@menuitem"
  5226. #~ msgid "Global"
  5227. #~ msgstr "Global"
  5228. #~ msgctxt "@label crash message"
  5229. #~ msgid ""
  5230. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  5231. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  5232. #~ " "
  5233. #~ msgstr ""
  5234. #~ "<p><b>Une exception fatale s'est produite. Veuillez nous envoyer ce Rapport d'incident pour résoudre le problème</p></b>\n"
  5235. #~ " <p>Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs</p>\n"
  5236. #~ " "
  5237. #~ msgctxt "@label Cura version"
  5238. #~ msgid "<b>Cura version:</b> {version}<br/>"
  5239. #~ msgstr "<b>Version Cura :</b> {version}<br/>"
  5240. #~ msgctxt "@label Platform"
  5241. #~ msgid "<b>Platform:</b> {platform}<br/>"
  5242. #~ msgstr "Plateforme :</b> {platform}<br/>"
  5243. #~ msgctxt "@label Qt version"
  5244. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  5245. #~ msgstr "<b>Version Qt :</b> {qt}<br/>"
  5246. #~ msgctxt "@label PyQt version"
  5247. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  5248. #~ msgstr "<b>Version PyQt :</b> {pyqt}<br/>"
  5249. #~ msgctxt "@label OpenGL"
  5250. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  5251. #~ msgstr "<b>OpenGL :</b> {opengl}<br/>"
  5252. #~ msgctxt "@title:groupbox"
  5253. #~ msgid "Exception traceback"
  5254. #~ msgstr "Retraçage de l'exception"
  5255. #~ msgctxt "@label"
  5256. #~ msgid "Material diameter"
  5257. #~ msgstr "Diamètre du matériau"
  5258. #~ msgctxt "@title:window"
  5259. #~ msgid "Cura SolidWorks Plugin Configuration"
  5260. #~ msgstr "Configuration du plug-in Cura SolidWorks"
  5261. #~ msgctxt "@action:label"
  5262. #~ msgid "Default quality of the exported STL:"
  5263. #~ msgstr "Qualité par défaut du STL exporté :"
  5264. #~ msgctxt "@option:curaSolidworksStlQuality"
  5265. #~ msgid "Always ask"
  5266. #~ msgstr "Toujours demander"
  5267. #~ msgctxt "@option:curaSolidworksStlQuality"
  5268. #~ msgid "Always use Fine quality"
  5269. #~ msgstr "Toujours utiliser la qualité Fine"
  5270. #~ msgctxt "@option:curaSolidworksStlQuality"
  5271. #~ msgid "Always use Coarse quality"
  5272. #~ msgstr "Toujours utiliser la qualité grossière"
  5273. #~ msgctxt "@title:window"
  5274. #~ msgid "Import SolidWorks File as STL..."
  5275. #~ msgstr "Importer le fichier SolidWorks comme STL..."
  5276. #~ msgctxt "@info:tooltip"
  5277. #~ msgid "Quality of the Exported STL"
  5278. #~ msgstr "Qualité du STL exporté"
  5279. #~ msgctxt "@action:label"
  5280. #~ msgid "Quality"
  5281. #~ msgstr "Qualité"
  5282. #~ msgctxt "@option:curaSolidworksStlQuality"
  5283. #~ msgid "Coarse"
  5284. #~ msgstr "Grossière"
  5285. #~ msgctxt "@option:curaSolidworksStlQuality"
  5286. #~ msgid "Fine"
  5287. #~ msgstr "Fine"
  5288. #~ msgctxt "@"
  5289. #~ msgid "No Profile Available"
  5290. #~ msgstr "Aucun profil disponible"
  5291. #~ msgctxt "@label"
  5292. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  5293. #~ msgstr "Ce paramètre est toujours partagé par tous les extrudeurs. Le modifier ici entraînera la modification de la valeur pour tous les extrudeurs."
  5294. #~ msgctxt "@tooltip"
  5295. #~ msgid "<b>Time specification</b><br/><table>"
  5296. #~ msgstr "<b>Spécification de temps</b><br/><table>"
  5297. #~ msgctxt "@action:inmenu menubar:view"
  5298. #~ msgid "&Reset camera position"
  5299. #~ msgstr "&Réinitialiser la position de la caméra"
  5300. #~ msgctxt "@title:menu menubar:file"
  5301. #~ msgid "Save project"
  5302. #~ msgstr "Enregistrer le projet"
  5303. #~ msgctxt "@title:tab"
  5304. #~ msgid "Prepare"
  5305. #~ msgstr "Préparer"
  5306. #~ msgctxt "@title:tab"
  5307. #~ msgid "Monitor"
  5308. #~ msgstr "Surveiller"
  5309. #~ msgctxt "@label"
  5310. #~ msgid "<a href='%1'>Check compatibility</a>"
  5311. #~ msgstr "<a href='%1'>Vérifier la compatibilité</a>"
  5312. #~ msgctxt "description"
  5313. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  5314. #~ msgstr "Donne la possibilité d'ouvrir certains fichiers via SolidWorks. Ces fichiers sont ensuite convertis et chargés dans Cura."
  5315. #~ msgctxt "@label:status"
  5316. #~ msgid "Blocked"
  5317. #~ msgstr "Bloqué"
  5318. #~ msgctxt "@label:status"
  5319. #~ msgid "Can't start print"
  5320. #~ msgstr "Ne peux pas imprimer"
  5321. #~ msgctxt "@action:button"
  5322. #~ msgid "Open Connect.."
  5323. #~ msgstr "Ouvrir Connect"
  5324. #~ msgctxt "@info:title"
  5325. #~ msgid "Print Details"
  5326. #~ msgstr "Les détails d'impression"
  5327. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5328. #~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB."
  5329. #~ msgstr "Pour s'assurer que votre {machine_name} est pourvue des dernières fonctionnalités, il est recommandé de mettre régulièrement à jour le firmware. Cela peut se faire sur la {machine_name} (lorsque connectée au réseau) ou via USB."
  5330. #~ msgctxt "@info:title"
  5331. #~ msgid "Layer View"
  5332. #~ msgstr "Vue en couches"
  5333. #~ msgctxt "@menuitem"
  5334. #~ msgid "Browse plugins"
  5335. #~ msgstr "Parcourir les plug-ins"
  5336. #~ msgctxt "@info:title"
  5337. #~ msgid "Export Details"
  5338. #~ msgstr "Exporter les détails"
  5339. #~ msgctxt "@label"
  5340. #~ msgid ""
  5341. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  5342. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  5343. #~ " "
  5344. #~ msgstr ""
  5345. #~ "<p>Une erreur fatale que nous ne pouvons résoudre s'est produite !</p>\n"
  5346. #~ " <p>Veuillez utiliser les informations ci-dessous pour envoyer un rapport d'erreur à <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  5347. #~ " "
  5348. #~ msgctxt "@action:button"
  5349. #~ msgid "Open Web Page"
  5350. #~ msgstr "Ouvrir la page Web"
  5351. #~ msgctxt "@action:button"
  5352. #~ msgid "Ok"
  5353. #~ msgstr "Ok"
  5354. #~ msgctxt "@label"
  5355. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  5356. #~ msgstr "Cette imprimante n'est pas configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3."
  5357. #~ msgctxt "@label"
  5358. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  5359. #~ msgstr "L'imprimante est configurée pour héberger un groupe de %1 imprimantes connectées Ultimaker 3."
  5360. #~ msgctxt "@label"
  5361. #~ msgid "Completed on: "
  5362. #~ msgstr "Finalisé sur : "
  5363. #~ msgctxt "@info:tooltip"
  5364. #~ msgid "Opens the print jobs page with your default web browser."
  5365. #~ msgstr "Ouvre la page des tâches d'impression avec votre navigateur web."
  5366. #~ msgctxt "@label"
  5367. #~ msgid "PRINTER GROUP"
  5368. #~ msgstr "GROUPE D'IMPRIMANTES"
  5369. #~ msgctxt "@action:warning"
  5370. #~ msgid "Loading a project will clear all models on the buildplate"
  5371. #~ msgstr "Le chargement d'un projet effacera tous les modèles sur le plateau"
  5372. #~ msgctxt "@label"
  5373. #~ msgid ""
  5374. #~ " plugin contains a license.\n"
  5375. #~ "You need to accept this license to install this plugin.\n"
  5376. #~ "Do you agree with the terms below?"
  5377. #~ msgstr ""
  5378. #~ " le plug-in contient une licence.\n"
  5379. #~ "Vous devez approuver cette licence pour installer ce plug-in.\n"
  5380. #~ "Acceptez-vous les clauses ci-dessous ?"
  5381. #~ msgctxt "@label"
  5382. #~ msgid "00h 00min"
  5383. #~ msgstr "00 h 00 min"
  5384. #~ msgctxt "@tooltip"
  5385. #~ msgid "<b>Time information</b>"
  5386. #~ msgstr "<B>Information horaire</b>"
  5387. #~ msgctxt "@description"
  5388. #~ msgid "Print time"
  5389. #~ msgstr "Imprimer l'heure"
  5390. #~ msgctxt "@label"
  5391. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  5392. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  5393. #~ msgctxt "@label"
  5394. #~ msgid "%1m / ~ %2g"
  5395. #~ msgstr "%1m / ~ %2g"
  5396. #~ msgctxt "@title:window"
  5397. #~ msgid "Cura"
  5398. #~ msgstr "Cura"
  5399. #~ msgctxt "@label"
  5400. #~ msgid "<a href='%1'>Check material compatibility</a>"
  5401. #~ msgstr "<a href='%1'>Vérifier la compatibilité du matériau</a>"
  5402. #~ msgctxt "name"
  5403. #~ msgid "UM3 Network Connection (Cluster)"
  5404. #~ msgstr "Connexion au réseau UM3 (Cluster)"
  5405. #~ msgctxt "description"
  5406. #~ msgid "Provides the Layer view."
  5407. #~ msgstr "Permet la vue en couches."
  5408. #~ msgctxt "name"
  5409. #~ msgid "Layer View"
  5410. #~ msgstr "Vue en couches"
  5411. #~ msgctxt "@item:inlistbox"
  5412. #~ msgid "X-Ray"
  5413. #~ msgstr "Rayon-X"
  5414. #~ msgctxt "@label"
  5415. #~ msgid "Doodle3D"
  5416. #~ msgstr "Doodle3D"
  5417. #~ msgctxt "@info:whatsthis"
  5418. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  5419. #~ msgstr "Accepte les G-Code et les envoie par Wi-Fi à une Doodle3D WiFi-Box."
  5420. #~ msgctxt "@item:inmenu"
  5421. #~ msgid "Doodle3D printing"
  5422. #~ msgstr "Impression avec Doodle3D"
  5423. #~ msgctxt "@action:button"
  5424. #~ msgid "Print with Doodle3D"
  5425. #~ msgstr "Imprimer avec Doodle3D"
  5426. #~ msgctxt "@info:tooltip"
  5427. #~ msgid "Print with "
  5428. #~ msgstr "Imprimer avec"
  5429. #~ msgctxt "@title:menu"
  5430. #~ msgid "Doodle3D"
  5431. #~ msgstr "Doodle3D"
  5432. #~ msgctxt "@item:inlistbox"
  5433. #~ msgid "Enable Scan devices..."
  5434. #~ msgstr "Activer les périphériques de numérisation..."
  5435. #~ msgctxt "@info:progress"
  5436. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  5437. #~ msgstr "Enregistrement sur le lecteur amovible <filename>{0}</filename>"
  5438. #~ msgctxt "@info:status"
  5439. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  5440. #~ msgstr "Impossible d'enregistrer <filename>{0}</filename> : <message>{1}</message>"
  5441. #~ msgctxt "@info:status"
  5442. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  5443. #~ msgstr "Gardez à l'esprit que vous devez rouvrir votre fichier SolidWorks manuellement ! Le fait de recharger le modèle ne marchera pas."
  5444. #~ msgctxt "@item:inlistbox"
  5445. #~ msgid "Layers"
  5446. #~ msgstr "Couches"
  5447. #~ msgid "Browse plugins"
  5448. #~ msgstr "Parcourir les plug-ins"
  5449. #~ msgctxt "@item:inmenu"
  5450. #~ msgid "Solid"
  5451. #~ msgstr "Solide"
  5452. #~ msgctxt "@label"
  5453. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  5454. #~ msgstr "Le fichier <filename>{0}</filename> existe déjà. Êtes vous sûr de vouloir le remplacer ?"
  5455. #~ msgctxt "@info:status"
  5456. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  5457. #~ msgstr "Échec de l'exportation du profil vers <filename>{0}</filename> : <message>{1}</message>"
  5458. #~ msgctxt "@info:status"
  5459. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  5460. #~ msgstr "Échec de l'exportation du profil vers <filename>{0}</filename> : Le plug-in du générateur a rapporté une erreur."
  5461. #~ msgctxt "@info:status"
  5462. #~ msgid "Exported profile to <filename>{0}</filename>"
  5463. #~ msgstr "Profil exporté vers <filename>{0}</filename>"
  5464. #~ msgctxt "@info:status"
  5465. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  5466. #~ msgstr "Échec de l'importation du profil depuis le fichier <filename>{0}</filename> : <message>{1}</message>"
  5467. #~ msgctxt "@title:window"
  5468. #~ msgid "Doodle3D Settings"
  5469. #~ msgstr "Paramètres Doodle3D"
  5470. #~ msgctxt "@title:window"
  5471. #~ msgid "Print to: %1"
  5472. #~ msgstr "Imprimer sur : %1"
  5473. #~ msgctxt "@label"
  5474. #~ msgid "Extruder Temperature: %1/%2°C"
  5475. #~ msgstr "Température de l'extrudeuse : %1/%2 °C"
  5476. #~ msgctxt "@label"
  5477. #~ msgid "Bed Temperature: %1/%2°C"
  5478. #~ msgstr "Température du plateau : %1/%2 °C"
  5479. #~ msgctxt "@label"
  5480. #~ msgid "%1"
  5481. #~ msgstr "%1"
  5482. #~ msgctxt "@label"
  5483. #~ msgid "View Mode: Layers"
  5484. #~ msgstr "Mode d’affichage : couches"
  5485. #~ msgctxt "@info:status"
  5486. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  5487. #~ msgstr "Impossible d'importer le matériau <filename>%1</filename> : <message>%2</message>"
  5488. #~ msgctxt "@info:status"
  5489. #~ msgid "Successfully imported material <filename>%1</filename>"
  5490. #~ msgstr "Matériau <filename>%1</filename> importé avec succès"
  5491. #~ msgctxt "@info:status"
  5492. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  5493. #~ msgstr "Échec de l'export de matériau vers <filename>%1</filename> : <message>%2</message>"
  5494. #~ msgctxt "@info:status"
  5495. #~ msgid "Successfully exported material to <filename>%1</filename>"
  5496. #~ msgstr "Matériau exporté avec succès vers <filename>%1</filename>"
  5497. #~ msgctxt "@label"
  5498. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  5499. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  5500. #~ msgctxt "@label"
  5501. #~ msgid "%1 m / ~ %2 g"
  5502. #~ msgstr "%1 m / ~ %2 g"
  5503. #~ msgctxt "@label"
  5504. #~ msgid "Hotend"
  5505. #~ msgstr "Extrémité chaude"
  5506. #~ msgctxt "@action:button"
  5507. #~ msgid "View Mode"
  5508. #~ msgstr "Mode d’affichage"
  5509. #~ msgctxt "@title:tab"
  5510. #~ msgid "Print"
  5511. #~ msgstr "Imprimer"
  5512. #~ msgctxt "@label"
  5513. #~ msgid "0%"
  5514. #~ msgstr "0 %"
  5515. #~ msgctxt "@label"
  5516. #~ msgid "Empty infill will leave your model hollow with low strength."
  5517. #~ msgstr "Un remplissage vide laissera votre modèle creux pour une solidité faible."
  5518. #~ msgctxt "@label"
  5519. #~ msgid "20%"
  5520. #~ msgstr "20 %"
  5521. #~ msgctxt "@label"
  5522. #~ msgid "Light (20%) infill will give your model an average strength."
  5523. #~ msgstr "Un remplissage clairsemé (20 %) donnera à votre modèle une solidité moyenne."
  5524. #~ msgctxt "@label"
  5525. #~ msgid "50%"
  5526. #~ msgstr "50 %"
  5527. #~ msgctxt "@label"
  5528. #~ msgid "Dense (50%) infill will give your model an above average strength."
  5529. #~ msgstr "Un remplissage dense (50 %) donnera à votre modèle une solidité supérieure à la moyenne."
  5530. #~ msgctxt "@label"
  5531. #~ msgid "100%"
  5532. #~ msgstr "100 %"
  5533. #~ msgctxt "@label"
  5534. #~ msgid "Solid (100%) infill will make your model completely solid."
  5535. #~ msgstr "Un remplissage solide (100 %) rendra votre modèle vraiment résistant."
  5536. #~ msgctxt "@label"
  5537. #~ msgid "Gradual"
  5538. #~ msgstr "Graduel"
  5539. #~ msgctxt "description"
  5540. #~ msgid "Provides support for writing X3G files"
  5541. #~ msgstr "Permet l'écriture de fichiers X3G"
  5542. #~ msgctxt "name"
  5543. #~ msgid "X3G Writer"
  5544. #~ msgstr "Générateur X3G"
  5545. #~ msgctxt "@label"
  5546. #~ msgid "Machine Settings action"
  5547. #~ msgstr "Action Paramètres de la machine"
  5548. #~ msgctxt "@info:whatsthis"
  5549. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  5550. #~ msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)"
  5551. #~ msgctxt "@label"
  5552. #~ msgid "X-Ray View"
  5553. #~ msgstr "Vue Rayon-X"
  5554. #~ msgctxt "@info:whatsthis"
  5555. #~ msgid "Provides the X-Ray view."
  5556. #~ msgstr "Permet la vue Rayon-X."
  5557. #~ msgctxt "@label"
  5558. #~ msgid "X3D Reader"
  5559. #~ msgstr "Lecteur X3D"
  5560. #~ msgctxt "@info:whatsthis"
  5561. #~ msgid "Provides support for reading X3D files."
  5562. #~ msgstr "Fournit la prise en charge de la lecture de fichiers X3D."
  5563. #~ msgctxt "@label"
  5564. #~ msgid "GCode Writer"
  5565. #~ msgstr "Générateur de GCode"
  5566. #~ msgctxt "@info:whatsthis"
  5567. #~ msgid "Writes GCode to a file."
  5568. #~ msgstr "Enregistre le GCode dans un fichier."
  5569. #~ msgctxt "@action:button Preceded by 'Ready to'."
  5570. #~ msgid "Print with Doodle3D"
  5571. #~ msgstr "Imprimer avec Doodle3D"
  5572. #~ msgctxt "@info:whatsthis"
  5573. #~ msgid "Shows changes since latest checked version."
  5574. #~ msgstr "Affiche les changements depuis la dernière version."
  5575. #~ msgctxt "@label"
  5576. #~ msgid "Profile flatener"
  5577. #~ msgstr "Aplatisseur de profil"
  5578. #~ msgctxt "@info:whatsthis"
  5579. #~ msgid "Create a flattend quality changes profile."
  5580. #~ msgstr "Créer un profil de changements de qualité aplati."
  5581. #~ msgctxt "@label"
  5582. #~ msgid "USB printing"
  5583. #~ msgstr "Impression par USB"
  5584. #~ msgctxt "@info:whatsthis"
  5585. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  5586. #~ msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware."
  5587. #~ msgctxt "X3G Writer Plugin Description"
  5588. #~ msgid "Writes X3G to a file"
  5589. #~ msgstr "Enregistre le X3G dans un fichier"
  5590. #~ msgctxt "@label"
  5591. #~ msgid "Removable Drive Output Device Plugin"
  5592. #~ msgstr "Plugin de périphérique de sortie sur disque amovible"
  5593. #~ msgctxt "@info:whatsthis"
  5594. #~ msgid "Provides removable drive hotplugging and writing support."
  5595. #~ msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible."
  5596. #~ msgctxt "@info:whatsthis"
  5597. #~ msgid "Manages network connections to Ultimaker 3 printers"
  5598. #~ msgstr "Gère les connexions réseau vers les imprimantes Ultimaker 3"
  5599. #~ msgctxt "@label"
  5600. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5601. #~ msgstr "PrintCore différent (Cura : {0}, Imprimante : {1}) sélectionné pour l'extrudeuse {2}"
  5602. #~ msgctxt "@label"
  5603. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  5604. #~ msgstr "Le PrintCore {0} n'est pas correctement calibré. Le calibrage XY doit être effectué sur l'imprimante."
  5605. #~ msgctxt "@label"
  5606. #~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer."
  5607. #~ msgstr "Les PrintCores et / ou matériaux sur votre imprimante diffèrent de ceux de votre projet actuel. Pour un résultat optimal, découpez toujours pour les PrintCores et matériaux insérés dans votre imprimante."
  5608. #~ msgctxt "@label"
  5609. #~ msgid "Post Processing"
  5610. #~ msgstr "Post-traitement"
  5611. #~ msgctxt "Description of plugin"
  5612. #~ msgid "Extension that allows for user created scripts for post processing"
  5613. #~ msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur"
  5614. #~ msgctxt "@label"
  5615. #~ msgid "Auto Save"
  5616. #~ msgstr "Enregistrement auto"
  5617. #~ msgctxt "@info:whatsthis"
  5618. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  5619. #~ msgstr "Enregistre automatiquement les Préférences, Machines et Profils après des modifications."
  5620. #~ msgctxt "@label"
  5621. #~ msgid "Slice info"
  5622. #~ msgstr "Information sur le découpage"
  5623. #~ msgctxt "@info:whatsthis"
  5624. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  5625. #~ msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences."
  5626. #~ msgctxt "@info"
  5627. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  5628. #~ msgstr "Cura collecte des statistiques anonymes sur le découpage. Vous pouvez désactiver cette fonctionnalité dans les préférences"
  5629. #~ msgctxt "@label"
  5630. #~ msgid "Material Profiles"
  5631. #~ msgstr "Profils matériels"
  5632. #~ msgctxt "@info:whatsthis"
  5633. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  5634. #~ msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML."
  5635. #~ msgctxt "@label"
  5636. #~ msgid "Legacy Cura Profile Reader"
  5637. #~ msgstr "Lecteur de profil Cura antérieur"
  5638. #~ msgctxt "@info:whatsthis"
  5639. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  5640. #~ msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures."
  5641. #~ msgctxt "@label"
  5642. #~ msgid "GCode Profile Reader"
  5643. #~ msgstr "Lecteur de profil GCode"
  5644. #~ msgctxt "@info:whatsthis"
  5645. #~ msgid "Provides support for importing profiles from g-code files."
  5646. #~ msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code."
  5647. #~ msgctxt "@label"
  5648. #~ msgid "Layer View"
  5649. #~ msgstr "Vue en couches"
  5650. #~ msgctxt "@info:whatsthis"
  5651. #~ msgid "Provides the Layer view."
  5652. #~ msgstr "Permet la vue en couches."
  5653. #~ msgctxt "@label"
  5654. #~ msgid "Version Upgrade 2.5 to 2.6"
  5655. #~ msgstr "Mise à niveau de 2.5 vers 2.6"
  5656. #~ msgctxt "@info:whatsthis"
  5657. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  5658. #~ msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6."
  5659. #~ msgctxt "@label"
  5660. #~ msgid "Version Upgrade 2.1 to 2.2"
  5661. #~ msgstr "Mise à niveau vers 2.1 vers 2.2"
  5662. #~ msgctxt "@info:whatsthis"
  5663. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  5664. #~ msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2."
  5665. #~ msgctxt "@label"
  5666. #~ msgid "Version Upgrade 2.2 to 2.4"
  5667. #~ msgstr "Mise à niveau de 2.2 vers 2.4"
  5668. #~ msgctxt "@info:whatsthis"
  5669. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  5670. #~ msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4."
  5671. #~ msgctxt "@label"
  5672. #~ msgid "Image Reader"
  5673. #~ msgstr "Lecteur d'images"
  5674. #~ msgctxt "@info:whatsthis"
  5675. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  5676. #~ msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D."
  5677. #~ msgctxt "@label"
  5678. #~ msgid "CuraEngine Backend"
  5679. #~ msgstr "Système CuraEngine"
  5680. #~ msgctxt "@info:whatsthis"
  5681. #~ msgid "Provides the link to the CuraEngine slicing backend."
  5682. #~ msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine."
  5683. #~ msgctxt "@label"
  5684. #~ msgid "Per Model Settings Tool"
  5685. #~ msgstr "Outil de paramètres par modèle"
  5686. #~ msgctxt "@info:whatsthis"
  5687. #~ msgid "Provides the Per Model Settings."
  5688. #~ msgstr "Fournit les paramètres par modèle."
  5689. #~ msgctxt "@label"
  5690. #~ msgid "3MF Reader"
  5691. #~ msgstr "Lecteur 3MF"
  5692. #~ msgctxt "@info:whatsthis"
  5693. #~ msgid "Provides support for reading 3MF files."
  5694. #~ msgstr "Fournit la prise en charge de la lecture de fichiers 3MF."
  5695. #~ msgctxt "@label"
  5696. #~ msgid "Solid View"
  5697. #~ msgstr "Vue solide"
  5698. #~ msgctxt "@info:whatsthis"
  5699. #~ msgid "Provides a normal solid mesh view."
  5700. #~ msgstr "Affiche une vue en maille solide normale."
  5701. #~ msgctxt "@label"
  5702. #~ msgid "G-code Reader"
  5703. #~ msgstr "Lecteur G-Code"
  5704. #~ msgctxt "@info:whatsthis"
  5705. #~ msgid "Allows loading and displaying G-code files."
  5706. #~ msgstr "Permet le chargement et l'affichage de fichiers G-Code."
  5707. #~ msgctxt "@label"
  5708. #~ msgid "Cura Profile Writer"
  5709. #~ msgstr "Générateur de profil Cura"
  5710. #~ msgctxt "@info:whatsthis"
  5711. #~ msgid "Provides support for exporting Cura profiles."
  5712. #~ msgstr "Fournit la prise en charge de l'exportation de profils Cura."
  5713. #~ msgctxt "@label"
  5714. #~ msgid "3MF Writer"
  5715. #~ msgstr "Générateur 3MF"
  5716. #~ msgctxt "@info:whatsthis"
  5717. #~ msgid "Provides support for writing 3MF files."
  5718. #~ msgstr "Permet l'écriture de fichiers 3MF"
  5719. #~ msgctxt "@label"
  5720. #~ msgid "Ultimaker machine actions"
  5721. #~ msgstr "Actions de la machine Ultimaker"
  5722. #~ msgctxt "@info:whatsthis"
  5723. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  5724. #~ msgstr "Fournit les actions de la machine pour les machines Ultimaker (telles que l'assistant de calibration du plateau, sélection des mises à niveau, etc.)"
  5725. #~ msgctxt "@label"
  5726. #~ msgid "Cura Profile Reader"
  5727. #~ msgstr "Lecteur de profil Cura"
  5728. #~ msgctxt "@info:whatsthis"
  5729. #~ msgid "Provides support for importing Cura profiles."
  5730. #~ msgstr "Fournit la prise en charge de l'importation de profils Cura."
  5731. #~ msgctxt "@info"
  5732. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  5733. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  5734. #~ msgctxt "@label"
  5735. #~ msgid "Build Plate Shape"
  5736. #~ msgstr "Forme du plateau"
  5737. #~ msgctxt "@option:check"
  5738. #~ msgid "Machine Center is Zero"
  5739. #~ msgstr "Le centre de la machine est zéro"
  5740. #~ msgctxt "@option:check"
  5741. #~ msgid "Heated Bed"
  5742. #~ msgstr "Plateau chauffant"
  5743. #~ msgctxt "@label"
  5744. #~ msgid "GCode Flavor"
  5745. #~ msgstr "GCode Parfum"
  5746. #~ msgctxt "@label"
  5747. #~ msgid "Material Diameter"
  5748. #~ msgstr "Diamètre du matériau"
  5749. #~ msgctxt "@label"
  5750. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  5751. #~ msgstr "Si votre imprimante n'apparaît pas dans la liste, lisez le <a href='%1'>guide de dépannage de l'impression en réseau</a>"
  5752. #~ msgctxt "@item:inlistbox"
  5753. #~ msgid "Ultimaker"
  5754. #~ msgstr "Ultimaker"
  5755. #~ msgctxt "@label"
  5756. #~ msgid "Support library for scientific computing "
  5757. #~ msgstr "Prise en charge de la bibliothèque pour le calcul scientifique "
  5758. #~ msgctxt "@tooltip"
  5759. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  5760. #~ msgstr "<b>Configuration de l'impression</b><br/><br/>Modifier ou réviser les paramètres pour la tâche d'impression active."
  5761. #~ msgctxt "@tooltip"
  5762. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  5763. #~ msgstr "<b>Moniteur de l'imprimante</b><br/><br/>Surveiller l'état de l'imprimante connectée et la progression de la tâche d'impression."
  5764. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  5765. #~ msgid "Automatic: %1"
  5766. #~ msgstr "Automatique : %1"
  5767. #~ msgctxt "@label:PrintjobStatus"
  5768. #~ msgid "Please load a 3d model"
  5769. #~ msgstr "Veuillez charger un modèle 3D"
  5770. #~ msgctxt "@label"
  5771. #~ msgid "Print Selected Model with %1"
  5772. #~ msgid_plural "Print Selected Models With %1"
  5773. #~ msgstr[0] "Imprimer le modèle sélectionné avec %1"
  5774. #~ msgstr[1] "Imprimer les modèles sélectionnés avec %1"
  5775. #~ msgctxt "@info:status"
  5776. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  5777. #~ msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. Pas de PrinterCore inséré dans la fente {0}."
  5778. #~ msgctxt "@label"
  5779. #~ msgid "Version Upgrade 2.4 to 2.5"
  5780. #~ msgstr "Mise à niveau de 2.4 vers 2.5"
  5781. #~ msgctxt "@info:whatsthis"
  5782. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  5783. #~ msgstr "Configurations des mises à niveau de Cura 2.4 vers Cura 2.5."
  5784. #~ msgctxt "@info:status"
  5785. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  5786. #~ msgstr "Impossible de trouver un profil de qualité pour cette combinaison. Les paramètres par défaut seront utilisés à la place."
  5787. #~ msgctxt "@title:window"
  5788. #~ msgid "Oops!"
  5789. #~ msgstr "Oups !"
  5790. #~ msgctxt "@label"
  5791. #~ msgid ""
  5792. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  5793. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  5794. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  5795. #~ " "
  5796. #~ msgstr ""
  5797. #~ "<p>Une erreur fatale que nous ne pouvons résoudre s'est produite !</p>\n"
  5798. #~ " <p>Nous espérons que cette image d'un chaton vous aidera à vous remettre du choc.</p>\n"
  5799. #~ " <p>Veuillez utiliser les informations ci-dessous pour envoyer un rapport d'erreur à <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>"
  5800. #~ msgctxt "@label"
  5801. #~ msgid "Please enter the correct settings for your printer below:"
  5802. #~ msgstr "Indiquez les bons paramètres pour votre imprimante ci-dessous :"
  5803. #~ msgctxt "@label"
  5804. #~ msgid "Extruder %1"
  5805. #~ msgstr "Extrudeur %1"
  5806. #~ msgctxt "@label Followed by extruder selection drop-down."
  5807. #~ msgid "Print model with"
  5808. #~ msgstr "Imprimer le modèle avec"
  5809. #~ msgctxt "@label"
  5810. #~ msgid "You will need to restart the application for language changes to have effect."
  5811. #~ msgstr "Vous devez redémarrer l'application pour que les changements de langue prennent effet."
  5812. #~ msgctxt "@info:tooltip"
  5813. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  5814. #~ msgstr "Bouge la caméra afin que le modèle sélectionné se trouve au centre de la vue."
  5815. #~ msgctxt "@action:inmenu menubar:edit"
  5816. #~ msgid "Delete &Selection"
  5817. #~ msgstr "&Supprimer la sélection"
  5818. #~ msgctxt "@action:inmenu menubar:file"
  5819. #~ msgid "&Open File..."
  5820. #~ msgstr "&Ouvrir un fichier..."
  5821. #~ msgctxt "@action:inmenu menubar:file"
  5822. #~ msgid "&Open Project..."
  5823. #~ msgstr "&Ouvrir un projet..."
  5824. #~ msgctxt "@title:window"
  5825. #~ msgid "Multiply Model"
  5826. #~ msgstr "Multiplier le modèle"
  5827. #~ msgctxt "@title:menu menubar:file"
  5828. #~ msgid "Save &All"
  5829. #~ msgstr "Enregistrer &tout"
  5830. #~ msgctxt "@title:window"
  5831. #~ msgid "Open file"
  5832. #~ msgstr "Ouvrir un fichier"
  5833. #~ msgctxt "@title:window"
  5834. #~ msgid "Open workspace"
  5835. #~ msgstr "Ouvrir l'espace de travail"
  5836. #~ msgctxt "@label"
  5837. #~ msgid "Hollow"
  5838. #~ msgstr "Creux"
  5839. #~ msgctxt "@label"
  5840. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  5841. #~ msgstr "L'absence de remplissage (0 %) laissera votre modèle creux pour une solidité faible"
  5842. #~ msgctxt "@label"
  5843. #~ msgid "Light"
  5844. #~ msgstr "Clairsemé"
  5845. #~ msgctxt "@label"
  5846. #~ msgid "Light (20%) infill will give your model an average strength"
  5847. #~ msgstr "Un remplissage clairsemé (20 %) donnera à votre modèle une solidité moyenne"
  5848. #~ msgctxt "@label"
  5849. #~ msgid "Dense"
  5850. #~ msgstr "Dense"
  5851. #~ msgctxt "@label"
  5852. #~ msgid "Dense (50%) infill will give your model an above average strength"
  5853. #~ msgstr "Un remplissage dense (50 %) donnera à votre modèle une solidité supérieure à la moyenne"
  5854. #~ msgctxt "@label"
  5855. #~ msgid "Solid"
  5856. #~ msgstr "Solide"
  5857. #~ msgctxt "@label"
  5858. #~ msgid "Solid (100%) infill will make your model completely solid"
  5859. #~ msgstr "Un remplissage solide (100 %) rendra votre modèle vraiment résistant"
  5860. #~ msgctxt "@label"
  5861. #~ msgid "Enable Support"
  5862. #~ msgstr "Activer les supports"
  5863. #~ msgctxt "@label"
  5864. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  5865. #~ msgstr "Active les structures de support. Ces structures soutiennent les modèles présentant d'importants porte-à-faux."
  5866. #~ msgctxt "@label"
  5867. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  5868. #~ msgstr "Besoin d'aide pour améliorer vos impressions ? Lisez les <a href='%1'>Guides de dépannage Ultimaker</a>"
  5869. #~ msgctxt "@info:status"
  5870. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  5871. #~ msgstr "Connecté sur le réseau à {0}. Veuillez approuver la demande d'accès sur l'imprimante."
  5872. #~ msgctxt "@info:status"
  5873. #~ msgid "Connected over the network to {0}."
  5874. #~ msgstr "Connecté sur le réseau à {0}."
  5875. #~ msgctxt "@info:status"
  5876. #~ msgid "Connected over the network to {0}. No access to control the printer."
  5877. #~ msgstr "Connecté sur le réseau à {0}. Pas d'accès pour commander l'imprimante."
  5878. #~ msgctxt "@info:status"
  5879. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  5880. #~ msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. Vérifiez l'imprimante."
  5881. #~ msgctxt "@label"
  5882. #~ msgid "You made changes to the following setting(s)/override(s):"
  5883. #~ msgstr "Vous avez modifié le(s) paramètre(s) / forçage(s) suivant(s) :"
  5884. #~ msgctxt "@window:title"
  5885. #~ msgid "Switched profiles"
  5886. #~ msgstr "Profils échangés"
  5887. #~ msgctxt "@label"
  5888. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  5889. #~ msgstr "Voulez-vous transférer le(s) %d paramètre(s) / forçage(s) modifié(s) sur ce profil ?"
  5890. #~ msgctxt "@label"
  5891. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  5892. #~ msgstr "Si vous transférez vos paramètres, ils écraseront les paramètres dans le profil. Si vous ne transférez pas ces paramètres, ils seront perdus."
  5893. #~ msgctxt "@label"
  5894. #~ msgid "Cost per Meter (Approx.)"
  5895. #~ msgstr "Coût par mètre (env.)"
  5896. #~ msgctxt "@label"
  5897. #~ msgid "%1/m"
  5898. #~ msgstr "%1/m"
  5899. #~ msgctxt "@info:tooltip"
  5900. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  5901. #~ msgstr "Afficher les 5 couches supérieures en vue en couches ou seulement la couche du dessus. Le rendu de 5 couches prend plus de temps mais peut fournir davantage d'informations."
  5902. #~ msgctxt "@action:button"
  5903. #~ msgid "Display five top layers in layer view"
  5904. #~ msgstr "Afficher les cinq couches supérieures en vue en couches"
  5905. #~ msgctxt "@info:tooltip"
  5906. #~ msgid "Should only the top layers be displayed in layerview?"
  5907. #~ msgstr "Seules les couches supérieures doivent-elles être affichées en vue en couches ?"
  5908. #~ msgctxt "@option:check"
  5909. #~ msgid "Only display top layer(s) in layer view"
  5910. #~ msgstr "Afficher uniquement la (les) couche(s) supérieure(s) en vue en couches"
  5911. #~ msgctxt "@label"
  5912. #~ msgid "Opening files"
  5913. #~ msgstr "Ouverture des fichiers"
  5914. #~ msgctxt "@label"
  5915. #~ msgid "Printer Monitor"
  5916. #~ msgstr "Moniteur de l'imprimante"
  5917. #~ msgctxt "@label"
  5918. #~ msgid "Temperatures"
  5919. #~ msgstr "Températures"
  5920. #~ msgctxt "@label:PrintjobStatus"
  5921. #~ msgid "Preparing to slice..."
  5922. #~ msgstr "Préparation de la découpe..."
  5923. #~ msgctxt "@window:title"
  5924. #~ msgid "Changes on the Printer"
  5925. #~ msgstr "Modifications sur l'imprimante"
  5926. #~ msgctxt "@action:inmenu"
  5927. #~ msgid "&Duplicate Model"
  5928. #~ msgstr "&Dupliquer le modèle"
  5929. #~ msgctxt "@label"
  5930. #~ msgid "Helper Parts:"
  5931. #~ msgstr "Pièces d'aide :"
  5932. #~ msgctxt "@label"
  5933. #~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  5934. #~ msgstr "Activez l'impression des structures de support. Cela créera des structures de support sous le modèle afin de l'empêcher de s'affaisser ou de s'imprimer dans les airs."
  5935. #~ msgctxt "@label"
  5936. #~ msgid "Don't print support"
  5937. #~ msgstr "Ne pas imprimer le support"
  5938. #~ msgctxt "@label"
  5939. #~ msgid "Print support using %1"
  5940. #~ msgstr "Imprimer le support à l'aide de %1"
  5941. #~ msgctxt "@label:listbox"
  5942. #~ msgid "Printer:"
  5943. #~ msgstr "Imprimante :"
  5944. #~ msgctxt "@info:status"
  5945. #~ msgid "Successfully imported profiles {0}"
  5946. #~ msgstr "Importation des profils {0} réussie"
  5947. #~ msgctxt "@label"
  5948. #~ msgid "Scripts"
  5949. #~ msgstr "Scripts"
  5950. #~ msgctxt "@label"
  5951. #~ msgid "Active Scripts"
  5952. #~ msgstr "Scripts actifs"
  5953. #~ msgctxt "@label"
  5954. #~ msgid "Done"
  5955. #~ msgstr "Terminé"
  5956. #~ msgctxt "@item:inlistbox"
  5957. #~ msgid "English"
  5958. #~ msgstr "Anglais"
  5959. #~ msgctxt "@item:inlistbox"
  5960. #~ msgid "Finnish"
  5961. #~ msgstr "Finnois"
  5962. #~ msgctxt "@item:inlistbox"
  5963. #~ msgid "French"
  5964. #~ msgstr "Français"
  5965. #~ msgctxt "@item:inlistbox"
  5966. #~ msgid "German"
  5967. #~ msgstr "Allemand"
  5968. #~ msgctxt "@item:inlistbox"
  5969. #~ msgid "Italian"
  5970. #~ msgstr "Italien"
  5971. #~ msgctxt "@item:inlistbox"
  5972. #~ msgid "Dutch"
  5973. #~ msgstr "Néerlandais"
  5974. #~ msgctxt "@item:inlistbox"
  5975. #~ msgid "Spanish"
  5976. #~ msgstr "Espagnol"
  5977. #~ msgctxt "@label"
  5978. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  5979. #~ msgstr "Voulez-vous modifier les PrintCores et matériaux dans Cura pour correspondre à votre imprimante ?"
  5980. #~ msgctxt "@label:"
  5981. #~ msgid "Print Again"
  5982. #~ msgstr "Imprimer à nouveau"