cura.po 375 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977
  1. # Cura
  2. # Copyright (C) 2021 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 4.13\n"
  8. "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
  9. "POT-Creation-Date: 2021-12-10 12:00+0100\n"
  10. "PO-Revision-Date: 2021-09-07 07:48+0200\n"
  11. "Last-Translator: Lionbridge <info@lionbridge.com>\n"
  12. "Language-Team: French <info@lionbridge.com>, French <info@bothof.nl>\n"
  13. "Language: fr_FR\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=2; plural=(n > 1);\n"
  18. "X-Generator: Poedit 3.0\n"
  19. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115
  20. msgctxt "@info:backup_failed"
  21. msgid "Could not create archive from user data directory: {}"
  22. msgstr "Impossible de créer une archive à partir du répertoire de données de l'utilisateur : {}"
  23. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122
  24. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159
  25. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118
  26. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126
  27. msgctxt "@info:title"
  28. msgid "Backup"
  29. msgstr "Sauvegarde"
  30. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134
  31. msgctxt "@info:backup_failed"
  32. msgid "Tried to restore a Cura backup without having proper data or meta data."
  33. msgstr "A essayé de restaurer une sauvegarde Cura sans disposer de données ou de métadonnées appropriées."
  34. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145
  35. msgctxt "@info:backup_failed"
  36. msgid "Tried to restore a Cura backup that is higher than the current version."
  37. msgstr "A essayé de restaurer une sauvegarde Cura supérieure à la version actuelle."
  38. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158
  39. msgctxt "@info:backup_failed"
  40. msgid "The following error occurred while trying to restore a Cura backup:"
  41. msgstr "L'erreur suivante s'est produite lors de la restauration d'une sauvegarde Cura :"
  42. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66
  43. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55
  44. msgctxt "@action:button"
  45. msgid "Please sync the material profiles with your printers before starting to print."
  46. msgstr "Veuillez synchroniser les profils de matériaux avec vos imprimantes avant de commencer à imprimer."
  47. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67
  48. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56
  49. msgctxt "@action:button"
  50. msgid "New materials installed"
  51. msgstr "Nouveaux matériaux installés"
  52. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74
  53. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63
  54. msgctxt "@action:button"
  55. msgid "Sync materials with printers"
  56. msgstr "Synchroniser les matériaux"
  57. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82
  58. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71
  59. #: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80
  60. msgctxt "@action:button"
  61. msgid "Learn more"
  62. msgstr "En savoir plus"
  63. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135
  64. msgctxt "@message:text"
  65. msgid "Could not save material archive to {}:"
  66. msgstr "Impossible d'enregistrer l'archive du matériau dans {} :"
  67. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136
  68. msgctxt "@message:title"
  69. msgid "Failed to save material archive"
  70. msgstr "Échec de l'enregistrement de l'archive des matériaux"
  71. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188
  72. msgctxt "@text"
  73. msgid "Unknown error."
  74. msgstr "Erreur inconnue."
  75. #: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99
  76. msgctxt "@info:status"
  77. 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."
  78. 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."
  79. #: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102
  80. msgctxt "@info:title"
  81. msgid "Build Volume"
  82. msgstr "Volume d'impression"
  83. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143
  84. #, python-brace-format
  85. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  86. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  87. msgstr "Voulez-vous vraiment supprimer l'objet {0} ? Cette action est irréversible !"
  88. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219
  89. msgctxt "@menuitem"
  90. msgid "Not overridden"
  91. msgstr "Pas écrasé"
  92. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  93. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361
  94. #: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614
  95. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
  96. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
  97. msgctxt "@label"
  98. msgid "Unknown"
  99. msgstr "Inconnu"
  100. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  101. msgctxt "@label"
  102. msgid "The printer(s) below cannot be connected because they are part of a group"
  103. msgstr "Les imprimantes ci-dessous ne peuvent pas être connectées car elles font partie d'un groupe"
  104. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  105. msgctxt "@label"
  106. msgid "Available networked printers"
  107. msgstr "Imprimantes en réseau disponibles"
  108. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338
  109. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  110. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11
  111. msgctxt "@label"
  112. msgid "Default"
  113. msgstr "Default"
  114. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390
  115. msgctxt "@label"
  116. msgid "Custom profiles"
  117. msgstr "Personnaliser les profils"
  118. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425
  119. #, python-brace-format
  120. msgctxt "@item:inlistbox"
  121. msgid "All Supported Types ({0})"
  122. msgstr "Tous les types supportés ({0})"
  123. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426
  124. msgctxt "@item:inlistbox"
  125. msgid "All Files (*)"
  126. msgstr "Tous les fichiers (*)"
  127. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  128. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14
  129. msgctxt "@label"
  130. msgid "Visual"
  131. msgstr "Visuel"
  132. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  133. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15
  134. msgctxt "@text"
  135. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  136. msgstr "Le profil visuel est conçu pour imprimer des prototypes et des modèles visuels dans le but d'obtenir une qualité visuelle et de surface élevée."
  137. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  138. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18
  139. msgctxt "@label"
  140. msgid "Engineering"
  141. msgstr "Engineering"
  142. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  143. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19
  144. msgctxt "@text"
  145. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  146. msgstr "Le profil d'ingénierie est conçu pour imprimer des prototypes fonctionnels et des pièces finales dans le but d'obtenir une meilleure précision et des tolérances plus étroites."
  147. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  148. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22
  149. msgctxt "@label"
  150. msgid "Draft"
  151. msgstr "Ébauche"
  152. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  153. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23
  154. msgctxt "@text"
  155. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  156. msgstr "L'ébauche du profil est conçue pour imprimer les prototypes initiaux et la validation du concept dans le but de réduire considérablement le temps d'impression."
  157. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288
  158. msgctxt "@label"
  159. msgid "Custom Material"
  160. msgstr "Matériau personnalisé"
  161. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289
  162. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346
  163. msgctxt "@label"
  164. msgid "Custom"
  165. msgstr "Personnalisé"
  166. #: /home/clamboo/Desktop/Cura/cura/API/Account.py:190
  167. msgctxt "@info:title"
  168. msgid "Login failed"
  169. msgstr "La connexion a échoué"
  170. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  171. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
  172. msgctxt "@info:status"
  173. msgid "Finding new location for objects"
  174. msgstr "Recherche d'un nouvel emplacement pour les objets"
  175. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  176. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
  177. msgctxt "@info:title"
  178. msgid "Finding Location"
  179. msgstr "Recherche d'emplacement"
  180. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41
  181. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
  182. #: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99
  183. msgctxt "@info:status"
  184. msgid "Unable to find a location within the build volume for all objects"
  185. msgstr "Impossible de trouver un emplacement dans le volume d'impression pour tous les objets"
  186. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  187. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152
  188. msgctxt "@info:title"
  189. msgid "Can't Find Location"
  190. msgstr "Impossible de trouver un emplacement"
  191. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104
  192. msgctxt "@text:error"
  193. msgid "Failed to create archive of materials to sync with printers."
  194. msgstr "Échec de la création de l'archive des matériaux à synchroniser avec les imprimantes."
  195. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111
  196. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165
  197. msgctxt "@text:error"
  198. msgid "Failed to load the archive of materials to sync it with printers."
  199. msgstr "Impossible de charger l'archive des matériaux pour la synchroniser avec les imprimantes."
  200. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143
  201. msgctxt "@text:error"
  202. msgid "The response from Digital Factory appears to be corrupted."
  203. msgstr "La réponse de Digital Factory semble être corrompue."
  204. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147
  205. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151
  206. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155
  207. msgctxt "@text:error"
  208. msgid "The response from Digital Factory is missing important information."
  209. msgstr "Il manque des informations importantes dans la réponse de Digital Factory."
  210. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218
  211. msgctxt "@text:error"
  212. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  213. msgstr "Échec de la connexion à Digital Factory pour synchroniser les matériaux avec certaines imprimantes."
  214. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232
  215. msgctxt "@text:error"
  216. msgid "Failed to connect to Digital Factory."
  217. msgstr "Échec de la connexion à Digital Factory."
  218. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530
  219. msgctxt "@info:progress"
  220. msgid "Loading machines..."
  221. msgstr "Chargement des machines..."
  222. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537
  223. msgctxt "@info:progress"
  224. msgid "Setting up preferences..."
  225. msgstr "Configuration des préférences..."
  226. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675
  227. msgctxt "@info:progress"
  228. msgid "Initializing Active Machine..."
  229. msgstr "Initialisation de la machine active..."
  230. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811
  231. msgctxt "@info:progress"
  232. msgid "Initializing machine manager..."
  233. msgstr "Initialisation du gestionnaire de machine..."
  234. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825
  235. msgctxt "@info:progress"
  236. msgid "Initializing build volume..."
  237. msgstr "Initialisation du volume de fabrication..."
  238. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896
  239. msgctxt "@info:progress"
  240. msgid "Setting up scene..."
  241. msgstr "Préparation de la scène..."
  242. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932
  243. msgctxt "@info:progress"
  244. msgid "Loading interface..."
  245. msgstr "Chargement de l'interface..."
  246. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937
  247. msgctxt "@info:progress"
  248. msgid "Initializing engine..."
  249. msgstr "Initialisation du moteur..."
  250. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254
  251. #, python-format
  252. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  253. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  254. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  255. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807
  256. #, python-brace-format
  257. msgctxt "@info:status"
  258. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  259. msgstr "Un seul fichier G-Code peut être chargé à la fois. Importation de {0} sautée"
  260. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809
  261. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217
  262. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177
  263. msgctxt "@info:title"
  264. msgid "Warning"
  265. msgstr "Avertissement"
  266. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819
  267. #, python-brace-format
  268. msgctxt "@info:status"
  269. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  270. msgstr "Impossible d'ouvrir un autre fichier si le G-Code est en cours de chargement. Importation de {0} sautée"
  271. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821
  272. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156
  273. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166
  274. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141
  275. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  276. msgctxt "@info:title"
  277. msgid "Error"
  278. msgstr "Erreur"
  279. #: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67
  280. #: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286
  281. msgctxt "@action:button"
  282. msgid "Skip"
  283. msgstr "Passer"
  284. #: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72
  285. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
  286. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
  287. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485
  288. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174
  289. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127
  290. msgctxt "@action:button"
  291. msgid "Close"
  292. msgstr "Fermer"
  293. #: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57
  294. #: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277
  295. msgctxt "@action:button"
  296. msgid "Next"
  297. msgstr "Suivant"
  298. #: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290
  299. #: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26
  300. msgctxt "@action:button"
  301. msgid "Finish"
  302. msgstr "Fin"
  303. #: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17
  304. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
  305. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48
  306. msgctxt "@action:button"
  307. msgid "Add"
  308. msgstr "Ajouter"
  309. #: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33
  310. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
  311. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234
  312. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  313. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
  314. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
  315. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44
  316. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
  317. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
  318. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
  319. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293
  320. msgctxt "@action:button"
  321. msgid "Cancel"
  322. msgstr "Annuler"
  323. #: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69
  324. #, python-brace-format
  325. msgctxt "@label"
  326. msgid "Group #{group_nr}"
  327. msgstr "Groupe nº {group_nr}"
  328. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85
  329. msgctxt "@tooltip"
  330. msgid "Outer Wall"
  331. msgstr "Paroi externe"
  332. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86
  333. msgctxt "@tooltip"
  334. msgid "Inner Walls"
  335. msgstr "Parois internes"
  336. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87
  337. msgctxt "@tooltip"
  338. msgid "Skin"
  339. msgstr "Couche extérieure"
  340. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88
  341. msgctxt "@tooltip"
  342. msgid "Infill"
  343. msgstr "Remplissage"
  344. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89
  345. msgctxt "@tooltip"
  346. msgid "Support Infill"
  347. msgstr "Remplissage du support"
  348. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90
  349. msgctxt "@tooltip"
  350. msgid "Support Interface"
  351. msgstr "Interface du support"
  352. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91
  353. msgctxt "@tooltip"
  354. msgid "Support"
  355. msgstr "Support"
  356. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92
  357. msgctxt "@tooltip"
  358. msgid "Skirt"
  359. msgstr "Jupe"
  360. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93
  361. msgctxt "@tooltip"
  362. msgid "Prime Tower"
  363. msgstr "Tour primaire"
  364. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94
  365. msgctxt "@tooltip"
  366. msgid "Travel"
  367. msgstr "Déplacement"
  368. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95
  369. msgctxt "@tooltip"
  370. msgid "Retractions"
  371. msgstr "Rétractions"
  372. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96
  373. msgctxt "@tooltip"
  374. msgid "Other"
  375. msgstr "Autre"
  376. #: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37
  377. #: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61
  378. msgctxt "@text:window"
  379. msgid "The release notes could not be opened."
  380. msgstr "Les notes de version n'ont pas pu être ouvertes."
  381. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107
  382. msgctxt "@title:window"
  383. msgid "Cura can't start"
  384. msgstr "Échec du démarrage de Cura"
  385. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113
  386. msgctxt "@label crash message"
  387. msgid ""
  388. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  389. " <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"
  390. " <p>Backups can be found in the configuration folder.</p>\n"
  391. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  392. " "
  393. msgstr ""
  394. "<p><b>Oups, un problème est survenu dans Ultimaker Cura.</p></b>\n"
  395. " <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"
  396. " <p>Les sauvegardes se trouvent dans le dossier de configuration.</p>\n"
  397. " <p>Veuillez nous envoyer ce rapport d'incident pour que nous puissions résoudre le problème.</p>\n"
  398. " "
  399. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122
  400. msgctxt "@action:button"
  401. msgid "Send crash report to Ultimaker"
  402. msgstr "Envoyer le rapport de d'incident à Ultimaker"
  403. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125
  404. msgctxt "@action:button"
  405. msgid "Show detailed crash report"
  406. msgstr "Afficher le rapport d'incident détaillé"
  407. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129
  408. msgctxt "@action:button"
  409. msgid "Show configuration folder"
  410. msgstr "Afficher le dossier de configuration"
  411. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140
  412. msgctxt "@action:button"
  413. msgid "Backup and Reset Configuration"
  414. msgstr "Sauvegarder et réinitialiser la configuration"
  415. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171
  416. msgctxt "@title:window"
  417. msgid "Crash Report"
  418. msgstr "Rapport d'incident"
  419. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190
  420. msgctxt "@label crash message"
  421. msgid ""
  422. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  423. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  424. " "
  425. msgstr ""
  426. "<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"
  427. " <p>Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs</p>\n"
  428. " "
  429. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198
  430. msgctxt "@title:groupbox"
  431. msgid "System information"
  432. msgstr "Informations système"
  433. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207
  434. msgctxt "@label unknown version of Cura"
  435. msgid "Unknown"
  436. msgstr "Inconnu"
  437. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228
  438. msgctxt "@label Cura version number"
  439. msgid "Cura version"
  440. msgstr "Version Cura"
  441. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229
  442. msgctxt "@label"
  443. msgid "Cura language"
  444. msgstr "Langue de Cura"
  445. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230
  446. msgctxt "@label"
  447. msgid "OS language"
  448. msgstr "Langue du SE"
  449. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231
  450. msgctxt "@label Type of platform"
  451. msgid "Platform"
  452. msgstr "Plate-forme"
  453. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232
  454. msgctxt "@label"
  455. msgid "Qt version"
  456. msgstr "Version Qt"
  457. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233
  458. msgctxt "@label"
  459. msgid "PyQt version"
  460. msgstr "Version PyQt"
  461. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234
  462. msgctxt "@label OpenGL version"
  463. msgid "OpenGL"
  464. msgstr "OpenGL"
  465. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264
  466. msgctxt "@label"
  467. msgid "Not yet initialized<br/>"
  468. msgstr "Pas encore initialisé<br/>"
  469. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267
  470. #, python-brace-format
  471. msgctxt "@label OpenGL version"
  472. msgid "<li>OpenGL Version: {version}</li>"
  473. msgstr "<li>Version OpenGL : {version}</li>"
  474. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268
  475. #, python-brace-format
  476. msgctxt "@label OpenGL vendor"
  477. msgid "<li>OpenGL Vendor: {vendor}</li>"
  478. msgstr "<li>Revendeur OpenGL : {vendor}</li>"
  479. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269
  480. #, python-brace-format
  481. msgctxt "@label OpenGL renderer"
  482. msgid "<li>OpenGL Renderer: {renderer}</li>"
  483. msgstr "<li>Moteur de rendu OpenGL : {renderer}</li>"
  484. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303
  485. msgctxt "@title:groupbox"
  486. msgid "Error traceback"
  487. msgstr "Retraçage de l'erreur"
  488. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389
  489. msgctxt "@title:groupbox"
  490. msgid "Logs"
  491. msgstr "Journaux"
  492. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417
  493. msgctxt "@action:button"
  494. msgid "Send report"
  495. msgstr "Envoyer rapport"
  496. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216
  497. msgctxt "@info"
  498. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  499. msgstr "Impossible de lancer une nouvelle procédure de connexion. Vérifiez si une autre tentative de connexion est toujours active."
  500. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277
  501. msgctxt "@info"
  502. msgid "Unable to reach the Ultimaker account server."
  503. msgstr "Impossible d’atteindre le serveur du compte Ultimaker."
  504. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278
  505. msgctxt "@info:title"
  506. msgid "Log-in failed"
  507. msgstr "Échec de la connexion"
  508. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75
  509. msgctxt "@message"
  510. msgid "The provided state is not correct."
  511. msgstr "L'état fourni n'est pas correct."
  512. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80
  513. msgctxt "@message"
  514. msgid "Timeout when authenticating with the account server."
  515. msgstr "Délai d'expiration lors de l'authentification avec le serveur de compte."
  516. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97
  517. msgctxt "@message"
  518. msgid "Please give the required permissions when authorizing this application."
  519. msgstr "Veuillez donner les permissions requises lors de l'autorisation de cette application."
  520. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104
  521. msgctxt "@message"
  522. msgid "Something unexpected happened when trying to log in, please try again."
  523. msgstr "Une erreur s'est produite lors de la connexion, veuillez réessayer."
  524. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89
  525. msgctxt "@message"
  526. msgid "Could not read response."
  527. msgstr "Impossible de lire la réponse."
  528. #: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30
  529. msgctxt "@info:status"
  530. msgid "Multiplying and placing objects"
  531. msgstr "Multiplication et placement d'objets"
  532. #: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32
  533. msgctxt "@info:title"
  534. msgid "Placing Objects"
  535. msgstr "Placement des objets"
  536. #: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100
  537. msgctxt "@info:title"
  538. msgid "Placing Object"
  539. msgstr "Placement de l'objet"
  540. #: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36
  541. msgctxt "@info:not supported profile"
  542. msgid "Not supported"
  543. msgstr "Non pris en charge"
  544. #: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55
  545. msgctxt "@info:No intent profile selected"
  546. msgid "Default"
  547. msgstr "Default"
  548. #: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713
  549. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218
  550. msgctxt "@label"
  551. msgid "Nozzle"
  552. msgstr "Buse"
  553. #: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857
  554. msgctxt "@info:message Followed by a list of settings."
  555. msgid "Settings have been changed to match the current availability of extruders:"
  556. msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles :"
  557. #: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858
  558. msgctxt "@info:title"
  559. msgid "Settings updated"
  560. msgstr "Paramètres mis à jour"
  561. #: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480
  562. msgctxt "@info:title"
  563. msgid "Extruder(s) Disabled"
  564. msgstr "Extrudeuse(s) désactivée(s)"
  565. #: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207
  566. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140
  567. msgctxt "@title:window"
  568. msgid "File Already Exists"
  569. msgstr "Le fichier existe déjà"
  570. #: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208
  571. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141
  572. #, python-brace-format
  573. msgctxt "@label Don't translate the XML tag <filename>!"
  574. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  575. msgstr "Le fichier <filename>{0}</filename> existe déjà. Êtes-vous sûr de vouloir le remplacer ?"
  576. #: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459
  577. #: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462
  578. msgctxt "@info:status"
  579. msgid "Invalid file URL:"
  580. msgstr "URL de fichier invalide :"
  581. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153
  582. #, python-brace-format
  583. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  584. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  585. msgstr "Échec de l'exportation du profil vers <filename>{0}</filename> : <message>{1}</message>"
  586. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163
  587. #, python-brace-format
  588. msgctxt "@info:status Don't translate the XML tag <filename>!"
  589. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  590. msgstr "Échec de l'exportation du profil vers <filename>{0}</filename> : le plug-in du générateur a rapporté une erreur."
  591. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171
  592. #, python-brace-format
  593. msgctxt "@info:status Don't translate the XML tag <filename>!"
  594. msgid "Exported profile to <filename>{0}</filename>"
  595. msgstr "Profil exporté vers <filename>{0}</filename>"
  596. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173
  597. msgctxt "@info:title"
  598. msgid "Export succeeded"
  599. msgstr "L'exportation a réussi"
  600. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205
  601. #, python-brace-format
  602. msgctxt "@info:status Don't translate the XML tags <filename>!"
  603. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  604. msgstr "Impossible d'importer le profil depuis <filename>{0}</filename> : {1}"
  605. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209
  606. #, python-brace-format
  607. msgctxt "@info:status Don't translate the XML tags <filename>!"
  608. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  609. msgstr "Impossible d'importer le profil depuis <filename>{0}</filename> avant l'ajout d'une imprimante."
  610. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224
  611. #, python-brace-format
  612. msgctxt "@info:status Don't translate the XML tags <filename>!"
  613. msgid "No custom profile to import in file <filename>{0}</filename>"
  614. msgstr "Aucun profil personnalisé à importer dans le fichier <filename>{0}</filename>"
  615. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228
  616. #, python-brace-format
  617. msgctxt "@info:status Don't translate the XML tags <filename>!"
  618. msgid "Failed to import profile from <filename>{0}</filename>:"
  619. msgstr "Échec de l'importation du profil depuis le fichier <filename>{0}</filename> :"
  620. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252
  621. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262
  622. #, python-brace-format
  623. msgctxt "@info:status Don't translate the XML tags <filename>!"
  624. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  625. msgstr "Le profil <filename>{0}</filename> contient des données incorrectes ; échec de l'importation."
  626. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355
  627. #, python-brace-format
  628. msgctxt "@info:status Don't translate the XML tag <filename>!"
  629. msgid "Failed to import profile from <filename>{0}</filename>:"
  630. msgstr "Échec de l'importation du profil depuis le fichier <filename>{0}</filename> :"
  631. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359
  632. #, python-brace-format
  633. msgctxt "@info:status"
  634. msgid "Successfully imported profile {0}."
  635. msgstr "Importation du profil {0} réussie."
  636. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366
  637. #, python-brace-format
  638. msgctxt "@info:status"
  639. msgid "File {0} does not contain any valid profile."
  640. msgstr "Le fichier {0} ne contient pas de profil valide."
  641. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369
  642. #, python-brace-format
  643. msgctxt "@info:status"
  644. msgid "Profile {0} has an unknown file type or is corrupted."
  645. msgstr "Le profil {0} est un type de fichier inconnu ou est corrompu."
  646. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443
  647. msgctxt "@label"
  648. msgid "Custom profile"
  649. msgstr "Personnaliser le profil"
  650. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459
  651. msgctxt "@info:status"
  652. msgid "Profile is missing a quality type."
  653. msgstr "Il manque un type de qualité au profil."
  654. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463
  655. msgctxt "@info:status"
  656. msgid "There is no active printer yet."
  657. msgstr "Aucune imprimante n'est active pour le moment."
  658. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469
  659. msgctxt "@info:status"
  660. msgid "Unable to add the profile."
  661. msgstr "Impossible d'ajouter le profil."
  662. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483
  663. #, python-brace-format
  664. msgctxt "@info:status"
  665. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  666. msgstr "Le type de qualité « {0} » n'est pas compatible avec la définition actuelle de la machine active « {1} »."
  667. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488
  668. #, python-brace-format
  669. msgctxt "@info:status"
  670. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  671. msgstr "Avertissement : le profil n'est pas visible car son type de qualité « {0} » n'est pas disponible pour la configuration actuelle. Passez à une combinaison matériau/buse qui peut utiliser ce type de qualité."
  672. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  673. msgctxt "@label"
  674. msgid "Per Model Settings"
  675. msgstr "Paramètres par modèle"
  676. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  677. msgctxt "@info:tooltip"
  678. msgid "Configure Per Model Settings"
  679. msgstr "Configurer les paramètres par modèle"
  680. #: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14
  681. #: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14
  682. msgctxt "@item:inlistbox"
  683. msgid "Cura Profile"
  684. msgstr "Profil Cura"
  685. #: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13
  686. msgctxt "@item:inlistbox"
  687. msgid "X3D File"
  688. msgstr "Fichier X3D"
  689. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
  690. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86
  691. msgctxt "@info:backup_status"
  692. msgid "There was an error trying to restore your backup."
  693. msgstr "Une erreur s’est produite lors de la tentative de restauration de votre sauvegarde."
  694. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25
  695. msgctxt "@info:title"
  696. msgid "Backups"
  697. msgstr "Sauvegardes"
  698. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  699. msgctxt "@info:backup_status"
  700. msgid "There was an error while uploading your backup."
  701. msgstr "Une erreur s’est produite lors du téléchargement de votre sauvegarde."
  702. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46
  703. msgctxt "@info:backup_status"
  704. msgid "Creating your backup..."
  705. msgstr "Création de votre sauvegarde..."
  706. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55
  707. msgctxt "@info:backup_status"
  708. msgid "There was an error while creating your backup."
  709. msgstr "Une erreur s'est produite lors de la création de votre sauvegarde."
  710. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59
  711. msgctxt "@info:backup_status"
  712. msgid "Uploading your backup..."
  713. msgstr "Téléchargement de votre sauvegarde..."
  714. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69
  715. msgctxt "@info:backup_status"
  716. msgid "Your backup has finished uploading."
  717. msgstr "Le téléchargement de votre sauvegarde est terminé."
  718. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103
  719. msgctxt "@error:file_size"
  720. msgid "The backup exceeds the maximum file size."
  721. msgstr "La sauvegarde dépasse la taille de fichier maximale."
  722. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69
  723. msgctxt "@item:inmenu"
  724. msgid "Manage backups"
  725. msgstr "Gérer les sauvegardes"
  726. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  727. msgctxt "@action"
  728. msgid "Machine Settings"
  729. msgstr "Paramètres de la machine"
  730. #: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12
  731. msgctxt "@label"
  732. msgid "Support Blocker"
  733. msgstr "Blocage des supports"
  734. #: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13
  735. msgctxt "@info:tooltip"
  736. msgid "Create a volume in which supports are not printed."
  737. msgstr "Créer un volume dans lequel les supports ne sont pas imprimés."
  738. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  739. msgctxt "@item:intext"
  740. msgid "Removable Drive"
  741. msgstr "Lecteur amovible"
  742. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  743. msgctxt "@action:button Preceded by 'Ready to'."
  744. msgid "Save to Removable Drive"
  745. msgstr "Enregistrer sur un lecteur amovible"
  746. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  747. #, python-brace-format
  748. msgctxt "@item:inlistbox"
  749. msgid "Save to Removable Drive {0}"
  750. msgstr "Enregistrer sur un lecteur amovible {0}"
  751. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  752. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  753. msgctxt "@info:status"
  754. msgid "There are no file formats available to write with!"
  755. msgstr "Aucun format de fichier n'est disponible pour écriture !"
  756. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97
  757. #, python-brace-format
  758. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  759. msgid "Saving to Removable Drive <filename>{0}</filename>"
  760. msgstr "Enregistrement sur le lecteur amovible <filename>{0}</filename>"
  761. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98
  762. msgctxt "@info:title"
  763. msgid "Saving"
  764. msgstr "Enregistrement"
  765. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108
  766. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111
  767. #, python-brace-format
  768. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  769. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  770. msgstr "Impossible d'enregistrer <filename>{0}</filename> : <message>{1}</message>"
  771. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127
  772. #, python-brace-format
  773. msgctxt "@info:status Don't translate the tag {device}!"
  774. msgid "Could not find a file name when trying to write to {device}."
  775. msgstr "Impossible de trouver un nom de fichier lors d'une tentative d'écriture sur {device}."
  776. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140
  777. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159
  778. #, python-brace-format
  779. msgctxt "@info:status"
  780. msgid "Could not save to removable drive {0}: {1}"
  781. msgstr "Impossible d'enregistrer sur le lecteur {0}: {1}"
  782. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150
  783. #, python-brace-format
  784. msgctxt "@info:status"
  785. msgid "Saved to Removable Drive {0} as {1}"
  786. msgstr "Enregistré sur le lecteur amovible {0} sous {1}"
  787. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  788. msgctxt "@info:title"
  789. msgid "File Saved"
  790. msgstr "Fichier enregistré"
  791. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  792. msgctxt "@action:button"
  793. msgid "Eject"
  794. msgstr "Ejecter"
  795. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  796. #, python-brace-format
  797. msgctxt "@action"
  798. msgid "Eject removable device {0}"
  799. msgstr "Ejecter le lecteur amovible {0}"
  800. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172
  801. #, python-brace-format
  802. msgctxt "@info:status"
  803. msgid "Ejected {0}. You can now safely remove the drive."
  804. msgstr "Lecteur {0} éjecté. Vous pouvez maintenant le retirer en tout sécurité."
  805. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  806. msgctxt "@info:title"
  807. msgid "Safely Remove Hardware"
  808. msgstr "Retirez le lecteur en toute sécurité"
  809. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176
  810. #, python-brace-format
  811. msgctxt "@info:status"
  812. msgid "Failed to eject {0}. Another program may be using the drive."
  813. msgstr "Impossible d'éjecter {0}. Un autre programme utilise peut-être ce lecteur."
  814. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  815. msgctxt "@action"
  816. msgid "Update Firmware"
  817. msgstr "Mettre à jour le firmware"
  818. #: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14
  819. msgctxt "@item:inlistbox"
  820. msgid "Cura 15.04 profiles"
  821. msgstr "Profils Cura 15.04"
  822. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  823. msgctxt "@title:tab"
  824. msgid "Recommended"
  825. msgstr "Recommandé"
  826. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  827. msgctxt "@title:tab"
  828. msgid "Custom"
  829. msgstr "Personnalisé"
  830. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542
  831. #, python-brace-format
  832. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  833. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  834. 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."
  835. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545
  836. msgctxt "@info:title"
  837. msgid "Open Project File"
  838. msgstr "Ouvrir un fichier de projet"
  839. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642
  840. #, python-brace-format
  841. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  842. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  843. msgstr "Le fichier de projet <filename>{0}</filename> est soudainement inaccessible : <message>{1}</message>."
  844. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643
  845. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651
  846. msgctxt "@info:title"
  847. msgid "Can't Open Project File"
  848. msgstr "Impossible d'ouvrir le fichier de projet"
  849. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650
  850. #, python-brace-format
  851. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  852. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  853. msgstr "Le fichier de projet <filename>{0}</filename> est corrompu : <message>{1}</message>."
  854. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703
  855. #, python-brace-format
  856. msgctxt "@info:error Don't translate the XML tag <filename>!"
  857. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  858. msgstr "Le fichier de projet <filename>{0}</filename> a été réalisé en utilisant des profils inconnus de cette version d'Ultimaker Cura."
  859. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27
  860. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33
  861. msgctxt "@item:inlistbox"
  862. msgid "3MF File"
  863. msgstr "Fichier 3MF"
  864. #: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57
  865. #: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72
  866. #: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94
  867. #: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149
  868. #: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159
  869. msgctxt "@info:error"
  870. msgid "Can't write to UFP file:"
  871. msgstr "Impossible d'écrire dans le fichier UFP :"
  872. #: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28
  873. #: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22
  874. msgctxt "@item:inlistbox"
  875. msgid "Ultimaker Format Package"
  876. msgstr "Ultimaker Format Package"
  877. #: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14
  878. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14
  879. #: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16
  880. msgctxt "@item:inlistbox"
  881. msgid "G-code File"
  882. msgstr "Fichier GCode"
  883. #: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13
  884. msgctxt "@item:inmenu"
  885. msgid "Preview"
  886. msgstr "Aperçu"
  887. #: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12
  888. msgctxt "@item:inlistbox"
  889. msgid "X-Ray view"
  890. msgstr "Visualisation par rayons X"
  891. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  892. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  893. msgctxt "@info:status"
  894. msgid "Processing Layers"
  895. msgstr "Traitement des couches"
  896. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  897. msgctxt "@info:title"
  898. msgid "Information"
  899. msgstr "Informations"
  900. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161
  901. msgctxt "@message"
  902. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  903. msgstr "Échec de la découpe avec une erreur inattendue. Signalez un bug sur notre outil de suivi des problèmes."
  904. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162
  905. msgctxt "@message:title"
  906. msgid "Slicing failed"
  907. msgstr "Échec de la découpe"
  908. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167
  909. msgctxt "@message:button"
  910. msgid "Report a bug"
  911. msgstr "Notifier un bug"
  912. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168
  913. msgctxt "@message:description"
  914. msgid "Report a bug on Ultimaker Cura's issue tracker."
  915. msgstr "Notifiez un bug sur l'outil de suivi des problèmes d'Ultimaker Cura."
  916. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395
  917. msgctxt "@info:status"
  918. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  919. msgstr "Impossible de découper le matériau actuel, car celui-ci est incompatible avec la machine ou la configuration sélectionnée."
  920. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396
  921. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429
  922. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456
  923. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468
  924. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480
  925. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493
  926. msgctxt "@info:title"
  927. msgid "Unable to slice"
  928. msgstr "Impossible de découper"
  929. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428
  930. #, python-brace-format
  931. msgctxt "@info:status"
  932. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  933. msgstr "Impossible de couper avec les paramètres actuels. Les paramètres suivants contiennent des erreurs : {0}"
  934. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
  935. #, python-brace-format
  936. msgctxt "@info:status"
  937. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  938. 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}"
  939. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
  940. msgctxt "@info:status"
  941. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  942. msgstr "Impossible de couper car la tour primaire ou la (les) position(s) d'amorçage ne sont pas valides."
  943. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479
  944. #, python-format
  945. msgctxt "@info:status"
  946. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  947. msgstr "Impossible de couper car il existe des objets associés à l'extrudeuse désactivée %s."
  948. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489
  949. msgctxt "@info:status"
  950. msgid ""
  951. "Please review settings and check if your models:\n"
  952. "- Fit within the build volume\n"
  953. "- Are assigned to an enabled extruder\n"
  954. "- Are not all set as modifier meshes"
  955. msgstr ""
  956. "Veuillez vérifier les paramètres et si vos modèles :\n"
  957. "- S'intègrent dans le volume de fabrication\n"
  958. "- Sont affectés à un extrudeur activé\n"
  959. "- N sont pas tous définis comme des mailles de modificateur"
  960. #: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15
  961. msgctxt "@item:inlistbox"
  962. msgid "AMF File"
  963. msgstr "Fichier AMF"
  964. #: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17
  965. #: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17
  966. msgctxt "@item:inlistbox"
  967. msgid "Compressed G-code File"
  968. msgstr "Fichier G-Code compressé"
  969. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  970. msgctxt "@item:inmenu"
  971. msgid "Post Processing"
  972. msgstr "Post-traitement"
  973. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  974. msgctxt "@item:inmenu"
  975. msgid "Modify G-Code"
  976. msgstr "Modifier le G-Code"
  977. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  978. msgctxt "@item:inmenu"
  979. msgid "USB printing"
  980. msgstr "Impression par USB"
  981. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  982. msgctxt "@action:button Preceded by 'Ready to'."
  983. msgid "Print via USB"
  984. msgstr "Imprimer via USB"
  985. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  986. msgctxt "@info:tooltip"
  987. msgid "Print via USB"
  988. msgstr "Imprimer via USB"
  989. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  990. msgctxt "@info:status"
  991. msgid "Connected via USB"
  992. msgstr "Connecté via USB"
  993. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  994. msgctxt "@label"
  995. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  996. msgstr "Une impression USB est en cours, la fermeture de Cura arrêtera cette impression. Êtes-vous sûr ?"
  997. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135
  998. msgctxt "@message"
  999. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  1000. msgstr "Une impression est encore en cours. Cura ne peut pas démarrer une autre impression via USB tant que l'impression précédente n'est pas terminée."
  1001. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136
  1002. msgctxt "@message"
  1003. msgid "Print in Progress"
  1004. msgstr "Impression en cours"
  1005. #: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12
  1006. msgctxt "@item:inmenu"
  1007. msgid "Prepare"
  1008. msgstr "Préparer"
  1009. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347
  1010. msgctxt "@info:status"
  1011. msgid "Parsing G-code"
  1012. msgstr "Analyse du G-Code"
  1013. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349
  1014. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503
  1015. msgctxt "@info:title"
  1016. msgid "G-code Details"
  1017. msgstr "Détails G-Code"
  1018. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501
  1019. msgctxt "@info:generic"
  1020. 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."
  1021. 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."
  1022. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18
  1023. msgctxt "@item:inlistbox"
  1024. msgid "G File"
  1025. msgstr "Fichier G"
  1026. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14
  1027. msgctxt "@item:inlistbox"
  1028. msgid "JPG Image"
  1029. msgstr "Image JPG"
  1030. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18
  1031. msgctxt "@item:inlistbox"
  1032. msgid "JPEG Image"
  1033. msgstr "Image JPEG"
  1034. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22
  1035. msgctxt "@item:inlistbox"
  1036. msgid "PNG Image"
  1037. msgstr "Image PNG"
  1038. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26
  1039. msgctxt "@item:inlistbox"
  1040. msgid "BMP Image"
  1041. msgstr "Image BMP"
  1042. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30
  1043. msgctxt "@item:inlistbox"
  1044. msgid "GIF Image"
  1045. msgstr "Image GIF"
  1046. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  1047. msgctxt "@action"
  1048. msgid "Level build plate"
  1049. msgstr "Nivellement du plateau"
  1050. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  1051. msgctxt "@action"
  1052. msgid "Select upgrades"
  1053. msgstr "Sélectionner les mises à niveau"
  1054. #: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1055. msgctxt "@error:not supported"
  1056. msgid "GCodeGzWriter does not support text mode."
  1057. msgstr "GCodeGzWriter ne prend pas en charge le mode texte."
  1058. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1059. msgctxt "@info"
  1060. msgid "Could not access update information."
  1061. msgstr "Impossible d'accéder aux informations de mise à jour."
  1062. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1063. #, python-brace-format
  1064. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1065. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  1066. msgstr "De nouvelles fonctionnalités ou des correctifs de bugs sont disponibles pour votre {machine_name} ! Si vous ne l'avez pas encore fait, il est recommandé de mettre à jour le micrologiciel de votre imprimante avec la version {latest_version}."
  1067. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1068. #, python-format
  1069. msgctxt "@info:title The %s gets replaced with the printer name."
  1070. msgid "New %s stable firmware available"
  1071. msgstr "Nouveau %s firmware stable disponible"
  1072. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1073. msgctxt "@action:button"
  1074. msgid "How to update"
  1075. msgstr "Comment effectuer la mise à jour"
  1076. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95
  1077. msgctxt "@text"
  1078. msgid "Unable to read example data file."
  1079. msgstr "Impossible de lire le fichier de données d'exemple."
  1080. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19
  1081. msgctxt "@info:generic"
  1082. msgid "You need to quit and restart {} before changes have effect."
  1083. msgstr "Vous devez quitter et redémarrer {} avant que les changements apportés ne prennent effet."
  1084. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91
  1085. msgctxt "@info:generic"
  1086. msgid "Syncing..."
  1087. msgstr "Synchronisation..."
  1088. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95
  1089. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
  1090. msgctxt "@info:title"
  1091. msgid "Changes detected from your Ultimaker account"
  1092. msgstr "Changements détectés à partir de votre compte Ultimaker"
  1093. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
  1094. msgctxt "@info:generic"
  1095. msgid "Do you want to sync material and software packages with your account?"
  1096. msgstr "Vous souhaitez synchroniser du matériel et des logiciels avec votre compte ?"
  1097. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
  1098. msgctxt "@action:button"
  1099. msgid "Sync"
  1100. msgstr "Synchroniser"
  1101. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41
  1102. msgctxt "@button"
  1103. msgid "Decline and remove from account"
  1104. msgstr "Décliner et supprimer du compte"
  1105. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
  1106. msgctxt "@info:generic"
  1107. msgid "{} plugins failed to download"
  1108. msgstr "Échec de téléchargement des plugins {}"
  1109. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
  1110. msgctxt "@button"
  1111. msgid "Decline"
  1112. msgstr "Refuser"
  1113. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
  1114. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  1115. msgctxt "@button"
  1116. msgid "Agree"
  1117. msgstr "Accepter"
  1118. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
  1119. msgctxt "@title:window"
  1120. msgid "Plugin License Agreement"
  1121. msgstr "Plug-in d'accord de licence"
  1122. #: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  1123. msgctxt "@error:not supported"
  1124. msgid "GCodeWriter does not support non-text mode."
  1125. msgstr "GCodeWriter ne prend pas en charge le mode non-texte."
  1126. #: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80
  1127. #: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  1128. msgctxt "@warning:status"
  1129. msgid "Please prepare G-code before exporting."
  1130. msgstr "Veuillez préparer le G-Code avant d'exporter."
  1131. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129
  1132. msgctxt "@info:status"
  1133. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  1134. msgstr "Cura n'affiche pas les couches avec précision lorsque l'impression filaire est activée."
  1135. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130
  1136. msgctxt "@info:title"
  1137. msgid "Simulation View"
  1138. msgstr "Vue simulation"
  1139. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133
  1140. msgctxt "@info:status"
  1141. msgid "Nothing is shown because you need to slice first."
  1142. msgstr "Rien ne s'affiche car vous devez d'abord découper."
  1143. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134
  1144. msgctxt "@info:title"
  1145. msgid "No layers to show"
  1146. msgstr "Pas de couches à afficher"
  1147. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136
  1148. #: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74
  1149. msgctxt "@info:option_text"
  1150. msgid "Do not show this message again"
  1151. msgstr "Ne plus afficher ce message"
  1152. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15
  1153. msgctxt "@item:inlistbox"
  1154. msgid "Layer view"
  1155. msgstr "Vue en couches"
  1156. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  1157. msgctxt "@action:button Preceded by 'Ready to'."
  1158. msgid "Print over network"
  1159. msgstr "Imprimer sur le réseau"
  1160. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  1161. msgctxt "@properties:tooltip"
  1162. msgid "Print over network"
  1163. msgstr "Imprimer sur le réseau"
  1164. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  1165. msgctxt "@info:status"
  1166. msgid "Connected over the network"
  1167. msgstr "Connecté sur le réseau"
  1168. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  1169. msgctxt "@info:status"
  1170. msgid "tomorrow"
  1171. msgstr "demain"
  1172. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  1173. msgctxt "@info:status"
  1174. msgid "today"
  1175. msgstr "aujourd'hui"
  1176. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  1177. msgctxt "@action"
  1178. msgid "Connect via Network"
  1179. msgstr "Connecter via le réseau"
  1180. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  1181. msgctxt "@info:status"
  1182. msgid "Please wait until the current job has been sent."
  1183. msgstr "Veuillez patienter jusqu'à ce que la tâche en cours ait été envoyée."
  1184. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  1185. msgctxt "@info:title"
  1186. msgid "Print error"
  1187. msgstr "Erreur d'impression"
  1188. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  1189. msgctxt "@info:status"
  1190. msgid "Print job was successfully sent to the printer."
  1191. msgstr "L'envoi de la tâche d'impression à l'imprimante a réussi."
  1192. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  1193. msgctxt "@info:title"
  1194. msgid "Data Sent"
  1195. msgstr "Données envoyées"
  1196. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  1197. msgctxt "@info:status"
  1198. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  1199. msgstr "Vous tentez de vous connecter à une imprimante qui n'exécute pas Ultimaker Connect. Veuillez mettre à jour l'imprimante avec le dernier micrologiciel."
  1200. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  1201. msgctxt "@info:title"
  1202. msgid "Update your printer"
  1203. msgstr "Mettre à jour votre imprimante"
  1204. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  1205. msgctxt "@info:status"
  1206. msgid "Print job queue is full. The printer can't accept a new job."
  1207. msgstr "La file d'attente pour les tâches d'impression est pleine. L'imprimante ne peut pas accepter une nouvelle tâche."
  1208. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  1209. msgctxt "@info:title"
  1210. msgid "Queue Full"
  1211. msgstr "La file d'attente est pleine"
  1212. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  1213. msgctxt "@info:status"
  1214. msgid "Sending Print Job"
  1215. msgstr "Lancement d'une tâche d'impression"
  1216. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  1217. msgctxt "@info:status"
  1218. msgid "Uploading print job to printer."
  1219. msgstr "Téléchargement de la tâche d'impression sur l'imprimante."
  1220. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  1221. #, python-brace-format
  1222. msgctxt "@info:status"
  1223. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  1224. msgstr "Cura a détecté des profils de matériau qui ne sont pas encore installés sur l'imprimante hôte du groupe {0}."
  1225. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  1226. msgctxt "@info:title"
  1227. msgid "Sending materials to printer"
  1228. msgstr "Envoi de matériaux à l'imprimante"
  1229. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  1230. msgctxt "@info:text"
  1231. msgid "Could not upload the data to the printer."
  1232. msgstr "Impossible de transférer les données à l'imprimante."
  1233. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  1234. msgctxt "@info:title"
  1235. msgid "Network error"
  1236. msgstr "Erreur de réseau"
  1237. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  1238. #, python-brace-format
  1239. msgctxt "@info:status"
  1240. msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
  1241. msgstr "Vous tentez de vous connecter à {0} mais ce n'est pas l'hôte de groupe. Vous pouvez visiter la page Web pour la configurer en tant qu'hôte de groupe."
  1242. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  1243. msgctxt "@info:title"
  1244. msgid "Not a group host"
  1245. msgstr "Pas un hôte de groupe"
  1246. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  1247. msgctxt "@action"
  1248. msgid "Configure group"
  1249. msgstr "Configurer le groupe"
  1250. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  1251. #, python-brace-format
  1252. msgctxt "@info:status"
  1253. msgid ""
  1254. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  1255. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  1256. msgstr ""
  1257. "Votre imprimante <b>{printer_name} </b> pourrait être connectée via le cloud.\n"
  1258. " Gérez votre file d'attente d'impression et surveillez vos impressions depuis n'importe où en connectant votre imprimante à Digital Factory"
  1259. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  1260. msgctxt "@info:title"
  1261. msgid "Are you ready for cloud printing?"
  1262. msgstr "Êtes-vous prêt pour l'impression dans le cloud ?"
  1263. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  1264. msgctxt "@action"
  1265. msgid "Get started"
  1266. msgstr "Prise en main"
  1267. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  1268. msgctxt "@action"
  1269. msgid "Learn more"
  1270. msgstr "En savoir plus"
  1271. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  1272. msgctxt "@action:button"
  1273. msgid "Print via cloud"
  1274. msgstr "Imprimer via le cloud"
  1275. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
  1276. msgctxt "@properties:tooltip"
  1277. msgid "Print via cloud"
  1278. msgstr "Imprimer via le cloud"
  1279. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
  1280. msgctxt "@info:status"
  1281. msgid "Connected via cloud"
  1282. msgstr "Connecté via le cloud"
  1283. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261
  1284. msgctxt "@action:button"
  1285. msgid "Monitor print"
  1286. msgstr "Surveiller l'impression"
  1287. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263
  1288. msgctxt "@action:tooltip"
  1289. msgid "Track the print in Ultimaker Digital Factory"
  1290. msgstr "Suivre l'impression dans Ultimaker Digital Factory"
  1291. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279
  1292. #, python-brace-format
  1293. msgctxt "@error:send"
  1294. msgid "Unknown error code when uploading print job: {0}"
  1295. msgstr "Code d'erreur inconnu lors du téléchargement d'une tâche d'impression : {0}"
  1296. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229
  1297. msgctxt "info:status"
  1298. msgid "New printer detected from your Ultimaker account"
  1299. msgid_plural "New printers detected from your Ultimaker account"
  1300. msgstr[0] "Nouvelle imprimante détectée à partir de votre compte Ultimaker"
  1301. msgstr[1] "Nouvelles imprimantes détectées à partir de votre compte Ultimaker"
  1302. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240
  1303. #, python-brace-format
  1304. msgctxt "info:status Filled in with printer name and printer model."
  1305. msgid "Adding printer {name} ({model}) from your account"
  1306. msgstr "Ajout de l'imprimante {name} ({model}) à partir de votre compte"
  1307. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257
  1308. #, python-brace-format
  1309. msgctxt "info:{0} gets replaced by a number of printers"
  1310. msgid "... and {0} other"
  1311. msgid_plural "... and {0} others"
  1312. msgstr[0] "... et {0} autre"
  1313. msgstr[1] "... et {0} autres"
  1314. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262
  1315. msgctxt "info:status"
  1316. msgid "Printers added from Digital Factory:"
  1317. msgstr "Imprimantes ajoutées à partir de Digital Factory :"
  1318. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328
  1319. msgctxt "info:status"
  1320. msgid "A cloud connection is not available for a printer"
  1321. msgid_plural "A cloud connection is not available for some printers"
  1322. msgstr[0] "Une connexion cloud n'est pas disponible pour une imprimante"
  1323. msgstr[1] "Une connexion cloud n'est pas disponible pour certaines imprimantes"
  1324. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  1325. msgctxt "info:status"
  1326. msgid "This printer is not linked to the Digital Factory:"
  1327. msgid_plural "These printers are not linked to the Digital Factory:"
  1328. msgstr[0] "Cette imprimante n'est pas associée à Digital Factory :"
  1329. msgstr[1] "Ces imprimantes ne sont pas associées à Digital Factory :"
  1330. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
  1331. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432
  1332. msgctxt "info:name"
  1333. msgid "Ultimaker Digital Factory"
  1334. msgstr "Ultimaker Digital Factory"
  1335. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346
  1336. #, python-brace-format
  1337. msgctxt "info:status"
  1338. msgid "To establish a connection, please visit the {website_link}"
  1339. msgstr "Pour établir une connexion, veuillez visiter le site {website_link}"
  1340. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350
  1341. msgctxt "@action:button"
  1342. msgid "Keep printer configurations"
  1343. msgstr "Conserver les configurations d'imprimante"
  1344. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355
  1345. msgctxt "@action:button"
  1346. msgid "Remove printers"
  1347. msgstr "Supprimer des imprimantes"
  1348. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434
  1349. #, python-brace-format
  1350. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1351. msgid "{printer_name} will be removed until the next account sync."
  1352. msgstr "L'imprimante {printer_name} sera supprimée jusqu'à la prochaine synchronisation de compte."
  1353. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435
  1354. #, python-brace-format
  1355. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1356. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  1357. msgstr "Pour supprimer {printer_name} définitivement, visitez le site {digital_factory_link}"
  1358. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436
  1359. #, python-brace-format
  1360. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1361. msgid "Are you sure you want to remove {printer_name} temporarily?"
  1362. msgstr "Voulez-vous vraiment supprimer {printer_name} temporairement ?"
  1363. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473
  1364. msgctxt "@title:window"
  1365. msgid "Remove printers?"
  1366. msgstr "Supprimer des imprimantes ?"
  1367. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476
  1368. #, python-brace-format
  1369. msgctxt "@label"
  1370. msgid ""
  1371. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  1372. "Are you sure you want to continue?"
  1373. msgid_plural ""
  1374. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  1375. "Are you sure you want to continue?"
  1376. msgstr[0] ""
  1377. "Vous êtes sur le point de supprimer {0} imprimante de Cura. Cette action est irréversible.\n"
  1378. "Voulez-vous vraiment continuer ?"
  1379. msgstr[1] ""
  1380. "Vous êtes sur le point de supprimer {0} imprimantes de Cura. Cette action est irréversible.\n"
  1381. "Voulez-vous vraiment continuer ?"
  1382. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481
  1383. msgctxt "@label"
  1384. msgid ""
  1385. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  1386. "Are you sure you want to continue?"
  1387. msgstr ""
  1388. "Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible.\n"
  1389. "Voulez-vous vraiment continuer ?"
  1390. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15
  1391. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1392. msgid "Open Compressed Triangle Mesh"
  1393. msgstr "Ouvrir le maillage triangulaire compressé"
  1394. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19
  1395. msgctxt "@item:inlistbox"
  1396. msgid "COLLADA Digital Asset Exchange"
  1397. msgstr "COLLADA Digital Asset Exchange"
  1398. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23
  1399. msgctxt "@item:inlistbox"
  1400. msgid "glTF Binary"
  1401. msgstr "glTF binaire"
  1402. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27
  1403. msgctxt "@item:inlistbox"
  1404. msgid "glTF Embedded JSON"
  1405. msgstr "glTF incorporé JSON"
  1406. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36
  1407. msgctxt "@item:inlistbox"
  1408. msgid "Stanford Triangle Format"
  1409. msgstr "Format Triangle de Stanford"
  1410. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40
  1411. msgctxt "@item:inlistbox"
  1412. msgid "Compressed COLLADA Digital Asset Exchange"
  1413. msgstr "COLLADA Digital Asset Exchange compressé"
  1414. #: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71
  1415. msgctxt "@info:status"
  1416. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  1417. msgstr "Les zones surlignées indiquent que des surfaces manquent ou sont étrangères. Réparez votre modèle et ouvrez-le à nouveau dans Cura."
  1418. #: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73
  1419. msgctxt "@info:title"
  1420. msgid "Model Errors"
  1421. msgstr "Erreurs du modèle"
  1422. #: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12
  1423. msgctxt "@item:inmenu"
  1424. msgid "Solid view"
  1425. msgstr "Vue solide"
  1426. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226
  1427. msgctxt "@error:zip"
  1428. msgid "Error writing 3mf file."
  1429. msgstr "Erreur d'écriture du fichier 3MF."
  1430. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  1431. msgctxt "@error:zip"
  1432. msgid "3MF Writer plug-in is corrupt."
  1433. msgstr "Le plug-in 3MF Writer est corrompu."
  1434. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  1435. msgctxt "@error"
  1436. msgid "There is no workspace yet to write. Please add a printer first."
  1437. msgstr "Il n'y a pas encore d'espace de travail à écrire. Veuillez d'abord ajouter une imprimante."
  1438. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64
  1439. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  1440. msgctxt "@error:zip"
  1441. msgid "No permission to write the workspace here."
  1442. msgstr "Aucune autorisation d'écrire l'espace de travail ici."
  1443. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  1444. msgctxt "@error:zip"
  1445. msgid "The operating system does not allow saving a project file to this location or with this file name."
  1446. msgstr "Le système d'exploitation ne permet pas d'enregistrer un fichier de projet à cet emplacement ou avec ce nom de fichier."
  1447. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26
  1448. msgctxt "@item:inlistbox"
  1449. msgid "3MF file"
  1450. msgstr "Fichier 3MF"
  1451. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34
  1452. msgctxt "@item:inlistbox"
  1453. msgid "Cura Project 3MF file"
  1454. msgstr "Projet Cura fichier 3MF"
  1455. #: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14
  1456. msgctxt "@item:inmenu"
  1457. msgid "Monitor"
  1458. msgstr "Surveiller"
  1459. #: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31
  1460. msgctxt "@info:title"
  1461. msgid "3D Model Assistant"
  1462. msgstr "Assistant de modèle 3D"
  1463. #: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97
  1464. #, python-brace-format
  1465. msgctxt "@info:status"
  1466. msgid ""
  1467. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  1468. "<p>{model_names}</p>\n"
  1469. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  1470. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  1471. msgstr ""
  1472. "<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"
  1473. "<p>{model_names}</p>\n"
  1474. "<p>Découvrez comment optimiser la qualité et la fiabilité de l'impression.</p>\n"
  1475. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Consultez le guide de qualité d'impression</a></p>"
  1476. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
  1477. msgctxt "@label"
  1478. msgid "Mesh Type"
  1479. msgstr "Type de maille"
  1480. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
  1481. msgctxt "@label"
  1482. msgid "Normal model"
  1483. msgstr "Modèle normal"
  1484. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
  1485. msgctxt "@label"
  1486. msgid "Print as support"
  1487. msgstr "Imprimer comme support"
  1488. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
  1489. msgctxt "@label"
  1490. msgid "Modify settings for overlaps"
  1491. msgstr "Modifier les paramètres de chevauchement"
  1492. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
  1493. msgctxt "@label"
  1494. msgid "Don't support overlaps"
  1495. msgstr "Ne prend pas en charge le chevauchement"
  1496. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151
  1497. msgctxt "@item:inlistbox"
  1498. msgid "Infill mesh only"
  1499. msgstr "Maille de remplissage uniquement"
  1500. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152
  1501. msgctxt "@item:inlistbox"
  1502. msgid "Cutting mesh"
  1503. msgstr "Maille de coupe"
  1504. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382
  1505. msgctxt "@action:button"
  1506. msgid "Select settings"
  1507. msgstr "Sélectionner les paramètres"
  1508. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  1509. msgctxt "@title:window"
  1510. msgid "Select Settings to Customize for this model"
  1511. msgstr "Sélectionner les paramètres pour personnaliser ce modèle"
  1512. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
  1513. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96
  1514. msgctxt "@label:textbox"
  1515. msgid "Filter..."
  1516. msgstr "Filtrer..."
  1517. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
  1518. msgctxt "@label:checkbox"
  1519. msgid "Show all"
  1520. msgstr "Afficher tout"
  1521. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25
  1522. msgctxt "@title:window"
  1523. msgid "Cura Backups"
  1524. msgstr "Sauvegardes Cura"
  1525. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  1526. msgctxt "@backuplist:label"
  1527. msgid "Cura Version"
  1528. msgstr "Version Cura"
  1529. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  1530. msgctxt "@backuplist:label"
  1531. msgid "Machines"
  1532. msgstr "Machines"
  1533. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  1534. msgctxt "@backuplist:label"
  1535. msgid "Materials"
  1536. msgstr "Matériaux"
  1537. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  1538. msgctxt "@backuplist:label"
  1539. msgid "Profiles"
  1540. msgstr "Profils"
  1541. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  1542. msgctxt "@backuplist:label"
  1543. msgid "Plugins"
  1544. msgstr "Plug-ins"
  1545. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  1546. msgctxt "@button"
  1547. msgid "Want more?"
  1548. msgstr "Vous en voulez plus ?"
  1549. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  1550. msgctxt "@button"
  1551. msgid "Backup Now"
  1552. msgstr "Sauvegarder maintenant"
  1553. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  1554. msgctxt "@checkbox:description"
  1555. msgid "Auto Backup"
  1556. msgstr "Sauvegarde automatique"
  1557. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  1558. msgctxt "@checkbox:description"
  1559. msgid "Automatically create a backup each day that Cura is started."
  1560. msgstr "Créez automatiquement une sauvegarde chaque jour où Cura est démarré."
  1561. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  1562. msgctxt "@button"
  1563. msgid "Restore"
  1564. msgstr "Restaurer"
  1565. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  1566. msgctxt "@dialog:title"
  1567. msgid "Delete Backup"
  1568. msgstr "Supprimer la sauvegarde"
  1569. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101
  1570. msgctxt "@dialog:info"
  1571. msgid "Are you sure you want to delete this backup? This cannot be undone."
  1572. msgstr "Êtes-vous sûr de vouloir supprimer cette sauvegarde ? Il est impossible d'annuler cette action."
  1573. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  1574. msgctxt "@dialog:title"
  1575. msgid "Restore Backup"
  1576. msgstr "Restaurer la sauvegarde"
  1577. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110
  1578. msgctxt "@dialog:info"
  1579. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  1580. msgstr "Vous devez redémarrer Cura avant que votre sauvegarde ne soit restaurée. Voulez-vous fermer Cura maintenant ?"
  1581. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1582. msgctxt "@description"
  1583. msgid "Backup and synchronize your Cura settings."
  1584. msgstr "Sauvegardez et synchronisez vos paramètres Cura."
  1585. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
  1586. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
  1587. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225
  1588. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171
  1589. #: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53
  1590. msgctxt "@button"
  1591. msgid "Sign in"
  1592. msgstr "Se connecter"
  1593. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1594. msgctxt "@title"
  1595. msgid "My Backups"
  1596. msgstr "Mes sauvegardes"
  1597. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  1598. msgctxt "@empty_state"
  1599. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1600. msgstr "Vous n'avez actuellement aucune sauvegarde. Utilisez le bouton « Sauvegarder maintenant » pour en créer une."
  1601. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  1602. msgctxt "@backup_limit_info"
  1603. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1604. msgstr "Pendant la phase de prévisualisation, vous ne pourrez voir qu'un maximum de 5 sauvegardes. Supprimez une sauvegarde pour voir les plus anciennes."
  1605. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1606. msgctxt "@title:label"
  1607. msgid "Printer Settings"
  1608. msgstr "Paramètres de l'imprimante"
  1609. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  1610. msgctxt "@label"
  1611. msgid "X (Width)"
  1612. msgstr "X (Largeur)"
  1613. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  1614. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  1615. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
  1616. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
  1617. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  1618. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
  1619. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  1620. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  1621. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  1622. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  1623. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  1624. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  1625. msgctxt "@label"
  1626. msgid "mm"
  1627. msgstr "mm"
  1628. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  1629. msgctxt "@label"
  1630. msgid "Y (Depth)"
  1631. msgstr "Y (Profondeur)"
  1632. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  1633. msgctxt "@label"
  1634. msgid "Z (Height)"
  1635. msgstr "Z (Hauteur)"
  1636. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  1637. msgctxt "@label"
  1638. msgid "Build plate shape"
  1639. msgstr "Forme du plateau"
  1640. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  1641. msgctxt "@label"
  1642. msgid "Origin at center"
  1643. msgstr "Origine au centre"
  1644. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  1645. msgctxt "@label"
  1646. msgid "Heated bed"
  1647. msgstr "Plateau chauffant"
  1648. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  1649. msgctxt "@label"
  1650. msgid "Heated build volume"
  1651. msgstr "Volume de fabrication chauffant"
  1652. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  1653. msgctxt "@label"
  1654. msgid "G-code flavor"
  1655. msgstr "Parfum G-Code"
  1656. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  1657. msgctxt "@title:label"
  1658. msgid "Printhead Settings"
  1659. msgstr "Paramètres de la tête d'impression"
  1660. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1661. msgctxt "@label"
  1662. msgid "X min"
  1663. msgstr "X min"
  1664. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1665. msgctxt "@label"
  1666. msgid "Y min"
  1667. msgstr "Y min"
  1668. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1669. msgctxt "@label"
  1670. msgid "X max"
  1671. msgstr "X max"
  1672. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1673. msgctxt "@label"
  1674. msgid "Y max"
  1675. msgstr "Y max"
  1676. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1677. msgctxt "@label"
  1678. msgid "Gantry Height"
  1679. msgstr "Hauteur du portique"
  1680. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  1681. msgctxt "@label"
  1682. msgid "Number of Extruders"
  1683. msgstr "Nombre d'extrudeuses"
  1684. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
  1685. msgctxt "@label"
  1686. msgid "Apply Extruder offsets to GCode"
  1687. msgstr "Appliquer les décalages offset de l'extrudeuse au GCode"
  1688. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
  1689. msgctxt "@title:label"
  1690. msgid "Start G-code"
  1691. msgstr "G-Code de démarrage"
  1692. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
  1693. msgctxt "@title:label"
  1694. msgid "End G-code"
  1695. msgstr "G-Code de fin"
  1696. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1697. msgctxt "@title:label"
  1698. msgid "Nozzle Settings"
  1699. msgstr "Paramètres de la buse"
  1700. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  1701. msgctxt "@label"
  1702. msgid "Nozzle size"
  1703. msgstr "Taille de la buse"
  1704. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  1705. msgctxt "@label"
  1706. msgid "Compatible material diameter"
  1707. msgstr "Diamètre du matériau compatible"
  1708. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  1709. msgctxt "@label"
  1710. msgid "Nozzle offset X"
  1711. msgstr "Décalage buse X"
  1712. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  1713. msgctxt "@label"
  1714. msgid "Nozzle offset Y"
  1715. msgstr "Décalage buse Y"
  1716. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  1717. msgctxt "@label"
  1718. msgid "Cooling Fan Number"
  1719. msgstr "Numéro du ventilateur de refroidissement"
  1720. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
  1721. msgctxt "@title:label"
  1722. msgid "Extruder Start G-code"
  1723. msgstr "Extrudeuse G-Code de démarrage"
  1724. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
  1725. msgctxt "@title:label"
  1726. msgid "Extruder End G-code"
  1727. msgstr "Extrudeuse G-Code de fin"
  1728. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1729. msgctxt "@title:tab"
  1730. msgid "Printer"
  1731. msgstr "Imprimante"
  1732. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1733. msgctxt "@title"
  1734. msgid "Update Firmware"
  1735. msgstr "Mettre à jour le firmware"
  1736. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1737. msgctxt "@label"
  1738. 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."
  1739. 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."
  1740. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1741. msgctxt "@label"
  1742. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1743. 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."
  1744. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1745. msgctxt "@action:button"
  1746. msgid "Automatically upgrade Firmware"
  1747. msgstr "Mise à niveau automatique du firmware"
  1748. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1749. msgctxt "@action:button"
  1750. msgid "Upload custom Firmware"
  1751. msgstr "Charger le firmware personnalisé"
  1752. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1753. msgctxt "@label"
  1754. msgid "Firmware can not be updated because there is no connection with the printer."
  1755. msgstr "Impossible de se connecter à l'imprimante ; échec de la mise à jour du firmware."
  1756. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1757. msgctxt "@label"
  1758. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1759. msgstr "Échec de la mise à jour du firmware, car cette fonctionnalité n'est pas prise en charge par la connexion avec l'imprimante."
  1760. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1761. msgctxt "@title:window"
  1762. msgid "Select custom firmware"
  1763. msgstr "Sélectionner le firmware personnalisé"
  1764. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1765. msgctxt "@title:window"
  1766. msgid "Firmware Update"
  1767. msgstr "Mise à jour du firmware"
  1768. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1769. msgctxt "@label"
  1770. msgid "Updating firmware."
  1771. msgstr "Mise à jour du firmware en cours."
  1772. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1773. msgctxt "@label"
  1774. msgid "Firmware update completed."
  1775. msgstr "Mise à jour du firmware terminée."
  1776. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1777. msgctxt "@label"
  1778. msgid "Firmware update failed due to an unknown error."
  1779. msgstr "Échec de la mise à jour du firmware en raison d'une erreur inconnue."
  1780. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1781. msgctxt "@label"
  1782. msgid "Firmware update failed due to an communication error."
  1783. msgstr "Échec de la mise à jour du firmware en raison d'une erreur de communication."
  1784. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1785. msgctxt "@label"
  1786. msgid "Firmware update failed due to an input/output error."
  1787. msgstr "Échec de la mise à jour du firmware en raison d'une erreur d'entrée/de sortie."
  1788. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1789. msgctxt "@label"
  1790. msgid "Firmware update failed due to missing firmware."
  1791. msgstr "Échec de la mise à jour du firmware en raison du firmware manquant."
  1792. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  1793. msgctxt "@title:window"
  1794. msgid "Open Project"
  1795. msgstr "Ouvrir un projet"
  1796. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
  1797. msgctxt "@action:ComboBox Update/override existing profile"
  1798. msgid "Update existing"
  1799. msgstr "Mettre à jour l'existant"
  1800. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
  1801. msgctxt "@action:ComboBox Save settings in a new profile"
  1802. msgid "Create new"
  1803. msgstr "Créer"
  1804. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75
  1805. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70
  1806. msgctxt "@action:title"
  1807. msgid "Summary - Cura Project"
  1808. msgstr "Résumé - Projet Cura"
  1809. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97
  1810. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94
  1811. msgctxt "@action:label"
  1812. msgid "Printer settings"
  1813. msgstr "Paramètres de l'imprimante"
  1814. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
  1815. msgctxt "@info:tooltip"
  1816. msgid "How should the conflict in the machine be resolved?"
  1817. msgstr "Comment le conflit de la machine doit-il être résolu ?"
  1818. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
  1819. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103
  1820. msgctxt "@action:label"
  1821. msgid "Type"
  1822. msgstr "Type"
  1823. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183
  1824. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118
  1825. msgctxt "@action:label"
  1826. msgid "Printer Group"
  1827. msgstr "Groupe d'imprimantes"
  1828. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205
  1829. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219
  1830. msgctxt "@action:label"
  1831. msgid "Profile settings"
  1832. msgstr "Paramètres de profil"
  1833. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
  1834. msgctxt "@info:tooltip"
  1835. msgid "How should the conflict in the profile be resolved?"
  1836. msgstr "Comment le conflit du profil doit-il être résolu ?"
  1837. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
  1838. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353
  1839. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118
  1840. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243
  1841. msgctxt "@action:label"
  1842. msgid "Name"
  1843. msgstr "Nom"
  1844. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258
  1845. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260
  1846. msgctxt "@action:label"
  1847. msgid "Intent"
  1848. msgstr "Intent"
  1849. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274
  1850. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227
  1851. msgctxt "@action:label"
  1852. msgid "Not in profile"
  1853. msgstr "Absent du profil"
  1854. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279
  1855. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232
  1856. msgctxt "@action:label"
  1857. msgid "%1 override"
  1858. msgid_plural "%1 overrides"
  1859. msgstr[0] "%1 écrasent"
  1860. msgstr[1] "%1 écrase"
  1861. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
  1862. msgctxt "@action:label"
  1863. msgid "Derivative from"
  1864. msgstr "Dérivé de"
  1865. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
  1866. msgctxt "@action:label"
  1867. msgid "%1, %2 override"
  1868. msgid_plural "%1, %2 overrides"
  1869. msgstr[0] "%1, %2 écrasent"
  1870. msgstr[1] "%1, %2 écrase"
  1871. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
  1872. msgctxt "@action:label"
  1873. msgid "Material settings"
  1874. msgstr "Paramètres du matériau"
  1875. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
  1876. msgctxt "@info:tooltip"
  1877. msgid "How should the conflict in the material be resolved?"
  1878. msgstr "Comment le conflit du matériau doit-il être résolu ?"
  1879. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
  1880. msgctxt "@action:label"
  1881. msgid "Setting visibility"
  1882. msgstr "Visibilité des paramètres"
  1883. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
  1884. msgctxt "@action:label"
  1885. msgid "Mode"
  1886. msgstr "Mode"
  1887. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
  1888. msgctxt "@action:label"
  1889. msgid "Visible settings:"
  1890. msgstr "Paramètres visibles :"
  1891. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
  1892. msgctxt "@action:label"
  1893. msgid "%1 out of %2"
  1894. msgstr "%1 sur %2"
  1895. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
  1896. msgctxt "@action:warning"
  1897. msgid "Loading a project will clear all models on the build plate."
  1898. msgstr "Le chargement d'un projet effacera tous les modèles sur le plateau."
  1899. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
  1900. msgctxt "@action:button"
  1901. msgid "Open"
  1902. msgstr "Ouvrir"
  1903. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20
  1904. msgctxt "@title:window"
  1905. msgid "Post Processing Plugin"
  1906. msgstr "Plug-in de post-traitement"
  1907. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59
  1908. msgctxt "@label"
  1909. msgid "Post Processing Scripts"
  1910. msgstr "Scripts de post-traitement"
  1911. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235
  1912. msgctxt "@action"
  1913. msgid "Add a script"
  1914. msgstr "Ajouter un script"
  1915. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282
  1916. msgctxt "@label"
  1917. msgid "Settings"
  1918. msgstr "Paramètres"
  1919. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502
  1920. msgctxt "@info:tooltip"
  1921. msgid "Change active post-processing scripts."
  1922. msgstr "Modifiez les scripts de post-traitement actifs."
  1923. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506
  1924. msgctxt "@info:tooltip"
  1925. msgid "The following script is active:"
  1926. msgid_plural "The following scripts are active:"
  1927. msgstr[0] "Le script suivant est actif :"
  1928. msgstr[1] "Les scripts suivants sont actifs :"
  1929. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19
  1930. msgctxt "@title:window"
  1931. msgid "Convert Image..."
  1932. msgstr "Conversion de l'image..."
  1933. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33
  1934. msgctxt "@info:tooltip"
  1935. msgid "The maximum distance of each pixel from \"Base.\""
  1936. msgstr "La distance maximale de chaque pixel à partir de la « Base »."
  1937. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38
  1938. msgctxt "@action:label"
  1939. msgid "Height (mm)"
  1940. msgstr "Hauteur (mm)"
  1941. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56
  1942. msgctxt "@info:tooltip"
  1943. msgid "The base height from the build plate in millimeters."
  1944. msgstr "La hauteur de la base à partir du plateau en millimètres."
  1945. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61
  1946. msgctxt "@action:label"
  1947. msgid "Base (mm)"
  1948. msgstr "Base (mm)"
  1949. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79
  1950. msgctxt "@info:tooltip"
  1951. msgid "The width in millimeters on the build plate."
  1952. msgstr "La largeur en millimètres sur le plateau."
  1953. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84
  1954. msgctxt "@action:label"
  1955. msgid "Width (mm)"
  1956. msgstr "Largeur (mm)"
  1957. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103
  1958. msgctxt "@info:tooltip"
  1959. msgid "The depth in millimeters on the build plate"
  1960. msgstr "La profondeur en millimètres sur le plateau"
  1961. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108
  1962. msgctxt "@action:label"
  1963. msgid "Depth (mm)"
  1964. msgstr "Profondeur (mm)"
  1965. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126
  1966. msgctxt "@info:tooltip"
  1967. msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
  1968. msgstr "Pour les lithophanies, les pixels foncés doivent correspondre à des emplacements plus épais afin d'empêcher la lumière de passer. Pour des cartes de hauteur, les pixels clairs signifient un terrain plus élevé, de sorte que les pixels clairs doivent correspondre à des emplacements plus épais dans le modèle 3D généré."
  1969. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139
  1970. msgctxt "@item:inlistbox"
  1971. msgid "Darker is higher"
  1972. msgstr "Le plus foncé est plus haut"
  1973. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139
  1974. msgctxt "@item:inlistbox"
  1975. msgid "Lighter is higher"
  1976. msgstr "Le plus clair est plus haut"
  1977. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149
  1978. msgctxt "@info:tooltip"
  1979. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1980. msgstr "Pour les lithophanes, un modèle logarithmique simple de la translucidité est disponible. Pour les cartes de hauteur, les valeurs des pixels correspondent aux hauteurs de façon linéaire."
  1981. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161
  1982. msgctxt "@item:inlistbox"
  1983. msgid "Linear"
  1984. msgstr "Linéaire"
  1985. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161
  1986. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172
  1987. msgctxt "@item:inlistbox"
  1988. msgid "Translucency"
  1989. msgstr "Translucidité"
  1990. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171
  1991. msgctxt "@info:tooltip"
  1992. msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
  1993. msgstr "Le pourcentage de lumière pénétrant une impression avec une épaisseur de 1 millimètre. La diminution de cette valeur augmente le contraste dans les régions sombres et diminue le contraste dans les régions claires de l'image."
  1994. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177
  1995. msgctxt "@action:label"
  1996. msgid "1mm Transmittance (%)"
  1997. msgstr "Transmission 1 mm (%)"
  1998. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195
  1999. msgctxt "@info:tooltip"
  2000. msgid "The amount of smoothing to apply to the image."
  2001. msgstr "La quantité de lissage à appliquer à l'image."
  2002. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200
  2003. msgctxt "@action:label"
  2004. msgid "Smoothing"
  2005. msgstr "Lissage"
  2006. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227
  2007. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
  2008. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
  2009. msgctxt "@action:button"
  2010. msgid "OK"
  2011. msgstr "OK"
  2012. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2013. msgctxt "@label"
  2014. msgid "Please select any upgrades made to this Ultimaker Original"
  2015. msgstr "Sélectionnez les mises à niveau disponibles pour cet Ultimaker Original"
  2016. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2017. msgctxt "@label"
  2018. msgid "Heated Build Plate (official kit or self-built)"
  2019. msgstr "Plateau chauffant (kit officiel ou fabriqué soi-même)"
  2020. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2021. msgctxt "@title"
  2022. msgid "Build Plate Leveling"
  2023. msgstr "Nivellement du plateau"
  2024. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2025. msgctxt "@label"
  2026. 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."
  2027. 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."
  2028. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2029. msgctxt "@label"
  2030. 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."
  2031. 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."
  2032. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2033. msgctxt "@action:button"
  2034. msgid "Start Build Plate Leveling"
  2035. msgstr "Démarrer le nivellement du plateau"
  2036. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2037. msgctxt "@action:button"
  2038. msgid "Move to Next Position"
  2039. msgstr "Aller à la position suivante"
  2040. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  2041. msgctxt "@title:window"
  2042. msgid "More information on anonymous data collection"
  2043. msgstr "Plus d'informations sur la collecte de données anonymes"
  2044. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  2045. msgctxt "@text:window"
  2046. msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
  2047. msgstr "Ultimaker Cura recueille des données anonymes afin d'améliorer la qualité d'impression et l'expérience utilisateur. Voici un exemple de toutes les données partagées :"
  2048. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  2049. msgctxt "@text:window"
  2050. msgid "I don't want to send anonymous data"
  2051. msgstr "Je ne veux pas envoyer de données anonymes"
  2052. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  2053. msgctxt "@text:window"
  2054. msgid "Allow sending anonymous data"
  2055. msgstr "Autoriser l'envoi de données anonymes"
  2056. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
  2057. msgctxt "@title"
  2058. msgid "Marketplace"
  2059. msgstr "Marché en ligne"
  2060. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
  2061. msgctxt "@info"
  2062. msgid "You will need to restart Cura before changes in packages have effect."
  2063. msgstr "Vous devez redémarrer Cura pour que les changements apportés aux paquets ne prennent effet."
  2064. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
  2065. msgctxt "@info:button, %1 is the application name"
  2066. msgid "Quit %1"
  2067. msgstr "Quitter %1"
  2068. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
  2069. msgctxt "@action:button"
  2070. msgid "Install"
  2071. msgstr "Installer"
  2072. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
  2073. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
  2074. msgctxt "@action:button"
  2075. msgid "Installed"
  2076. msgstr "Installé"
  2077. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
  2078. msgctxt "@label"
  2079. msgid "Premium"
  2080. msgstr "Premium"
  2081. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
  2082. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
  2083. msgctxt "@info:tooltip"
  2084. msgid "Go to Web Marketplace"
  2085. msgstr "Aller sur le Marché en ligne"
  2086. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
  2087. msgctxt "@label"
  2088. msgid "Search materials"
  2089. msgstr "Rechercher des matériaux"
  2090. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
  2091. msgctxt "@label"
  2092. msgid "Compatibility"
  2093. msgstr "Compatibilité"
  2094. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
  2095. msgctxt "@label:table_header"
  2096. msgid "Machine"
  2097. msgstr "Machine"
  2098. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
  2099. msgctxt "@label:table_header"
  2100. msgid "Build Plate"
  2101. msgstr "Plateau"
  2102. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
  2103. msgctxt "@label:table_header"
  2104. msgid "Support"
  2105. msgstr "Support"
  2106. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
  2107. msgctxt "@label:table_header"
  2108. msgid "Quality"
  2109. msgstr "Qualité"
  2110. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
  2111. msgctxt "@action:label"
  2112. msgid "Technical Data Sheet"
  2113. msgstr "Fiche technique"
  2114. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
  2115. msgctxt "@action:label"
  2116. msgid "Safety Data Sheet"
  2117. msgstr "Fiche de sécurité"
  2118. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
  2119. msgctxt "@action:label"
  2120. msgid "Printing Guidelines"
  2121. msgstr "Directives d'impression"
  2122. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
  2123. msgctxt "@action:label"
  2124. msgid "Website"
  2125. msgstr "Site Internet"
  2126. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
  2127. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2128. msgid "<a href='%1'>Log in</a> is required to install or update"
  2129. msgstr "<a href='%1'>Connexion</a> nécessaire pour l'installation ou la mise à jour"
  2130. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
  2131. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2132. msgid "<a href='%1'>Buy material spools</a>"
  2133. msgstr "<a href='%1'>Acheter des bobines de matériau</a>"
  2134. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
  2135. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
  2136. msgctxt "@action:button"
  2137. msgid "Update"
  2138. msgstr "Mise à jour"
  2139. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
  2140. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
  2141. msgctxt "@action:button"
  2142. msgid "Updating"
  2143. msgstr "Mise à jour"
  2144. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
  2145. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
  2146. msgctxt "@action:button"
  2147. msgid "Updated"
  2148. msgstr "Mis à jour"
  2149. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
  2150. msgctxt "@action:button"
  2151. msgid "Back"
  2152. msgstr "Précédent"
  2153. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
  2154. msgctxt "@title:tab"
  2155. msgid "Plugins"
  2156. msgstr "Plug-ins"
  2157. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
  2158. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
  2159. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475
  2160. msgctxt "@title:tab"
  2161. msgid "Materials"
  2162. msgstr "Matériaux"
  2163. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
  2164. msgctxt "@title:tab"
  2165. msgid "Installed"
  2166. msgstr "Installé"
  2167. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
  2168. msgctxt "@label"
  2169. msgid "Will install upon restarting"
  2170. msgstr "S'installera au redémarrage"
  2171. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
  2172. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2173. msgid "<a href='%1'>Log in</a> is required to update"
  2174. msgstr "<a href='%1'>Connexion</a> nécessaire pour effectuer la mise à jour"
  2175. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2176. msgctxt "@action:button"
  2177. msgid "Downgrade"
  2178. msgstr "Revenir à une version précédente"
  2179. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2180. msgctxt "@action:button"
  2181. msgid "Uninstall"
  2182. msgstr "Désinstaller"
  2183. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2184. msgctxt "@label"
  2185. msgid "Community Contributions"
  2186. msgstr "Contributions de la communauté"
  2187. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2188. msgctxt "@label"
  2189. msgid "Community Plugins"
  2190. msgstr "Plug-ins de la communauté"
  2191. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
  2192. msgctxt "@label"
  2193. msgid "Generic Materials"
  2194. msgstr "Matériaux génériques"
  2195. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
  2196. msgctxt "@info"
  2197. msgid "Fetching packages..."
  2198. msgstr "Récupération des paquets..."
  2199. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
  2200. msgctxt "@label"
  2201. msgid "Website"
  2202. msgstr "Site Internet"
  2203. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
  2204. msgctxt "@label"
  2205. msgid "Email"
  2206. msgstr "E-mail"
  2207. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
  2208. msgctxt "@description"
  2209. msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  2210. msgstr "Veuillez vous connecter pour obtenir les plug-ins et matériaux vérifiés pour Ultimaker Cura Enterprise"
  2211. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
  2212. msgctxt "@label"
  2213. msgid "Version"
  2214. msgstr "Version"
  2215. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
  2216. msgctxt "@label"
  2217. msgid "Last updated"
  2218. msgstr "Dernière mise à jour"
  2219. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
  2220. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  2221. msgctxt "@label"
  2222. msgid "Brand"
  2223. msgstr "Marque"
  2224. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
  2225. msgctxt "@label"
  2226. msgid "Downloads"
  2227. msgstr "Téléchargements"
  2228. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
  2229. msgctxt "@title:tab"
  2230. msgid "Installed plugins"
  2231. msgstr "Plug-ins installés"
  2232. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
  2233. msgctxt "@info"
  2234. msgid "No plugin has been installed."
  2235. msgstr "Aucun plug-in n'a été installé."
  2236. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87
  2237. msgctxt "@title:tab"
  2238. msgid "Installed materials"
  2239. msgstr "Matériaux installés"
  2240. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126
  2241. msgctxt "@info"
  2242. msgid "No material has been installed."
  2243. msgstr "Aucun matériau n'a été installé."
  2244. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141
  2245. msgctxt "@title:tab"
  2246. msgid "Bundled plugins"
  2247. msgstr "Plug-ins groupés"
  2248. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186
  2249. msgctxt "@title:tab"
  2250. msgid "Bundled materials"
  2251. msgstr "Matériaux groupés"
  2252. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
  2253. msgctxt "@info"
  2254. msgid "Could not connect to the Cura Package database. Please check your connection."
  2255. msgstr "Impossible de se connecter à la base de données Cura Package. Veuillez vérifier votre connexion."
  2256. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
  2257. msgctxt "@label"
  2258. msgid "You need to accept the license to install the package"
  2259. msgstr "Vous devez accepter la licence pour installer le package"
  2260. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
  2261. msgctxt "@title"
  2262. msgid "Changes from your account"
  2263. msgstr "Changements à partir de votre compte"
  2264. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  2265. msgctxt "@button"
  2266. msgid "Dismiss"
  2267. msgstr "Ignorer"
  2268. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  2269. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  2270. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  2271. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186
  2272. msgctxt "@button"
  2273. msgid "Next"
  2274. msgstr "Suivant"
  2275. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
  2276. msgctxt "@label"
  2277. msgid "The following packages will be added:"
  2278. msgstr "Les packages suivants seront ajoutés :"
  2279. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
  2280. msgctxt "@label"
  2281. msgid "The following packages can not be installed because of an incompatible Cura version:"
  2282. msgstr "Les packages suivants ne peuvent pas être installés en raison d'une version incompatible de Cura :"
  2283. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
  2284. msgctxt "@title:window"
  2285. msgid "Confirm uninstall"
  2286. msgstr "Confirmer la désinstallation"
  2287. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
  2288. msgctxt "@text:window"
  2289. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  2290. 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."
  2291. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
  2292. msgctxt "@text:window"
  2293. msgid "Materials"
  2294. msgstr "Matériaux"
  2295. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
  2296. msgctxt "@text:window"
  2297. msgid "Profiles"
  2298. msgstr "Profils"
  2299. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
  2300. msgctxt "@action:button"
  2301. msgid "Confirm"
  2302. msgstr "Confirmer"
  2303. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
  2304. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  2305. msgctxt "@label"
  2306. msgid "Color scheme"
  2307. msgstr "Modèle de couleurs"
  2308. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110
  2309. msgctxt "@label:listbox"
  2310. msgid "Material Color"
  2311. msgstr "Couleur du matériau"
  2312. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114
  2313. msgctxt "@label:listbox"
  2314. msgid "Line Type"
  2315. msgstr "Type de ligne"
  2316. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118
  2317. msgctxt "@label:listbox"
  2318. msgid "Speed"
  2319. msgstr "Vitesse"
  2320. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122
  2321. msgctxt "@label:listbox"
  2322. msgid "Layer Thickness"
  2323. msgstr "Épaisseur de la couche"
  2324. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126
  2325. msgctxt "@label:listbox"
  2326. msgid "Line Width"
  2327. msgstr "Largeur de ligne"
  2328. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130
  2329. msgctxt "@label:listbox"
  2330. msgid "Flow"
  2331. msgstr "Débit"
  2332. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171
  2333. msgctxt "@label"
  2334. msgid "Compatibility Mode"
  2335. msgstr "Mode de compatibilité"
  2336. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245
  2337. msgctxt "@label"
  2338. msgid "Travels"
  2339. msgstr "Déplacements"
  2340. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251
  2341. msgctxt "@label"
  2342. msgid "Helpers"
  2343. msgstr "Aides"
  2344. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257
  2345. msgctxt "@label"
  2346. msgid "Shell"
  2347. msgstr "Coque"
  2348. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
  2349. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  2350. msgctxt "@label"
  2351. msgid "Infill"
  2352. msgstr "Remplissage"
  2353. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271
  2354. msgctxt "@label"
  2355. msgid "Starts"
  2356. msgstr "Démarre"
  2357. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
  2358. msgctxt "@label"
  2359. msgid "Only Show Top Layers"
  2360. msgstr "Afficher uniquement les couches supérieures"
  2361. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332
  2362. msgctxt "@label"
  2363. msgid "Show 5 Detailed Layers On Top"
  2364. msgstr "Afficher 5 niveaux détaillés en haut"
  2365. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346
  2366. msgctxt "@label"
  2367. msgid "Top / Bottom"
  2368. msgstr "Haut / bas"
  2369. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350
  2370. msgctxt "@label"
  2371. msgid "Inner Wall"
  2372. msgstr "Paroi interne"
  2373. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419
  2374. msgctxt "@label"
  2375. msgid "min"
  2376. msgstr "min"
  2377. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488
  2378. msgctxt "@label"
  2379. msgid "max"
  2380. msgstr "max"
  2381. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
  2382. msgctxt "@label link to Connect and Cloud interfaces"
  2383. msgid "Manage printer"
  2384. msgstr "Gérer l'imprimante"
  2385. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
  2386. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
  2387. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
  2388. msgctxt "@label"
  2389. msgid "Glass"
  2390. msgstr "Verre"
  2391. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
  2392. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
  2393. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
  2394. msgctxt "@info"
  2395. msgid "Please update your printer's firmware to manage the queue remotely."
  2396. msgstr "Veuillez mettre à jour le Firmware de votre imprimante pour gérer la file d'attente à distance."
  2397. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288
  2398. msgctxt "@info"
  2399. msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  2400. msgstr "Les flux de webcam des imprimantes cloud ne peuvent pas être visualisés depuis Ultimaker Cura. Cliquez sur « Gérer l'imprimante » pour visiter Ultimaker Digital Factory et voir cette webcam."
  2401. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2402. msgctxt "@label:status"
  2403. msgid "Loading..."
  2404. msgstr "Chargement..."
  2405. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2406. msgctxt "@label:status"
  2407. msgid "Unavailable"
  2408. msgstr "Indisponible"
  2409. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2410. msgctxt "@label:status"
  2411. msgid "Unreachable"
  2412. msgstr "Injoignable"
  2413. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  2414. msgctxt "@label:status"
  2415. msgid "Idle"
  2416. msgstr "Inactif"
  2417. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
  2418. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2419. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2420. msgctxt "@label:status"
  2421. msgid "Preparing..."
  2422. msgstr "Préparation..."
  2423. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
  2424. msgctxt "@label:status"
  2425. msgid "Printing"
  2426. msgstr "Impression"
  2427. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
  2428. msgctxt "@label"
  2429. msgid "Untitled"
  2430. msgstr "Sans titre"
  2431. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
  2432. msgctxt "@label"
  2433. msgid "Anonymous"
  2434. msgstr "Anonyme"
  2435. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
  2436. msgctxt "@label:status"
  2437. msgid "Requires configuration changes"
  2438. msgstr "Nécessite des modifications de configuration"
  2439. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
  2440. msgctxt "@action:button"
  2441. msgid "Details"
  2442. msgstr "Détails"
  2443. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
  2444. msgctxt "@label"
  2445. msgid "Unavailable printer"
  2446. msgstr "Imprimante indisponible"
  2447. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
  2448. msgctxt "@label"
  2449. msgid "First available"
  2450. msgstr "Premier disponible"
  2451. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  2452. msgctxt "@label"
  2453. msgid "Queued"
  2454. msgstr "Mis en file d'attente"
  2455. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
  2456. msgctxt "@label link to connect manager"
  2457. msgid "Manage in browser"
  2458. msgstr "Gérer dans le navigateur"
  2459. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2460. msgctxt "@label"
  2461. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2462. msgstr "Il n'y a pas de travaux d'impression dans la file d'attente. Découpez et envoyez une tache pour en ajouter une."
  2463. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
  2464. msgctxt "@label"
  2465. msgid "Print jobs"
  2466. msgstr "Tâches d'impression"
  2467. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
  2468. msgctxt "@label"
  2469. msgid "Total print time"
  2470. msgstr "Temps total d'impression"
  2471. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
  2472. msgctxt "@label"
  2473. msgid "Waiting for"
  2474. msgstr "Attente de"
  2475. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13
  2476. msgctxt "@title:window"
  2477. msgid "Print over network"
  2478. msgstr "Imprimer sur le réseau"
  2479. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54
  2480. msgctxt "@action:button"
  2481. msgid "Print"
  2482. msgstr "Imprimer"
  2483. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82
  2484. msgctxt "@label"
  2485. msgid "Printer selection"
  2486. msgstr "Sélection d'imprimantes"
  2487. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2488. msgctxt "@title:window"
  2489. msgid "Configuration Changes"
  2490. msgstr "Modifications de configuration"
  2491. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  2492. msgctxt "@action:button"
  2493. msgid "Override"
  2494. msgstr "Remplacer"
  2495. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  2496. msgctxt "@label"
  2497. msgid "The assigned printer, %1, requires the following configuration change:"
  2498. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2499. msgstr[0] "L'imprimante assignée, %1, nécessite la modification de configuration suivante :"
  2500. msgstr[1] "L'imprimante assignée, %1, nécessite les modifications de configuration suivantes :"
  2501. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  2502. msgctxt "@label"
  2503. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2504. msgstr "L'imprimante %1 est assignée, mais le projet contient une configuration matérielle inconnue."
  2505. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  2506. msgctxt "@label"
  2507. msgid "Change material %1 from %2 to %3."
  2508. msgstr "Changer le matériau %1 de %2 à %3."
  2509. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  2510. msgctxt "@label"
  2511. msgid "Load %3 as material %1 (This cannot be overridden)."
  2512. msgstr "Charger %3 comme matériau %1 (Ceci ne peut pas être remplacé)."
  2513. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  2514. msgctxt "@label"
  2515. msgid "Change print core %1 from %2 to %3."
  2516. msgstr "Changer le print core %1 de %2 à %3."
  2517. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  2518. msgctxt "@label"
  2519. msgid "Change build plate to %1 (This cannot be overridden)."
  2520. msgstr "Changer le plateau en %1 (Ceci ne peut pas être remplacé)."
  2521. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  2522. msgctxt "@label"
  2523. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2524. msgstr "Si vous sélectionnez « Remplacer », les paramètres de la configuration actuelle de l'imprimante seront utilisés. Cela peut entraîner l'échec de l'impression."
  2525. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  2526. msgctxt "@label"
  2527. msgid "Aluminum"
  2528. msgstr "Aluminium"
  2529. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  2530. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2531. msgctxt "@label:status"
  2532. msgid "Finished"
  2533. msgstr "Terminé"
  2534. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2535. msgctxt "@label:status"
  2536. msgid "Aborting..."
  2537. msgstr "Abandon..."
  2538. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2539. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2540. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2541. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2542. msgctxt "@label:status"
  2543. msgid "Aborted"
  2544. msgstr "Abandonné"
  2545. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2546. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2547. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2548. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2549. msgctxt "@label:status"
  2550. msgid "Failed"
  2551. msgstr "Échec"
  2552. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  2553. msgctxt "@label:status"
  2554. msgid "Pausing..."
  2555. msgstr "Mise en pause..."
  2556. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  2557. msgctxt "@label:status"
  2558. msgid "Paused"
  2559. msgstr "En pause"
  2560. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  2561. msgctxt "@label:status"
  2562. msgid "Resuming..."
  2563. msgstr "Reprise..."
  2564. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108
  2565. msgctxt "@label:status"
  2566. msgid "Action required"
  2567. msgstr "Action requise"
  2568. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110
  2569. msgctxt "@label:status"
  2570. msgid "Finishes %1 at %2"
  2571. msgstr "Finit %1 à %2"
  2572. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  2573. msgctxt "@title:window"
  2574. msgid "Connect to Networked Printer"
  2575. msgstr "Connecter à l'imprimante en réseau"
  2576. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2577. msgctxt "@label"
  2578. msgid "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."
  2579. msgstr "Pour imprimer directement sur votre imprimante via le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble Ethernet 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."
  2580. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2581. msgctxt "@label"
  2582. msgid "Select your printer from the list below:"
  2583. msgstr "Sélectionnez votre imprimante dans la liste ci-dessous :"
  2584. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  2585. msgctxt "@action:button"
  2586. msgid "Edit"
  2587. msgstr "Modifier"
  2588. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
  2589. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138
  2590. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
  2591. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55
  2592. msgctxt "@action:button"
  2593. msgid "Remove"
  2594. msgstr "Supprimer"
  2595. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  2596. msgctxt "@action:button"
  2597. msgid "Refresh"
  2598. msgstr "Rafraîchir"
  2599. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  2600. msgctxt "@label"
  2601. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2602. 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>"
  2603. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
  2604. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  2605. msgctxt "@label"
  2606. msgid "Type"
  2607. msgstr "Type"
  2608. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
  2609. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  2610. msgctxt "@label"
  2611. msgid "Firmware version"
  2612. msgstr "Version du firmware"
  2613. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
  2614. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  2615. msgctxt "@label"
  2616. msgid "Address"
  2617. msgstr "Adresse"
  2618. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  2619. msgctxt "@label"
  2620. msgid "This printer is not set up to host a group of printers."
  2621. msgstr "Cette imprimante n'est pas configurée pour héberger un groupe d'imprimantes."
  2622. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  2623. msgctxt "@label"
  2624. msgid "This printer is the host for a group of %1 printers."
  2625. msgstr "Cette imprimante est l'hôte d'un groupe d'imprimantes %1."
  2626. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  2627. msgctxt "@label"
  2628. msgid "The printer at this address has not yet responded."
  2629. msgstr "L'imprimante à cette adresse n'a pas encore répondu."
  2630. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  2631. msgctxt "@action:button"
  2632. msgid "Connect"
  2633. msgstr "Connecter"
  2634. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  2635. msgctxt "@title:window"
  2636. msgid "Invalid IP address"
  2637. msgstr "Adresse IP non valide"
  2638. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2639. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  2640. msgctxt "@text"
  2641. msgid "Please enter a valid IP address."
  2642. msgstr "Veuillez saisir une adresse IP valide."
  2643. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  2644. msgctxt "@title:window"
  2645. msgid "Printer Address"
  2646. msgstr "Adresse de l'imprimante"
  2647. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
  2648. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  2649. msgctxt "@label"
  2650. msgid "Enter the IP address of your printer on the network."
  2651. msgstr "Saisissez l'adresse IP de votre imprimante sur le réseau."
  2652. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  2653. msgctxt "@label"
  2654. msgid "Move to top"
  2655. msgstr "Déplacer l'impression en haut"
  2656. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  2657. msgctxt "@label"
  2658. msgid "Delete"
  2659. msgstr "Effacer"
  2660. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  2661. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290
  2662. msgctxt "@label"
  2663. msgid "Resume"
  2664. msgstr "Reprendre"
  2665. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  2666. msgctxt "@label"
  2667. msgid "Pausing..."
  2668. msgstr "Mise en pause..."
  2669. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  2670. msgctxt "@label"
  2671. msgid "Resuming..."
  2672. msgstr "Reprise..."
  2673. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  2674. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285
  2675. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294
  2676. msgctxt "@label"
  2677. msgid "Pause"
  2678. msgstr "Pause"
  2679. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2680. msgctxt "@label"
  2681. msgid "Aborting..."
  2682. msgstr "Abandon..."
  2683. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2684. msgctxt "@label"
  2685. msgid "Abort"
  2686. msgstr "Abandonner"
  2687. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  2688. msgctxt "@label %1 is the name of a print job."
  2689. msgid "Are you sure you want to move %1 to the top of the queue?"
  2690. msgstr "Êtes-vous sûr de vouloir déplacer %1 en haut de la file d'attente ?"
  2691. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2692. msgctxt "@window:title"
  2693. msgid "Move print job to top"
  2694. msgstr "Déplacer l'impression en haut de la file d'attente"
  2695. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  2696. msgctxt "@label %1 is the name of a print job."
  2697. msgid "Are you sure you want to delete %1?"
  2698. msgstr "Êtes-vous sûr de vouloir supprimer %1 ?"
  2699. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  2700. msgctxt "@window:title"
  2701. msgid "Delete print job"
  2702. msgstr "Supprimer l'impression"
  2703. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  2704. msgctxt "@label %1 is the name of a print job."
  2705. msgid "Are you sure you want to abort %1?"
  2706. msgstr "Êtes-vous sûr de vouloir annuler %1 ?"
  2707. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
  2708. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336
  2709. msgctxt "@window:title"
  2710. msgid "Abort print"
  2711. msgstr "Abandonner l'impression"
  2712. #: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100
  2713. msgctxt "@info"
  2714. msgid ""
  2715. "Please make sure your printer has a connection:\n"
  2716. "- Check if the printer is turned on.\n"
  2717. "- Check if the printer is connected to the network.\n"
  2718. "- Check if you are signed in to discover cloud-connected printers."
  2719. msgstr ""
  2720. "Assurez-vous que votre imprimante est connectée :\n"
  2721. "- Vérifiez si l'imprimante est sous tension.\n"
  2722. "- Vérifiez si l'imprimante est connectée au réseau.- Vérifiez si vous êtes connecté pour découvrir les imprimantes connectées au cloud."
  2723. #: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117
  2724. msgctxt "@info"
  2725. msgid "Please connect your printer to the network."
  2726. msgstr "Veuillez connecter votre imprimante au réseau."
  2727. #: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155
  2728. msgctxt "@label link to technical assistance"
  2729. msgid "View user manuals online"
  2730. msgstr "Voir les manuels d'utilisation en ligne"
  2731. #: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172
  2732. msgctxt "@info"
  2733. msgid "In order to monitor your print from Cura, please connect the printer."
  2734. msgstr "Pour surveiller votre impression depuis Cura, veuillez connecter l'imprimante."
  2735. #: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22
  2736. msgctxt "@info:tooltip"
  2737. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  2738. msgstr "Certains éléments pourraient causer des problèmes à cette impression. Cliquez pour voir les conseils d'ajustement."
  2739. #: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27
  2740. msgctxt "@info:tooltip"
  2741. msgid "3D View"
  2742. msgstr "Vue 3D"
  2743. #: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40
  2744. msgctxt "@info:tooltip"
  2745. msgid "Front View"
  2746. msgstr "Vue de face"
  2747. #: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53
  2748. msgctxt "@info:tooltip"
  2749. msgid "Top View"
  2750. msgstr "Vue du dessus"
  2751. #: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66
  2752. msgctxt "@info:tooltip"
  2753. msgid "Left View"
  2754. msgstr "Vue gauche"
  2755. #: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79
  2756. msgctxt "@info:tooltip"
  2757. msgid "Right View"
  2758. msgstr "Vue droite"
  2759. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59
  2760. msgctxt "@label"
  2761. msgid "Object list"
  2762. msgstr "Liste d'objets"
  2763. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
  2764. msgctxt "@action:button"
  2765. msgid "Marketplace"
  2766. msgstr "Marché en ligne"
  2767. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
  2768. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13
  2769. msgctxt "@title:menu menubar:toplevel"
  2770. msgid "&File"
  2771. msgstr "&Fichier"
  2772. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  2773. msgctxt "@title:menu menubar:toplevel"
  2774. msgid "&Edit"
  2775. msgstr "&Modifier"
  2776. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
  2777. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12
  2778. msgctxt "@title:menu menubar:toplevel"
  2779. msgid "&View"
  2780. msgstr "&Visualisation"
  2781. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60
  2782. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2783. msgctxt "@title:menu menubar:toplevel"
  2784. msgid "&Settings"
  2785. msgstr "&Paramètres"
  2786. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66
  2787. msgctxt "@title:menu menubar:toplevel"
  2788. msgid "E&xtensions"
  2789. msgstr "E&xtensions"
  2790. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112
  2791. msgctxt "@title:menu menubar:toplevel"
  2792. msgid "P&references"
  2793. msgstr "P&références"
  2794. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120
  2795. msgctxt "@title:menu menubar:toplevel"
  2796. msgid "&Help"
  2797. msgstr "&Aide"
  2798. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166
  2799. msgctxt "@title:window"
  2800. msgid "New project"
  2801. msgstr "Nouveau projet"
  2802. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167
  2803. msgctxt "@info:question"
  2804. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  2805. 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."
  2806. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  2807. msgctxt "@label:PrintjobStatus"
  2808. msgid "Slicing..."
  2809. msgstr "Découpe en cours..."
  2810. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82
  2811. msgctxt "@label:PrintjobStatus"
  2812. msgid "Unable to slice"
  2813. msgstr "Impossible de découper"
  2814. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121
  2815. msgctxt "@button"
  2816. msgid "Processing"
  2817. msgstr "Traitement"
  2818. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121
  2819. msgctxt "@button"
  2820. msgid "Slice"
  2821. msgstr "Découper"
  2822. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122
  2823. msgctxt "@label"
  2824. msgid "Start the slicing process"
  2825. msgstr "Démarrer le processus de découpe"
  2826. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136
  2827. msgctxt "@button"
  2828. msgid "Cancel"
  2829. msgstr "Annuler"
  2830. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  2831. msgctxt "@label"
  2832. msgid "Time estimation"
  2833. msgstr "Estimation de durée"
  2834. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  2835. msgctxt "@label"
  2836. msgid "Material estimation"
  2837. msgstr "Estimation du matériau"
  2838. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  2839. msgctxt "@label m for meter"
  2840. msgid "%1m"
  2841. msgstr "%1m"
  2842. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  2843. msgctxt "@label g for grams"
  2844. msgid "%1g"
  2845. msgstr "%1g"
  2846. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  2847. msgctxt "@label"
  2848. msgid "No time estimation available"
  2849. msgstr "Aucune estimation de la durée n'est disponible"
  2850. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  2851. msgctxt "@label"
  2852. msgid "No cost estimation available"
  2853. msgstr "Aucune estimation des coûts n'est disponible"
  2854. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  2855. msgctxt "@button"
  2856. msgid "Preview"
  2857. msgstr "Aperçu"
  2858. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  2859. msgctxt "@label"
  2860. msgid "Add a printer"
  2861. msgstr "Ajouter une imprimante"
  2862. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  2863. msgctxt "@label"
  2864. msgid "Add a networked printer"
  2865. msgstr "Ajouter une imprimante en réseau"
  2866. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
  2867. msgctxt "@label"
  2868. msgid "Add a non-networked printer"
  2869. msgstr "Ajouter une imprimante hors réseau"
  2870. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  2871. msgctxt "@label"
  2872. msgid "Add a Cloud printer"
  2873. msgstr "Ajouter une imprimante cloud"
  2874. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  2875. msgctxt "@label"
  2876. msgid "Waiting for Cloud response"
  2877. msgstr "En attente d'une réponse cloud"
  2878. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  2879. msgctxt "@label"
  2880. msgid "No printers found in your account?"
  2881. msgstr "Aucune imprimante trouvée dans votre compte ?"
  2882. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  2883. msgctxt "@label"
  2884. msgid "The following printers in your account have been added in Cura:"
  2885. msgstr "Les imprimantes suivantes de votre compte ont été ajoutées à Cura :"
  2886. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
  2887. msgctxt "@button"
  2888. msgid "Add printer manually"
  2889. msgstr "Ajouter l'imprimante manuellement"
  2890. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  2891. msgctxt "@label"
  2892. msgid "Add printer by IP address"
  2893. msgstr "Ajouter une imprimante par adresse IP"
  2894. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  2895. msgctxt "@text"
  2896. msgid "Enter your printer's IP address."
  2897. msgstr "Saisissez l'adresse IP de votre imprimante."
  2898. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  2899. msgctxt "@button"
  2900. msgid "Add"
  2901. msgstr "Ajouter"
  2902. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  2903. msgctxt "@label"
  2904. msgid "Could not connect to device."
  2905. msgstr "Impossible de se connecter à l'appareil."
  2906. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
  2907. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  2908. msgctxt "@label"
  2909. msgid "Can't connect to your Ultimaker printer?"
  2910. msgstr "Impossible de vous connecter à votre imprimante Ultimaker ?"
  2911. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  2912. msgctxt "@label"
  2913. msgid "The printer at this address has not responded yet."
  2914. msgstr "L'imprimante à cette adresse n'a pas encore répondu."
  2915. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  2916. msgctxt "@label"
  2917. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  2918. msgstr "Cette imprimante ne peut pas être ajoutée parce qu'il s'agit d'une imprimante inconnue ou de l'hôte d'un groupe."
  2919. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  2920. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707
  2921. msgctxt "@button"
  2922. msgid "Back"
  2923. msgstr "Précédent"
  2924. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  2925. msgctxt "@button"
  2926. msgid "Connect"
  2927. msgstr "Se connecter"
  2928. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  2929. msgctxt "@label"
  2930. msgid "User Agreement"
  2931. msgstr "Accord utilisateur"
  2932. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  2933. msgctxt "@button"
  2934. msgid "Decline and close"
  2935. msgstr "Décliner et fermer"
  2936. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  2937. msgctxt "@label"
  2938. msgid "Welcome to Ultimaker Cura"
  2939. msgstr "Bienvenue dans Ultimaker Cura"
  2940. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
  2941. msgctxt "@text"
  2942. msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
  2943. msgstr ""
  2944. "Veuillez suivre ces étapes pour configurer\n"
  2945. "Ultimaker Cura. Cela ne prendra que quelques instants."
  2946. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
  2947. msgctxt "@button"
  2948. msgid "Get started"
  2949. msgstr "Prise en main"
  2950. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64
  2951. #: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20
  2952. msgctxt "@label"
  2953. msgid "Sign in to the Ultimaker platform"
  2954. msgstr "Connectez-vous à la plateforme Ultimaker"
  2955. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124
  2956. msgctxt "@text"
  2957. msgid "Add material settings and plugins from the Marketplace"
  2958. msgstr "Ajoutez des paramètres de matériaux et des plug-ins depuis la Marketplace"
  2959. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154
  2960. msgctxt "@text"
  2961. msgid "Backup and sync your material settings and plugins"
  2962. msgstr "Sauvegardez et synchronisez vos paramètres de matériaux et vos plug-ins"
  2963. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184
  2964. msgctxt "@text"
  2965. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  2966. msgstr "Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker"
  2967. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202
  2968. msgctxt "@button"
  2969. msgid "Skip"
  2970. msgstr "Ignorer"
  2971. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214
  2972. msgctxt "@text"
  2973. msgid "Create a free Ultimaker Account"
  2974. msgstr "Créez gratuitement un compte Ultimaker"
  2975. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234
  2976. msgctxt "@label"
  2977. msgid "Manufacturer"
  2978. msgstr "Fabricant"
  2979. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251
  2980. msgctxt "@label"
  2981. msgid "Profile author"
  2982. msgstr "Auteur du profil"
  2983. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269
  2984. msgctxt "@label"
  2985. msgid "Printer name"
  2986. msgstr "Nom de l'imprimante"
  2987. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278
  2988. msgctxt "@text"
  2989. msgid "Please name your printer"
  2990. msgstr "Veuillez nommer votre imprimante"
  2991. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  2992. msgctxt "@label"
  2993. msgid "There is no printer found over your network."
  2994. msgstr "Aucune imprimante n'a été trouvée sur votre réseau."
  2995. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
  2996. msgctxt "@label"
  2997. msgid "Refresh"
  2998. msgstr "Rafraîchir"
  2999. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
  3000. msgctxt "@label"
  3001. msgid "Add printer by IP"
  3002. msgstr "Ajouter une imprimante par IP"
  3003. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
  3004. msgctxt "@label"
  3005. msgid "Add cloud printer"
  3006. msgstr "Ajouter une imprimante cloud"
  3007. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241
  3008. msgctxt "@label"
  3009. msgid "Troubleshooting"
  3010. msgstr "Dépannage"
  3011. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  3012. msgctxt "@label"
  3013. msgid "Help us to improve Ultimaker Cura"
  3014. msgstr "Aidez-nous à améliorer Ultimaker Cura"
  3015. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  3016. msgctxt "@text"
  3017. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  3018. msgstr "Ultimaker Cura recueille des données anonymes pour améliorer la qualité d'impression et l'expérience utilisateur, notamment :"
  3019. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  3020. msgctxt "@text"
  3021. msgid "Machine types"
  3022. msgstr "Types de machines"
  3023. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  3024. msgctxt "@text"
  3025. msgid "Material usage"
  3026. msgstr "Utilisation du matériau"
  3027. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  3028. msgctxt "@text"
  3029. msgid "Number of slices"
  3030. msgstr "Nombre de découpes"
  3031. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  3032. msgctxt "@text"
  3033. msgid "Print settings"
  3034. msgstr "Paramètres d'impression"
  3035. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  3036. msgctxt "@text"
  3037. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  3038. msgstr "Les données recueillies par Ultimaker Cura ne contiendront aucun renseignement personnel."
  3039. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  3040. msgctxt "@text"
  3041. msgid "More information"
  3042. msgstr "Plus d'informations"
  3043. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29
  3044. msgctxt "@label"
  3045. msgid "What's New"
  3046. msgstr "Nouveautés"
  3047. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  3048. msgctxt "@label"
  3049. msgid "Empty"
  3050. msgstr "Vide"
  3051. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  3052. msgctxt "@label"
  3053. msgid "Release Notes"
  3054. msgstr "Notes de version"
  3055. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  3056. msgctxt "@title:window The argument is the application name."
  3057. msgid "About %1"
  3058. msgstr "À propos de %1"
  3059. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  3060. msgctxt "@label"
  3061. msgid "version: %1"
  3062. msgstr "version : %1"
  3063. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  3064. msgctxt "@label"
  3065. msgid "End-to-end solution for fused filament 3D printing."
  3066. msgstr "Solution complète pour l'impression 3D par dépôt de filament fondu."
  3067. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  3068. msgctxt "@info:credit"
  3069. msgid ""
  3070. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  3071. "Cura proudly uses the following open source projects:"
  3072. msgstr ""
  3073. "Cura a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker.\n"
  3074. "Cura est fier d'utiliser les projets open source suivants :"
  3075. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  3076. msgctxt "@label"
  3077. msgid "Graphical user interface"
  3078. msgstr "Interface utilisateur graphique"
  3079. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  3080. msgctxt "@label"
  3081. msgid "Application framework"
  3082. msgstr "Cadre d'application"
  3083. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  3084. msgctxt "@label"
  3085. msgid "G-code generator"
  3086. msgstr "Générateur G-Code"
  3087. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  3088. msgctxt "@label"
  3089. msgid "Interprocess communication library"
  3090. msgstr "Bibliothèque de communication interprocess"
  3091. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  3092. msgctxt "@label"
  3093. msgid "Programming language"
  3094. msgstr "Langage de programmation"
  3095. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  3096. msgctxt "@label"
  3097. msgid "GUI framework"
  3098. msgstr "Cadre IUG"
  3099. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  3100. msgctxt "@label"
  3101. msgid "GUI framework bindings"
  3102. msgstr "Liens cadre IUG"
  3103. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  3104. msgctxt "@label"
  3105. msgid "C/C++ Binding library"
  3106. msgstr "Bibliothèque C/C++ Binding"
  3107. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  3108. msgctxt "@label"
  3109. msgid "Data interchange format"
  3110. msgstr "Format d'échange de données"
  3111. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  3112. msgctxt "@label"
  3113. msgid "Support library for scientific computing"
  3114. msgstr "Prise en charge de la bibliothèque pour le calcul scientifique"
  3115. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  3116. msgctxt "@label"
  3117. msgid "Support library for faster math"
  3118. msgstr "Prise en charge de la bibliothèque pour des maths plus rapides"
  3119. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  3120. msgctxt "@label"
  3121. msgid "Support library for handling STL files"
  3122. msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers STL"
  3123. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  3124. msgctxt "@label"
  3125. msgid "Support library for handling planar objects"
  3126. msgstr "Prise en charge de la bibliothèque pour le traitement des objets planaires"
  3127. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  3128. msgctxt "@label"
  3129. msgid "Support library for handling triangular meshes"
  3130. msgstr "Prise en charge de la bibliothèque pour le traitement des mailles triangulaires"
  3131. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  3132. msgctxt "@label"
  3133. msgid "Support library for handling 3MF files"
  3134. msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers 3MF"
  3135. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  3136. msgctxt "@label"
  3137. msgid "Support library for file metadata and streaming"
  3138. msgstr "Prise en charge de la bibliothèque pour les métadonnées et le streaming de fichiers"
  3139. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  3140. msgctxt "@label"
  3141. msgid "Serial communication library"
  3142. msgstr "Bibliothèque de communication série"
  3143. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  3144. msgctxt "@label"
  3145. msgid "ZeroConf discovery library"
  3146. msgstr "Bibliothèque de découverte ZeroConf"
  3147. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  3148. msgctxt "@label"
  3149. msgid "Polygon clipping library"
  3150. msgstr "Bibliothèque de découpe polygone"
  3151. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  3152. msgctxt "@Label"
  3153. msgid "Static type checker for Python"
  3154. msgstr "Vérificateur de type statique pour Python"
  3155. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  3156. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  3157. msgctxt "@Label"
  3158. msgid "Root Certificates for validating SSL trustworthiness"
  3159. msgstr "Certificats racines pour valider la fiabilité SSL"
  3160. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  3161. msgctxt "@Label"
  3162. msgid "Python Error tracking library"
  3163. msgstr "Bibliothèque de suivi des erreurs Python"
  3164. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3165. msgctxt "@label"
  3166. msgid "Polygon packing library, developed by Prusa Research"
  3167. msgstr "Bibliothèque d'emballage de polygones, développée par Prusa Research"
  3168. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  3169. msgctxt "@label"
  3170. msgid "Python bindings for libnest2d"
  3171. msgstr "Liens en python pour libnest2d"
  3172. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161
  3173. msgctxt "@label"
  3174. msgid "Support library for system keyring access"
  3175. msgstr "Bibliothèque de support pour l'accès au trousseau de clés du système"
  3176. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  3177. msgctxt "@label"
  3178. msgid "Python extensions for Microsoft Windows"
  3179. msgstr "Extensions Python pour Microsoft Windows"
  3180. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  3181. msgctxt "@label"
  3182. msgid "Font"
  3183. msgstr "Police"
  3184. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  3185. msgctxt "@label"
  3186. msgid "SVG icons"
  3187. msgstr "Icônes SVG"
  3188. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165
  3189. msgctxt "@label"
  3190. msgid "Linux cross-distribution application deployment"
  3191. msgstr "Déploiement d'applications sur multiples distributions Linux"
  3192. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
  3193. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645
  3194. msgctxt "@title:window"
  3195. msgid "Open file(s)"
  3196. msgstr "Ouvrir le(s) fichier(s)"
  3197. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  3198. msgctxt "@text:window"
  3199. 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?"
  3200. 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 ?"
  3201. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
  3202. msgctxt "@action:button"
  3203. msgid "Import all as models"
  3204. msgstr "Importer tout comme modèles"
  3205. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16
  3206. msgctxt "@title:window"
  3207. msgid "Save Project"
  3208. msgstr "Enregistrer le projet"
  3209. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174
  3210. msgctxt "@action:label"
  3211. msgid "Extruder %1"
  3212. msgstr "Extrudeuse %1"
  3213. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190
  3214. msgctxt "@action:label"
  3215. msgid "%1 & material"
  3216. msgstr "%1 & matériau"
  3217. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192
  3218. msgctxt "@action:label"
  3219. msgid "Material"
  3220. msgstr "Matériau"
  3221. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282
  3222. msgctxt "@action:label"
  3223. msgid "Don't show project summary on save again"
  3224. msgstr "Ne pas afficher à nouveau le résumé du projet lors de l'enregistrement"
  3225. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301
  3226. msgctxt "@action:button"
  3227. msgid "Save"
  3228. msgstr "Enregistrer"
  3229. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16
  3230. msgctxt "@title:window"
  3231. msgid "Discard or Keep changes"
  3232. msgstr "Annuler ou conserver les modifications"
  3233. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58
  3234. msgctxt "@text:window, %1 is a profile name"
  3235. msgid ""
  3236. "You have customized some profile settings.\n"
  3237. "Would you like to Keep these changed settings after switching profiles?\n"
  3238. "Alternatively, you can discard the changes to load the defaults from '%1'."
  3239. msgstr ""
  3240. "Vous avez personnalisé certains paramètres de profil.\n"
  3241. "Souhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?\n"
  3242. "Vous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'."
  3243. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112
  3244. msgctxt "@title:column"
  3245. msgid "Profile settings"
  3246. msgstr "Paramètres du profil"
  3247. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126
  3248. msgctxt "@title:column"
  3249. msgid "Current changes"
  3250. msgstr "Modifications actuelles"
  3251. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
  3252. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755
  3253. msgctxt "@option:discardOrKeep"
  3254. msgid "Always ask me this"
  3255. msgstr "Toujours me demander"
  3256. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161
  3257. msgctxt "@option:discardOrKeep"
  3258. msgid "Discard and never ask again"
  3259. msgstr "Annuler et ne plus me demander"
  3260. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162
  3261. msgctxt "@option:discardOrKeep"
  3262. msgid "Keep and never ask again"
  3263. msgstr "Conserver et ne plus me demander"
  3264. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199
  3265. msgctxt "@action:button"
  3266. msgid "Discard changes"
  3267. msgstr "Annuler les modifications"
  3268. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212
  3269. msgctxt "@action:button"
  3270. msgid "Keep changes"
  3271. msgstr "Conserver les modifications"
  3272. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  3273. msgctxt "@title:window"
  3274. msgid "Open project file"
  3275. msgstr "Ouvrir un fichier de projet"
  3276. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
  3277. msgctxt "@text:window"
  3278. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3279. msgstr "Ceci est un fichier de projet Cura. Souhaitez-vous l'ouvrir comme projet ou en importer les modèles ?"
  3280. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
  3281. msgctxt "@text:window"
  3282. msgid "Remember my choice"
  3283. msgstr "Se souvenir de mon choix"
  3284. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
  3285. msgctxt "@action:button"
  3286. msgid "Open as project"
  3287. msgstr "Ouvrir comme projet"
  3288. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
  3289. msgctxt "@action:button"
  3290. msgid "Import models"
  3291. msgstr "Importer les modèles"
  3292. #: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140
  3293. msgctxt "@label"
  3294. msgid "Active print"
  3295. msgstr "Activer l'impression"
  3296. #: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148
  3297. msgctxt "@label"
  3298. msgid "Job Name"
  3299. msgstr "Nom de la tâche"
  3300. #: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156
  3301. msgctxt "@label"
  3302. msgid "Printing Time"
  3303. msgstr "Durée d'impression"
  3304. #: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164
  3305. msgctxt "@label"
  3306. msgid "Estimated time left"
  3307. msgstr "Durée restante estimée"
  3308. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  3309. msgctxt "@status"
  3310. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3311. msgstr "L'imprimante cloud est hors ligne. Veuillez vérifier si l'imprimante est activée et connectée à Internet."
  3312. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  3313. msgctxt "@status"
  3314. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  3315. msgstr "Cette imprimante n'est pas associée à votre compte. Veuillez visiter l'Ultimaker Digital Factory pour établir une connexion."
  3316. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  3317. msgctxt "@status"
  3318. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  3319. msgstr "La connexion cloud est actuellement indisponible. Veuillez vous connecter pour connecter l'imprimante cloud."
  3320. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  3321. msgctxt "@status"
  3322. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  3323. msgstr "La connexion cloud est actuellement indisponible. Veuillez vérifier votre connexion Internet."
  3324. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252
  3325. msgctxt "@button"
  3326. msgid "Add printer"
  3327. msgstr "Ajouter une imprimante"
  3328. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269
  3329. msgctxt "@button"
  3330. msgid "Manage printers"
  3331. msgstr "Gérer les imprimantes"
  3332. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3333. msgctxt "@label"
  3334. msgid "Connected printers"
  3335. msgstr "Imprimantes connectées"
  3336. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3337. msgctxt "@label"
  3338. msgid "Preset printers"
  3339. msgstr "Imprimantes préréglées"
  3340. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  3341. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
  3342. msgctxt "@label"
  3343. msgid "Print settings"
  3344. msgstr "Paramètres d'impression"
  3345. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  3346. msgctxt "@label shown when we load a Gcode file"
  3347. msgid "Print setup disabled. G-code file can not be modified."
  3348. msgstr "Configuration d'impression désactivée. Le fichier G-Code ne peut pas être modifié."
  3349. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  3350. msgctxt "@label"
  3351. msgid "Profile"
  3352. msgstr "Profil"
  3353. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
  3354. msgctxt "@tooltip"
  3355. msgid ""
  3356. "Some setting/override values are different from the values stored in the profile.\n"
  3357. "\n"
  3358. "Click to open the profile manager."
  3359. msgstr ""
  3360. "Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. \n"
  3361. "\n"
  3362. "Cliquez pour ouvrir le gestionnaire de profils."
  3363. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
  3364. msgctxt "@label:header"
  3365. msgid "Custom profiles"
  3366. msgstr "Personnaliser les profils"
  3367. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
  3368. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564
  3369. msgctxt "@action:button"
  3370. msgid "Discard current changes"
  3371. msgstr "Ignorer les modifications actuelles"
  3372. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  3373. msgctxt "@button"
  3374. msgid "Recommended"
  3375. msgstr "Recommandé"
  3376. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  3377. msgctxt "@button"
  3378. msgid "Custom"
  3379. msgstr "Personnalisé"
  3380. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  3381. msgctxt "@label:Should be short"
  3382. msgid "On"
  3383. msgstr "On"
  3384. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  3385. msgctxt "@label:Should be short"
  3386. msgid "Off"
  3387. msgstr "Off"
  3388. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34
  3389. msgctxt "@label"
  3390. msgid "Experimental"
  3391. msgstr "Expérimental"
  3392. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  3393. msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
  3394. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  3395. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  3396. msgstr[0] "Il n'y a pas de profil %1 pour la configuration dans l'extrudeur %2. L'intention par défaut sera utilisée à la place"
  3397. msgstr[1] "Il n'y a pas de profil %1 pour les configurations dans les extrudeurs %2. L'intention par défaut sera utilisée à la place"
  3398. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
  3399. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736
  3400. msgctxt "@label"
  3401. msgid "Profiles"
  3402. msgstr "Profils"
  3403. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82
  3404. msgctxt "@tooltip"
  3405. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  3406. msgstr "Vous avez modifié certains paramètres du profil. Si vous souhaitez les modifier, allez dans le mode Personnaliser."
  3407. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  3408. msgctxt "@label"
  3409. msgid "Support"
  3410. msgstr "Support"
  3411. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72
  3412. msgctxt "@label"
  3413. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  3414. 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."
  3415. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196
  3416. msgctxt "@label"
  3417. msgid "Gradual infill"
  3418. msgstr "Remplissage graduel"
  3419. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235
  3420. msgctxt "@label"
  3421. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  3422. msgstr "Un remplissage graduel augmentera la quantité de remplissage vers le haut."
  3423. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  3424. msgctxt "@label"
  3425. msgid "Adhesion"
  3426. msgstr "Adhérence"
  3427. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75
  3428. msgctxt "@label"
  3429. 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."
  3430. 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."
  3431. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  3432. msgctxt "@title:menu menubar:file"
  3433. msgid "Save Project..."
  3434. msgstr "Sauvegarder le projet..."
  3435. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25
  3436. msgctxt "@label:category menu label"
  3437. msgid "Network enabled printers"
  3438. msgstr "Imprimantes réseau"
  3439. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42
  3440. msgctxt "@label:category menu label"
  3441. msgid "Local printers"
  3442. msgstr "Imprimantes locales"
  3443. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3444. msgctxt "@label:category menu label"
  3445. msgid "Material"
  3446. msgstr "Matériau"
  3447. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54
  3448. msgctxt "@label:category menu label"
  3449. msgid "Favorites"
  3450. msgstr "Favoris"
  3451. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79
  3452. msgctxt "@label:category menu label"
  3453. msgid "Generic"
  3454. msgstr "Générique"
  3455. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27
  3456. msgctxt "@label"
  3457. msgid "Print Selected Model With:"
  3458. msgid_plural "Print Selected Models With:"
  3459. msgstr[0] "Imprimer le modèle sélectionné avec :"
  3460. msgstr[1] "Imprimer les modèles sélectionnés avec :"
  3461. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116
  3462. msgctxt "@title:window"
  3463. msgid "Multiply Selected Model"
  3464. msgid_plural "Multiply Selected Models"
  3465. msgstr[0] "Multiplier le modèle sélectionné"
  3466. msgstr[1] "Multiplier les modèles sélectionnés"
  3467. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141
  3468. msgctxt "@label"
  3469. msgid "Number of Copies"
  3470. msgstr "Nombre de copies"
  3471. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41
  3472. msgctxt "@title:menu menubar:file"
  3473. msgid "&Save Project..."
  3474. msgstr "&Enregistrer le projet..."
  3475. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74
  3476. msgctxt "@title:menu menubar:file"
  3477. msgid "&Export..."
  3478. msgstr "E&xporter..."
  3479. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85
  3480. msgctxt "@action:inmenu menubar:file"
  3481. msgid "Export Selection..."
  3482. msgstr "Exporter la sélection..."
  3483. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3484. msgctxt "@header"
  3485. msgid "Configurations"
  3486. msgstr "Configurations"
  3487. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  3488. msgctxt "@header"
  3489. msgid "Custom"
  3490. msgstr "Personnalisé"
  3491. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  3492. msgctxt "@label"
  3493. msgid "Printer"
  3494. msgstr "Imprimante"
  3495. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  3496. msgctxt "@label"
  3497. msgid "Enabled"
  3498. msgstr "Activé"
  3499. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
  3500. msgctxt "@label"
  3501. msgid "Material"
  3502. msgstr "Matériau"
  3503. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407
  3504. msgctxt "@label"
  3505. msgid "Use glue for better adhesion with this material combination."
  3506. msgstr "Utiliser de la colle pour une meilleure adhérence avec cette combinaison de matériaux."
  3507. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102
  3508. msgctxt "@tooltip"
  3509. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  3510. msgstr "La configuration de cet extrudeur n'est pas autorisée et interdit la découpe."
  3511. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106
  3512. msgctxt "@tooltip"
  3513. msgid "There are no profiles matching the configuration of this extruder."
  3514. msgstr "Aucun profil ne correspond à la configuration de cet extrudeur."
  3515. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253
  3516. msgctxt "@label"
  3517. msgid "Select configuration"
  3518. msgstr "Sélectionner la configuration"
  3519. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364
  3520. msgctxt "@label"
  3521. msgid "Configurations"
  3522. msgstr "Configurations"
  3523. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  3524. msgctxt "@label"
  3525. msgid "Loading available configurations from the printer..."
  3526. msgstr "Chargement des configurations disponibles à partir de l'imprimante..."
  3527. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  3528. msgctxt "@label"
  3529. msgid "The configurations are not available because the printer is disconnected."
  3530. msgstr "Les configurations ne sont pas disponibles car l'imprimante est déconnectée."
  3531. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  3532. msgctxt "@label"
  3533. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3534. msgstr "Cette configuration n'est pas disponible car %1 n'est pas reconnu. Veuillez visiter %2 pour télécharger le profil matériel correct."
  3535. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  3536. msgctxt "@label"
  3537. msgid "Marketplace"
  3538. msgstr "Marché en ligne"
  3539. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  3540. msgctxt "@title:menu menubar:file"
  3541. msgid "Open File(s)..."
  3542. msgstr "Ouvrir le(s) fichier(s)..."
  3543. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15
  3544. msgctxt "@title:menu menubar:settings"
  3545. msgid "&Printer"
  3546. msgstr "Im&primante"
  3547. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29
  3548. msgctxt "@title:menu"
  3549. msgid "&Material"
  3550. msgstr "&Matériau"
  3551. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44
  3552. msgctxt "@action:inmenu"
  3553. msgid "Set as Active Extruder"
  3554. msgstr "Définir comme extrudeur actif"
  3555. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50
  3556. msgctxt "@action:inmenu"
  3557. msgid "Enable Extruder"
  3558. msgstr "Activer l'extrudeuse"
  3559. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57
  3560. msgctxt "@action:inmenu"
  3561. msgid "Disable Extruder"
  3562. msgstr "Désactiver l'extrudeuse"
  3563. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  3564. msgctxt "@title:menu menubar:file"
  3565. msgid "Open &Recent"
  3566. msgstr "Ouvrir un fichier &récent"
  3567. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  3568. msgctxt "@action:inmenu"
  3569. msgid "Visible Settings"
  3570. msgstr "Paramètres visibles"
  3571. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
  3572. msgctxt "@action:inmenu"
  3573. msgid "Collapse All Categories"
  3574. msgstr "Réduire toutes les catégories"
  3575. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
  3576. msgctxt "@action:inmenu"
  3577. msgid "Manage Setting Visibility..."
  3578. msgstr "Gérer la visibilité des paramètres..."
  3579. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19
  3580. msgctxt "@action:inmenu menubar:view"
  3581. msgid "&Camera position"
  3582. msgstr "Position de la &caméra"
  3583. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45
  3584. msgctxt "@action:inmenu menubar:view"
  3585. msgid "Camera view"
  3586. msgstr "Vue de la caméra"
  3587. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48
  3588. msgctxt "@action:inmenu menubar:view"
  3589. msgid "Perspective"
  3590. msgstr "Perspective"
  3591. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59
  3592. msgctxt "@action:inmenu menubar:view"
  3593. msgid "Orthographic"
  3594. msgstr "Orthographique"
  3595. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79
  3596. msgctxt "@action:inmenu menubar:view"
  3597. msgid "&Build plate"
  3598. msgstr "&Plateau"
  3599. #: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50
  3600. msgctxt "@label"
  3601. msgid "View type"
  3602. msgstr "Type d'affichage"
  3603. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112
  3604. msgctxt "@label"
  3605. msgid "Is printed as support."
  3606. msgstr "Est imprimé comme support."
  3607. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115
  3608. msgctxt "@label"
  3609. msgid "Other models overlapping with this model are modified."
  3610. msgstr "D'autres modèles qui se chevauchent avec ce modèle ont été modifiés."
  3611. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118
  3612. msgctxt "@label"
  3613. msgid "Infill overlapping with this model is modified."
  3614. msgstr "Le chevauchement de remplissage avec ce modèle a été modifié."
  3615. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121
  3616. msgctxt "@label"
  3617. msgid "Overlaps with this model are not supported."
  3618. msgstr "Les chevauchements avec ce modèle ne sont pas pris en charge."
  3619. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128
  3620. msgctxt "@label %1 is the number of settings it overrides."
  3621. msgid "Overrides %1 setting."
  3622. msgid_plural "Overrides %1 settings."
  3623. msgstr[0] "Remplace le paramètre %1."
  3624. msgstr[1] "Remplace les paramètres %1."
  3625. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34
  3626. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477
  3627. msgctxt "@title:tab"
  3628. msgid "Profiles"
  3629. msgstr "Profils"
  3630. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84
  3631. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
  3632. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40
  3633. msgctxt "@action:button"
  3634. msgid "Activate"
  3635. msgstr "Activer"
  3636. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  3637. msgctxt "@label"
  3638. msgid "Create"
  3639. msgstr "Créer"
  3640. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  3641. msgctxt "@label"
  3642. msgid "Duplicate"
  3643. msgstr "Dupliquer"
  3644. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  3645. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63
  3646. msgctxt "@action:button"
  3647. msgid "Rename"
  3648. msgstr "Renommer"
  3649. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167
  3650. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
  3651. msgctxt "@action:button"
  3652. msgid "Import"
  3653. msgstr "Importer"
  3654. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179
  3655. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
  3656. msgctxt "@action:button"
  3657. msgid "Export"
  3658. msgstr "Exporter"
  3659. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  3660. msgctxt "@title:window"
  3661. msgid "Create Profile"
  3662. msgstr "Créer un profil"
  3663. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  3664. msgctxt "@info"
  3665. msgid "Please provide a name for this profile."
  3666. msgstr "Veuillez fournir un nom pour ce profil."
  3667. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263
  3668. msgctxt "@title:window"
  3669. msgid "Duplicate Profile"
  3670. msgstr "Dupliquer un profil"
  3671. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277
  3672. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312
  3673. msgctxt "@title:window"
  3674. msgid "Confirm Remove"
  3675. msgstr "Confirmer la suppression"
  3676. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278
  3677. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
  3678. msgctxt "@label (%1 is object name)"
  3679. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3680. msgstr "Êtes-vous sûr de vouloir supprimer l'objet %1 ? Vous ne pourrez pas revenir en arrière !"
  3681. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294
  3682. msgctxt "@title:window"
  3683. msgid "Rename Profile"
  3684. msgstr "Renommer le profil"
  3685. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307
  3686. msgctxt "@title:window"
  3687. msgid "Import Profile"
  3688. msgstr "Importer un profil"
  3689. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336
  3690. msgctxt "@title:window"
  3691. msgid "Export Profile"
  3692. msgstr "Exporter un profil"
  3693. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399
  3694. msgctxt "@label %1 is printer name"
  3695. msgid "Printer: %1"
  3696. msgstr "Imprimante : %1"
  3697. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557
  3698. msgctxt "@action:button"
  3699. msgid "Update profile with current settings/overrides"
  3700. msgstr "Mettre à jour le profil à l'aide des paramètres / forçages actuels"
  3701. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583
  3702. msgctxt "@action:label"
  3703. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3704. 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."
  3705. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591
  3706. msgctxt "@action:label"
  3707. msgid "Your current settings match the selected profile."
  3708. msgstr "Vos paramètres actuels correspondent au profil sélectionné."
  3709. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609
  3710. msgctxt "@title:tab"
  3711. msgid "Global Settings"
  3712. msgstr "Paramètres généraux"
  3713. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17
  3714. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468
  3715. msgctxt "@title:tab"
  3716. msgid "General"
  3717. msgstr "Général"
  3718. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143
  3719. msgctxt "@label"
  3720. msgid "Interface"
  3721. msgstr "Interface"
  3722. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215
  3723. msgctxt "@label"
  3724. msgid "Currency:"
  3725. msgstr "Devise :"
  3726. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228
  3727. msgctxt "@label"
  3728. msgid "Theme:"
  3729. msgstr "Thème :"
  3730. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273
  3731. msgctxt "@label"
  3732. msgid "You will need to restart the application for these changes to have effect."
  3733. msgstr "Vous devez redémarrer l'application pour que ces changements prennent effet."
  3734. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290
  3735. msgctxt "@info:tooltip"
  3736. msgid "Slice automatically when changing settings."
  3737. msgstr "Découper automatiquement si les paramètres sont modifiés."
  3738. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298
  3739. msgctxt "@option:check"
  3740. msgid "Slice automatically"
  3741. msgstr "Découper automatiquement"
  3742. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312
  3743. msgctxt "@label"
  3744. msgid "Viewport behavior"
  3745. msgstr "Comportement Viewport"
  3746. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320
  3747. msgctxt "@info:tooltip"
  3748. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3749. msgstr "Surligne les parties non supportées du modèle en rouge. Sans ajouter de support, ces zones ne s'imprimeront pas correctement."
  3750. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329
  3751. msgctxt "@option:check"
  3752. msgid "Display overhang"
  3753. msgstr "Mettre en surbrillance les porte-à-faux"
  3754. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339
  3755. msgctxt "@info:tooltip"
  3756. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3757. msgstr "Surlignez les surfaces du modèle manquantes ou étrangères en utilisant les signes d'avertissement. Les Toolpaths seront souvent les parties manquantes de la géométrie prévue."
  3758. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348
  3759. msgctxt "@option:check"
  3760. msgid "Display model errors"
  3761. msgstr "Afficher les erreurs du modèle"
  3762. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356
  3763. msgctxt "@info:tooltip"
  3764. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3765. msgstr "Déplace la caméra afin que le modèle sélectionné se trouve au centre de la vue"
  3766. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361
  3767. msgctxt "@action:button"
  3768. msgid "Center camera when item is selected"
  3769. msgstr "Centrer la caméra lorsqu'un élément est sélectionné"
  3770. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371
  3771. msgctxt "@info:tooltip"
  3772. msgid "Should the default zoom behavior of cura be inverted?"
  3773. msgstr "Le comportement de zoom par défaut de Cura doit-il être inversé ?"
  3774. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376
  3775. msgctxt "@action:button"
  3776. msgid "Invert the direction of camera zoom."
  3777. msgstr "Inverser la direction du zoom de la caméra."
  3778. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392
  3779. msgctxt "@info:tooltip"
  3780. msgid "Should zooming move in the direction of the mouse?"
  3781. msgstr "Le zoom doit-il se faire dans la direction de la souris ?"
  3782. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392
  3783. msgctxt "@info:tooltip"
  3784. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3785. msgstr "Le zoom vers la souris n'est pas pris en charge dans la perspective orthographique."
  3786. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397
  3787. msgctxt "@action:button"
  3788. msgid "Zoom toward mouse direction"
  3789. msgstr "Zoomer vers la direction de la souris"
  3790. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423
  3791. msgctxt "@info:tooltip"
  3792. msgid "Should models on the platform be moved so that they no longer intersect?"
  3793. msgstr "Les modèles dans la zone d'impression doivent-ils être déplacés afin de ne plus se croiser ?"
  3794. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428
  3795. msgctxt "@option:check"
  3796. msgid "Ensure models are kept apart"
  3797. msgstr "Veillez à ce que les modèles restent séparés"
  3798. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437
  3799. msgctxt "@info:tooltip"
  3800. msgid "Should models on the platform be moved down to touch the build plate?"
  3801. msgstr "Les modèles dans la zone d'impression doivent-ils être abaissés afin de toucher le plateau ?"
  3802. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442
  3803. msgctxt "@option:check"
  3804. msgid "Automatically drop models to the build plate"
  3805. msgstr "Abaisser automatiquement les modèles sur le plateau"
  3806. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454
  3807. msgctxt "@info:tooltip"
  3808. msgid "Show caution message in g-code reader."
  3809. msgstr "Afficher le message d'avertissement dans le lecteur G-Code."
  3810. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463
  3811. msgctxt "@option:check"
  3812. msgid "Caution message in g-code reader"
  3813. msgstr "Message d'avertissement dans le lecteur G-Code"
  3814. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471
  3815. msgctxt "@info:tooltip"
  3816. msgid "Should layer be forced into compatibility mode?"
  3817. msgstr "La couche doit-elle être forcée en mode de compatibilité ?"
  3818. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476
  3819. msgctxt "@option:check"
  3820. msgid "Force layer view compatibility mode (restart required)"
  3821. msgstr "Forcer l'affichage de la couche en mode de compatibilité (redémarrage requis)"
  3822. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486
  3823. msgctxt "@info:tooltip"
  3824. msgid "Should Cura open at the location it was closed?"
  3825. msgstr "Est-ce que Cura devrait ouvrir à l'endroit où il a été fermé ?"
  3826. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491
  3827. msgctxt "@option:check"
  3828. msgid "Restore window position on start"
  3829. msgstr "Restaurer la position de la fenêtre au démarrage"
  3830. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501
  3831. msgctxt "@info:tooltip"
  3832. msgid "What type of camera rendering should be used?"
  3833. msgstr "Quel type de rendu de la caméra doit-il être utilisé?"
  3834. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508
  3835. msgctxt "@window:text"
  3836. msgid "Camera rendering:"
  3837. msgstr "Rendu caméra :"
  3838. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515
  3839. msgid "Perspective"
  3840. msgstr "Perspective"
  3841. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516
  3842. msgid "Orthographic"
  3843. msgstr "Orthographique"
  3844. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554
  3845. msgctxt "@label"
  3846. msgid "Opening and saving files"
  3847. msgstr "Ouvrir et enregistrer des fichiers"
  3848. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561
  3849. msgctxt "@info:tooltip"
  3850. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3851. msgstr "L'ouverture de fichiers à partir du bureau ou d'applications externes doit-elle se faire dans la même instance de Cura ?"
  3852. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566
  3853. msgctxt "@option:check"
  3854. msgid "Use a single instance of Cura"
  3855. msgstr "Utiliser une seule instance de Cura"
  3856. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576
  3857. msgctxt "@info:tooltip"
  3858. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  3859. msgstr "Les objets doivent-ils être supprimés du plateau de fabrication avant de charger un nouveau modèle dans l'instance unique de Cura ?"
  3860. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582
  3861. msgctxt "@option:check"
  3862. msgid "Clear buildplate before loading model into the single instance"
  3863. msgstr "Supprimez les objets du plateau de fabrication avant de charger un modèle dans l'instance unique"
  3864. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592
  3865. msgctxt "@info:tooltip"
  3866. msgid "Should models be scaled to the build volume if they are too large?"
  3867. msgstr "Les modèles doivent-ils être mis à l'échelle du volume d'impression s'ils sont trop grands ?"
  3868. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597
  3869. msgctxt "@option:check"
  3870. msgid "Scale large models"
  3871. msgstr "Réduire la taille des modèles trop grands"
  3872. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607
  3873. msgctxt "@info:tooltip"
  3874. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3875. 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 ?"
  3876. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612
  3877. msgctxt "@option:check"
  3878. msgid "Scale extremely small models"
  3879. msgstr "Mettre à l'échelle les modèles extrêmement petits"
  3880. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622
  3881. msgctxt "@info:tooltip"
  3882. msgid "Should models be selected after they are loaded?"
  3883. msgstr "Les modèles doivent-ils être sélectionnés après leur chargement ?"
  3884. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627
  3885. msgctxt "@option:check"
  3886. msgid "Select models when loaded"
  3887. msgstr "Sélectionner les modèles lorsqu'ils sont chargés"
  3888. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637
  3889. msgctxt "@info:tooltip"
  3890. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3891. msgstr "Un préfixe basé sur le nom de l'imprimante doit-il être automatiquement ajouté au nom de la tâche d'impression ?"
  3892. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642
  3893. msgctxt "@option:check"
  3894. msgid "Add machine prefix to job name"
  3895. msgstr "Ajouter le préfixe de la machine au nom de la tâche"
  3896. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652
  3897. msgctxt "@info:tooltip"
  3898. msgid "Should a summary be shown when saving a project file?"
  3899. msgstr "Un résumé doit-il être affiché lors de l'enregistrement d'un fichier de projet ?"
  3900. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656
  3901. msgctxt "@option:check"
  3902. msgid "Show summary dialog when saving project"
  3903. msgstr "Afficher la boîte de dialogue du résumé lors de l'enregistrement du projet"
  3904. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666
  3905. msgctxt "@info:tooltip"
  3906. msgid "Default behavior when opening a project file"
  3907. msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet"
  3908. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674
  3909. msgctxt "@window:text"
  3910. msgid "Default behavior when opening a project file: "
  3911. msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet : "
  3912. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688
  3913. msgctxt "@option:openProject"
  3914. msgid "Always ask me this"
  3915. msgstr "Toujours me demander"
  3916. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689
  3917. msgctxt "@option:openProject"
  3918. msgid "Always open as a project"
  3919. msgstr "Toujours ouvrir comme projet"
  3920. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690
  3921. msgctxt "@option:openProject"
  3922. msgid "Always import models"
  3923. msgstr "Toujours importer les modèles"
  3924. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727
  3925. msgctxt "@info:tooltip"
  3926. 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."
  3927. 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."
  3928. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741
  3929. msgctxt "@window:text"
  3930. msgid "Default behavior for changed setting values when switching to a different profile: "
  3931. msgstr "Comportement par défaut pour les valeurs de paramètres modifiées lors du passage à un profil différent : "
  3932. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756
  3933. msgctxt "@option:discardOrKeep"
  3934. msgid "Always discard changed settings"
  3935. msgstr "Toujours rejeter les paramètres modifiés"
  3936. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757
  3937. msgctxt "@option:discardOrKeep"
  3938. msgid "Always transfer changed settings to new profile"
  3939. msgstr "Toujours transférer les paramètres modifiés dans le nouveau profil"
  3940. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791
  3941. msgctxt "@label"
  3942. msgid "Privacy"
  3943. msgstr "Confidentialité"
  3944. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797
  3945. msgctxt "@info:tooltip"
  3946. 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."
  3947. 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."
  3948. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802
  3949. msgctxt "@option:check"
  3950. msgid "Send (anonymous) print information"
  3951. msgstr "Envoyer des informations (anonymes) sur l'impression"
  3952. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811
  3953. msgctxt "@action:button"
  3954. msgid "More information"
  3955. msgstr "Plus d'informations"
  3956. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829
  3957. msgctxt "@label"
  3958. msgid "Updates"
  3959. msgstr "Mises à jour"
  3960. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836
  3961. msgctxt "@info:tooltip"
  3962. msgid "Should Cura check for updates when the program is started?"
  3963. msgstr "Cura doit-il vérifier les mises à jour au démarrage du programme ?"
  3964. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841
  3965. msgctxt "@option:check"
  3966. msgid "Check for updates on start"
  3967. msgstr "Vérifier les mises à jour au démarrage"
  3968. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852
  3969. msgctxt "@info:tooltip"
  3970. msgid "When checking for updates, only check for stable releases."
  3971. msgstr "Lorsque vous vérifiez les mises à jour, ne vérifiez que les versions stables."
  3972. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857
  3973. msgctxt "@option:radio"
  3974. msgid "Stable releases only"
  3975. msgstr "Uniquement les versions stables"
  3976. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868
  3977. msgctxt "@info:tooltip"
  3978. msgid "When checking for updates, check for both stable and for beta releases."
  3979. msgstr "Lorsque vous recherchez des mises à jour, vérifiez à la fois les versions stables et les versions bêta."
  3980. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873
  3981. msgctxt "@option:radio"
  3982. msgid "Stable and Beta releases"
  3983. msgstr "Versions stables et bêta"
  3984. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884
  3985. msgctxt "@info:tooltip"
  3986. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  3987. msgstr "Une vérification automatique des nouveaux plugins doit-elle être effectuée à chaque fois que Cura est lancé ? Il est fortement recommandé de ne pas désactiver cette fonction !"
  3988. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889
  3989. msgctxt "@option:check"
  3990. msgid "Get notifications for plugin updates"
  3991. msgstr "Recevoir des notifications pour les mises à jour des plugins"
  3992. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  3993. msgctxt "@title"
  3994. msgid "Information"
  3995. msgstr "Informations"
  3996. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  3997. msgctxt "@title:window"
  3998. msgid "Confirm Diameter Change"
  3999. msgstr "Confirmer le changement de diamètre"
  4000. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  4001. msgctxt "@label (%1 is a number)"
  4002. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  4003. 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 ?"
  4004. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  4005. msgctxt "@label"
  4006. msgid "Display Name"
  4007. msgstr "Afficher le nom"
  4008. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  4009. msgctxt "@label"
  4010. msgid "Material Type"
  4011. msgstr "Type de matériau"
  4012. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  4013. msgctxt "@label"
  4014. msgid "Color"
  4015. msgstr "Couleur"
  4016. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  4017. msgctxt "@label"
  4018. msgid "Properties"
  4019. msgstr "Propriétés"
  4020. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  4021. msgctxt "@label"
  4022. msgid "Density"
  4023. msgstr "Densité"
  4024. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  4025. msgctxt "@label"
  4026. msgid "Diameter"
  4027. msgstr "Diamètre"
  4028. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  4029. msgctxt "@label"
  4030. msgid "Filament Cost"
  4031. msgstr "Coût du filament"
  4032. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  4033. msgctxt "@label"
  4034. msgid "Filament weight"
  4035. msgstr "Poids du filament"
  4036. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  4037. msgctxt "@label"
  4038. msgid "Filament length"
  4039. msgstr "Longueur du filament"
  4040. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  4041. msgctxt "@label"
  4042. msgid "Cost per Meter"
  4043. msgstr "Coût au mètre"
  4044. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  4045. msgctxt "@label"
  4046. msgid "This material is linked to %1 and shares some of its properties."
  4047. msgstr "Ce matériau est lié à %1 et partage certaines de ses propriétés."
  4048. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  4049. msgctxt "@label"
  4050. msgid "Unlink Material"
  4051. msgstr "Délier le matériau"
  4052. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  4053. msgctxt "@label"
  4054. msgid "Description"
  4055. msgstr "Description"
  4056. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  4057. msgctxt "@label"
  4058. msgid "Adhesion Information"
  4059. msgstr "Informations d'adhérence"
  4060. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  4061. msgctxt "@action:button"
  4062. msgid "Create"
  4063. msgstr "Créer"
  4064. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  4065. msgctxt "@action:button"
  4066. msgid "Duplicate"
  4067. msgstr "Dupliquer"
  4068. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199
  4069. msgctxt "@action:button Sending materials to printers"
  4070. msgid "Sync with Printers"
  4071. msgstr "Synchroniser les imprimantes"
  4072. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248
  4073. msgctxt "@action:label"
  4074. msgid "Printer"
  4075. msgstr "Imprimante"
  4076. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329
  4077. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337
  4078. msgctxt "@title:window"
  4079. msgid "Import Material"
  4080. msgstr "Importer un matériau"
  4081. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338
  4082. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4083. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  4084. msgstr "Impossible d'importer le matériau <filename>%1</filename> : <message>%2</message>"
  4085. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342
  4086. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4087. msgid "Successfully imported material <filename>%1</filename>"
  4088. msgstr "Matériau <filename>%1</filename> importé avec succès"
  4089. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360
  4090. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368
  4091. msgctxt "@title:window"
  4092. msgid "Export Material"
  4093. msgstr "Exporter un matériau"
  4094. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372
  4095. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  4096. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  4097. msgstr "Échec de l'exportation de matériau vers <filename>%1</filename> : <message>%2</message>"
  4098. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378
  4099. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4100. msgid "Successfully exported material to <filename>%1</filename>"
  4101. msgstr "Matériau exporté avec succès vers <filename>%1</filename>"
  4102. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17
  4103. msgctxt "@title:window"
  4104. msgid "Sync materials with printers"
  4105. msgstr "Synchroniser les matériaux avec les imprimantes"
  4106. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47
  4107. msgctxt "@title:header"
  4108. msgid "Sync materials with printers"
  4109. msgstr "Synchroniser les matériaux avec les imprimantes"
  4110. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53
  4111. msgctxt "@text"
  4112. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  4113. msgstr "En suivant quelques étapes simples, vous serez en mesure de synchroniser tous vos profils de matériaux avec vos imprimantes."
  4114. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77
  4115. msgctxt "@button"
  4116. msgid "Start"
  4117. msgstr "Démarrer"
  4118. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98
  4119. msgctxt "@button"
  4120. msgid "Why do I need to sync material profiles?"
  4121. msgstr "Pourquoi dois-je synchroniser les profils de matériaux ?"
  4122. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130
  4123. msgctxt "@title:header"
  4124. msgid "Sign in"
  4125. msgstr "Se connecter"
  4126. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137
  4127. msgctxt "@text"
  4128. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  4129. msgstr "Pour synchroniser automatiquement les profils de matériaux avec toutes vos imprimantes connectées à Digital Factory, vous devez être connecté à Cura."
  4130. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165
  4131. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476
  4132. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611
  4133. msgctxt "@button"
  4134. msgid "Sync materials with USB"
  4135. msgstr "Synchroniser les matériaux avec USB"
  4136. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200
  4137. msgctxt "@title:header"
  4138. msgid "The following printers will receive the new material profiles:"
  4139. msgstr "Les imprimantes suivantes recevront les nouveaux profils de matériaux :"
  4140. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207
  4141. msgctxt "@title:header"
  4142. msgid "Something went wrong when sending the materials to the printers."
  4143. msgstr "Un problème est survenu lors de l'envoi des matériaux aux imprimantes."
  4144. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214
  4145. msgctxt "@title:header"
  4146. msgid "Material profiles successfully synced with the following printers:"
  4147. msgstr "Les profils de matériaux ont été synchronisés avec les imprimantes suivantes :"
  4148. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256
  4149. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444
  4150. msgctxt "@button"
  4151. msgid "Troubleshooting"
  4152. msgstr "Dépannage"
  4153. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432
  4154. msgctxt "@text Asking the user whether printers are missing in a list."
  4155. msgid "Printers missing?"
  4156. msgstr "Imprimantes manquantes ?"
  4157. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434
  4158. msgctxt "@text"
  4159. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  4160. msgstr "Assurez-vous que toutes vos imprimantes sont allumées et connectées à Digital Factory."
  4161. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457
  4162. msgctxt "@button"
  4163. msgid "Refresh List"
  4164. msgstr "Actualiser la liste"
  4165. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487
  4166. msgctxt "@button"
  4167. msgid "Try again"
  4168. msgstr "Réessayer"
  4169. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491
  4170. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716
  4171. msgctxt "@button"
  4172. msgid "Done"
  4173. msgstr "Terminé"
  4174. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493
  4175. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618
  4176. msgctxt "@button"
  4177. msgid "Sync"
  4178. msgstr "Synchroniser"
  4179. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549
  4180. msgctxt "@button"
  4181. msgid "Syncing"
  4182. msgstr "Synchronisation"
  4183. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566
  4184. msgctxt "@title:header"
  4185. msgid "No printers found"
  4186. msgstr "Aucune imprimante trouvée"
  4187. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582
  4188. msgctxt "@text"
  4189. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  4190. msgstr "Il semble que vous n'ayez aucune imprimante compatible connectée à Digital Factory. Assurez-vous que votre imprimante est connectée et qu'elle utilise"
  4191. " le dernier micrologiciel."
  4192. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595
  4193. msgctxt "@button"
  4194. msgid "Learn how to connect your printer to Digital Factory"
  4195. msgstr "Découvrez comment connecter votre imprimante à Digital Factory"
  4196. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625
  4197. msgctxt "@button"
  4198. msgid "Refresh"
  4199. msgstr "Rafraîchir"
  4200. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647
  4201. msgctxt "@title:header"
  4202. msgid "Sync material profiles via USB"
  4203. msgstr "Synchroniser les profils de matériaux via USB"
  4204. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654
  4205. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  4206. msgid "Follow the following steps to load the new material profiles to your printer."
  4207. msgstr "Suivez les étapes suivantes pour charger les nouveaux profils de matériaux dans votre imprimante."
  4208. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679
  4209. msgctxt "@text"
  4210. msgid "Click the export material archive button."
  4211. msgstr "Cliquez sur le bouton d'exportation des archives de matériaux."
  4212. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680
  4213. msgctxt "@text"
  4214. msgid "Save the .umm file on a USB stick."
  4215. msgstr "Enregistrez le fichier .umm sur une clé USB."
  4216. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681
  4217. msgctxt "@text"
  4218. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  4219. msgstr "Insérez la clé USB dans votre imprimante et lancez la procédure pour charger de nouveaux profils de matériaux."
  4220. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692
  4221. msgctxt "@button"
  4222. msgid "How to load new material profiles to my printer"
  4223. msgstr "Comment charger de nouveaux profils de matériaux dans mon imprimante"
  4224. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716
  4225. msgctxt "@button"
  4226. msgid "Export material archive"
  4227. msgstr "Exporter l'archive des matériaux"
  4228. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753
  4229. msgctxt "@title:window"
  4230. msgid "Export All Materials"
  4231. msgstr "Exporter tous les matériaux"
  4232. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16
  4233. msgctxt "@title:tab"
  4234. msgid "Setting Visibility"
  4235. msgstr "Visibilité des paramètres"
  4236. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48
  4237. msgctxt "@label:textbox"
  4238. msgid "Check all"
  4239. msgstr "Vérifier tout"
  4240. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16
  4241. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473
  4242. msgctxt "@title:tab"
  4243. msgid "Printers"
  4244. msgstr "Imprimantes"
  4245. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61
  4246. msgctxt "@info:status"
  4247. msgid "Calculated"
  4248. msgstr "Calculer"
  4249. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75
  4250. msgctxt "@title:column"
  4251. msgid "Setting"
  4252. msgstr "Paramètre"
  4253. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82
  4254. msgctxt "@title:column"
  4255. msgid "Profile"
  4256. msgstr "Profil"
  4257. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89
  4258. msgctxt "@title:column"
  4259. msgid "Current"
  4260. msgstr "Actuel"
  4261. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97
  4262. msgctxt "@title:column"
  4263. msgid "Unit"
  4264. msgstr "Unité"
  4265. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119
  4266. msgctxt "@label:MonitorStatus"
  4267. msgid "Not connected to a printer"
  4268. msgstr "Non connecté à une imprimante"
  4269. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123
  4270. msgctxt "@label:MonitorStatus"
  4271. msgid "Printer does not accept commands"
  4272. msgstr "L'imprimante n'accepte pas les commandes"
  4273. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133
  4274. msgctxt "@label:MonitorStatus"
  4275. msgid "In maintenance. Please check the printer"
  4276. msgstr "En maintenance. Vérifiez l'imprimante"
  4277. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144
  4278. msgctxt "@label:MonitorStatus"
  4279. msgid "Lost connection with the printer"
  4280. msgstr "Connexion avec l'imprimante perdue"
  4281. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146
  4282. msgctxt "@label:MonitorStatus"
  4283. msgid "Printing..."
  4284. msgstr "Impression..."
  4285. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149
  4286. msgctxt "@label:MonitorStatus"
  4287. msgid "Paused"
  4288. msgstr "En pause"
  4289. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152
  4290. msgctxt "@label:MonitorStatus"
  4291. msgid "Preparing..."
  4292. msgstr "Préparation..."
  4293. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154
  4294. msgctxt "@label:MonitorStatus"
  4295. msgid "Please remove the print"
  4296. msgstr "Supprimez l'imprimante"
  4297. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326
  4298. msgctxt "@label"
  4299. msgid "Abort Print"
  4300. msgstr "Abandonner l'impression"
  4301. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338
  4302. msgctxt "@label"
  4303. msgid "Are you sure you want to abort the print?"
  4304. msgstr "Êtes-vous sûr(e) de vouloir abandonner l'impression ?"
  4305. #: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16
  4306. msgctxt "@label %1 is filled in with the name of an extruder"
  4307. msgid "Print Selected Model with %1"
  4308. msgid_plural "Print Selected Models with %1"
  4309. msgstr[0] "Imprimer le modèle sélectionné avec %1"
  4310. msgstr[1] "Imprimer les modèles sélectionnés avec %1"
  4311. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  4312. msgctxt "@label:button"
  4313. msgid "My printers"
  4314. msgstr "Mes imprimantes"
  4315. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  4316. msgctxt "@tooltip:button"
  4317. msgid "Monitor printers in Ultimaker Digital Factory."
  4318. msgstr "Surveillez les imprimantes dans Ultimaker Digital Factory."
  4319. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  4320. msgctxt "@tooltip:button"
  4321. msgid "Create print projects in Digital Library."
  4322. msgstr "Créez des projets d'impression dans Digital Library."
  4323. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  4324. msgctxt "@label:button"
  4325. msgid "Print jobs"
  4326. msgstr "Tâches d'impression"
  4327. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  4328. msgctxt "@tooltip:button"
  4329. msgid "Monitor print jobs and reprint from your print history."
  4330. msgstr "Surveillez les tâches d'impression et réimprimez à partir de votre historique d'impression."
  4331. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  4332. msgctxt "@tooltip:button"
  4333. msgid "Extend Ultimaker Cura with plugins and material profiles."
  4334. msgstr "Étendez Ultimaker Cura avec des plug-ins et des profils de matériaux."
  4335. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  4336. msgctxt "@tooltip:button"
  4337. msgid "Become a 3D printing expert with Ultimaker e-learning."
  4338. msgstr "Devenez un expert de l'impression 3D avec les cours de formation en ligne Ultimaker."
  4339. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  4340. msgctxt "@label:button"
  4341. msgid "Ultimaker support"
  4342. msgstr "Assistance ultimaker"
  4343. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  4344. msgctxt "@tooltip:button"
  4345. msgid "Learn how to get started with Ultimaker Cura."
  4346. msgstr "Découvrez comment utiliser Ultimaker Cura."
  4347. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  4348. msgctxt "@label:button"
  4349. msgid "Ask a question"
  4350. msgstr "Posez une question"
  4351. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  4352. msgctxt "@tooltip:button"
  4353. msgid "Consult the Ultimaker Community."
  4354. msgstr "Consultez la communauté Ultimaker."
  4355. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  4356. msgctxt "@label:button"
  4357. msgid "Report a bug"
  4358. msgstr "Notifier un bug"
  4359. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  4360. msgctxt "@tooltip:button"
  4361. msgid "Let developers know that something is going wrong."
  4362. msgstr "Informez les développeurs en cas de problème."
  4363. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  4364. msgctxt "@tooltip:button"
  4365. msgid "Visit the Ultimaker website."
  4366. msgstr "Visitez le site web Ultimaker."
  4367. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  4368. msgctxt "@label"
  4369. msgid "Printer control"
  4370. msgstr "Contrôle de l'imprimante"
  4371. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  4372. msgctxt "@label"
  4373. msgid "Jog Position"
  4374. msgstr "Position de coupe"
  4375. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  4376. msgctxt "@label"
  4377. msgid "X/Y"
  4378. msgstr "X/Y"
  4379. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  4380. msgctxt "@label"
  4381. msgid "Z"
  4382. msgstr "Z"
  4383. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  4384. msgctxt "@label"
  4385. msgid "Jog Distance"
  4386. msgstr "Distance de coupe"
  4387. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  4388. msgctxt "@label"
  4389. msgid "Send G-code"
  4390. msgstr "Envoyer G-Code"
  4391. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  4392. msgctxt "@tooltip of G-code command input"
  4393. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  4394. msgstr "Envoyer une commande G-Code personnalisée à l'imprimante connectée. Appuyez sur « Entrée » pour envoyer la commande."
  4395. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  4396. msgctxt "@label"
  4397. msgid "Extruder"
  4398. msgstr "Extrudeuse"
  4399. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  4400. msgctxt "@tooltip"
  4401. 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."
  4402. 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é."
  4403. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  4404. msgctxt "@tooltip"
  4405. msgid "The current temperature of this hotend."
  4406. msgstr "Température actuelle de cette extrémité chauffante."
  4407. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  4408. msgctxt "@tooltip of temperature input"
  4409. msgid "The temperature to pre-heat the hotend to."
  4410. msgstr "Température jusqu'à laquelle préchauffer l'extrémité chauffante."
  4411. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
  4412. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  4413. msgctxt "@button Cancel pre-heating"
  4414. msgid "Cancel"
  4415. msgstr "Annuler"
  4416. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
  4417. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  4418. msgctxt "@button"
  4419. msgid "Pre-heat"
  4420. msgstr "Préchauffer"
  4421. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  4422. msgctxt "@tooltip of pre-heat"
  4423. 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."
  4424. 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."
  4425. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  4426. msgctxt "@tooltip"
  4427. msgid "The colour of the material in this extruder."
  4428. msgstr "Couleur du matériau dans cet extrudeur."
  4429. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  4430. msgctxt "@tooltip"
  4431. msgid "The material in this extruder."
  4432. msgstr "Matériau dans cet extrudeur."
  4433. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  4434. msgctxt "@tooltip"
  4435. msgid "The nozzle inserted in this extruder."
  4436. msgstr "Buse insérée dans cet extrudeur."
  4437. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  4438. msgctxt "@info:status"
  4439. msgid "The printer is not connected."
  4440. msgstr "L'imprimante n'est pas connectée."
  4441. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  4442. msgctxt "@label"
  4443. msgid "Build plate"
  4444. msgstr "Plateau"
  4445. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  4446. msgctxt "@tooltip"
  4447. 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."
  4448. 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."
  4449. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  4450. msgctxt "@tooltip"
  4451. msgid "The current temperature of the heated bed."
  4452. msgstr "Température actuelle du plateau chauffant."
  4453. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  4454. msgctxt "@tooltip of temperature input"
  4455. msgid "The temperature to pre-heat the bed to."
  4456. msgstr "Température jusqu'à laquelle préchauffer le plateau."
  4457. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  4458. msgctxt "@tooltip of pre-heat"
  4459. 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."
  4460. 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."
  4461. #: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24
  4462. msgctxt "@action:button"
  4463. msgid "Sign in"
  4464. msgstr "Se connecter"
  4465. #: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42
  4466. msgctxt "@text"
  4467. msgid ""
  4468. "- Add material profiles and plug-ins from the Marketplace\n"
  4469. "- Back-up and sync your material profiles and plug-ins\n"
  4470. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  4471. msgstr ""
  4472. "- Ajoutez des profils de matériaux et des plug-ins à partir de la Marketplace\n"
  4473. "- Sauvegardez et synchronisez vos profils de matériaux et vos plug-ins\n"
  4474. "- Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker"
  4475. #: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62
  4476. msgctxt "@button"
  4477. msgid "Create a free Ultimaker account"
  4478. msgstr "Créez gratuitement un compte Ultimaker"
  4479. #: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82
  4480. msgctxt "@label The argument is a timestamp"
  4481. msgid "Last update: %1"
  4482. msgstr "Dernière mise à jour : %1"
  4483. #: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110
  4484. msgctxt "@button"
  4485. msgid "Ultimaker Account"
  4486. msgstr "Compte Ultimaker"
  4487. #: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126
  4488. msgctxt "@button"
  4489. msgid "Sign Out"
  4490. msgstr "Déconnexion"
  4491. #: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28
  4492. msgctxt "@label"
  4493. msgid "Checking..."
  4494. msgstr "Vérification en cours..."
  4495. #: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35
  4496. msgctxt "@label"
  4497. msgid "Account synced"
  4498. msgstr "Compte synchronisé"
  4499. #: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42
  4500. msgctxt "@label"
  4501. msgid "Something went wrong..."
  4502. msgstr "Un problème s'est produit..."
  4503. #: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96
  4504. msgctxt "@button"
  4505. msgid "Install pending updates"
  4506. msgstr "Installer les mises à jour en attente"
  4507. #: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118
  4508. msgctxt "@button"
  4509. msgid "Check for account updates"
  4510. msgstr "Rechercher des mises à jour de compte"
  4511. #: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99
  4512. msgctxt "@text Print job name"
  4513. msgid "Untitled"
  4514. msgstr "Sans titre"
  4515. #: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18
  4516. msgctxt "@label"
  4517. msgid "No items to select from"
  4518. msgstr "Aucun élément à sélectionner"
  4519. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83
  4520. msgctxt "@action:inmenu"
  4521. msgid "Show Online Troubleshooting Guide"
  4522. msgstr "Afficher le guide de dépannage en ligne"
  4523. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90
  4524. msgctxt "@action:inmenu"
  4525. msgid "Toggle Full Screen"
  4526. msgstr "Passer en Plein écran"
  4527. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98
  4528. msgctxt "@action:inmenu"
  4529. msgid "Exit Full Screen"
  4530. msgstr "Quitter le mode plein écran"
  4531. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105
  4532. msgctxt "@action:inmenu menubar:edit"
  4533. msgid "&Undo"
  4534. msgstr "&Annuler"
  4535. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115
  4536. msgctxt "@action:inmenu menubar:edit"
  4537. msgid "&Redo"
  4538. msgstr "&Rétablir"
  4539. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133
  4540. msgctxt "@action:inmenu menubar:file"
  4541. msgid "&Quit"
  4542. msgstr "&Quitter"
  4543. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141
  4544. msgctxt "@action:inmenu menubar:view"
  4545. msgid "3D View"
  4546. msgstr "Vue 3D"
  4547. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148
  4548. msgctxt "@action:inmenu menubar:view"
  4549. msgid "Front View"
  4550. msgstr "Vue de face"
  4551. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155
  4552. msgctxt "@action:inmenu menubar:view"
  4553. msgid "Top View"
  4554. msgstr "Vue du dessus"
  4555. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162
  4556. msgctxt "@action:inmenu menubar:view"
  4557. msgid "Bottom View"
  4558. msgstr "Vue de dessous"
  4559. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169
  4560. msgctxt "@action:inmenu menubar:view"
  4561. msgid "Left Side View"
  4562. msgstr "Vue latérale gauche"
  4563. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176
  4564. msgctxt "@action:inmenu menubar:view"
  4565. msgid "Right Side View"
  4566. msgstr "Vue latérale droite"
  4567. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190
  4568. msgctxt "@action:inmenu"
  4569. msgid "Configure Cura..."
  4570. msgstr "Configurer Cura..."
  4571. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197
  4572. msgctxt "@action:inmenu menubar:printer"
  4573. msgid "&Add Printer..."
  4574. msgstr "&Ajouter une imprimante..."
  4575. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203
  4576. msgctxt "@action:inmenu menubar:printer"
  4577. msgid "Manage Pr&inters..."
  4578. msgstr "Gérer les &imprimantes..."
  4579. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210
  4580. msgctxt "@action:inmenu"
  4581. msgid "Manage Materials..."
  4582. msgstr "Gérer les matériaux..."
  4583. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218
  4584. msgctxt "@action:inmenu"
  4585. msgid "Add more materials from Marketplace"
  4586. msgstr "Ajouter d'autres matériaux du Marketplace"
  4587. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225
  4588. msgctxt "@action:inmenu menubar:profile"
  4589. msgid "&Update profile with current settings/overrides"
  4590. msgstr "&Mettre à jour le profil à l'aide des paramètres / forçages actuels"
  4591. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233
  4592. msgctxt "@action:inmenu menubar:profile"
  4593. msgid "&Discard current changes"
  4594. msgstr "&Ignorer les modifications actuelles"
  4595. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245
  4596. msgctxt "@action:inmenu menubar:profile"
  4597. msgid "&Create profile from current settings/overrides..."
  4598. msgstr "&Créer un profil à partir des paramètres / forçages actuels..."
  4599. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251
  4600. msgctxt "@action:inmenu menubar:profile"
  4601. msgid "Manage Profiles..."
  4602. msgstr "Gérer les profils..."
  4603. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259
  4604. msgctxt "@action:inmenu menubar:help"
  4605. msgid "Show Online &Documentation"
  4606. msgstr "Afficher la &documentation en ligne"
  4607. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267
  4608. msgctxt "@action:inmenu menubar:help"
  4609. msgid "Report a &Bug"
  4610. msgstr "Notifier un &bug"
  4611. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275
  4612. msgctxt "@action:inmenu menubar:help"
  4613. msgid "What's New"
  4614. msgstr "Quoi de neuf"
  4615. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289
  4616. msgctxt "@action:inmenu menubar:help"
  4617. msgid "About..."
  4618. msgstr "À propos de..."
  4619. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296
  4620. msgctxt "@action:inmenu menubar:edit"
  4621. msgid "Delete Selected"
  4622. msgstr "Supprimer la sélection"
  4623. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306
  4624. msgctxt "@action:inmenu menubar:edit"
  4625. msgid "Center Selected"
  4626. msgstr "Centrer la sélection"
  4627. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315
  4628. msgctxt "@action:inmenu menubar:edit"
  4629. msgid "Multiply Selected"
  4630. msgstr "Multiplier la sélection"
  4631. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324
  4632. msgctxt "@action:inmenu"
  4633. msgid "Delete Model"
  4634. msgstr "Supprimer le modèle"
  4635. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332
  4636. msgctxt "@action:inmenu"
  4637. msgid "Ce&nter Model on Platform"
  4638. msgstr "Ce&ntrer le modèle sur le plateau"
  4639. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338
  4640. msgctxt "@action:inmenu menubar:edit"
  4641. msgid "&Group Models"
  4642. msgstr "&Grouper les modèles"
  4643. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358
  4644. msgctxt "@action:inmenu menubar:edit"
  4645. msgid "Ungroup Models"
  4646. msgstr "Dégrouper les modèles"
  4647. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368
  4648. msgctxt "@action:inmenu menubar:edit"
  4649. msgid "&Merge Models"
  4650. msgstr "&Fusionner les modèles"
  4651. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378
  4652. msgctxt "@action:inmenu"
  4653. msgid "&Multiply Model..."
  4654. msgstr "&Multiplier le modèle..."
  4655. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385
  4656. msgctxt "@action:inmenu menubar:edit"
  4657. msgid "Select All Models"
  4658. msgstr "Sélectionner tous les modèles"
  4659. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395
  4660. msgctxt "@action:inmenu menubar:edit"
  4661. msgid "Clear Build Plate"
  4662. msgstr "Supprimer les objets du plateau"
  4663. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405
  4664. msgctxt "@action:inmenu menubar:file"
  4665. msgid "Reload All Models"
  4666. msgstr "Recharger tous les modèles"
  4667. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414
  4668. msgctxt "@action:inmenu menubar:edit"
  4669. msgid "Arrange All Models To All Build Plates"
  4670. msgstr "Réorganiser tous les modèles sur tous les plateaux"
  4671. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421
  4672. msgctxt "@action:inmenu menubar:edit"
  4673. msgid "Arrange All Models"
  4674. msgstr "Réorganiser tous les modèles"
  4675. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429
  4676. msgctxt "@action:inmenu menubar:edit"
  4677. msgid "Arrange Selection"
  4678. msgstr "Réorganiser la sélection"
  4679. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436
  4680. msgctxt "@action:inmenu menubar:edit"
  4681. msgid "Reset All Model Positions"
  4682. msgstr "Réinitialiser toutes les positions des modèles"
  4683. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443
  4684. msgctxt "@action:inmenu menubar:edit"
  4685. msgid "Reset All Model Transformations"
  4686. msgstr "Réinitialiser tous les modèles et transformations"
  4687. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452
  4688. msgctxt "@action:inmenu menubar:file"
  4689. msgid "&Open File(s)..."
  4690. msgstr "&Ouvrir le(s) fichier(s)..."
  4691. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462
  4692. msgctxt "@action:inmenu menubar:file"
  4693. msgid "&New Project..."
  4694. msgstr "&Nouveau projet..."
  4695. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469
  4696. msgctxt "@action:inmenu menubar:help"
  4697. msgid "Show Configuration Folder"
  4698. msgstr "Afficher le dossier de configuration"
  4699. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476
  4700. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535
  4701. msgctxt "@action:menu"
  4702. msgid "Configure setting visibility..."
  4703. msgstr "Configurer la visibilité des paramètres..."
  4704. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483
  4705. msgctxt "@action:menu"
  4706. msgid "&Marketplace"
  4707. msgstr "&Marché en ligne"
  4708. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81
  4709. msgctxt "@label"
  4710. msgid "This setting is not used because all the settings that it influences are overridden."
  4711. msgstr "Ce paramètre n'est pas utilisé car tous les paramètres qu'il influence sont remplacés."
  4712. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86
  4713. msgctxt "@label Header for list of settings."
  4714. msgid "Affects"
  4715. msgstr "Touche"
  4716. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91
  4717. msgctxt "@label Header for list of settings."
  4718. msgid "Affected By"
  4719. msgstr "Touché par"
  4720. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188
  4721. msgctxt "@label"
  4722. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  4723. 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."
  4724. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192
  4725. msgctxt "@label"
  4726. msgid "This setting is resolved from conflicting extruder-specific values:"
  4727. msgstr "Ce paramètre est résolu à partir de valeurs conflictuelles spécifiques à l'extrudeur :"
  4728. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232
  4729. msgctxt "@label"
  4730. msgid ""
  4731. "This setting has a value that is different from the profile.\n"
  4732. "\n"
  4733. "Click to restore the value of the profile."
  4734. msgstr ""
  4735. "Ce paramètre possède une valeur qui est différente du profil.\n"
  4736. "\n"
  4737. "Cliquez pour restaurer la valeur du profil."
  4738. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332
  4739. msgctxt "@label"
  4740. msgid ""
  4741. "This setting is normally calculated, but it currently has an absolute value set.\n"
  4742. "\n"
  4743. "Click to restore the calculated value."
  4744. msgstr ""
  4745. "Ce paramètre est normalement calculé mais il possède actuellement une valeur absolue définie.\n"
  4746. "\n"
  4747. "Cliquez pour restaurer la valeur calculée."
  4748. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51
  4749. msgctxt "@label:textbox"
  4750. msgid "Search settings"
  4751. msgstr "Paramètres de recherche"
  4752. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453
  4753. msgctxt "@action:menu"
  4754. msgid "Copy value to all extruders"
  4755. msgstr "Copier la valeur vers tous les extrudeurs"
  4756. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462
  4757. msgctxt "@action:menu"
  4758. msgid "Copy all changed values to all extruders"
  4759. msgstr "Copier toutes les valeurs modifiées vers toutes les extrudeuses"
  4760. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499
  4761. msgctxt "@action:menu"
  4762. msgid "Hide this setting"
  4763. msgstr "Masquer ce paramètre"
  4764. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512
  4765. msgctxt "@action:menu"
  4766. msgid "Don't show this setting"
  4767. msgstr "Masquer ce paramètre"
  4768. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516
  4769. msgctxt "@action:menu"
  4770. msgid "Keep this setting visible"
  4771. msgstr "Afficher ce paramètre"
  4772. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203
  4773. msgctxt "@label"
  4774. msgid ""
  4775. "Some hidden settings use values different from their normal calculated value.\n"
  4776. "\n"
  4777. "Click to make these settings visible."
  4778. msgstr ""
  4779. "Certains paramètres masqués utilisent des valeurs différentes de leur valeur normalement calculée.\n"
  4780. "\n"
  4781. "Cliquez pour rendre ces paramètres visibles."
  4782. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257
  4783. msgctxt "@label"
  4784. msgid "This package will be installed after restarting."
  4785. msgstr "Ce paquet sera installé après le redémarrage."
  4786. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471
  4787. msgctxt "@title:tab"
  4788. msgid "Settings"
  4789. msgstr "Paramètres"
  4790. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594
  4791. msgctxt "@title:window %1 is the application name"
  4792. msgid "Closing %1"
  4793. msgstr "Fermeture de %1"
  4794. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595
  4795. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607
  4796. msgctxt "@label %1 is the application name"
  4797. msgid "Are you sure you want to exit %1?"
  4798. msgstr "Voulez-vous vraiment quitter %1 ?"
  4799. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755
  4800. msgctxt "@window:title"
  4801. msgid "Install Package"
  4802. msgstr "Installer le paquet"
  4803. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763
  4804. msgctxt "@title:window"
  4805. msgid "Open File(s)"
  4806. msgstr "Ouvrir le(s) fichier(s)"
  4807. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766
  4808. msgctxt "@text:window"
  4809. 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."
  4810. 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."
  4811. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875
  4812. msgctxt "@title:window"
  4813. msgid "Add Printer"
  4814. msgstr "Ajouter une imprimante"
  4815. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883
  4816. msgctxt "@title:window"
  4817. msgid "What's New"
  4818. msgstr "Quoi de neuf"
  4819. #: PerObjectSettingsTool/plugin.json
  4820. msgctxt "description"
  4821. msgid "Provides the Per Model Settings."
  4822. msgstr "Fournit les paramètres par modèle."
  4823. #: PerObjectSettingsTool/plugin.json
  4824. msgctxt "name"
  4825. msgid "Per Model Settings Tool"
  4826. msgstr "Outil de paramètres par modèle"
  4827. #: CuraProfileReader/plugin.json
  4828. msgctxt "description"
  4829. msgid "Provides support for importing Cura profiles."
  4830. msgstr "Fournit la prise en charge de l'importation de profils Cura."
  4831. #: CuraProfileReader/plugin.json
  4832. msgctxt "name"
  4833. msgid "Cura Profile Reader"
  4834. msgstr "Lecteur de profil Cura"
  4835. #: X3DReader/plugin.json
  4836. msgctxt "description"
  4837. msgid "Provides support for reading X3D files."
  4838. msgstr "Fournit la prise en charge de la lecture de fichiers X3D."
  4839. #: X3DReader/plugin.json
  4840. msgctxt "name"
  4841. msgid "X3D Reader"
  4842. msgstr "Lecteur X3D"
  4843. #: CuraDrive/plugin.json
  4844. msgctxt "description"
  4845. msgid "Backup and restore your configuration."
  4846. msgstr "Sauvegardez et restaurez votre configuration."
  4847. #: CuraDrive/plugin.json
  4848. msgctxt "name"
  4849. msgid "Cura Backups"
  4850. msgstr "Sauvegardes Cura"
  4851. #: MachineSettingsAction/plugin.json
  4852. msgctxt "description"
  4853. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4854. msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)"
  4855. #: MachineSettingsAction/plugin.json
  4856. msgctxt "name"
  4857. msgid "Machine Settings Action"
  4858. msgstr "Action Paramètres de la machine"
  4859. #: SupportEraser/plugin.json
  4860. msgctxt "description"
  4861. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4862. msgstr "Crée un maillage effaceur pour bloquer l'impression du support en certains endroits"
  4863. #: SupportEraser/plugin.json
  4864. msgctxt "name"
  4865. msgid "Support Eraser"
  4866. msgstr "Effaceur de support"
  4867. #: RemovableDriveOutputDevice/plugin.json
  4868. msgctxt "description"
  4869. msgid "Provides removable drive hotplugging and writing support."
  4870. msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible."
  4871. #: RemovableDriveOutputDevice/plugin.json
  4872. msgctxt "name"
  4873. msgid "Removable Drive Output Device Plugin"
  4874. msgstr "Plugin de périphérique de sortie sur disque amovible"
  4875. #: FirmwareUpdater/plugin.json
  4876. msgctxt "description"
  4877. msgid "Provides a machine actions for updating firmware."
  4878. msgstr "Fournit à une machine des actions permettant la mise à jour du firmware."
  4879. #: FirmwareUpdater/plugin.json
  4880. msgctxt "name"
  4881. msgid "Firmware Updater"
  4882. msgstr "Programme de mise à jour du firmware"
  4883. #: LegacyProfileReader/plugin.json
  4884. msgctxt "description"
  4885. msgid "Provides support for importing profiles from legacy Cura versions."
  4886. msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures."
  4887. #: LegacyProfileReader/plugin.json
  4888. msgctxt "name"
  4889. msgid "Legacy Cura Profile Reader"
  4890. msgstr "Lecteur de profil Cura antérieur"
  4891. #: 3MFReader/plugin.json
  4892. msgctxt "description"
  4893. msgid "Provides support for reading 3MF files."
  4894. msgstr "Fournit la prise en charge de la lecture de fichiers 3MF."
  4895. #: 3MFReader/plugin.json
  4896. msgctxt "name"
  4897. msgid "3MF Reader"
  4898. msgstr "Lecteur 3MF"
  4899. #: UFPWriter/plugin.json
  4900. msgctxt "description"
  4901. msgid "Provides support for writing Ultimaker Format Packages."
  4902. msgstr "Permet l'écriture de fichiers Ultimaker Format Package."
  4903. #: UFPWriter/plugin.json
  4904. msgctxt "name"
  4905. msgid "UFP Writer"
  4906. msgstr "Générateur UFP"
  4907. #: SentryLogger/plugin.json
  4908. msgctxt "description"
  4909. msgid "Logs certain events so that they can be used by the crash reporter"
  4910. msgstr "Enregistre certains événements afin qu'ils puissent être utilisés par le rapporteur d'incident"
  4911. #: SentryLogger/plugin.json
  4912. msgctxt "name"
  4913. msgid "Sentry Logger"
  4914. msgstr "Journal d'événements dans Sentry"
  4915. #: GCodeProfileReader/plugin.json
  4916. msgctxt "description"
  4917. msgid "Provides support for importing profiles from g-code files."
  4918. msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code."
  4919. #: GCodeProfileReader/plugin.json
  4920. msgctxt "name"
  4921. msgid "G-code Profile Reader"
  4922. msgstr "Lecteur de profil G-Code"
  4923. #: PreviewStage/plugin.json
  4924. msgctxt "description"
  4925. msgid "Provides a preview stage in Cura."
  4926. msgstr "Fournit une étape de prévisualisation dans Cura."
  4927. #: PreviewStage/plugin.json
  4928. msgctxt "name"
  4929. msgid "Preview Stage"
  4930. msgstr "Étape de prévisualisation"
  4931. #: XRayView/plugin.json
  4932. msgctxt "description"
  4933. msgid "Provides the X-Ray view."
  4934. msgstr "Permet la vue Rayon-X."
  4935. #: XRayView/plugin.json
  4936. msgctxt "name"
  4937. msgid "X-Ray View"
  4938. msgstr "Vue Rayon-X"
  4939. #: CuraEngineBackend/plugin.json
  4940. msgctxt "description"
  4941. msgid "Provides the link to the CuraEngine slicing backend."
  4942. msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine."
  4943. #: CuraEngineBackend/plugin.json
  4944. msgctxt "name"
  4945. msgid "CuraEngine Backend"
  4946. msgstr "Système CuraEngine"
  4947. #: AMFReader/plugin.json
  4948. msgctxt "description"
  4949. msgid "Provides support for reading AMF files."
  4950. msgstr "Fournit la prise en charge de la lecture de fichiers AMF."
  4951. #: AMFReader/plugin.json
  4952. msgctxt "name"
  4953. msgid "AMF Reader"
  4954. msgstr "Lecteur AMF"
  4955. #: GCodeGzReader/plugin.json
  4956. msgctxt "description"
  4957. msgid "Reads g-code from a compressed archive."
  4958. msgstr "Lit le G-Code à partir d'une archive compressée."
  4959. #: GCodeGzReader/plugin.json
  4960. msgctxt "name"
  4961. msgid "Compressed G-code Reader"
  4962. msgstr "Lecteur G-Code compressé"
  4963. #: PostProcessingPlugin/plugin.json
  4964. msgctxt "description"
  4965. msgid "Extension that allows for user created scripts for post processing"
  4966. msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur"
  4967. #: PostProcessingPlugin/plugin.json
  4968. msgctxt "name"
  4969. msgid "Post Processing"
  4970. msgstr "Post-traitement"
  4971. #: CuraProfileWriter/plugin.json
  4972. msgctxt "description"
  4973. msgid "Provides support for exporting Cura profiles."
  4974. msgstr "Fournit la prise en charge de l'exportation de profils Cura."
  4975. #: CuraProfileWriter/plugin.json
  4976. msgctxt "name"
  4977. msgid "Cura Profile Writer"
  4978. msgstr "Générateur de profil Cura"
  4979. #: USBPrinting/plugin.json
  4980. msgctxt "description"
  4981. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4982. msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware."
  4983. #: USBPrinting/plugin.json
  4984. msgctxt "name"
  4985. msgid "USB printing"
  4986. msgstr "Impression par USB"
  4987. #: PrepareStage/plugin.json
  4988. msgctxt "description"
  4989. msgid "Provides a prepare stage in Cura."
  4990. msgstr "Fournit une étape de préparation dans Cura."
  4991. #: PrepareStage/plugin.json
  4992. msgctxt "name"
  4993. msgid "Prepare Stage"
  4994. msgstr "Étape de préparation"
  4995. #: GCodeReader/plugin.json
  4996. msgctxt "description"
  4997. msgid "Allows loading and displaying G-code files."
  4998. msgstr "Permet le chargement et l'affichage de fichiers G-Code."
  4999. #: GCodeReader/plugin.json
  5000. msgctxt "name"
  5001. msgid "G-code Reader"
  5002. msgstr "Lecteur G-Code"
  5003. #: ImageReader/plugin.json
  5004. msgctxt "description"
  5005. msgid "Enables ability to generate printable geometry from 2D image files."
  5006. msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D."
  5007. #: ImageReader/plugin.json
  5008. msgctxt "name"
  5009. msgid "Image Reader"
  5010. msgstr "Lecteur d'images"
  5011. #: UltimakerMachineActions/plugin.json
  5012. msgctxt "description"
  5013. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  5014. 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.)"
  5015. #: UltimakerMachineActions/plugin.json
  5016. msgctxt "name"
  5017. msgid "Ultimaker machine actions"
  5018. msgstr "Actions de la machine Ultimaker"
  5019. #: GCodeGzWriter/plugin.json
  5020. msgctxt "description"
  5021. msgid "Writes g-code to a compressed archive."
  5022. msgstr "Enregistre le G-Code dans une archive compressée."
  5023. #: GCodeGzWriter/plugin.json
  5024. msgctxt "name"
  5025. msgid "Compressed G-code Writer"
  5026. msgstr "Générateur de G-Code compressé"
  5027. #: FirmwareUpdateChecker/plugin.json
  5028. msgctxt "description"
  5029. msgid "Checks for firmware updates."
  5030. msgstr "Vérifie les mises à jour du firmware."
  5031. #: FirmwareUpdateChecker/plugin.json
  5032. msgctxt "name"
  5033. msgid "Firmware Update Checker"
  5034. msgstr "Vérificateur des mises à jour du firmware"
  5035. #: SliceInfoPlugin/plugin.json
  5036. msgctxt "description"
  5037. msgid "Submits anonymous slice info. Can be disabled through preferences."
  5038. msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences."
  5039. #: SliceInfoPlugin/plugin.json
  5040. msgctxt "name"
  5041. msgid "Slice info"
  5042. msgstr "Information sur le découpage"
  5043. #: XmlMaterialProfile/plugin.json
  5044. msgctxt "description"
  5045. msgid "Provides capabilities to read and write XML-based material profiles."
  5046. msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML."
  5047. #: XmlMaterialProfile/plugin.json
  5048. msgctxt "name"
  5049. msgid "Material Profiles"
  5050. msgstr "Profils matériels"
  5051. #: DigitalLibrary/plugin.json
  5052. msgctxt "description"
  5053. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  5054. msgstr "Se connecte à la Digital Library, permettant à Cura d'ouvrir des fichiers à partir de cette dernière et d'y enregistrer des fichiers."
  5055. #: DigitalLibrary/plugin.json
  5056. msgctxt "name"
  5057. msgid "Ultimaker Digital Library"
  5058. msgstr "Ultimaker Digital Library"
  5059. #: Toolbox/plugin.json
  5060. msgctxt "description"
  5061. msgid "Find, manage and install new Cura packages."
  5062. msgstr "Rechercher, gérer et installer de nouveaux paquets Cura."
  5063. #: Toolbox/plugin.json
  5064. msgctxt "name"
  5065. msgid "Toolbox"
  5066. msgstr "Boîte à outils"
  5067. #: GCodeWriter/plugin.json
  5068. msgctxt "description"
  5069. msgid "Writes g-code to a file."
  5070. msgstr "Enregistre le G-Code dans un fichier."
  5071. #: GCodeWriter/plugin.json
  5072. msgctxt "name"
  5073. msgid "G-code Writer"
  5074. msgstr "Générateur de G-Code"
  5075. #: SimulationView/plugin.json
  5076. msgctxt "description"
  5077. msgid "Provides the Simulation view."
  5078. msgstr "Fournit la Vue simulation."
  5079. #: SimulationView/plugin.json
  5080. msgctxt "name"
  5081. msgid "Simulation View"
  5082. msgstr "Vue simulation"
  5083. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  5084. msgctxt "description"
  5085. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  5086. msgstr "Mises à niveau des configurations de Cura 4.5 vers Cura 4.6."
  5087. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  5088. msgctxt "name"
  5089. msgid "Version Upgrade 4.5 to 4.6"
  5090. msgstr "Mise à niveau de 4.5 vers 4.6"
  5091. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  5092. msgctxt "description"
  5093. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  5094. msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6."
  5095. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  5096. msgctxt "name"
  5097. msgid "Version Upgrade 2.5 to 2.6"
  5098. msgstr "Mise à niveau de 2.5 vers 2.6"
  5099. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  5100. msgctxt "description"
  5101. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  5102. msgstr "Mises à niveau des configurations de Cura 4.6.0 vers Cura 4.6.2."
  5103. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  5104. msgctxt "name"
  5105. msgid "Version Upgrade 4.6.0 to 4.6.2"
  5106. msgstr "Mise à niveau de 4.6.0 vers 4.6.2"
  5107. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5108. msgctxt "description"
  5109. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  5110. msgstr "Mises à niveau des configurations de Cura 4.7 vers Cura 4.8."
  5111. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5112. msgctxt "name"
  5113. msgid "Version Upgrade 4.7 to 4.8"
  5114. msgstr "Mise à niveau de 4.7 vers 4.8"
  5115. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  5116. msgctxt "description"
  5117. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  5118. msgstr "Configurations des mises à niveau de Cura 3.4 vers Cura 3.5."
  5119. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  5120. msgctxt "name"
  5121. msgid "Version Upgrade 3.4 to 3.5"
  5122. msgstr "Mise à niveau de 3.4 vers 3.5"
  5123. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  5124. msgctxt "description"
  5125. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  5126. msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2."
  5127. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  5128. msgctxt "name"
  5129. msgid "Version Upgrade 2.1 to 2.2"
  5130. msgstr "Mise à niveau vers 2.1 vers 2.2"
  5131. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  5132. msgctxt "description"
  5133. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  5134. msgstr "Configurations des mises à niveau de Cura 3.2 vers Cura 3.3."
  5135. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  5136. msgctxt "name"
  5137. msgid "Version Upgrade 3.2 to 3.3"
  5138. msgstr "Mise à niveau de 3.2 vers 3.3"
  5139. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  5140. msgctxt "description"
  5141. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  5142. msgstr "Mises à niveau des configurations de Cura 4.8 vers Cura 4.9."
  5143. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  5144. msgctxt "name"
  5145. msgid "Version Upgrade 4.8 to 4.9"
  5146. msgstr "Mise à niveau de 4.8 vers 4.9"
  5147. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  5148. msgctxt "description"
  5149. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  5150. msgstr "Mises à niveau des configurations de Cura 4.6.2 vers Cura 4.7."
  5151. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  5152. msgctxt "name"
  5153. msgid "Version Upgrade 4.6.2 to 4.7"
  5154. msgstr "Mise à niveau de 4.6.2 vers 4.7"
  5155. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  5156. msgctxt "description"
  5157. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  5158. msgstr "Configurations des mises à jour de Cura 4.2 vers Cura 4.3."
  5159. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  5160. msgctxt "name"
  5161. msgid "Version Upgrade 4.2 to 4.3"
  5162. msgstr "Mise à jour de 4.2 vers 4.3"
  5163. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  5164. msgctxt "description"
  5165. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  5166. msgstr "Configurations des mises à niveau de Cura 4.3 vers Cura 4.4."
  5167. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  5168. msgctxt "name"
  5169. msgid "Version Upgrade 4.3 to 4.4"
  5170. msgstr "Mise à niveau de 4.3 vers 4.4"
  5171. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  5172. msgctxt "description"
  5173. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  5174. msgstr "Mises à niveau des configurations de Cura 4.9 vers Cura 4.10."
  5175. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  5176. msgctxt "name"
  5177. msgid "Version Upgrade 4.9 to 4.10"
  5178. msgstr "Mise à niveau de 4.9 vers 4.10"
  5179. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  5180. msgctxt "description"
  5181. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  5182. msgstr "Met à niveau les configurations, de Cura 2.7 vers Cura 3.0."
  5183. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  5184. msgctxt "name"
  5185. msgid "Version Upgrade 2.7 to 3.0"
  5186. msgstr "Mise à niveau de version, de 2.7 vers 3.0"
  5187. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  5188. msgctxt "description"
  5189. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  5190. msgstr "Configurations des mises à niveau de Cura 2.6 vers Cura 2.7."
  5191. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  5192. msgctxt "name"
  5193. msgid "Version Upgrade 2.6 to 2.7"
  5194. msgstr "Mise à niveau de 2.6 vers 2.7"
  5195. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5196. msgctxt "description"
  5197. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  5198. msgstr "Mises à niveau des configurations de Cura 4.11 vers Cura 4.12."
  5199. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5200. msgctxt "name"
  5201. msgid "Version Upgrade 4.11 to 4.12"
  5202. msgstr "Mise à niveau de la version 4.11 vers la version 4.12"
  5203. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  5204. msgctxt "description"
  5205. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  5206. msgstr "Configurations des mises à niveau de Cura 3.3 vers Cura 3.4."
  5207. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  5208. msgctxt "name"
  5209. msgid "Version Upgrade 3.3 to 3.4"
  5210. msgstr "Mise à niveau de 3.3 vers 3.4"
  5211. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  5212. msgctxt "description"
  5213. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  5214. msgstr "Met à niveau les configurations, de Cura 3.0 vers Cura 3.1."
  5215. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  5216. msgctxt "name"
  5217. msgid "Version Upgrade 3.0 to 3.1"
  5218. msgstr "Mise à niveau de version, de 3.0 vers 3.1"
  5219. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  5220. msgctxt "description"
  5221. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  5222. msgstr "Configurations des mises à niveau de Cura 4.0 vers Cura 4.1."
  5223. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  5224. msgctxt "name"
  5225. msgid "Version Upgrade 4.0 to 4.1"
  5226. msgstr "Mise à niveau de 4.0 vers 4.1"
  5227. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5228. msgctxt "description"
  5229. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  5230. msgstr "Configurations des mises à niveau de Cura 4.4 vers Cura 4.5."
  5231. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5232. msgctxt "name"
  5233. msgid "Version Upgrade 4.4 to 4.5"
  5234. msgstr "Mise à niveau de 4.4 vers 4.5"
  5235. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  5236. msgctxt "description"
  5237. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  5238. msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4."
  5239. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  5240. msgctxt "name"
  5241. msgid "Version Upgrade 2.2 to 2.4"
  5242. msgstr "Mise à niveau de 2.2 vers 2.4"
  5243. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  5244. msgctxt "description"
  5245. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  5246. msgstr "Configurations des mises à jour de Cura 4.1 vers Cura 4.2."
  5247. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  5248. msgctxt "name"
  5249. msgid "Version Upgrade 4.1 to 4.2"
  5250. msgstr "Mise à jour de 4.1 vers 4.2"
  5251. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5252. msgctxt "description"
  5253. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  5254. msgstr "Configurations des mises à niveau de Cura 3.5 vers Cura 4.0."
  5255. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5256. msgctxt "name"
  5257. msgid "Version Upgrade 3.5 to 4.0"
  5258. msgstr "Mise à niveau de 3.5 vers 4.0"
  5259. #: UM3NetworkPrinting/plugin.json
  5260. msgctxt "description"
  5261. msgid "Manages network connections to Ultimaker networked printers."
  5262. msgstr "Gère les connexions réseau vers les imprimantes Ultimaker en réseau."
  5263. #: UM3NetworkPrinting/plugin.json
  5264. msgctxt "name"
  5265. msgid "Ultimaker Network Connection"
  5266. msgstr "Connexion réseau Ultimaker"
  5267. #: TrimeshReader/plugin.json
  5268. msgctxt "description"
  5269. msgid "Provides support for reading model files."
  5270. msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D."
  5271. #: TrimeshReader/plugin.json
  5272. msgctxt "name"
  5273. msgid "Trimesh Reader"
  5274. msgstr "Lecteur de Trimesh"
  5275. #: UFPReader/plugin.json
  5276. msgctxt "description"
  5277. msgid "Provides support for reading Ultimaker Format Packages."
  5278. msgstr "Fournit un support pour la lecture des paquets de format Ultimaker."
  5279. #: UFPReader/plugin.json
  5280. msgctxt "name"
  5281. msgid "UFP Reader"
  5282. msgstr "Lecteur UFP"
  5283. #: SolidView/plugin.json
  5284. msgctxt "description"
  5285. msgid "Provides a normal solid mesh view."
  5286. msgstr "Affiche une vue en maille solide normale."
  5287. #: SolidView/plugin.json
  5288. msgctxt "name"
  5289. msgid "Solid View"
  5290. msgstr "Vue solide"
  5291. #: 3MFWriter/plugin.json
  5292. msgctxt "description"
  5293. msgid "Provides support for writing 3MF files."
  5294. msgstr "Permet l'écriture de fichiers 3MF."
  5295. #: 3MFWriter/plugin.json
  5296. msgctxt "name"
  5297. msgid "3MF Writer"
  5298. msgstr "Générateur 3MF"
  5299. #: MonitorStage/plugin.json
  5300. msgctxt "description"
  5301. msgid "Provides a monitor stage in Cura."
  5302. msgstr "Fournit une étape de surveillance dans Cura."
  5303. #: MonitorStage/plugin.json
  5304. msgctxt "name"
  5305. msgid "Monitor Stage"
  5306. msgstr "Étape de surveillance"
  5307. #: ModelChecker/plugin.json
  5308. msgctxt "description"
  5309. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  5310. 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."
  5311. #: ModelChecker/plugin.json
  5312. msgctxt "name"
  5313. msgid "Model Checker"
  5314. msgstr "Contrôleur de modèle"
  5315. #~ msgctxt "@info:status"
  5316. #~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  5317. #~ msgstr "Lancez et surveillez des impressions où que vous soyez avec votre compte Ultimaker."
  5318. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5319. #~ msgid "Connect to Ultimaker Digital Factory"
  5320. #~ msgstr "Se connecter à Ultimaker Digital Factory"
  5321. #~ msgctxt "@info"
  5322. #~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura."
  5323. #~ msgstr "Les flux de webcam des imprimantes cloud ne peuvent pas être visualisés depuis Ultimaker Cura."
  5324. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5325. #~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
  5326. #~ msgstr "De nouvelles fonctionnalités ou des correctifs de bugs sont disponibles pour votre {machine_name} ! Si vous ne possédez pas la dernière version disponible, il est recommandé de mettre à jour le micrologiciel sur votre imprimante avec la version {latest_version}."
  5327. #~ msgctxt "@info:title The %s gets replaced with the printer name."
  5328. #~ msgid "New %s firmware available"
  5329. #~ msgstr "Nouveau firmware %s disponible"
  5330. #~ msgctxt "@info:status"
  5331. #~ msgid "Global stack is missing."
  5332. #~ msgstr "Il manque la pile globale."
  5333. #~ msgctxt "@info:status"
  5334. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  5335. #~ msgstr "Votre modèle n'est pas fonctionnel. Les zones surlignées indiquent que des surfaces manquent ou sont étrangères."
  5336. #~ msgctxt "@info:title"
  5337. #~ msgid "Model errors"
  5338. #~ msgstr "Erreurs du modèle"
  5339. #~ msgctxt "@label:listbox"
  5340. #~ msgid "Layer thickness"
  5341. #~ msgstr "Épaisseur de la couche"
  5342. #~ msgctxt "@label"
  5343. #~ msgid "Your key to connected 3D printing"
  5344. #~ msgstr "Votre clé pour une impression 3D connectée"
  5345. #~ msgctxt "@text"
  5346. #~ msgid ""
  5347. #~ "- Customize your experience with more print profiles and plugins\n"
  5348. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  5349. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  5350. #~ msgstr ""
  5351. #~ "- Personnalisez votre expérience avec plus de profils d'impression et de plug-ins\n"
  5352. #~ "- Restez flexible en synchronisant votre configuration et en la chargeant n'importe où\n"
  5353. #~ "- Augmentez l'efficacité grâce à un flux de travail à distance sur les imprimantes Ultimaker"
  5354. #~ msgctxt "@button"
  5355. #~ msgid "Create account"
  5356. #~ msgstr "Créer un compte"
  5357. #~ msgctxt "@action:inmenu menubar:edit"
  5358. #~ msgid "Delete Selected Model"
  5359. #~ msgid_plural "Delete Selected Models"
  5360. #~ msgstr[0] "Supprimer le modèle sélectionné"
  5361. #~ msgstr[1] "Supprimer les modèles sélectionnés"
  5362. #~ msgctxt "@action:inmenu menubar:edit"
  5363. #~ msgid "Center Selected Model"
  5364. #~ msgid_plural "Center Selected Models"
  5365. #~ msgstr[0] "Centrer le modèle sélectionné"
  5366. #~ msgstr[1] "Centrer les modèles sélectionnés"
  5367. #~ msgctxt "@action:inmenu menubar:edit"
  5368. #~ msgid "Multiply Selected Model"
  5369. #~ msgid_plural "Multiply Selected Models"
  5370. #~ msgstr[0] "Multiplier le modèle sélectionné"
  5371. #~ msgstr[1] "Multiplier les modèles sélectionnés"
  5372. #~ msgctxt "@button"
  5373. #~ msgid "Finish"
  5374. #~ msgstr "Fin"
  5375. #~ msgctxt "@label"
  5376. #~ msgid "Ultimaker Account"
  5377. #~ msgstr "Compte Ultimaker"
  5378. #~ msgctxt "@text"
  5379. #~ msgid "Your key to connected 3D printing"
  5380. #~ msgstr "Votre clé pour une impression 3D connectée"
  5381. #~ msgctxt "@text"
  5382. #~ msgid "- Customize your experience with more print profiles and plugins"
  5383. #~ msgstr "- Personnalisez votre expérience avec plus de profils d'impression et de plug-ins"
  5384. #~ msgctxt "@text"
  5385. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  5386. #~ msgstr "- Restez flexible en synchronisant votre configuration et en la chargeant n'importe où"
  5387. #~ msgctxt "@text"
  5388. #~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  5389. #~ msgstr "- Augmentez l'efficacité avec un flux de travail à distance sur les imprimantes Ultimaker"
  5390. #~ msgctxt "@text"
  5391. #~ msgid ""
  5392. #~ "Please follow these steps to set up\n"
  5393. #~ "Ultimaker Cura. This will only take a few moments."
  5394. #~ msgstr ""
  5395. #~ "Veuillez suivre ces étapes pour configurer\n"
  5396. #~ "Ultimaker Cura. Cela ne prendra que quelques instants."
  5397. #~ msgctxt "@label"
  5398. #~ msgid "What's new in Ultimaker Cura"
  5399. #~ msgstr "Quoi de neuf dans Ultimaker Cura"
  5400. #~ msgctxt "@label ({} is object name)"
  5401. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  5402. #~ msgstr "Êtes-vous sûr de vouloir supprimer l'objet {} ? Cette action est irréversible !"
  5403. #~ msgctxt "@info:status"
  5404. #~ msgid "The selected model was too small to load."
  5405. #~ msgstr "Le modèle sélectionné était trop petit pour être chargé."
  5406. #~ msgctxt "@info:status"
  5407. #~ msgid "Successfully imported profile {0}"
  5408. #~ msgstr "Importation du profil {0} réussie"
  5409. #~ msgctxt "@info:status"
  5410. #~ msgid "Could not find a quality type {0} for the current configuration."
  5411. #~ msgstr "Impossible de trouver un type de qualité {0} pour la configuration actuelle."
  5412. #~ msgctxt "info:status"
  5413. #~ msgid "Adding printer {} ({}) from your account"
  5414. #~ msgstr "Ajout de l'imprimante {} ({}) à partir de votre compte"
  5415. #~ msgctxt "info:hidden list items"
  5416. #~ msgid "<li>... and {} others</li>"
  5417. #~ msgstr "<li>... et {} autres</li>"
  5418. #~ msgctxt "info:status"
  5419. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  5420. #~ msgstr "Imprimantes ajoutées à partir de Digital Factory : <ul>{} </ul>"
  5421. #~ msgctxt "info:status"
  5422. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5423. #~ msgstr "<ul>{}</ul>Pour établir une connexion, veuillez visiter l'<a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5424. #~ msgctxt "@label ({} is printer name)"
  5425. #~ msgid "{} will be removed until the next account sync. <br> To remove {} permanently, visit <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Are you sure you want to remove {} temporarily?"
  5426. #~ msgstr "{} sera supprimé(e) jusqu'à la prochaine synchronisation de compte. <br> Pour supprimer {} définitivement, visitez l'<a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Voulez-vous vraiment supprimer {} temporairement ?"
  5427. #~ msgctxt "@label"
  5428. #~ msgid ""
  5429. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  5430. #~ "Are you sure you want to continue?"
  5431. #~ msgstr ""
  5432. #~ "Vous êtes sur le point de supprimer {} imprimante(s) de Cura. Cette action est irréversible. \n"
  5433. #~ "Voulez-vous vraiment continuer ?"
  5434. #~ msgctxt "@label"
  5435. #~ msgid ""
  5436. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  5437. #~ "Are you sure you want to continue?"
  5438. #~ msgstr ""
  5439. #~ "Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible. \n"
  5440. #~ "Voulez-vous vraiment continuer ?"
  5441. #~ msgctxt "@action:ComboBox option"
  5442. #~ msgid "Update"
  5443. #~ msgstr "Mise à jour"
  5444. #~ msgctxt "@action:ComboBox option"
  5445. #~ msgid "Create new"
  5446. #~ msgstr "Créer"
  5447. #~ msgctxt "@label"
  5448. #~ msgid "Shared Heater"
  5449. #~ msgstr "Chauffage partagé"
  5450. #~ msgctxt "@info"
  5451. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  5452. #~ msgstr "La webcam n'est pas disponible car vous surveillez une imprimante cloud."
  5453. #~ msgctxt "@button"
  5454. #~ msgid "Ultimaker Digital Factory"
  5455. #~ msgstr "Ultimaker Digital Factory"
  5456. #~ msgctxt "@text:window, %1 is a profile name"
  5457. #~ msgid ""
  5458. #~ "You have customized some profile settings.\n"
  5459. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5460. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  5461. #~ msgstr ""
  5462. #~ "Vous avez personnalisé certains paramètres de votre profil.\n"
  5463. #~ "Souhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?\n"
  5464. #~ "Vous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'."
  5465. #~ msgctxt "@label"
  5466. #~ msgid "Overrides %1 setting."
  5467. #~ msgid_plural "Overrides %1 settings."
  5468. #~ msgstr[0] "Remplace le paramètre %1."
  5469. #~ msgstr[1] "Remplace les paramètres %1."
  5470. #~ msgctxt "@text"
  5471. #~ msgid "Please give your printer a name"
  5472. #~ msgstr "Veuillez donner un nom à votre imprimante"
  5473. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5474. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  5475. #~ msgstr "De nouvelles fonctionnalités sont disponibles pour votre {machine_name} ! Il est recommandé de mettre à jour le firmware sur votre imprimante."
  5476. #~ msgctxt "@action:button"
  5477. #~ msgid "Print via Cloud"
  5478. #~ msgstr "Imprimer via le cloud"
  5479. #~ msgctxt "@properties:tooltip"
  5480. #~ msgid "Print via Cloud"
  5481. #~ msgstr "Imprimer via le cloud"
  5482. #~ msgctxt "@info:status"
  5483. #~ msgid "Connected via Cloud"
  5484. #~ msgstr "Connecté via le cloud"
  5485. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5486. #~ msgid "Connect to Ultimaker Cloud"
  5487. #~ msgstr "Se connecter à Ultimaker Cloud"
  5488. #~ msgctxt "@label"
  5489. #~ msgid "You need to login first before you can rate"
  5490. #~ msgstr "Vous devez être connecté avant de pouvoir effectuer une évaluation"
  5491. #~ msgctxt "@label"
  5492. #~ msgid "You need to install the package before you can rate"
  5493. #~ msgstr "Vous devez installer le paquet avant de pouvoir effectuer une évaluation"
  5494. #~ msgctxt "@label"
  5495. #~ msgid "ratings"
  5496. #~ msgstr "évaluations"
  5497. #~ msgctxt "@label"
  5498. #~ msgid "Featured"
  5499. #~ msgstr "Fonctionnalités"
  5500. #~ msgctxt "@label"
  5501. #~ msgid "Your rating"
  5502. #~ msgstr "Votre évaluation"
  5503. #~ msgctxt "@label"
  5504. #~ msgid "Author"
  5505. #~ msgstr "Auteur"
  5506. #~ msgctxt "@description"
  5507. #~ msgid "Get plugins and materials verified by Ultimaker"
  5508. #~ msgstr "Faire vérifier les plugins et matériaux par Ultimaker"
  5509. #~ msgctxt "@label The argument is a username."
  5510. #~ msgid "Hi %1"
  5511. #~ msgstr "Bonjour %1"
  5512. #~ msgctxt "@button"
  5513. #~ msgid "Ultimaker account"
  5514. #~ msgstr "Compte Ultimaker"
  5515. #~ msgctxt "@button"
  5516. #~ msgid "Sign out"
  5517. #~ msgstr "Déconnexion"
  5518. #~ msgctxt "@label"
  5519. #~ msgid "Support library for analysis of complex networks"
  5520. #~ msgstr "Prise en charge de la bibliothèque pour l'analyse de réseaux complexes"
  5521. #~ msgctxt "@Label"
  5522. #~ msgid "Python HTTP library"
  5523. #~ msgstr "Bibliothèque Python HTTP"
  5524. #~ msgctxt "@text:window"
  5525. #~ msgid ""
  5526. #~ "You have customized some profile settings.\n"
  5527. #~ "Would you like to keep or discard those settings?"
  5528. #~ msgstr ""
  5529. #~ "Vous avez personnalisé certains paramètres du profil.\n"
  5530. #~ "Souhaitez-vous conserver ces changements, ou les annuler ?"
  5531. #~ msgctxt "@title:column"
  5532. #~ msgid "Default"
  5533. #~ msgstr "Par défaut"
  5534. #~ msgctxt "@title:column"
  5535. #~ msgid "Customized"
  5536. #~ msgstr "Personnalisé"
  5537. #~ msgctxt "@action:button"
  5538. #~ msgid "Discard"
  5539. #~ msgstr "Annuler"
  5540. #~ msgctxt "@action:button"
  5541. #~ msgid "Keep"
  5542. #~ msgstr "Conserver"
  5543. #~ msgctxt "@action:button"
  5544. #~ msgid "Create New Profile"
  5545. #~ msgstr "Créer un nouveau profil"
  5546. #~ msgctxt "@title:menu menubar:file"
  5547. #~ msgid "&Save..."
  5548. #~ msgstr "Enregi&strer..."
  5549. #~ msgctxt "@text"
  5550. #~ msgid "Place enter your printer's IP address."
  5551. #~ msgstr "Saisissez l'adresse IP de votre imprimante."
  5552. #~ msgctxt "@button"
  5553. #~ msgid "Create an account"
  5554. #~ msgstr "Créer un compte"
  5555. #~ msgctxt "@info:generic"
  5556. #~ msgid ""
  5557. #~ "\n"
  5558. #~ "Do you want to sync material and software packages with your account?"
  5559. #~ msgstr ""
  5560. #~ "\n"
  5561. #~ "Vous souhaitez synchroniser du matériel et des logiciels avec votre compte ?"
  5562. #~ msgctxt "@info:generic"
  5563. #~ msgid ""
  5564. #~ "\n"
  5565. #~ "Syncing..."
  5566. #~ msgstr ""
  5567. #~ "\n"
  5568. #~ "Synchronisation..."
  5569. #~ msgctxt "@info:status"
  5570. #~ 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."
  5571. #~ msgstr "Rien à découper car les modèles ne conviennent pas au volume d'impression ou sont assignés à une extrudeuse désactivée. Mettez les modèles à l'échelle ou faites-les pivoter pour les faire correspondre, ou activez une extrudeuse."
  5572. #~ msgctxt "@info:backup_status"
  5573. #~ msgid "There was an error listing your backups."
  5574. #~ msgstr "Une erreur s’est produite lors du listage de vos sauvegardes."
  5575. #~ msgctxt "@title:groupbox"
  5576. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  5577. #~ msgstr "Description de l'utilisateur (Remarque : les développeurs peuvent ne pas partler votre langue. Veuillez utiliser l'anglais si possible)"
  5578. #~ msgctxt "@title:window"
  5579. #~ msgid "Closing Cura"
  5580. #~ msgstr "Fermeture de Cura"
  5581. #~ msgctxt "@label"
  5582. #~ msgid "Are you sure you want to exit Cura?"
  5583. #~ msgstr "Êtes-vous sûr de vouloir quitter Cura ?"
  5584. #~ msgctxt "@label"
  5585. #~ msgid "Language:"
  5586. #~ msgstr "Langue :"
  5587. #~ msgctxt "@label"
  5588. #~ msgid "Ultimaker Cloud"
  5589. #~ msgstr "Ultimaker Cloud"
  5590. #~ msgctxt "@text"
  5591. #~ msgid "The next generation 3D printing workflow"
  5592. #~ msgstr "Le flux d'impression 3D de nouvelle génération"
  5593. #~ msgctxt "@text"
  5594. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  5595. #~ msgstr "- Envoyez des tâches d'impression à des imprimantes Ultimaker hors de votre réseau local"
  5596. #~ msgctxt "@text"
  5597. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  5598. #~ msgstr "- Stockez vos paramètres Ultimaker Cura dans le cloud pour les utiliser où que vous soyez"
  5599. #~ msgctxt "@text"
  5600. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5601. #~ msgstr "- Accédez en exclusivité aux profils d'impression des plus grandes marques"
  5602. #~ msgctxt "@label"
  5603. #~ msgid "The value is resolved from per-extruder values "
  5604. #~ msgstr "La valeur est résolue à partir des valeurs par extrudeur "
  5605. #~ msgctxt "@label"
  5606. #~ msgid "The next generation 3D printing workflow"
  5607. #~ msgstr "Le flux d'impression 3D de nouvelle génération"
  5608. #~ msgctxt "@text"
  5609. #~ msgid ""
  5610. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5611. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5612. #~ "- Get exclusive access to print profiles from leading brands"
  5613. #~ msgstr ""
  5614. #~ "- Envoyez des tâches d'impression à des imprimantes Ultimaker hors de votre réseau local\n"
  5615. #~ "- Stockez vos paramètres Ultimaker Cura dans le cloud pour les utiliser où que vous soyez\n"
  5616. #~ "- Obtenez un accès exclusif aux profils d'impression des principales marques"
  5617. #~ msgctxt "@title:window"
  5618. #~ msgid "About "
  5619. #~ msgstr "À propos de... "
  5620. #~ msgctxt "@info:button"
  5621. #~ msgid "Quit Cura"
  5622. #~ msgstr "Quitter Cura"
  5623. #~ msgctxt "@action:checkbox"
  5624. #~ msgid "Infill only"
  5625. #~ msgstr "Remplissage uniquement"
  5626. #~ msgctxt "@info:tooltip"
  5627. #~ msgid "Change active post-processing scripts"
  5628. #~ msgstr "Modifier les scripts de post-traitement actifs"
  5629. #~ msgctxt "@label:listbox"
  5630. #~ msgid "Feedrate"
  5631. #~ msgstr "Taux d'alimentation"
  5632. #~ msgctxt "name"
  5633. #~ msgid "Machine Settings action"
  5634. #~ msgstr "Action Paramètres de la machine"
  5635. #~ msgctxt "@info:title"
  5636. #~ msgid "New cloud printers found"
  5637. #~ msgstr "Nouvelles imprimantes cloud trouvées"
  5638. #~ msgctxt "@info:message"
  5639. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5640. #~ msgstr "De nouvelles imprimantes ont été trouvées connectées à votre compte. Vous pouvez les trouver dans votre liste d'imprimantes découvertes."
  5641. #~ msgctxt "@info:status"
  5642. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5643. #~ msgstr "Cura n'affiche pas les couches avec précision lorsque l'impression filaire est activée"
  5644. #~ msgctxt "@label"
  5645. #~ msgid "Pre-sliced file {0}"
  5646. #~ msgstr "Fichier {0} prédécoupé"
  5647. #~ msgctxt "@label"
  5648. #~ msgid ""
  5649. #~ "This plugin contains a license.\n"
  5650. #~ "You need to accept this license to install this plugin.\n"
  5651. #~ "Do you agree with the terms below?"
  5652. #~ msgstr ""
  5653. #~ "Ce plug-in contient une licence.\n"
  5654. #~ "Vous devez approuver cette licence pour installer ce plug-in.\n"
  5655. #~ "Acceptez-vous les clauses ci-dessous ?"
  5656. #~ msgctxt "@action:button"
  5657. #~ msgid "Accept"
  5658. #~ msgstr "Accepter"
  5659. #~ msgctxt "@action:button"
  5660. #~ msgid "Decline"
  5661. #~ msgstr "Refuser"
  5662. #~ msgctxt "@action:inmenu"
  5663. #~ msgid "Show All Settings"
  5664. #~ msgstr "Afficher tous les paramètres"
  5665. #~ msgctxt "@title:window"
  5666. #~ msgid "Ultimaker Cura"
  5667. #~ msgstr "Ultimaker Cura"
  5668. #~ msgctxt "@title:window"
  5669. #~ msgid "About Cura"
  5670. #~ msgstr "À propos de Cura"
  5671. #~ msgctxt "@item:inmenu"
  5672. #~ msgid "Flatten active settings"
  5673. #~ msgstr "Aplatir les paramètres actifs"
  5674. #~ msgctxt "@info:status"
  5675. #~ msgid "Profile has been flattened & activated."
  5676. #~ msgstr "Le profil a été aplati et activé."
  5677. #~ msgctxt "X3g Writer Plugin Description"
  5678. #~ msgid "Writes X3g to files"
  5679. #~ msgstr "Écrit X3G dans des fichiers"
  5680. #~ msgctxt "X3g Writer File Description"
  5681. #~ msgid "X3g File"
  5682. #~ msgstr "Fichier X3G"
  5683. #~ msgctxt "X3G Writer File Description"
  5684. #~ msgid "X3G File"
  5685. #~ msgstr "Fichier X3G"
  5686. #~ msgctxt "@item:inlistbox"
  5687. #~ msgid "Open Compressed Triangle Mesh"
  5688. #~ msgstr "Ouvrir le maillage triangulaire compressé"
  5689. #~ msgctxt "@item:inmenu"
  5690. #~ msgid "Profile Assistant"
  5691. #~ msgstr "Assistant de profil"
  5692. #~ msgctxt "@item:inlistbox"
  5693. #~ msgid "Profile Assistant"
  5694. #~ msgstr "Assistant de profil"
  5695. #~ msgctxt "@action:button"
  5696. #~ msgid "Retry"
  5697. #~ msgstr "Réessayer"
  5698. #~ msgctxt "@label:table_header"
  5699. #~ msgid "Print Core"
  5700. #~ msgstr "Print Core"
  5701. #~ msgctxt "@label"
  5702. #~ msgid "Don't support overlap with other models"
  5703. #~ msgstr "Ne pas prendre en charge le chevauchement avec d'autres modèles"
  5704. #~ msgctxt "@label"
  5705. #~ msgid "Modify settings for overlap with other models"
  5706. #~ msgstr "Modifier les paramètres de chevauchement avec d'autres modèles"
  5707. #~ msgctxt "@label"
  5708. #~ msgid "Modify settings for infill of other models"
  5709. #~ msgstr "Modifier les paramètres de remplissage d'autres modèles"
  5710. #~ msgctxt "@action:ComboBox option"
  5711. #~ msgid "Update existing"
  5712. #~ msgstr "Mettre à jour l'existant"
  5713. #~ msgctxt "@label"
  5714. #~ msgid "Not supported"
  5715. #~ msgstr "Non pris en charge"
  5716. #~ msgctxt "@action:button"
  5717. #~ msgid "Previous"
  5718. #~ msgstr "Précédent"
  5719. #~ msgctxt "@label"
  5720. #~ msgid "Tip"
  5721. #~ msgstr "Astuce"
  5722. #~ msgctxt "@label"
  5723. #~ msgid "Print experiment"
  5724. #~ msgstr "Test d'impression"
  5725. #~ msgctxt "@label"
  5726. #~ msgid "Checklist"
  5727. #~ msgstr "Liste de contrôle"
  5728. #~ msgctxt "@label"
  5729. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  5730. #~ msgstr "Sélectionnez les mises à niveau disponibles pour cet Ultimaker 2."
  5731. #~ msgctxt "@label"
  5732. #~ msgid "Olsson Block"
  5733. #~ msgstr "Blocage Olsson"
  5734. #~ msgctxt "@window:text"
  5735. #~ msgid "Camera rendering: "
  5736. #~ msgstr "Rendu caméra : "
  5737. #~ msgctxt "@info:tooltip"
  5738. #~ msgid "Use multi build plate functionality"
  5739. #~ msgstr "Utiliser la fonctionnalité multi-plateau"
  5740. #~ msgctxt "@option:check"
  5741. #~ msgid "Use multi build plate functionality (restart required)"
  5742. #~ msgstr "Utiliser la fonctionnalité multi-plateau (redémarrage requis)"
  5743. #~ msgctxt "@label"
  5744. #~ msgid "Default profiles"
  5745. #~ msgstr "Profils par défaut"
  5746. #~ msgctxt "@label:textbox"
  5747. #~ msgid "search settings"
  5748. #~ msgstr "paramètres de recherche"
  5749. #~ msgctxt "@label"
  5750. #~ msgid "Layer Height"
  5751. #~ msgstr "Hauteur de la couche"
  5752. #~ msgctxt "@tooltip"
  5753. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  5754. #~ 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é."
  5755. #~ msgctxt "@tooltip"
  5756. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  5757. #~ 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"
  5758. #~ msgctxt "@title:menu"
  5759. #~ msgid "&Build plate"
  5760. #~ msgstr "Plateau"
  5761. #~ msgctxt "@title:settings"
  5762. #~ msgid "&Profile"
  5763. #~ msgstr "&Profil"
  5764. #~ msgctxt "@action:label"
  5765. #~ msgid "Build plate"
  5766. #~ msgstr "Plateau"
  5767. #~ msgctxt "description"
  5768. #~ msgid "Dump the contents of all settings to a HTML file."
  5769. #~ msgstr "Exporter les contenus de tous les paramètres vers un fichier HTML."
  5770. #~ msgctxt "name"
  5771. #~ msgid "God Mode"
  5772. #~ msgstr "Mode God"
  5773. #~ msgctxt "description"
  5774. #~ msgid "Create a flattened quality changes profile."
  5775. #~ msgstr "Créer un profil de changements de qualité aplati."
  5776. #~ msgctxt "name"
  5777. #~ msgid "Profile Flattener"
  5778. #~ msgstr "Aplatisseur de profil"
  5779. #~ msgctxt "description"
  5780. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  5781. #~ 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."
  5782. #~ msgctxt "name"
  5783. #~ msgid "Print Profile Assistant"
  5784. #~ msgstr "Assistant de profil d'impression"
  5785. #~ msgctxt "@info:status"
  5786. #~ msgid "Connected over the network."
  5787. #~ msgstr "Connecté sur le réseau."
  5788. #~ msgctxt "@info:status"
  5789. #~ msgid "Connected over the network. Please approve the access request on the printer."
  5790. #~ msgstr "Connecté sur le réseau. Veuillez approuver la demande d'accès sur l'imprimante."
  5791. #~ msgctxt "@info:status"
  5792. #~ msgid "Connected over the network. No access to control the printer."
  5793. #~ msgstr "Connecté sur le réseau. Pas d'accès pour commander l'imprimante."
  5794. #~ msgctxt "@info:status"
  5795. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  5796. #~ msgstr "Accès à l'imprimante demandé. Veuillez approuver la demande sur l'imprimante"
  5797. #~ msgctxt "@info:title"
  5798. #~ msgid "Authentication status"
  5799. #~ msgstr "Statut d'authentification"
  5800. #~ msgctxt "@info:title"
  5801. #~ msgid "Authentication Status"
  5802. #~ msgstr "Statut d'authentification"
  5803. #~ msgctxt "@info:tooltip"
  5804. #~ msgid "Re-send the access request"
  5805. #~ msgstr "Renvoyer la demande d'accès"
  5806. #~ msgctxt "@info:status"
  5807. #~ msgid "Access to the printer accepted"
  5808. #~ msgstr "Accès à l'imprimante accepté"
  5809. #~ msgctxt "@info:status"
  5810. #~ msgid "No access to print with this printer. Unable to send print job."
  5811. #~ msgstr "Aucun accès pour imprimer avec cette imprimante. Impossible d'envoyer la tâche d'impression."
  5812. #~ msgctxt "@action:button"
  5813. #~ msgid "Request Access"
  5814. #~ msgstr "Demande d'accès"
  5815. #~ msgctxt "@info:tooltip"
  5816. #~ msgid "Send access request to the printer"
  5817. #~ msgstr "Envoyer la demande d'accès à l'imprimante"
  5818. #~ msgctxt "@label"
  5819. #~ msgid "Unable to start a new print job."
  5820. #~ msgstr "Impossible de démarrer une nouvelle tâche d'impression."
  5821. #~ msgctxt "@label"
  5822. #~ 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."
  5823. #~ 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."
  5824. #~ msgctxt "@window:title"
  5825. #~ msgid "Mismatched configuration"
  5826. #~ msgstr "Configuration différente"
  5827. #~ msgctxt "@label"
  5828. #~ msgid "Are you sure you wish to print with the selected configuration?"
  5829. #~ msgstr "Êtes-vous sûr(e) de vouloir imprimer avec la configuration sélectionnée ?"
  5830. #~ msgctxt "@label"
  5831. #~ 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."
  5832. #~ 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."
  5833. #~ msgctxt "@info:status"
  5834. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  5835. #~ msgstr "Envoi de nouvelles tâches (temporairement) bloqué, envoi de la tâche d'impression précédente en cours."
  5836. #~ msgctxt "@info:status"
  5837. #~ msgid "Sending data to printer"
  5838. #~ msgstr "Envoi des données à l'imprimante"
  5839. #~ msgctxt "@info:title"
  5840. #~ msgid "Sending Data"
  5841. #~ msgstr "Envoi des données"
  5842. #~ msgctxt "@info:status"
  5843. #~ msgid "No Printcore loaded in slot {slot_number}"
  5844. #~ msgstr "Pas de PrintCore inséré dans la fente {slot_number}"
  5845. #~ msgctxt "@info:status"
  5846. #~ msgid "No material loaded in slot {slot_number}"
  5847. #~ msgstr "Aucun matériau inséré dans la fente {slot_number}"
  5848. #~ msgctxt "@label"
  5849. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  5850. #~ msgstr "PrintCore différent (Cura : {cura_printcore_name}, Imprimante : {remote_printcore_name}) sélectionné pour l'extrudeuse {extruder_id}"
  5851. #~ msgctxt "@label"
  5852. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5853. #~ msgstr "Matériau différent (Cura : {0}, Imprimante : {1}) sélectionné pour l'extrudeuse {2}"
  5854. #~ msgctxt "@window:title"
  5855. #~ msgid "Sync with your printer"
  5856. #~ msgstr "Synchroniser avec votre imprimante"
  5857. #~ msgctxt "@label"
  5858. #~ msgid "Would you like to use your current printer configuration in Cura?"
  5859. #~ msgstr "Voulez-vous utiliser votre configuration d'imprimante actuelle dans Cura ?"
  5860. #~ msgctxt "@label"
  5861. #~ 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."
  5862. #~ 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."
  5863. #~ msgctxt "@action:button"
  5864. #~ msgid "View in Monitor"
  5865. #~ msgstr "Afficher sur le moniteur"
  5866. #~ msgctxt "@info:status"
  5867. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  5868. #~ msgstr "{printer_name} a terminé d'imprimer '{job_name}'."
  5869. #~ msgctxt "@info:status"
  5870. #~ msgid "The print job '{job_name}' was finished."
  5871. #~ msgstr "La tâche d'impression '{job_name}' est terminée."
  5872. #~ msgctxt "@info:status"
  5873. #~ msgid "Print finished"
  5874. #~ msgstr "Impression terminée"
  5875. #~ msgctxt "@label:material"
  5876. #~ msgid "Empty"
  5877. #~ msgstr "Vide"
  5878. #~ msgctxt "@label:material"
  5879. #~ msgid "Unknown"
  5880. #~ msgstr "Inconnu"
  5881. #~ msgctxt "@info:title"
  5882. #~ msgid "Cloud error"
  5883. #~ msgstr "Erreur de cloud"
  5884. #~ msgctxt "@info:status"
  5885. #~ msgid "Could not export print job."
  5886. #~ msgstr "Impossible d'exporter la tâche d'impression."
  5887. #~ msgctxt "@info:description"
  5888. #~ msgid "There was an error connecting to the cloud."
  5889. #~ msgstr "Une erreur s'est produite lors de la connexion au cloud."
  5890. #~ msgctxt "@info:status"
  5891. #~ msgid "Uploading via Ultimaker Cloud"
  5892. #~ msgstr "Téléchargement via Ultimaker Cloud"
  5893. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  5894. #~ msgid "Connect to Ultimaker Cloud"
  5895. #~ msgstr "Se connecter à Ultimaker Cloud"
  5896. #~ msgctxt "@action"
  5897. #~ msgid "Don't ask me again for this printer."
  5898. #~ msgstr "Ne plus me demander pour cette imprimante."
  5899. #~ msgctxt "@info:status"
  5900. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  5901. #~ msgstr "Vous pouvez maintenant lancer et surveiller des impressions où que vous soyez avec votre compte Ultimaker."
  5902. #~ msgctxt "@info:status"
  5903. #~ msgid "Connected!"
  5904. #~ msgstr "Connecté !"
  5905. #~ msgctxt "@action"
  5906. #~ msgid "Review your connection"
  5907. #~ msgstr "Consulter votre connexion"
  5908. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  5909. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5910. #~ msgstr "La machine définie dans le profil <filename>{0}</filename> ({1}) ne correspond pas à votre machine actuelle ({2}) ; échec de l'importation."
  5911. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5912. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  5913. #~ msgstr "Échec de l'importation du profil depuis le fichier <filename>{0}</filename> :"
  5914. #~ msgctxt "@window:title"
  5915. #~ msgid "Existing Connection"
  5916. #~ msgstr "Connexion existante"
  5917. #~ msgctxt "@message:text"
  5918. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  5919. #~ msgstr "Ce groupe / cette imprimante a déjà été ajouté à Cura. Veuillez sélectionner un autre groupe / imprimante."
  5920. #~ msgctxt "@label"
  5921. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5922. #~ msgstr "Saisissez l'adresse IP ou le nom d'hôte de votre imprimante sur le réseau."
  5923. #~ msgctxt "@info:tooltip"
  5924. #~ msgid "Connect to a printer"
  5925. #~ msgstr "Connecter à une imprimante"
  5926. #~ msgctxt "@title"
  5927. #~ msgid "Cura Settings Guide"
  5928. #~ msgstr "Guide des paramètres de Cura"
  5929. #~ msgctxt "@info:tooltip"
  5930. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  5931. #~ msgstr "Zoom vers la souris n'est pas pris en charge dans la perspective orthogonale."
  5932. #~ msgid "Orthogonal"
  5933. #~ msgstr "Orthogonale"
  5934. #~ msgctxt "description"
  5935. #~ msgid "Manages network connections to Ultimaker 3 printers."
  5936. #~ msgstr "Gère les connexions réseau vers les imprimantes Ultimaker 3."
  5937. #~ msgctxt "name"
  5938. #~ msgid "UM3 Network Connection"
  5939. #~ msgstr "Connexion au réseau UM3"
  5940. #~ msgctxt "description"
  5941. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  5942. #~ msgstr "Fournit des informations et explications supplémentaires sur les paramètres de Cura, avec des images et des animations."
  5943. #~ msgctxt "name"
  5944. #~ msgid "Settings Guide"
  5945. #~ msgstr "Guide des paramètres"
  5946. #~ msgctxt "@item:inmenu"
  5947. #~ msgid "Cura Settings Guide"
  5948. #~ msgstr "Guide des paramètres de Cura"
  5949. #~ msgctxt "@info:generic"
  5950. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  5951. #~ msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles : [%s]"
  5952. #~ msgctxt "@title:groupbox"
  5953. #~ msgid "User description"
  5954. #~ msgstr "Description de l'utilisateur"
  5955. #~ msgctxt "@info"
  5956. #~ msgid "These options are not available because you are monitoring a cloud printer."
  5957. #~ msgstr "Ces options ne sont pas disponibles car vous surveillez une imprimante cloud."
  5958. #~ msgctxt "@label link to connect manager"
  5959. #~ msgid "Go to Cura Connect"
  5960. #~ msgstr "Aller à Cura Connect"
  5961. #~ msgctxt "@info"
  5962. #~ msgid "All jobs are printed."
  5963. #~ msgstr "Toutes les tâches ont été imprimées."
  5964. #~ msgctxt "@label link to connect manager"
  5965. #~ msgid "View print history"
  5966. #~ msgstr "Voir l'historique d'impression"
  5967. #~ msgctxt "@label"
  5968. #~ msgid ""
  5969. #~ "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"
  5970. #~ "\n"
  5971. #~ "Select your printer from the list below:"
  5972. #~ msgstr ""
  5973. #~ "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"
  5974. #~ "\n"
  5975. #~ "Sélectionnez votre imprimante dans la liste ci-dessous :"
  5976. #~ msgctxt "@info"
  5977. #~ msgid ""
  5978. #~ "Please make sure your printer has a connection:\n"
  5979. #~ "- Check if the printer is turned on.\n"
  5980. #~ "- Check if the printer is connected to the network."
  5981. #~ msgstr ""
  5982. #~ "Assurez-vous que votre imprimante est connectée :\n"
  5983. #~ "- Vérifiez si l'imprimante est sous tension.\n"
  5984. #~ "- Vérifiez si l'imprimante est connectée au réseau."
  5985. #~ msgctxt "@option:check"
  5986. #~ msgid "See only current build plate"
  5987. #~ msgstr "Afficher uniquement le plateau actuel"
  5988. #~ msgctxt "@action:button"
  5989. #~ msgid "Arrange to all build plates"
  5990. #~ msgstr "Réorganiser sur tous les plateaux"
  5991. #~ msgctxt "@action:button"
  5992. #~ msgid "Arrange current build plate"
  5993. #~ msgstr "Réorganiser le plateau actuel"
  5994. #~ msgctxt "description"
  5995. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  5996. #~ 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)."
  5997. #~ msgctxt "name"
  5998. #~ msgid "X3GWriter"
  5999. #~ msgstr "X3GWriter"
  6000. #~ msgctxt "description"
  6001. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  6002. #~ msgstr "Lit les fichiers SVG comme des Toolpaths, pour déboguer les mouvements de l'imprimante."
  6003. #~ msgctxt "name"
  6004. #~ msgid "SVG Toolpath Reader"
  6005. #~ msgstr "Lecteur de Toolpaths SVG"
  6006. #~ msgctxt "@item:inmenu"
  6007. #~ msgid "Changelog"
  6008. #~ msgstr "Récapitulatif des changements"
  6009. #~ msgctxt "@item:inmenu"
  6010. #~ msgid "Show Changelog"
  6011. #~ msgstr "Afficher le récapitulatif des changements"
  6012. #~ msgctxt "@info:status"
  6013. #~ msgid "Sending data to remote cluster"
  6014. #~ msgstr "Envoi de données à un cluster distant"
  6015. #~ msgctxt "@info:status"
  6016. #~ msgid "Connect to Ultimaker Cloud"
  6017. #~ msgstr "Se connecter à Ultimaker Cloud"
  6018. #~ msgctxt "@info"
  6019. #~ msgid "Cura collects anonymized usage statistics."
  6020. #~ msgstr "Cura recueille des statistiques d'utilisation anonymes."
  6021. #~ msgctxt "@info:title"
  6022. #~ msgid "Collecting Data"
  6023. #~ msgstr "Collecte des données"
  6024. #~ msgctxt "@action:button"
  6025. #~ msgid "More info"
  6026. #~ msgstr "Plus d'informations"
  6027. #~ msgctxt "@action:tooltip"
  6028. #~ msgid "See more information on what data Cura sends."
  6029. #~ msgstr "Voir plus d'informations sur les données envoyées par Cura."
  6030. #~ msgctxt "@action:button"
  6031. #~ msgid "Allow"
  6032. #~ msgstr "Autoriser"
  6033. #~ msgctxt "@action:tooltip"
  6034. #~ 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."
  6035. #~ 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."
  6036. #~ msgctxt "@item:inmenu"
  6037. #~ msgid "Evaluation"
  6038. #~ msgstr "Évaluation"
  6039. #~ msgctxt "@info:title"
  6040. #~ msgid "Network enabled printers"
  6041. #~ msgstr "Imprimantes réseau"
  6042. #~ msgctxt "@info:title"
  6043. #~ msgid "Local printers"
  6044. #~ msgstr "Imprimantes locales"
  6045. #~ msgctxt "@info:backup_failed"
  6046. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  6047. #~ msgstr "A essayé de restaurer une sauvegarde Cura qui ne correspond pas à votre version actuelle."
  6048. #~ msgctxt "@title"
  6049. #~ msgid "Machine Settings"
  6050. #~ msgstr "Paramètres de la machine"
  6051. #~ msgctxt "@label"
  6052. #~ msgid "Printer Settings"
  6053. #~ msgstr "Paramètres de l'imprimante"
  6054. #~ msgctxt "@option:check"
  6055. #~ msgid "Origin at center"
  6056. #~ msgstr "Origine au centre"
  6057. #~ msgctxt "@option:check"
  6058. #~ msgid "Heated bed"
  6059. #~ msgstr "Plateau chauffant"
  6060. #~ msgctxt "@label"
  6061. #~ msgid "Printhead Settings"
  6062. #~ msgstr "Paramètres de la tête d'impression"
  6063. #~ msgctxt "@tooltip"
  6064. #~ 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\"."
  6065. #~ 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 »."
  6066. #~ msgctxt "@tooltip"
  6067. #~ 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\"."
  6068. #~ 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 »."
  6069. #~ msgctxt "@tooltip"
  6070. #~ 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\"."
  6071. #~ 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 »."
  6072. #~ msgctxt "@tooltip"
  6073. #~ 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\"."
  6074. #~ 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 »."
  6075. #~ msgctxt "@label"
  6076. #~ msgid "Gantry height"
  6077. #~ msgstr "Hauteur du portique"
  6078. #~ msgctxt "@tooltip"
  6079. #~ 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\"."
  6080. #~ 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 »."
  6081. #~ msgctxt "@label"
  6082. #~ msgid "Start G-code"
  6083. #~ msgstr "G-Code de démarrage"
  6084. #~ msgctxt "@tooltip"
  6085. #~ msgid "G-code commands to be executed at the very start."
  6086. #~ msgstr "Commandes G-Code à exécuter au tout début."
  6087. #~ msgctxt "@label"
  6088. #~ msgid "End G-code"
  6089. #~ msgstr "G-Code de fin"
  6090. #~ msgctxt "@tooltip"
  6091. #~ msgid "G-code commands to be executed at the very end."
  6092. #~ msgstr "Commandes G-Code à exécuter tout à la fin."
  6093. #~ msgctxt "@label"
  6094. #~ msgid "Nozzle Settings"
  6095. #~ msgstr "Paramètres de la buse"
  6096. #~ msgctxt "@tooltip"
  6097. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  6098. #~ 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."
  6099. #~ msgctxt "@label"
  6100. #~ msgid "Extruder Start G-code"
  6101. #~ msgstr "Extrudeuse G-Code de démarrage"
  6102. #~ msgctxt "@label"
  6103. #~ msgid "Extruder End G-code"
  6104. #~ msgstr "Extrudeuse G-Code de fin"
  6105. #~ msgctxt "@label"
  6106. #~ msgid "Changelog"
  6107. #~ msgstr "Récapitulatif des changements"
  6108. #~ msgctxt "@title:window"
  6109. #~ msgid "User Agreement"
  6110. #~ msgstr "Accord utilisateur"
  6111. #~ msgctxt "@alabel"
  6112. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6113. #~ msgstr "Saisissez l'adresse IP ou le nom d'hôte de votre imprimante sur le réseau."
  6114. #~ msgctxt "@info"
  6115. #~ msgid "Please select a network connected printer to monitor."
  6116. #~ msgstr "Veuillez sélectionner une imprimante à surveiller qui est connectée au réseau."
  6117. #~ msgctxt "@info"
  6118. #~ msgid "Please connect your Ultimaker printer to your local network."
  6119. #~ msgstr "Veuillez connecter votre imprimante Ultimaker à votre réseau local."
  6120. #~ msgctxt "@text:window"
  6121. #~ 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."
  6122. #~ 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."
  6123. #~ msgctxt "@text:window"
  6124. #~ msgid "I don't want to send this data"
  6125. #~ msgstr "Je ne veux pas envoyer ces données"
  6126. #~ msgctxt "@text:window"
  6127. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  6128. #~ msgstr "Permettre l'envoi de ces données à Ultimaker et nous aider à améliorer Cura"
  6129. #~ msgctxt "@label"
  6130. #~ msgid "No print selected"
  6131. #~ msgstr "Aucune impression sélectionnée"
  6132. #~ msgctxt "@info:tooltip"
  6133. #~ 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."
  6134. #~ 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."
  6135. #~ msgctxt "@title"
  6136. #~ msgid "Select Printer Upgrades"
  6137. #~ msgstr "Sélectionner les mises à niveau de l'imprimante"
  6138. #~ msgctxt "@label"
  6139. #~ 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."
  6140. #~ 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."
  6141. #~ msgctxt "@tooltip"
  6142. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  6143. #~ 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é."
  6144. #~ msgctxt "@label shown when we load a Gcode file"
  6145. #~ msgid "Print setup disabled. G code file can not be modified."
  6146. #~ msgstr "Configuration d'impression désactivée. Le fichier G-Code ne peut pas être modifié."
  6147. #~ msgctxt "@label"
  6148. #~ msgid "See the material compatibility chart"
  6149. #~ msgstr "Voir le tableau de compatibilité des matériaux"
  6150. #~ msgctxt "@label"
  6151. #~ msgid "View types"
  6152. #~ msgstr "Types d'affichages"
  6153. #~ msgctxt "@label"
  6154. #~ msgid "Hi "
  6155. #~ msgstr "Bonjour "
  6156. #~ msgctxt "@text"
  6157. #~ msgid ""
  6158. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  6159. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  6160. #~ "- Get exclusive access to material profiles from leading brands"
  6161. #~ msgstr ""
  6162. #~ "- Envoyez des tâches d'impression à des imprimantes Ultimaker hors de votre réseau local\n"
  6163. #~ "- Stockez vos paramètres Ultimaker Cura dans le cloud pour les utiliser où que vous soyez\n"
  6164. #~ "- Obtenez un accès exclusif aux profils de matériaux des principales marques"
  6165. #~ msgctxt "@label:PrintjobStatus"
  6166. #~ msgid "Unable to Slice"
  6167. #~ msgstr "Impossible de découper"
  6168. #~ msgctxt "@label"
  6169. #~ msgid "Time specification"
  6170. #~ msgstr "Spécification de durée"
  6171. #~ msgctxt "@label"
  6172. #~ msgid "Material specification"
  6173. #~ msgstr "Spécification des matériaux"
  6174. #~ msgctxt "@title:tab"
  6175. #~ msgid "Add a printer to Cura"
  6176. #~ msgstr "Ajouter une imprimante à Cura"
  6177. #~ msgctxt "@title:tab"
  6178. #~ msgid ""
  6179. #~ "Select the printer you want to use from the list below.\n"
  6180. #~ "\n"
  6181. #~ "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."
  6182. #~ msgstr ""
  6183. #~ "Sélectionnez l'imprimante que vous voulez utiliser dans la liste ci-dessous.\n"
  6184. #~ "\n"
  6185. #~ "Si votre imprimante n'est pas dans la liste, utilisez l'imprimante « Imprimante FFF personnalisée » de la catégorie « Personnalisé » et ajustez les paramètres pour qu'ils correspondent à votre imprimante dans le dialogue suivant."
  6186. #~ msgctxt "@label"
  6187. #~ msgid "Printer Name"
  6188. #~ msgstr "Nom de l'imprimante"
  6189. #~ msgctxt "@action:button"
  6190. #~ msgid "Add Printer"
  6191. #~ msgstr "Ajouter une imprimante"
  6192. #~ msgid "Modify G-Code"
  6193. #~ msgstr "Modifier le G-Code"
  6194. #~ msgctxt "@info:status"
  6195. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  6196. #~ 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."
  6197. #~ msgctxt "@info:status"
  6198. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  6199. #~ msgstr "Le matériau sélectionné est incompatible avec la machine ou la configuration sélectionnée."
  6200. #~ msgctxt "@info:title"
  6201. #~ msgid "Incompatible Material"
  6202. #~ msgstr "Matériau incompatible"
  6203. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6204. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6205. #~ msgstr "Échec de l'importation du profil depuis le fichier <filename>{0}</filename> : <message>{1}</message>"
  6206. #~ msgctxt "@title"
  6207. #~ msgid "Toolbox"
  6208. #~ msgstr "Boîte à outils"
  6209. #~ msgctxt "@label"
  6210. #~ msgid "Not available"
  6211. #~ msgstr "Non disponible"
  6212. #~ msgctxt "@label"
  6213. #~ msgid "Unreachable"
  6214. #~ msgstr "Injoignable"
  6215. #~ msgctxt "@label"
  6216. #~ msgid "Available"
  6217. #~ msgstr "Disponible"
  6218. #~ msgctxt "@label:status"
  6219. #~ msgid "Preparing"
  6220. #~ msgstr "Préparation"
  6221. #~ msgctxt "@label:status"
  6222. #~ msgid "Pausing"
  6223. #~ msgstr "Mise en pause"
  6224. #~ msgctxt "@label:status"
  6225. #~ msgid "Resuming"
  6226. #~ msgstr "Reprise"
  6227. #~ msgctxt "@label"
  6228. #~ msgid "Waiting for: Unavailable printer"
  6229. #~ msgstr "En attente : imprimante non disponible"
  6230. #~ msgctxt "@label"
  6231. #~ msgid "Waiting for: First available"
  6232. #~ msgstr "En attente : première imprimante disponible"
  6233. #~ msgctxt "@label"
  6234. #~ msgid "Waiting for: "
  6235. #~ msgstr "En attente : "
  6236. #~ msgctxt "@label"
  6237. #~ msgid "Configuration change"
  6238. #~ msgstr "Modification des configurations"
  6239. #~ msgctxt "@label"
  6240. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  6241. #~ msgstr "L'imprimante assignée, %1, nécessite d'apporter la ou les modifications suivantes à la configuration :"
  6242. #~ msgctxt "@label"
  6243. #~ msgid "Override"
  6244. #~ msgstr "Remplacer"
  6245. #~ msgctxt "@label"
  6246. #~ 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?"
  6247. #~ 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 ?"
  6248. #~ msgctxt "@window:title"
  6249. #~ msgid "Override configuration configuration and start print"
  6250. #~ msgstr "Remplacer la configuration et lancer l'impression"
  6251. #~ msgctxt "@label link to connect manager"
  6252. #~ msgid "Manage queue"
  6253. #~ msgstr "Gérer la file d'attente"
  6254. #~ msgctxt "@label"
  6255. #~ msgid "Printing"
  6256. #~ msgstr "Impression"
  6257. #~ msgctxt "@label link to connect manager"
  6258. #~ msgid "Manage printers"
  6259. #~ msgstr "Gérer les imprimantes"
  6260. #~ msgctxt "@action:button"
  6261. #~ msgid "Activate Configuration"
  6262. #~ msgstr "Activer la configuration"
  6263. #~ msgctxt "@info:tooltip"
  6264. #~ msgid "Load the configuration of the printer into Cura"
  6265. #~ msgstr "Charger la configuration de l'imprimante dans Cura"
  6266. #~ msgctxt "@label"
  6267. #~ msgid "Show Travels"
  6268. #~ msgstr "Afficher les déplacements"
  6269. #~ msgctxt "@label"
  6270. #~ msgid "Show Helpers"
  6271. #~ msgstr "Afficher les aides"
  6272. #~ msgctxt "@label"
  6273. #~ msgid "Show Shell"
  6274. #~ msgstr "Afficher la coque"
  6275. #~ msgctxt "@label"
  6276. #~ msgid "Show Infill"
  6277. #~ msgstr "Afficher le remplissage"
  6278. #~ msgctxt "@text:window"
  6279. #~ msgid "I don't want to send these data"
  6280. #~ msgstr "Je ne veux pas envoyer ces données"
  6281. #~ msgctxt "@text:window"
  6282. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  6283. #~ msgstr "Permettre l'envoi de ces données à Ultimaker et nous aider à améliorer Cura"
  6284. #~ msgctxt "@label"
  6285. #~ msgid "Printer type:"
  6286. #~ msgstr "Type d'imprimante :"
  6287. #~ msgctxt "@label"
  6288. #~ msgid "Connection:"
  6289. #~ msgstr "Connexion :"
  6290. #~ msgctxt "@label"
  6291. #~ msgid "State:"
  6292. #~ msgstr "État :"
  6293. #~ msgctxt "@label:MonitorStatus"
  6294. #~ msgid "Waiting for a printjob"
  6295. #~ msgstr "En attente d'une tâche d'impression"
  6296. #~ msgctxt "@label:MonitorStatus"
  6297. #~ msgid "Waiting for someone to clear the build plate"
  6298. #~ msgstr "En attente du dégagement du plateau"
  6299. #~ msgctxt "@label:MonitorStatus"
  6300. #~ msgid "Aborting print..."
  6301. #~ msgstr "Abandon de l'impression..."
  6302. #~ msgctxt "@label"
  6303. #~ msgid "Protected profiles"
  6304. #~ msgstr "Profils protégés"
  6305. #~ msgctxt "@label"
  6306. #~ msgid "Printer Name:"
  6307. #~ msgstr "Nom de l'imprimante :"
  6308. #~ msgctxt "@label"
  6309. #~ msgid "Profile:"
  6310. #~ msgstr "Profil :"
  6311. #~ msgctxt "@label:textbox"
  6312. #~ msgid "Search..."
  6313. #~ msgstr "Rechercher..."
  6314. #~ msgctxt "@action:inmenu"
  6315. #~ msgid "Collapse All"
  6316. #~ msgstr "Réduire tout"
  6317. #~ msgctxt "@action:inmenu"
  6318. #~ msgid "Expand All"
  6319. #~ msgstr "Développer tout"
  6320. #~ msgctxt "@label:header configurations"
  6321. #~ msgid "Available configurations"
  6322. #~ msgstr "Configurations disponibles"
  6323. #~ msgctxt "@label:extruder label"
  6324. #~ msgid "Extruder"
  6325. #~ msgstr "Extrudeuse"
  6326. #~ msgctxt "@label:extruder label"
  6327. #~ msgid "Yes"
  6328. #~ msgstr "Oui"
  6329. #~ msgctxt "@label:extruder label"
  6330. #~ msgid "No"
  6331. #~ msgstr "Non"
  6332. #~ msgctxt "@label:listbox"
  6333. #~ msgid "Print Setup"
  6334. #~ msgstr "Configuration de l'impression"
  6335. #~ msgctxt "@label:listbox"
  6336. #~ msgid ""
  6337. #~ "Print Setup disabled\n"
  6338. #~ "G-code files cannot be modified"
  6339. #~ msgstr ""
  6340. #~ "Configuration de l'impression désactivée\n"
  6341. #~ "Les fichiers G-Code ne peuvent pas être modifiés"
  6342. #~ msgctxt "@label Hours and minutes"
  6343. #~ msgid "00h 00min"
  6344. #~ msgstr "00h 00min"
  6345. #~ msgctxt "@tooltip"
  6346. #~ msgid "Time specification"
  6347. #~ msgstr "Spécification de temps"
  6348. #~ msgctxt "@label"
  6349. #~ msgid "Cost specification"
  6350. #~ msgstr "Spécification de coût"
  6351. #~ msgctxt "@label"
  6352. #~ msgid "Total:"
  6353. #~ msgstr "Total :"
  6354. #~ msgctxt "@tooltip"
  6355. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  6356. #~ 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."
  6357. #~ msgctxt "@tooltip"
  6358. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  6359. #~ 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."
  6360. #~ msgctxt "@action:inmenu menubar:help"
  6361. #~ msgid "Show Engine &Log..."
  6362. #~ msgstr "Afficher le &journal du moteur..."
  6363. #~ msgctxt "@action:menu"
  6364. #~ msgid "Browse packages..."
  6365. #~ msgstr "Parcourir les paquets..."
  6366. #~ msgctxt "@action:inmenu menubar:view"
  6367. #~ msgid "Expand/Collapse Sidebar"
  6368. #~ msgstr "Déplier / replier la barre latérale"
  6369. #~ msgctxt "@label:PrintjobStatus"
  6370. #~ msgid "Please load a 3D model"
  6371. #~ msgstr "Veuillez charger un modèle 3D"
  6372. #~ msgctxt "@label:PrintjobStatus"
  6373. #~ msgid "Ready to slice"
  6374. #~ msgstr "Prêt à découper"
  6375. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  6376. #~ msgid "Ready to %1"
  6377. #~ msgstr "Prêt à %1"
  6378. #~ msgctxt "@label:PrintjobStatus"
  6379. #~ msgid "Slicing unavailable"
  6380. #~ msgstr "Découpe indisponible"
  6381. #~ msgctxt "@info:tooltip"
  6382. #~ msgid "Slice current printjob"
  6383. #~ msgstr "Découper la tâche d'impression en cours"
  6384. #~ msgctxt "@info:tooltip"
  6385. #~ msgid "Cancel slicing process"
  6386. #~ msgstr "Annuler le processus de découpe"
  6387. #~ msgctxt "@label:Printjob"
  6388. #~ msgid "Prepare"
  6389. #~ msgstr "Préparer"
  6390. #~ msgctxt "@label:Printjob"
  6391. #~ msgid "Cancel"
  6392. #~ msgstr "Annuler"
  6393. #~ msgctxt "@info:tooltip"
  6394. #~ msgid "Select the active output device"
  6395. #~ msgstr "Sélectionner le périphérique de sortie actif"
  6396. #~ msgctxt "@title:menu"
  6397. #~ msgid "&View"
  6398. #~ msgstr "&Visualisation"
  6399. #~ msgctxt "@title:menu"
  6400. #~ msgid "&Settings"
  6401. #~ msgstr "&Paramètres"
  6402. #~ msgctxt "@title:menu menubar:toplevel"
  6403. #~ msgid "&Toolbox"
  6404. #~ msgstr "&Boîte à outils"
  6405. #~ msgctxt "@action:button"
  6406. #~ msgid "Open File"
  6407. #~ msgstr "Ouvrir un fichier"
  6408. #~ msgctxt "@tooltip"
  6409. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  6410. #~ 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é"
  6411. #~ msgctxt "@label"
  6412. #~ msgid "Print Speed"
  6413. #~ msgstr "Vitesse d’impression"
  6414. #~ msgctxt "@label"
  6415. #~ msgid "Slower"
  6416. #~ msgstr "Ralentir"
  6417. #~ msgctxt "@label"
  6418. #~ msgid "Faster"
  6419. #~ msgstr "Accélérer"
  6420. #~ msgctxt "@label"
  6421. #~ msgid "Enable gradual"
  6422. #~ msgstr "Permettre le remplissage graduel"
  6423. #~ msgctxt "@label"
  6424. #~ msgid "Generate Support"
  6425. #~ msgstr "Générer les supports"
  6426. #~ msgctxt "@label"
  6427. #~ msgid "Build Plate Adhesion"
  6428. #~ msgstr "Adhérence au plateau"
  6429. #~ msgctxt "@label"
  6430. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  6431. #~ msgstr "Besoin d'aide pour améliorer vos impressions ?<br>Lisez les <a href='%1'>Guides de dépannage Ultimaker</a>"
  6432. #~ msgctxt "@title:window"
  6433. #~ msgid "Engine Log"
  6434. #~ msgstr "Journal du moteur"
  6435. #~ msgctxt "@label"
  6436. #~ msgid "Printer type"
  6437. #~ msgstr "Type d'imprimante"
  6438. #~ msgctxt "@label"
  6439. #~ msgid "Use glue with this material combination"
  6440. #~ msgstr "Utiliser de la colle avec cette combinaison de matériaux"
  6441. #~ msgctxt "@label"
  6442. #~ msgid "Check compatibility"
  6443. #~ msgstr "Vérifier la compatibilité"
  6444. #~ msgctxt "@tooltip"
  6445. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  6446. #~ msgstr "Cliquez ici pour vérifier la compatibilité des matériaux sur Ultimaker.com."
  6447. #~ msgctxt "description"
  6448. #~ msgid "Shows changes since latest checked version."
  6449. #~ msgstr "Affiche les changements depuis la dernière version."
  6450. #~ msgctxt "name"
  6451. #~ msgid "Changelog"
  6452. #~ msgstr "Récapitulatif des changements"
  6453. #~ msgctxt "description"
  6454. #~ msgid "Create a flattend quality changes profile."
  6455. #~ msgstr "Créer un profil de changements de qualité aplati."
  6456. #~ msgctxt "name"
  6457. #~ msgid "Profile flatener"
  6458. #~ msgstr "Aplatisseur de profil"
  6459. #~ msgctxt "description"
  6460. #~ msgid "Ask the user once if he/she agrees with our license."
  6461. #~ msgstr "Demander à l'utilisateur une fois s'il appose son accord à notre licence."
  6462. #~ msgctxt "name"
  6463. #~ msgid "UserAgreement"
  6464. #~ msgstr "UserAgreement"
  6465. #~ msgctxt "@warning:status"
  6466. #~ msgid "Please generate G-code before saving."
  6467. #~ msgstr "Veuillez générer le G-Code avant d'enregistrer."
  6468. #~ msgctxt "@action"
  6469. #~ msgid "Upgrade Firmware"
  6470. #~ msgstr "Mise à niveau du firmware"
  6471. #~ msgctxt "@label unknown material"
  6472. #~ msgid "Unknown"
  6473. #~ msgstr "Inconnu"
  6474. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6475. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  6476. #~ msgstr "Aucun profil personnalisé à importer dans le fichier <filename>{0}</filename>"
  6477. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6478. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  6479. #~ msgstr "Le profil <filename>{0}</filename> contient des données incorrectes ; échec de l'importation."
  6480. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6481. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6482. #~ msgstr "La machine définie dans le profil <filename>{0}</filename> ({1}) ne correspond pas à votre machine actuelle ({2}) ; échec de l'importation."
  6483. #~ msgctxt "@title:window"
  6484. #~ msgid "Confirm uninstall "
  6485. #~ msgstr "Confirmer la désinstallation "
  6486. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  6487. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6488. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6489. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  6490. #~ msgid "%1m / ~ %2g"
  6491. #~ msgstr "%1m / ~ %2g"
  6492. #~ msgctxt "@title"
  6493. #~ msgid "Upgrade Firmware"
  6494. #~ msgstr "Mise à niveau du firmware"
  6495. #~ msgctxt "@action:button"
  6496. #~ msgid "Print with Doodle3D WiFi-Box"
  6497. #~ msgstr "Imprimer avec Doodle3D WiFi-Box"
  6498. #~ msgctxt "@properties:tooltip"
  6499. #~ msgid "Print with Doodle3D WiFi-Box"
  6500. #~ msgstr "Imprimer avec Doodle3D WiFi-Box"
  6501. #~ msgctxt "@info:status"
  6502. #~ msgid "Connecting to Doodle3D Connect"
  6503. #~ msgstr "Connexion avec Doodle3D Connecter..."
  6504. #~ msgctxt "@info:status"
  6505. #~ msgid "Sending data to Doodle3D Connect"
  6506. #~ msgstr "Envoi de données vers Doodle3D Connecter..."
  6507. #~ msgctxt "@info:status"
  6508. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  6509. #~ msgstr "Impossible d'envoyer les données à Doodle3D Connect. Une autre tâche est-elle toujours active ?"
  6510. #~ msgctxt "@info:status"
  6511. #~ msgid "Storing data on Doodle3D Connect"
  6512. #~ msgstr "Enregistrement de données dans Doodle3D Connecter..."
  6513. #~ msgctxt "@info:status"
  6514. #~ msgid "File sent to Doodle3D Connect"
  6515. #~ msgstr "Fichier envoyé vers Doodle3D Connecter"
  6516. #~ msgctxt "@action:button"
  6517. #~ msgid "Open Connect..."
  6518. #~ msgstr "Ouvrir Connect..."
  6519. #~ msgctxt "@info:tooltip"
  6520. #~ msgid "Open the Doodle3D Connect web interface"
  6521. #~ msgstr "Ouvrir l'interface web Doodle3D Connecter"
  6522. #~ msgctxt "@item:inlistbox"
  6523. #~ msgid "Blender file"
  6524. #~ msgstr "Fichier Blender"
  6525. #~ msgctxt "@info:status"
  6526. #~ msgid ""
  6527. #~ "Could not export using \"{}\" quality!\n"
  6528. #~ "Felt back to \"{}\"."
  6529. #~ msgstr ""
  6530. #~ "Impossible d'exporter avec la qualité \"{}\" !\n"
  6531. #~ "Qualité redéfinie sur \"{}\"."
  6532. #~ msgctxt "@label"
  6533. #~ msgid "Contact"
  6534. #~ msgstr "Contact"
  6535. #~ msgctxt "@label"
  6536. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  6537. #~ msgstr "L'imprimante n'est pas configurée pour héberger un groupe d'imprimantes Ultimaker 3."
  6538. #~ msgctxt "@label"
  6539. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  6540. #~ msgstr "L'imprimante est le patron pour un groupe de %1 imprimantes Ultimaker 3."
  6541. #~ msgctxt "@label: arg 1 is group name"
  6542. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  6543. #~ msgstr "%1 n'est pas configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3."
  6544. #~ msgctxt "@label link to connect manager"
  6545. #~ msgid "Add/Remove printers"
  6546. #~ msgstr "Ajouter / supprimer une imprimante"
  6547. #~ msgctxt "@info:tooltip"
  6548. #~ msgid "Opens the print jobs page with your default web browser."
  6549. #~ msgstr "Ouvre la page des tâches d'impression avec votre navigateur web."
  6550. #~ msgctxt "@action:button"
  6551. #~ msgid "View print jobs"
  6552. #~ msgstr "Afficher les tâches d'impression"
  6553. #~ msgctxt "@label:status"
  6554. #~ msgid "Preparing to print"
  6555. #~ msgstr "Préparation..."
  6556. #~ msgctxt "@label:status"
  6557. #~ msgid "Available"
  6558. #~ msgstr "Disponible"
  6559. #~ msgctxt "@label:status"
  6560. #~ msgid "Lost connection with the printer"
  6561. #~ msgstr "Connexion avec l'imprimante perdue"
  6562. #~ msgctxt "@label:status"
  6563. #~ msgid "Unknown"
  6564. #~ msgstr "Inconnu"
  6565. #~ msgctxt "@label:status"
  6566. #~ msgid "Disabled"
  6567. #~ msgstr "Désactivé"
  6568. #~ msgctxt "@label:status"
  6569. #~ msgid "Reserved"
  6570. #~ msgstr "Réservée"
  6571. #~ msgctxt "@label"
  6572. #~ msgid "Preparing to print"
  6573. #~ msgstr "Préparation de l'impression..."
  6574. #~ msgctxt "@label:status"
  6575. #~ msgid "Print aborted"
  6576. #~ msgstr "Abandon de l'impression"
  6577. #~ msgctxt "@label"
  6578. #~ msgid "Not accepting print jobs"
  6579. #~ msgstr "Non acceptation des tâches d'impression"
  6580. #~ msgctxt "@label"
  6581. #~ msgid "Finishes at: "
  6582. #~ msgstr "Complète a: "
  6583. #~ msgctxt "@label"
  6584. #~ msgid "Clear build plate"
  6585. #~ msgstr "Enlever les objets du plateau"
  6586. #~ msgctxt "@label"
  6587. #~ msgid "Waiting for configuration change"
  6588. #~ msgstr "En attente de modification de configuration"
  6589. #~ msgctxt "@title"
  6590. #~ msgid "Print jobs"
  6591. #~ msgstr "Imprimer les tâches"
  6592. #~ msgctxt "@label:title"
  6593. #~ msgid "Printers"
  6594. #~ msgstr "Imprimantes"
  6595. #~ msgctxt "@action:button"
  6596. #~ msgid "View printers"
  6597. #~ msgstr "Afficher les imprimantes"
  6598. #~ msgctxt "@label:"
  6599. #~ msgid "Pause"
  6600. #~ msgstr "Pause"
  6601. #~ msgctxt "@label:"
  6602. #~ msgid "Resume"
  6603. #~ msgstr "Reprendre"
  6604. #~ msgctxt "@label:"
  6605. #~ msgid "Abort Print"
  6606. #~ msgstr "Abandonner l'impression"
  6607. #~ msgctxt "@option:openProject"
  6608. #~ msgid "Always ask"
  6609. #~ msgstr "Toujours demander"
  6610. #~ msgctxt "@label"
  6611. #~ msgid "Override Profile"
  6612. #~ msgstr "Écraser le profil"
  6613. #~ msgctxt "@info:tooltip"
  6614. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  6615. #~ msgstr "Les modèles nouvellement chargés doivent-ils être disposés sur le plateau ? Utilisé en conjonction avec le multi-plateau (EXPÉRIMENTAL)"
  6616. #~ msgctxt "@option:check"
  6617. #~ msgid "Do not arrange objects on load"
  6618. #~ msgstr "Ne pas réorganiser les objets lors du chargement"
  6619. #~ msgctxt "@action:inmenu menubar:file"
  6620. #~ msgid "&Save Selection to File"
  6621. #~ msgstr "Enregi&strer la sélection dans un fichier"
  6622. #~ msgctxt "@title:menu menubar:file"
  6623. #~ msgid "Save &As..."
  6624. #~ msgstr "Enregistrer &sous..."
  6625. #~ msgctxt "@title:menu menubar:file"
  6626. #~ msgid "Save &Project..."
  6627. #~ msgstr "Enregistrer le &projet..."
  6628. # Added after the string freeze.
  6629. #~ msgctxt "@label"
  6630. #~ msgid "Use adhesion sheet or glue with this material combination"
  6631. #~ msgstr "Utilisez feuilles d'adhérence ou de la colle avec cette combinaison des matériaux"
  6632. #~ msgctxt "description"
  6633. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6634. #~ msgstr "Accepte les G-Code et les envoie par Wi-Fi à une box WiFi Doodle3D."
  6635. #~ msgctxt "name"
  6636. #~ msgid "Doodle3D WiFi-Box"
  6637. #~ msgstr "Box WiFi Doodle3D"
  6638. #~ msgctxt "description"
  6639. #~ msgid "Provides an edit window for direct script editing."
  6640. #~ msgstr "Fournit une fenêtre d'édition pour l'édition directe de script."
  6641. #~ msgctxt "name"
  6642. #~ msgid "Live scripting tool"
  6643. #~ msgstr "Outil de scripting en direct"
  6644. #~ msgctxt "description"
  6645. #~ msgid "Helps to open Blender files directly in Cura."
  6646. #~ msgstr "Aide à ouvrir les fichiers Blender directement dans Cura."
  6647. #~ msgctxt "name"
  6648. #~ msgid "Blender Integration (experimental)"
  6649. #~ msgstr "Intégration Blender (expérimental)"
  6650. #~ msgctxt "@info:title"
  6651. #~ msgid "Model Checker Warning"
  6652. #~ msgstr "Avertissement contrôleur de modèle"
  6653. #~ msgctxt "@info:status"
  6654. #~ msgid ""
  6655. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6656. #~ "Tips that may be useful to improve the print quality:\n"
  6657. #~ "1) Use rounded corners.\n"
  6658. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6659. #~ "3) Use a different material."
  6660. #~ msgstr ""
  6661. #~ "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"
  6662. #~ "Conseils utiles pour améliorer la qualité d'impression :\n"
  6663. #~ "1) Utiliser des coins arrondis.\n"
  6664. #~ "2) Éteindre le ventilateur (seulement si le modèle ne contient pas de petits détails).\n"
  6665. #~ "3) Utiliser un matériau différent."
  6666. #~ msgctxt "@info:status"
  6667. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6668. #~ 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."
  6669. #~ msgctxt "@info:status"
  6670. #~ msgid ""
  6671. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6672. #~ "\n"
  6673. #~ "Thanks!"
  6674. #~ msgstr ""
  6675. #~ "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"
  6676. #~ "\n"
  6677. #~ "Merci !"
  6678. #~ msgctxt "@info:status"
  6679. #~ msgid ""
  6680. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6681. #~ "\n"
  6682. #~ "Sorry!"
  6683. #~ msgstr ""
  6684. #~ "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"
  6685. #~ "\n"
  6686. #~ "Désolé !"
  6687. #~ msgctxt "@item:inlistbox"
  6688. #~ msgid "SolidWorks part file"
  6689. #~ msgstr "Fichier de composant SolidWorks"
  6690. #~ msgctxt "@item:inlistbox"
  6691. #~ msgid "SolidWorks assembly file"
  6692. #~ msgstr "Fichier d'assemblage SolidWorks"
  6693. #~ msgctxt "@item:inlistbox"
  6694. #~ msgid "SolidWorks drawing file"
  6695. #~ msgstr "Fichier de dessin SolidWorks"
  6696. #~ msgctxt "@info:status"
  6697. #~ msgid ""
  6698. #~ "Dear customer,\n"
  6699. #~ "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"
  6700. #~ "\n"
  6701. #~ "With kind regards\n"
  6702. #~ " - Thomas Karl Pietrowski"
  6703. #~ msgstr ""
  6704. #~ "Cher client,\n"
  6705. #~ "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"
  6706. #~ "\n"
  6707. #~ "Cordialement,\n"
  6708. #~ " - Thomas Karl Pietrowski"
  6709. #~ msgctxt "@info:status"
  6710. #~ msgid ""
  6711. #~ "Dear customer,\n"
  6712. #~ "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"
  6713. #~ "\n"
  6714. #~ "With kind regards\n"
  6715. #~ " - Thomas Karl Pietrowski"
  6716. #~ msgstr ""
  6717. #~ "Cher client,\n"
  6718. #~ "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"
  6719. #~ "\n"
  6720. #~ "Cordialement,\n"
  6721. #~ " - Thomas Karl Pietrowski"
  6722. #~ msgid "Configure"
  6723. #~ msgstr "Configurer"
  6724. #~ msgid "Installation guide for SolidWorks macro"
  6725. #~ msgstr "Guide d'installation SolidWorks macro"
  6726. #~ msgctxt "@action:button"
  6727. #~ msgid "Disable"
  6728. #~ msgstr "Désactiver"
  6729. #~ msgctxt "@action:tooltip"
  6730. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  6731. #~ msgstr "Ne pas autoriser Cura à envoyer des statistiques d'utilisation anonymes. Vous pouvez modifier ce paramètre dans les préférences."
  6732. #~ msgid "Install"
  6733. #~ msgstr "Installer"
  6734. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  6735. #~ 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."
  6736. #~ msgid "Successfully installed Siemens NX Cura plugin."
  6737. #~ msgstr "L'installation du plug-in Siemens NX Cura a réussie."
  6738. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  6739. #~ msgstr "Échec de la copie des fichiers plug-ins Siemens NX. Veuillez vérifier votre UGII_USER_DIR."
  6740. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  6741. #~ msgstr "Échec de l'installation du plug-in Siemens NX. Impossible de définir la variable d'environnement UGII_USER_DIR pour Siemens NX."
  6742. #~ msgctxt "@info:status"
  6743. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  6744. #~ msgstr "Échec de l'obtention de l'identifiant du plug-in au départ de <filename>{0}</filename>"
  6745. #~ msgctxt "@info:tile"
  6746. #~ msgid "Warning"
  6747. #~ msgstr "Avertissement"
  6748. #~ msgctxt "@window:title"
  6749. #~ msgid "Plugin browser"
  6750. #~ msgstr "Navigateur de plug-ins"
  6751. #~ msgctxt "@label"
  6752. #~ msgid "Ultimaker 3"
  6753. #~ msgstr "Ultimaker 3"
  6754. #~ msgctxt "@label"
  6755. #~ msgid "Ultimaker 3 Extended"
  6756. #~ msgstr "Ultimaker 3 Extended"
  6757. #~ msgctxt "@title:window"
  6758. #~ msgid "SolidWorks: Export wizard"
  6759. #~ msgstr "SolidWorks : assistant d'exportation"
  6760. #~ msgctxt "@action:label"
  6761. #~ msgid "Quality:"
  6762. #~ msgstr "Qualité :"
  6763. #~ msgctxt "@option:curaSolidworksStlQuality"
  6764. #~ msgid "Fine (3D-printing)"
  6765. #~ msgstr "Fine (impression 3D)"
  6766. #~ msgctxt "@option:curaSolidworksStlQuality"
  6767. #~ msgid "Coarse (3D-printing)"
  6768. #~ msgstr "Grossière (impression 3D)"
  6769. #~ msgctxt "@option:curaSolidworksStlQuality"
  6770. #~ msgid "Fine (SolidWorks)"
  6771. #~ msgstr "Fine (SolidWorks)"
  6772. #~ msgctxt "@option:curaSolidworksStlQuality"
  6773. #~ msgid "Coarse (SolidWorks)"
  6774. #~ msgstr "Grossière (SolidWorks)"
  6775. #~ msgctxt "@text:window"
  6776. #~ msgid "Show this dialog again"
  6777. #~ msgstr "Afficher de nouveau cette boîte de dialogue"
  6778. #~ msgctxt "@action:button"
  6779. #~ msgid "Continue"
  6780. #~ msgstr "Continuer"
  6781. #~ msgctxt "@action:button"
  6782. #~ msgid "Abort"
  6783. #~ msgstr "Abandonner"
  6784. #~ msgctxt "@title:window"
  6785. #~ msgid "How to install Cura SolidWorks macro"
  6786. #~ msgstr "Modalités d’installation de Cura SolidWorks macro"
  6787. #~ msgctxt "@description:label"
  6788. #~ msgid "Steps:"
  6789. #~ msgstr "Procédure :"
  6790. #~ msgctxt "@action:button"
  6791. #~ msgid ""
  6792. #~ "Open the directory\n"
  6793. #~ "with macro and icon"
  6794. #~ msgstr ""
  6795. #~ "Ouvrez le répertoire\n"
  6796. #~ "contenant la macro et l'icône"
  6797. #~ msgctxt "@description:label"
  6798. #~ msgid "Instructions:"
  6799. #~ msgstr "Instructions :"
  6800. #~ msgctxt "@action:playpause"
  6801. #~ msgid "Play"
  6802. #~ msgstr "Jouer"
  6803. #~ msgctxt "@action:playpause"
  6804. #~ msgid "Pause"
  6805. #~ msgstr "Pause"
  6806. #~ msgctxt "@action:button"
  6807. #~ msgid "Previous Step"
  6808. #~ msgstr "Étape précédente"
  6809. #~ msgctxt "@action:button"
  6810. #~ msgid "Done"
  6811. #~ msgstr "Terminé"
  6812. #~ msgctxt "@action:button"
  6813. #~ msgid "Next Step"
  6814. #~ msgstr "Étape suivante"
  6815. #~ msgctxt "@title:window"
  6816. #~ msgid "SolidWorks plugin: Configuration"
  6817. #~ msgstr "Plug-in SolidWorks : configuration"
  6818. #~ msgctxt "@title:tab"
  6819. #~ msgid "Conversion settings"
  6820. #~ msgstr "Paramètres de conversion"
  6821. #~ msgctxt "@label"
  6822. #~ msgid "First choice:"
  6823. #~ msgstr "Premier choix :"
  6824. #~ msgctxt "@text:menu"
  6825. #~ msgid "Latest installed version (Recommended)"
  6826. #~ msgstr "Dernière version installée (recommandé)"
  6827. #~ msgctxt "@text:menu"
  6828. #~ msgid "Default version"
  6829. #~ msgstr "Version par défaut"
  6830. #~ msgctxt "@label"
  6831. #~ msgid "Show wizard before opening SolidWorks files"
  6832. #~ msgstr "Afficher l'Assistant avant d'ouvrir les fichiers SolidWorks"
  6833. #~ msgctxt "@label"
  6834. #~ msgid "Automatically rotate opened file into normed orientation"
  6835. #~ msgstr "Rotation automatique du fichier ouvert en orientation normalisée"
  6836. #~ msgctxt "@title:tab"
  6837. #~ msgid "Installation(s)"
  6838. #~ msgstr "Installation(s)"
  6839. #~ msgctxt "@label"
  6840. #~ msgid "COM service found"
  6841. #~ msgstr "Service COM trouvé"
  6842. #~ msgctxt "@label"
  6843. #~ msgid "Executable found"
  6844. #~ msgstr "Fichier exécutable trouvé"
  6845. #~ msgctxt "@label"
  6846. #~ msgid "COM starting"
  6847. #~ msgstr "Lancement de COM"
  6848. #~ msgctxt "@label"
  6849. #~ msgid "Revision number"
  6850. #~ msgstr "Numéro de révision"
  6851. #~ msgctxt "@label"
  6852. #~ msgid "Functions available"
  6853. #~ msgstr "Fonctions disponibles"
  6854. #~ msgctxt "@label (%1 is object name)"
  6855. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  6856. #~ 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 ?"
  6857. #~ msgctxt "@action:menu"
  6858. #~ msgid "Browse plugins..."
  6859. #~ msgstr "Parcourir les plug-ins..."
  6860. #~ msgctxt "@title:menu menubar:toplevel"
  6861. #~ msgid "P&lugins"
  6862. #~ msgstr "&Plug-ins"
  6863. #~ msgctxt "@window:title"
  6864. #~ msgid "Install Plugin"
  6865. #~ msgstr "Installer plug-in"
  6866. #~ msgctxt "description"
  6867. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6868. #~ msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)"
  6869. #~ msgctxt "description"
  6870. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6871. #~ msgstr "Gère les connexions réseau vers les imprimantes Ultimaker 3"
  6872. #~ msgctxt "description"
  6873. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  6874. #~ 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."
  6875. #~ msgctxt "name"
  6876. #~ msgid "SolidWorks Integration"
  6877. #~ msgstr "Intégration SolidWorks"
  6878. #~ msgctxt "description"
  6879. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6880. #~ msgstr "Enregistre automatiquement les Préférences, Machines et Profils après des modifications."
  6881. #~ msgctxt "name"
  6882. #~ msgid "Auto Save"
  6883. #~ msgstr "Enregistrement auto"
  6884. #~ msgctxt "description"
  6885. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  6886. #~ msgstr "Vous aide à installer un bouton « exporter vers Cura » dans Siemens NX."
  6887. #~ msgctxt "name"
  6888. #~ msgid "Siemens NX Integration"
  6889. #~ msgstr "Siemens NX Integration"
  6890. #~ msgctxt "description"
  6891. #~ msgid "Find, manage and install new plugins."
  6892. #~ msgstr "Rechercher, gérer et installer de nouveaux plug-ins."
  6893. #~ msgctxt "name"
  6894. #~ msgid "Plugin Browser"
  6895. #~ msgstr "Navigateur de plug-ins"
  6896. #~ msgctxt "description"
  6897. #~ msgid "Ask the user once if he/she agrees with our license"
  6898. #~ msgstr "Demander à l'utilisateur une fois s'il appose son accord à notre licence"
  6899. #~ msgctxt "description"
  6900. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6901. #~ 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.)"
  6902. #~ msgctxt "@item:inlistbox"
  6903. #~ msgid "GCode File"
  6904. #~ msgstr "Fichier GCode"
  6905. #~ msgctxt "@info:status"
  6906. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  6907. #~ msgstr "Impossible de démarrer une nouvelle tâche car l'imprimante est occupée ou n'est pas connectée."
  6908. #~ msgctxt "@info:title"
  6909. #~ msgid "Printer Unavailable"
  6910. #~ msgstr "Imprimante indisponible"
  6911. #~ msgctxt "@info:status"
  6912. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  6913. #~ msgstr "L'imprimante ne prend pas en charge l'impression par USB car elle utilise UltiGCode."
  6914. #~ msgctxt "@info:title"
  6915. #~ msgid "USB Printing"
  6916. #~ msgstr "Impression par USB"
  6917. #~ msgctxt "@info:status"
  6918. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  6919. #~ msgstr "Impossible de démarrer une nouvelle tâche car l'imprimante ne prend pas en charge l'impression par USB."
  6920. #~ msgctxt "@info"
  6921. #~ msgid "Unable to update firmware because there are no printers connected."
  6922. #~ msgstr "Impossible de mettre à jour le firmware car il n'y a aucune imprimante connectée."
  6923. #~ msgctxt "@info"
  6924. #~ msgid "Could not find firmware required for the printer at %s."
  6925. #~ msgstr "Impossible de trouver le firmware requis pour l'imprimante sur %s."
  6926. #~ msgctxt "@info:title"
  6927. #~ msgid "Printer Firmware"
  6928. #~ msgstr "Firmware de l'imprimante"
  6929. #~ msgctxt "@info:title"
  6930. #~ msgid "Connection status"
  6931. #~ msgstr "Statut de la connexion"
  6932. #~ msgctxt "@info:title"
  6933. #~ msgid "Connection Status"
  6934. #~ msgstr "Statut de la connexion"
  6935. #~ msgctxt "@info:status"
  6936. #~ msgid "Access request was denied on the printer."
  6937. #~ msgstr "La demande d'accès à l'imprimante a été refusée."
  6938. #~ msgctxt "@info:status"
  6939. #~ msgid "Access request failed due to a timeout."
  6940. #~ msgstr "Durée d'attente dépassée. Échec de la demande d'accès."
  6941. #~ msgctxt "@info:status"
  6942. #~ msgid "The connection with the network was lost."
  6943. #~ msgstr "Interruption de connexion au le réseau."
  6944. #~ msgctxt "@info:status"
  6945. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  6946. #~ msgstr "La connexion avec l'imprimante est interrompue. Vérifiez que votre imprimante est connectée."
  6947. #~ msgctxt "@info:status"
  6948. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  6949. #~ 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."
  6950. #~ msgctxt "@info:title"
  6951. #~ msgid "Printer Status"
  6952. #~ msgstr "Statut de l'imprimante"
  6953. #~ msgctxt "@info:status"
  6954. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  6955. #~ msgstr "Impossible de démarrer une nouvelle tâche d'impression. Pas de PrintCore inséré dans la fente {0}."
  6956. #~ msgctxt "@info:status"
  6957. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  6958. #~ 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}."
  6959. #~ msgctxt "@label"
  6960. #~ msgid "Not enough material for spool {0}."
  6961. #~ msgstr "Pas suffisamment de matériau pour la bobine {0}."
  6962. #~ msgctxt "@label"
  6963. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6964. #~ msgstr "PrintCore différent (Cura : {0}, Imprimante : {1}) sélectionné pour l'extrudeur {2}"
  6965. #~ msgctxt "@label"
  6966. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6967. #~ msgstr "Le PrintCore {0} n'est pas correctement calibré. Le calibrage XY doit être effectué sur l'imprimante."
  6968. #~ msgctxt "@info:status"
  6969. #~ msgid "Unable to send data to printer. Is another job still active?"
  6970. #~ msgstr "Impossible d'envoyer les données à l'imprimante. Une autre tâche est-elle toujours active ?"
  6971. #~ msgctxt "@label:MonitorStatus"
  6972. #~ msgid "Print aborted. Please check the printer"
  6973. #~ msgstr "Abandon de l'impression. Vérifiez l'imprimante"
  6974. #~ msgctxt "@label:MonitorStatus"
  6975. #~ msgid "Pausing print..."
  6976. #~ msgstr "Mise en pause de l'impression..."
  6977. #~ msgctxt "@label:MonitorStatus"
  6978. #~ msgid "Resuming print..."
  6979. #~ msgstr "Reprise de l'impression..."
  6980. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  6981. #~ msgstr "L'imprimante n'est pas configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3."
  6982. #~ msgctxt "Count is number of printers."
  6983. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  6984. #~ msgstr "L'imprimante n'est pas configurée pour héberger un groupe de {count} imprimantes connectées Ultimaker 3."
  6985. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  6986. #~ msgstr "{printer_name} a terminé d'imprimer '{job_name}'. Veuillez enlever l'impression et confirmer avoir nettoyé le plateau."
  6987. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  6988. #~ 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."
  6989. #~ msgctxt "@info:status"
  6990. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  6991. #~ 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."
  6992. #~ msgctxt "@info:status"
  6993. #~ msgid "Unable to send print job to group {cluster_name}."
  6994. #~ msgstr "Impossible d'envoyer la tâche d'impression vers le groupe {cluster_name}."
  6995. #~ msgctxt "@info:status"
  6996. #~ msgid "Sent {file_name} to group {cluster_name}."
  6997. #~ msgstr "<filename>{file_name}</filename> envoyé vers le groupe {cluster_name}."
  6998. #~ msgctxt "@action:button"
  6999. #~ msgid "Show print jobs"
  7000. #~ msgstr "Afficher les tâches d'impression"
  7001. #~ msgctxt "@info:tooltip"
  7002. #~ msgid "Opens the print jobs interface in your browser."
  7003. #~ msgstr "Ouvre l'interface d'impression des tâches dans votre navigateur."
  7004. #~ msgctxt "@label Printer name"
  7005. #~ msgid "Unknown"
  7006. #~ msgstr "Inconnu"
  7007. #~ msgctxt "@info:progress"
  7008. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  7009. #~ msgstr "Envoi de <filename>{file_name}</filename> vers le groupe {cluster_name}..."
  7010. #~ msgctxt "@info:status"
  7011. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  7012. #~ 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."
  7013. #~ msgctxt "@info:status"
  7014. #~ msgid ""
  7015. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  7016. #~ "\n"
  7017. #~ " Thanks!."
  7018. #~ msgstr ""
  7019. #~ "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"
  7020. #~ "\n"
  7021. #~ " Merci !"
  7022. #~ msgctxt "@info:status"
  7023. #~ msgid ""
  7024. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  7025. #~ "\n"
  7026. #~ "Sorry!"
  7027. #~ msgstr ""
  7028. #~ "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"
  7029. #~ "\n"
  7030. #~ "Désolé !"
  7031. #~ msgctxt "@item:material"
  7032. #~ msgid "No material loaded"
  7033. #~ msgstr "Pas de matériau chargé"
  7034. #~ msgctxt "@item:material"
  7035. #~ msgid "Unknown material"
  7036. #~ msgstr "Matériau inconnu"
  7037. #~ msgctxt "@info:status Has a cancel button next to it."
  7038. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  7039. #~ msgstr "Le diamètre du matériau sélectionné rend le matériau incompatible avec l'imprimante actuelle."
  7040. #~ msgctxt "@action:button"
  7041. #~ msgid "Undo"
  7042. #~ msgstr "Annuler"
  7043. #~ msgctxt "@action"
  7044. #~ msgid "Undo changing the material diameter."
  7045. #~ msgstr "Annuler la modification du diamètre du matériau."
  7046. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7047. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  7048. #~ msgstr "La machine définie dans le profil <filename>{0}</filename> ne correspond pas à votre machine actuelle ; échec de l'importation."
  7049. #~ msgctxt "@label crash message"
  7050. #~ msgid ""
  7051. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7052. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7053. #~ " "
  7054. #~ msgstr ""
  7055. #~ "<p><b>Une erreur fatale s'est produite. Veuillez nous envoyer ce Rapport d'incident pour résoudre le problème</p></b>\n"
  7056. #~ " <p>Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs</p>\n"
  7057. #~ " "
  7058. #~ msgctxt "@label"
  7059. #~ msgid "not yet initialised<br/>"
  7060. #~ msgstr "pas encore initialisé<br/>"
  7061. #~ msgctxt "@label"
  7062. #~ msgid "Gcode flavor"
  7063. #~ msgstr "GCode Parfum"
  7064. #~ msgctxt "@label"
  7065. #~ msgid "Start Gcode"
  7066. #~ msgstr "Début Gcode"
  7067. #~ msgctxt "@tooltip"
  7068. #~ msgid "Gcode commands to be executed at the very start."
  7069. #~ msgstr "Commandes Gcode à exécuter au tout début."
  7070. #~ msgctxt "@label"
  7071. #~ msgid "End Gcode"
  7072. #~ msgstr "Fin Gcode"
  7073. #~ msgctxt "@tooltip"
  7074. #~ msgid "Gcode commands to be executed at the very end."
  7075. #~ msgstr "Commandes Gcode à exécuter tout à la fin."
  7076. #~ msgctxt "@label"
  7077. #~ msgid "Extruder Start Gcode"
  7078. #~ msgstr "Extrudeur Gcode de démarrage"
  7079. #~ msgctxt "@label"
  7080. #~ msgid "Extruder End Gcode"
  7081. #~ msgstr "Extrudeur Gcode de fin"
  7082. #~ msgctxt "@label"
  7083. #~ msgid "Starting firmware update, this may take a while."
  7084. #~ msgstr "Démarrage de la mise à jour du firmware, cela peut prendre un certain temps."
  7085. #~ msgctxt "@label"
  7086. #~ msgid "Unknown error code: %1"
  7087. #~ msgstr "Code erreur inconnue : %1"
  7088. #~ msgctxt "@label Printer name"
  7089. #~ msgid "Ultimaker 3"
  7090. #~ msgstr "Ultimaker 3"
  7091. #~ msgctxt "@label Printer name"
  7092. #~ msgid "Ultimaker 3 Extended"
  7093. #~ msgstr "Ultimaker 3 Extended"
  7094. #~ msgctxt "@label Printer status"
  7095. #~ msgid "Unknown"
  7096. #~ msgstr "Inconnu"
  7097. #~ msgctxt "@title:window"
  7098. #~ msgid "Find & Update plugins"
  7099. #~ msgstr "Rechercher et mettre à jour les plug-ins"
  7100. #~ msgctxt "@label"
  7101. #~ msgid "Here you can find a list of Third Party plugins."
  7102. #~ msgstr "Vous pouvez trouver ici une liste de plug-ins de sources tierces."
  7103. #~ msgctxt "@action:button"
  7104. #~ msgid "Upgrade"
  7105. #~ msgstr "Mettre à niveau"
  7106. #~ msgctxt "@action:button"
  7107. #~ msgid "Download"
  7108. #~ msgstr "Télécharger"
  7109. #~ msgctxt "@info:tooltip"
  7110. #~ msgid "Show caution message in gcode reader."
  7111. #~ msgstr "Afficher le message d'avertissement dans le lecteur gcode."
  7112. #~ msgctxt "@option:check"
  7113. #~ msgid "Caution message in gcode reader"
  7114. #~ msgstr "Message d'avertissement dans lecteur gcode."
  7115. #~ msgctxt "@window:title"
  7116. #~ msgid "Import Profile"
  7117. #~ msgstr "Importer un profil"
  7118. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  7119. #~ msgid "Printer: %1, %2: %3"
  7120. #~ msgstr "Imprimante : %1, %2 : %3"
  7121. #~ msgctxt "@action:label %1 is printer name"
  7122. #~ msgid "Printer: %1"
  7123. #~ msgstr "Imprimante : %1"
  7124. #~ msgctxt "@label"
  7125. #~ msgid "GCode generator"
  7126. #~ msgstr "Générateur GCode"
  7127. #~ msgctxt "@action:menu"
  7128. #~ msgid "Configure setting visiblity..."
  7129. #~ msgstr "Configurer la visibilité des paramètres..."
  7130. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  7131. #~ msgid "Automatic: %1"
  7132. #~ msgstr "Automatique : %1"
  7133. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  7134. #~ msgid "Automatic: %1"
  7135. #~ msgstr "Automatique : %1"
  7136. #~ msgctxt "@info:status"
  7137. #~ msgid "No printer connected"
  7138. #~ msgstr "Aucune imprimante n'est connectée"
  7139. #~ msgctxt "@tooltip"
  7140. #~ msgid "The current temperature of this extruder."
  7141. #~ msgstr "Température actuelle de cet extrudeur."
  7142. #~ msgctxt "@action:menu"
  7143. #~ msgid "Installed plugins..."
  7144. #~ msgstr "Plug-ins installés..."
  7145. #~ msgctxt "@label"
  7146. #~ msgid "Support Extruder"
  7147. #~ msgstr "Extrudeur pour matériau support"
  7148. #~ msgctxt "description"
  7149. #~ msgid "Writes GCode to a file."
  7150. #~ msgstr "Enregistre le GCode dans un fichier."
  7151. #~ msgctxt "name"
  7152. #~ msgid "GCode Writer"
  7153. #~ msgstr "Générateur de GCode"
  7154. #~ msgctxt "name"
  7155. #~ msgid "GCode Profile Reader"
  7156. #~ msgstr "Lecteur de profil GCode"
  7157. #~ msgctxt "@info:status"
  7158. #~ 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!"
  7159. #~ 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."
  7160. #~ msgctxt "@info:status"
  7161. #~ msgid "Error while starting %s!"
  7162. #~ msgstr "Erreur lors du lancement de %s !"
  7163. #~ msgctxt "@item:inlistbox"
  7164. #~ msgid "Simulation view"
  7165. #~ msgstr "Vue simulation"
  7166. #~ msgctxt "@info"
  7167. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  7168. #~ msgstr "Cura collecte des statistiques anonymes sur le découpage. Vous pouvez désactiver cette fonctionnalité dans les préférences."
  7169. #~ msgctxt "@action:button"
  7170. #~ msgid "Dismiss"
  7171. #~ msgstr "Ignorer"
  7172. #~ msgctxt "@menuitem"
  7173. #~ msgid "Global"
  7174. #~ msgstr "Global"
  7175. #~ msgctxt "@label crash message"
  7176. #~ msgid ""
  7177. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7178. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7179. #~ " "
  7180. #~ msgstr ""
  7181. #~ "<p><b>Une exception fatale s'est produite. Veuillez nous envoyer ce Rapport d'incident pour résoudre le problème</p></b>\n"
  7182. #~ " <p>Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs</p>\n"
  7183. #~ " "
  7184. #~ msgctxt "@label Cura version"
  7185. #~ msgid "<b>Cura version:</b> {version}<br/>"
  7186. #~ msgstr "<b>Version Cura :</b> {version}<br/>"
  7187. #~ msgctxt "@label Platform"
  7188. #~ msgid "<b>Platform:</b> {platform}<br/>"
  7189. #~ msgstr "Plateforme :</b> {platform}<br/>"
  7190. #~ msgctxt "@label Qt version"
  7191. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  7192. #~ msgstr "<b>Version Qt :</b> {qt}<br/>"
  7193. #~ msgctxt "@label PyQt version"
  7194. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  7195. #~ msgstr "<b>Version PyQt :</b> {pyqt}<br/>"
  7196. #~ msgctxt "@label OpenGL"
  7197. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  7198. #~ msgstr "<b>OpenGL :</b> {opengl}<br/>"
  7199. #~ msgctxt "@title:groupbox"
  7200. #~ msgid "Exception traceback"
  7201. #~ msgstr "Retraçage de l'exception"
  7202. #~ msgctxt "@label"
  7203. #~ msgid "Material diameter"
  7204. #~ msgstr "Diamètre du matériau"
  7205. #~ msgctxt "@title:window"
  7206. #~ msgid "Cura SolidWorks Plugin Configuration"
  7207. #~ msgstr "Configuration du plug-in Cura SolidWorks"
  7208. #~ msgctxt "@action:label"
  7209. #~ msgid "Default quality of the exported STL:"
  7210. #~ msgstr "Qualité par défaut du STL exporté :"
  7211. #~ msgctxt "@option:curaSolidworksStlQuality"
  7212. #~ msgid "Always ask"
  7213. #~ msgstr "Toujours demander"
  7214. #~ msgctxt "@option:curaSolidworksStlQuality"
  7215. #~ msgid "Always use Fine quality"
  7216. #~ msgstr "Toujours utiliser la qualité Fine"
  7217. #~ msgctxt "@option:curaSolidworksStlQuality"
  7218. #~ msgid "Always use Coarse quality"
  7219. #~ msgstr "Toujours utiliser la qualité grossière"
  7220. #~ msgctxt "@title:window"
  7221. #~ msgid "Import SolidWorks File as STL..."
  7222. #~ msgstr "Importer le fichier SolidWorks comme STL..."
  7223. #~ msgctxt "@info:tooltip"
  7224. #~ msgid "Quality of the Exported STL"
  7225. #~ msgstr "Qualité du STL exporté"
  7226. #~ msgctxt "@action:label"
  7227. #~ msgid "Quality"
  7228. #~ msgstr "Qualité"
  7229. #~ msgctxt "@option:curaSolidworksStlQuality"
  7230. #~ msgid "Coarse"
  7231. #~ msgstr "Grossière"
  7232. #~ msgctxt "@option:curaSolidworksStlQuality"
  7233. #~ msgid "Fine"
  7234. #~ msgstr "Fine"
  7235. #~ msgctxt "@"
  7236. #~ msgid "No Profile Available"
  7237. #~ msgstr "Aucun profil disponible"
  7238. #~ msgctxt "@label"
  7239. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  7240. #~ 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."
  7241. #~ msgctxt "@tooltip"
  7242. #~ msgid "<b>Time specification</b><br/><table>"
  7243. #~ msgstr "<b>Spécification de temps</b><br/><table>"
  7244. #~ msgctxt "@action:inmenu menubar:view"
  7245. #~ msgid "&Reset camera position"
  7246. #~ msgstr "&Réinitialiser la position de la caméra"
  7247. #~ msgctxt "@title:menu menubar:file"
  7248. #~ msgid "Save project"
  7249. #~ msgstr "Enregistrer le projet"
  7250. #~ msgctxt "@title:tab"
  7251. #~ msgid "Prepare"
  7252. #~ msgstr "Préparer"
  7253. #~ msgctxt "@title:tab"
  7254. #~ msgid "Monitor"
  7255. #~ msgstr "Surveiller"
  7256. #~ msgctxt "@label"
  7257. #~ msgid "<a href='%1'>Check compatibility</a>"
  7258. #~ msgstr "<a href='%1'>Vérifier la compatibilité</a>"
  7259. #~ msgctxt "description"
  7260. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  7261. #~ msgstr "Donne la possibilité d'ouvrir certains fichiers via SolidWorks. Ces fichiers sont ensuite convertis et chargés dans Cura."
  7262. #~ msgctxt "@label:status"
  7263. #~ msgid "Blocked"
  7264. #~ msgstr "Bloqué"
  7265. #~ msgctxt "@label:status"
  7266. #~ msgid "Can't start print"
  7267. #~ msgstr "Ne peux pas imprimer"
  7268. #~ msgctxt "@action:button"
  7269. #~ msgid "Open Connect.."
  7270. #~ msgstr "Ouvrir Connect"
  7271. #~ msgctxt "@info:title"
  7272. #~ msgid "Print Details"
  7273. #~ msgstr "Les détails d'impression"
  7274. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  7275. #~ 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."
  7276. #~ 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."
  7277. #~ msgctxt "@info:title"
  7278. #~ msgid "Layer View"
  7279. #~ msgstr "Vue en couches"
  7280. #~ msgctxt "@menuitem"
  7281. #~ msgid "Browse plugins"
  7282. #~ msgstr "Parcourir les plug-ins"
  7283. #~ msgctxt "@info:title"
  7284. #~ msgid "Export Details"
  7285. #~ msgstr "Exporter les détails"
  7286. #~ msgctxt "@label"
  7287. #~ msgid ""
  7288. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7289. #~ " <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"
  7290. #~ " "
  7291. #~ msgstr ""
  7292. #~ "<p>Une erreur fatale que nous ne pouvons résoudre s'est produite !</p>\n"
  7293. #~ " <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"
  7294. #~ " "
  7295. #~ msgctxt "@action:button"
  7296. #~ msgid "Open Web Page"
  7297. #~ msgstr "Ouvrir la page Web"
  7298. #~ msgctxt "@action:button"
  7299. #~ msgid "Ok"
  7300. #~ msgstr "Ok"
  7301. #~ msgctxt "@label"
  7302. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  7303. #~ msgstr "Cette imprimante n'est pas configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3."
  7304. #~ msgctxt "@label"
  7305. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  7306. #~ msgstr "L'imprimante est configurée pour héberger un groupe de %1 imprimantes connectées Ultimaker 3."
  7307. #~ msgctxt "@label"
  7308. #~ msgid "Completed on: "
  7309. #~ msgstr "Finalisé sur : "
  7310. #~ msgctxt "@info:tooltip"
  7311. #~ msgid "Opens the print jobs page with your default web browser."
  7312. #~ msgstr "Ouvre la page des tâches d'impression avec votre navigateur web."
  7313. #~ msgctxt "@label"
  7314. #~ msgid "PRINTER GROUP"
  7315. #~ msgstr "GROUPE D'IMPRIMANTES"
  7316. #~ msgctxt "@action:warning"
  7317. #~ msgid "Loading a project will clear all models on the buildplate"
  7318. #~ msgstr "Le chargement d'un projet effacera tous les modèles sur le plateau"
  7319. #~ msgctxt "@label"
  7320. #~ msgid ""
  7321. #~ " plugin contains a license.\n"
  7322. #~ "You need to accept this license to install this plugin.\n"
  7323. #~ "Do you agree with the terms below?"
  7324. #~ msgstr ""
  7325. #~ " le plug-in contient une licence.\n"
  7326. #~ "Vous devez approuver cette licence pour installer ce plug-in.\n"
  7327. #~ "Acceptez-vous les clauses ci-dessous ?"
  7328. #~ msgctxt "@label"
  7329. #~ msgid "00h 00min"
  7330. #~ msgstr "00 h 00 min"
  7331. #~ msgctxt "@tooltip"
  7332. #~ msgid "<b>Time information</b>"
  7333. #~ msgstr "<B>Information horaire</b>"
  7334. #~ msgctxt "@description"
  7335. #~ msgid "Print time"
  7336. #~ msgstr "Imprimer l'heure"
  7337. #~ msgctxt "@label"
  7338. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  7339. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  7340. #~ msgctxt "@label"
  7341. #~ msgid "%1m / ~ %2g"
  7342. #~ msgstr "%1m / ~ %2g"
  7343. #~ msgctxt "@title:window"
  7344. #~ msgid "Cura"
  7345. #~ msgstr "Cura"
  7346. #~ msgctxt "@label"
  7347. #~ msgid "<a href='%1'>Check material compatibility</a>"
  7348. #~ msgstr "<a href='%1'>Vérifier la compatibilité du matériau</a>"
  7349. #~ msgctxt "name"
  7350. #~ msgid "UM3 Network Connection (Cluster)"
  7351. #~ msgstr "Connexion au réseau UM3 (Cluster)"
  7352. #~ msgctxt "description"
  7353. #~ msgid "Provides the Layer view."
  7354. #~ msgstr "Permet la vue en couches."
  7355. #~ msgctxt "name"
  7356. #~ msgid "Layer View"
  7357. #~ msgstr "Vue en couches"
  7358. #~ msgctxt "@item:inlistbox"
  7359. #~ msgid "X-Ray"
  7360. #~ msgstr "Rayon-X"
  7361. #~ msgctxt "@label"
  7362. #~ msgid "Doodle3D"
  7363. #~ msgstr "Doodle3D"
  7364. #~ msgctxt "@info:whatsthis"
  7365. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  7366. #~ msgstr "Accepte les G-Code et les envoie par Wi-Fi à une Doodle3D WiFi-Box."
  7367. #~ msgctxt "@item:inmenu"
  7368. #~ msgid "Doodle3D printing"
  7369. #~ msgstr "Impression avec Doodle3D"
  7370. #~ msgctxt "@action:button"
  7371. #~ msgid "Print with Doodle3D"
  7372. #~ msgstr "Imprimer avec Doodle3D"
  7373. #~ msgctxt "@info:tooltip"
  7374. #~ msgid "Print with "
  7375. #~ msgstr "Imprimer avec"
  7376. #~ msgctxt "@title:menu"
  7377. #~ msgid "Doodle3D"
  7378. #~ msgstr "Doodle3D"
  7379. #~ msgctxt "@item:inlistbox"
  7380. #~ msgid "Enable Scan devices..."
  7381. #~ msgstr "Activer les périphériques de numérisation..."
  7382. #~ msgctxt "@info:progress"
  7383. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  7384. #~ msgstr "Enregistrement sur le lecteur amovible <filename>{0}</filename>"
  7385. #~ msgctxt "@info:status"
  7386. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  7387. #~ msgstr "Impossible d'enregistrer <filename>{0}</filename> : <message>{1}</message>"
  7388. #~ msgctxt "@info:status"
  7389. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  7390. #~ msgstr "Gardez à l'esprit que vous devez rouvrir votre fichier SolidWorks manuellement ! Le fait de recharger le modèle ne marchera pas."
  7391. #~ msgctxt "@item:inlistbox"
  7392. #~ msgid "Layers"
  7393. #~ msgstr "Couches"
  7394. #~ msgid "Browse plugins"
  7395. #~ msgstr "Parcourir les plug-ins"
  7396. #~ msgctxt "@item:inmenu"
  7397. #~ msgid "Solid"
  7398. #~ msgstr "Solide"
  7399. #~ msgctxt "@label"
  7400. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  7401. #~ msgstr "Le fichier <filename>{0}</filename> existe déjà. Êtes vous sûr de vouloir le remplacer ?"
  7402. #~ msgctxt "@info:status"
  7403. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  7404. #~ msgstr "Échec de l'exportation du profil vers <filename>{0}</filename> : <message>{1}</message>"
  7405. #~ msgctxt "@info:status"
  7406. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  7407. #~ msgstr "Échec de l'exportation du profil vers <filename>{0}</filename> : Le plug-in du générateur a rapporté une erreur."
  7408. #~ msgctxt "@info:status"
  7409. #~ msgid "Exported profile to <filename>{0}</filename>"
  7410. #~ msgstr "Profil exporté vers <filename>{0}</filename>"
  7411. #~ msgctxt "@info:status"
  7412. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  7413. #~ msgstr "Échec de l'importation du profil depuis le fichier <filename>{0}</filename> : <message>{1}</message>"
  7414. #~ msgctxt "@title:window"
  7415. #~ msgid "Doodle3D Settings"
  7416. #~ msgstr "Paramètres Doodle3D"
  7417. #~ msgctxt "@title:window"
  7418. #~ msgid "Print to: %1"
  7419. #~ msgstr "Imprimer sur : %1"
  7420. #~ msgctxt "@label"
  7421. #~ msgid "Extruder Temperature: %1/%2°C"
  7422. #~ msgstr "Température de l'extrudeuse : %1/%2 °C"
  7423. #~ msgctxt "@label"
  7424. #~ msgid "Bed Temperature: %1/%2°C"
  7425. #~ msgstr "Température du plateau : %1/%2 °C"
  7426. #~ msgctxt "@label"
  7427. #~ msgid "%1"
  7428. #~ msgstr "%1"
  7429. #~ msgctxt "@label"
  7430. #~ msgid "View Mode: Layers"
  7431. #~ msgstr "Mode d’affichage : couches"
  7432. #~ msgctxt "@info:status"
  7433. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  7434. #~ msgstr "Impossible d'importer le matériau <filename>%1</filename> : <message>%2</message>"
  7435. #~ msgctxt "@info:status"
  7436. #~ msgid "Successfully imported material <filename>%1</filename>"
  7437. #~ msgstr "Matériau <filename>%1</filename> importé avec succès"
  7438. #~ msgctxt "@info:status"
  7439. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  7440. #~ msgstr "Échec de l'export de matériau vers <filename>%1</filename> : <message>%2</message>"
  7441. #~ msgctxt "@info:status"
  7442. #~ msgid "Successfully exported material to <filename>%1</filename>"
  7443. #~ msgstr "Matériau exporté avec succès vers <filename>%1</filename>"
  7444. #~ msgctxt "@label"
  7445. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  7446. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  7447. #~ msgctxt "@label"
  7448. #~ msgid "%1 m / ~ %2 g"
  7449. #~ msgstr "%1 m / ~ %2 g"
  7450. #~ msgctxt "@label"
  7451. #~ msgid "Hotend"
  7452. #~ msgstr "Extrémité chaude"
  7453. #~ msgctxt "@action:button"
  7454. #~ msgid "View Mode"
  7455. #~ msgstr "Mode d’affichage"
  7456. #~ msgctxt "@title:tab"
  7457. #~ msgid "Print"
  7458. #~ msgstr "Imprimer"
  7459. #~ msgctxt "@label"
  7460. #~ msgid "0%"
  7461. #~ msgstr "0 %"
  7462. #~ msgctxt "@label"
  7463. #~ msgid "Empty infill will leave your model hollow with low strength."
  7464. #~ msgstr "Un remplissage vide laissera votre modèle creux pour une solidité faible."
  7465. #~ msgctxt "@label"
  7466. #~ msgid "20%"
  7467. #~ msgstr "20 %"
  7468. #~ msgctxt "@label"
  7469. #~ msgid "Light (20%) infill will give your model an average strength."
  7470. #~ msgstr "Un remplissage clairsemé (20 %) donnera à votre modèle une solidité moyenne."
  7471. #~ msgctxt "@label"
  7472. #~ msgid "50%"
  7473. #~ msgstr "50 %"
  7474. #~ msgctxt "@label"
  7475. #~ msgid "Dense (50%) infill will give your model an above average strength."
  7476. #~ msgstr "Un remplissage dense (50 %) donnera à votre modèle une solidité supérieure à la moyenne."
  7477. #~ msgctxt "@label"
  7478. #~ msgid "100%"
  7479. #~ msgstr "100 %"
  7480. #~ msgctxt "@label"
  7481. #~ msgid "Solid (100%) infill will make your model completely solid."
  7482. #~ msgstr "Un remplissage solide (100 %) rendra votre modèle vraiment résistant."
  7483. #~ msgctxt "@label"
  7484. #~ msgid "Gradual"
  7485. #~ msgstr "Graduel"
  7486. #~ msgctxt "description"
  7487. #~ msgid "Provides support for writing X3G files"
  7488. #~ msgstr "Permet l'écriture de fichiers X3G"
  7489. #~ msgctxt "name"
  7490. #~ msgid "X3G Writer"
  7491. #~ msgstr "Générateur X3G"
  7492. #~ msgctxt "@label"
  7493. #~ msgid "Machine Settings action"
  7494. #~ msgstr "Action Paramètres de la machine"
  7495. #~ msgctxt "@info:whatsthis"
  7496. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7497. #~ msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)"
  7498. #~ msgctxt "@label"
  7499. #~ msgid "X-Ray View"
  7500. #~ msgstr "Vue Rayon-X"
  7501. #~ msgctxt "@info:whatsthis"
  7502. #~ msgid "Provides the X-Ray view."
  7503. #~ msgstr "Permet la vue Rayon-X."
  7504. #~ msgctxt "@label"
  7505. #~ msgid "X3D Reader"
  7506. #~ msgstr "Lecteur X3D"
  7507. #~ msgctxt "@info:whatsthis"
  7508. #~ msgid "Provides support for reading X3D files."
  7509. #~ msgstr "Fournit la prise en charge de la lecture de fichiers X3D."
  7510. #~ msgctxt "@label"
  7511. #~ msgid "GCode Writer"
  7512. #~ msgstr "Générateur de GCode"
  7513. #~ msgctxt "@info:whatsthis"
  7514. #~ msgid "Writes GCode to a file."
  7515. #~ msgstr "Enregistre le GCode dans un fichier."
  7516. #~ msgctxt "@action:button Preceded by 'Ready to'."
  7517. #~ msgid "Print with Doodle3D"
  7518. #~ msgstr "Imprimer avec Doodle3D"
  7519. #~ msgctxt "@info:whatsthis"
  7520. #~ msgid "Shows changes since latest checked version."
  7521. #~ msgstr "Affiche les changements depuis la dernière version."
  7522. #~ msgctxt "@label"
  7523. #~ msgid "Profile flatener"
  7524. #~ msgstr "Aplatisseur de profil"
  7525. #~ msgctxt "@info:whatsthis"
  7526. #~ msgid "Create a flattend quality changes profile."
  7527. #~ msgstr "Créer un profil de changements de qualité aplati."
  7528. #~ msgctxt "@label"
  7529. #~ msgid "USB printing"
  7530. #~ msgstr "Impression par USB"
  7531. #~ msgctxt "@info:whatsthis"
  7532. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  7533. #~ msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware."
  7534. #~ msgctxt "X3G Writer Plugin Description"
  7535. #~ msgid "Writes X3G to a file"
  7536. #~ msgstr "Enregistre le X3G dans un fichier"
  7537. #~ msgctxt "@label"
  7538. #~ msgid "Removable Drive Output Device Plugin"
  7539. #~ msgstr "Plugin de périphérique de sortie sur disque amovible"
  7540. #~ msgctxt "@info:whatsthis"
  7541. #~ msgid "Provides removable drive hotplugging and writing support."
  7542. #~ msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible."
  7543. #~ msgctxt "@info:whatsthis"
  7544. #~ msgid "Manages network connections to Ultimaker 3 printers"
  7545. #~ msgstr "Gère les connexions réseau vers les imprimantes Ultimaker 3"
  7546. #~ msgctxt "@label"
  7547. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7548. #~ msgstr "PrintCore différent (Cura : {0}, Imprimante : {1}) sélectionné pour l'extrudeuse {2}"
  7549. #~ msgctxt "@label"
  7550. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7551. #~ msgstr "Le PrintCore {0} n'est pas correctement calibré. Le calibrage XY doit être effectué sur l'imprimante."
  7552. #~ msgctxt "@label"
  7553. #~ 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."
  7554. #~ 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."
  7555. #~ msgctxt "@label"
  7556. #~ msgid "Post Processing"
  7557. #~ msgstr "Post-traitement"
  7558. #~ msgctxt "Description of plugin"
  7559. #~ msgid "Extension that allows for user created scripts for post processing"
  7560. #~ msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur"
  7561. #~ msgctxt "@label"
  7562. #~ msgid "Auto Save"
  7563. #~ msgstr "Enregistrement auto"
  7564. #~ msgctxt "@info:whatsthis"
  7565. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7566. #~ msgstr "Enregistre automatiquement les Préférences, Machines et Profils après des modifications."
  7567. #~ msgctxt "@label"
  7568. #~ msgid "Slice info"
  7569. #~ msgstr "Information sur le découpage"
  7570. #~ msgctxt "@info:whatsthis"
  7571. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  7572. #~ msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences."
  7573. #~ msgctxt "@info"
  7574. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  7575. #~ msgstr "Cura collecte des statistiques anonymes sur le découpage. Vous pouvez désactiver cette fonctionnalité dans les préférences"
  7576. #~ msgctxt "@label"
  7577. #~ msgid "Material Profiles"
  7578. #~ msgstr "Profils matériels"
  7579. #~ msgctxt "@info:whatsthis"
  7580. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  7581. #~ msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML."
  7582. #~ msgctxt "@label"
  7583. #~ msgid "Legacy Cura Profile Reader"
  7584. #~ msgstr "Lecteur de profil Cura antérieur"
  7585. #~ msgctxt "@info:whatsthis"
  7586. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  7587. #~ msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures."
  7588. #~ msgctxt "@label"
  7589. #~ msgid "GCode Profile Reader"
  7590. #~ msgstr "Lecteur de profil GCode"
  7591. #~ msgctxt "@info:whatsthis"
  7592. #~ msgid "Provides support for importing profiles from g-code files."
  7593. #~ msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code."
  7594. #~ msgctxt "@label"
  7595. #~ msgid "Layer View"
  7596. #~ msgstr "Vue en couches"
  7597. #~ msgctxt "@info:whatsthis"
  7598. #~ msgid "Provides the Layer view."
  7599. #~ msgstr "Permet la vue en couches."
  7600. #~ msgctxt "@label"
  7601. #~ msgid "Version Upgrade 2.5 to 2.6"
  7602. #~ msgstr "Mise à niveau de 2.5 vers 2.6"
  7603. #~ msgctxt "@info:whatsthis"
  7604. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  7605. #~ msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6."
  7606. #~ msgctxt "@label"
  7607. #~ msgid "Version Upgrade 2.1 to 2.2"
  7608. #~ msgstr "Mise à niveau vers 2.1 vers 2.2"
  7609. #~ msgctxt "@info:whatsthis"
  7610. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  7611. #~ msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2."
  7612. #~ msgctxt "@label"
  7613. #~ msgid "Version Upgrade 2.2 to 2.4"
  7614. #~ msgstr "Mise à niveau de 2.2 vers 2.4"
  7615. #~ msgctxt "@info:whatsthis"
  7616. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  7617. #~ msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4."
  7618. #~ msgctxt "@label"
  7619. #~ msgid "Image Reader"
  7620. #~ msgstr "Lecteur d'images"
  7621. #~ msgctxt "@info:whatsthis"
  7622. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  7623. #~ msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D."
  7624. #~ msgctxt "@label"
  7625. #~ msgid "CuraEngine Backend"
  7626. #~ msgstr "Système CuraEngine"
  7627. #~ msgctxt "@info:whatsthis"
  7628. #~ msgid "Provides the link to the CuraEngine slicing backend."
  7629. #~ msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine."
  7630. #~ msgctxt "@label"
  7631. #~ msgid "Per Model Settings Tool"
  7632. #~ msgstr "Outil de paramètres par modèle"
  7633. #~ msgctxt "@info:whatsthis"
  7634. #~ msgid "Provides the Per Model Settings."
  7635. #~ msgstr "Fournit les paramètres par modèle."
  7636. #~ msgctxt "@label"
  7637. #~ msgid "3MF Reader"
  7638. #~ msgstr "Lecteur 3MF"
  7639. #~ msgctxt "@info:whatsthis"
  7640. #~ msgid "Provides support for reading 3MF files."
  7641. #~ msgstr "Fournit la prise en charge de la lecture de fichiers 3MF."
  7642. #~ msgctxt "@label"
  7643. #~ msgid "Solid View"
  7644. #~ msgstr "Vue solide"
  7645. #~ msgctxt "@info:whatsthis"
  7646. #~ msgid "Provides a normal solid mesh view."
  7647. #~ msgstr "Affiche une vue en maille solide normale."
  7648. #~ msgctxt "@label"
  7649. #~ msgid "G-code Reader"
  7650. #~ msgstr "Lecteur G-Code"
  7651. #~ msgctxt "@info:whatsthis"
  7652. #~ msgid "Allows loading and displaying G-code files."
  7653. #~ msgstr "Permet le chargement et l'affichage de fichiers G-Code."
  7654. #~ msgctxt "@label"
  7655. #~ msgid "Cura Profile Writer"
  7656. #~ msgstr "Générateur de profil Cura"
  7657. #~ msgctxt "@info:whatsthis"
  7658. #~ msgid "Provides support for exporting Cura profiles."
  7659. #~ msgstr "Fournit la prise en charge de l'exportation de profils Cura."
  7660. #~ msgctxt "@label"
  7661. #~ msgid "3MF Writer"
  7662. #~ msgstr "Générateur 3MF"
  7663. #~ msgctxt "@info:whatsthis"
  7664. #~ msgid "Provides support for writing 3MF files."
  7665. #~ msgstr "Permet l'écriture de fichiers 3MF"
  7666. #~ msgctxt "@label"
  7667. #~ msgid "Ultimaker machine actions"
  7668. #~ msgstr "Actions de la machine Ultimaker"
  7669. #~ msgctxt "@info:whatsthis"
  7670. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7671. #~ 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.)"
  7672. #~ msgctxt "@label"
  7673. #~ msgid "Cura Profile Reader"
  7674. #~ msgstr "Lecteur de profil Cura"
  7675. #~ msgctxt "@info:whatsthis"
  7676. #~ msgid "Provides support for importing Cura profiles."
  7677. #~ msgstr "Fournit la prise en charge de l'importation de profils Cura."
  7678. #~ msgctxt "@info"
  7679. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  7680. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  7681. #~ msgctxt "@label"
  7682. #~ msgid "Build Plate Shape"
  7683. #~ msgstr "Forme du plateau"
  7684. #~ msgctxt "@option:check"
  7685. #~ msgid "Machine Center is Zero"
  7686. #~ msgstr "Le centre de la machine est zéro"
  7687. #~ msgctxt "@option:check"
  7688. #~ msgid "Heated Bed"
  7689. #~ msgstr "Plateau chauffant"
  7690. #~ msgctxt "@label"
  7691. #~ msgid "GCode Flavor"
  7692. #~ msgstr "GCode Parfum"
  7693. #~ msgctxt "@label"
  7694. #~ msgid "Material Diameter"
  7695. #~ msgstr "Diamètre du matériau"
  7696. #~ msgctxt "@label"
  7697. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  7698. #~ 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>"
  7699. #~ msgctxt "@item:inlistbox"
  7700. #~ msgid "Ultimaker"
  7701. #~ msgstr "Ultimaker"
  7702. #~ msgctxt "@label"
  7703. #~ msgid "Support library for scientific computing "
  7704. #~ msgstr "Prise en charge de la bibliothèque pour le calcul scientifique "
  7705. #~ msgctxt "@tooltip"
  7706. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  7707. #~ msgstr "<b>Configuration de l'impression</b><br/><br/>Modifier ou réviser les paramètres pour la tâche d'impression active."
  7708. #~ msgctxt "@tooltip"
  7709. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  7710. #~ 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."
  7711. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  7712. #~ msgid "Automatic: %1"
  7713. #~ msgstr "Automatique : %1"
  7714. #~ msgctxt "@label:PrintjobStatus"
  7715. #~ msgid "Please load a 3d model"
  7716. #~ msgstr "Veuillez charger un modèle 3D"
  7717. #~ msgctxt "@label"
  7718. #~ msgid "Print Selected Model with %1"
  7719. #~ msgid_plural "Print Selected Models With %1"
  7720. #~ msgstr[0] "Imprimer le modèle sélectionné avec %1"
  7721. #~ msgstr[1] "Imprimer les modèles sélectionnés avec %1"
  7722. #~ msgctxt "@info:status"
  7723. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  7724. #~ 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}."
  7725. #~ msgctxt "@label"
  7726. #~ msgid "Version Upgrade 2.4 to 2.5"
  7727. #~ msgstr "Mise à niveau de 2.4 vers 2.5"
  7728. #~ msgctxt "@info:whatsthis"
  7729. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  7730. #~ msgstr "Configurations des mises à niveau de Cura 2.4 vers Cura 2.5."
  7731. #~ msgctxt "@info:status"
  7732. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  7733. #~ msgstr "Impossible de trouver un profil de qualité pour cette combinaison. Les paramètres par défaut seront utilisés à la place."
  7734. #~ msgctxt "@title:window"
  7735. #~ msgid "Oops!"
  7736. #~ msgstr "Oups !"
  7737. #~ msgctxt "@label"
  7738. #~ msgid ""
  7739. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7740. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  7741. #~ " <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"
  7742. #~ " "
  7743. #~ msgstr ""
  7744. #~ "<p>Une erreur fatale que nous ne pouvons résoudre s'est produite !</p>\n"
  7745. #~ " <p>Nous espérons que cette image d'un chaton vous aidera à vous remettre du choc.</p>\n"
  7746. #~ " <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>"
  7747. #~ msgctxt "@label"
  7748. #~ msgid "Please enter the correct settings for your printer below:"
  7749. #~ msgstr "Indiquez les bons paramètres pour votre imprimante ci-dessous :"
  7750. #~ msgctxt "@label"
  7751. #~ msgid "Extruder %1"
  7752. #~ msgstr "Extrudeur %1"
  7753. #~ msgctxt "@label Followed by extruder selection drop-down."
  7754. #~ msgid "Print model with"
  7755. #~ msgstr "Imprimer le modèle avec"
  7756. #~ msgctxt "@label"
  7757. #~ msgid "You will need to restart the application for language changes to have effect."
  7758. #~ msgstr "Vous devez redémarrer l'application pour que les changements de langue prennent effet."
  7759. #~ msgctxt "@info:tooltip"
  7760. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  7761. #~ msgstr "Bouge la caméra afin que le modèle sélectionné se trouve au centre de la vue."
  7762. #~ msgctxt "@action:inmenu menubar:edit"
  7763. #~ msgid "Delete &Selection"
  7764. #~ msgstr "&Supprimer la sélection"
  7765. #~ msgctxt "@action:inmenu menubar:file"
  7766. #~ msgid "&Open File..."
  7767. #~ msgstr "&Ouvrir un fichier..."
  7768. #~ msgctxt "@action:inmenu menubar:file"
  7769. #~ msgid "&Open Project..."
  7770. #~ msgstr "&Ouvrir un projet..."
  7771. #~ msgctxt "@title:window"
  7772. #~ msgid "Multiply Model"
  7773. #~ msgstr "Multiplier le modèle"
  7774. #~ msgctxt "@title:menu menubar:file"
  7775. #~ msgid "Save &All"
  7776. #~ msgstr "Enregistrer &tout"
  7777. #~ msgctxt "@title:window"
  7778. #~ msgid "Open file"
  7779. #~ msgstr "Ouvrir un fichier"
  7780. #~ msgctxt "@title:window"
  7781. #~ msgid "Open workspace"
  7782. #~ msgstr "Ouvrir l'espace de travail"
  7783. #~ msgctxt "@label"
  7784. #~ msgid "Hollow"
  7785. #~ msgstr "Creux"
  7786. #~ msgctxt "@label"
  7787. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  7788. #~ msgstr "L'absence de remplissage (0 %) laissera votre modèle creux pour une solidité faible"
  7789. #~ msgctxt "@label"
  7790. #~ msgid "Light"
  7791. #~ msgstr "Clairsemé"
  7792. #~ msgctxt "@label"
  7793. #~ msgid "Light (20%) infill will give your model an average strength"
  7794. #~ msgstr "Un remplissage clairsemé (20 %) donnera à votre modèle une solidité moyenne"
  7795. #~ msgctxt "@label"
  7796. #~ msgid "Dense"
  7797. #~ msgstr "Dense"
  7798. #~ msgctxt "@label"
  7799. #~ msgid "Dense (50%) infill will give your model an above average strength"
  7800. #~ msgstr "Un remplissage dense (50 %) donnera à votre modèle une solidité supérieure à la moyenne"
  7801. #~ msgctxt "@label"
  7802. #~ msgid "Solid"
  7803. #~ msgstr "Solide"
  7804. #~ msgctxt "@label"
  7805. #~ msgid "Solid (100%) infill will make your model completely solid"
  7806. #~ msgstr "Un remplissage solide (100 %) rendra votre modèle vraiment résistant"
  7807. #~ msgctxt "@label"
  7808. #~ msgid "Enable Support"
  7809. #~ msgstr "Activer les supports"
  7810. #~ msgctxt "@label"
  7811. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  7812. #~ msgstr "Active les structures de support. Ces structures soutiennent les modèles présentant d'importants porte-à-faux."
  7813. #~ msgctxt "@label"
  7814. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  7815. #~ msgstr "Besoin d'aide pour améliorer vos impressions ? Lisez les <a href='%1'>Guides de dépannage Ultimaker</a>"
  7816. #~ msgctxt "@info:status"
  7817. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  7818. #~ msgstr "Connecté sur le réseau à {0}. Veuillez approuver la demande d'accès sur l'imprimante."
  7819. #~ msgctxt "@info:status"
  7820. #~ msgid "Connected over the network to {0}."
  7821. #~ msgstr "Connecté sur le réseau à {0}."
  7822. #~ msgctxt "@info:status"
  7823. #~ msgid "Connected over the network to {0}. No access to control the printer."
  7824. #~ msgstr "Connecté sur le réseau à {0}. Pas d'accès pour commander l'imprimante."
  7825. #~ msgctxt "@info:status"
  7826. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  7827. #~ msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. Vérifiez l'imprimante."
  7828. #~ msgctxt "@label"
  7829. #~ msgid "You made changes to the following setting(s)/override(s):"
  7830. #~ msgstr "Vous avez modifié le(s) paramètre(s) / forçage(s) suivant(s) :"
  7831. #~ msgctxt "@window:title"
  7832. #~ msgid "Switched profiles"
  7833. #~ msgstr "Profils échangés"
  7834. #~ msgctxt "@label"
  7835. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  7836. #~ msgstr "Voulez-vous transférer le(s) %d paramètre(s) / forçage(s) modifié(s) sur ce profil ?"
  7837. #~ msgctxt "@label"
  7838. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  7839. #~ 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."
  7840. #~ msgctxt "@label"
  7841. #~ msgid "Cost per Meter (Approx.)"
  7842. #~ msgstr "Coût par mètre (env.)"
  7843. #~ msgctxt "@label"
  7844. #~ msgid "%1/m"
  7845. #~ msgstr "%1/m"
  7846. #~ msgctxt "@info:tooltip"
  7847. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  7848. #~ 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."
  7849. #~ msgctxt "@action:button"
  7850. #~ msgid "Display five top layers in layer view"
  7851. #~ msgstr "Afficher les cinq couches supérieures en vue en couches"
  7852. #~ msgctxt "@info:tooltip"
  7853. #~ msgid "Should only the top layers be displayed in layerview?"
  7854. #~ msgstr "Seules les couches supérieures doivent-elles être affichées en vue en couches ?"
  7855. #~ msgctxt "@option:check"
  7856. #~ msgid "Only display top layer(s) in layer view"
  7857. #~ msgstr "Afficher uniquement la (les) couche(s) supérieure(s) en vue en couches"
  7858. #~ msgctxt "@label"
  7859. #~ msgid "Opening files"
  7860. #~ msgstr "Ouverture des fichiers"
  7861. #~ msgctxt "@label"
  7862. #~ msgid "Printer Monitor"
  7863. #~ msgstr "Moniteur de l'imprimante"
  7864. #~ msgctxt "@label"
  7865. #~ msgid "Temperatures"
  7866. #~ msgstr "Températures"
  7867. #~ msgctxt "@label:PrintjobStatus"
  7868. #~ msgid "Preparing to slice..."
  7869. #~ msgstr "Préparation de la découpe..."
  7870. #~ msgctxt "@window:title"
  7871. #~ msgid "Changes on the Printer"
  7872. #~ msgstr "Modifications sur l'imprimante"
  7873. #~ msgctxt "@action:inmenu"
  7874. #~ msgid "&Duplicate Model"
  7875. #~ msgstr "&Dupliquer le modèle"
  7876. #~ msgctxt "@label"
  7877. #~ msgid "Helper Parts:"
  7878. #~ msgstr "Pièces d'aide :"
  7879. #~ msgctxt "@label"
  7880. #~ 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."
  7881. #~ 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."
  7882. #~ msgctxt "@label"
  7883. #~ msgid "Don't print support"
  7884. #~ msgstr "Ne pas imprimer le support"
  7885. #~ msgctxt "@label"
  7886. #~ msgid "Print support using %1"
  7887. #~ msgstr "Imprimer le support à l'aide de %1"
  7888. #~ msgctxt "@label:listbox"
  7889. #~ msgid "Printer:"
  7890. #~ msgstr "Imprimante :"
  7891. #~ msgctxt "@info:status"
  7892. #~ msgid "Successfully imported profiles {0}"
  7893. #~ msgstr "Importation des profils {0} réussie"
  7894. #~ msgctxt "@label"
  7895. #~ msgid "Scripts"
  7896. #~ msgstr "Scripts"
  7897. #~ msgctxt "@label"
  7898. #~ msgid "Active Scripts"
  7899. #~ msgstr "Scripts actifs"
  7900. #~ msgctxt "@label"
  7901. #~ msgid "Done"
  7902. #~ msgstr "Terminé"
  7903. #~ msgctxt "@item:inlistbox"
  7904. #~ msgid "English"
  7905. #~ msgstr "Anglais"
  7906. #~ msgctxt "@item:inlistbox"
  7907. #~ msgid "Finnish"
  7908. #~ msgstr "Finnois"
  7909. #~ msgctxt "@item:inlistbox"
  7910. #~ msgid "French"
  7911. #~ msgstr "Français"
  7912. #~ msgctxt "@item:inlistbox"
  7913. #~ msgid "German"
  7914. #~ msgstr "Allemand"
  7915. #~ msgctxt "@item:inlistbox"
  7916. #~ msgid "Italian"
  7917. #~ msgstr "Italien"
  7918. #~ msgctxt "@item:inlistbox"
  7919. #~ msgid "Dutch"
  7920. #~ msgstr "Néerlandais"
  7921. #~ msgctxt "@item:inlistbox"
  7922. #~ msgid "Spanish"
  7923. #~ msgstr "Espagnol"
  7924. #~ msgctxt "@label"
  7925. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  7926. #~ msgstr "Voulez-vous modifier les PrintCores et matériaux dans Cura pour correspondre à votre imprimante ?"
  7927. #~ msgctxt "@label:"
  7928. #~ msgid "Print Again"
  7929. #~ msgstr "Imprimer à nouveau"