cura.po 237 KB

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