cura.po 359 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448
  1. # Cura
  2. # Copyright (C) 2021 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 4.9\n"
  8. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  9. "POT-Creation-Date: 2021-04-02 16:10+0200\n"
  10. "PO-Revision-Date: 2020-11-09 14:02+0100\n"
  11. "Last-Translator: Lionbridge <info@lionbridge.com>\n"
  12. "Language-Team: French <info@lionbridge.com>, French <info@bothof.nl>\n"
  13. "Language: fr_FR\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=2; plural=(n > 1);\n"
  18. "X-Generator: Poedit 2.4.1\n"
  19. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:523
  20. msgctxt "@info:progress"
  21. msgid "Loading machines..."
  22. msgstr "Chargement des machines..."
  23. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:530
  24. msgctxt "@info:progress"
  25. msgid "Setting up preferences..."
  26. msgstr "Configuration des préférences..."
  27. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:668
  28. msgctxt "@info:progress"
  29. msgid "Initializing Active Machine..."
  30. msgstr "Initialisation de la machine active..."
  31. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:799
  32. msgctxt "@info:progress"
  33. msgid "Initializing machine manager..."
  34. msgstr "Initialisation du gestionnaire de machine..."
  35. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:813
  36. msgctxt "@info:progress"
  37. msgid "Initializing build volume..."
  38. msgstr "Initialisation du volume de fabrication..."
  39. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:884
  40. msgctxt "@info:progress"
  41. msgid "Setting up scene..."
  42. msgstr "Préparation de la scène..."
  43. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:920
  44. msgctxt "@info:progress"
  45. msgid "Loading interface..."
  46. msgstr "Chargement de l'interface..."
  47. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:925
  48. msgctxt "@info:progress"
  49. msgid "Initializing engine..."
  50. msgstr "Initialisation du moteur..."
  51. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1242
  52. #, python-format
  53. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  54. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  55. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  56. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1799
  57. #, python-brace-format
  58. msgctxt "@info:status"
  59. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  60. msgstr "Un seul fichier G-Code peut être chargé à la fois. Importation de {0} sautée"
  61. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1800
  62. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:188
  63. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
  64. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  65. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  66. msgctxt "@info:title"
  67. msgid "Warning"
  68. msgstr "Avertissement"
  69. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1809
  70. #, python-brace-format
  71. msgctxt "@info:status"
  72. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  73. msgstr "Impossible d'ouvrir un autre fichier si le G-Code est en cours de chargement. Importation de {0} sautée"
  74. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1810
  75. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:146
  76. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:153
  77. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  78. msgctxt "@info:title"
  79. msgid "Error"
  80. msgstr "Erreur"
  81. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/GlobalStacksModel.py:76
  82. #, python-brace-format
  83. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  84. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  85. msgstr "Voulez-vous vraiment supprimer l'objet {0} ? Cette action est irréversible !"
  86. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:226
  87. msgctxt "@label"
  88. msgid "Custom Material"
  89. msgstr "Matériau personnalisé"
  90. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:227
  91. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
  92. msgctxt "@label"
  93. msgid "Custom"
  94. msgstr "Personnalisé"
  95. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:338
  96. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:11
  97. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  98. msgctxt "@label"
  99. msgid "Default"
  100. msgstr "Default"
  101. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:361
  102. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:110
  103. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  104. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1612
  105. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
  106. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
  107. msgctxt "@label"
  108. msgid "Unknown"
  109. msgstr "Inconnu"
  110. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:383
  111. msgctxt "@label"
  112. msgid "Custom profiles"
  113. msgstr "Personnaliser les profils"
  114. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:418
  115. #, python-brace-format
  116. msgctxt "@item:inlistbox"
  117. msgid "All Supported Types ({0})"
  118. msgstr "Tous les types supportés ({0})"
  119. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:419
  120. msgctxt "@item:inlistbox"
  121. msgid "All Files (*)"
  122. msgstr "Tous les fichiers (*)"
  123. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:14
  124. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  125. msgctxt "@label"
  126. msgid "Visual"
  127. msgstr "Visuel"
  128. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:15
  129. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  130. msgctxt "@text"
  131. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  132. 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."
  133. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:18
  134. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  135. msgctxt "@label"
  136. msgid "Engineering"
  137. msgstr "Engineering"
  138. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:19
  139. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  140. msgctxt "@text"
  141. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  142. 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."
  143. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:22
  144. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  145. msgctxt "@label"
  146. msgid "Draft"
  147. msgstr "Ébauche"
  148. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:23
  149. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  150. msgctxt "@text"
  151. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  152. 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."
  153. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  154. msgctxt "@label"
  155. msgid "The printer(s) below cannot be connected because they are part of a group"
  156. msgstr "Les imprimantes ci-dessous ne peuvent pas être connectées car elles font partie d'un groupe"
  157. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  158. msgctxt "@label"
  159. msgid "Available networked printers"
  160. msgstr "Imprimantes en réseau disponibles"
  161. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/ExtrudersModel.py:211
  162. msgctxt "@menuitem"
  163. msgid "Not overridden"
  164. msgstr "Pas écrasé"
  165. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:107
  166. msgctxt "@title:window"
  167. msgid "Cura can't start"
  168. msgstr "Échec du démarrage de Cura"
  169. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:113
  170. msgctxt "@label crash message"
  171. msgid ""
  172. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  173. " <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"
  174. " <p>Backups can be found in the configuration folder.</p>\n"
  175. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  176. " "
  177. msgstr ""
  178. "<p><b>Oups, un problème est survenu dans Ultimaker Cura.</p></b>\n"
  179. " <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"
  180. " <p>Les sauvegardes se trouvent dans le dossier de configuration.</p>\n"
  181. " <p>Veuillez nous envoyer ce rapport d'incident pour que nous puissions résoudre le problème.</p>\n"
  182. " "
  183. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:122
  184. msgctxt "@action:button"
  185. msgid "Send crash report to Ultimaker"
  186. msgstr "Envoyer le rapport de d'incident à Ultimaker"
  187. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:125
  188. msgctxt "@action:button"
  189. msgid "Show detailed crash report"
  190. msgstr "Afficher le rapport d'incident détaillé"
  191. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:129
  192. msgctxt "@action:button"
  193. msgid "Show configuration folder"
  194. msgstr "Afficher le dossier de configuration"
  195. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:140
  196. msgctxt "@action:button"
  197. msgid "Backup and Reset Configuration"
  198. msgstr "Sauvegarder et réinitialiser la configuration"
  199. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:171
  200. msgctxt "@title:window"
  201. msgid "Crash Report"
  202. msgstr "Rapport d'incident"
  203. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:190
  204. msgctxt "@label crash message"
  205. msgid ""
  206. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  207. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  208. " "
  209. msgstr ""
  210. "<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"
  211. " <p>Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs</p>\n"
  212. " "
  213. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:198
  214. msgctxt "@title:groupbox"
  215. msgid "System information"
  216. msgstr "Informations système"
  217. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:207
  218. msgctxt "@label unknown version of Cura"
  219. msgid "Unknown"
  220. msgstr "Inconnu"
  221. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:228
  222. msgctxt "@label Cura version number"
  223. msgid "Cura version"
  224. msgstr "Version Cura"
  225. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:229
  226. msgctxt "@label"
  227. msgid "Cura language"
  228. msgstr "Langue de Cura"
  229. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:230
  230. msgctxt "@label"
  231. msgid "OS language"
  232. msgstr "Langue du SE"
  233. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:231
  234. msgctxt "@label Type of platform"
  235. msgid "Platform"
  236. msgstr "Plate-forme"
  237. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:232
  238. msgctxt "@label"
  239. msgid "Qt version"
  240. msgstr "Version Qt"
  241. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:233
  242. msgctxt "@label"
  243. msgid "PyQt version"
  244. msgstr "Version PyQt"
  245. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:234
  246. msgctxt "@label OpenGL version"
  247. msgid "OpenGL"
  248. msgstr "OpenGL"
  249. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:264
  250. msgctxt "@label"
  251. msgid "Not yet initialized<br/>"
  252. msgstr "Pas encore initialisé<br/>"
  253. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:267
  254. #, python-brace-format
  255. msgctxt "@label OpenGL version"
  256. msgid "<li>OpenGL Version: {version}</li>"
  257. msgstr "<li>Version OpenGL : {version}</li>"
  258. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:268
  259. #, python-brace-format
  260. msgctxt "@label OpenGL vendor"
  261. msgid "<li>OpenGL Vendor: {vendor}</li>"
  262. msgstr "<li>Revendeur OpenGL : {vendor}</li>"
  263. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:269
  264. #, python-brace-format
  265. msgctxt "@label OpenGL renderer"
  266. msgid "<li>OpenGL Renderer: {renderer}</li>"
  267. msgstr "<li>Moteur de rendu OpenGL : {renderer}</li>"
  268. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:303
  269. msgctxt "@title:groupbox"
  270. msgid "Error traceback"
  271. msgstr "Retraçage de l'erreur"
  272. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:389
  273. msgctxt "@title:groupbox"
  274. msgid "Logs"
  275. msgstr "Journaux"
  276. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:417
  277. msgctxt "@action:button"
  278. msgid "Send report"
  279. msgstr "Envoyer rapport"
  280. #: /mnt/projects/ultimaker/cura/Cura/cura/API/Account.py:179
  281. msgctxt "@info:title"
  282. msgid "Login failed"
  283. msgstr "La connexion a échoué"
  284. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationHelpers.py:92
  285. msgctxt "@message"
  286. msgid "Could not read response."
  287. msgstr "Impossible de lire la réponse."
  288. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:187
  289. msgctxt "@info"
  290. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  291. msgstr "Impossible de lancer une nouvelle procédure de connexion. Vérifiez si une autre tentative de connexion est toujours active."
  292. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
  293. msgctxt "@info"
  294. msgid "Unable to reach the Ultimaker account server."
  295. msgstr "Impossible d’atteindre le serveur du compte Ultimaker."
  296. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
  297. msgctxt "@message"
  298. msgid "The provided state is not correct."
  299. msgstr "L'état fourni n'est pas correct."
  300. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
  301. msgctxt "@message"
  302. msgid "Please give the required permissions when authorizing this application."
  303. msgstr "Veuillez donner les permissions requises lors de l'autorisation de cette application."
  304. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
  305. msgctxt "@message"
  306. msgid "Something unexpected happened when trying to log in, please try again."
  307. msgstr "Une erreur s'est produite lors de la connexion, veuillez réessayer."
  308. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:205
  309. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:132
  310. msgctxt "@title:window"
  311. msgid "File Already Exists"
  312. msgstr "Le fichier existe déjà"
  313. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:206
  314. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:133
  315. #, python-brace-format
  316. msgctxt "@label Don't translate the XML tag <filename>!"
  317. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  318. msgstr "Le fichier <filename>{0}</filename> existe déjà. Êtes-vous sûr de vouloir le remplacer ?"
  319. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:456
  320. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:459
  321. msgctxt "@info:status"
  322. msgid "Invalid file URL:"
  323. msgstr "URL de fichier invalide :"
  324. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:713
  325. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
  326. msgctxt "@label"
  327. msgid "Nozzle"
  328. msgstr "Buse"
  329. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:856
  330. msgctxt "@info:message Followed by a list of settings."
  331. msgid "Settings have been changed to match the current availability of extruders:"
  332. msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles :"
  333. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:858
  334. msgctxt "@info:title"
  335. msgid "Settings updated"
  336. msgstr "Paramètres mis à jour"
  337. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1478
  338. msgctxt "@info:title"
  339. msgid "Extruder(s) Disabled"
  340. msgstr "Extrudeuse(s) désactivée(s)"
  341. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:144
  342. #, python-brace-format
  343. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  344. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  345. msgstr "Échec de l'exportation du profil vers <filename>{0}</filename> : <message>{1}</message>"
  346. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:151
  347. #, python-brace-format
  348. msgctxt "@info:status Don't translate the XML tag <filename>!"
  349. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  350. msgstr "Échec de l'exportation du profil vers <filename>{0}</filename> : le plug-in du générateur a rapporté une erreur."
  351. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:156
  352. #, python-brace-format
  353. msgctxt "@info:status Don't translate the XML tag <filename>!"
  354. msgid "Exported profile to <filename>{0}</filename>"
  355. msgstr "Profil exporté vers <filename>{0}</filename>"
  356. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:157
  357. msgctxt "@info:title"
  358. msgid "Export succeeded"
  359. msgstr "L'exportation a réussi"
  360. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:188
  361. #, python-brace-format
  362. msgctxt "@info:status Don't translate the XML tags <filename>!"
  363. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  364. msgstr "Impossible d'importer le profil depuis <filename>{0}</filename> : {1}"
  365. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:192
  366. #, python-brace-format
  367. msgctxt "@info:status Don't translate the XML tags <filename>!"
  368. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  369. msgstr "Impossible d'importer le profil depuis <filename>{0}</filename> avant l'ajout d'une imprimante."
  370. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:207
  371. #, python-brace-format
  372. msgctxt "@info:status Don't translate the XML tags <filename>!"
  373. msgid "No custom profile to import in file <filename>{0}</filename>"
  374. msgstr "Aucun profil personnalisé à importer dans le fichier <filename>{0}</filename>"
  375. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:211
  376. #, python-brace-format
  377. msgctxt "@info:status Don't translate the XML tags <filename>!"
  378. msgid "Failed to import profile from <filename>{0}</filename>:"
  379. msgstr "Échec de l'importation du profil depuis le fichier <filename>{0}</filename> :"
  380. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:235
  381. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:245
  382. #, python-brace-format
  383. msgctxt "@info:status Don't translate the XML tags <filename>!"
  384. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  385. msgstr "Le profil <filename>{0}</filename> contient des données incorrectes ; échec de l'importation."
  386. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:338
  387. #, python-brace-format
  388. msgctxt "@info:status Don't translate the XML tag <filename>!"
  389. msgid "Failed to import profile from <filename>{0}</filename>:"
  390. msgstr "Échec de l'importation du profil depuis le fichier <filename>{0}</filename> :"
  391. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:342
  392. #, python-brace-format
  393. msgctxt "@info:status"
  394. msgid "Successfully imported profile {0}."
  395. msgstr "Importation du profil {0} réussie."
  396. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:349
  397. #, python-brace-format
  398. msgctxt "@info:status"
  399. msgid "File {0} does not contain any valid profile."
  400. msgstr "Le fichier {0} ne contient pas de profil valide."
  401. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:352
  402. #, python-brace-format
  403. msgctxt "@info:status"
  404. msgid "Profile {0} has an unknown file type or is corrupted."
  405. msgstr "Le profil {0} est un type de fichier inconnu ou est corrompu."
  406. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:426
  407. msgctxt "@label"
  408. msgid "Custom profile"
  409. msgstr "Personnaliser le profil"
  410. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:442
  411. msgctxt "@info:status"
  412. msgid "Profile is missing a quality type."
  413. msgstr "Il manque un type de qualité au profil."
  414. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:446
  415. msgctxt "@info:status"
  416. msgid "There is no active printer yet."
  417. msgstr "Aucune imprimante n'est active pour le moment."
  418. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:452
  419. msgctxt "@info:status"
  420. msgid "Unable to add the profile."
  421. msgstr "Impossible d'ajouter le profil."
  422. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:466
  423. #, python-brace-format
  424. msgctxt "@info:status"
  425. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  426. msgstr "Le type de qualité « {0} » n'est pas compatible avec la définition actuelle de la machine active « {1} »."
  427. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:471
  428. #, python-brace-format
  429. msgctxt "@info:status"
  430. 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."
  431. 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é."
  432. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:36
  433. msgctxt "@info:not supported profile"
  434. msgid "Not supported"
  435. msgstr "Non pris en charge"
  436. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:55
  437. msgctxt "@info:No intent profile selected"
  438. msgid "Default"
  439. msgstr "Default"
  440. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
  441. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  442. msgctxt "@info:status"
  443. msgid "Finding new location for objects"
  444. msgstr "Recherche d'un nouvel emplacement pour les objets"
  445. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
  446. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  447. msgctxt "@info:title"
  448. msgid "Finding Location"
  449. msgstr "Recherche d'emplacement"
  450. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
  451. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:41
  452. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:76
  453. msgctxt "@info:status"
  454. msgid "Unable to find a location within the build volume for all objects"
  455. msgstr "Impossible de trouver un emplacement dans le volume d'impression pour tous les objets"
  456. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
  457. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  458. msgctxt "@info:title"
  459. msgid "Can't Find Location"
  460. msgstr "Impossible de trouver un emplacement"
  461. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/ObjectsModel.py:69
  462. #, python-brace-format
  463. msgctxt "@label"
  464. msgid "Group #{group_nr}"
  465. msgstr "Groupe nº {group_nr}"
  466. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:55
  467. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:268
  468. msgctxt "@action:button"
  469. msgid "Skip"
  470. msgstr "Passer"
  471. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:60
  472. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
  473. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
  474. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
  475. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:174
  476. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:127
  477. msgctxt "@action:button"
  478. msgid "Close"
  479. msgstr "Fermer"
  480. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:56
  481. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:259
  482. msgctxt "@action:button"
  483. msgid "Next"
  484. msgstr "Suivant"
  485. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:272
  486. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:26
  487. msgctxt "@action:button"
  488. msgid "Finish"
  489. msgstr "Fin"
  490. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:82
  491. msgctxt "@tooltip"
  492. msgid "Outer Wall"
  493. msgstr "Paroi externe"
  494. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:83
  495. msgctxt "@tooltip"
  496. msgid "Inner Walls"
  497. msgstr "Parois internes"
  498. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:84
  499. msgctxt "@tooltip"
  500. msgid "Skin"
  501. msgstr "Couche extérieure"
  502. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:85
  503. msgctxt "@tooltip"
  504. msgid "Infill"
  505. msgstr "Remplissage"
  506. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:86
  507. msgctxt "@tooltip"
  508. msgid "Support Infill"
  509. msgstr "Remplissage du support"
  510. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:87
  511. msgctxt "@tooltip"
  512. msgid "Support Interface"
  513. msgstr "Interface du support"
  514. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:88
  515. msgctxt "@tooltip"
  516. msgid "Support"
  517. msgstr "Support"
  518. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:89
  519. msgctxt "@tooltip"
  520. msgid "Skirt"
  521. msgstr "Jupe"
  522. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:90
  523. msgctxt "@tooltip"
  524. msgid "Prime Tower"
  525. msgstr "Tour primaire"
  526. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:91
  527. msgctxt "@tooltip"
  528. msgid "Travel"
  529. msgstr "Déplacement"
  530. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:92
  531. msgctxt "@tooltip"
  532. msgid "Retractions"
  533. msgstr "Rétractions"
  534. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:93
  535. msgctxt "@tooltip"
  536. msgid "Other"
  537. msgstr "Autre"
  538. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:17
  539. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
  540. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:48
  541. msgctxt "@action:button"
  542. msgid "Add"
  543. msgstr "Ajouter"
  544. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:33
  545. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
  546. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
  547. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
  548. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
  549. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
  550. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
  551. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  552. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:234
  553. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
  554. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
  555. msgctxt "@action:button"
  556. msgid "Cancel"
  557. msgstr "Annuler"
  558. #: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:98
  559. msgctxt "@info:status"
  560. 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."
  561. 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."
  562. #: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:100
  563. msgctxt "@info:title"
  564. msgid "Build Volume"
  565. msgstr "Volume d'impression"
  566. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:113
  567. msgctxt "@info:backup_failed"
  568. msgid "Could not create archive from user data directory: {}"
  569. msgstr "Impossible de créer une archive à partir du répertoire de données de l'utilisateur : {}"
  570. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:119
  571. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
  572. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
  573. msgctxt "@info:title"
  574. msgid "Backup"
  575. msgstr "Sauvegarde"
  576. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:132
  577. msgctxt "@info:backup_failed"
  578. msgid "Tried to restore a Cura backup without having proper data or meta data."
  579. msgstr "A essayé de restaurer une sauvegarde Cura sans disposer de données ou de métadonnées appropriées."
  580. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:143
  581. msgctxt "@info:backup_failed"
  582. msgid "Tried to restore a Cura backup that is higher than the current version."
  583. msgstr "A essayé de restaurer une sauvegarde Cura supérieure à la version actuelle."
  584. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:26
  585. msgctxt "@info:status"
  586. msgid "Multiplying and placing objects"
  587. msgstr "Multiplication et placement d'objets"
  588. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:28
  589. msgctxt "@info:title"
  590. msgid "Placing Objects"
  591. msgstr "Placement des objets"
  592. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:77
  593. msgctxt "@info:title"
  594. msgid "Placing Object"
  595. msgstr "Placement de l'objet"
  596. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  597. msgctxt "@action:button Preceded by 'Ready to'."
  598. msgid "Save to Removable Drive"
  599. msgstr "Enregistrer sur un lecteur amovible"
  600. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  601. #, python-brace-format
  602. msgctxt "@item:inlistbox"
  603. msgid "Save to Removable Drive {0}"
  604. msgstr "Enregistrer sur un lecteur amovible {0}"
  605. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  606. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  607. msgctxt "@info:status"
  608. msgid "There are no file formats available to write with!"
  609. msgstr "Aucun format de fichier n'est disponible pour écriture !"
  610. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  611. #, python-brace-format
  612. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  613. msgid "Saving to Removable Drive <filename>{0}</filename>"
  614. msgstr "Enregistrement sur le lecteur amovible <filename>{0}</filename>"
  615. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  616. msgctxt "@info:title"
  617. msgid "Saving"
  618. msgstr "Enregistrement"
  619. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
  620. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  621. #, python-brace-format
  622. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  623. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  624. msgstr "Impossible d'enregistrer <filename>{0}</filename> : <message>{1}</message>"
  625. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
  626. #, python-brace-format
  627. msgctxt "@info:status Don't translate the tag {device}!"
  628. msgid "Could not find a file name when trying to write to {device}."
  629. msgstr "Impossible de trouver un nom de fichier lors d'une tentative d'écriture sur {device}."
  630. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
  631. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  632. #, python-brace-format
  633. msgctxt "@info:status"
  634. msgid "Could not save to removable drive {0}: {1}"
  635. msgstr "Impossible d'enregistrer sur le lecteur {0}: {1}"
  636. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  637. #, python-brace-format
  638. msgctxt "@info:status"
  639. msgid "Saved to Removable Drive {0} as {1}"
  640. msgstr "Enregistré sur le lecteur amovible {0} sous {1}"
  641. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  642. msgctxt "@info:title"
  643. msgid "File Saved"
  644. msgstr "Fichier enregistré"
  645. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  646. msgctxt "@action:button"
  647. msgid "Eject"
  648. msgstr "Ejecter"
  649. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  650. #, python-brace-format
  651. msgctxt "@action"
  652. msgid "Eject removable device {0}"
  653. msgstr "Ejecter le lecteur amovible {0}"
  654. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  655. #, python-brace-format
  656. msgctxt "@info:status"
  657. msgid "Ejected {0}. You can now safely remove the drive."
  658. msgstr "Lecteur {0} éjecté. Vous pouvez maintenant le retirer en tout sécurité."
  659. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  660. msgctxt "@info:title"
  661. msgid "Safely Remove Hardware"
  662. msgstr "Retirez le lecteur en toute sécurité"
  663. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  664. #, python-brace-format
  665. msgctxt "@info:status"
  666. msgid "Failed to eject {0}. Another program may be using the drive."
  667. msgstr "Impossible d'éjecter {0}. Un autre programme utilise peut-être ce lecteur."
  668. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  669. msgctxt "@item:intext"
  670. msgid "Removable Drive"
  671. msgstr "Lecteur amovible"
  672. #: /mnt/projects/ultimaker/cura/Cura/plugins/AMFReader/__init__.py:15
  673. msgctxt "@item:inlistbox"
  674. msgid "AMF File"
  675. msgstr "Fichier AMF"
  676. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeProfileReader/__init__.py:14
  677. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:14
  678. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/__init__.py:16
  679. msgctxt "@item:inlistbox"
  680. msgid "G-code File"
  681. msgstr "Fichier GCode"
  682. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  683. msgctxt "@action"
  684. msgid "Update Firmware"
  685. msgstr "Mettre à jour le firmware"
  686. #: /mnt/projects/ultimaker/cura/Cura/plugins/X3DReader/__init__.py:13
  687. msgctxt "@item:inlistbox"
  688. msgid "X3D File"
  689. msgstr "Fichier X3D"
  690. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
  691. msgctxt "@button"
  692. msgid "Decline"
  693. msgstr "Refuser"
  694. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
  695. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  696. msgctxt "@button"
  697. msgid "Agree"
  698. msgstr "Accepter"
  699. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
  700. msgctxt "@title:window"
  701. msgid "Plugin License Agreement"
  702. msgstr "Plug-in d'accord de licence"
  703. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
  704. msgctxt "@button"
  705. msgid "Decline and remove from account"
  706. msgstr "Décliner et supprimer du compte"
  707. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
  708. msgctxt "@info:generic"
  709. msgid "{} plugins failed to download"
  710. msgstr "Échec de téléchargement des plugins {}"
  711. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
  712. msgctxt "@info:generic"
  713. msgid "Syncing..."
  714. msgstr "Synchronisation..."
  715. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
  716. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
  717. msgctxt "@info:title"
  718. msgid "Changes detected from your Ultimaker account"
  719. msgstr "Changements détectés à partir de votre compte Ultimaker"
  720. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
  721. msgctxt "@info:generic"
  722. msgid "You need to quit and restart {} before changes have effect."
  723. msgstr "Vous devez quitter et redémarrer {} avant que les changements apportés ne prennent effet."
  724. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
  725. msgctxt "@info:generic"
  726. msgid "Do you want to sync material and software packages with your account?"
  727. msgstr "Vous souhaitez synchroniser du matériel et des logiciels avec votre compte ?"
  728. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
  729. msgctxt "@action:button"
  730. msgid "Sync"
  731. msgstr "Synchroniser"
  732. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  733. msgctxt "@label"
  734. msgid "Per Model Settings"
  735. msgstr "Paramètres par modèle"
  736. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  737. msgctxt "@info:tooltip"
  738. msgid "Configure Per Model Settings"
  739. msgstr "Configurer les paramètres par modèle"
  740. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  741. msgctxt "@item:inmenu"
  742. msgid "Post Processing"
  743. msgstr "Post-traitement"
  744. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  745. msgctxt "@item:inmenu"
  746. msgid "Modify G-Code"
  747. msgstr "Modifier le G-Code"
  748. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
  749. msgctxt "@info:status"
  750. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  751. msgstr "Impossible de découper le matériau actuel, car celui-ci est incompatible avec la machine ou la configuration sélectionnée."
  752. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
  753. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413
  754. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
  755. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446
  756. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
  757. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
  758. msgctxt "@info:title"
  759. msgid "Unable to slice"
  760. msgstr "Impossible de découper"
  761. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
  762. #, python-brace-format
  763. msgctxt "@info:status"
  764. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  765. msgstr "Impossible de couper avec les paramètres actuels. Les paramètres suivants contiennent des erreurs : {0}"
  766. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
  767. #, python-brace-format
  768. msgctxt "@info:status"
  769. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  770. 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}"
  771. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
  772. msgctxt "@info:status"
  773. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  774. msgstr "Impossible de couper car la tour primaire ou la (les) position(s) d'amorçage ne sont pas valides."
  775. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
  776. #, python-format
  777. msgctxt "@info:status"
  778. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  779. msgstr "Impossible de couper car il existe des objets associés à l'extrudeuse désactivée %s."
  780. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
  781. msgctxt "@info:status"
  782. msgid ""
  783. "Please review settings and check if your models:\n"
  784. "- Fit within the build volume\n"
  785. "- Are assigned to an enabled extruder\n"
  786. "- Are not all set as modifier meshes"
  787. msgstr ""
  788. "Veuillez vérifier les paramètres et si vos modèles :\n"
  789. "- S'intègrent dans le volume de fabrication\n"
  790. "- Sont affectés à un extrudeur activé\n"
  791. "- N sont pas tous définis comme des mailles de modificateur"
  792. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  793. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  794. msgctxt "@info:status"
  795. msgid "Processing Layers"
  796. msgstr "Traitement des couches"
  797. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  798. msgctxt "@info:title"
  799. msgid "Information"
  800. msgstr "Informations"
  801. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  802. msgctxt "@item:inmenu"
  803. msgid "USB printing"
  804. msgstr "Impression par USB"
  805. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  806. msgctxt "@action:button Preceded by 'Ready to'."
  807. msgid "Print via USB"
  808. msgstr "Imprimer via USB"
  809. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  810. msgctxt "@info:tooltip"
  811. msgid "Print via USB"
  812. msgstr "Imprimer via USB"
  813. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  814. msgctxt "@info:status"
  815. msgid "Connected via USB"
  816. msgstr "Connecté via USB"
  817. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  818. msgctxt "@label"
  819. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  820. msgstr "Une impression USB est en cours, la fermeture de Cura arrêtera cette impression. Êtes-vous sûr ?"
  821. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  822. msgctxt "@message"
  823. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  824. 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."
  825. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  826. msgctxt "@message"
  827. msgid "Print in Progress"
  828. msgstr "Impression en cours"
  829. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileWriter/__init__.py:14
  830. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileReader/__init__.py:14
  831. msgctxt "@item:inlistbox"
  832. msgid "Cura Profile"
  833. msgstr "Profil Cura"
  834. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  835. msgctxt "@action"
  836. msgid "Connect via Network"
  837. msgstr "Connecter via le réseau"
  838. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
  839. msgctxt "info:status"
  840. msgid "New printer detected from your Ultimaker account"
  841. msgid_plural "New printers detected from your Ultimaker account"
  842. msgstr[0] "Nouvelle imprimante détectée à partir de votre compte Ultimaker"
  843. msgstr[1] "Nouvelles imprimantes détectées à partir de votre compte Ultimaker"
  844. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
  845. #, python-brace-format
  846. msgctxt "info:status Filled in with printer name and printer model."
  847. msgid "Adding printer {name} ({model}) from your account"
  848. msgstr "Ajout de l'imprimante {name} ({model}) à partir de votre compte"
  849. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
  850. #, python-brace-format
  851. msgctxt "info:{0} gets replaced by a number of printers"
  852. msgid "... and {0} other"
  853. msgid_plural "... and {0} others"
  854. msgstr[0] "... et {0} autre"
  855. msgstr[1] "... et {0} autres"
  856. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
  857. msgctxt "info:status"
  858. msgid "Printers added from Digital Factory:"
  859. msgstr "Imprimantes ajoutées à partir de Digital Factory :"
  860. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
  861. msgctxt "info:status"
  862. msgid "A cloud connection is not available for a printer"
  863. msgid_plural "A cloud connection is not available for some printers"
  864. msgstr[0] "Une connexion cloud n'est pas disponible pour une imprimante"
  865. msgstr[1] "Une connexion cloud n'est pas disponible pour certaines imprimantes"
  866. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
  867. msgctxt "info:status"
  868. msgid "This printer is not linked to the Digital Factory:"
  869. msgid_plural "These printers are not linked to the Digital Factory:"
  870. msgstr[0] "Cette imprimante n'est pas associée à Digital Factory :"
  871. msgstr[1] "Ces imprimantes ne sont pas associées à Digital Factory :"
  872. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
  873. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
  874. msgctxt "info:name"
  875. msgid "Ultimaker Digital Factory"
  876. msgstr "Ultimaker Digital Factory"
  877. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
  878. #, python-brace-format
  879. msgctxt "info:status"
  880. msgid "To establish a connection, please visit the {website_link}"
  881. msgstr "Pour établir une connexion, veuillez visiter le site {website_link}"
  882. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  883. msgctxt "@action:button"
  884. msgid "Keep printer configurations"
  885. msgstr "Conserver les configurations d'imprimante"
  886. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
  887. msgctxt "@action:button"
  888. msgid "Remove printers"
  889. msgstr "Supprimer des imprimantes"
  890. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
  891. #, python-brace-format
  892. msgctxt "@message {printer_name} is replaced with the name of the printer"
  893. msgid "{printer_name} will be removed until the next account sync."
  894. msgstr "L'imprimante {printer_name} sera supprimée jusqu'à la prochaine synchronisation de compte."
  895. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  896. #, python-brace-format
  897. msgctxt "@message {printer_name} is replaced with the name of the printer"
  898. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  899. msgstr "Pour supprimer {printer_name} définitivement, visitez le site {digital_factory_link}"
  900. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
  901. #, python-brace-format
  902. msgctxt "@message {printer_name} is replaced with the name of the printer"
  903. msgid "Are you sure you want to remove {printer_name} temporarily?"
  904. msgstr "Voulez-vous vraiment supprimer {printer_name} temporairement ?"
  905. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
  906. msgctxt "@title:window"
  907. msgid "Remove printers?"
  908. msgstr "Supprimer des imprimantes ?"
  909. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
  910. #, python-brace-format
  911. msgctxt "@label"
  912. msgid ""
  913. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  914. "Are you sure you want to continue?"
  915. msgid_plural ""
  916. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  917. "Are you sure you want to continue?"
  918. msgstr[0] ""
  919. "Vous êtes sur le point de supprimer {0} imprimante de Cura. Cette action est irréversible.\n"
  920. "Voulez-vous vraiment continuer ?"
  921. msgstr[1] ""
  922. "Vous êtes sur le point de supprimer {0} imprimantes de Cura. Cette action est irréversible.\n"
  923. "Voulez-vous vraiment continuer ?"
  924. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
  925. msgctxt "@label"
  926. msgid ""
  927. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  928. "Are you sure you want to continue?"
  929. msgstr ""
  930. "Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible.\n"
  931. "Voulez-vous vraiment continuer ?"
  932. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
  933. msgctxt "@action:button"
  934. msgid "Print via cloud"
  935. msgstr "Imprimer via le cloud"
  936. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
  937. msgctxt "@properties:tooltip"
  938. msgid "Print via cloud"
  939. msgstr "Imprimer via le cloud"
  940. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  941. msgctxt "@info:status"
  942. msgid "Connected via cloud"
  943. msgstr "Connecté via le cloud"
  944. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:264
  945. #, python-brace-format
  946. msgctxt "@error:send"
  947. msgid "Unknown error code when uploading print job: {0}"
  948. msgstr "Code d'erreur inconnu lors du téléchargement d'une tâche d'impression : {0}"
  949. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  950. msgctxt "@info:status"
  951. msgid "tomorrow"
  952. msgstr "demain"
  953. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  954. msgctxt "@info:status"
  955. msgid "today"
  956. msgstr "aujourd'hui"
  957. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  958. msgctxt "@info:status"
  959. msgid "Sending Print Job"
  960. msgstr "Lancement d'une tâche d'impression"
  961. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  962. msgctxt "@info:status"
  963. msgid "Uploading print job to printer."
  964. msgstr "Téléchargement de la tâche d'impression sur l'imprimante."
  965. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  966. #, python-brace-format
  967. msgctxt "@info:status"
  968. 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."
  969. 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."
  970. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  971. msgctxt "@info:title"
  972. msgid "Not a group host"
  973. msgstr "Pas un hôte de groupe"
  974. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
  975. msgctxt "@action"
  976. msgid "Configure group"
  977. msgstr "Configurer le groupe"
  978. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
  979. msgctxt "@info:status"
  980. msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  981. msgstr "Lancez et surveillez des impressions où que vous soyez avec votre compte Ultimaker."
  982. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
  983. msgctxt "@info:status Ultimaker Cloud should not be translated."
  984. msgid "Connect to Ultimaker Digital Factory"
  985. msgstr "Se connecter à Ultimaker Digital Factory"
  986. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
  987. msgctxt "@action"
  988. msgid "Get started"
  989. msgstr "Prise en main"
  990. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  991. msgctxt "@info:status"
  992. msgid "Please wait until the current job has been sent."
  993. msgstr "Veuillez patienter jusqu'à ce que la tâche en cours ait été envoyée."
  994. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  995. msgctxt "@info:title"
  996. msgid "Print error"
  997. msgstr "Erreur d'impression"
  998. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  999. msgctxt "@info:text"
  1000. msgid "Could not upload the data to the printer."
  1001. msgstr "Impossible de transférer les données à l'imprimante."
  1002. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  1003. msgctxt "@info:title"
  1004. msgid "Network error"
  1005. msgstr "Erreur de réseau"
  1006. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  1007. #, python-brace-format
  1008. msgctxt "@info:status"
  1009. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  1010. 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}."
  1011. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  1012. msgctxt "@info:title"
  1013. msgid "Sending materials to printer"
  1014. msgstr "Envoi de matériaux à l'imprimante"
  1015. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  1016. msgctxt "@info:status"
  1017. msgid "Print job queue is full. The printer can't accept a new job."
  1018. msgstr "La file d'attente pour les tâches d'impression est pleine. L'imprimante ne peut pas accepter une nouvelle tâche."
  1019. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  1020. msgctxt "@info:title"
  1021. msgid "Queue Full"
  1022. msgstr "La file d'attente est pleine"
  1023. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  1024. msgctxt "@info:status"
  1025. msgid "Print job was successfully sent to the printer."
  1026. msgstr "L'envoi de la tâche d'impression à l'imprimante a réussi."
  1027. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  1028. msgctxt "@info:title"
  1029. msgid "Data Sent"
  1030. msgstr "Données envoyées"
  1031. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  1032. msgctxt "@info:status"
  1033. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  1034. msgstr "Vous tentez de vous connecter à une imprimante qui n'exécute pas Ultimaker Connect. Veuillez mettre à jour l'imprimante avec le dernier micrologiciel."
  1035. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  1036. msgctxt "@info:title"
  1037. msgid "Update your printer"
  1038. msgstr "Mettre à jour votre imprimante"
  1039. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  1040. msgctxt "@action:button Preceded by 'Ready to'."
  1041. msgid "Print over network"
  1042. msgstr "Imprimer sur le réseau"
  1043. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  1044. msgctxt "@properties:tooltip"
  1045. msgid "Print over network"
  1046. msgstr "Imprimer sur le réseau"
  1047. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  1048. msgctxt "@info:status"
  1049. msgid "Connected over the network"
  1050. msgstr "Connecté sur le réseau"
  1051. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  1052. msgctxt "@action"
  1053. msgid "Select upgrades"
  1054. msgstr "Sélectionner les mises à niveau"
  1055. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  1056. msgctxt "@action"
  1057. msgid "Level build plate"
  1058. msgstr "Nivellement du plateau"
  1059. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  1060. msgctxt "@title:tab"
  1061. msgid "Recommended"
  1062. msgstr "Recommandé"
  1063. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  1064. msgctxt "@title:tab"
  1065. msgid "Custom"
  1066. msgstr "Personnalisé"
  1067. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:535
  1068. #, python-brace-format
  1069. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1070. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  1071. 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."
  1072. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:538
  1073. msgctxt "@info:title"
  1074. msgid "Open Project File"
  1075. msgstr "Ouvrir un fichier de projet"
  1076. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:634
  1077. #, python-brace-format
  1078. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1079. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  1080. msgstr "Le fichier de projet <filename>{0}</filename> est soudainement inaccessible : <message>{1}</message>."
  1081. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:635
  1082. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642
  1083. msgctxt "@info:title"
  1084. msgid "Can't Open Project File"
  1085. msgstr "Impossible d'ouvrir le fichier de projet"
  1086. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:641
  1087. #, python-brace-format
  1088. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1089. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  1090. msgstr "Le fichier de projet <filename>{0}</filename> est corrompu : <message>{1}</message>."
  1091. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:693
  1092. #, python-brace-format
  1093. msgctxt "@info:error Don't translate the XML tag <filename>!"
  1094. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  1095. msgstr "Le fichier de projet <filename>{0}</filename> a été réalisé en utilisant des profils inconnus de cette version d'Ultimaker Cura."
  1096. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:27
  1097. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:33
  1098. msgctxt "@item:inlistbox"
  1099. msgid "3MF File"
  1100. msgstr "Fichier 3MF"
  1101. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/__init__.py:17
  1102. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzReader/__init__.py:17
  1103. msgctxt "@item:inlistbox"
  1104. msgid "Compressed G-code File"
  1105. msgstr "Fichier G-Code compressé"
  1106. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1107. msgctxt "@error:not supported"
  1108. msgid "GCodeGzWriter does not support text mode."
  1109. msgstr "GCodeGzWriter ne prend pas en charge le mode texte."
  1110. #: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:31
  1111. msgctxt "@info:title"
  1112. msgid "3D Model Assistant"
  1113. msgstr "Assistant de modèle 3D"
  1114. #: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:96
  1115. #, python-brace-format
  1116. msgctxt "@info:status"
  1117. msgid ""
  1118. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  1119. "<p>{model_names}</p>\n"
  1120. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  1121. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  1122. msgstr ""
  1123. "<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"
  1124. "<p>{model_names}</p>\n"
  1125. "<p>Découvrez comment optimiser la qualité et la fiabilité de l'impression.</p>\n"
  1126. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Consultez le guide de qualité d'impression</a></p>"
  1127. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1128. msgctxt "@info"
  1129. msgid "Could not access update information."
  1130. msgstr "Impossible d'accéder aux informations de mise à jour."
  1131. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1132. #, python-brace-format
  1133. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1134. msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
  1135. msgstr "De nouvelles fonctionnalités ou des correctifs de bugs sont disponibles pour votre {machine_name} ! Si vous ne possédez pas la dernière version disponible, il est recommandé de mettre à jour le micrologiciel sur votre imprimante avec la version {latest_version}."
  1136. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1137. #, python-format
  1138. msgctxt "@info:title The %s gets replaced with the printer name."
  1139. msgid "New %s firmware available"
  1140. msgstr "Nouveau firmware %s disponible"
  1141. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1142. msgctxt "@action:button"
  1143. msgid "How to update"
  1144. msgstr "Comment effectuer la mise à jour"
  1145. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:18
  1146. msgctxt "@item:inlistbox"
  1147. msgid "G File"
  1148. msgstr "Fichier G"
  1149. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:347
  1150. msgctxt "@info:status"
  1151. msgid "Parsing G-code"
  1152. msgstr "Analyse du G-Code"
  1153. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:349
  1154. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:503
  1155. msgctxt "@info:title"
  1156. msgid "G-code Details"
  1157. msgstr "Détails G-Code"
  1158. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:501
  1159. msgctxt "@info:generic"
  1160. 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."
  1161. 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."
  1162. #: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:12
  1163. msgctxt "@label"
  1164. msgid "Support Blocker"
  1165. msgstr "Blocage des supports"
  1166. #: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:13
  1167. msgctxt "@info:tooltip"
  1168. msgid "Create a volume in which supports are not printed."
  1169. msgstr "Créer un volume dans lequel les supports ne sont pas imprimés."
  1170. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:15
  1171. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1172. msgid "Open Compressed Triangle Mesh"
  1173. msgstr "Ouvrir le maillage triangulaire compressé"
  1174. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:19
  1175. msgctxt "@item:inlistbox"
  1176. msgid "COLLADA Digital Asset Exchange"
  1177. msgstr "COLLADA Digital Asset Exchange"
  1178. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:23
  1179. msgctxt "@item:inlistbox"
  1180. msgid "glTF Binary"
  1181. msgstr "glTF binaire"
  1182. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:27
  1183. msgctxt "@item:inlistbox"
  1184. msgid "glTF Embedded JSON"
  1185. msgstr "JSON incorporé glTF"
  1186. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:36
  1187. msgctxt "@item:inlistbox"
  1188. msgid "Stanford Triangle Format"
  1189. msgstr "Format Triangle de Stanford"
  1190. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:40
  1191. msgctxt "@item:inlistbox"
  1192. msgid "Compressed COLLADA Digital Asset Exchange"
  1193. msgstr "COLLADA Digital Asset Exchange compressé"
  1194. #: /mnt/projects/ultimaker/cura/Cura/plugins/UFPReader/__init__.py:22
  1195. #: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/__init__.py:28
  1196. msgctxt "@item:inlistbox"
  1197. msgid "Ultimaker Format Package"
  1198. msgstr "Ultimaker Format Package"
  1199. #: /mnt/projects/ultimaker/cura/Cura/plugins/LegacyProfileReader/__init__.py:14
  1200. msgctxt "@item:inlistbox"
  1201. msgid "Cura 15.04 profiles"
  1202. msgstr "Profils Cura 15.04"
  1203. #: /mnt/projects/ultimaker/cura/Cura/plugins/PrepareStage/__init__.py:12
  1204. msgctxt "@item:inmenu"
  1205. msgid "Prepare"
  1206. msgstr "Préparer"
  1207. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/__init__.py:14
  1208. msgctxt "@item:inmenu"
  1209. msgid "Monitor"
  1210. msgstr "Surveiller"
  1211. #: /mnt/projects/ultimaker/cura/Cura/plugins/XRayView/__init__.py:12
  1212. msgctxt "@item:inlistbox"
  1213. msgid "X-Ray view"
  1214. msgstr "Visualisation par rayons X"
  1215. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
  1216. msgctxt "@error:zip"
  1217. msgid "Error writing 3mf file."
  1218. msgstr "Erreur d'écriture du fichier 3MF."
  1219. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:26
  1220. msgctxt "@item:inlistbox"
  1221. msgid "3MF file"
  1222. msgstr "Fichier 3MF"
  1223. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:34
  1224. msgctxt "@item:inlistbox"
  1225. msgid "Cura Project 3MF file"
  1226. msgstr "Projet Cura fichier 3MF"
  1227. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  1228. msgctxt "@error:zip"
  1229. msgid "3MF Writer plug-in is corrupt."
  1230. msgstr "Le plug-in 3MF Writer est corrompu."
  1231. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
  1232. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
  1233. msgctxt "@error:zip"
  1234. msgid "No permission to write the workspace here."
  1235. msgstr "Aucune autorisation d'écrire l'espace de travail ici."
  1236. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
  1237. msgctxt "@error:zip"
  1238. msgid "The operating system does not allow saving a project file to this location or with this file name."
  1239. msgstr "Le système d'exploitation ne permet pas d'enregistrer un fichier de projet à cet emplacement ou avec ce nom de fichier."
  1240. #: /mnt/projects/ultimaker/cura/Cura/plugins/PreviewStage/__init__.py:13
  1241. msgctxt "@item:inmenu"
  1242. msgid "Preview"
  1243. msgstr "Aperçu"
  1244. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/__init__.py:15
  1245. msgctxt "@item:inlistbox"
  1246. msgid "Layer view"
  1247. msgstr "Vue en couches"
  1248. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:124
  1249. msgctxt "@info:status"
  1250. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  1251. msgstr "Cura n'affiche pas les couches avec précision lorsque l'impression filaire est activée."
  1252. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:125
  1253. msgctxt "@info:title"
  1254. msgid "Simulation View"
  1255. msgstr "Vue simulation"
  1256. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
  1257. msgctxt "@info:status"
  1258. msgid "Nothing is shown because you need to slice first."
  1259. msgstr "Rien ne s'affiche car vous devez d'abord découper."
  1260. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
  1261. msgctxt "@info:title"
  1262. msgid "No layers to show"
  1263. msgstr "Pas de couches à afficher"
  1264. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:127
  1265. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:74
  1266. msgctxt "@info:option_text"
  1267. msgid "Do not show this message again"
  1268. msgstr "Ne plus afficher ce message"
  1269. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  1270. msgctxt "@action"
  1271. msgid "Machine Settings"
  1272. msgstr "Paramètres de la machine"
  1273. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/__init__.py:12
  1274. msgctxt "@item:inmenu"
  1275. msgid "Solid view"
  1276. msgstr "Vue solide"
  1277. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:71
  1278. msgctxt "@info:status"
  1279. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  1280. 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."
  1281. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:73
  1282. msgctxt "@info:title"
  1283. msgid "Model Errors"
  1284. msgstr "Erreurs du modèle"
  1285. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:79
  1286. msgctxt "@action:button"
  1287. msgid "Learn more"
  1288. msgstr "En savoir plus"
  1289. #: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/UFPWriter.py:134
  1290. msgctxt "@info:error"
  1291. msgid "Can't write to UFP file:"
  1292. msgstr "Impossible d'écrire dans le fichier UFP :"
  1293. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  1294. msgctxt "@error:not supported"
  1295. msgid "GCodeWriter does not support non-text mode."
  1296. msgstr "GCodeWriter ne prend pas en charge le mode non-texte."
  1297. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:80
  1298. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  1299. msgctxt "@warning:status"
  1300. msgid "Please prepare G-code before exporting."
  1301. msgstr "Veuillez préparer le G-Code avant d'exporter."
  1302. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:14
  1303. msgctxt "@item:inlistbox"
  1304. msgid "JPG Image"
  1305. msgstr "Image JPG"
  1306. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:18
  1307. msgctxt "@item:inlistbox"
  1308. msgid "JPEG Image"
  1309. msgstr "Image JPEG"
  1310. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:22
  1311. msgctxt "@item:inlistbox"
  1312. msgid "PNG Image"
  1313. msgstr "Image PNG"
  1314. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:26
  1315. msgctxt "@item:inlistbox"
  1316. msgid "BMP Image"
  1317. msgstr "Image BMP"
  1318. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:30
  1319. msgctxt "@item:inlistbox"
  1320. msgid "GIF Image"
  1321. msgstr "Image GIF"
  1322. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DriveApiService.py:86
  1323. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:23
  1324. msgctxt "@info:backup_status"
  1325. msgid "There was an error trying to restore your backup."
  1326. msgstr "Une erreur s’est produite lors de la tentative de restauration de votre sauvegarde."
  1327. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  1328. msgctxt "@info:title"
  1329. msgid "Backups"
  1330. msgstr "Sauvegardes"
  1331. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
  1332. msgctxt "@info:backup_status"
  1333. msgid "There was an error while uploading your backup."
  1334. msgstr "Une erreur s’est produite lors du téléchargement de votre sauvegarde."
  1335. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
  1336. msgctxt "@info:backup_status"
  1337. msgid "Creating your backup..."
  1338. msgstr "Création de votre sauvegarde..."
  1339. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
  1340. msgctxt "@info:backup_status"
  1341. msgid "There was an error while creating your backup."
  1342. msgstr "Une erreur s'est produite lors de la création de votre sauvegarde."
  1343. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
  1344. msgctxt "@info:backup_status"
  1345. msgid "Uploading your backup..."
  1346. msgstr "Téléchargement de votre sauvegarde..."
  1347. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
  1348. msgctxt "@info:backup_status"
  1349. msgid "Your backup has finished uploading."
  1350. msgstr "Le téléchargement de votre sauvegarde est terminé."
  1351. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
  1352. msgctxt "@error:file_size"
  1353. msgid "The backup exceeds the maximum file size."
  1354. msgstr "La sauvegarde dépasse la taille de fichier maximale."
  1355. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
  1356. msgctxt "@item:inmenu"
  1357. msgid "Manage backups"
  1358. msgstr "Gérer les sauvegardes"
  1359. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1360. msgctxt "@title"
  1361. msgid "Update Firmware"
  1362. msgstr "Mettre à jour le firmware"
  1363. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1364. msgctxt "@label"
  1365. 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."
  1366. 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."
  1367. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1368. msgctxt "@label"
  1369. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1370. 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."
  1371. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1372. msgctxt "@action:button"
  1373. msgid "Automatically upgrade Firmware"
  1374. msgstr "Mise à niveau automatique du firmware"
  1375. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1376. msgctxt "@action:button"
  1377. msgid "Upload custom Firmware"
  1378. msgstr "Charger le firmware personnalisé"
  1379. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1380. msgctxt "@label"
  1381. msgid "Firmware can not be updated because there is no connection with the printer."
  1382. msgstr "Impossible de se connecter à l'imprimante ; échec de la mise à jour du firmware."
  1383. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1384. msgctxt "@label"
  1385. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1386. msgstr "Échec de la mise à jour du firmware, car cette fonctionnalité n'est pas prise en charge par la connexion avec l'imprimante."
  1387. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1388. msgctxt "@title:window"
  1389. msgid "Select custom firmware"
  1390. msgstr "Sélectionner le firmware personnalisé"
  1391. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1392. msgctxt "@title:window"
  1393. msgid "Firmware Update"
  1394. msgstr "Mise à jour du firmware"
  1395. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1396. msgctxt "@label"
  1397. msgid "Updating firmware."
  1398. msgstr "Mise à jour du firmware en cours."
  1399. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1400. msgctxt "@label"
  1401. msgid "Firmware update completed."
  1402. msgstr "Mise à jour du firmware terminée."
  1403. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1404. msgctxt "@label"
  1405. msgid "Firmware update failed due to an unknown error."
  1406. msgstr "Échec de la mise à jour du firmware en raison d'une erreur inconnue."
  1407. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1408. msgctxt "@label"
  1409. msgid "Firmware update failed due to an communication error."
  1410. msgstr "Échec de la mise à jour du firmware en raison d'une erreur de communication."
  1411. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1412. msgctxt "@label"
  1413. msgid "Firmware update failed due to an input/output error."
  1414. msgstr "Échec de la mise à jour du firmware en raison d'une erreur d'entrée/de sortie."
  1415. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1416. msgctxt "@label"
  1417. msgid "Firmware update failed due to missing firmware."
  1418. msgstr "Échec de la mise à jour du firmware en raison du firmware manquant."
  1419. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
  1420. msgctxt "@title"
  1421. msgid "Marketplace"
  1422. msgstr "Marché en ligne"
  1423. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
  1424. msgctxt "@label"
  1425. msgid "You need to accept the license to install the package"
  1426. msgstr "Vous devez accepter la licence pour installer le package"
  1427. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
  1428. msgctxt "@title"
  1429. msgid "Changes from your account"
  1430. msgstr "Changements à partir de votre compte"
  1431. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  1432. msgctxt "@button"
  1433. msgid "Dismiss"
  1434. msgstr "Ignorer"
  1435. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  1436. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  1437. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:182
  1438. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  1439. msgctxt "@button"
  1440. msgid "Next"
  1441. msgstr "Suivant"
  1442. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
  1443. msgctxt "@label"
  1444. msgid "The following packages will be added:"
  1445. msgstr "Les packages suivants seront ajoutés :"
  1446. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
  1447. msgctxt "@label"
  1448. msgid "The following packages can not be installed because of an incompatible Cura version:"
  1449. msgstr "Les packages suivants ne peuvent pas être installés en raison d'une version incompatible de Cura :"
  1450. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
  1451. msgctxt "@title:window"
  1452. msgid "Confirm uninstall"
  1453. msgstr "Confirmer la désinstallation"
  1454. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
  1455. msgctxt "@text:window"
  1456. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  1457. msgstr "Vous désinstallez des matériaux et/ou des profils qui sont encore en cours d'utilisation. La confirmation réinitialisera les matériaux / profils suivants à leurs valeurs par défaut."
  1458. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
  1459. msgctxt "@text:window"
  1460. msgid "Materials"
  1461. msgstr "Matériaux"
  1462. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
  1463. msgctxt "@text:window"
  1464. msgid "Profiles"
  1465. msgstr "Profils"
  1466. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
  1467. msgctxt "@action:button"
  1468. msgid "Confirm"
  1469. msgstr "Confirmer"
  1470. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
  1471. msgctxt "@info"
  1472. msgid "Could not connect to the Cura Package database. Please check your connection."
  1473. msgstr "Impossible de se connecter à la base de données Cura Package. Veuillez vérifier votre connexion."
  1474. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  1475. msgctxt "@label"
  1476. msgid "Community Contributions"
  1477. msgstr "Contributions de la communauté"
  1478. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  1479. msgctxt "@label"
  1480. msgid "Community Plugins"
  1481. msgstr "Plug-ins de la communauté"
  1482. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
  1483. msgctxt "@label"
  1484. msgid "Generic Materials"
  1485. msgstr "Matériaux génériques"
  1486. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
  1487. msgctxt "@label"
  1488. msgid "Version"
  1489. msgstr "Version"
  1490. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
  1491. msgctxt "@label"
  1492. msgid "Last updated"
  1493. msgstr "Dernière mise à jour"
  1494. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
  1495. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  1496. msgctxt "@label"
  1497. msgid "Brand"
  1498. msgstr "Marque"
  1499. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
  1500. msgctxt "@label"
  1501. msgid "Downloads"
  1502. msgstr "Téléchargements"
  1503. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
  1504. msgctxt "@title:tab"
  1505. msgid "Installed plugins"
  1506. msgstr "Plug-ins installés"
  1507. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
  1508. msgctxt "@info"
  1509. msgid "No plugin has been installed."
  1510. msgstr "Aucun plug-in n'a été installé."
  1511. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
  1512. msgctxt "@title:tab"
  1513. msgid "Installed materials"
  1514. msgstr "Matériaux installés"
  1515. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
  1516. msgctxt "@info"
  1517. msgid "No material has been installed."
  1518. msgstr "Aucun matériau n'a été installé."
  1519. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
  1520. msgctxt "@title:tab"
  1521. msgid "Bundled plugins"
  1522. msgstr "Plug-ins groupés"
  1523. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
  1524. msgctxt "@title:tab"
  1525. msgid "Bundled materials"
  1526. msgstr "Matériaux groupés"
  1527. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
  1528. msgctxt "@label"
  1529. msgid "Website"
  1530. msgstr "Site Internet"
  1531. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
  1532. msgctxt "@label"
  1533. msgid "Email"
  1534. msgstr "E-mail"
  1535. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
  1536. msgctxt "@description"
  1537. msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  1538. msgstr "Veuillez vous connecter pour obtenir les plug-ins et matériaux vérifiés pour Ultimaker Cura Enterprise"
  1539. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
  1540. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
  1541. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:199
  1542. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:53
  1543. msgctxt "@button"
  1544. msgid "Sign in"
  1545. msgstr "Se connecter"
  1546. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
  1547. msgctxt "@info"
  1548. msgid "Fetching packages..."
  1549. msgstr "Récupération des paquets..."
  1550. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
  1551. msgctxt "@label"
  1552. msgid "Compatibility"
  1553. msgstr "Compatibilité"
  1554. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
  1555. msgctxt "@label:table_header"
  1556. msgid "Machine"
  1557. msgstr "Machine"
  1558. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
  1559. msgctxt "@label:table_header"
  1560. msgid "Build Plate"
  1561. msgstr "Plateau"
  1562. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
  1563. msgctxt "@label:table_header"
  1564. msgid "Support"
  1565. msgstr "Support"
  1566. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
  1567. msgctxt "@label:table_header"
  1568. msgid "Quality"
  1569. msgstr "Qualité"
  1570. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
  1571. msgctxt "@action:label"
  1572. msgid "Technical Data Sheet"
  1573. msgstr "Fiche technique"
  1574. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
  1575. msgctxt "@action:label"
  1576. msgid "Safety Data Sheet"
  1577. msgstr "Fiche de sécurité"
  1578. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
  1579. msgctxt "@action:label"
  1580. msgid "Printing Guidelines"
  1581. msgstr "Directives d'impression"
  1582. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
  1583. msgctxt "@action:label"
  1584. msgid "Website"
  1585. msgstr "Site Internet"
  1586. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
  1587. msgctxt "@title:tab"
  1588. msgid "Plugins"
  1589. msgstr "Plug-ins"
  1590. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
  1591. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
  1592. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:457
  1593. msgctxt "@title:tab"
  1594. msgid "Materials"
  1595. msgstr "Matériaux"
  1596. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
  1597. msgctxt "@title:tab"
  1598. msgid "Installed"
  1599. msgstr "Installé"
  1600. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
  1601. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
  1602. msgctxt "@info:tooltip"
  1603. msgid "Go to Web Marketplace"
  1604. msgstr "Aller sur le Marché en ligne"
  1605. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
  1606. msgctxt "@label"
  1607. msgid "Will install upon restarting"
  1608. msgstr "S'installera au redémarrage"
  1609. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
  1610. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
  1611. msgctxt "@action:button"
  1612. msgid "Update"
  1613. msgstr "Mise à jour"
  1614. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
  1615. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
  1616. msgctxt "@action:button"
  1617. msgid "Updating"
  1618. msgstr "Mise à jour"
  1619. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
  1620. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
  1621. msgctxt "@action:button"
  1622. msgid "Updated"
  1623. msgstr "Mis à jour"
  1624. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
  1625. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1626. msgid "<a href='%1'>Log in</a> is required to update"
  1627. msgstr "<a href='%1'>Connexion</a> nécessaire pour effectuer la mise à jour"
  1628. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  1629. msgctxt "@action:button"
  1630. msgid "Downgrade"
  1631. msgstr "Revenir à une version précédente"
  1632. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  1633. msgctxt "@action:button"
  1634. msgid "Uninstall"
  1635. msgstr "Désinstaller"
  1636. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
  1637. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
  1638. msgctxt "@action:button"
  1639. msgid "Installed"
  1640. msgstr "Installé"
  1641. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
  1642. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1643. msgid "<a href='%1'>Log in</a> is required to install or update"
  1644. msgstr "<a href='%1'>Connexion</a> nécessaire pour l'installation ou la mise à jour"
  1645. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
  1646. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1647. msgid "<a href='%1'>Buy material spools</a>"
  1648. msgstr "<a href='%1'>Acheter des bobines de matériau</a>"
  1649. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
  1650. msgctxt "@label"
  1651. msgid "Premium"
  1652. msgstr "Premium"
  1653. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
  1654. msgctxt "@label"
  1655. msgid "Search materials"
  1656. msgstr "Rechercher des matériaux"
  1657. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
  1658. msgctxt "@info"
  1659. msgid "You will need to restart Cura before changes in packages have effect."
  1660. msgstr "Vous devez redémarrer Cura pour que les changements apportés aux paquets ne prennent effet."
  1661. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
  1662. msgctxt "@info:button, %1 is the application name"
  1663. msgid "Quit %1"
  1664. msgstr "Quitter %1"
  1665. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
  1666. msgctxt "@action:button"
  1667. msgid "Back"
  1668. msgstr "Précédent"
  1669. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
  1670. msgctxt "@action:button"
  1671. msgid "Install"
  1672. msgstr "Installer"
  1673. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
  1674. msgctxt "@label"
  1675. msgid "Mesh Type"
  1676. msgstr "Type de maille"
  1677. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
  1678. msgctxt "@label"
  1679. msgid "Normal model"
  1680. msgstr "Modèle normal"
  1681. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
  1682. msgctxt "@label"
  1683. msgid "Print as support"
  1684. msgstr "Imprimer comme support"
  1685. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
  1686. msgctxt "@label"
  1687. msgid "Modify settings for overlaps"
  1688. msgstr "Modifier les paramètres de chevauchement"
  1689. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
  1690. msgctxt "@label"
  1691. msgid "Don't support overlaps"
  1692. msgstr "Ne prend pas en charge le chevauchement"
  1693. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
  1694. msgctxt "@item:inlistbox"
  1695. msgid "Infill mesh only"
  1696. msgstr "Maille de remplissage uniquement"
  1697. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
  1698. msgctxt "@item:inlistbox"
  1699. msgid "Cutting mesh"
  1700. msgstr "Maille de coupe"
  1701. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
  1702. msgctxt "@action:button"
  1703. msgid "Select settings"
  1704. msgstr "Sélectionner les paramètres"
  1705. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  1706. msgctxt "@title:window"
  1707. msgid "Select Settings to Customize for this model"
  1708. msgstr "Sélectionner les paramètres pour personnaliser ce modèle"
  1709. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
  1710. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
  1711. msgctxt "@label:textbox"
  1712. msgid "Filter..."
  1713. msgstr "Filtrer..."
  1714. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
  1715. msgctxt "@label:checkbox"
  1716. msgid "Show all"
  1717. msgstr "Afficher tout"
  1718. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
  1719. msgctxt "@title:window"
  1720. msgid "Post Processing Plugin"
  1721. msgstr "Plug-in de post-traitement"
  1722. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1723. msgctxt "@label"
  1724. msgid "Post Processing Scripts"
  1725. msgstr "Scripts de post-traitement"
  1726. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
  1727. msgctxt "@action"
  1728. msgid "Add a script"
  1729. msgstr "Ajouter un script"
  1730. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
  1731. msgctxt "@label"
  1732. msgid "Settings"
  1733. msgstr "Paramètres"
  1734. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:499
  1735. msgctxt "@info:tooltip"
  1736. msgid "Change active post-processing scripts."
  1737. msgstr "Modifiez les scripts de post-traitement actifs."
  1738. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:503
  1739. msgctxt "@info:tooltip"
  1740. msgid "The following script is active:"
  1741. msgid_plural "The following scripts are active:"
  1742. msgstr[0] "Le script suivant est actif :"
  1743. msgstr[1] "Les scripts suivants sont actifs :"
  1744. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  1745. msgctxt "@label"
  1746. msgid "Queued"
  1747. msgstr "Mis en file d'attente"
  1748. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
  1749. msgctxt "@label link to connect manager"
  1750. msgid "Manage in browser"
  1751. msgstr "Gérer dans le navigateur"
  1752. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  1753. msgctxt "@label"
  1754. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  1755. 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."
  1756. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
  1757. msgctxt "@label"
  1758. msgid "Print jobs"
  1759. msgstr "Tâches d'impression"
  1760. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
  1761. msgctxt "@label"
  1762. msgid "Total print time"
  1763. msgstr "Temps total d'impression"
  1764. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
  1765. msgctxt "@label"
  1766. msgid "Waiting for"
  1767. msgstr "Attente de"
  1768. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1769. msgctxt "@title:window"
  1770. msgid "Configuration Changes"
  1771. msgstr "Modifications de configuration"
  1772. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  1773. msgctxt "@action:button"
  1774. msgid "Override"
  1775. msgstr "Remplacer"
  1776. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  1777. msgctxt "@label"
  1778. msgid "The assigned printer, %1, requires the following configuration change:"
  1779. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  1780. msgstr[0] "L'imprimante assignée, %1, nécessite la modification de configuration suivante :"
  1781. msgstr[1] "L'imprimante assignée, %1, nécessite les modifications de configuration suivantes :"
  1782. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  1783. msgctxt "@label"
  1784. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  1785. msgstr "L'imprimante %1 est assignée, mais le projet contient une configuration matérielle inconnue."
  1786. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  1787. msgctxt "@label"
  1788. msgid "Change material %1 from %2 to %3."
  1789. msgstr "Changer le matériau %1 de %2 à %3."
  1790. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  1791. msgctxt "@label"
  1792. msgid "Load %3 as material %1 (This cannot be overridden)."
  1793. msgstr "Charger %3 comme matériau %1 (Ceci ne peut pas être remplacé)."
  1794. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  1795. msgctxt "@label"
  1796. msgid "Change print core %1 from %2 to %3."
  1797. msgstr "Changer le print core %1 de %2 à %3."
  1798. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  1799. msgctxt "@label"
  1800. msgid "Change build plate to %1 (This cannot be overridden)."
  1801. msgstr "Changer le plateau en %1 (Ceci ne peut pas être remplacé)."
  1802. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  1803. msgctxt "@label"
  1804. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  1805. 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."
  1806. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
  1807. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
  1808. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
  1809. msgctxt "@label"
  1810. msgid "Glass"
  1811. msgstr "Verre"
  1812. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  1813. msgctxt "@label"
  1814. msgid "Aluminum"
  1815. msgstr "Aluminium"
  1816. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
  1817. msgctxt "@label"
  1818. msgid "Unavailable printer"
  1819. msgstr "Imprimante indisponible"
  1820. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
  1821. msgctxt "@label"
  1822. msgid "First available"
  1823. msgstr "Premier disponible"
  1824. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
  1825. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
  1826. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
  1827. msgctxt "@info"
  1828. msgid "Please update your printer's firmware to manage the queue remotely."
  1829. msgstr "Veuillez mettre à jour le Firmware de votre imprimante pour gérer la file d'attente à distance."
  1830. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  1831. msgctxt "@title:window"
  1832. msgid "Connect to Networked Printer"
  1833. msgstr "Connecter à l'imprimante en réseau"
  1834. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  1835. msgctxt "@label"
  1836. 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."
  1837. 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."
  1838. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  1839. msgctxt "@label"
  1840. msgid "Select your printer from the list below:"
  1841. msgstr "Sélectionnez votre imprimante dans la liste ci-dessous :"
  1842. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  1843. msgctxt "@action:button"
  1844. msgid "Edit"
  1845. msgstr "Modifier"
  1846. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
  1847. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
  1848. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:55
  1849. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:138
  1850. msgctxt "@action:button"
  1851. msgid "Remove"
  1852. msgstr "Supprimer"
  1853. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  1854. msgctxt "@action:button"
  1855. msgid "Refresh"
  1856. msgstr "Rafraîchir"
  1857. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  1858. msgctxt "@label"
  1859. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1860. 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>"
  1861. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
  1862. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  1863. msgctxt "@label"
  1864. msgid "Type"
  1865. msgstr "Type"
  1866. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
  1867. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  1868. msgctxt "@label"
  1869. msgid "Firmware version"
  1870. msgstr "Version du firmware"
  1871. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
  1872. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  1873. msgctxt "@label"
  1874. msgid "Address"
  1875. msgstr "Adresse"
  1876. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  1877. msgctxt "@label"
  1878. msgid "This printer is not set up to host a group of printers."
  1879. msgstr "Cette imprimante n'est pas configurée pour héberger un groupe d'imprimantes."
  1880. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  1881. msgctxt "@label"
  1882. msgid "This printer is the host for a group of %1 printers."
  1883. msgstr "Cette imprimante est l'hôte d'un groupe d'imprimantes %1."
  1884. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  1885. msgctxt "@label"
  1886. msgid "The printer at this address has not yet responded."
  1887. msgstr "L'imprimante à cette adresse n'a pas encore répondu."
  1888. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  1889. msgctxt "@action:button"
  1890. msgid "Connect"
  1891. msgstr "Connecter"
  1892. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  1893. msgctxt "@title:window"
  1894. msgid "Invalid IP address"
  1895. msgstr "Adresse IP non valide"
  1896. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  1897. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  1898. msgctxt "@text"
  1899. msgid "Please enter a valid IP address."
  1900. msgstr "Veuillez saisir une adresse IP valide."
  1901. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  1902. msgctxt "@title:window"
  1903. msgid "Printer Address"
  1904. msgstr "Adresse de l'imprimante"
  1905. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
  1906. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  1907. msgctxt "@label"
  1908. msgid "Enter the IP address of your printer on the network."
  1909. msgstr "Saisissez l'adresse IP de votre imprimante sur le réseau."
  1910. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
  1911. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
  1912. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:227
  1913. msgctxt "@action:button"
  1914. msgid "OK"
  1915. msgstr "OK"
  1916. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
  1917. msgctxt "@title:window"
  1918. msgid "Print over network"
  1919. msgstr "Imprimer sur le réseau"
  1920. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
  1921. msgctxt "@action:button"
  1922. msgid "Print"
  1923. msgstr "Imprimer"
  1924. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
  1925. msgctxt "@label"
  1926. msgid "Printer selection"
  1927. msgstr "Sélection d'imprimantes"
  1928. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  1929. msgctxt "@label"
  1930. msgid "Move to top"
  1931. msgstr "Déplacer l'impression en haut"
  1932. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  1933. msgctxt "@label"
  1934. msgid "Delete"
  1935. msgstr "Effacer"
  1936. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  1937. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:290
  1938. msgctxt "@label"
  1939. msgid "Resume"
  1940. msgstr "Reprendre"
  1941. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  1942. msgctxt "@label"
  1943. msgid "Pausing..."
  1944. msgstr "Mise en pause..."
  1945. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  1946. msgctxt "@label"
  1947. msgid "Resuming..."
  1948. msgstr "Reprise..."
  1949. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  1950. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:285
  1951. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:294
  1952. msgctxt "@label"
  1953. msgid "Pause"
  1954. msgstr "Pause"
  1955. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1956. msgctxt "@label"
  1957. msgid "Aborting..."
  1958. msgstr "Abandon..."
  1959. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1960. msgctxt "@label"
  1961. msgid "Abort"
  1962. msgstr "Abandonner"
  1963. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  1964. msgctxt "@label %1 is the name of a print job."
  1965. msgid "Are you sure you want to move %1 to the top of the queue?"
  1966. msgstr "Êtes-vous sûr de vouloir déplacer %1 en haut de la file d'attente ?"
  1967. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  1968. msgctxt "@window:title"
  1969. msgid "Move print job to top"
  1970. msgstr "Déplacer l'impression en haut de la file d'attente"
  1971. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  1972. msgctxt "@label %1 is the name of a print job."
  1973. msgid "Are you sure you want to delete %1?"
  1974. msgstr "Êtes-vous sûr de vouloir supprimer %1 ?"
  1975. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  1976. msgctxt "@window:title"
  1977. msgid "Delete print job"
  1978. msgstr "Supprimer l'impression"
  1979. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  1980. msgctxt "@label %1 is the name of a print job."
  1981. msgid "Are you sure you want to abort %1?"
  1982. msgstr "Êtes-vous sûr de vouloir annuler %1 ?"
  1983. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
  1984. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:336
  1985. msgctxt "@window:title"
  1986. msgid "Abort print"
  1987. msgstr "Abandonner l'impression"
  1988. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  1989. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  1990. msgctxt "@label:status"
  1991. msgid "Aborted"
  1992. msgstr "Abandonné"
  1993. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  1994. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  1995. msgctxt "@label:status"
  1996. msgid "Finished"
  1997. msgstr "Terminé"
  1998. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  1999. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2000. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
  2001. msgctxt "@label:status"
  2002. msgid "Preparing..."
  2003. msgstr "Préparation..."
  2004. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2005. msgctxt "@label:status"
  2006. msgid "Aborting..."
  2007. msgstr "Abandon..."
  2008. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2009. msgctxt "@label:status"
  2010. msgid "Pausing..."
  2011. msgstr "Mise en pause..."
  2012. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2013. msgctxt "@label:status"
  2014. msgid "Paused"
  2015. msgstr "En pause"
  2016. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2017. msgctxt "@label:status"
  2018. msgid "Resuming..."
  2019. msgstr "Reprise..."
  2020. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2021. msgctxt "@label:status"
  2022. msgid "Action required"
  2023. msgstr "Action requise"
  2024. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2025. msgctxt "@label:status"
  2026. msgid "Finishes %1 at %2"
  2027. msgstr "Finit %1 à %2"
  2028. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
  2029. msgctxt "@label link to Connect and Cloud interfaces"
  2030. msgid "Manage printer"
  2031. msgstr "Gérer l'imprimante"
  2032. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2033. msgctxt "@label:status"
  2034. msgid "Loading..."
  2035. msgstr "Chargement..."
  2036. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2037. msgctxt "@label:status"
  2038. msgid "Unavailable"
  2039. msgstr "Indisponible"
  2040. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2041. msgctxt "@label:status"
  2042. msgid "Unreachable"
  2043. msgstr "Injoignable"
  2044. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  2045. msgctxt "@label:status"
  2046. msgid "Idle"
  2047. msgstr "Inactif"
  2048. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
  2049. msgctxt "@label:status"
  2050. msgid "Printing"
  2051. msgstr "Impression"
  2052. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
  2053. msgctxt "@label"
  2054. msgid "Untitled"
  2055. msgstr "Sans titre"
  2056. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
  2057. msgctxt "@label"
  2058. msgid "Anonymous"
  2059. msgstr "Anonyme"
  2060. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
  2061. msgctxt "@label:status"
  2062. msgid "Requires configuration changes"
  2063. msgstr "Nécessite des modifications de configuration"
  2064. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
  2065. msgctxt "@action:button"
  2066. msgid "Details"
  2067. msgstr "Détails"
  2068. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2069. msgctxt "@label"
  2070. msgid "Please select any upgrades made to this Ultimaker Original"
  2071. msgstr "Sélectionnez les mises à niveau disponibles pour cet Ultimaker Original"
  2072. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2073. msgctxt "@label"
  2074. msgid "Heated Build Plate (official kit or self-built)"
  2075. msgstr "Plateau chauffant (kit officiel ou fabriqué soi-même)"
  2076. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2077. msgctxt "@title"
  2078. msgid "Build Plate Leveling"
  2079. msgstr "Nivellement du plateau"
  2080. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2081. msgctxt "@label"
  2082. 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."
  2083. 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."
  2084. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2085. msgctxt "@label"
  2086. 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."
  2087. 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."
  2088. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2089. msgctxt "@action:button"
  2090. msgid "Start Build Plate Leveling"
  2091. msgstr "Démarrer le nivellement du plateau"
  2092. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2093. msgctxt "@action:button"
  2094. msgid "Move to Next Position"
  2095. msgstr "Aller à la position suivante"
  2096. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  2097. msgctxt "@title:window"
  2098. msgid "Open Project"
  2099. msgstr "Ouvrir un projet"
  2100. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
  2101. msgctxt "@action:ComboBox Update/override existing profile"
  2102. msgid "Update existing"
  2103. msgstr "Mettre à jour l'existant"
  2104. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
  2105. msgctxt "@action:ComboBox Save settings in a new profile"
  2106. msgid "Create new"
  2107. msgstr "Créer"
  2108. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:75
  2109. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
  2110. msgctxt "@action:title"
  2111. msgid "Summary - Cura Project"
  2112. msgstr "Résumé - Projet Cura"
  2113. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:97
  2114. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
  2115. msgctxt "@action:label"
  2116. msgid "Printer settings"
  2117. msgstr "Paramètres de l'imprimante"
  2118. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
  2119. msgctxt "@info:tooltip"
  2120. msgid "How should the conflict in the machine be resolved?"
  2121. msgstr "Comment le conflit de la machine doit-il être résolu ?"
  2122. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
  2123. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
  2124. msgctxt "@action:label"
  2125. msgid "Type"
  2126. msgstr "Type"
  2127. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:183
  2128. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  2129. msgctxt "@action:label"
  2130. msgid "Printer Group"
  2131. msgstr "Groupe d'imprimantes"
  2132. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:205
  2133. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
  2134. msgctxt "@action:label"
  2135. msgid "Profile settings"
  2136. msgstr "Paramètres de profil"
  2137. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
  2138. msgctxt "@info:tooltip"
  2139. msgid "How should the conflict in the profile be resolved?"
  2140. msgstr "Comment le conflit du profil doit-il être résolu ?"
  2141. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
  2142. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:353
  2143. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  2144. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
  2145. msgctxt "@action:label"
  2146. msgid "Name"
  2147. msgstr "Nom"
  2148. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:258
  2149. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
  2150. msgctxt "@action:label"
  2151. msgid "Intent"
  2152. msgstr "Intent"
  2153. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:274
  2154. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
  2155. msgctxt "@action:label"
  2156. msgid "Not in profile"
  2157. msgstr "Absent du profil"
  2158. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:279
  2159. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
  2160. msgctxt "@action:label"
  2161. msgid "%1 override"
  2162. msgid_plural "%1 overrides"
  2163. msgstr[0] "%1 écrasent"
  2164. msgstr[1] "%1 écrase"
  2165. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
  2166. msgctxt "@action:label"
  2167. msgid "Derivative from"
  2168. msgstr "Dérivé de"
  2169. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
  2170. msgctxt "@action:label"
  2171. msgid "%1, %2 override"
  2172. msgid_plural "%1, %2 overrides"
  2173. msgstr[0] "%1, %2 écrasent"
  2174. msgstr[1] "%1, %2 écrase"
  2175. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
  2176. msgctxt "@action:label"
  2177. msgid "Material settings"
  2178. msgstr "Paramètres du matériau"
  2179. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
  2180. msgctxt "@info:tooltip"
  2181. msgid "How should the conflict in the material be resolved?"
  2182. msgstr "Comment le conflit du matériau doit-il être résolu ?"
  2183. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
  2184. msgctxt "@action:label"
  2185. msgid "Setting visibility"
  2186. msgstr "Visibilité des paramètres"
  2187. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
  2188. msgctxt "@action:label"
  2189. msgid "Mode"
  2190. msgstr "Mode"
  2191. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
  2192. msgctxt "@action:label"
  2193. msgid "Visible settings:"
  2194. msgstr "Paramètres visibles :"
  2195. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
  2196. msgctxt "@action:label"
  2197. msgid "%1 out of %2"
  2198. msgstr "%1 sur %2"
  2199. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
  2200. msgctxt "@action:warning"
  2201. msgid "Loading a project will clear all models on the build plate."
  2202. msgstr "Le chargement d'un projet effacera tous les modèles sur le plateau."
  2203. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
  2204. msgctxt "@action:button"
  2205. msgid "Open"
  2206. msgstr "Ouvrir"
  2207. #: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.qml:22
  2208. msgctxt "@info:tooltip"
  2209. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  2210. msgstr "Certains éléments pourraient causer des problèmes à cette impression. Cliquez pour voir les conseils d'ajustement."
  2211. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:100
  2212. msgctxt "@info"
  2213. msgid ""
  2214. "Please make sure your printer has a connection:\n"
  2215. "- Check if the printer is turned on.\n"
  2216. "- Check if the printer is connected to the network.\n"
  2217. "- Check if you are signed in to discover cloud-connected printers."
  2218. msgstr ""
  2219. "Assurez-vous que votre imprimante est connectée :\n"
  2220. "- Vérifiez si l'imprimante est sous tension.\n"
  2221. "- Vérifiez si l'imprimante est connectée au réseau.- Vérifiez si vous êtes connecté pour découvrir les imprimantes connectées au cloud."
  2222. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:117
  2223. msgctxt "@info"
  2224. msgid "Please connect your printer to the network."
  2225. msgstr "Veuillez connecter votre imprimante au réseau."
  2226. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:155
  2227. msgctxt "@label link to technical assistance"
  2228. msgid "View user manuals online"
  2229. msgstr "Voir les manuels d'utilisation en ligne"
  2230. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  2231. msgctxt "@title:window"
  2232. msgid "More information on anonymous data collection"
  2233. msgstr "Plus d'informations sur la collecte de données anonymes"
  2234. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  2235. msgctxt "@text:window"
  2236. 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:"
  2237. 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 :"
  2238. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  2239. msgctxt "@text:window"
  2240. msgid "I don't want to send anonymous data"
  2241. msgstr "Je ne veux pas envoyer de données anonymes"
  2242. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  2243. msgctxt "@text:window"
  2244. msgid "Allow sending anonymous data"
  2245. msgstr "Autoriser l'envoi de données anonymes"
  2246. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
  2247. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  2248. msgctxt "@label"
  2249. msgid "Color scheme"
  2250. msgstr "Modèle de couleurs"
  2251. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
  2252. msgctxt "@label:listbox"
  2253. msgid "Material Color"
  2254. msgstr "Couleur du matériau"
  2255. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
  2256. msgctxt "@label:listbox"
  2257. msgid "Line Type"
  2258. msgstr "Type de ligne"
  2259. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
  2260. msgctxt "@label:listbox"
  2261. msgid "Speed"
  2262. msgstr "Vitesse"
  2263. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
  2264. msgctxt "@label:listbox"
  2265. msgid "Layer Thickness"
  2266. msgstr "Épaisseur de la couche"
  2267. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
  2268. msgctxt "@label:listbox"
  2269. msgid "Line Width"
  2270. msgstr "Largeur de ligne"
  2271. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:163
  2272. msgctxt "@label"
  2273. msgid "Compatibility Mode"
  2274. msgstr "Mode de compatibilité"
  2275. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2276. msgctxt "@label"
  2277. msgid "Travels"
  2278. msgstr "Déplacements"
  2279. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2280. msgctxt "@label"
  2281. msgid "Helpers"
  2282. msgstr "Aides"
  2283. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249
  2284. msgctxt "@label"
  2285. msgid "Shell"
  2286. msgstr "Coque"
  2287. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:255
  2288. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  2289. msgctxt "@label"
  2290. msgid "Infill"
  2291. msgstr "Remplissage"
  2292. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
  2293. msgctxt "@label"
  2294. msgid "Starts"
  2295. msgstr "Démarre"
  2296. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:314
  2297. msgctxt "@label"
  2298. msgid "Only Show Top Layers"
  2299. msgstr "Afficher uniquement les couches supérieures"
  2300. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:324
  2301. msgctxt "@label"
  2302. msgid "Show 5 Detailed Layers On Top"
  2303. msgstr "Afficher 5 niveaux détaillés en haut"
  2304. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:338
  2305. msgctxt "@label"
  2306. msgid "Top / Bottom"
  2307. msgstr "Haut / bas"
  2308. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:342
  2309. msgctxt "@label"
  2310. msgid "Inner Wall"
  2311. msgstr "Paroi interne"
  2312. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:405
  2313. msgctxt "@label"
  2314. msgid "min"
  2315. msgstr "min."
  2316. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:464
  2317. msgctxt "@label"
  2318. msgid "max"
  2319. msgstr "max."
  2320. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  2321. msgctxt "@title:label"
  2322. msgid "Nozzle Settings"
  2323. msgstr "Paramètres de la buse"
  2324. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  2325. msgctxt "@label"
  2326. msgid "Nozzle size"
  2327. msgstr "Taille de la buse"
  2328. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  2329. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  2330. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  2331. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  2332. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  2333. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  2334. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
  2335. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
  2336. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  2337. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
  2338. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  2339. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  2340. msgctxt "@label"
  2341. msgid "mm"
  2342. msgstr "mm"
  2343. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  2344. msgctxt "@label"
  2345. msgid "Compatible material diameter"
  2346. msgstr "Diamètre du matériau compatible"
  2347. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  2348. msgctxt "@label"
  2349. msgid "Nozzle offset X"
  2350. msgstr "Décalage buse X"
  2351. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  2352. msgctxt "@label"
  2353. msgid "Nozzle offset Y"
  2354. msgstr "Décalage buse Y"
  2355. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  2356. msgctxt "@label"
  2357. msgid "Cooling Fan Number"
  2358. msgstr "Numéro du ventilateur de refroidissement"
  2359. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
  2360. msgctxt "@title:label"
  2361. msgid "Extruder Start G-code"
  2362. msgstr "Extrudeuse G-Code de démarrage"
  2363. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
  2364. msgctxt "@title:label"
  2365. msgid "Extruder End G-code"
  2366. msgstr "Extrudeuse G-Code de fin"
  2367. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  2368. msgctxt "@title:tab"
  2369. msgid "Printer"
  2370. msgstr "Imprimante"
  2371. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  2372. msgctxt "@title:label"
  2373. msgid "Printer Settings"
  2374. msgstr "Paramètres de l'imprimante"
  2375. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  2376. msgctxt "@label"
  2377. msgid "X (Width)"
  2378. msgstr "X (Largeur)"
  2379. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  2380. msgctxt "@label"
  2381. msgid "Y (Depth)"
  2382. msgstr "Y (Profondeur)"
  2383. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  2384. msgctxt "@label"
  2385. msgid "Z (Height)"
  2386. msgstr "Z (Hauteur)"
  2387. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  2388. msgctxt "@label"
  2389. msgid "Build plate shape"
  2390. msgstr "Forme du plateau"
  2391. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  2392. msgctxt "@label"
  2393. msgid "Origin at center"
  2394. msgstr "Origine au centre"
  2395. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  2396. msgctxt "@label"
  2397. msgid "Heated bed"
  2398. msgstr "Plateau chauffant"
  2399. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  2400. msgctxt "@label"
  2401. msgid "Heated build volume"
  2402. msgstr "Volume de fabrication chauffant"
  2403. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  2404. msgctxt "@label"
  2405. msgid "G-code flavor"
  2406. msgstr "Parfum G-Code"
  2407. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  2408. msgctxt "@title:label"
  2409. msgid "Printhead Settings"
  2410. msgstr "Paramètres de la tête d'impression"
  2411. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  2412. msgctxt "@label"
  2413. msgid "X min"
  2414. msgstr "X min"
  2415. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  2416. msgctxt "@label"
  2417. msgid "Y min"
  2418. msgstr "Y min"
  2419. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  2420. msgctxt "@label"
  2421. msgid "X max"
  2422. msgstr "X max"
  2423. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  2424. msgctxt "@label"
  2425. msgid "Y max"
  2426. msgstr "Y max"
  2427. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  2428. msgctxt "@label"
  2429. msgid "Gantry Height"
  2430. msgstr "Hauteur du portique"
  2431. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  2432. msgctxt "@label"
  2433. msgid "Number of Extruders"
  2434. msgstr "Nombre d'extrudeuses"
  2435. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
  2436. msgctxt "@label"
  2437. msgid "Apply Extruder offsets to GCode"
  2438. msgstr "Appliquer les décalages offset de l'extrudeuse au GCode"
  2439. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
  2440. msgctxt "@title:label"
  2441. msgid "Start G-code"
  2442. msgstr "G-Code de démarrage"
  2443. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
  2444. msgctxt "@title:label"
  2445. msgid "End G-code"
  2446. msgstr "G-Code de fin"
  2447. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:19
  2448. msgctxt "@title:window"
  2449. msgid "Convert Image..."
  2450. msgstr "Conversion de l'image..."
  2451. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:33
  2452. msgctxt "@info:tooltip"
  2453. msgid "The maximum distance of each pixel from \"Base.\""
  2454. msgstr "La distance maximale de chaque pixel à partir de la « Base »."
  2455. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:38
  2456. msgctxt "@action:label"
  2457. msgid "Height (mm)"
  2458. msgstr "Hauteur (mm)"
  2459. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:56
  2460. msgctxt "@info:tooltip"
  2461. msgid "The base height from the build plate in millimeters."
  2462. msgstr "La hauteur de la base à partir du plateau en millimètres."
  2463. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:61
  2464. msgctxt "@action:label"
  2465. msgid "Base (mm)"
  2466. msgstr "Base (mm)"
  2467. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:79
  2468. msgctxt "@info:tooltip"
  2469. msgid "The width in millimeters on the build plate."
  2470. msgstr "La largeur en millimètres sur le plateau."
  2471. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:84
  2472. msgctxt "@action:label"
  2473. msgid "Width (mm)"
  2474. msgstr "Largeur (mm)"
  2475. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:103
  2476. msgctxt "@info:tooltip"
  2477. msgid "The depth in millimeters on the build plate"
  2478. msgstr "La profondeur en millimètres sur le plateau"
  2479. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:108
  2480. msgctxt "@action:label"
  2481. msgid "Depth (mm)"
  2482. msgstr "Profondeur (mm)"
  2483. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:126
  2484. msgctxt "@info:tooltip"
  2485. 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."
  2486. 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é."
  2487. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
  2488. msgctxt "@item:inlistbox"
  2489. msgid "Darker is higher"
  2490. msgstr "Le plus foncé est plus haut"
  2491. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
  2492. msgctxt "@item:inlistbox"
  2493. msgid "Lighter is higher"
  2494. msgstr "Le plus clair est plus haut"
  2495. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:149
  2496. msgctxt "@info:tooltip"
  2497. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  2498. 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."
  2499. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
  2500. msgctxt "@item:inlistbox"
  2501. msgid "Linear"
  2502. msgstr "Linéaire"
  2503. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
  2504. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:172
  2505. msgctxt "@item:inlistbox"
  2506. msgid "Translucency"
  2507. msgstr "Translucidité"
  2508. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:171
  2509. msgctxt "@info:tooltip"
  2510. 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."
  2511. 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."
  2512. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:177
  2513. msgctxt "@action:label"
  2514. msgid "1mm Transmittance (%)"
  2515. msgstr "Transmission 1 mm (%)"
  2516. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:195
  2517. msgctxt "@info:tooltip"
  2518. msgid "The amount of smoothing to apply to the image."
  2519. msgstr "La quantité de lissage à appliquer à l'image."
  2520. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:200
  2521. msgctxt "@action:label"
  2522. msgid "Smoothing"
  2523. msgstr "Lissage"
  2524. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2525. msgctxt "@title"
  2526. msgid "My Backups"
  2527. msgstr "Mes sauvegardes"
  2528. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  2529. msgctxt "@empty_state"
  2530. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  2531. msgstr "Vous n'avez actuellement aucune sauvegarde. Utilisez le bouton « Sauvegarder maintenant » pour en créer une."
  2532. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  2533. msgctxt "@backup_limit_info"
  2534. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  2535. 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."
  2536. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2537. msgctxt "@description"
  2538. msgid "Backup and synchronize your Cura settings."
  2539. msgstr "Sauvegardez et synchronisez vos paramètres Cura."
  2540. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2541. msgctxt "@button"
  2542. msgid "Want more?"
  2543. msgstr "Vous en voulez plus ?"
  2544. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2545. msgctxt "@button"
  2546. msgid "Backup Now"
  2547. msgstr "Sauvegarder maintenant"
  2548. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2549. msgctxt "@checkbox:description"
  2550. msgid "Auto Backup"
  2551. msgstr "Sauvegarde automatique"
  2552. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2553. msgctxt "@checkbox:description"
  2554. msgid "Automatically create a backup each day that Cura is started."
  2555. msgstr "Créez automatiquement une sauvegarde chaque jour où Cura est démarré."
  2556. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2557. msgctxt "@backuplist:label"
  2558. msgid "Cura Version"
  2559. msgstr "Version Cura"
  2560. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2561. msgctxt "@backuplist:label"
  2562. msgid "Machines"
  2563. msgstr "Machines"
  2564. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2565. msgctxt "@backuplist:label"
  2566. msgid "Materials"
  2567. msgstr "Matériaux"
  2568. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2569. msgctxt "@backuplist:label"
  2570. msgid "Profiles"
  2571. msgstr "Profils"
  2572. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2573. msgctxt "@backuplist:label"
  2574. msgid "Plugins"
  2575. msgstr "Plug-ins"
  2576. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  2577. msgctxt "@button"
  2578. msgid "Restore"
  2579. msgstr "Restaurer"
  2580. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
  2581. msgctxt "@dialog:title"
  2582. msgid "Delete Backup"
  2583. msgstr "Supprimer la sauvegarde"
  2584. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  2585. msgctxt "@dialog:info"
  2586. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2587. msgstr "Êtes-vous sûr de vouloir supprimer cette sauvegarde ? Il est impossible d'annuler cette action."
  2588. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
  2589. msgctxt "@dialog:title"
  2590. msgid "Restore Backup"
  2591. msgstr "Restaurer la sauvegarde"
  2592. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  2593. msgctxt "@dialog:info"
  2594. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  2595. msgstr "Vous devez redémarrer Cura avant que votre sauvegarde ne soit restaurée. Voulez-vous fermer Cura maintenant ?"
  2596. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/main.qml:25
  2597. msgctxt "@title:window"
  2598. msgid "Cura Backups"
  2599. msgstr "Sauvegardes Cura"
  2600. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:13
  2601. msgctxt "@label:category menu label"
  2602. msgid "Material"
  2603. msgstr "Matériau"
  2604. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:54
  2605. msgctxt "@label:category menu label"
  2606. msgid "Favorites"
  2607. msgstr "Favoris"
  2608. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:79
  2609. msgctxt "@label:category menu label"
  2610. msgid "Generic"
  2611. msgstr "Générique"
  2612. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:13
  2613. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
  2614. msgctxt "@title:menu menubar:toplevel"
  2615. msgid "&File"
  2616. msgstr "&Fichier"
  2617. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:41
  2618. msgctxt "@title:menu menubar:file"
  2619. msgid "&Save Project..."
  2620. msgstr "&Enregistrer le projet..."
  2621. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:74
  2622. msgctxt "@title:menu menubar:file"
  2623. msgid "&Export..."
  2624. msgstr "E&xporter..."
  2625. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:85
  2626. msgctxt "@action:inmenu menubar:file"
  2627. msgid "Export Selection..."
  2628. msgstr "Exporter la sélection..."
  2629. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  2630. msgctxt "@title:menu menubar:file"
  2631. msgid "Open &Recent"
  2632. msgstr "Ouvrir un fichier &récent"
  2633. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
  2634. msgctxt "@label"
  2635. msgid "Select configuration"
  2636. msgstr "Sélectionner la configuration"
  2637. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
  2638. msgctxt "@label"
  2639. msgid "Configurations"
  2640. msgstr "Configurations"
  2641. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  2642. msgctxt "@header"
  2643. msgid "Configurations"
  2644. msgstr "Configurations"
  2645. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  2646. msgctxt "@header"
  2647. msgid "Custom"
  2648. msgstr "Personnalisé"
  2649. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  2650. msgctxt "@label"
  2651. msgid "Printer"
  2652. msgstr "Imprimante"
  2653. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  2654. msgctxt "@label"
  2655. msgid "Enabled"
  2656. msgstr "Activé"
  2657. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
  2658. msgctxt "@label"
  2659. msgid "Material"
  2660. msgstr "Matériau"
  2661. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:394
  2662. msgctxt "@label"
  2663. msgid "Use glue for better adhesion with this material combination."
  2664. msgstr "Utiliser de la colle pour une meilleure adhérence avec cette combinaison de matériaux."
  2665. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  2666. msgctxt "@label"
  2667. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  2668. 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."
  2669. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  2670. msgctxt "@label"
  2671. msgid "Marketplace"
  2672. msgstr "Marché en ligne"
  2673. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
  2674. msgctxt "@label"
  2675. msgid "Loading available configurations from the printer..."
  2676. msgstr "Chargement des configurations disponibles à partir de l'imprimante..."
  2677. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
  2678. msgctxt "@label"
  2679. msgid "The configurations are not available because the printer is disconnected."
  2680. msgstr "Les configurations ne sont pas disponibles car l'imprimante est déconnectée."
  2681. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:12
  2682. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
  2683. msgctxt "@title:menu menubar:toplevel"
  2684. msgid "&View"
  2685. msgstr "&Visualisation"
  2686. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:19
  2687. msgctxt "@action:inmenu menubar:view"
  2688. msgid "&Camera position"
  2689. msgstr "Position de la &caméra"
  2690. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:44
  2691. msgctxt "@action:inmenu menubar:view"
  2692. msgid "Camera view"
  2693. msgstr "Vue de la caméra"
  2694. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:47
  2695. msgctxt "@action:inmenu menubar:view"
  2696. msgid "Perspective"
  2697. msgstr "Perspective"
  2698. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:59
  2699. msgctxt "@action:inmenu menubar:view"
  2700. msgid "Orthographic"
  2701. msgstr "Orthographique"
  2702. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:80
  2703. msgctxt "@action:inmenu menubar:view"
  2704. msgid "&Build plate"
  2705. msgstr "&Plateau"
  2706. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:25
  2707. msgctxt "@label:category menu label"
  2708. msgid "Network enabled printers"
  2709. msgstr "Imprimantes réseau"
  2710. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:42
  2711. msgctxt "@label:category menu label"
  2712. msgid "Local printers"
  2713. msgstr "Imprimantes locales"
  2714. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
  2715. msgctxt "@action:inmenu"
  2716. msgid "Visible Settings"
  2717. msgstr "Paramètres visibles"
  2718. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  2719. msgctxt "@action:inmenu"
  2720. msgid "Collapse All Categories"
  2721. msgstr "Réduire toutes les catégories"
  2722. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  2723. msgctxt "@action:inmenu"
  2724. msgid "Manage Setting Visibility..."
  2725. msgstr "Gérer la visibilité des paramètres..."
  2726. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2727. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
  2728. msgctxt "@title:menu menubar:toplevel"
  2729. msgid "&Settings"
  2730. msgstr "&Paramètres"
  2731. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:15
  2732. msgctxt "@title:menu menubar:settings"
  2733. msgid "&Printer"
  2734. msgstr "Im&primante"
  2735. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:29
  2736. msgctxt "@title:menu"
  2737. msgid "&Material"
  2738. msgstr "&Matériau"
  2739. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:44
  2740. msgctxt "@action:inmenu"
  2741. msgid "Set as Active Extruder"
  2742. msgstr "Définir comme extrudeur actif"
  2743. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:50
  2744. msgctxt "@action:inmenu"
  2745. msgid "Enable Extruder"
  2746. msgstr "Activer l'extrudeuse"
  2747. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:57
  2748. msgctxt "@action:inmenu"
  2749. msgid "Disable Extruder"
  2750. msgstr "Désactiver l'extrudeuse"
  2751. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  2752. msgctxt "@title:menu menubar:file"
  2753. msgid "Save Project..."
  2754. msgstr "Sauvegarder le projet..."
  2755. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:27
  2756. msgctxt "@label"
  2757. msgid "Print Selected Model With:"
  2758. msgid_plural "Print Selected Models With:"
  2759. msgstr[0] "Imprimer le modèle sélectionné avec :"
  2760. msgstr[1] "Imprimer les modèles sélectionnés avec :"
  2761. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:116
  2762. msgctxt "@title:window"
  2763. msgid "Multiply Selected Model"
  2764. msgid_plural "Multiply Selected Models"
  2765. msgstr[0] "Multiplier le modèle sélectionné"
  2766. msgstr[1] "Multiplier les modèles sélectionnés"
  2767. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:141
  2768. msgctxt "@label"
  2769. msgid "Number of Copies"
  2770. msgstr "Nombre de copies"
  2771. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  2772. msgctxt "@title:menu menubar:file"
  2773. msgid "Open File(s)..."
  2774. msgstr "Ouvrir le(s) fichier(s)..."
  2775. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
  2776. msgctxt "@label:header"
  2777. msgid "Custom profiles"
  2778. msgstr "Personnaliser les profils"
  2779. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
  2780. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:564
  2781. msgctxt "@action:button"
  2782. msgid "Discard current changes"
  2783. msgstr "Ignorer les modifications actuelles"
  2784. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  2785. msgctxt "@label"
  2786. msgid "Profile"
  2787. msgstr "Profil"
  2788. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
  2789. msgctxt "@tooltip"
  2790. msgid ""
  2791. "Some setting/override values are different from the values stored in the profile.\n"
  2792. "\n"
  2793. "Click to open the profile manager."
  2794. msgstr ""
  2795. "Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. \n"
  2796. "\n"
  2797. "Cliquez pour ouvrir le gestionnaire de profils."
  2798. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  2799. msgctxt "@label:Should be short"
  2800. msgid "On"
  2801. msgstr "On"
  2802. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  2803. msgctxt "@label:Should be short"
  2804. msgid "Off"
  2805. msgstr "Off"
  2806. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
  2807. msgctxt "@label"
  2808. msgid "Experimental"
  2809. msgstr "Expérimental"
  2810. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  2811. msgctxt "@button"
  2812. msgid "Recommended"
  2813. msgstr "Recommandé"
  2814. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  2815. msgctxt "@button"
  2816. msgid "Custom"
  2817. msgstr "Personnalisé"
  2818. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  2819. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
  2820. msgctxt "@label"
  2821. msgid "Print settings"
  2822. msgstr "Paramètres d'impression"
  2823. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  2824. msgctxt "@label shown when we load a Gcode file"
  2825. msgid "Print setup disabled. G-code file can not be modified."
  2826. msgstr "Configuration d'impression désactivée. Le fichier G-Code ne peut pas être modifié."
  2827. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
  2828. msgctxt "@label"
  2829. msgid "Gradual infill"
  2830. msgstr "Remplissage graduel"
  2831. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
  2832. msgctxt "@label"
  2833. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  2834. msgstr "Un remplissage graduel augmentera la quantité de remplissage vers le haut."
  2835. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
  2836. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:728
  2837. msgctxt "@label"
  2838. msgid "Profiles"
  2839. msgstr "Profils"
  2840. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
  2841. msgctxt "@tooltip"
  2842. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  2843. msgstr "Vous avez modifié certains paramètres du profil. Si vous souhaitez les modifier, allez dans le mode Personnaliser."
  2844. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  2845. msgctxt "@label"
  2846. msgid "Support"
  2847. msgstr "Support"
  2848. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
  2849. msgctxt "@label"
  2850. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2851. 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."
  2852. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  2853. msgctxt "@label"
  2854. msgid "Adhesion"
  2855. msgstr "Adhérence"
  2856. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
  2857. msgctxt "@label"
  2858. 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."
  2859. 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."
  2860. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  2861. msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
  2862. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  2863. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  2864. msgstr[0] "Il n'y a pas de profil %1 pour la configuration dans l'extrudeur %2. L'intention par défaut sera utilisée à la place"
  2865. msgstr[1] "Il n'y a pas de profil %1 pour les configurations dans les extrudeurs %2. L'intention par défaut sera utilisée à la place"
  2866. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Widgets/ComboBox.qml:24
  2867. msgctxt "@label"
  2868. msgid "No items to select from"
  2869. msgstr "Aucun élément à sélectionner"
  2870. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:140
  2871. msgctxt "@label"
  2872. msgid "Active print"
  2873. msgstr "Activer l'impression"
  2874. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:148
  2875. msgctxt "@label"
  2876. msgid "Job Name"
  2877. msgstr "Nom de la tâche"
  2878. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:156
  2879. msgctxt "@label"
  2880. msgid "Printing Time"
  2881. msgstr "Durée d'impression"
  2882. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:164
  2883. msgctxt "@label"
  2884. msgid "Estimated time left"
  2885. msgstr "Durée restante estimée"
  2886. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
  2887. msgctxt "@title:window"
  2888. msgid "Discard or Keep changes"
  2889. msgstr "Annuler ou conserver les modifications"
  2890. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
  2891. msgctxt "@text:window, %1 is a profile name"
  2892. msgid ""
  2893. "You have customized some profile settings.\n"
  2894. "Would you like to Keep these changed settings after switching profiles?\n"
  2895. "Alternatively, you can discard the changes to load the defaults from '%1'."
  2896. msgstr ""
  2897. "Vous avez personnalisé certains paramètres de profil.\n"
  2898. "Souhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?\n"
  2899. "Vous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'."
  2900. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
  2901. msgctxt "@title:column"
  2902. msgid "Profile settings"
  2903. msgstr "Paramètres du profil"
  2904. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  2905. msgctxt "@title:column"
  2906. msgid "Current changes"
  2907. msgstr "Modifications actuelles"
  2908. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
  2909. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:747
  2910. msgctxt "@option:discardOrKeep"
  2911. msgid "Always ask me this"
  2912. msgstr "Toujours me demander"
  2913. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
  2914. msgctxt "@option:discardOrKeep"
  2915. msgid "Discard and never ask again"
  2916. msgstr "Annuler et ne plus me demander"
  2917. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
  2918. msgctxt "@option:discardOrKeep"
  2919. msgid "Keep and never ask again"
  2920. msgstr "Conserver et ne plus me demander"
  2921. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
  2922. msgctxt "@action:button"
  2923. msgid "Discard changes"
  2924. msgstr "Annuler les modifications"
  2925. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
  2926. msgctxt "@action:button"
  2927. msgid "Keep changes"
  2928. msgstr "Conserver les modifications"
  2929. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  2930. msgctxt "@title:window The argument is the application name."
  2931. msgid "About %1"
  2932. msgstr "À propos de %1"
  2933. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  2934. msgctxt "@label"
  2935. msgid "version: %1"
  2936. msgstr "version : %1"
  2937. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  2938. msgctxt "@label"
  2939. msgid "End-to-end solution for fused filament 3D printing."
  2940. msgstr "Solution complète pour l'impression 3D par dépôt de filament fondu."
  2941. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  2942. msgctxt "@info:credit"
  2943. msgid ""
  2944. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2945. "Cura proudly uses the following open source projects:"
  2946. msgstr ""
  2947. "Cura a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker.\n"
  2948. "Cura est fier d'utiliser les projets open source suivants :"
  2949. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  2950. msgctxt "@label"
  2951. msgid "Graphical user interface"
  2952. msgstr "Interface utilisateur graphique"
  2953. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  2954. msgctxt "@label"
  2955. msgid "Application framework"
  2956. msgstr "Cadre d'application"
  2957. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  2958. msgctxt "@label"
  2959. msgid "G-code generator"
  2960. msgstr "Générateur G-Code"
  2961. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  2962. msgctxt "@label"
  2963. msgid "Interprocess communication library"
  2964. msgstr "Bibliothèque de communication interprocess"
  2965. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  2966. msgctxt "@label"
  2967. msgid "Programming language"
  2968. msgstr "Langage de programmation"
  2969. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  2970. msgctxt "@label"
  2971. msgid "GUI framework"
  2972. msgstr "Cadre IUG"
  2973. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  2974. msgctxt "@label"
  2975. msgid "GUI framework bindings"
  2976. msgstr "Liens cadre IUG"
  2977. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  2978. msgctxt "@label"
  2979. msgid "C/C++ Binding library"
  2980. msgstr "Bibliothèque C/C++ Binding"
  2981. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  2982. msgctxt "@label"
  2983. msgid "Data interchange format"
  2984. msgstr "Format d'échange de données"
  2985. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  2986. msgctxt "@label"
  2987. msgid "Support library for scientific computing"
  2988. msgstr "Prise en charge de la bibliothèque pour le calcul scientifique"
  2989. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  2990. msgctxt "@label"
  2991. msgid "Support library for faster math"
  2992. msgstr "Prise en charge de la bibliothèque pour des maths plus rapides"
  2993. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  2994. msgctxt "@label"
  2995. msgid "Support library for handling STL files"
  2996. msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers STL"
  2997. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  2998. msgctxt "@label"
  2999. msgid "Support library for handling planar objects"
  3000. msgstr "Prise en charge de la bibliothèque pour le traitement des objets planaires"
  3001. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  3002. msgctxt "@label"
  3003. msgid "Support library for handling triangular meshes"
  3004. msgstr "Prise en charge de la bibliothèque pour le traitement des mailles triangulaires"
  3005. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  3006. msgctxt "@label"
  3007. msgid "Support library for handling 3MF files"
  3008. msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers 3MF"
  3009. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  3010. msgctxt "@label"
  3011. msgid "Support library for file metadata and streaming"
  3012. msgstr "Prise en charge de la bibliothèque pour les métadonnées et le streaming de fichiers"
  3013. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  3014. msgctxt "@label"
  3015. msgid "Serial communication library"
  3016. msgstr "Bibliothèque de communication série"
  3017. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  3018. msgctxt "@label"
  3019. msgid "ZeroConf discovery library"
  3020. msgstr "Bibliothèque de découverte ZeroConf"
  3021. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  3022. msgctxt "@label"
  3023. msgid "Polygon clipping library"
  3024. msgstr "Bibliothèque de découpe polygone"
  3025. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  3026. msgctxt "@Label"
  3027. msgid "Static type checker for Python"
  3028. msgstr "Vérificateur de type statique pour Python"
  3029. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  3030. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  3031. msgctxt "@Label"
  3032. msgid "Root Certificates for validating SSL trustworthiness"
  3033. msgstr "Certificats racines pour valider la fiabilité SSL"
  3034. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  3035. msgctxt "@Label"
  3036. msgid "Python Error tracking library"
  3037. msgstr "Bibliothèque de suivi des erreurs Python"
  3038. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3039. msgctxt "@label"
  3040. msgid "Polygon packing library, developed by Prusa Research"
  3041. msgstr "Bibliothèque d'emballage de polygones, développée par Prusa Research"
  3042. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  3043. msgctxt "@label"
  3044. msgid "Python bindings for libnest2d"
  3045. msgstr "Liens en python pour libnest2d"
  3046. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:161
  3047. msgctxt "@label"
  3048. msgid "Support library for system keyring access"
  3049. msgstr "Bibliothèque de support pour l'accès au trousseau de clés du système"
  3050. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  3051. msgctxt "@label"
  3052. msgid "Python extensions for Microsoft Windows"
  3053. msgstr "Extensions Python pour Microsoft Windows"
  3054. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  3055. msgctxt "@label"
  3056. msgid "Font"
  3057. msgstr "Police"
  3058. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  3059. msgctxt "@label"
  3060. msgid "SVG icons"
  3061. msgstr "Icônes SVG"
  3062. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:165
  3063. msgctxt "@label"
  3064. msgid "Linux cross-distribution application deployment"
  3065. msgstr "Déploiement d'applications sur multiples distributions Linux"
  3066. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
  3067. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:627
  3068. msgctxt "@title:window"
  3069. msgid "Open file(s)"
  3070. msgstr "Ouvrir le(s) fichier(s)"
  3071. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  3072. msgctxt "@text:window"
  3073. 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?"
  3074. 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 ?"
  3075. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
  3076. msgctxt "@action:button"
  3077. msgid "Import all as models"
  3078. msgstr "Importer tout comme modèles"
  3079. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
  3080. msgctxt "@title:window"
  3081. msgid "Save Project"
  3082. msgstr "Enregistrer le projet"
  3083. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
  3084. msgctxt "@action:label"
  3085. msgid "Extruder %1"
  3086. msgstr "Extrudeuse %1"
  3087. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
  3088. msgctxt "@action:label"
  3089. msgid "%1 & material"
  3090. msgstr "%1 & matériau"
  3091. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
  3092. msgctxt "@action:label"
  3093. msgid "Material"
  3094. msgstr "Matériau"
  3095. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
  3096. msgctxt "@action:label"
  3097. msgid "Don't show project summary on save again"
  3098. msgstr "Ne pas afficher à nouveau le résumé du projet lors de l'enregistrement"
  3099. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
  3100. msgctxt "@action:button"
  3101. msgid "Save"
  3102. msgstr "Enregistrer"
  3103. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  3104. msgctxt "@title:window"
  3105. msgid "Open project file"
  3106. msgstr "Ouvrir un fichier de projet"
  3107. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
  3108. msgctxt "@text:window"
  3109. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3110. msgstr "Ceci est un fichier de projet Cura. Souhaitez-vous l'ouvrir comme projet ou en importer les modèles ?"
  3111. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
  3112. msgctxt "@text:window"
  3113. msgid "Remember my choice"
  3114. msgstr "Se souvenir de mon choix"
  3115. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
  3116. msgctxt "@action:button"
  3117. msgid "Open as project"
  3118. msgstr "Ouvrir comme projet"
  3119. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
  3120. msgctxt "@action:button"
  3121. msgid "Import models"
  3122. msgstr "Importer les modèles"
  3123. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/JobSpecs.qml:99
  3124. msgctxt "@text Print job name"
  3125. msgid "Untitled"
  3126. msgstr "Sans titre"
  3127. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  3128. msgctxt "@label"
  3129. msgid "Welcome to Ultimaker Cura"
  3130. msgstr "Bienvenue dans Ultimaker Cura"
  3131. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
  3132. msgctxt "@text"
  3133. msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
  3134. msgstr "Veuillez suivre ces étapes pour configurer\nUltimaker Cura. Cela ne prendra que quelques instants."
  3135. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
  3136. msgctxt "@button"
  3137. msgid "Get started"
  3138. msgstr "Prise en main"
  3139. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  3140. msgctxt "@label"
  3141. msgid "Empty"
  3142. msgstr "Vide"
  3143. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  3144. msgctxt "@label"
  3145. msgid "Help us to improve Ultimaker Cura"
  3146. msgstr "Aidez-nous à améliorer Ultimaker Cura"
  3147. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  3148. msgctxt "@text"
  3149. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  3150. msgstr "Ultimaker Cura recueille des données anonymes pour améliorer la qualité d'impression et l'expérience utilisateur, notamment :"
  3151. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  3152. msgctxt "@text"
  3153. msgid "Machine types"
  3154. msgstr "Types de machines"
  3155. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  3156. msgctxt "@text"
  3157. msgid "Material usage"
  3158. msgstr "Utilisation du matériau"
  3159. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  3160. msgctxt "@text"
  3161. msgid "Number of slices"
  3162. msgstr "Nombre de découpes"
  3163. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  3164. msgctxt "@text"
  3165. msgid "Print settings"
  3166. msgstr "Paramètres d'impression"
  3167. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  3168. msgctxt "@text"
  3169. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  3170. msgstr "Les données recueillies par Ultimaker Cura ne contiendront aucun renseignement personnel."
  3171. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  3172. msgctxt "@text"
  3173. msgid "More information"
  3174. msgstr "Plus d'informations"
  3175. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  3176. msgctxt "@label"
  3177. msgid "Add printer by IP address"
  3178. msgstr "Ajouter une imprimante par adresse IP"
  3179. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  3180. msgctxt "@text"
  3181. msgid "Enter your printer's IP address."
  3182. msgstr "Saisissez l'adresse IP de votre imprimante."
  3183. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  3184. msgctxt "@button"
  3185. msgid "Add"
  3186. msgstr "Ajouter"
  3187. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  3188. msgctxt "@label"
  3189. msgid "Could not connect to device."
  3190. msgstr "Impossible de se connecter à l'appareil."
  3191. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
  3192. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  3193. msgctxt "@label"
  3194. msgid "Can't connect to your Ultimaker printer?"
  3195. msgstr "Impossible de vous connecter à votre imprimante Ultimaker ?"
  3196. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  3197. msgctxt "@label"
  3198. msgid "The printer at this address has not responded yet."
  3199. msgstr "L'imprimante à cette adresse n'a pas encore répondu."
  3200. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  3201. msgctxt "@label"
  3202. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3203. 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."
  3204. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  3205. msgctxt "@button"
  3206. msgid "Back"
  3207. msgstr "Précédent"
  3208. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  3209. msgctxt "@button"
  3210. msgid "Connect"
  3211. msgstr "Se connecter"
  3212. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  3213. msgctxt "@label"
  3214. msgid "Add a printer"
  3215. msgstr "Ajouter une imprimante"
  3216. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  3217. msgctxt "@label"
  3218. msgid "Add a networked printer"
  3219. msgstr "Ajouter une imprimante en réseau"
  3220. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
  3221. msgctxt "@label"
  3222. msgid "Add a non-networked printer"
  3223. msgstr "Ajouter une imprimante hors réseau"
  3224. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
  3225. msgctxt "@label"
  3226. msgid "What's New"
  3227. msgstr "Nouveautés"
  3228. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  3229. msgctxt "@label"
  3230. msgid "Add a Cloud printer"
  3231. msgstr "Ajouter une imprimante cloud"
  3232. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  3233. msgctxt "@label"
  3234. msgid "Waiting for Cloud response"
  3235. msgstr "En attente d'une réponse cloud"
  3236. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  3237. msgctxt "@label"
  3238. msgid "No printers found in your account?"
  3239. msgstr "Aucune imprimante trouvée dans votre compte ?"
  3240. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  3241. msgctxt "@label"
  3242. msgid "The following printers in your account have been added in Cura:"
  3243. msgstr "Les imprimantes suivantes de votre compte ont été ajoutées à Cura :"
  3244. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
  3245. msgctxt "@button"
  3246. msgid "Add printer manually"
  3247. msgstr "Ajouter l'imprimante manuellement"
  3248. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:64
  3249. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:20
  3250. msgctxt "@label"
  3251. msgid "Sign in to the Ultimaker platform"
  3252. msgstr "Connectez-vous à la plateforme Ultimaker"
  3253. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:124
  3254. msgctxt "@text"
  3255. msgid "Add material settings and plugins from the Marketplace"
  3256. msgstr "Ajoutez des paramètres de matériaux et des plug-ins depuis la Marketplace"
  3257. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:154
  3258. msgctxt "@text"
  3259. msgid "Backup and sync your material settings and plugins"
  3260. msgstr "Sauvegardez et synchronisez vos paramètres de matériaux et vos plug-ins"
  3261. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:184
  3262. msgctxt "@text"
  3263. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  3264. msgstr "Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker"
  3265. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:217
  3266. msgctxt "@text"
  3267. msgid "Create a free Ultimaker Account"
  3268. msgstr "Créez gratuitement un compte Ultimaker"
  3269. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:230
  3270. msgctxt "@button"
  3271. msgid "Skip"
  3272. msgstr "Ignorer"
  3273. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  3274. msgctxt "@label"
  3275. msgid "User Agreement"
  3276. msgstr "Accord utilisateur"
  3277. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  3278. msgctxt "@button"
  3279. msgid "Decline and close"
  3280. msgstr "Décliner et fermer"
  3281. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  3282. msgctxt "@label"
  3283. msgid "Release Notes"
  3284. msgstr "Notes de version"
  3285. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  3286. msgctxt "@label"
  3287. msgid "There is no printer found over your network."
  3288. msgstr "Aucune imprimante n'a été trouvée sur votre réseau."
  3289. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
  3290. msgctxt "@label"
  3291. msgid "Refresh"
  3292. msgstr "Rafraîchir"
  3293. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
  3294. msgctxt "@label"
  3295. msgid "Add printer by IP"
  3296. msgstr "Ajouter une imprimante par IP"
  3297. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
  3298. msgctxt "@label"
  3299. msgid "Add cloud printer"
  3300. msgstr "Ajouter une imprimante cloud"
  3301. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
  3302. msgctxt "@label"
  3303. msgid "Troubleshooting"
  3304. msgstr "Dépannage"
  3305. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
  3306. msgctxt "@label"
  3307. msgid "Manufacturer"
  3308. msgstr "Fabricant"
  3309. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
  3310. msgctxt "@label"
  3311. msgid "Profile author"
  3312. msgstr "Auteur du profil"
  3313. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
  3314. msgctxt "@label"
  3315. msgid "Printer name"
  3316. msgstr "Nom de l'imprimante"
  3317. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
  3318. msgctxt "@text"
  3319. msgid "Please name your printer"
  3320. msgstr "Veuillez nommer votre imprimante"
  3321. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:81
  3322. msgctxt "@label The argument is a timestamp"
  3323. msgid "Last update: %1"
  3324. msgstr "Dernière mise à jour : %1"
  3325. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:109
  3326. msgctxt "@button"
  3327. msgid "Ultimaker Account"
  3328. msgstr "Compte Ultimaker"
  3329. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:125
  3330. msgctxt "@button"
  3331. msgid "Sign Out"
  3332. msgstr "Déconnexion"
  3333. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:42
  3334. msgctxt "@text"
  3335. msgid ""
  3336. "- Add material profiles and plug-ins from the Marketplace\n"
  3337. "- Back-up and sync your material profiles and plug-ins\n"
  3338. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  3339. msgstr "- Ajoutez des profils de matériaux et des plug-ins à partir de la Marketplace - Sauvegardez et synchronisez vos profils de matériaux et vos plug-ins -"
  3340. " Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker"
  3341. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:62
  3342. msgctxt "@button"
  3343. msgid "Create a free Ultimaker account"
  3344. msgstr "Créez gratuitement un compte Ultimaker"
  3345. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/AccountWidget.qml:24
  3346. msgctxt "@action:button"
  3347. msgid "Sign in"
  3348. msgstr "Se connecter"
  3349. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:28
  3350. msgctxt "@label"
  3351. msgid "Checking..."
  3352. msgstr "Vérification en cours..."
  3353. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:35
  3354. msgctxt "@label"
  3355. msgid "Account synced"
  3356. msgstr "Compte synchronisé"
  3357. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:42
  3358. msgctxt "@label"
  3359. msgid "Something went wrong..."
  3360. msgstr "Un problème s'est produit..."
  3361. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:96
  3362. msgctxt "@button"
  3363. msgid "Install pending updates"
  3364. msgstr "Installer les mises à jour en attente"
  3365. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:118
  3366. msgctxt "@button"
  3367. msgid "Check for account updates"
  3368. msgstr "Rechercher des mises à jour de compte"
  3369. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectSelector.qml:59
  3370. msgctxt "@label"
  3371. msgid "Object list"
  3372. msgstr "Liste d'objets"
  3373. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:82
  3374. msgctxt "@action:inmenu"
  3375. msgid "Show Online Troubleshooting Guide"
  3376. msgstr "Afficher le guide de dépannage en ligne"
  3377. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:89
  3378. msgctxt "@action:inmenu"
  3379. msgid "Toggle Full Screen"
  3380. msgstr "Passer en Plein écran"
  3381. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:97
  3382. msgctxt "@action:inmenu"
  3383. msgid "Exit Full Screen"
  3384. msgstr "Quitter le mode plein écran"
  3385. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:104
  3386. msgctxt "@action:inmenu menubar:edit"
  3387. msgid "&Undo"
  3388. msgstr "&Annuler"
  3389. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:114
  3390. msgctxt "@action:inmenu menubar:edit"
  3391. msgid "&Redo"
  3392. msgstr "&Rétablir"
  3393. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:124
  3394. msgctxt "@action:inmenu menubar:file"
  3395. msgid "&Quit"
  3396. msgstr "&Quitter"
  3397. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:132
  3398. msgctxt "@action:inmenu menubar:view"
  3399. msgid "3D View"
  3400. msgstr "Vue 3D"
  3401. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:139
  3402. msgctxt "@action:inmenu menubar:view"
  3403. msgid "Front View"
  3404. msgstr "Vue de face"
  3405. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:146
  3406. msgctxt "@action:inmenu menubar:view"
  3407. msgid "Top View"
  3408. msgstr "Vue du dessus"
  3409. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:153
  3410. msgctxt "@action:inmenu menubar:view"
  3411. msgid "Left Side View"
  3412. msgstr "Vue latérale gauche"
  3413. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:160
  3414. msgctxt "@action:inmenu menubar:view"
  3415. msgid "Right Side View"
  3416. msgstr "Vue latérale droite"
  3417. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:167
  3418. msgctxt "@action:inmenu"
  3419. msgid "Configure Cura..."
  3420. msgstr "Configurer Cura..."
  3421. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:174
  3422. msgctxt "@action:inmenu menubar:printer"
  3423. msgid "&Add Printer..."
  3424. msgstr "&Ajouter une imprimante..."
  3425. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:180
  3426. msgctxt "@action:inmenu menubar:printer"
  3427. msgid "Manage Pr&inters..."
  3428. msgstr "Gérer les &imprimantes..."
  3429. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:187
  3430. msgctxt "@action:inmenu"
  3431. msgid "Manage Materials..."
  3432. msgstr "Gérer les matériaux..."
  3433. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:195
  3434. msgctxt "@action:inmenu"
  3435. msgid "Add more materials from Marketplace"
  3436. msgstr "Ajouter d'autres matériaux du Marketplace"
  3437. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:202
  3438. msgctxt "@action:inmenu menubar:profile"
  3439. msgid "&Update profile with current settings/overrides"
  3440. msgstr "&Mettre à jour le profil à l'aide des paramètres / forçages actuels"
  3441. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:210
  3442. msgctxt "@action:inmenu menubar:profile"
  3443. msgid "&Discard current changes"
  3444. msgstr "&Ignorer les modifications actuelles"
  3445. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:222
  3446. msgctxt "@action:inmenu menubar:profile"
  3447. msgid "&Create profile from current settings/overrides..."
  3448. msgstr "&Créer un profil à partir des paramètres / forçages actuels..."
  3449. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:228
  3450. msgctxt "@action:inmenu menubar:profile"
  3451. msgid "Manage Profiles..."
  3452. msgstr "Gérer les profils..."
  3453. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:236
  3454. msgctxt "@action:inmenu menubar:help"
  3455. msgid "Show Online &Documentation"
  3456. msgstr "Afficher la &documentation en ligne"
  3457. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:244
  3458. msgctxt "@action:inmenu menubar:help"
  3459. msgid "Report a &Bug"
  3460. msgstr "Notifier un &bug"
  3461. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:252
  3462. msgctxt "@action:inmenu menubar:help"
  3463. msgid "What's New"
  3464. msgstr "Quoi de neuf"
  3465. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:258
  3466. msgctxt "@action:inmenu menubar:help"
  3467. msgid "About..."
  3468. msgstr "À propos de..."
  3469. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:265
  3470. msgctxt "@action:inmenu menubar:edit"
  3471. msgid "Delete Selected"
  3472. msgstr "Supprimer la sélection"
  3473. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:275
  3474. msgctxt "@action:inmenu menubar:edit"
  3475. msgid "Center Selected"
  3476. msgstr "Centrer la sélection"
  3477. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:284
  3478. msgctxt "@action:inmenu menubar:edit"
  3479. msgid "Multiply Selected"
  3480. msgstr "Multiplier la sélection"
  3481. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:293
  3482. msgctxt "@action:inmenu"
  3483. msgid "Delete Model"
  3484. msgstr "Supprimer le modèle"
  3485. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:301
  3486. msgctxt "@action:inmenu"
  3487. msgid "Ce&nter Model on Platform"
  3488. msgstr "Ce&ntrer le modèle sur le plateau"
  3489. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:307
  3490. msgctxt "@action:inmenu menubar:edit"
  3491. msgid "&Group Models"
  3492. msgstr "&Grouper les modèles"
  3493. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:327
  3494. msgctxt "@action:inmenu menubar:edit"
  3495. msgid "Ungroup Models"
  3496. msgstr "Dégrouper les modèles"
  3497. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:337
  3498. msgctxt "@action:inmenu menubar:edit"
  3499. msgid "&Merge Models"
  3500. msgstr "&Fusionner les modèles"
  3501. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:347
  3502. msgctxt "@action:inmenu"
  3503. msgid "&Multiply Model..."
  3504. msgstr "&Multiplier le modèle..."
  3505. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:354
  3506. msgctxt "@action:inmenu menubar:edit"
  3507. msgid "Select All Models"
  3508. msgstr "Sélectionner tous les modèles"
  3509. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:364
  3510. msgctxt "@action:inmenu menubar:edit"
  3511. msgid "Clear Build Plate"
  3512. msgstr "Supprimer les objets du plateau"
  3513. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:374
  3514. msgctxt "@action:inmenu menubar:file"
  3515. msgid "Reload All Models"
  3516. msgstr "Recharger tous les modèles"
  3517. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:383
  3518. msgctxt "@action:inmenu menubar:edit"
  3519. msgid "Arrange All Models To All Build Plates"
  3520. msgstr "Réorganiser tous les modèles sur tous les plateaux"
  3521. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:390
  3522. msgctxt "@action:inmenu menubar:edit"
  3523. msgid "Arrange All Models"
  3524. msgstr "Réorganiser tous les modèles"
  3525. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:398
  3526. msgctxt "@action:inmenu menubar:edit"
  3527. msgid "Arrange Selection"
  3528. msgstr "Réorganiser la sélection"
  3529. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:405
  3530. msgctxt "@action:inmenu menubar:edit"
  3531. msgid "Reset All Model Positions"
  3532. msgstr "Réinitialiser toutes les positions des modèles"
  3533. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:412
  3534. msgctxt "@action:inmenu menubar:edit"
  3535. msgid "Reset All Model Transformations"
  3536. msgstr "Réinitialiser tous les modèles et transformations"
  3537. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:421
  3538. msgctxt "@action:inmenu menubar:file"
  3539. msgid "&Open File(s)..."
  3540. msgstr "&Ouvrir le(s) fichier(s)..."
  3541. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:431
  3542. msgctxt "@action:inmenu menubar:file"
  3543. msgid "&New Project..."
  3544. msgstr "&Nouveau projet..."
  3545. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:438
  3546. msgctxt "@action:inmenu menubar:help"
  3547. msgid "Show Configuration Folder"
  3548. msgstr "Afficher le dossier de configuration"
  3549. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:445
  3550. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:538
  3551. msgctxt "@action:menu"
  3552. msgid "Configure setting visibility..."
  3553. msgstr "Configurer la visibilité des paramètres..."
  3554. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:452
  3555. msgctxt "@action:menu"
  3556. msgid "&Marketplace"
  3557. msgstr "&Marché en ligne"
  3558. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:61
  3559. msgctxt "@info:status"
  3560. msgid "Calculated"
  3561. msgstr "Calculer"
  3562. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:75
  3563. msgctxt "@title:column"
  3564. msgid "Setting"
  3565. msgstr "Paramètre"
  3566. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:82
  3567. msgctxt "@title:column"
  3568. msgid "Profile"
  3569. msgstr "Profil"
  3570. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:89
  3571. msgctxt "@title:column"
  3572. msgid "Current"
  3573. msgstr "Actuel"
  3574. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:97
  3575. msgctxt "@title:column"
  3576. msgid "Unit"
  3577. msgstr "Unité"
  3578. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  3579. msgctxt "@title"
  3580. msgid "Information"
  3581. msgstr "Informations"
  3582. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  3583. msgctxt "@title:window"
  3584. msgid "Confirm Diameter Change"
  3585. msgstr "Confirmer le changement de diamètre"
  3586. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  3587. msgctxt "@label (%1 is a number)"
  3588. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3589. 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 ?"
  3590. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  3591. msgctxt "@label"
  3592. msgid "Display Name"
  3593. msgstr "Afficher le nom"
  3594. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  3595. msgctxt "@label"
  3596. msgid "Material Type"
  3597. msgstr "Type de matériau"
  3598. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  3599. msgctxt "@label"
  3600. msgid "Color"
  3601. msgstr "Couleur"
  3602. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  3603. msgctxt "@label"
  3604. msgid "Properties"
  3605. msgstr "Propriétés"
  3606. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  3607. msgctxt "@label"
  3608. msgid "Density"
  3609. msgstr "Densité"
  3610. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  3611. msgctxt "@label"
  3612. msgid "Diameter"
  3613. msgstr "Diamètre"
  3614. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  3615. msgctxt "@label"
  3616. msgid "Filament Cost"
  3617. msgstr "Coût du filament"
  3618. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  3619. msgctxt "@label"
  3620. msgid "Filament weight"
  3621. msgstr "Poids du filament"
  3622. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  3623. msgctxt "@label"
  3624. msgid "Filament length"
  3625. msgstr "Longueur du filament"
  3626. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  3627. msgctxt "@label"
  3628. msgid "Cost per Meter"
  3629. msgstr "Coût au mètre"
  3630. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  3631. msgctxt "@label"
  3632. msgid "This material is linked to %1 and shares some of its properties."
  3633. msgstr "Ce matériau est lié à %1 et partage certaines de ses propriétés."
  3634. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  3635. msgctxt "@label"
  3636. msgid "Unlink Material"
  3637. msgstr "Délier le matériau"
  3638. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  3639. msgctxt "@label"
  3640. msgid "Description"
  3641. msgstr "Description"
  3642. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  3643. msgctxt "@label"
  3644. msgid "Adhesion Information"
  3645. msgstr "Informations d'adhérence"
  3646. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
  3647. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:40
  3648. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:84
  3649. msgctxt "@action:button"
  3650. msgid "Activate"
  3651. msgstr "Activer"
  3652. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  3653. msgctxt "@action:button"
  3654. msgid "Create"
  3655. msgstr "Créer"
  3656. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  3657. msgctxt "@action:button"
  3658. msgid "Duplicate"
  3659. msgstr "Dupliquer"
  3660. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
  3661. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:167
  3662. msgctxt "@action:button"
  3663. msgid "Import"
  3664. msgstr "Importer"
  3665. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
  3666. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:179
  3667. msgctxt "@action:button"
  3668. msgid "Export"
  3669. msgstr "Exporter"
  3670. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
  3671. msgctxt "@action:label"
  3672. msgid "Printer"
  3673. msgstr "Imprimante"
  3674. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298
  3675. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:277
  3676. msgctxt "@title:window"
  3677. msgid "Confirm Remove"
  3678. msgstr "Confirmer la suppression"
  3679. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301
  3680. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:278
  3681. msgctxt "@label (%1 is object name)"
  3682. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3683. msgstr "Êtes-vous sûr de vouloir supprimer l'objet %1 ? Vous ne pourrez pas revenir en arrière !"
  3684. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
  3685. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
  3686. msgctxt "@title:window"
  3687. msgid "Import Material"
  3688. msgstr "Importer un matériau"
  3689. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
  3690. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3691. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3692. msgstr "Impossible d'importer le matériau <filename>%1</filename> : <message>%2</message>"
  3693. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
  3694. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3695. msgid "Successfully imported material <filename>%1</filename>"
  3696. msgstr "Matériau <filename>%1</filename> importé avec succès"
  3697. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346
  3698. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
  3699. msgctxt "@title:window"
  3700. msgid "Export Material"
  3701. msgstr "Exporter un matériau"
  3702. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
  3703. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3704. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3705. msgstr "Échec de l'exportation de matériau vers <filename>%1</filename> : <message>%2</message>"
  3706. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
  3707. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3708. msgid "Successfully exported material to <filename>%1</filename>"
  3709. msgstr "Matériau exporté avec succès vers <filename>%1</filename>"
  3710. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:16
  3711. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:455
  3712. msgctxt "@title:tab"
  3713. msgid "Printers"
  3714. msgstr "Imprimantes"
  3715. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:63
  3716. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  3717. msgctxt "@action:button"
  3718. msgid "Rename"
  3719. msgstr "Renommer"
  3720. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:34
  3721. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:459
  3722. msgctxt "@title:tab"
  3723. msgid "Profiles"
  3724. msgstr "Profils"
  3725. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  3726. msgctxt "@label"
  3727. msgid "Create"
  3728. msgstr "Créer"
  3729. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  3730. msgctxt "@label"
  3731. msgid "Duplicate"
  3732. msgstr "Dupliquer"
  3733. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  3734. msgctxt "@title:window"
  3735. msgid "Create Profile"
  3736. msgstr "Créer un profil"
  3737. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  3738. msgctxt "@info"
  3739. msgid "Please provide a name for this profile."
  3740. msgstr "Veuillez fournir un nom pour ce profil."
  3741. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:263
  3742. msgctxt "@title:window"
  3743. msgid "Duplicate Profile"
  3744. msgstr "Dupliquer un profil"
  3745. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:294
  3746. msgctxt "@title:window"
  3747. msgid "Rename Profile"
  3748. msgstr "Renommer le profil"
  3749. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:307
  3750. msgctxt "@title:window"
  3751. msgid "Import Profile"
  3752. msgstr "Importer un profil"
  3753. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:336
  3754. msgctxt "@title:window"
  3755. msgid "Export Profile"
  3756. msgstr "Exporter un profil"
  3757. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:399
  3758. msgctxt "@label %1 is printer name"
  3759. msgid "Printer: %1"
  3760. msgstr "Imprimante : %1"
  3761. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:557
  3762. msgctxt "@action:button"
  3763. msgid "Update profile with current settings/overrides"
  3764. msgstr "Mettre à jour le profil à l'aide des paramètres / forçages actuels"
  3765. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:583
  3766. msgctxt "@action:label"
  3767. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3768. 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."
  3769. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:591
  3770. msgctxt "@action:label"
  3771. msgid "Your current settings match the selected profile."
  3772. msgstr "Vos paramètres actuels correspondent au profil sélectionné."
  3773. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:609
  3774. msgctxt "@title:tab"
  3775. msgid "Global Settings"
  3776. msgstr "Paramètres généraux"
  3777. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
  3778. msgctxt "@title:tab"
  3779. msgid "Setting Visibility"
  3780. msgstr "Visibilité des paramètres"
  3781. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
  3782. msgctxt "@label:textbox"
  3783. msgid "Check all"
  3784. msgstr "Vérifier tout"
  3785. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:15
  3786. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:450
  3787. msgctxt "@title:tab"
  3788. msgid "General"
  3789. msgstr "Général"
  3790. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:137
  3791. msgctxt "@label"
  3792. msgid "Interface"
  3793. msgstr "Interface"
  3794. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:216
  3795. msgctxt "@label"
  3796. msgid "Currency:"
  3797. msgstr "Devise :"
  3798. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:229
  3799. msgctxt "@label"
  3800. msgid "Theme:"
  3801. msgstr "Thème :"
  3802. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:285
  3803. msgctxt "@label"
  3804. msgid "You will need to restart the application for these changes to have effect."
  3805. msgstr "Vous devez redémarrer l'application pour que ces changements prennent effet."
  3806. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:302
  3807. msgctxt "@info:tooltip"
  3808. msgid "Slice automatically when changing settings."
  3809. msgstr "Découper automatiquement si les paramètres sont modifiés."
  3810. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:310
  3811. msgctxt "@option:check"
  3812. msgid "Slice automatically"
  3813. msgstr "Découper automatiquement"
  3814. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:324
  3815. msgctxt "@label"
  3816. msgid "Viewport behavior"
  3817. msgstr "Comportement Viewport"
  3818. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:332
  3819. msgctxt "@info:tooltip"
  3820. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3821. msgstr "Surligne les parties non supportées du modèle en rouge. Sans ajouter de support, ces zones ne s'imprimeront pas correctement."
  3822. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:341
  3823. msgctxt "@option:check"
  3824. msgid "Display overhang"
  3825. msgstr "Mettre en surbrillance les porte-à-faux"
  3826. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:351
  3827. msgctxt "@info:tooltip"
  3828. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3829. 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."
  3830. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:360
  3831. msgctxt "@option:check"
  3832. msgid "Display model errors"
  3833. msgstr "Afficher les erreurs du modèle"
  3834. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:368
  3835. msgctxt "@info:tooltip"
  3836. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3837. msgstr "Déplace la caméra afin que le modèle sélectionné se trouve au centre de la vue"
  3838. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:373
  3839. msgctxt "@action:button"
  3840. msgid "Center camera when item is selected"
  3841. msgstr "Centrer la caméra lorsqu'un élément est sélectionné"
  3842. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:383
  3843. msgctxt "@info:tooltip"
  3844. msgid "Should the default zoom behavior of cura be inverted?"
  3845. msgstr "Le comportement de zoom par défaut de Cura doit-il être inversé ?"
  3846. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:388
  3847. msgctxt "@action:button"
  3848. msgid "Invert the direction of camera zoom."
  3849. msgstr "Inverser la direction du zoom de la caméra."
  3850. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3851. msgctxt "@info:tooltip"
  3852. msgid "Should zooming move in the direction of the mouse?"
  3853. msgstr "Le zoom doit-il se faire dans la direction de la souris ?"
  3854. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3855. msgctxt "@info:tooltip"
  3856. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3857. msgstr "Le zoom vers la souris n'est pas pris en charge dans la perspective orthographique."
  3858. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:409
  3859. msgctxt "@action:button"
  3860. msgid "Zoom toward mouse direction"
  3861. msgstr "Zoomer vers la direction de la souris"
  3862. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:435
  3863. msgctxt "@info:tooltip"
  3864. msgid "Should models on the platform be moved so that they no longer intersect?"
  3865. msgstr "Les modèles dans la zone d'impression doivent-ils être déplacés afin de ne plus se croiser ?"
  3866. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:440
  3867. msgctxt "@option:check"
  3868. msgid "Ensure models are kept apart"
  3869. msgstr "Veillez à ce que les modèles restent séparés"
  3870. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:449
  3871. msgctxt "@info:tooltip"
  3872. msgid "Should models on the platform be moved down to touch the build plate?"
  3873. msgstr "Les modèles dans la zone d'impression doivent-ils être abaissés afin de toucher le plateau ?"
  3874. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:454
  3875. msgctxt "@option:check"
  3876. msgid "Automatically drop models to the build plate"
  3877. msgstr "Abaisser automatiquement les modèles sur le plateau"
  3878. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:466
  3879. msgctxt "@info:tooltip"
  3880. msgid "Show caution message in g-code reader."
  3881. msgstr "Afficher le message d'avertissement dans le lecteur G-Code."
  3882. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:475
  3883. msgctxt "@option:check"
  3884. msgid "Caution message in g-code reader"
  3885. msgstr "Message d'avertissement dans le lecteur G-Code"
  3886. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:483
  3887. msgctxt "@info:tooltip"
  3888. msgid "Should layer be forced into compatibility mode?"
  3889. msgstr "La couche doit-elle être forcée en mode de compatibilité ?"
  3890. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:488
  3891. msgctxt "@option:check"
  3892. msgid "Force layer view compatibility mode (restart required)"
  3893. msgstr "Forcer l'affichage de la couche en mode de compatibilité (redémarrage requis)"
  3894. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:498
  3895. msgctxt "@info:tooltip"
  3896. msgid "Should Cura open at the location it was closed?"
  3897. msgstr "Est-ce que Cura devrait ouvrir à l'endroit où il a été fermé ?"
  3898. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:503
  3899. msgctxt "@option:check"
  3900. msgid "Restore window position on start"
  3901. msgstr "Restaurer la position de la fenêtre au démarrage"
  3902. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:513
  3903. msgctxt "@info:tooltip"
  3904. msgid "What type of camera rendering should be used?"
  3905. msgstr "Quel type de rendu de la caméra doit-il être utilisé?"
  3906. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:520
  3907. msgctxt "@window:text"
  3908. msgid "Camera rendering:"
  3909. msgstr "Rendu caméra :"
  3910. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:531
  3911. msgid "Perspective"
  3912. msgstr "Perspective"
  3913. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:532
  3914. msgid "Orthographic"
  3915. msgstr "Orthographique"
  3916. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:563
  3917. msgctxt "@label"
  3918. msgid "Opening and saving files"
  3919. msgstr "Ouvrir et enregistrer des fichiers"
  3920. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:570
  3921. msgctxt "@info:tooltip"
  3922. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3923. msgstr "L'ouverture de fichiers à partir du bureau ou d'applications externes doit-elle se faire dans la même instance de Cura ?"
  3924. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:575
  3925. msgctxt "@option:check"
  3926. msgid "Use a single instance of Cura"
  3927. msgstr "Utiliser une seule instance de Cura"
  3928. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:585
  3929. msgctxt "@info:tooltip"
  3930. msgid "Should models be scaled to the build volume if they are too large?"
  3931. msgstr "Les modèles doivent-ils être mis à l'échelle du volume d'impression s'ils sont trop grands ?"
  3932. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:590
  3933. msgctxt "@option:check"
  3934. msgid "Scale large models"
  3935. msgstr "Réduire la taille des modèles trop grands"
  3936. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:600
  3937. msgctxt "@info:tooltip"
  3938. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3939. 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 ?"
  3940. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:605
  3941. msgctxt "@option:check"
  3942. msgid "Scale extremely small models"
  3943. msgstr "Mettre à l'échelle les modèles extrêmement petits"
  3944. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:615
  3945. msgctxt "@info:tooltip"
  3946. msgid "Should models be selected after they are loaded?"
  3947. msgstr "Les modèles doivent-ils être sélectionnés après leur chargement ?"
  3948. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:620
  3949. msgctxt "@option:check"
  3950. msgid "Select models when loaded"
  3951. msgstr "Sélectionner les modèles lorsqu'ils sont chargés"
  3952. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:630
  3953. msgctxt "@info:tooltip"
  3954. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3955. msgstr "Un préfixe basé sur le nom de l'imprimante doit-il être automatiquement ajouté au nom de la tâche d'impression ?"
  3956. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:635
  3957. msgctxt "@option:check"
  3958. msgid "Add machine prefix to job name"
  3959. msgstr "Ajouter le préfixe de la machine au nom de la tâche"
  3960. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:645
  3961. msgctxt "@info:tooltip"
  3962. msgid "Should a summary be shown when saving a project file?"
  3963. msgstr "Un résumé doit-il être affiché lors de l'enregistrement d'un fichier de projet ?"
  3964. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:649
  3965. msgctxt "@option:check"
  3966. msgid "Show summary dialog when saving project"
  3967. msgstr "Afficher la boîte de dialogue du résumé lors de l'enregistrement du projet"
  3968. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:659
  3969. msgctxt "@info:tooltip"
  3970. msgid "Default behavior when opening a project file"
  3971. msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet"
  3972. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:667
  3973. msgctxt "@window:text"
  3974. msgid "Default behavior when opening a project file: "
  3975. msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet : "
  3976. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:681
  3977. msgctxt "@option:openProject"
  3978. msgid "Always ask me this"
  3979. msgstr "Toujours me demander"
  3980. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:682
  3981. msgctxt "@option:openProject"
  3982. msgid "Always open as a project"
  3983. msgstr "Toujours ouvrir comme projet"
  3984. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:683
  3985. msgctxt "@option:openProject"
  3986. msgid "Always import models"
  3987. msgstr "Toujours importer les modèles"
  3988. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:719
  3989. msgctxt "@info:tooltip"
  3990. 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."
  3991. 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."
  3992. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:733
  3993. msgctxt "@window:text"
  3994. msgid "Default behavior for changed setting values when switching to a different profile: "
  3995. msgstr "Comportement par défaut pour les valeurs de paramètres modifiées lors du passage à un profil différent : "
  3996. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:748
  3997. msgctxt "@option:discardOrKeep"
  3998. msgid "Always discard changed settings"
  3999. msgstr "Toujours rejeter les paramètres modifiés"
  4000. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:749
  4001. msgctxt "@option:discardOrKeep"
  4002. msgid "Always transfer changed settings to new profile"
  4003. msgstr "Toujours transférer les paramètres modifiés dans le nouveau profil"
  4004. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:783
  4005. msgctxt "@label"
  4006. msgid "Privacy"
  4007. msgstr "Confidentialité"
  4008. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:790
  4009. msgctxt "@info:tooltip"
  4010. msgid "Should Cura check for updates when the program is started?"
  4011. msgstr "Cura doit-il vérifier les mises à jour au démarrage du programme ?"
  4012. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:795
  4013. msgctxt "@option:check"
  4014. msgid "Check for updates on start"
  4015. msgstr "Vérifier les mises à jour au démarrage"
  4016. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:805
  4017. msgctxt "@info:tooltip"
  4018. 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."
  4019. 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."
  4020. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:810
  4021. msgctxt "@option:check"
  4022. msgid "Send (anonymous) print information"
  4023. msgstr "Envoyer des informations (anonymes) sur l'impression"
  4024. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:819
  4025. msgctxt "@action:button"
  4026. msgid "More information"
  4027. msgstr "Plus d'informations"
  4028. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewsSelector.qml:50
  4029. msgctxt "@label"
  4030. msgid "View type"
  4031. msgstr "Type d'affichage"
  4032. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:119
  4033. msgctxt "@label:MonitorStatus"
  4034. msgid "Not connected to a printer"
  4035. msgstr "Non connecté à une imprimante"
  4036. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:123
  4037. msgctxt "@label:MonitorStatus"
  4038. msgid "Printer does not accept commands"
  4039. msgstr "L'imprimante n'accepte pas les commandes"
  4040. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:133
  4041. msgctxt "@label:MonitorStatus"
  4042. msgid "In maintenance. Please check the printer"
  4043. msgstr "En maintenance. Vérifiez l'imprimante"
  4044. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:144
  4045. msgctxt "@label:MonitorStatus"
  4046. msgid "Lost connection with the printer"
  4047. msgstr "Connexion avec l'imprimante perdue"
  4048. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:146
  4049. msgctxt "@label:MonitorStatus"
  4050. msgid "Printing..."
  4051. msgstr "Impression..."
  4052. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:149
  4053. msgctxt "@label:MonitorStatus"
  4054. msgid "Paused"
  4055. msgstr "En pause"
  4056. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:152
  4057. msgctxt "@label:MonitorStatus"
  4058. msgid "Preparing..."
  4059. msgstr "Préparation..."
  4060. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:154
  4061. msgctxt "@label:MonitorStatus"
  4062. msgid "Please remove the print"
  4063. msgstr "Supprimez l'imprimante"
  4064. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:326
  4065. msgctxt "@label"
  4066. msgid "Abort Print"
  4067. msgstr "Abandonner l'impression"
  4068. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:338
  4069. msgctxt "@label"
  4070. msgid "Are you sure you want to abort the print?"
  4071. msgstr "Êtes-vous sûr(e) de vouloir abandonner l'impression ?"
  4072. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:68
  4073. msgctxt "@label:textbox"
  4074. msgid "Search settings"
  4075. msgstr "Paramètres de recherche"
  4076. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:456
  4077. msgctxt "@action:menu"
  4078. msgid "Copy value to all extruders"
  4079. msgstr "Copier la valeur vers tous les extrudeurs"
  4080. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:465
  4081. msgctxt "@action:menu"
  4082. msgid "Copy all changed values to all extruders"
  4083. msgstr "Copier toutes les valeurs modifiées vers toutes les extrudeuses"
  4084. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:502
  4085. msgctxt "@action:menu"
  4086. msgid "Hide this setting"
  4087. msgstr "Masquer ce paramètre"
  4088. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:515
  4089. msgctxt "@action:menu"
  4090. msgid "Don't show this setting"
  4091. msgstr "Masquer ce paramètre"
  4092. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:519
  4093. msgctxt "@action:menu"
  4094. msgid "Keep this setting visible"
  4095. msgstr "Afficher ce paramètre"
  4096. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingCategory.qml:200
  4097. msgctxt "@label"
  4098. msgid ""
  4099. "Some hidden settings use values different from their normal calculated value.\n"
  4100. "\n"
  4101. "Click to make these settings visible."
  4102. msgstr ""
  4103. "Certains paramètres masqués utilisent des valeurs différentes de leur valeur normalement calculée.\n"
  4104. "\n"
  4105. "Cliquez pour rendre ces paramètres visibles."
  4106. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:81
  4107. msgctxt "@label"
  4108. msgid "This setting is not used because all the settings that it influences are overridden."
  4109. msgstr "Ce paramètre n'est pas utilisé car tous les paramètres qu'il influence sont remplacés."
  4110. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:86
  4111. msgctxt "@label Header for list of settings."
  4112. msgid "Affects"
  4113. msgstr "Touche"
  4114. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:91
  4115. msgctxt "@label Header for list of settings."
  4116. msgid "Affected By"
  4117. msgstr "Touché par"
  4118. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:187
  4119. msgctxt "@label"
  4120. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  4121. 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."
  4122. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:191
  4123. msgctxt "@label"
  4124. msgid "This setting is resolved from conflicting extruder-specific values:"
  4125. msgstr "Ce paramètre est résolu à partir de valeurs conflictuelles spécifiques à l'extrudeur :"
  4126. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:230
  4127. msgctxt "@label"
  4128. msgid ""
  4129. "This setting has a value that is different from the profile.\n"
  4130. "\n"
  4131. "Click to restore the value of the profile."
  4132. msgstr ""
  4133. "Ce paramètre possède une valeur qui est différente du profil.\n"
  4134. "\n"
  4135. "Cliquez pour restaurer la valeur du profil."
  4136. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:329
  4137. msgctxt "@label"
  4138. msgid ""
  4139. "This setting is normally calculated, but it currently has an absolute value set.\n"
  4140. "\n"
  4141. "Click to restore the calculated value."
  4142. msgstr ""
  4143. "Ce paramètre est normalement calculé mais il possède actuellement une valeur absolue définie.\n"
  4144. "\n"
  4145. "Cliquez pour restaurer la valeur calculée."
  4146. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:27
  4147. msgctxt "@info:tooltip"
  4148. msgid "3D View"
  4149. msgstr "Vue 3D"
  4150. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:40
  4151. msgctxt "@info:tooltip"
  4152. msgid "Front View"
  4153. msgstr "Vue de face"
  4154. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:53
  4155. msgctxt "@info:tooltip"
  4156. msgid "Top View"
  4157. msgstr "Vue du dessus"
  4158. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:66
  4159. msgctxt "@info:tooltip"
  4160. msgid "Left View"
  4161. msgstr "Vue gauche"
  4162. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:79
  4163. msgctxt "@info:tooltip"
  4164. msgid "Right View"
  4165. msgstr "Vue droite"
  4166. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  4167. msgctxt "@label"
  4168. msgid "Extruder"
  4169. msgstr "Extrudeuse"
  4170. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  4171. msgctxt "@tooltip"
  4172. 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."
  4173. 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é."
  4174. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  4175. msgctxt "@tooltip"
  4176. msgid "The current temperature of this hotend."
  4177. msgstr "Température actuelle de cette extrémité chauffante."
  4178. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  4179. msgctxt "@tooltip of temperature input"
  4180. msgid "The temperature to pre-heat the hotend to."
  4181. msgstr "Température jusqu'à laquelle préchauffer l'extrémité chauffante."
  4182. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
  4183. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  4184. msgctxt "@button Cancel pre-heating"
  4185. msgid "Cancel"
  4186. msgstr "Annuler"
  4187. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
  4188. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  4189. msgctxt "@button"
  4190. msgid "Pre-heat"
  4191. msgstr "Préchauffer"
  4192. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  4193. msgctxt "@tooltip of pre-heat"
  4194. 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."
  4195. 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."
  4196. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  4197. msgctxt "@tooltip"
  4198. msgid "The colour of the material in this extruder."
  4199. msgstr "Couleur du matériau dans cet extrudeur."
  4200. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  4201. msgctxt "@tooltip"
  4202. msgid "The material in this extruder."
  4203. msgstr "Matériau dans cet extrudeur."
  4204. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  4205. msgctxt "@tooltip"
  4206. msgid "The nozzle inserted in this extruder."
  4207. msgstr "Buse insérée dans cet extrudeur."
  4208. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  4209. msgctxt "@label"
  4210. msgid "Build plate"
  4211. msgstr "Plateau"
  4212. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  4213. msgctxt "@tooltip"
  4214. 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."
  4215. 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."
  4216. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  4217. msgctxt "@tooltip"
  4218. msgid "The current temperature of the heated bed."
  4219. msgstr "Température actuelle du plateau chauffant."
  4220. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  4221. msgctxt "@tooltip of temperature input"
  4222. msgid "The temperature to pre-heat the bed to."
  4223. msgstr "Température jusqu'à laquelle préchauffer le plateau."
  4224. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  4225. msgctxt "@tooltip of pre-heat"
  4226. 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."
  4227. 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."
  4228. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  4229. msgctxt "@label"
  4230. msgid "Printer control"
  4231. msgstr "Contrôle de l'imprimante"
  4232. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  4233. msgctxt "@label"
  4234. msgid "Jog Position"
  4235. msgstr "Position de coupe"
  4236. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  4237. msgctxt "@label"
  4238. msgid "X/Y"
  4239. msgstr "X/Y"
  4240. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  4241. msgctxt "@label"
  4242. msgid "Z"
  4243. msgstr "Z"
  4244. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  4245. msgctxt "@label"
  4246. msgid "Jog Distance"
  4247. msgstr "Distance de coupe"
  4248. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  4249. msgctxt "@label"
  4250. msgid "Send G-code"
  4251. msgstr "Envoyer G-Code"
  4252. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  4253. msgctxt "@tooltip of G-code command input"
  4254. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  4255. msgstr "Envoyer une commande G-Code personnalisée à l'imprimante connectée. Appuyez sur « Entrée » pour envoyer la commande."
  4256. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  4257. msgctxt "@info:status"
  4258. msgid "The printer is not connected."
  4259. msgstr "L'imprimante n'est pas connectée."
  4260. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:114
  4261. msgctxt "@label"
  4262. msgid "Is printed as support."
  4263. msgstr "Est imprimé comme support."
  4264. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:117
  4265. msgctxt "@label"
  4266. msgid "Other models overlapping with this model are modified."
  4267. msgstr "D'autres modèles qui se chevauchent avec ce modèle ont été modifiés."
  4268. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:120
  4269. msgctxt "@label"
  4270. msgid "Infill overlapping with this model is modified."
  4271. msgstr "Le chevauchement de remplissage avec ce modèle a été modifié."
  4272. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:123
  4273. msgctxt "@label"
  4274. msgid "Overlaps with this model are not supported."
  4275. msgstr "Les chevauchements avec ce modèle ne sont pas pris en charge."
  4276. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:130
  4277. msgctxt "@label %1 is the number of settings it overrides."
  4278. msgid "Overrides %1 setting."
  4279. msgid_plural "Overrides %1 settings."
  4280. msgstr[0] "Remplace le paramètre %1."
  4281. msgstr[1] "Remplace les paramètres %1."
  4282. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
  4283. msgctxt "@action:button"
  4284. msgid "Marketplace"
  4285. msgstr "Marché en ligne"
  4286. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  4287. msgctxt "@title:menu menubar:toplevel"
  4288. msgid "&Edit"
  4289. msgstr "&Modifier"
  4290. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
  4291. msgctxt "@title:menu menubar:toplevel"
  4292. msgid "E&xtensions"
  4293. msgstr "E&xtensions"
  4294. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
  4295. msgctxt "@title:menu menubar:toplevel"
  4296. msgid "P&references"
  4297. msgstr "P&références"
  4298. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
  4299. msgctxt "@title:menu menubar:toplevel"
  4300. msgid "&Help"
  4301. msgstr "&Aide"
  4302. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
  4303. msgctxt "@title:window"
  4304. msgid "New project"
  4305. msgstr "Nouveau projet"
  4306. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
  4307. msgctxt "@info:question"
  4308. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  4309. 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."
  4310. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:257
  4311. msgctxt "@label"
  4312. msgid "This package will be installed after restarting."
  4313. msgstr "Ce paquet sera installé après le redémarrage."
  4314. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:453
  4315. msgctxt "@title:tab"
  4316. msgid "Settings"
  4317. msgstr "Paramètres"
  4318. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:576
  4319. msgctxt "@title:window %1 is the application name"
  4320. msgid "Closing %1"
  4321. msgstr "Fermeture de %1"
  4322. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:577
  4323. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:589
  4324. msgctxt "@label %1 is the application name"
  4325. msgid "Are you sure you want to exit %1?"
  4326. msgstr "Voulez-vous vraiment quitter %1 ?"
  4327. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:737
  4328. msgctxt "@window:title"
  4329. msgid "Install Package"
  4330. msgstr "Installer le paquet"
  4331. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:745
  4332. msgctxt "@title:window"
  4333. msgid "Open File(s)"
  4334. msgstr "Ouvrir le(s) fichier(s)"
  4335. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:748
  4336. msgctxt "@text:window"
  4337. 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."
  4338. 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."
  4339. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:857
  4340. msgctxt "@title:window"
  4341. msgid "Add Printer"
  4342. msgstr "Ajouter une imprimante"
  4343. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:865
  4344. msgctxt "@title:window"
  4345. msgid "What's New"
  4346. msgstr "Quoi de neuf"
  4347. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  4348. msgctxt "@status"
  4349. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  4350. msgstr "L'imprimante cloud est hors ligne. Veuillez vérifier si l'imprimante est activée et connectée à Internet."
  4351. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  4352. msgctxt "@status"
  4353. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  4354. msgstr "Cette imprimante n'est pas associée à votre compte. Veuillez visiter l'Ultimaker Digital Factory pour établir une connexion."
  4355. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  4356. msgctxt "@status"
  4357. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  4358. msgstr "La connexion cloud est actuellement indisponible. Veuillez vous connecter pour connecter l'imprimante cloud."
  4359. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  4360. msgctxt "@status"
  4361. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  4362. msgstr "La connexion cloud est actuellement indisponible. Veuillez vérifier votre connexion Internet."
  4363. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
  4364. msgctxt "@button"
  4365. msgid "Add printer"
  4366. msgstr "Ajouter une imprimante"
  4367. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
  4368. msgctxt "@button"
  4369. msgid "Manage printers"
  4370. msgstr "Gérer les imprimantes"
  4371. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4372. msgctxt "@label"
  4373. msgid "Connected printers"
  4374. msgstr "Imprimantes connectées"
  4375. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4376. msgctxt "@label"
  4377. msgid "Preset printers"
  4378. msgstr "Imprimantes préréglées"
  4379. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ExtruderButton.qml:16
  4380. msgctxt "@label %1 is filled in with the name of an extruder"
  4381. msgid "Print Selected Model with %1"
  4382. msgid_plural "Print Selected Models with %1"
  4383. msgstr[0] "Imprimer le modèle sélectionné avec %1"
  4384. msgstr[1] "Imprimer les modèles sélectionnés avec %1"
  4385. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  4386. msgctxt "@label"
  4387. msgid "Time estimation"
  4388. msgstr "Estimation de durée"
  4389. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  4390. msgctxt "@label"
  4391. msgid "Material estimation"
  4392. msgstr "Estimation du matériau"
  4393. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  4394. msgctxt "@label m for meter"
  4395. msgid "%1m"
  4396. msgstr "%1m"
  4397. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  4398. msgctxt "@label g for grams"
  4399. msgid "%1g"
  4400. msgstr "%1g"
  4401. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  4402. msgctxt "@label:PrintjobStatus"
  4403. msgid "Slicing..."
  4404. msgstr "Découpe en cours..."
  4405. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
  4406. msgctxt "@label:PrintjobStatus"
  4407. msgid "Unable to slice"
  4408. msgstr "Impossible de découper"
  4409. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  4410. msgctxt "@button"
  4411. msgid "Processing"
  4412. msgstr "Traitement"
  4413. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  4414. msgctxt "@button"
  4415. msgid "Slice"
  4416. msgstr "Découper"
  4417. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
  4418. msgctxt "@label"
  4419. msgid "Start the slicing process"
  4420. msgstr "Démarrer le processus de découpe"
  4421. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
  4422. msgctxt "@button"
  4423. msgid "Cancel"
  4424. msgstr "Annuler"
  4425. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  4426. msgctxt "@label"
  4427. msgid "No time estimation available"
  4428. msgstr "Aucune estimation de la durée n'est disponible"
  4429. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  4430. msgctxt "@label"
  4431. msgid "No cost estimation available"
  4432. msgstr "Aucune estimation des coûts n'est disponible"
  4433. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  4434. msgctxt "@button"
  4435. msgid "Preview"
  4436. msgstr "Aperçu"
  4437. #: RemovableDriveOutputDevice/plugin.json
  4438. msgctxt "description"
  4439. msgid "Provides removable drive hotplugging and writing support."
  4440. msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible."
  4441. #: RemovableDriveOutputDevice/plugin.json
  4442. msgctxt "name"
  4443. msgid "Removable Drive Output Device Plugin"
  4444. msgstr "Plugin de périphérique de sortie sur disque amovible"
  4445. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4446. msgctxt "description"
  4447. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  4448. msgstr "Configurations des mises à niveau de Cura 3.5 vers Cura 4.0."
  4449. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4450. msgctxt "name"
  4451. msgid "Version Upgrade 3.5 to 4.0"
  4452. msgstr "Mise à niveau de 3.5 vers 4.0"
  4453. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4454. msgctxt "description"
  4455. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4456. msgstr "Mises à niveau des configurations de Cura 4.6.2 vers Cura 4.7."
  4457. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4458. msgctxt "name"
  4459. msgid "Version Upgrade 4.6.2 to 4.7"
  4460. msgstr "Mise à niveau de 4.6.2 vers 4.7"
  4461. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4462. msgctxt "description"
  4463. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4464. msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4."
  4465. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4466. msgctxt "name"
  4467. msgid "Version Upgrade 2.2 to 2.4"
  4468. msgstr "Mise à niveau de 2.2 vers 2.4"
  4469. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4470. msgctxt "description"
  4471. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  4472. msgstr "Configurations des mises à jour de Cura 4.2 vers Cura 4.3."
  4473. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4474. msgctxt "name"
  4475. msgid "Version Upgrade 4.2 to 4.3"
  4476. msgstr "Mise à jour de 4.2 vers 4.3"
  4477. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4478. msgctxt "description"
  4479. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  4480. msgstr "Mises à niveau des configurations de Cura 4.6.0 vers Cura 4.6.2."
  4481. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4482. msgctxt "name"
  4483. msgid "Version Upgrade 4.6.0 to 4.6.2"
  4484. msgstr "Mise à niveau de 4.6.0 vers 4.6.2"
  4485. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4486. msgctxt "description"
  4487. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  4488. msgstr "Met à niveau les configurations, de Cura 3.0 vers Cura 3.1."
  4489. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4490. msgctxt "name"
  4491. msgid "Version Upgrade 3.0 to 3.1"
  4492. msgstr "Mise à niveau de version, de 3.0 vers 3.1"
  4493. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4494. msgctxt "description"
  4495. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  4496. msgstr "Configurations des mises à niveau de Cura 4.0 vers Cura 4.1."
  4497. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4498. msgctxt "name"
  4499. msgid "Version Upgrade 4.0 to 4.1"
  4500. msgstr "Mise à niveau de 4.0 vers 4.1"
  4501. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4502. msgctxt "description"
  4503. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  4504. msgstr "Configurations des mises à niveau de Cura 2.6 vers Cura 2.7."
  4505. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4506. msgctxt "name"
  4507. msgid "Version Upgrade 2.6 to 2.7"
  4508. msgstr "Mise à niveau de 2.6 vers 2.7"
  4509. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4510. msgctxt "description"
  4511. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4512. msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6."
  4513. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4514. msgctxt "name"
  4515. msgid "Version Upgrade 2.5 to 2.6"
  4516. msgstr "Mise à niveau de 2.5 vers 2.6"
  4517. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4518. msgctxt "description"
  4519. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  4520. msgstr "Configurations des mises à jour de Cura 4.1 vers Cura 4.2."
  4521. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4522. msgctxt "name"
  4523. msgid "Version Upgrade 4.1 to 4.2"
  4524. msgstr "Mise à jour de 4.1 vers 4.2"
  4525. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4526. msgctxt "description"
  4527. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4528. msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2."
  4529. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4530. msgctxt "name"
  4531. msgid "Version Upgrade 2.1 to 2.2"
  4532. msgstr "Mise à niveau vers 2.1 vers 2.2"
  4533. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4534. msgctxt "description"
  4535. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4536. msgstr "Configurations des mises à niveau de Cura 3.2 vers Cura 3.3."
  4537. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4538. msgctxt "name"
  4539. msgid "Version Upgrade 3.2 to 3.3"
  4540. msgstr "Mise à niveau de 3.2 vers 3.3"
  4541. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4542. msgctxt "description"
  4543. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  4544. msgstr "Mises à niveau des configurations de Cura 4.5 vers Cura 4.6."
  4545. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4546. msgctxt "name"
  4547. msgid "Version Upgrade 4.5 to 4.6"
  4548. msgstr "Mise à niveau de 4.5 vers 4.6"
  4549. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4550. msgctxt "description"
  4551. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  4552. msgstr "Configurations des mises à niveau de Cura 4.4 vers Cura 4.5."
  4553. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4554. msgctxt "name"
  4555. msgid "Version Upgrade 4.4 to 4.5"
  4556. msgstr "Mise à niveau de 4.4 vers 4.5"
  4557. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4558. msgctxt "description"
  4559. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  4560. msgstr "Mises à niveau des configurations de Cura 4.7 vers Cura 4.8."
  4561. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4562. msgctxt "name"
  4563. msgid "Version Upgrade 4.7 to 4.8"
  4564. msgstr "Mise à niveau de 4.7 vers 4.8"
  4565. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4566. msgctxt "description"
  4567. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  4568. msgstr "Configurations des mises à niveau de Cura 3.3 vers Cura 3.4."
  4569. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4570. msgctxt "name"
  4571. msgid "Version Upgrade 3.3 to 3.4"
  4572. msgstr "Mise à niveau de 3.3 vers 3.4"
  4573. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4574. msgctxt "description"
  4575. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  4576. msgstr "Configurations des mises à niveau de Cura 4.3 vers Cura 4.4."
  4577. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4578. msgctxt "name"
  4579. msgid "Version Upgrade 4.3 to 4.4"
  4580. msgstr "Mise à niveau de 4.3 vers 4.4"
  4581. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4582. msgctxt "description"
  4583. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4584. msgstr "Configurations des mises à niveau de Cura 3.4 vers Cura 3.5."
  4585. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4586. msgctxt "name"
  4587. msgid "Version Upgrade 3.4 to 3.5"
  4588. msgstr "Mise à niveau de 3.4 vers 3.5"
  4589. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4590. msgctxt "description"
  4591. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4592. msgstr "Met à niveau les configurations, de Cura 2.7 vers Cura 3.0."
  4593. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4594. msgctxt "name"
  4595. msgid "Version Upgrade 2.7 to 3.0"
  4596. msgstr "Mise à niveau de version, de 2.7 vers 3.0"
  4597. #: AMFReader/plugin.json
  4598. msgctxt "description"
  4599. msgid "Provides support for reading AMF files."
  4600. msgstr "Fournit la prise en charge de la lecture de fichiers AMF."
  4601. #: AMFReader/plugin.json
  4602. msgctxt "name"
  4603. msgid "AMF Reader"
  4604. msgstr "Lecteur AMF"
  4605. #: GCodeProfileReader/plugin.json
  4606. msgctxt "description"
  4607. msgid "Provides support for importing profiles from g-code files."
  4608. msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code."
  4609. #: GCodeProfileReader/plugin.json
  4610. msgctxt "name"
  4611. msgid "G-code Profile Reader"
  4612. msgstr "Lecteur de profil G-Code"
  4613. #: FirmwareUpdater/plugin.json
  4614. msgctxt "description"
  4615. msgid "Provides a machine actions for updating firmware."
  4616. msgstr "Fournit à une machine des actions permettant la mise à jour du firmware."
  4617. #: FirmwareUpdater/plugin.json
  4618. msgctxt "name"
  4619. msgid "Firmware Updater"
  4620. msgstr "Programme de mise à jour du firmware"
  4621. #: X3DReader/plugin.json
  4622. msgctxt "description"
  4623. msgid "Provides support for reading X3D files."
  4624. msgstr "Fournit la prise en charge de la lecture de fichiers X3D."
  4625. #: X3DReader/plugin.json
  4626. msgctxt "name"
  4627. msgid "X3D Reader"
  4628. msgstr "Lecteur X3D"
  4629. #: Toolbox/plugin.json
  4630. msgctxt "description"
  4631. msgid "Find, manage and install new Cura packages."
  4632. msgstr "Rechercher, gérer et installer de nouveaux paquets Cura."
  4633. #: Toolbox/plugin.json
  4634. msgctxt "name"
  4635. msgid "Toolbox"
  4636. msgstr "Boîte à outils"
  4637. #: PerObjectSettingsTool/plugin.json
  4638. msgctxt "description"
  4639. msgid "Provides the Per Model Settings."
  4640. msgstr "Fournit les paramètres par modèle."
  4641. #: PerObjectSettingsTool/plugin.json
  4642. msgctxt "name"
  4643. msgid "Per Model Settings Tool"
  4644. msgstr "Outil de paramètres par modèle"
  4645. #: PostProcessingPlugin/plugin.json
  4646. msgctxt "description"
  4647. msgid "Extension that allows for user created scripts for post processing"
  4648. msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur"
  4649. #: PostProcessingPlugin/plugin.json
  4650. msgctxt "name"
  4651. msgid "Post Processing"
  4652. msgstr "Post-traitement"
  4653. #: CuraEngineBackend/plugin.json
  4654. msgctxt "description"
  4655. msgid "Provides the link to the CuraEngine slicing backend."
  4656. msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine."
  4657. #: CuraEngineBackend/plugin.json
  4658. msgctxt "name"
  4659. msgid "CuraEngine Backend"
  4660. msgstr "Système CuraEngine"
  4661. #: USBPrinting/plugin.json
  4662. msgctxt "description"
  4663. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4664. msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware."
  4665. #: USBPrinting/plugin.json
  4666. msgctxt "name"
  4667. msgid "USB printing"
  4668. msgstr "Impression par USB"
  4669. #: CuraProfileWriter/plugin.json
  4670. msgctxt "description"
  4671. msgid "Provides support for exporting Cura profiles."
  4672. msgstr "Fournit la prise en charge de l'exportation de profils Cura."
  4673. #: CuraProfileWriter/plugin.json
  4674. msgctxt "name"
  4675. msgid "Cura Profile Writer"
  4676. msgstr "Générateur de profil Cura"
  4677. #: UM3NetworkPrinting/plugin.json
  4678. msgctxt "description"
  4679. msgid "Manages network connections to Ultimaker networked printers."
  4680. msgstr "Gère les connexions réseau vers les imprimantes Ultimaker en réseau."
  4681. #: UM3NetworkPrinting/plugin.json
  4682. msgctxt "name"
  4683. msgid "Ultimaker Network Connection"
  4684. msgstr "Connexion réseau Ultimaker"
  4685. #: UltimakerMachineActions/plugin.json
  4686. msgctxt "description"
  4687. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4688. 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.)"
  4689. #: UltimakerMachineActions/plugin.json
  4690. msgctxt "name"
  4691. msgid "Ultimaker machine actions"
  4692. msgstr "Actions de la machine Ultimaker"
  4693. #: 3MFReader/plugin.json
  4694. msgctxt "description"
  4695. msgid "Provides support for reading 3MF files."
  4696. msgstr "Fournit la prise en charge de la lecture de fichiers 3MF."
  4697. #: 3MFReader/plugin.json
  4698. msgctxt "name"
  4699. msgid "3MF Reader"
  4700. msgstr "Lecteur 3MF"
  4701. #: GCodeGzWriter/plugin.json
  4702. msgctxt "description"
  4703. msgid "Writes g-code to a compressed archive."
  4704. msgstr "Enregistre le G-Code dans une archive compressée."
  4705. #: GCodeGzWriter/plugin.json
  4706. msgctxt "name"
  4707. msgid "Compressed G-code Writer"
  4708. msgstr "Générateur de G-Code compressé"
  4709. #: GCodeGzReader/plugin.json
  4710. msgctxt "description"
  4711. msgid "Reads g-code from a compressed archive."
  4712. msgstr "Lit le G-Code à partir d'une archive compressée."
  4713. #: GCodeGzReader/plugin.json
  4714. msgctxt "name"
  4715. msgid "Compressed G-code Reader"
  4716. msgstr "Lecteur G-Code compressé"
  4717. #: ModelChecker/plugin.json
  4718. msgctxt "description"
  4719. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4720. 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."
  4721. #: ModelChecker/plugin.json
  4722. msgctxt "name"
  4723. msgid "Model Checker"
  4724. msgstr "Contrôleur de modèle"
  4725. #: FirmwareUpdateChecker/plugin.json
  4726. msgctxt "description"
  4727. msgid "Checks for firmware updates."
  4728. msgstr "Vérifie les mises à jour du firmware."
  4729. #: FirmwareUpdateChecker/plugin.json
  4730. msgctxt "name"
  4731. msgid "Firmware Update Checker"
  4732. msgstr "Vérificateur des mises à jour du firmware"
  4733. #: GCodeReader/plugin.json
  4734. msgctxt "description"
  4735. msgid "Allows loading and displaying G-code files."
  4736. msgstr "Permet le chargement et l'affichage de fichiers G-Code."
  4737. #: GCodeReader/plugin.json
  4738. msgctxt "name"
  4739. msgid "G-code Reader"
  4740. msgstr "Lecteur G-Code"
  4741. #: SupportEraser/plugin.json
  4742. msgctxt "description"
  4743. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4744. msgstr "Crée un maillage effaceur pour bloquer l'impression du support en certains endroits"
  4745. #: SupportEraser/plugin.json
  4746. msgctxt "name"
  4747. msgid "Support Eraser"
  4748. msgstr "Effaceur de support"
  4749. #: TrimeshReader/plugin.json
  4750. msgctxt "description"
  4751. msgid "Provides support for reading model files."
  4752. msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D."
  4753. #: TrimeshReader/plugin.json
  4754. msgctxt "name"
  4755. msgid "Trimesh Reader"
  4756. msgstr "Lecteur de Trimesh"
  4757. #: SentryLogger/plugin.json
  4758. msgctxt "description"
  4759. msgid "Logs certain events so that they can be used by the crash reporter"
  4760. msgstr "Enregistre certains événements afin qu'ils puissent être utilisés par le rapporteur d'incident"
  4761. #: SentryLogger/plugin.json
  4762. msgctxt "name"
  4763. msgid "Sentry Logger"
  4764. msgstr "Journal d'événements dans Sentry"
  4765. #: UFPReader/plugin.json
  4766. msgctxt "description"
  4767. msgid "Provides support for reading Ultimaker Format Packages."
  4768. msgstr "Fournit un support pour la lecture des paquets de format Ultimaker."
  4769. #: UFPReader/plugin.json
  4770. msgctxt "name"
  4771. msgid "UFP Reader"
  4772. msgstr "Lecteur UFP"
  4773. #: LegacyProfileReader/plugin.json
  4774. msgctxt "description"
  4775. msgid "Provides support for importing profiles from legacy Cura versions."
  4776. msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures."
  4777. #: LegacyProfileReader/plugin.json
  4778. msgctxt "name"
  4779. msgid "Legacy Cura Profile Reader"
  4780. msgstr "Lecteur de profil Cura antérieur"
  4781. #: PrepareStage/plugin.json
  4782. msgctxt "description"
  4783. msgid "Provides a prepare stage in Cura."
  4784. msgstr "Fournit une étape de préparation dans Cura."
  4785. #: PrepareStage/plugin.json
  4786. msgctxt "name"
  4787. msgid "Prepare Stage"
  4788. msgstr "Étape de préparation"
  4789. #: MonitorStage/plugin.json
  4790. msgctxt "description"
  4791. msgid "Provides a monitor stage in Cura."
  4792. msgstr "Fournit une étape de surveillance dans Cura."
  4793. #: MonitorStage/plugin.json
  4794. msgctxt "name"
  4795. msgid "Monitor Stage"
  4796. msgstr "Étape de surveillance"
  4797. #: XRayView/plugin.json
  4798. msgctxt "description"
  4799. msgid "Provides the X-Ray view."
  4800. msgstr "Permet la vue Rayon-X."
  4801. #: XRayView/plugin.json
  4802. msgctxt "name"
  4803. msgid "X-Ray View"
  4804. msgstr "Vue Rayon-X"
  4805. #: 3MFWriter/plugin.json
  4806. msgctxt "description"
  4807. msgid "Provides support for writing 3MF files."
  4808. msgstr "Permet l'écriture de fichiers 3MF."
  4809. #: 3MFWriter/plugin.json
  4810. msgctxt "name"
  4811. msgid "3MF Writer"
  4812. msgstr "Générateur 3MF"
  4813. #: SliceInfoPlugin/plugin.json
  4814. msgctxt "description"
  4815. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4816. msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences."
  4817. #: SliceInfoPlugin/plugin.json
  4818. msgctxt "name"
  4819. msgid "Slice info"
  4820. msgstr "Information sur le découpage"
  4821. #: PreviewStage/plugin.json
  4822. msgctxt "description"
  4823. msgid "Provides a preview stage in Cura."
  4824. msgstr "Fournit une étape de prévisualisation dans Cura."
  4825. #: PreviewStage/plugin.json
  4826. msgctxt "name"
  4827. msgid "Preview Stage"
  4828. msgstr "Étape de prévisualisation"
  4829. #: SimulationView/plugin.json
  4830. msgctxt "description"
  4831. msgid "Provides the Simulation view."
  4832. msgstr "Fournit la Vue simulation."
  4833. #: SimulationView/plugin.json
  4834. msgctxt "name"
  4835. msgid "Simulation View"
  4836. msgstr "Vue simulation"
  4837. #: MachineSettingsAction/plugin.json
  4838. msgctxt "description"
  4839. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4840. msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)"
  4841. #: MachineSettingsAction/plugin.json
  4842. msgctxt "name"
  4843. msgid "Machine Settings Action"
  4844. msgstr "Action Paramètres de la machine"
  4845. #: XmlMaterialProfile/plugin.json
  4846. msgctxt "description"
  4847. msgid "Provides capabilities to read and write XML-based material profiles."
  4848. msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML."
  4849. #: XmlMaterialProfile/plugin.json
  4850. msgctxt "name"
  4851. msgid "Material Profiles"
  4852. msgstr "Profils matériels"
  4853. #: SolidView/plugin.json
  4854. msgctxt "description"
  4855. msgid "Provides a normal solid mesh view."
  4856. msgstr "Affiche une vue en maille solide normale."
  4857. #: SolidView/plugin.json
  4858. msgctxt "name"
  4859. msgid "Solid View"
  4860. msgstr "Vue solide"
  4861. #: CuraProfileReader/plugin.json
  4862. msgctxt "description"
  4863. msgid "Provides support for importing Cura profiles."
  4864. msgstr "Fournit la prise en charge de l'importation de profils Cura."
  4865. #: CuraProfileReader/plugin.json
  4866. msgctxt "name"
  4867. msgid "Cura Profile Reader"
  4868. msgstr "Lecteur de profil Cura"
  4869. #: UFPWriter/plugin.json
  4870. msgctxt "description"
  4871. msgid "Provides support for writing Ultimaker Format Packages."
  4872. msgstr "Permet l'écriture de fichiers Ultimaker Format Package."
  4873. #: UFPWriter/plugin.json
  4874. msgctxt "name"
  4875. msgid "UFP Writer"
  4876. msgstr "Générateur UFP"
  4877. #: GCodeWriter/plugin.json
  4878. msgctxt "description"
  4879. msgid "Writes g-code to a file."
  4880. msgstr "Enregistre le G-Code dans un fichier."
  4881. #: GCodeWriter/plugin.json
  4882. msgctxt "name"
  4883. msgid "G-code Writer"
  4884. msgstr "Générateur de G-Code"
  4885. #: ImageReader/plugin.json
  4886. msgctxt "description"
  4887. msgid "Enables ability to generate printable geometry from 2D image files."
  4888. msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D."
  4889. #: ImageReader/plugin.json
  4890. msgctxt "name"
  4891. msgid "Image Reader"
  4892. msgstr "Lecteur d'images"
  4893. #: CuraDrive/plugin.json
  4894. msgctxt "description"
  4895. msgid "Backup and restore your configuration."
  4896. msgstr "Sauvegardez et restaurez votre configuration."
  4897. #: CuraDrive/plugin.json
  4898. msgctxt "name"
  4899. msgid "Cura Backups"
  4900. msgstr "Sauvegardes Cura"
  4901. #~ msgctxt "@info:status"
  4902. #~ msgid "Global stack is missing."
  4903. #~ msgstr "Il manque la pile globale."
  4904. #~ msgctxt "@info:status"
  4905. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  4906. #~ msgstr "Votre modèle n'est pas fonctionnel. Les zones surlignées indiquent que des surfaces manquent ou sont étrangères."
  4907. #~ msgctxt "@info:title"
  4908. #~ msgid "Model errors"
  4909. #~ msgstr "Erreurs du modèle"
  4910. #~ msgctxt "@label:listbox"
  4911. #~ msgid "Layer thickness"
  4912. #~ msgstr "Épaisseur de la couche"
  4913. #~ msgctxt "@label"
  4914. #~ msgid "Your key to connected 3D printing"
  4915. #~ msgstr "Votre clé pour une impression 3D connectée"
  4916. #~ msgctxt "@text"
  4917. #~ msgid ""
  4918. #~ "- Customize your experience with more print profiles and plugins\n"
  4919. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  4920. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  4921. #~ msgstr ""
  4922. #~ "- Personnalisez votre expérience avec plus de profils d'impression et de plug-ins\n"
  4923. #~ "- Restez flexible en synchronisant votre configuration et en la chargeant n'importe où\n"
  4924. #~ "- Augmentez l'efficacité grâce à un flux de travail à distance sur les imprimantes Ultimaker"
  4925. #~ msgctxt "@button"
  4926. #~ msgid "Create account"
  4927. #~ msgstr "Créer un compte"
  4928. #~ msgctxt "@action:inmenu menubar:edit"
  4929. #~ msgid "Delete Selected Model"
  4930. #~ msgid_plural "Delete Selected Models"
  4931. #~ msgstr[0] "Supprimer le modèle sélectionné"
  4932. #~ msgstr[1] "Supprimer les modèles sélectionnés"
  4933. #~ msgctxt "@action:inmenu menubar:edit"
  4934. #~ msgid "Center Selected Model"
  4935. #~ msgid_plural "Center Selected Models"
  4936. #~ msgstr[0] "Centrer le modèle sélectionné"
  4937. #~ msgstr[1] "Centrer les modèles sélectionnés"
  4938. #~ msgctxt "@action:inmenu menubar:edit"
  4939. #~ msgid "Multiply Selected Model"
  4940. #~ msgid_plural "Multiply Selected Models"
  4941. #~ msgstr[0] "Multiplier le modèle sélectionné"
  4942. #~ msgstr[1] "Multiplier les modèles sélectionnés"
  4943. #~ msgctxt "@button"
  4944. #~ msgid "Finish"
  4945. #~ msgstr "Fin"
  4946. #~ msgctxt "@label"
  4947. #~ msgid "Ultimaker Account"
  4948. #~ msgstr "Compte Ultimaker"
  4949. #~ msgctxt "@text"
  4950. #~ msgid "Your key to connected 3D printing"
  4951. #~ msgstr "Votre clé pour une impression 3D connectée"
  4952. #~ msgctxt "@text"
  4953. #~ msgid "- Customize your experience with more print profiles and plugins"
  4954. #~ msgstr "- Personnalisez votre expérience avec plus de profils d'impression et de plug-ins"
  4955. #~ msgctxt "@text"
  4956. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  4957. #~ msgstr "- Restez flexible en synchronisant votre configuration et en la chargeant n'importe où"
  4958. #~ msgctxt "@text"
  4959. #~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  4960. #~ msgstr "- Augmentez l'efficacité avec un flux de travail à distance sur les imprimantes Ultimaker"
  4961. #~ msgctxt "@text"
  4962. #~ msgid ""
  4963. #~ "Please follow these steps to set up\n"
  4964. #~ "Ultimaker Cura. This will only take a few moments."
  4965. #~ msgstr ""
  4966. #~ "Veuillez suivre ces étapes pour configurer\n"
  4967. #~ "Ultimaker Cura. Cela ne prendra que quelques instants."
  4968. #~ msgctxt "@label"
  4969. #~ msgid "What's new in Ultimaker Cura"
  4970. #~ msgstr "Quoi de neuf dans Ultimaker Cura"
  4971. #~ msgctxt "@label ({} is object name)"
  4972. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  4973. #~ msgstr "Êtes-vous sûr de vouloir supprimer l'objet {} ? Cette action est irréversible !"
  4974. #~ msgctxt "@info:status"
  4975. #~ msgid "The selected model was too small to load."
  4976. #~ msgstr "Le modèle sélectionné était trop petit pour être chargé."
  4977. #~ msgctxt "@info:status"
  4978. #~ msgid "Successfully imported profile {0}"
  4979. #~ msgstr "Importation du profil {0} réussie"
  4980. #~ msgctxt "@info:status"
  4981. #~ msgid "Could not find a quality type {0} for the current configuration."
  4982. #~ msgstr "Impossible de trouver un type de qualité {0} pour la configuration actuelle."
  4983. #~ msgctxt "info:status"
  4984. #~ msgid "Adding printer {} ({}) from your account"
  4985. #~ msgstr "Ajout de l'imprimante {} ({}) à partir de votre compte"
  4986. #~ msgctxt "info:hidden list items"
  4987. #~ msgid "<li>... and {} others</li>"
  4988. #~ msgstr "<li>... et {} autres</li>"
  4989. #~ msgctxt "info:status"
  4990. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  4991. #~ msgstr "Imprimantes ajoutées à partir de Digital Factory : <ul>{} </ul>"
  4992. #~ msgctxt "info:status"
  4993. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  4994. #~ msgstr "<ul>{}</ul>Pour établir une connexion, veuillez visiter l'<a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  4995. #~ msgctxt "@label ({} is printer name)"
  4996. #~ msgid "{} will be removed until the next account sync. <br> To remove {} permanently, visit <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Are you sure you want to remove {} temporarily?"
  4997. #~ msgstr "{} sera supprimé(e) jusqu'à la prochaine synchronisation de compte. <br> Pour supprimer {} définitivement, visitez l'<a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Voulez-vous vraiment supprimer {} temporairement ?"
  4998. #~ msgctxt "@label"
  4999. #~ msgid ""
  5000. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  5001. #~ "Are you sure you want to continue?"
  5002. #~ msgstr ""
  5003. #~ "Vous êtes sur le point de supprimer {} imprimante(s) de Cura. Cette action est irréversible. \n"
  5004. #~ "Voulez-vous vraiment continuer ?"
  5005. #~ msgctxt "@label"
  5006. #~ msgid ""
  5007. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  5008. #~ "Are you sure you want to continue?"
  5009. #~ msgstr ""
  5010. #~ "Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible. \n"
  5011. #~ "Voulez-vous vraiment continuer ?"
  5012. #~ msgctxt "@action:ComboBox option"
  5013. #~ msgid "Update"
  5014. #~ msgstr "Mise à jour"
  5015. #~ msgctxt "@action:ComboBox option"
  5016. #~ msgid "Create new"
  5017. #~ msgstr "Créer"
  5018. #~ msgctxt "@label"
  5019. #~ msgid "Shared Heater"
  5020. #~ msgstr "Chauffage partagé"
  5021. #~ msgctxt "@info"
  5022. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  5023. #~ msgstr "La webcam n'est pas disponible car vous surveillez une imprimante cloud."
  5024. #~ msgctxt "@button"
  5025. #~ msgid "Ultimaker Digital Factory"
  5026. #~ msgstr "Ultimaker Digital Factory"
  5027. #~ msgctxt "@text:window, %1 is a profile name"
  5028. #~ msgid ""
  5029. #~ "You have customized some profile settings.\n"
  5030. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5031. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  5032. #~ msgstr ""
  5033. #~ "Vous avez personnalisé certains paramètres de votre profil.\n"
  5034. #~ "Souhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?\n"
  5035. #~ "Vous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'."
  5036. #~ msgctxt "@label"
  5037. #~ msgid "Overrides %1 setting."
  5038. #~ msgid_plural "Overrides %1 settings."
  5039. #~ msgstr[0] "Remplace le paramètre %1."
  5040. #~ msgstr[1] "Remplace les paramètres %1."
  5041. #~ msgctxt "@text"
  5042. #~ msgid "Please give your printer a name"
  5043. #~ msgstr "Veuillez donner un nom à votre imprimante"
  5044. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5045. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  5046. #~ msgstr "De nouvelles fonctionnalités sont disponibles pour votre {machine_name} ! Il est recommandé de mettre à jour le firmware sur votre imprimante."
  5047. #~ msgctxt "@action:button"
  5048. #~ msgid "Print via Cloud"
  5049. #~ msgstr "Imprimer via le cloud"
  5050. #~ msgctxt "@properties:tooltip"
  5051. #~ msgid "Print via Cloud"
  5052. #~ msgstr "Imprimer via le cloud"
  5053. #~ msgctxt "@info:status"
  5054. #~ msgid "Connected via Cloud"
  5055. #~ msgstr "Connecté via le cloud"
  5056. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5057. #~ msgid "Connect to Ultimaker Cloud"
  5058. #~ msgstr "Se connecter à Ultimaker Cloud"
  5059. #~ msgctxt "@label"
  5060. #~ msgid "You need to login first before you can rate"
  5061. #~ msgstr "Vous devez être connecté avant de pouvoir effectuer une évaluation"
  5062. #~ msgctxt "@label"
  5063. #~ msgid "You need to install the package before you can rate"
  5064. #~ msgstr "Vous devez installer le paquet avant de pouvoir effectuer une évaluation"
  5065. #~ msgctxt "@label"
  5066. #~ msgid "ratings"
  5067. #~ msgstr "évaluations"
  5068. #~ msgctxt "@label"
  5069. #~ msgid "Featured"
  5070. #~ msgstr "Fonctionnalités"
  5071. #~ msgctxt "@label"
  5072. #~ msgid "Your rating"
  5073. #~ msgstr "Votre évaluation"
  5074. #~ msgctxt "@label"
  5075. #~ msgid "Author"
  5076. #~ msgstr "Auteur"
  5077. #~ msgctxt "@description"
  5078. #~ msgid "Get plugins and materials verified by Ultimaker"
  5079. #~ msgstr "Faire vérifier les plugins et matériaux par Ultimaker"
  5080. #~ msgctxt "@label The argument is a username."
  5081. #~ msgid "Hi %1"
  5082. #~ msgstr "Bonjour %1"
  5083. #~ msgctxt "@button"
  5084. #~ msgid "Ultimaker account"
  5085. #~ msgstr "Compte Ultimaker"
  5086. #~ msgctxt "@button"
  5087. #~ msgid "Sign out"
  5088. #~ msgstr "Déconnexion"
  5089. #~ msgctxt "@label"
  5090. #~ msgid "Support library for analysis of complex networks"
  5091. #~ msgstr "Prise en charge de la bibliothèque pour l'analyse de réseaux complexes"
  5092. #~ msgctxt "@Label"
  5093. #~ msgid "Python HTTP library"
  5094. #~ msgstr "Bibliothèque Python HTTP"
  5095. #~ msgctxt "@text:window"
  5096. #~ msgid ""
  5097. #~ "You have customized some profile settings.\n"
  5098. #~ "Would you like to keep or discard those settings?"
  5099. #~ msgstr ""
  5100. #~ "Vous avez personnalisé certains paramètres du profil.\n"
  5101. #~ "Souhaitez-vous conserver ces changements, ou les annuler ?"
  5102. #~ msgctxt "@title:column"
  5103. #~ msgid "Default"
  5104. #~ msgstr "Par défaut"
  5105. #~ msgctxt "@title:column"
  5106. #~ msgid "Customized"
  5107. #~ msgstr "Personnalisé"
  5108. #~ msgctxt "@action:button"
  5109. #~ msgid "Discard"
  5110. #~ msgstr "Annuler"
  5111. #~ msgctxt "@action:button"
  5112. #~ msgid "Keep"
  5113. #~ msgstr "Conserver"
  5114. #~ msgctxt "@action:button"
  5115. #~ msgid "Create New Profile"
  5116. #~ msgstr "Créer un nouveau profil"
  5117. #~ msgctxt "@title:menu menubar:file"
  5118. #~ msgid "&Save..."
  5119. #~ msgstr "Enregi&strer..."
  5120. #~ msgctxt "@text"
  5121. #~ msgid "Place enter your printer's IP address."
  5122. #~ msgstr "Saisissez l'adresse IP de votre imprimante."
  5123. #~ msgctxt "@button"
  5124. #~ msgid "Create an account"
  5125. #~ msgstr "Créer un compte"
  5126. #~ msgctxt "@info:generic"
  5127. #~ msgid ""
  5128. #~ "\n"
  5129. #~ "Do you want to sync material and software packages with your account?"
  5130. #~ msgstr ""
  5131. #~ "\n"
  5132. #~ "Vous souhaitez synchroniser du matériel et des logiciels avec votre compte ?"
  5133. #~ msgctxt "@info:generic"
  5134. #~ msgid ""
  5135. #~ "\n"
  5136. #~ "Syncing..."
  5137. #~ msgstr ""
  5138. #~ "\n"
  5139. #~ "Synchronisation..."
  5140. #~ msgctxt "@info:status"
  5141. #~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder."
  5142. #~ msgstr "Rien à découper car les modèles ne conviennent pas au volume d'impression ou sont assignés à une extrudeuse désactivée. Mettez les modèles à l'échelle ou faites-les pivoter pour les faire correspondre, ou activez une extrudeuse."
  5143. #~ msgctxt "@info:backup_status"
  5144. #~ msgid "There was an error listing your backups."
  5145. #~ msgstr "Une erreur s’est produite lors du listage de vos sauvegardes."
  5146. #~ msgctxt "@title:groupbox"
  5147. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  5148. #~ msgstr "Description de l'utilisateur (Remarque : les développeurs peuvent ne pas partler votre langue. Veuillez utiliser l'anglais si possible)"
  5149. #~ msgctxt "@title:window"
  5150. #~ msgid "Closing Cura"
  5151. #~ msgstr "Fermeture de Cura"
  5152. #~ msgctxt "@label"
  5153. #~ msgid "Are you sure you want to exit Cura?"
  5154. #~ msgstr "Êtes-vous sûr de vouloir quitter Cura ?"
  5155. #~ msgctxt "@label"
  5156. #~ msgid "Language:"
  5157. #~ msgstr "Langue :"
  5158. #~ msgctxt "@label"
  5159. #~ msgid "Ultimaker Cloud"
  5160. #~ msgstr "Ultimaker Cloud"
  5161. #~ msgctxt "@text"
  5162. #~ msgid "The next generation 3D printing workflow"
  5163. #~ msgstr "Le flux d'impression 3D de nouvelle génération"
  5164. #~ msgctxt "@text"
  5165. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  5166. #~ msgstr "- Envoyez des tâches d'impression à des imprimantes Ultimaker hors de votre réseau local"
  5167. #~ msgctxt "@text"
  5168. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  5169. #~ msgstr "- Stockez vos paramètres Ultimaker Cura dans le cloud pour les utiliser où que vous soyez"
  5170. #~ msgctxt "@text"
  5171. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5172. #~ msgstr "- Accédez en exclusivité aux profils d'impression des plus grandes marques"
  5173. #~ msgctxt "@label"
  5174. #~ msgid "The value is resolved from per-extruder values "
  5175. #~ msgstr "La valeur est résolue à partir des valeurs par extrudeur "
  5176. #~ msgctxt "@label"
  5177. #~ msgid "The next generation 3D printing workflow"
  5178. #~ msgstr "Le flux d'impression 3D de nouvelle génération"
  5179. #~ msgctxt "@text"
  5180. #~ msgid ""
  5181. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5182. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5183. #~ "- Get exclusive access to print profiles from leading brands"
  5184. #~ msgstr ""
  5185. #~ "- Envoyez des tâches d'impression à des imprimantes Ultimaker hors de votre réseau local\n"
  5186. #~ "- Stockez vos paramètres Ultimaker Cura dans le cloud pour les utiliser où que vous soyez\n"
  5187. #~ "- Obtenez un accès exclusif aux profils d'impression des principales marques"
  5188. #~ msgctxt "@title:window"
  5189. #~ msgid "About "
  5190. #~ msgstr "À propos de... "
  5191. #~ msgctxt "@info:button"
  5192. #~ msgid "Quit Cura"
  5193. #~ msgstr "Quitter Cura"
  5194. #~ msgctxt "@action:checkbox"
  5195. #~ msgid "Infill only"
  5196. #~ msgstr "Remplissage uniquement"
  5197. #~ msgctxt "@info:tooltip"
  5198. #~ msgid "Change active post-processing scripts"
  5199. #~ msgstr "Modifier les scripts de post-traitement actifs"
  5200. #~ msgctxt "@label:listbox"
  5201. #~ msgid "Feedrate"
  5202. #~ msgstr "Taux d'alimentation"
  5203. #~ msgctxt "name"
  5204. #~ msgid "Machine Settings action"
  5205. #~ msgstr "Action Paramètres de la machine"
  5206. #~ msgctxt "@info:title"
  5207. #~ msgid "New cloud printers found"
  5208. #~ msgstr "Nouvelles imprimantes cloud trouvées"
  5209. #~ msgctxt "@info:message"
  5210. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5211. #~ msgstr "De nouvelles imprimantes ont été trouvées connectées à votre compte. Vous pouvez les trouver dans votre liste d'imprimantes découvertes."
  5212. #~ msgctxt "@info:status"
  5213. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5214. #~ msgstr "Cura n'affiche pas les couches avec précision lorsque l'impression filaire est activée"
  5215. #~ msgctxt "@label"
  5216. #~ msgid "Pre-sliced file {0}"
  5217. #~ msgstr "Fichier {0} prédécoupé"
  5218. #~ msgctxt "@label"
  5219. #~ msgid ""
  5220. #~ "This plugin contains a license.\n"
  5221. #~ "You need to accept this license to install this plugin.\n"
  5222. #~ "Do you agree with the terms below?"
  5223. #~ msgstr ""
  5224. #~ "Ce plug-in contient une licence.\n"
  5225. #~ "Vous devez approuver cette licence pour installer ce plug-in.\n"
  5226. #~ "Acceptez-vous les clauses ci-dessous ?"
  5227. #~ msgctxt "@action:button"
  5228. #~ msgid "Accept"
  5229. #~ msgstr "Accepter"
  5230. #~ msgctxt "@action:button"
  5231. #~ msgid "Decline"
  5232. #~ msgstr "Refuser"
  5233. #~ msgctxt "@action:inmenu"
  5234. #~ msgid "Show All Settings"
  5235. #~ msgstr "Afficher tous les paramètres"
  5236. #~ msgctxt "@title:window"
  5237. #~ msgid "Ultimaker Cura"
  5238. #~ msgstr "Ultimaker Cura"
  5239. #~ msgctxt "@title:window"
  5240. #~ msgid "About Cura"
  5241. #~ msgstr "À propos de Cura"
  5242. #~ msgctxt "@item:inmenu"
  5243. #~ msgid "Flatten active settings"
  5244. #~ msgstr "Aplatir les paramètres actifs"
  5245. #~ msgctxt "@info:status"
  5246. #~ msgid "Profile has been flattened & activated."
  5247. #~ msgstr "Le profil a été aplati et activé."
  5248. #~ msgctxt "X3g Writer Plugin Description"
  5249. #~ msgid "Writes X3g to files"
  5250. #~ msgstr "Écrit X3G dans des fichiers"
  5251. #~ msgctxt "X3g Writer File Description"
  5252. #~ msgid "X3g File"
  5253. #~ msgstr "Fichier X3G"
  5254. #~ msgctxt "X3G Writer File Description"
  5255. #~ msgid "X3G File"
  5256. #~ msgstr "Fichier X3G"
  5257. #~ msgctxt "@item:inlistbox"
  5258. #~ msgid "Open Compressed Triangle Mesh"
  5259. #~ msgstr "Ouvrir le maillage triangulaire compressé"
  5260. #~ msgctxt "@item:inmenu"
  5261. #~ msgid "Profile Assistant"
  5262. #~ msgstr "Assistant de profil"
  5263. #~ msgctxt "@item:inlistbox"
  5264. #~ msgid "Profile Assistant"
  5265. #~ msgstr "Assistant de profil"
  5266. #~ msgctxt "@action:button"
  5267. #~ msgid "Retry"
  5268. #~ msgstr "Réessayer"
  5269. #~ msgctxt "@label:table_header"
  5270. #~ msgid "Print Core"
  5271. #~ msgstr "Print Core"
  5272. #~ msgctxt "@label"
  5273. #~ msgid "Don't support overlap with other models"
  5274. #~ msgstr "Ne pas prendre en charge le chevauchement avec d'autres modèles"
  5275. #~ msgctxt "@label"
  5276. #~ msgid "Modify settings for overlap with other models"
  5277. #~ msgstr "Modifier les paramètres de chevauchement avec d'autres modèles"
  5278. #~ msgctxt "@label"
  5279. #~ msgid "Modify settings for infill of other models"
  5280. #~ msgstr "Modifier les paramètres de remplissage d'autres modèles"
  5281. #~ msgctxt "@action:ComboBox option"
  5282. #~ msgid "Update existing"
  5283. #~ msgstr "Mettre à jour l'existant"
  5284. #~ msgctxt "@label"
  5285. #~ msgid "Not supported"
  5286. #~ msgstr "Non pris en charge"
  5287. #~ msgctxt "@action:button"
  5288. #~ msgid "Previous"
  5289. #~ msgstr "Précédent"
  5290. #~ msgctxt "@label"
  5291. #~ msgid "Tip"
  5292. #~ msgstr "Astuce"
  5293. #~ msgctxt "@label"
  5294. #~ msgid "Print experiment"
  5295. #~ msgstr "Test d'impression"
  5296. #~ msgctxt "@label"
  5297. #~ msgid "Checklist"
  5298. #~ msgstr "Liste de contrôle"
  5299. #~ msgctxt "@label"
  5300. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  5301. #~ msgstr "Sélectionnez les mises à niveau disponibles pour cet Ultimaker 2."
  5302. #~ msgctxt "@label"
  5303. #~ msgid "Olsson Block"
  5304. #~ msgstr "Blocage Olsson"
  5305. #~ msgctxt "@window:text"
  5306. #~ msgid "Camera rendering: "
  5307. #~ msgstr "Rendu caméra : "
  5308. #~ msgctxt "@info:tooltip"
  5309. #~ msgid "Use multi build plate functionality"
  5310. #~ msgstr "Utiliser la fonctionnalité multi-plateau"
  5311. #~ msgctxt "@option:check"
  5312. #~ msgid "Use multi build plate functionality (restart required)"
  5313. #~ msgstr "Utiliser la fonctionnalité multi-plateau (redémarrage requis)"
  5314. #~ msgctxt "@label"
  5315. #~ msgid "Default profiles"
  5316. #~ msgstr "Profils par défaut"
  5317. #~ msgctxt "@label:textbox"
  5318. #~ msgid "search settings"
  5319. #~ msgstr "paramètres de recherche"
  5320. #~ msgctxt "@label"
  5321. #~ msgid "Layer Height"
  5322. #~ msgstr "Hauteur de la couche"
  5323. #~ msgctxt "@tooltip"
  5324. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  5325. #~ msgstr "Ce profil de qualité n'est pas disponible pour votre matériau et configuration des buses actuels. Veuillez modifier ces derniers pour activer ce profil de qualité."
  5326. #~ msgctxt "@tooltip"
  5327. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  5328. #~ msgstr "Un profil personnalisé est actuellement actif. Pour activer le curseur de qualité, choisissez un profil de qualité par défaut dans l'onglet Personnaliser"
  5329. #~ msgctxt "@title:menu"
  5330. #~ msgid "&Build plate"
  5331. #~ msgstr "Plateau"
  5332. #~ msgctxt "@title:settings"
  5333. #~ msgid "&Profile"
  5334. #~ msgstr "&Profil"
  5335. #~ msgctxt "@action:label"
  5336. #~ msgid "Build plate"
  5337. #~ msgstr "Plateau"
  5338. #~ msgctxt "description"
  5339. #~ msgid "Dump the contents of all settings to a HTML file."
  5340. #~ msgstr "Exporter les contenus de tous les paramètres vers un fichier HTML."
  5341. #~ msgctxt "name"
  5342. #~ msgid "God Mode"
  5343. #~ msgstr "Mode God"
  5344. #~ msgctxt "description"
  5345. #~ msgid "Create a flattened quality changes profile."
  5346. #~ msgstr "Créer un profil de changements de qualité aplati."
  5347. #~ msgctxt "name"
  5348. #~ msgid "Profile Flattener"
  5349. #~ msgstr "Aplatisseur de profil"
  5350. #~ msgctxt "description"
  5351. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  5352. #~ msgstr "Permet aux fabricants de matériaux de créer de nouveaux matériaux et profils de qualité à l'aide d'une interface utilisateur ad hoc."
  5353. #~ msgctxt "name"
  5354. #~ msgid "Print Profile Assistant"
  5355. #~ msgstr "Assistant de profil d'impression"
  5356. #~ msgctxt "@info:status"
  5357. #~ msgid "Connected over the network."
  5358. #~ msgstr "Connecté sur le réseau."
  5359. #~ msgctxt "@info:status"
  5360. #~ msgid "Connected over the network. Please approve the access request on the printer."
  5361. #~ msgstr "Connecté sur le réseau. Veuillez approuver la demande d'accès sur l'imprimante."
  5362. #~ msgctxt "@info:status"
  5363. #~ msgid "Connected over the network. No access to control the printer."
  5364. #~ msgstr "Connecté sur le réseau. Pas d'accès pour commander l'imprimante."
  5365. #~ msgctxt "@info:status"
  5366. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  5367. #~ msgstr "Accès à l'imprimante demandé. Veuillez approuver la demande sur l'imprimante"
  5368. #~ msgctxt "@info:title"
  5369. #~ msgid "Authentication status"
  5370. #~ msgstr "Statut d'authentification"
  5371. #~ msgctxt "@info:title"
  5372. #~ msgid "Authentication Status"
  5373. #~ msgstr "Statut d'authentification"
  5374. #~ msgctxt "@info:tooltip"
  5375. #~ msgid "Re-send the access request"
  5376. #~ msgstr "Renvoyer la demande d'accès"
  5377. #~ msgctxt "@info:status"
  5378. #~ msgid "Access to the printer accepted"
  5379. #~ msgstr "Accès à l'imprimante accepté"
  5380. #~ msgctxt "@info:status"
  5381. #~ msgid "No access to print with this printer. Unable to send print job."
  5382. #~ msgstr "Aucun accès pour imprimer avec cette imprimante. Impossible d'envoyer la tâche d'impression."
  5383. #~ msgctxt "@action:button"
  5384. #~ msgid "Request Access"
  5385. #~ msgstr "Demande d'accès"
  5386. #~ msgctxt "@info:tooltip"
  5387. #~ msgid "Send access request to the printer"
  5388. #~ msgstr "Envoyer la demande d'accès à l'imprimante"
  5389. #~ msgctxt "@label"
  5390. #~ msgid "Unable to start a new print job."
  5391. #~ msgstr "Impossible de démarrer une nouvelle tâche d'impression."
  5392. #~ msgctxt "@label"
  5393. #~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing."
  5394. #~ msgstr "Un problème avec la configuration de votre Ultimaker empêche le démarrage de l'impression. Veuillez résoudre ce problème avant de continuer."
  5395. #~ msgctxt "@window:title"
  5396. #~ msgid "Mismatched configuration"
  5397. #~ msgstr "Configuration différente"
  5398. #~ msgctxt "@label"
  5399. #~ msgid "Are you sure you wish to print with the selected configuration?"
  5400. #~ msgstr "Êtes-vous sûr(e) de vouloir imprimer avec la configuration sélectionnée ?"
  5401. #~ msgctxt "@label"
  5402. #~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  5403. #~ msgstr "Problème de compatibilité entre la configuration ou l'étalonnage de l'imprimante et Cura. Pour un résultat optimal, découpez toujours pour les PrintCores et matériaux insérés dans votre imprimante."
  5404. #~ msgctxt "@info:status"
  5405. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  5406. #~ msgstr "Envoi de nouvelles tâches (temporairement) bloqué, envoi de la tâche d'impression précédente en cours."
  5407. #~ msgctxt "@info:status"
  5408. #~ msgid "Sending data to printer"
  5409. #~ msgstr "Envoi des données à l'imprimante"
  5410. #~ msgctxt "@info:title"
  5411. #~ msgid "Sending Data"
  5412. #~ msgstr "Envoi des données"
  5413. #~ msgctxt "@info:status"
  5414. #~ msgid "No Printcore loaded in slot {slot_number}"
  5415. #~ msgstr "Pas de PrintCore inséré dans la fente {slot_number}"
  5416. #~ msgctxt "@info:status"
  5417. #~ msgid "No material loaded in slot {slot_number}"
  5418. #~ msgstr "Aucun matériau inséré dans la fente {slot_number}"
  5419. #~ msgctxt "@label"
  5420. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  5421. #~ msgstr "PrintCore différent (Cura : {cura_printcore_name}, Imprimante : {remote_printcore_name}) sélectionné pour l'extrudeuse {extruder_id}"
  5422. #~ msgctxt "@label"
  5423. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5424. #~ msgstr "Matériau différent (Cura : {0}, Imprimante : {1}) sélectionné pour l'extrudeuse {2}"
  5425. #~ msgctxt "@window:title"
  5426. #~ msgid "Sync with your printer"
  5427. #~ msgstr "Synchroniser avec votre imprimante"
  5428. #~ msgctxt "@label"
  5429. #~ msgid "Would you like to use your current printer configuration in Cura?"
  5430. #~ msgstr "Voulez-vous utiliser votre configuration d'imprimante actuelle dans Cura ?"
  5431. #~ msgctxt "@label"
  5432. #~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  5433. #~ msgstr "Les PrintCores et / ou matériaux sur votre imprimante diffèrent de ceux de votre projet actuel. Pour un résultat optimal, découpez toujours pour les PrintCores et matériaux insérés dans votre imprimante."
  5434. #~ msgctxt "@action:button"
  5435. #~ msgid "View in Monitor"
  5436. #~ msgstr "Afficher sur le moniteur"
  5437. #~ msgctxt "@info:status"
  5438. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  5439. #~ msgstr "{printer_name} a terminé d'imprimer '{job_name}'."
  5440. #~ msgctxt "@info:status"
  5441. #~ msgid "The print job '{job_name}' was finished."
  5442. #~ msgstr "La tâche d'impression '{job_name}' est terminée."
  5443. #~ msgctxt "@info:status"
  5444. #~ msgid "Print finished"
  5445. #~ msgstr "Impression terminée"
  5446. #~ msgctxt "@label:material"
  5447. #~ msgid "Empty"
  5448. #~ msgstr "Vide"
  5449. #~ msgctxt "@label:material"
  5450. #~ msgid "Unknown"
  5451. #~ msgstr "Inconnu"
  5452. #~ msgctxt "@info:title"
  5453. #~ msgid "Cloud error"
  5454. #~ msgstr "Erreur de cloud"
  5455. #~ msgctxt "@info:status"
  5456. #~ msgid "Could not export print job."
  5457. #~ msgstr "Impossible d'exporter la tâche d'impression."
  5458. #~ msgctxt "@info:description"
  5459. #~ msgid "There was an error connecting to the cloud."
  5460. #~ msgstr "Une erreur s'est produite lors de la connexion au cloud."
  5461. #~ msgctxt "@info:status"
  5462. #~ msgid "Uploading via Ultimaker Cloud"
  5463. #~ msgstr "Téléchargement via Ultimaker Cloud"
  5464. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  5465. #~ msgid "Connect to Ultimaker Cloud"
  5466. #~ msgstr "Se connecter à Ultimaker Cloud"
  5467. #~ msgctxt "@action"
  5468. #~ msgid "Don't ask me again for this printer."
  5469. #~ msgstr "Ne plus me demander pour cette imprimante."
  5470. #~ msgctxt "@info:status"
  5471. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  5472. #~ msgstr "Vous pouvez maintenant lancer et surveiller des impressions où que vous soyez avec votre compte Ultimaker."
  5473. #~ msgctxt "@info:status"
  5474. #~ msgid "Connected!"
  5475. #~ msgstr "Connecté !"
  5476. #~ msgctxt "@action"
  5477. #~ msgid "Review your connection"
  5478. #~ msgstr "Consulter votre connexion"
  5479. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  5480. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5481. #~ msgstr "La machine définie dans le profil <filename>{0}</filename> ({1}) ne correspond pas à votre machine actuelle ({2}) ; échec de l'importation."
  5482. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5483. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  5484. #~ msgstr "Échec de l'importation du profil depuis le fichier <filename>{0}</filename> :"
  5485. #~ msgctxt "@window:title"
  5486. #~ msgid "Existing Connection"
  5487. #~ msgstr "Connexion existante"
  5488. #~ msgctxt "@message:text"
  5489. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  5490. #~ msgstr "Ce groupe / cette imprimante a déjà été ajouté à Cura. Veuillez sélectionner un autre groupe / imprimante."
  5491. #~ msgctxt "@label"
  5492. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5493. #~ msgstr "Saisissez l'adresse IP ou le nom d'hôte de votre imprimante sur le réseau."
  5494. #~ msgctxt "@info:tooltip"
  5495. #~ msgid "Connect to a printer"
  5496. #~ msgstr "Connecter à une imprimante"
  5497. #~ msgctxt "@title"
  5498. #~ msgid "Cura Settings Guide"
  5499. #~ msgstr "Guide des paramètres de Cura"
  5500. #~ msgctxt "@info:tooltip"
  5501. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  5502. #~ msgstr "Zoom vers la souris n'est pas pris en charge dans la perspective orthogonale."
  5503. #~ msgid "Orthogonal"
  5504. #~ msgstr "Orthogonale"
  5505. #~ msgctxt "description"
  5506. #~ msgid "Manages network connections to Ultimaker 3 printers."
  5507. #~ msgstr "Gère les connexions réseau vers les imprimantes Ultimaker 3."
  5508. #~ msgctxt "name"
  5509. #~ msgid "UM3 Network Connection"
  5510. #~ msgstr "Connexion au réseau UM3"
  5511. #~ msgctxt "description"
  5512. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  5513. #~ msgstr "Fournit des informations et explications supplémentaires sur les paramètres de Cura, avec des images et des animations."
  5514. #~ msgctxt "name"
  5515. #~ msgid "Settings Guide"
  5516. #~ msgstr "Guide des paramètres"
  5517. #~ msgctxt "@item:inmenu"
  5518. #~ msgid "Cura Settings Guide"
  5519. #~ msgstr "Guide des paramètres de Cura"
  5520. #~ msgctxt "@info:generic"
  5521. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  5522. #~ msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles : [%s]"
  5523. #~ msgctxt "@title:groupbox"
  5524. #~ msgid "User description"
  5525. #~ msgstr "Description de l'utilisateur"
  5526. #~ msgctxt "@info"
  5527. #~ msgid "These options are not available because you are monitoring a cloud printer."
  5528. #~ msgstr "Ces options ne sont pas disponibles car vous surveillez une imprimante cloud."
  5529. #~ msgctxt "@label link to connect manager"
  5530. #~ msgid "Go to Cura Connect"
  5531. #~ msgstr "Aller à Cura Connect"
  5532. #~ msgctxt "@info"
  5533. #~ msgid "All jobs are printed."
  5534. #~ msgstr "Toutes les tâches ont été imprimées."
  5535. #~ msgctxt "@label link to connect manager"
  5536. #~ msgid "View print history"
  5537. #~ msgstr "Voir l'historique d'impression"
  5538. #~ msgctxt "@label"
  5539. #~ msgid ""
  5540. #~ "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer.\n"
  5541. #~ "\n"
  5542. #~ "Select your printer from the list below:"
  5543. #~ msgstr ""
  5544. #~ "Pour imprimer directement sur votre imprimante sur le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble réseau ou en connectant votre imprimante à votre réseau Wi-Fi. Si vous ne connectez pas Cura avec votre imprimante, vous pouvez utiliser une clé USB pour transférer les fichiers g-code sur votre imprimante.\n"
  5545. #~ "\n"
  5546. #~ "Sélectionnez votre imprimante dans la liste ci-dessous :"
  5547. #~ msgctxt "@info"
  5548. #~ msgid ""
  5549. #~ "Please make sure your printer has a connection:\n"
  5550. #~ "- Check if the printer is turned on.\n"
  5551. #~ "- Check if the printer is connected to the network."
  5552. #~ msgstr ""
  5553. #~ "Assurez-vous que votre imprimante est connectée :\n"
  5554. #~ "- Vérifiez si l'imprimante est sous tension.\n"
  5555. #~ "- Vérifiez si l'imprimante est connectée au réseau."
  5556. #~ msgctxt "@option:check"
  5557. #~ msgid "See only current build plate"
  5558. #~ msgstr "Afficher uniquement le plateau actuel"
  5559. #~ msgctxt "@action:button"
  5560. #~ msgid "Arrange to all build plates"
  5561. #~ msgstr "Réorganiser sur tous les plateaux"
  5562. #~ msgctxt "@action:button"
  5563. #~ msgid "Arrange current build plate"
  5564. #~ msgstr "Réorganiser le plateau actuel"
  5565. #~ msgctxt "description"
  5566. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  5567. #~ msgstr "Permet de sauvegarder la tranche résultante sous forme de fichier X3G, pour prendre en charge les imprimantes qui lisent ce format (Malyan, Makerbot et autres imprimantes basées sur Sailfish)."
  5568. #~ msgctxt "name"
  5569. #~ msgid "X3GWriter"
  5570. #~ msgstr "X3GWriter"
  5571. #~ msgctxt "description"
  5572. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  5573. #~ msgstr "Lit les fichiers SVG comme des Toolpaths, pour déboguer les mouvements de l'imprimante."
  5574. #~ msgctxt "name"
  5575. #~ msgid "SVG Toolpath Reader"
  5576. #~ msgstr "Lecteur de Toolpaths SVG"
  5577. #~ msgctxt "@item:inmenu"
  5578. #~ msgid "Changelog"
  5579. #~ msgstr "Récapitulatif des changements"
  5580. #~ msgctxt "@item:inmenu"
  5581. #~ msgid "Show Changelog"
  5582. #~ msgstr "Afficher le récapitulatif des changements"
  5583. #~ msgctxt "@info:status"
  5584. #~ msgid "Sending data to remote cluster"
  5585. #~ msgstr "Envoi de données à un cluster distant"
  5586. #~ msgctxt "@info:status"
  5587. #~ msgid "Connect to Ultimaker Cloud"
  5588. #~ msgstr "Se connecter à Ultimaker Cloud"
  5589. #~ msgctxt "@info"
  5590. #~ msgid "Cura collects anonymized usage statistics."
  5591. #~ msgstr "Cura recueille des statistiques d'utilisation anonymes."
  5592. #~ msgctxt "@info:title"
  5593. #~ msgid "Collecting Data"
  5594. #~ msgstr "Collecte des données"
  5595. #~ msgctxt "@action:button"
  5596. #~ msgid "More info"
  5597. #~ msgstr "Plus d'informations"
  5598. #~ msgctxt "@action:tooltip"
  5599. #~ msgid "See more information on what data Cura sends."
  5600. #~ msgstr "Voir plus d'informations sur les données envoyées par Cura."
  5601. #~ msgctxt "@action:button"
  5602. #~ msgid "Allow"
  5603. #~ msgstr "Autoriser"
  5604. #~ msgctxt "@action:tooltip"
  5605. #~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing."
  5606. #~ msgstr "Autoriser Cura à envoyer des statistiques d'utilisation anonymes pour mieux prioriser les améliorations futures apportées à Cura. Certaines de vos préférences et paramètres sont envoyés, ainsi que la version du logiciel Cura et un hachage des modèles que vous découpez."
  5607. #~ msgctxt "@item:inmenu"
  5608. #~ msgid "Evaluation"
  5609. #~ msgstr "Évaluation"
  5610. #~ msgctxt "@info:title"
  5611. #~ msgid "Network enabled printers"
  5612. #~ msgstr "Imprimantes réseau"
  5613. #~ msgctxt "@info:title"
  5614. #~ msgid "Local printers"
  5615. #~ msgstr "Imprimantes locales"
  5616. #~ msgctxt "@info:backup_failed"
  5617. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  5618. #~ msgstr "A essayé de restaurer une sauvegarde Cura qui ne correspond pas à votre version actuelle."
  5619. #~ msgctxt "@title"
  5620. #~ msgid "Machine Settings"
  5621. #~ msgstr "Paramètres de la machine"
  5622. #~ msgctxt "@label"
  5623. #~ msgid "Printer Settings"
  5624. #~ msgstr "Paramètres de l'imprimante"
  5625. #~ msgctxt "@option:check"
  5626. #~ msgid "Origin at center"
  5627. #~ msgstr "Origine au centre"
  5628. #~ msgctxt "@option:check"
  5629. #~ msgid "Heated bed"
  5630. #~ msgstr "Plateau chauffant"
  5631. #~ msgctxt "@label"
  5632. #~ msgid "Printhead Settings"
  5633. #~ msgstr "Paramètres de la tête d'impression"
  5634. #~ msgctxt "@tooltip"
  5635. #~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5636. #~ msgstr "Distance entre la gauche de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »."
  5637. #~ msgctxt "@tooltip"
  5638. #~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5639. #~ msgstr "Distance entre le devant de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »."
  5640. #~ msgctxt "@tooltip"
  5641. #~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5642. #~ msgstr "Distance entre la droite de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »."
  5643. #~ msgctxt "@tooltip"
  5644. #~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5645. #~ msgstr "Distance entre le dos de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »."
  5646. #~ msgctxt "@label"
  5647. #~ msgid "Gantry height"
  5648. #~ msgstr "Hauteur du portique"
  5649. #~ msgctxt "@tooltip"
  5650. #~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"."
  5651. #~ msgstr "La différence de hauteur entre la pointe de la buse et le système de portique (axes X et Y). Permet d'empêcher les collisions entre les impressions précédentes et le portique lors d'une impression « Un à la fois »."
  5652. #~ msgctxt "@label"
  5653. #~ msgid "Start G-code"
  5654. #~ msgstr "G-Code de démarrage"
  5655. #~ msgctxt "@tooltip"
  5656. #~ msgid "G-code commands to be executed at the very start."
  5657. #~ msgstr "Commandes G-Code à exécuter au tout début."
  5658. #~ msgctxt "@label"
  5659. #~ msgid "End G-code"
  5660. #~ msgstr "G-Code de fin"
  5661. #~ msgctxt "@tooltip"
  5662. #~ msgid "G-code commands to be executed at the very end."
  5663. #~ msgstr "Commandes G-Code à exécuter tout à la fin."
  5664. #~ msgctxt "@label"
  5665. #~ msgid "Nozzle Settings"
  5666. #~ msgstr "Paramètres de la buse"
  5667. #~ msgctxt "@tooltip"
  5668. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  5669. #~ msgstr "Le diamètre nominal de filament pris en charge par l'imprimante. Le diamètre exact sera remplacé par le matériau et / ou le profil."
  5670. #~ msgctxt "@label"
  5671. #~ msgid "Extruder Start G-code"
  5672. #~ msgstr "Extrudeuse G-Code de démarrage"
  5673. #~ msgctxt "@label"
  5674. #~ msgid "Extruder End G-code"
  5675. #~ msgstr "Extrudeuse G-Code de fin"
  5676. #~ msgctxt "@label"
  5677. #~ msgid "Changelog"
  5678. #~ msgstr "Récapitulatif des changements"
  5679. #~ msgctxt "@title:window"
  5680. #~ msgid "User Agreement"
  5681. #~ msgstr "Accord utilisateur"
  5682. #~ msgctxt "@alabel"
  5683. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5684. #~ msgstr "Saisissez l'adresse IP ou le nom d'hôte de votre imprimante sur le réseau."
  5685. #~ msgctxt "@info"
  5686. #~ msgid "Please select a network connected printer to monitor."
  5687. #~ msgstr "Veuillez sélectionner une imprimante à surveiller qui est connectée au réseau."
  5688. #~ msgctxt "@info"
  5689. #~ msgid "Please connect your Ultimaker printer to your local network."
  5690. #~ msgstr "Veuillez connecter votre imprimante Ultimaker à votre réseau local."
  5691. #~ msgctxt "@text:window"
  5692. #~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent."
  5693. #~ msgstr "Cura envoie des données anonymes à Ultimaker afin d'améliorer la qualité d'impression et l'expérience utilisateur. Voici un exemple de toutes les données envoyées."
  5694. #~ msgctxt "@text:window"
  5695. #~ msgid "I don't want to send this data"
  5696. #~ msgstr "Je ne veux pas envoyer ces données"
  5697. #~ msgctxt "@text:window"
  5698. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  5699. #~ msgstr "Permettre l'envoi de ces données à Ultimaker et nous aider à améliorer Cura"
  5700. #~ msgctxt "@label"
  5701. #~ msgid "No print selected"
  5702. #~ msgstr "Aucune impression sélectionnée"
  5703. #~ msgctxt "@info:tooltip"
  5704. #~ msgid "By default, white pixels represent high points on the mesh and black pixels represent low points on the mesh. Change this option to reverse the behavior such that black pixels represent high points on the mesh and white pixels represent low points on the mesh."
  5705. #~ msgstr "Par défaut, les pixels blancs représentent les points hauts sur la maille tandis que les pixels noirs représentent les points bas sur la maille. Modifiez cette option pour inverser le comportement de manière à ce que les pixels noirs représentent les points hauts sur la maille et les pixels blancs les points bas."
  5706. #~ msgctxt "@title"
  5707. #~ msgid "Select Printer Upgrades"
  5708. #~ msgstr "Sélectionner les mises à niveau de l'imprimante"
  5709. #~ msgctxt "@label"
  5710. #~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  5711. #~ msgstr "Sélectionnez l'extrudeur à utiliser comme support. Cela créera des structures de support sous le modèle afin de l'empêcher de s'affaisser ou de s'imprimer dans les airs."
  5712. #~ msgctxt "@tooltip"
  5713. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  5714. #~ msgstr "Ce profil de qualité n'est pas disponible pour votre matériau et configuration des buses actuels. Veuillez modifier ces derniers pour activer ce profil de qualité."
  5715. #~ msgctxt "@label shown when we load a Gcode file"
  5716. #~ msgid "Print setup disabled. G code file can not be modified."
  5717. #~ msgstr "Configuration d'impression désactivée. Le fichier G-Code ne peut pas être modifié."
  5718. #~ msgctxt "@label"
  5719. #~ msgid "See the material compatibility chart"
  5720. #~ msgstr "Voir le tableau de compatibilité des matériaux"
  5721. #~ msgctxt "@label"
  5722. #~ msgid "View types"
  5723. #~ msgstr "Types d'affichages"
  5724. #~ msgctxt "@label"
  5725. #~ msgid "Hi "
  5726. #~ msgstr "Bonjour "
  5727. #~ msgctxt "@text"
  5728. #~ msgid ""
  5729. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5730. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5731. #~ "- Get exclusive access to material profiles from leading brands"
  5732. #~ msgstr ""
  5733. #~ "- Envoyez des tâches d'impression à des imprimantes Ultimaker hors de votre réseau local\n"
  5734. #~ "- Stockez vos paramètres Ultimaker Cura dans le cloud pour les utiliser où que vous soyez\n"
  5735. #~ "- Obtenez un accès exclusif aux profils de matériaux des principales marques"
  5736. #~ msgctxt "@label:PrintjobStatus"
  5737. #~ msgid "Unable to Slice"
  5738. #~ msgstr "Impossible de découper"
  5739. #~ msgctxt "@label"
  5740. #~ msgid "Time specification"
  5741. #~ msgstr "Spécification de durée"
  5742. #~ msgctxt "@label"
  5743. #~ msgid "Material specification"
  5744. #~ msgstr "Spécification des matériaux"
  5745. #~ msgctxt "@title:tab"
  5746. #~ msgid "Add a printer to Cura"
  5747. #~ msgstr "Ajouter une imprimante à Cura"
  5748. #~ msgctxt "@title:tab"
  5749. #~ msgid ""
  5750. #~ "Select the printer you want to use from the list below.\n"
  5751. #~ "\n"
  5752. #~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog."
  5753. #~ msgstr ""
  5754. #~ "Sélectionnez l'imprimante que vous voulez utiliser dans la liste ci-dessous.\n"
  5755. #~ "\n"
  5756. #~ "Si votre imprimante n'est pas dans la liste, utilisez l'imprimante « Imprimante FFF personnalisée » de la catégorie « Personnalisé » et ajustez les paramètres pour qu'ils correspondent à votre imprimante dans le dialogue suivant."
  5757. #~ msgctxt "@label"
  5758. #~ msgid "Printer Name"
  5759. #~ msgstr "Nom de l'imprimante"
  5760. #~ msgctxt "@action:button"
  5761. #~ msgid "Add Printer"
  5762. #~ msgstr "Ajouter une imprimante"
  5763. #~ msgid "Modify G-Code"
  5764. #~ msgstr "Modifier le G-Code"
  5765. #~ msgctxt "@info:status"
  5766. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  5767. #~ msgstr "Rien à couper car aucun des modèles ne convient au volume d'impression. Mettez à l'échelle ou faites pivoter les modèles pour les faire correspondre."
  5768. #~ msgctxt "@info:status"
  5769. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  5770. #~ msgstr "Le matériau sélectionné est incompatible avec la machine ou la configuration sélectionnée."
  5771. #~ msgctxt "@info:title"
  5772. #~ msgid "Incompatible Material"
  5773. #~ msgstr "Matériau incompatible"
  5774. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5775. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  5776. #~ msgstr "Échec de l'importation du profil depuis le fichier <filename>{0}</filename> : <message>{1}</message>"
  5777. #~ msgctxt "@title"
  5778. #~ msgid "Toolbox"
  5779. #~ msgstr "Boîte à outils"
  5780. #~ msgctxt "@label"
  5781. #~ msgid "Not available"
  5782. #~ msgstr "Non disponible"
  5783. #~ msgctxt "@label"
  5784. #~ msgid "Unreachable"
  5785. #~ msgstr "Injoignable"
  5786. #~ msgctxt "@label"
  5787. #~ msgid "Available"
  5788. #~ msgstr "Disponible"
  5789. #~ msgctxt "@label:status"
  5790. #~ msgid "Preparing"
  5791. #~ msgstr "Préparation"
  5792. #~ msgctxt "@label:status"
  5793. #~ msgid "Pausing"
  5794. #~ msgstr "Mise en pause"
  5795. #~ msgctxt "@label:status"
  5796. #~ msgid "Resuming"
  5797. #~ msgstr "Reprise"
  5798. #~ msgctxt "@label"
  5799. #~ msgid "Waiting for: Unavailable printer"
  5800. #~ msgstr "En attente : imprimante non disponible"
  5801. #~ msgctxt "@label"
  5802. #~ msgid "Waiting for: First available"
  5803. #~ msgstr "En attente : première imprimante disponible"
  5804. #~ msgctxt "@label"
  5805. #~ msgid "Waiting for: "
  5806. #~ msgstr "En attente : "
  5807. #~ msgctxt "@label"
  5808. #~ msgid "Configuration change"
  5809. #~ msgstr "Modification des configurations"
  5810. #~ msgctxt "@label"
  5811. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  5812. #~ msgstr "L'imprimante assignée, %1, nécessite d'apporter la ou les modifications suivantes à la configuration :"
  5813. #~ msgctxt "@label"
  5814. #~ msgid "Override"
  5815. #~ msgstr "Remplacer"
  5816. #~ msgctxt "@label"
  5817. #~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?"
  5818. #~ msgstr "Le fait de démarrer un travail d'impression avec une configuration incompatible peut endommager votre imprimante 3D. Êtes-vous sûr de vouloir remplacer la configuration et imprimer %1 ?"
  5819. #~ msgctxt "@window:title"
  5820. #~ msgid "Override configuration configuration and start print"
  5821. #~ msgstr "Remplacer la configuration et lancer l'impression"
  5822. #~ msgctxt "@label link to connect manager"
  5823. #~ msgid "Manage queue"
  5824. #~ msgstr "Gérer la file d'attente"
  5825. #~ msgctxt "@label"
  5826. #~ msgid "Printing"
  5827. #~ msgstr "Impression"
  5828. #~ msgctxt "@label link to connect manager"
  5829. #~ msgid "Manage printers"
  5830. #~ msgstr "Gérer les imprimantes"
  5831. #~ msgctxt "@action:button"
  5832. #~ msgid "Activate Configuration"
  5833. #~ msgstr "Activer la configuration"
  5834. #~ msgctxt "@info:tooltip"
  5835. #~ msgid "Load the configuration of the printer into Cura"
  5836. #~ msgstr "Charger la configuration de l'imprimante dans Cura"
  5837. #~ msgctxt "@label"
  5838. #~ msgid "Show Travels"
  5839. #~ msgstr "Afficher les déplacements"
  5840. #~ msgctxt "@label"
  5841. #~ msgid "Show Helpers"
  5842. #~ msgstr "Afficher les aides"
  5843. #~ msgctxt "@label"
  5844. #~ msgid "Show Shell"
  5845. #~ msgstr "Afficher la coque"
  5846. #~ msgctxt "@label"
  5847. #~ msgid "Show Infill"
  5848. #~ msgstr "Afficher le remplissage"
  5849. #~ msgctxt "@text:window"
  5850. #~ msgid "I don't want to send these data"
  5851. #~ msgstr "Je ne veux pas envoyer ces données"
  5852. #~ msgctxt "@text:window"
  5853. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  5854. #~ msgstr "Permettre l'envoi de ces données à Ultimaker et nous aider à améliorer Cura"
  5855. #~ msgctxt "@label"
  5856. #~ msgid "Printer type:"
  5857. #~ msgstr "Type d'imprimante :"
  5858. #~ msgctxt "@label"
  5859. #~ msgid "Connection:"
  5860. #~ msgstr "Connexion :"
  5861. #~ msgctxt "@label"
  5862. #~ msgid "State:"
  5863. #~ msgstr "État :"
  5864. #~ msgctxt "@label:MonitorStatus"
  5865. #~ msgid "Waiting for a printjob"
  5866. #~ msgstr "En attente d'une tâche d'impression"
  5867. #~ msgctxt "@label:MonitorStatus"
  5868. #~ msgid "Waiting for someone to clear the build plate"
  5869. #~ msgstr "En attente du dégagement du plateau"
  5870. #~ msgctxt "@label:MonitorStatus"
  5871. #~ msgid "Aborting print..."
  5872. #~ msgstr "Abandon de l'impression..."
  5873. #~ msgctxt "@label"
  5874. #~ msgid "Protected profiles"
  5875. #~ msgstr "Profils protégés"
  5876. #~ msgctxt "@label"
  5877. #~ msgid "Printer Name:"
  5878. #~ msgstr "Nom de l'imprimante :"
  5879. #~ msgctxt "@label"
  5880. #~ msgid "Profile:"
  5881. #~ msgstr "Profil :"
  5882. #~ msgctxt "@label:textbox"
  5883. #~ msgid "Search..."
  5884. #~ msgstr "Rechercher..."
  5885. #~ msgctxt "@action:inmenu"
  5886. #~ msgid "Collapse All"
  5887. #~ msgstr "Réduire tout"
  5888. #~ msgctxt "@action:inmenu"
  5889. #~ msgid "Expand All"
  5890. #~ msgstr "Développer tout"
  5891. #~ msgctxt "@label:header configurations"
  5892. #~ msgid "Available configurations"
  5893. #~ msgstr "Configurations disponibles"
  5894. #~ msgctxt "@label:extruder label"
  5895. #~ msgid "Extruder"
  5896. #~ msgstr "Extrudeuse"
  5897. #~ msgctxt "@label:extruder label"
  5898. #~ msgid "Yes"
  5899. #~ msgstr "Oui"
  5900. #~ msgctxt "@label:extruder label"
  5901. #~ msgid "No"
  5902. #~ msgstr "Non"
  5903. #~ msgctxt "@label:listbox"
  5904. #~ msgid "Print Setup"
  5905. #~ msgstr "Configuration de l'impression"
  5906. #~ msgctxt "@label:listbox"
  5907. #~ msgid ""
  5908. #~ "Print Setup disabled\n"
  5909. #~ "G-code files cannot be modified"
  5910. #~ msgstr ""
  5911. #~ "Configuration de l'impression désactivée\n"
  5912. #~ "Les fichiers G-Code ne peuvent pas être modifiés"
  5913. #~ msgctxt "@label Hours and minutes"
  5914. #~ msgid "00h 00min"
  5915. #~ msgstr "00h 00min"
  5916. #~ msgctxt "@tooltip"
  5917. #~ msgid "Time specification"
  5918. #~ msgstr "Spécification de temps"
  5919. #~ msgctxt "@label"
  5920. #~ msgid "Cost specification"
  5921. #~ msgstr "Spécification de coût"
  5922. #~ msgctxt "@label"
  5923. #~ msgid "Total:"
  5924. #~ msgstr "Total :"
  5925. #~ msgctxt "@tooltip"
  5926. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  5927. #~ msgstr "<b>Configuration de l'impression recommandée</b><br/><br/>Imprimer avec les paramètres recommandés pour l'imprimante, le matériau et la qualité sélectionnés."
  5928. #~ msgctxt "@tooltip"
  5929. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  5930. #~ msgstr "<b>Configuration de l'impression personnalisée</b><br/><br/>Imprimer avec un contrôle fin de chaque élément du processus de découpe."
  5931. #~ msgctxt "@action:inmenu menubar:help"
  5932. #~ msgid "Show Engine &Log..."
  5933. #~ msgstr "Afficher le &journal du moteur..."
  5934. #~ msgctxt "@action:menu"
  5935. #~ msgid "Browse packages..."
  5936. #~ msgstr "Parcourir les paquets..."
  5937. #~ msgctxt "@action:inmenu menubar:view"
  5938. #~ msgid "Expand/Collapse Sidebar"
  5939. #~ msgstr "Déplier / replier la barre latérale"
  5940. #~ msgctxt "@label:PrintjobStatus"
  5941. #~ msgid "Please load a 3D model"
  5942. #~ msgstr "Veuillez charger un modèle 3D"
  5943. #~ msgctxt "@label:PrintjobStatus"
  5944. #~ msgid "Ready to slice"
  5945. #~ msgstr "Prêt à découper"
  5946. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  5947. #~ msgid "Ready to %1"
  5948. #~ msgstr "Prêt à %1"
  5949. #~ msgctxt "@label:PrintjobStatus"
  5950. #~ msgid "Slicing unavailable"
  5951. #~ msgstr "Découpe indisponible"
  5952. #~ msgctxt "@info:tooltip"
  5953. #~ msgid "Slice current printjob"
  5954. #~ msgstr "Découper la tâche d'impression en cours"
  5955. #~ msgctxt "@info:tooltip"
  5956. #~ msgid "Cancel slicing process"
  5957. #~ msgstr "Annuler le processus de découpe"
  5958. #~ msgctxt "@label:Printjob"
  5959. #~ msgid "Prepare"
  5960. #~ msgstr "Préparer"
  5961. #~ msgctxt "@label:Printjob"
  5962. #~ msgid "Cancel"
  5963. #~ msgstr "Annuler"
  5964. #~ msgctxt "@info:tooltip"
  5965. #~ msgid "Select the active output device"
  5966. #~ msgstr "Sélectionner le périphérique de sortie actif"
  5967. #~ msgctxt "@title:menu"
  5968. #~ msgid "&View"
  5969. #~ msgstr "&Visualisation"
  5970. #~ msgctxt "@title:menu"
  5971. #~ msgid "&Settings"
  5972. #~ msgstr "&Paramètres"
  5973. #~ msgctxt "@title:menu menubar:toplevel"
  5974. #~ msgid "&Toolbox"
  5975. #~ msgstr "&Boîte à outils"
  5976. #~ msgctxt "@action:button"
  5977. #~ msgid "Open File"
  5978. #~ msgstr "Ouvrir un fichier"
  5979. #~ msgctxt "@tooltip"
  5980. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  5981. #~ msgstr "Ce profil de qualité n'est pas disponible pour votre matériau et configuration des buses actuels. Veuillez modifier ces derniers pour activer ce profil de qualité"
  5982. #~ msgctxt "@label"
  5983. #~ msgid "Print Speed"
  5984. #~ msgstr "Vitesse d’impression"
  5985. #~ msgctxt "@label"
  5986. #~ msgid "Slower"
  5987. #~ msgstr "Ralentir"
  5988. #~ msgctxt "@label"
  5989. #~ msgid "Faster"
  5990. #~ msgstr "Accélérer"
  5991. #~ msgctxt "@label"
  5992. #~ msgid "Enable gradual"
  5993. #~ msgstr "Permettre le remplissage graduel"
  5994. #~ msgctxt "@label"
  5995. #~ msgid "Generate Support"
  5996. #~ msgstr "Générer les supports"
  5997. #~ msgctxt "@label"
  5998. #~ msgid "Build Plate Adhesion"
  5999. #~ msgstr "Adhérence au plateau"
  6000. #~ msgctxt "@label"
  6001. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  6002. #~ msgstr "Besoin d'aide pour améliorer vos impressions ?<br>Lisez les <a href='%1'>Guides de dépannage Ultimaker</a>"
  6003. #~ msgctxt "@title:window"
  6004. #~ msgid "Engine Log"
  6005. #~ msgstr "Journal du moteur"
  6006. #~ msgctxt "@label"
  6007. #~ msgid "Printer type"
  6008. #~ msgstr "Type d'imprimante"
  6009. #~ msgctxt "@label"
  6010. #~ msgid "Use glue with this material combination"
  6011. #~ msgstr "Utiliser de la colle avec cette combinaison de matériaux"
  6012. #~ msgctxt "@label"
  6013. #~ msgid "Check compatibility"
  6014. #~ msgstr "Vérifier la compatibilité"
  6015. #~ msgctxt "@tooltip"
  6016. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  6017. #~ msgstr "Cliquez ici pour vérifier la compatibilité des matériaux sur Ultimaker.com."
  6018. #~ msgctxt "description"
  6019. #~ msgid "Shows changes since latest checked version."
  6020. #~ msgstr "Affiche les changements depuis la dernière version."
  6021. #~ msgctxt "name"
  6022. #~ msgid "Changelog"
  6023. #~ msgstr "Récapitulatif des changements"
  6024. #~ msgctxt "description"
  6025. #~ msgid "Create a flattend quality changes profile."
  6026. #~ msgstr "Créer un profil de changements de qualité aplati."
  6027. #~ msgctxt "name"
  6028. #~ msgid "Profile flatener"
  6029. #~ msgstr "Aplatisseur de profil"
  6030. #~ msgctxt "description"
  6031. #~ msgid "Ask the user once if he/she agrees with our license."
  6032. #~ msgstr "Demander à l'utilisateur une fois s'il appose son accord à notre licence."
  6033. #~ msgctxt "name"
  6034. #~ msgid "UserAgreement"
  6035. #~ msgstr "UserAgreement"
  6036. #~ msgctxt "@warning:status"
  6037. #~ msgid "Please generate G-code before saving."
  6038. #~ msgstr "Veuillez générer le G-Code avant d'enregistrer."
  6039. #~ msgctxt "@action"
  6040. #~ msgid "Upgrade Firmware"
  6041. #~ msgstr "Mise à niveau du firmware"
  6042. #~ msgctxt "@label unknown material"
  6043. #~ msgid "Unknown"
  6044. #~ msgstr "Inconnu"
  6045. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6046. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  6047. #~ msgstr "Aucun profil personnalisé à importer dans le fichier <filename>{0}</filename>"
  6048. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6049. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  6050. #~ msgstr "Le profil <filename>{0}</filename> contient des données incorrectes ; échec de l'importation."
  6051. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6052. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6053. #~ msgstr "La machine définie dans le profil <filename>{0}</filename> ({1}) ne correspond pas à votre machine actuelle ({2}) ; échec de l'importation."
  6054. #~ msgctxt "@title:window"
  6055. #~ msgid "Confirm uninstall "
  6056. #~ msgstr "Confirmer la désinstallation "
  6057. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  6058. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6059. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6060. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  6061. #~ msgid "%1m / ~ %2g"
  6062. #~ msgstr "%1m / ~ %2g"
  6063. #~ msgctxt "@title"
  6064. #~ msgid "Upgrade Firmware"
  6065. #~ msgstr "Mise à niveau du firmware"
  6066. #~ msgctxt "@action:button"
  6067. #~ msgid "Print with Doodle3D WiFi-Box"
  6068. #~ msgstr "Imprimer avec Doodle3D WiFi-Box"
  6069. #~ msgctxt "@properties:tooltip"
  6070. #~ msgid "Print with Doodle3D WiFi-Box"
  6071. #~ msgstr "Imprimer avec Doodle3D WiFi-Box"
  6072. #~ msgctxt "@info:status"
  6073. #~ msgid "Connecting to Doodle3D Connect"
  6074. #~ msgstr "Connexion avec Doodle3D Connecter..."
  6075. #~ msgctxt "@info:status"
  6076. #~ msgid "Sending data to Doodle3D Connect"
  6077. #~ msgstr "Envoi de données vers Doodle3D Connecter..."
  6078. #~ msgctxt "@info:status"
  6079. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  6080. #~ msgstr "Impossible d'envoyer les données à Doodle3D Connect. Une autre tâche est-elle toujours active ?"
  6081. #~ msgctxt "@info:status"
  6082. #~ msgid "Storing data on Doodle3D Connect"
  6083. #~ msgstr "Enregistrement de données dans Doodle3D Connecter..."
  6084. #~ msgctxt "@info:status"
  6085. #~ msgid "File sent to Doodle3D Connect"
  6086. #~ msgstr "Fichier envoyé vers Doodle3D Connecter"
  6087. #~ msgctxt "@action:button"
  6088. #~ msgid "Open Connect..."
  6089. #~ msgstr "Ouvrir Connect..."
  6090. #~ msgctxt "@info:tooltip"
  6091. #~ msgid "Open the Doodle3D Connect web interface"
  6092. #~ msgstr "Ouvrir l'interface web Doodle3D Connecter"
  6093. #~ msgctxt "@item:inlistbox"
  6094. #~ msgid "Blender file"
  6095. #~ msgstr "Fichier Blender"
  6096. #~ msgctxt "@info:status"
  6097. #~ msgid ""
  6098. #~ "Could not export using \"{}\" quality!\n"
  6099. #~ "Felt back to \"{}\"."
  6100. #~ msgstr ""
  6101. #~ "Impossible d'exporter avec la qualité \"{}\" !\n"
  6102. #~ "Qualité redéfinie sur \"{}\"."
  6103. #~ msgctxt "@label"
  6104. #~ msgid "Contact"
  6105. #~ msgstr "Contact"
  6106. #~ msgctxt "@label"
  6107. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  6108. #~ msgstr "L'imprimante n'est pas configurée pour héberger un groupe d'imprimantes Ultimaker 3."
  6109. #~ msgctxt "@label"
  6110. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  6111. #~ msgstr "L'imprimante est le patron pour un groupe de %1 imprimantes Ultimaker 3."
  6112. #~ msgctxt "@label: arg 1 is group name"
  6113. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  6114. #~ msgstr "%1 n'est pas configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3."
  6115. #~ msgctxt "@label link to connect manager"
  6116. #~ msgid "Add/Remove printers"
  6117. #~ msgstr "Ajouter / supprimer une imprimante"
  6118. #~ msgctxt "@info:tooltip"
  6119. #~ msgid "Opens the print jobs page with your default web browser."
  6120. #~ msgstr "Ouvre la page des tâches d'impression avec votre navigateur web."
  6121. #~ msgctxt "@action:button"
  6122. #~ msgid "View print jobs"
  6123. #~ msgstr "Afficher les tâches d'impression"
  6124. #~ msgctxt "@label:status"
  6125. #~ msgid "Preparing to print"
  6126. #~ msgstr "Préparation..."
  6127. #~ msgctxt "@label:status"
  6128. #~ msgid "Available"
  6129. #~ msgstr "Disponible"
  6130. #~ msgctxt "@label:status"
  6131. #~ msgid "Lost connection with the printer"
  6132. #~ msgstr "Connexion avec l'imprimante perdue"
  6133. #~ msgctxt "@label:status"
  6134. #~ msgid "Unknown"
  6135. #~ msgstr "Inconnu"
  6136. #~ msgctxt "@label:status"
  6137. #~ msgid "Disabled"
  6138. #~ msgstr "Désactivé"
  6139. #~ msgctxt "@label:status"
  6140. #~ msgid "Reserved"
  6141. #~ msgstr "Réservée"
  6142. #~ msgctxt "@label"
  6143. #~ msgid "Preparing to print"
  6144. #~ msgstr "Préparation de l'impression..."
  6145. #~ msgctxt "@label:status"
  6146. #~ msgid "Print aborted"
  6147. #~ msgstr "Abandon de l'impression"
  6148. #~ msgctxt "@label"
  6149. #~ msgid "Not accepting print jobs"
  6150. #~ msgstr "Non acceptation des tâches d'impression"
  6151. #~ msgctxt "@label"
  6152. #~ msgid "Finishes at: "
  6153. #~ msgstr "Complète a: "
  6154. #~ msgctxt "@label"
  6155. #~ msgid "Clear build plate"
  6156. #~ msgstr "Enlever les objets du plateau"
  6157. #~ msgctxt "@label"
  6158. #~ msgid "Waiting for configuration change"
  6159. #~ msgstr "En attente de modification de configuration"
  6160. #~ msgctxt "@title"
  6161. #~ msgid "Print jobs"
  6162. #~ msgstr "Imprimer les tâches"
  6163. #~ msgctxt "@label:title"
  6164. #~ msgid "Printers"
  6165. #~ msgstr "Imprimantes"
  6166. #~ msgctxt "@action:button"
  6167. #~ msgid "View printers"
  6168. #~ msgstr "Afficher les imprimantes"
  6169. #~ msgctxt "@label:"
  6170. #~ msgid "Pause"
  6171. #~ msgstr "Pause"
  6172. #~ msgctxt "@label:"
  6173. #~ msgid "Resume"
  6174. #~ msgstr "Reprendre"
  6175. #~ msgctxt "@label:"
  6176. #~ msgid "Abort Print"
  6177. #~ msgstr "Abandonner l'impression"
  6178. #~ msgctxt "@option:openProject"
  6179. #~ msgid "Always ask"
  6180. #~ msgstr "Toujours demander"
  6181. #~ msgctxt "@label"
  6182. #~ msgid "Override Profile"
  6183. #~ msgstr "Écraser le profil"
  6184. #~ msgctxt "@info:tooltip"
  6185. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  6186. #~ msgstr "Les modèles nouvellement chargés doivent-ils être disposés sur le plateau ? Utilisé en conjonction avec le multi-plateau (EXPÉRIMENTAL)"
  6187. #~ msgctxt "@option:check"
  6188. #~ msgid "Do not arrange objects on load"
  6189. #~ msgstr "Ne pas réorganiser les objets lors du chargement"
  6190. #~ msgctxt "@action:inmenu menubar:file"
  6191. #~ msgid "&Save Selection to File"
  6192. #~ msgstr "Enregi&strer la sélection dans un fichier"
  6193. #~ msgctxt "@title:menu menubar:file"
  6194. #~ msgid "Save &As..."
  6195. #~ msgstr "Enregistrer &sous..."
  6196. #~ msgctxt "@title:menu menubar:file"
  6197. #~ msgid "Save &Project..."
  6198. #~ msgstr "Enregistrer le &projet..."
  6199. # Added after the string freeze.
  6200. #~ msgctxt "@label"
  6201. #~ msgid "Use adhesion sheet or glue with this material combination"
  6202. #~ msgstr "Utilisez feuilles d'adhérence ou de la colle avec cette combinaison des matériaux"
  6203. #~ msgctxt "description"
  6204. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6205. #~ msgstr "Accepte les G-Code et les envoie par Wi-Fi à une box WiFi Doodle3D."
  6206. #~ msgctxt "name"
  6207. #~ msgid "Doodle3D WiFi-Box"
  6208. #~ msgstr "Box WiFi Doodle3D"
  6209. #~ msgctxt "description"
  6210. #~ msgid "Provides an edit window for direct script editing."
  6211. #~ msgstr "Fournit une fenêtre d'édition pour l'édition directe de script."
  6212. #~ msgctxt "name"
  6213. #~ msgid "Live scripting tool"
  6214. #~ msgstr "Outil de scripting en direct"
  6215. #~ msgctxt "description"
  6216. #~ msgid "Helps to open Blender files directly in Cura."
  6217. #~ msgstr "Aide à ouvrir les fichiers Blender directement dans Cura."
  6218. #~ msgctxt "name"
  6219. #~ msgid "Blender Integration (experimental)"
  6220. #~ msgstr "Intégration Blender (expérimental)"
  6221. #~ msgctxt "@info:title"
  6222. #~ msgid "Model Checker Warning"
  6223. #~ msgstr "Avertissement contrôleur de modèle"
  6224. #~ msgctxt "@info:status"
  6225. #~ msgid ""
  6226. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6227. #~ "Tips that may be useful to improve the print quality:\n"
  6228. #~ "1) Use rounded corners.\n"
  6229. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6230. #~ "3) Use a different material."
  6231. #~ msgstr ""
  6232. #~ "Certains modèles peuvent ne pas être imprimés de manière optimale en raison de la taille de l'objet et du matériau choisi pour les modèles : {model_names}.\n"
  6233. #~ "Conseils utiles pour améliorer la qualité d'impression :\n"
  6234. #~ "1) Utiliser des coins arrondis.\n"
  6235. #~ "2) Éteindre le ventilateur (seulement si le modèle ne contient pas de petits détails).\n"
  6236. #~ "3) Utiliser un matériau différent."
  6237. #~ msgctxt "@info:status"
  6238. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6239. #~ msgstr "SolidWorks a signalé des erreurs lors de l'ouverture de votre fichier. Nous vous recommandons de résoudre ces problèmes dans SolidWorks lui-même."
  6240. #~ msgctxt "@info:status"
  6241. #~ msgid ""
  6242. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6243. #~ "\n"
  6244. #~ "Thanks!"
  6245. #~ msgstr ""
  6246. #~ "Aucun modèle n'a été trouvé à l'intérieur de votre dessin. Pouvez-vous vérifier son contenu de nouveau et vous assurer qu'une pièce ou un assemblage est présent ?\n"
  6247. #~ "\n"
  6248. #~ "Merci !"
  6249. #~ msgctxt "@info:status"
  6250. #~ msgid ""
  6251. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6252. #~ "\n"
  6253. #~ "Sorry!"
  6254. #~ msgstr ""
  6255. #~ "Plus d'une pièce ou d'un assemblage ont été trouvés dans votre dessin. Nous ne prenons actuellement en charge que les dessins comptant une seule pièce ou un seul assemblage.\n"
  6256. #~ "\n"
  6257. #~ "Désolé !"
  6258. #~ msgctxt "@item:inlistbox"
  6259. #~ msgid "SolidWorks part file"
  6260. #~ msgstr "Fichier de composant SolidWorks"
  6261. #~ msgctxt "@item:inlistbox"
  6262. #~ msgid "SolidWorks assembly file"
  6263. #~ msgstr "Fichier d'assemblage SolidWorks"
  6264. #~ msgctxt "@item:inlistbox"
  6265. #~ msgid "SolidWorks drawing file"
  6266. #~ msgstr "Fichier de dessin SolidWorks"
  6267. #~ msgctxt "@info:status"
  6268. #~ msgid ""
  6269. #~ "Dear customer,\n"
  6270. #~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n"
  6271. #~ "\n"
  6272. #~ "With kind regards\n"
  6273. #~ " - Thomas Karl Pietrowski"
  6274. #~ msgstr ""
  6275. #~ "Cher client,\n"
  6276. #~ "Nous n'avons pas pu trouver une installation valide de SolidWorks sur votre système. Cela signifie soit que SolidWorks n'est pas installé, soit que vous ne possédez pas de licence valide. Veuillez vous assurer que l'exécution de SolidWorks lui-même fonctionne sans problèmes et / ou contactez votre service IT.\n"
  6277. #~ "\n"
  6278. #~ "Cordialement,\n"
  6279. #~ " - Thomas Karl Pietrowski"
  6280. #~ msgctxt "@info:status"
  6281. #~ msgid ""
  6282. #~ "Dear customer,\n"
  6283. #~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n"
  6284. #~ "\n"
  6285. #~ "With kind regards\n"
  6286. #~ " - Thomas Karl Pietrowski"
  6287. #~ msgstr ""
  6288. #~ "Cher client,\n"
  6289. #~ "Vous exécutez actuellement ce plug-in sur un système d'exploitation autre que Windows. Ce plug-in fonctionne uniquement sous Windows et lorsque SolidWorks est installé avec une licence valide. Veuillez installer ce plug-in sur un poste Windows où SolidWorks est installé.\n"
  6290. #~ "\n"
  6291. #~ "Cordialement,\n"
  6292. #~ " - Thomas Karl Pietrowski"
  6293. #~ msgid "Configure"
  6294. #~ msgstr "Configurer"
  6295. #~ msgid "Installation guide for SolidWorks macro"
  6296. #~ msgstr "Guide d'installation SolidWorks macro"
  6297. #~ msgctxt "@action:button"
  6298. #~ msgid "Disable"
  6299. #~ msgstr "Désactiver"
  6300. #~ msgctxt "@action:tooltip"
  6301. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  6302. #~ msgstr "Ne pas autoriser Cura à envoyer des statistiques d'utilisation anonymes. Vous pouvez modifier ce paramètre dans les préférences."
  6303. #~ msgid "Install"
  6304. #~ msgstr "Installer"
  6305. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  6306. #~ msgstr "Échec de la copie des fichiers plug-ins Siemens NX. Veuillez vérifier votre UGII_USER_DIR. Il n'est pas défini sur un répertoire."
  6307. #~ msgid "Successfully installed Siemens NX Cura plugin."
  6308. #~ msgstr "L'installation du plug-in Siemens NX Cura a réussie."
  6309. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  6310. #~ msgstr "Échec de la copie des fichiers plug-ins Siemens NX. Veuillez vérifier votre UGII_USER_DIR."
  6311. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  6312. #~ msgstr "Échec de l'installation du plug-in Siemens NX. Impossible de définir la variable d'environnement UGII_USER_DIR pour Siemens NX."
  6313. #~ msgctxt "@info:status"
  6314. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  6315. #~ msgstr "Échec de l'obtention de l'identifiant du plug-in au départ de <filename>{0}</filename>"
  6316. #~ msgctxt "@info:tile"
  6317. #~ msgid "Warning"
  6318. #~ msgstr "Avertissement"
  6319. #~ msgctxt "@window:title"
  6320. #~ msgid "Plugin browser"
  6321. #~ msgstr "Navigateur de plug-ins"
  6322. #~ msgctxt "@label"
  6323. #~ msgid "Ultimaker 3"
  6324. #~ msgstr "Ultimaker 3"
  6325. #~ msgctxt "@label"
  6326. #~ msgid "Ultimaker 3 Extended"
  6327. #~ msgstr "Ultimaker 3 Extended"
  6328. #~ msgctxt "@title:window"
  6329. #~ msgid "SolidWorks: Export wizard"
  6330. #~ msgstr "SolidWorks : assistant d'exportation"
  6331. #~ msgctxt "@action:label"
  6332. #~ msgid "Quality:"
  6333. #~ msgstr "Qualité :"
  6334. #~ msgctxt "@option:curaSolidworksStlQuality"
  6335. #~ msgid "Fine (3D-printing)"
  6336. #~ msgstr "Fine (impression 3D)"
  6337. #~ msgctxt "@option:curaSolidworksStlQuality"
  6338. #~ msgid "Coarse (3D-printing)"
  6339. #~ msgstr "Grossière (impression 3D)"
  6340. #~ msgctxt "@option:curaSolidworksStlQuality"
  6341. #~ msgid "Fine (SolidWorks)"
  6342. #~ msgstr "Fine (SolidWorks)"
  6343. #~ msgctxt "@option:curaSolidworksStlQuality"
  6344. #~ msgid "Coarse (SolidWorks)"
  6345. #~ msgstr "Grossière (SolidWorks)"
  6346. #~ msgctxt "@text:window"
  6347. #~ msgid "Show this dialog again"
  6348. #~ msgstr "Afficher de nouveau cette boîte de dialogue"
  6349. #~ msgctxt "@action:button"
  6350. #~ msgid "Continue"
  6351. #~ msgstr "Continuer"
  6352. #~ msgctxt "@action:button"
  6353. #~ msgid "Abort"
  6354. #~ msgstr "Abandonner"
  6355. #~ msgctxt "@title:window"
  6356. #~ msgid "How to install Cura SolidWorks macro"
  6357. #~ msgstr "Modalités d’installation de Cura SolidWorks macro"
  6358. #~ msgctxt "@description:label"
  6359. #~ msgid "Steps:"
  6360. #~ msgstr "Procédure :"
  6361. #~ msgctxt "@action:button"
  6362. #~ msgid ""
  6363. #~ "Open the directory\n"
  6364. #~ "with macro and icon"
  6365. #~ msgstr ""
  6366. #~ "Ouvrez le répertoire\n"
  6367. #~ "contenant la macro et l'icône"
  6368. #~ msgctxt "@description:label"
  6369. #~ msgid "Instructions:"
  6370. #~ msgstr "Instructions :"
  6371. #~ msgctxt "@action:playpause"
  6372. #~ msgid "Play"
  6373. #~ msgstr "Jouer"
  6374. #~ msgctxt "@action:playpause"
  6375. #~ msgid "Pause"
  6376. #~ msgstr "Pause"
  6377. #~ msgctxt "@action:button"
  6378. #~ msgid "Previous Step"
  6379. #~ msgstr "Étape précédente"
  6380. #~ msgctxt "@action:button"
  6381. #~ msgid "Done"
  6382. #~ msgstr "Terminé"
  6383. #~ msgctxt "@action:button"
  6384. #~ msgid "Next Step"
  6385. #~ msgstr "Étape suivante"
  6386. #~ msgctxt "@title:window"
  6387. #~ msgid "SolidWorks plugin: Configuration"
  6388. #~ msgstr "Plug-in SolidWorks : configuration"
  6389. #~ msgctxt "@title:tab"
  6390. #~ msgid "Conversion settings"
  6391. #~ msgstr "Paramètres de conversion"
  6392. #~ msgctxt "@label"
  6393. #~ msgid "First choice:"
  6394. #~ msgstr "Premier choix :"
  6395. #~ msgctxt "@text:menu"
  6396. #~ msgid "Latest installed version (Recommended)"
  6397. #~ msgstr "Dernière version installée (recommandé)"
  6398. #~ msgctxt "@text:menu"
  6399. #~ msgid "Default version"
  6400. #~ msgstr "Version par défaut"
  6401. #~ msgctxt "@label"
  6402. #~ msgid "Show wizard before opening SolidWorks files"
  6403. #~ msgstr "Afficher l'Assistant avant d'ouvrir les fichiers SolidWorks"
  6404. #~ msgctxt "@label"
  6405. #~ msgid "Automatically rotate opened file into normed orientation"
  6406. #~ msgstr "Rotation automatique du fichier ouvert en orientation normalisée"
  6407. #~ msgctxt "@title:tab"
  6408. #~ msgid "Installation(s)"
  6409. #~ msgstr "Installation(s)"
  6410. #~ msgctxt "@label"
  6411. #~ msgid "COM service found"
  6412. #~ msgstr "Service COM trouvé"
  6413. #~ msgctxt "@label"
  6414. #~ msgid "Executable found"
  6415. #~ msgstr "Fichier exécutable trouvé"
  6416. #~ msgctxt "@label"
  6417. #~ msgid "COM starting"
  6418. #~ msgstr "Lancement de COM"
  6419. #~ msgctxt "@label"
  6420. #~ msgid "Revision number"
  6421. #~ msgstr "Numéro de révision"
  6422. #~ msgctxt "@label"
  6423. #~ msgid "Functions available"
  6424. #~ msgstr "Fonctions disponibles"
  6425. #~ msgctxt "@label (%1 is object name)"
  6426. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  6427. #~ msgstr "Le nouveau diamètre du matériau est défini sur %1 mm, ce qui n'est pas compatible avec la machine actuelle. Souhaitez-vous continuer ?"
  6428. #~ msgctxt "@action:menu"
  6429. #~ msgid "Browse plugins..."
  6430. #~ msgstr "Parcourir les plug-ins..."
  6431. #~ msgctxt "@title:menu menubar:toplevel"
  6432. #~ msgid "P&lugins"
  6433. #~ msgstr "&Plug-ins"
  6434. #~ msgctxt "@window:title"
  6435. #~ msgid "Install Plugin"
  6436. #~ msgstr "Installer plug-in"
  6437. #~ msgctxt "description"
  6438. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6439. #~ msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)"
  6440. #~ msgctxt "description"
  6441. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6442. #~ msgstr "Gère les connexions réseau vers les imprimantes Ultimaker 3"
  6443. #~ msgctxt "description"
  6444. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  6445. #~ msgstr "Donne la possibilité d'ouvrir certains fichiers via SolidWorks. La conversion est ensuite effectuée par ce plug-in et des optimisations supplémentaires."
  6446. #~ msgctxt "name"
  6447. #~ msgid "SolidWorks Integration"
  6448. #~ msgstr "Intégration SolidWorks"
  6449. #~ msgctxt "description"
  6450. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6451. #~ msgstr "Enregistre automatiquement les Préférences, Machines et Profils après des modifications."
  6452. #~ msgctxt "name"
  6453. #~ msgid "Auto Save"
  6454. #~ msgstr "Enregistrement auto"
  6455. #~ msgctxt "description"
  6456. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  6457. #~ msgstr "Vous aide à installer un bouton « exporter vers Cura » dans Siemens NX."
  6458. #~ msgctxt "name"
  6459. #~ msgid "Siemens NX Integration"
  6460. #~ msgstr "Siemens NX Integration"
  6461. #~ msgctxt "description"
  6462. #~ msgid "Find, manage and install new plugins."
  6463. #~ msgstr "Rechercher, gérer et installer de nouveaux plug-ins."
  6464. #~ msgctxt "name"
  6465. #~ msgid "Plugin Browser"
  6466. #~ msgstr "Navigateur de plug-ins"
  6467. #~ msgctxt "description"
  6468. #~ msgid "Ask the user once if he/she agrees with our license"
  6469. #~ msgstr "Demander à l'utilisateur une fois s'il appose son accord à notre licence"
  6470. #~ msgctxt "description"
  6471. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6472. #~ 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.)"
  6473. #~ msgctxt "@item:inlistbox"
  6474. #~ msgid "GCode File"
  6475. #~ msgstr "Fichier GCode"
  6476. #~ msgctxt "@info:status"
  6477. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  6478. #~ msgstr "Impossible de démarrer une nouvelle tâche car l'imprimante est occupée ou n'est pas connectée."
  6479. #~ msgctxt "@info:title"
  6480. #~ msgid "Printer Unavailable"
  6481. #~ msgstr "Imprimante indisponible"
  6482. #~ msgctxt "@info:status"
  6483. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  6484. #~ msgstr "L'imprimante ne prend pas en charge l'impression par USB car elle utilise UltiGCode."
  6485. #~ msgctxt "@info:title"
  6486. #~ msgid "USB Printing"
  6487. #~ msgstr "Impression par USB"
  6488. #~ msgctxt "@info:status"
  6489. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  6490. #~ msgstr "Impossible de démarrer une nouvelle tâche car l'imprimante ne prend pas en charge l'impression par USB."
  6491. #~ msgctxt "@info"
  6492. #~ msgid "Unable to update firmware because there are no printers connected."
  6493. #~ msgstr "Impossible de mettre à jour le firmware car il n'y a aucune imprimante connectée."
  6494. #~ msgctxt "@info"
  6495. #~ msgid "Could not find firmware required for the printer at %s."
  6496. #~ msgstr "Impossible de trouver le firmware requis pour l'imprimante sur %s."
  6497. #~ msgctxt "@info:title"
  6498. #~ msgid "Printer Firmware"
  6499. #~ msgstr "Firmware de l'imprimante"
  6500. #~ msgctxt "@info:title"
  6501. #~ msgid "Connection status"
  6502. #~ msgstr "Statut de la connexion"
  6503. #~ msgctxt "@info:title"
  6504. #~ msgid "Connection Status"
  6505. #~ msgstr "Statut de la connexion"
  6506. #~ msgctxt "@info:status"
  6507. #~ msgid "Access request was denied on the printer."
  6508. #~ msgstr "La demande d'accès à l'imprimante a été refusée."
  6509. #~ msgctxt "@info:status"
  6510. #~ msgid "Access request failed due to a timeout."
  6511. #~ msgstr "Durée d'attente dépassée. Échec de la demande d'accès."
  6512. #~ msgctxt "@info:status"
  6513. #~ msgid "The connection with the network was lost."
  6514. #~ msgstr "Interruption de connexion au le réseau."
  6515. #~ msgctxt "@info:status"
  6516. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  6517. #~ msgstr "La connexion avec l'imprimante est interrompue. Vérifiez que votre imprimante est connectée."
  6518. #~ msgctxt "@info:status"
  6519. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  6520. #~ msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. L'état actuel de l'imprimante est %s."
  6521. #~ msgctxt "@info:title"
  6522. #~ msgid "Printer Status"
  6523. #~ msgstr "Statut de l'imprimante"
  6524. #~ msgctxt "@info:status"
  6525. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  6526. #~ msgstr "Impossible de démarrer une nouvelle tâche d'impression. Pas de PrintCore inséré dans la fente {0}."
  6527. #~ msgctxt "@info:status"
  6528. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  6529. #~ msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. Pas de matériau chargé dans la fente {0}."
  6530. #~ msgctxt "@label"
  6531. #~ msgid "Not enough material for spool {0}."
  6532. #~ msgstr "Pas suffisamment de matériau pour la bobine {0}."
  6533. #~ msgctxt "@label"
  6534. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6535. #~ msgstr "PrintCore différent (Cura : {0}, Imprimante : {1}) sélectionné pour l'extrudeur {2}"
  6536. #~ msgctxt "@label"
  6537. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6538. #~ msgstr "Le PrintCore {0} n'est pas correctement calibré. Le calibrage XY doit être effectué sur l'imprimante."
  6539. #~ msgctxt "@info:status"
  6540. #~ msgid "Unable to send data to printer. Is another job still active?"
  6541. #~ msgstr "Impossible d'envoyer les données à l'imprimante. Une autre tâche est-elle toujours active ?"
  6542. #~ msgctxt "@label:MonitorStatus"
  6543. #~ msgid "Print aborted. Please check the printer"
  6544. #~ msgstr "Abandon de l'impression. Vérifiez l'imprimante"
  6545. #~ msgctxt "@label:MonitorStatus"
  6546. #~ msgid "Pausing print..."
  6547. #~ msgstr "Mise en pause de l'impression..."
  6548. #~ msgctxt "@label:MonitorStatus"
  6549. #~ msgid "Resuming print..."
  6550. #~ msgstr "Reprise de l'impression..."
  6551. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  6552. #~ msgstr "L'imprimante n'est pas configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3."
  6553. #~ msgctxt "Count is number of printers."
  6554. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  6555. #~ msgstr "L'imprimante n'est pas configurée pour héberger un groupe de {count} imprimantes connectées Ultimaker 3."
  6556. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  6557. #~ msgstr "{printer_name} a terminé d'imprimer '{job_name}'. Veuillez enlever l'impression et confirmer avoir nettoyé le plateau."
  6558. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  6559. #~ msgstr "{printer_name} est réservé pour imprimer '{job_name}'. Veuillez modifier la configuration de l'imprimante pour qu'elle corresponde à la tâche et commence l'impression."
  6560. #~ msgctxt "@info:status"
  6561. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  6562. #~ msgstr "Impossible d'envoyer une nouvelle tâche d'impression : cette imprimante 3D n'est pas (encore) configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3."
  6563. #~ msgctxt "@info:status"
  6564. #~ msgid "Unable to send print job to group {cluster_name}."
  6565. #~ msgstr "Impossible d'envoyer la tâche d'impression vers le groupe {cluster_name}."
  6566. #~ msgctxt "@info:status"
  6567. #~ msgid "Sent {file_name} to group {cluster_name}."
  6568. #~ msgstr "<filename>{file_name}</filename> envoyé vers le groupe {cluster_name}."
  6569. #~ msgctxt "@action:button"
  6570. #~ msgid "Show print jobs"
  6571. #~ msgstr "Afficher les tâches d'impression"
  6572. #~ msgctxt "@info:tooltip"
  6573. #~ msgid "Opens the print jobs interface in your browser."
  6574. #~ msgstr "Ouvre l'interface d'impression des tâches dans votre navigateur."
  6575. #~ msgctxt "@label Printer name"
  6576. #~ msgid "Unknown"
  6577. #~ msgstr "Inconnu"
  6578. #~ msgctxt "@info:progress"
  6579. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  6580. #~ msgstr "Envoi de <filename>{file_name}</filename> vers le groupe {cluster_name}..."
  6581. #~ msgctxt "@info:status"
  6582. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6583. #~ msgstr "SolidWorks a signalé des erreurs lors de l'ouverture de votre fichier. Nous vous recommandons de résoudre ces problèmes dans SolidWorks lui-même."
  6584. #~ msgctxt "@info:status"
  6585. #~ msgid ""
  6586. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  6587. #~ "\n"
  6588. #~ " Thanks!."
  6589. #~ msgstr ""
  6590. #~ "Aucun modèle n'a été trouvé à l'intérieur de votre dessin. Pouvez-vous vérifier son contenu de nouveau et vous assurer qu'une pièce ou un assemblage est présent ?\n"
  6591. #~ "\n"
  6592. #~ " Merci !"
  6593. #~ msgctxt "@info:status"
  6594. #~ msgid ""
  6595. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6596. #~ "\n"
  6597. #~ "Sorry!"
  6598. #~ msgstr ""
  6599. #~ "Plus d'une pièce ou d'un ensemble de pièces ont été trouvés dans votre dessin. Nous ne prenons actuellement en charge que les dessins comptant exactement une pièce ou un ensemble de pièces.\n"
  6600. #~ "\n"
  6601. #~ "Désolé !"
  6602. #~ msgctxt "@item:material"
  6603. #~ msgid "No material loaded"
  6604. #~ msgstr "Pas de matériau chargé"
  6605. #~ msgctxt "@item:material"
  6606. #~ msgid "Unknown material"
  6607. #~ msgstr "Matériau inconnu"
  6608. #~ msgctxt "@info:status Has a cancel button next to it."
  6609. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  6610. #~ msgstr "Le diamètre du matériau sélectionné rend le matériau incompatible avec l'imprimante actuelle."
  6611. #~ msgctxt "@action:button"
  6612. #~ msgid "Undo"
  6613. #~ msgstr "Annuler"
  6614. #~ msgctxt "@action"
  6615. #~ msgid "Undo changing the material diameter."
  6616. #~ msgstr "Annuler la modification du diamètre du matériau."
  6617. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6618. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  6619. #~ msgstr "La machine définie dans le profil <filename>{0}</filename> ne correspond pas à votre machine actuelle ; échec de l'importation."
  6620. #~ msgctxt "@label crash message"
  6621. #~ msgid ""
  6622. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6623. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6624. #~ " "
  6625. #~ msgstr ""
  6626. #~ "<p><b>Une erreur fatale s'est produite. Veuillez nous envoyer ce Rapport d'incident pour résoudre le problème</p></b>\n"
  6627. #~ " <p>Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs</p>\n"
  6628. #~ " "
  6629. #~ msgctxt "@label"
  6630. #~ msgid "not yet initialised<br/>"
  6631. #~ msgstr "pas encore initialisé<br/>"
  6632. #~ msgctxt "@label"
  6633. #~ msgid "Gcode flavor"
  6634. #~ msgstr "GCode Parfum"
  6635. #~ msgctxt "@label"
  6636. #~ msgid "Start Gcode"
  6637. #~ msgstr "Début Gcode"
  6638. #~ msgctxt "@tooltip"
  6639. #~ msgid "Gcode commands to be executed at the very start."
  6640. #~ msgstr "Commandes Gcode à exécuter au tout début."
  6641. #~ msgctxt "@label"
  6642. #~ msgid "End Gcode"
  6643. #~ msgstr "Fin Gcode"
  6644. #~ msgctxt "@tooltip"
  6645. #~ msgid "Gcode commands to be executed at the very end."
  6646. #~ msgstr "Commandes Gcode à exécuter tout à la fin."
  6647. #~ msgctxt "@label"
  6648. #~ msgid "Extruder Start Gcode"
  6649. #~ msgstr "Extrudeur Gcode de démarrage"
  6650. #~ msgctxt "@label"
  6651. #~ msgid "Extruder End Gcode"
  6652. #~ msgstr "Extrudeur Gcode de fin"
  6653. #~ msgctxt "@label"
  6654. #~ msgid "Starting firmware update, this may take a while."
  6655. #~ msgstr "Démarrage de la mise à jour du firmware, cela peut prendre un certain temps."
  6656. #~ msgctxt "@label"
  6657. #~ msgid "Unknown error code: %1"
  6658. #~ msgstr "Code erreur inconnue : %1"
  6659. #~ msgctxt "@label Printer name"
  6660. #~ msgid "Ultimaker 3"
  6661. #~ msgstr "Ultimaker 3"
  6662. #~ msgctxt "@label Printer name"
  6663. #~ msgid "Ultimaker 3 Extended"
  6664. #~ msgstr "Ultimaker 3 Extended"
  6665. #~ msgctxt "@label Printer status"
  6666. #~ msgid "Unknown"
  6667. #~ msgstr "Inconnu"
  6668. #~ msgctxt "@title:window"
  6669. #~ msgid "Find & Update plugins"
  6670. #~ msgstr "Rechercher et mettre à jour les plug-ins"
  6671. #~ msgctxt "@label"
  6672. #~ msgid "Here you can find a list of Third Party plugins."
  6673. #~ msgstr "Vous pouvez trouver ici une liste de plug-ins de sources tierces."
  6674. #~ msgctxt "@action:button"
  6675. #~ msgid "Upgrade"
  6676. #~ msgstr "Mettre à niveau"
  6677. #~ msgctxt "@action:button"
  6678. #~ msgid "Download"
  6679. #~ msgstr "Télécharger"
  6680. #~ msgctxt "@info:tooltip"
  6681. #~ msgid "Show caution message in gcode reader."
  6682. #~ msgstr "Afficher le message d'avertissement dans le lecteur gcode."
  6683. #~ msgctxt "@option:check"
  6684. #~ msgid "Caution message in gcode reader"
  6685. #~ msgstr "Message d'avertissement dans lecteur gcode."
  6686. #~ msgctxt "@window:title"
  6687. #~ msgid "Import Profile"
  6688. #~ msgstr "Importer un profil"
  6689. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  6690. #~ msgid "Printer: %1, %2: %3"
  6691. #~ msgstr "Imprimante : %1, %2 : %3"
  6692. #~ msgctxt "@action:label %1 is printer name"
  6693. #~ msgid "Printer: %1"
  6694. #~ msgstr "Imprimante : %1"
  6695. #~ msgctxt "@label"
  6696. #~ msgid "GCode generator"
  6697. #~ msgstr "Générateur GCode"
  6698. #~ msgctxt "@action:menu"
  6699. #~ msgid "Configure setting visiblity..."
  6700. #~ msgstr "Configurer la visibilité des paramètres..."
  6701. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  6702. #~ msgid "Automatic: %1"
  6703. #~ msgstr "Automatique : %1"
  6704. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  6705. #~ msgid "Automatic: %1"
  6706. #~ msgstr "Automatique : %1"
  6707. #~ msgctxt "@info:status"
  6708. #~ msgid "No printer connected"
  6709. #~ msgstr "Aucune imprimante n'est connectée"
  6710. #~ msgctxt "@tooltip"
  6711. #~ msgid "The current temperature of this extruder."
  6712. #~ msgstr "Température actuelle de cet extrudeur."
  6713. #~ msgctxt "@action:menu"
  6714. #~ msgid "Installed plugins..."
  6715. #~ msgstr "Plug-ins installés..."
  6716. #~ msgctxt "@label"
  6717. #~ msgid "Support Extruder"
  6718. #~ msgstr "Extrudeur pour matériau support"
  6719. #~ msgctxt "description"
  6720. #~ msgid "Writes GCode to a file."
  6721. #~ msgstr "Enregistre le GCode dans un fichier."
  6722. #~ msgctxt "name"
  6723. #~ msgid "GCode Writer"
  6724. #~ msgstr "Générateur de GCode"
  6725. #~ msgctxt "name"
  6726. #~ msgid "GCode Profile Reader"
  6727. #~ msgstr "Lecteur de profil GCode"
  6728. #~ msgctxt "@info:status"
  6729. #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!"
  6730. #~ msgstr "Des erreurs sont apparues lors de l'ouverture de votre fichier SolidWorks ! Veuillez vérifier s'il est possible d'ouvrir votre fichier dans SolidWorks sans que cela ne cause de problèmes."
  6731. #~ msgctxt "@info:status"
  6732. #~ msgid "Error while starting %s!"
  6733. #~ msgstr "Erreur lors du lancement de %s !"
  6734. #~ msgctxt "@item:inlistbox"
  6735. #~ msgid "Simulation view"
  6736. #~ msgstr "Vue simulation"
  6737. #~ msgctxt "@info"
  6738. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  6739. #~ msgstr "Cura collecte des statistiques anonymes sur le découpage. Vous pouvez désactiver cette fonctionnalité dans les préférences."
  6740. #~ msgctxt "@action:button"
  6741. #~ msgid "Dismiss"
  6742. #~ msgstr "Ignorer"
  6743. #~ msgctxt "@menuitem"
  6744. #~ msgid "Global"
  6745. #~ msgstr "Global"
  6746. #~ msgctxt "@label crash message"
  6747. #~ msgid ""
  6748. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6749. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6750. #~ " "
  6751. #~ msgstr ""
  6752. #~ "<p><b>Une exception fatale s'est produite. Veuillez nous envoyer ce Rapport d'incident pour résoudre le problème</p></b>\n"
  6753. #~ " <p>Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs</p>\n"
  6754. #~ " "
  6755. #~ msgctxt "@label Cura version"
  6756. #~ msgid "<b>Cura version:</b> {version}<br/>"
  6757. #~ msgstr "<b>Version Cura :</b> {version}<br/>"
  6758. #~ msgctxt "@label Platform"
  6759. #~ msgid "<b>Platform:</b> {platform}<br/>"
  6760. #~ msgstr "Plateforme :</b> {platform}<br/>"
  6761. #~ msgctxt "@label Qt version"
  6762. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  6763. #~ msgstr "<b>Version Qt :</b> {qt}<br/>"
  6764. #~ msgctxt "@label PyQt version"
  6765. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  6766. #~ msgstr "<b>Version PyQt :</b> {pyqt}<br/>"
  6767. #~ msgctxt "@label OpenGL"
  6768. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  6769. #~ msgstr "<b>OpenGL :</b> {opengl}<br/>"
  6770. #~ msgctxt "@title:groupbox"
  6771. #~ msgid "Exception traceback"
  6772. #~ msgstr "Retraçage de l'exception"
  6773. #~ msgctxt "@label"
  6774. #~ msgid "Material diameter"
  6775. #~ msgstr "Diamètre du matériau"
  6776. #~ msgctxt "@title:window"
  6777. #~ msgid "Cura SolidWorks Plugin Configuration"
  6778. #~ msgstr "Configuration du plug-in Cura SolidWorks"
  6779. #~ msgctxt "@action:label"
  6780. #~ msgid "Default quality of the exported STL:"
  6781. #~ msgstr "Qualité par défaut du STL exporté :"
  6782. #~ msgctxt "@option:curaSolidworksStlQuality"
  6783. #~ msgid "Always ask"
  6784. #~ msgstr "Toujours demander"
  6785. #~ msgctxt "@option:curaSolidworksStlQuality"
  6786. #~ msgid "Always use Fine quality"
  6787. #~ msgstr "Toujours utiliser la qualité Fine"
  6788. #~ msgctxt "@option:curaSolidworksStlQuality"
  6789. #~ msgid "Always use Coarse quality"
  6790. #~ msgstr "Toujours utiliser la qualité grossière"
  6791. #~ msgctxt "@title:window"
  6792. #~ msgid "Import SolidWorks File as STL..."
  6793. #~ msgstr "Importer le fichier SolidWorks comme STL..."
  6794. #~ msgctxt "@info:tooltip"
  6795. #~ msgid "Quality of the Exported STL"
  6796. #~ msgstr "Qualité du STL exporté"
  6797. #~ msgctxt "@action:label"
  6798. #~ msgid "Quality"
  6799. #~ msgstr "Qualité"
  6800. #~ msgctxt "@option:curaSolidworksStlQuality"
  6801. #~ msgid "Coarse"
  6802. #~ msgstr "Grossière"
  6803. #~ msgctxt "@option:curaSolidworksStlQuality"
  6804. #~ msgid "Fine"
  6805. #~ msgstr "Fine"
  6806. #~ msgctxt "@"
  6807. #~ msgid "No Profile Available"
  6808. #~ msgstr "Aucun profil disponible"
  6809. #~ msgctxt "@label"
  6810. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  6811. #~ msgstr "Ce paramètre est toujours partagé par tous les extrudeurs. Le modifier ici entraînera la modification de la valeur pour tous les extrudeurs."
  6812. #~ msgctxt "@tooltip"
  6813. #~ msgid "<b>Time specification</b><br/><table>"
  6814. #~ msgstr "<b>Spécification de temps</b><br/><table>"
  6815. #~ msgctxt "@action:inmenu menubar:view"
  6816. #~ msgid "&Reset camera position"
  6817. #~ msgstr "&Réinitialiser la position de la caméra"
  6818. #~ msgctxt "@title:menu menubar:file"
  6819. #~ msgid "Save project"
  6820. #~ msgstr "Enregistrer le projet"
  6821. #~ msgctxt "@title:tab"
  6822. #~ msgid "Prepare"
  6823. #~ msgstr "Préparer"
  6824. #~ msgctxt "@title:tab"
  6825. #~ msgid "Monitor"
  6826. #~ msgstr "Surveiller"
  6827. #~ msgctxt "@label"
  6828. #~ msgid "<a href='%1'>Check compatibility</a>"
  6829. #~ msgstr "<a href='%1'>Vérifier la compatibilité</a>"
  6830. #~ msgctxt "description"
  6831. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  6832. #~ msgstr "Donne la possibilité d'ouvrir certains fichiers via SolidWorks. Ces fichiers sont ensuite convertis et chargés dans Cura."
  6833. #~ msgctxt "@label:status"
  6834. #~ msgid "Blocked"
  6835. #~ msgstr "Bloqué"
  6836. #~ msgctxt "@label:status"
  6837. #~ msgid "Can't start print"
  6838. #~ msgstr "Ne peux pas imprimer"
  6839. #~ msgctxt "@action:button"
  6840. #~ msgid "Open Connect.."
  6841. #~ msgstr "Ouvrir Connect"
  6842. #~ msgctxt "@info:title"
  6843. #~ msgid "Print Details"
  6844. #~ msgstr "Les détails d'impression"
  6845. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6846. #~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB."
  6847. #~ msgstr "Pour s'assurer que votre {machine_name} est pourvue des dernières fonctionnalités, il est recommandé de mettre régulièrement à jour le firmware. Cela peut se faire sur la {machine_name} (lorsque connectée au réseau) ou via USB."
  6848. #~ msgctxt "@info:title"
  6849. #~ msgid "Layer View"
  6850. #~ msgstr "Vue en couches"
  6851. #~ msgctxt "@menuitem"
  6852. #~ msgid "Browse plugins"
  6853. #~ msgstr "Parcourir les plug-ins"
  6854. #~ msgctxt "@info:title"
  6855. #~ msgid "Export Details"
  6856. #~ msgstr "Exporter les détails"
  6857. #~ msgctxt "@label"
  6858. #~ msgid ""
  6859. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6860. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6861. #~ " "
  6862. #~ msgstr ""
  6863. #~ "<p>Une erreur fatale que nous ne pouvons résoudre s'est produite !</p>\n"
  6864. #~ " <p>Veuillez utiliser les informations ci-dessous pour envoyer un rapport d'erreur à <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6865. #~ " "
  6866. #~ msgctxt "@action:button"
  6867. #~ msgid "Open Web Page"
  6868. #~ msgstr "Ouvrir la page Web"
  6869. #~ msgctxt "@action:button"
  6870. #~ msgid "Ok"
  6871. #~ msgstr "Ok"
  6872. #~ msgctxt "@label"
  6873. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  6874. #~ msgstr "Cette imprimante n'est pas configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3."
  6875. #~ msgctxt "@label"
  6876. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  6877. #~ msgstr "L'imprimante est configurée pour héberger un groupe de %1 imprimantes connectées Ultimaker 3."
  6878. #~ msgctxt "@label"
  6879. #~ msgid "Completed on: "
  6880. #~ msgstr "Finalisé sur : "
  6881. #~ msgctxt "@info:tooltip"
  6882. #~ msgid "Opens the print jobs page with your default web browser."
  6883. #~ msgstr "Ouvre la page des tâches d'impression avec votre navigateur web."
  6884. #~ msgctxt "@label"
  6885. #~ msgid "PRINTER GROUP"
  6886. #~ msgstr "GROUPE D'IMPRIMANTES"
  6887. #~ msgctxt "@action:warning"
  6888. #~ msgid "Loading a project will clear all models on the buildplate"
  6889. #~ msgstr "Le chargement d'un projet effacera tous les modèles sur le plateau"
  6890. #~ msgctxt "@label"
  6891. #~ msgid ""
  6892. #~ " plugin contains a license.\n"
  6893. #~ "You need to accept this license to install this plugin.\n"
  6894. #~ "Do you agree with the terms below?"
  6895. #~ msgstr ""
  6896. #~ " le plug-in contient une licence.\n"
  6897. #~ "Vous devez approuver cette licence pour installer ce plug-in.\n"
  6898. #~ "Acceptez-vous les clauses ci-dessous ?"
  6899. #~ msgctxt "@label"
  6900. #~ msgid "00h 00min"
  6901. #~ msgstr "00 h 00 min"
  6902. #~ msgctxt "@tooltip"
  6903. #~ msgid "<b>Time information</b>"
  6904. #~ msgstr "<B>Information horaire</b>"
  6905. #~ msgctxt "@description"
  6906. #~ msgid "Print time"
  6907. #~ msgstr "Imprimer l'heure"
  6908. #~ msgctxt "@label"
  6909. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6910. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6911. #~ msgctxt "@label"
  6912. #~ msgid "%1m / ~ %2g"
  6913. #~ msgstr "%1m / ~ %2g"
  6914. #~ msgctxt "@title:window"
  6915. #~ msgid "Cura"
  6916. #~ msgstr "Cura"
  6917. #~ msgctxt "@label"
  6918. #~ msgid "<a href='%1'>Check material compatibility</a>"
  6919. #~ msgstr "<a href='%1'>Vérifier la compatibilité du matériau</a>"
  6920. #~ msgctxt "name"
  6921. #~ msgid "UM3 Network Connection (Cluster)"
  6922. #~ msgstr "Connexion au réseau UM3 (Cluster)"
  6923. #~ msgctxt "description"
  6924. #~ msgid "Provides the Layer view."
  6925. #~ msgstr "Permet la vue en couches."
  6926. #~ msgctxt "name"
  6927. #~ msgid "Layer View"
  6928. #~ msgstr "Vue en couches"
  6929. #~ msgctxt "@item:inlistbox"
  6930. #~ msgid "X-Ray"
  6931. #~ msgstr "Rayon-X"
  6932. #~ msgctxt "@label"
  6933. #~ msgid "Doodle3D"
  6934. #~ msgstr "Doodle3D"
  6935. #~ msgctxt "@info:whatsthis"
  6936. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6937. #~ msgstr "Accepte les G-Code et les envoie par Wi-Fi à une Doodle3D WiFi-Box."
  6938. #~ msgctxt "@item:inmenu"
  6939. #~ msgid "Doodle3D printing"
  6940. #~ msgstr "Impression avec Doodle3D"
  6941. #~ msgctxt "@action:button"
  6942. #~ msgid "Print with Doodle3D"
  6943. #~ msgstr "Imprimer avec Doodle3D"
  6944. #~ msgctxt "@info:tooltip"
  6945. #~ msgid "Print with "
  6946. #~ msgstr "Imprimer avec"
  6947. #~ msgctxt "@title:menu"
  6948. #~ msgid "Doodle3D"
  6949. #~ msgstr "Doodle3D"
  6950. #~ msgctxt "@item:inlistbox"
  6951. #~ msgid "Enable Scan devices..."
  6952. #~ msgstr "Activer les périphériques de numérisation..."
  6953. #~ msgctxt "@info:progress"
  6954. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  6955. #~ msgstr "Enregistrement sur le lecteur amovible <filename>{0}</filename>"
  6956. #~ msgctxt "@info:status"
  6957. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  6958. #~ msgstr "Impossible d'enregistrer <filename>{0}</filename> : <message>{1}</message>"
  6959. #~ msgctxt "@info:status"
  6960. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  6961. #~ msgstr "Gardez à l'esprit que vous devez rouvrir votre fichier SolidWorks manuellement ! Le fait de recharger le modèle ne marchera pas."
  6962. #~ msgctxt "@item:inlistbox"
  6963. #~ msgid "Layers"
  6964. #~ msgstr "Couches"
  6965. #~ msgid "Browse plugins"
  6966. #~ msgstr "Parcourir les plug-ins"
  6967. #~ msgctxt "@item:inmenu"
  6968. #~ msgid "Solid"
  6969. #~ msgstr "Solide"
  6970. #~ msgctxt "@label"
  6971. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  6972. #~ msgstr "Le fichier <filename>{0}</filename> existe déjà. Êtes vous sûr de vouloir le remplacer ?"
  6973. #~ msgctxt "@info:status"
  6974. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  6975. #~ msgstr "Échec de l'exportation du profil vers <filename>{0}</filename> : <message>{1}</message>"
  6976. #~ msgctxt "@info:status"
  6977. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  6978. #~ msgstr "Échec de l'exportation du profil vers <filename>{0}</filename> : Le plug-in du générateur a rapporté une erreur."
  6979. #~ msgctxt "@info:status"
  6980. #~ msgid "Exported profile to <filename>{0}</filename>"
  6981. #~ msgstr "Profil exporté vers <filename>{0}</filename>"
  6982. #~ msgctxt "@info:status"
  6983. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6984. #~ msgstr "Échec de l'importation du profil depuis le fichier <filename>{0}</filename> : <message>{1}</message>"
  6985. #~ msgctxt "@title:window"
  6986. #~ msgid "Doodle3D Settings"
  6987. #~ msgstr "Paramètres Doodle3D"
  6988. #~ msgctxt "@title:window"
  6989. #~ msgid "Print to: %1"
  6990. #~ msgstr "Imprimer sur : %1"
  6991. #~ msgctxt "@label"
  6992. #~ msgid "Extruder Temperature: %1/%2°C"
  6993. #~ msgstr "Température de l'extrudeuse : %1/%2 °C"
  6994. #~ msgctxt "@label"
  6995. #~ msgid "Bed Temperature: %1/%2°C"
  6996. #~ msgstr "Température du plateau : %1/%2 °C"
  6997. #~ msgctxt "@label"
  6998. #~ msgid "%1"
  6999. #~ msgstr "%1"
  7000. #~ msgctxt "@label"
  7001. #~ msgid "View Mode: Layers"
  7002. #~ msgstr "Mode d’affichage : couches"
  7003. #~ msgctxt "@info:status"
  7004. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  7005. #~ msgstr "Impossible d'importer le matériau <filename>%1</filename> : <message>%2</message>"
  7006. #~ msgctxt "@info:status"
  7007. #~ msgid "Successfully imported material <filename>%1</filename>"
  7008. #~ msgstr "Matériau <filename>%1</filename> importé avec succès"
  7009. #~ msgctxt "@info:status"
  7010. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  7011. #~ msgstr "Échec de l'export de matériau vers <filename>%1</filename> : <message>%2</message>"
  7012. #~ msgctxt "@info:status"
  7013. #~ msgid "Successfully exported material to <filename>%1</filename>"
  7014. #~ msgstr "Matériau exporté avec succès vers <filename>%1</filename>"
  7015. #~ msgctxt "@label"
  7016. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  7017. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  7018. #~ msgctxt "@label"
  7019. #~ msgid "%1 m / ~ %2 g"
  7020. #~ msgstr "%1 m / ~ %2 g"
  7021. #~ msgctxt "@label"
  7022. #~ msgid "Hotend"
  7023. #~ msgstr "Extrémité chaude"
  7024. #~ msgctxt "@action:button"
  7025. #~ msgid "View Mode"
  7026. #~ msgstr "Mode d’affichage"
  7027. #~ msgctxt "@title:tab"
  7028. #~ msgid "Print"
  7029. #~ msgstr "Imprimer"
  7030. #~ msgctxt "@label"
  7031. #~ msgid "0%"
  7032. #~ msgstr "0 %"
  7033. #~ msgctxt "@label"
  7034. #~ msgid "Empty infill will leave your model hollow with low strength."
  7035. #~ msgstr "Un remplissage vide laissera votre modèle creux pour une solidité faible."
  7036. #~ msgctxt "@label"
  7037. #~ msgid "20%"
  7038. #~ msgstr "20 %"
  7039. #~ msgctxt "@label"
  7040. #~ msgid "Light (20%) infill will give your model an average strength."
  7041. #~ msgstr "Un remplissage clairsemé (20 %) donnera à votre modèle une solidité moyenne."
  7042. #~ msgctxt "@label"
  7043. #~ msgid "50%"
  7044. #~ msgstr "50 %"
  7045. #~ msgctxt "@label"
  7046. #~ msgid "Dense (50%) infill will give your model an above average strength."
  7047. #~ msgstr "Un remplissage dense (50 %) donnera à votre modèle une solidité supérieure à la moyenne."
  7048. #~ msgctxt "@label"
  7049. #~ msgid "100%"
  7050. #~ msgstr "100 %"
  7051. #~ msgctxt "@label"
  7052. #~ msgid "Solid (100%) infill will make your model completely solid."
  7053. #~ msgstr "Un remplissage solide (100 %) rendra votre modèle vraiment résistant."
  7054. #~ msgctxt "@label"
  7055. #~ msgid "Gradual"
  7056. #~ msgstr "Graduel"
  7057. #~ msgctxt "description"
  7058. #~ msgid "Provides support for writing X3G files"
  7059. #~ msgstr "Permet l'écriture de fichiers X3G"
  7060. #~ msgctxt "name"
  7061. #~ msgid "X3G Writer"
  7062. #~ msgstr "Générateur X3G"
  7063. #~ msgctxt "@label"
  7064. #~ msgid "Machine Settings action"
  7065. #~ msgstr "Action Paramètres de la machine"
  7066. #~ msgctxt "@info:whatsthis"
  7067. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7068. #~ msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)"
  7069. #~ msgctxt "@label"
  7070. #~ msgid "X-Ray View"
  7071. #~ msgstr "Vue Rayon-X"
  7072. #~ msgctxt "@info:whatsthis"
  7073. #~ msgid "Provides the X-Ray view."
  7074. #~ msgstr "Permet la vue Rayon-X."
  7075. #~ msgctxt "@label"
  7076. #~ msgid "X3D Reader"
  7077. #~ msgstr "Lecteur X3D"
  7078. #~ msgctxt "@info:whatsthis"
  7079. #~ msgid "Provides support for reading X3D files."
  7080. #~ msgstr "Fournit la prise en charge de la lecture de fichiers X3D."
  7081. #~ msgctxt "@label"
  7082. #~ msgid "GCode Writer"
  7083. #~ msgstr "Générateur de GCode"
  7084. #~ msgctxt "@info:whatsthis"
  7085. #~ msgid "Writes GCode to a file."
  7086. #~ msgstr "Enregistre le GCode dans un fichier."
  7087. #~ msgctxt "@action:button Preceded by 'Ready to'."
  7088. #~ msgid "Print with Doodle3D"
  7089. #~ msgstr "Imprimer avec Doodle3D"
  7090. #~ msgctxt "@info:whatsthis"
  7091. #~ msgid "Shows changes since latest checked version."
  7092. #~ msgstr "Affiche les changements depuis la dernière version."
  7093. #~ msgctxt "@label"
  7094. #~ msgid "Profile flatener"
  7095. #~ msgstr "Aplatisseur de profil"
  7096. #~ msgctxt "@info:whatsthis"
  7097. #~ msgid "Create a flattend quality changes profile."
  7098. #~ msgstr "Créer un profil de changements de qualité aplati."
  7099. #~ msgctxt "@label"
  7100. #~ msgid "USB printing"
  7101. #~ msgstr "Impression par USB"
  7102. #~ msgctxt "@info:whatsthis"
  7103. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  7104. #~ msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware."
  7105. #~ msgctxt "X3G Writer Plugin Description"
  7106. #~ msgid "Writes X3G to a file"
  7107. #~ msgstr "Enregistre le X3G dans un fichier"
  7108. #~ msgctxt "@label"
  7109. #~ msgid "Removable Drive Output Device Plugin"
  7110. #~ msgstr "Plugin de périphérique de sortie sur disque amovible"
  7111. #~ msgctxt "@info:whatsthis"
  7112. #~ msgid "Provides removable drive hotplugging and writing support."
  7113. #~ msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible."
  7114. #~ msgctxt "@info:whatsthis"
  7115. #~ msgid "Manages network connections to Ultimaker 3 printers"
  7116. #~ msgstr "Gère les connexions réseau vers les imprimantes Ultimaker 3"
  7117. #~ msgctxt "@label"
  7118. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7119. #~ msgstr "PrintCore différent (Cura : {0}, Imprimante : {1}) sélectionné pour l'extrudeuse {2}"
  7120. #~ msgctxt "@label"
  7121. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7122. #~ msgstr "Le PrintCore {0} n'est pas correctement calibré. Le calibrage XY doit être effectué sur l'imprimante."
  7123. #~ msgctxt "@label"
  7124. #~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer."
  7125. #~ msgstr "Les PrintCores et / ou matériaux sur votre imprimante diffèrent de ceux de votre projet actuel. Pour un résultat optimal, découpez toujours pour les PrintCores et matériaux insérés dans votre imprimante."
  7126. #~ msgctxt "@label"
  7127. #~ msgid "Post Processing"
  7128. #~ msgstr "Post-traitement"
  7129. #~ msgctxt "Description of plugin"
  7130. #~ msgid "Extension that allows for user created scripts for post processing"
  7131. #~ msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur"
  7132. #~ msgctxt "@label"
  7133. #~ msgid "Auto Save"
  7134. #~ msgstr "Enregistrement auto"
  7135. #~ msgctxt "@info:whatsthis"
  7136. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7137. #~ msgstr "Enregistre automatiquement les Préférences, Machines et Profils après des modifications."
  7138. #~ msgctxt "@label"
  7139. #~ msgid "Slice info"
  7140. #~ msgstr "Information sur le découpage"
  7141. #~ msgctxt "@info:whatsthis"
  7142. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  7143. #~ msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences."
  7144. #~ msgctxt "@info"
  7145. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  7146. #~ msgstr "Cura collecte des statistiques anonymes sur le découpage. Vous pouvez désactiver cette fonctionnalité dans les préférences"
  7147. #~ msgctxt "@label"
  7148. #~ msgid "Material Profiles"
  7149. #~ msgstr "Profils matériels"
  7150. #~ msgctxt "@info:whatsthis"
  7151. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  7152. #~ msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML."
  7153. #~ msgctxt "@label"
  7154. #~ msgid "Legacy Cura Profile Reader"
  7155. #~ msgstr "Lecteur de profil Cura antérieur"
  7156. #~ msgctxt "@info:whatsthis"
  7157. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  7158. #~ msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures."
  7159. #~ msgctxt "@label"
  7160. #~ msgid "GCode Profile Reader"
  7161. #~ msgstr "Lecteur de profil GCode"
  7162. #~ msgctxt "@info:whatsthis"
  7163. #~ msgid "Provides support for importing profiles from g-code files."
  7164. #~ msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code."
  7165. #~ msgctxt "@label"
  7166. #~ msgid "Layer View"
  7167. #~ msgstr "Vue en couches"
  7168. #~ msgctxt "@info:whatsthis"
  7169. #~ msgid "Provides the Layer view."
  7170. #~ msgstr "Permet la vue en couches."
  7171. #~ msgctxt "@label"
  7172. #~ msgid "Version Upgrade 2.5 to 2.6"
  7173. #~ msgstr "Mise à niveau de 2.5 vers 2.6"
  7174. #~ msgctxt "@info:whatsthis"
  7175. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  7176. #~ msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6."
  7177. #~ msgctxt "@label"
  7178. #~ msgid "Version Upgrade 2.1 to 2.2"
  7179. #~ msgstr "Mise à niveau vers 2.1 vers 2.2"
  7180. #~ msgctxt "@info:whatsthis"
  7181. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  7182. #~ msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2."
  7183. #~ msgctxt "@label"
  7184. #~ msgid "Version Upgrade 2.2 to 2.4"
  7185. #~ msgstr "Mise à niveau de 2.2 vers 2.4"
  7186. #~ msgctxt "@info:whatsthis"
  7187. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  7188. #~ msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4."
  7189. #~ msgctxt "@label"
  7190. #~ msgid "Image Reader"
  7191. #~ msgstr "Lecteur d'images"
  7192. #~ msgctxt "@info:whatsthis"
  7193. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  7194. #~ msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D."
  7195. #~ msgctxt "@label"
  7196. #~ msgid "CuraEngine Backend"
  7197. #~ msgstr "Système CuraEngine"
  7198. #~ msgctxt "@info:whatsthis"
  7199. #~ msgid "Provides the link to the CuraEngine slicing backend."
  7200. #~ msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine."
  7201. #~ msgctxt "@label"
  7202. #~ msgid "Per Model Settings Tool"
  7203. #~ msgstr "Outil de paramètres par modèle"
  7204. #~ msgctxt "@info:whatsthis"
  7205. #~ msgid "Provides the Per Model Settings."
  7206. #~ msgstr "Fournit les paramètres par modèle."
  7207. #~ msgctxt "@label"
  7208. #~ msgid "3MF Reader"
  7209. #~ msgstr "Lecteur 3MF"
  7210. #~ msgctxt "@info:whatsthis"
  7211. #~ msgid "Provides support for reading 3MF files."
  7212. #~ msgstr "Fournit la prise en charge de la lecture de fichiers 3MF."
  7213. #~ msgctxt "@label"
  7214. #~ msgid "Solid View"
  7215. #~ msgstr "Vue solide"
  7216. #~ msgctxt "@info:whatsthis"
  7217. #~ msgid "Provides a normal solid mesh view."
  7218. #~ msgstr "Affiche une vue en maille solide normale."
  7219. #~ msgctxt "@label"
  7220. #~ msgid "G-code Reader"
  7221. #~ msgstr "Lecteur G-Code"
  7222. #~ msgctxt "@info:whatsthis"
  7223. #~ msgid "Allows loading and displaying G-code files."
  7224. #~ msgstr "Permet le chargement et l'affichage de fichiers G-Code."
  7225. #~ msgctxt "@label"
  7226. #~ msgid "Cura Profile Writer"
  7227. #~ msgstr "Générateur de profil Cura"
  7228. #~ msgctxt "@info:whatsthis"
  7229. #~ msgid "Provides support for exporting Cura profiles."
  7230. #~ msgstr "Fournit la prise en charge de l'exportation de profils Cura."
  7231. #~ msgctxt "@label"
  7232. #~ msgid "3MF Writer"
  7233. #~ msgstr "Générateur 3MF"
  7234. #~ msgctxt "@info:whatsthis"
  7235. #~ msgid "Provides support for writing 3MF files."
  7236. #~ msgstr "Permet l'écriture de fichiers 3MF"
  7237. #~ msgctxt "@label"
  7238. #~ msgid "Ultimaker machine actions"
  7239. #~ msgstr "Actions de la machine Ultimaker"
  7240. #~ msgctxt "@info:whatsthis"
  7241. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7242. #~ 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.)"
  7243. #~ msgctxt "@label"
  7244. #~ msgid "Cura Profile Reader"
  7245. #~ msgstr "Lecteur de profil Cura"
  7246. #~ msgctxt "@info:whatsthis"
  7247. #~ msgid "Provides support for importing Cura profiles."
  7248. #~ msgstr "Fournit la prise en charge de l'importation de profils Cura."
  7249. #~ msgctxt "@info"
  7250. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  7251. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  7252. #~ msgctxt "@label"
  7253. #~ msgid "Build Plate Shape"
  7254. #~ msgstr "Forme du plateau"
  7255. #~ msgctxt "@option:check"
  7256. #~ msgid "Machine Center is Zero"
  7257. #~ msgstr "Le centre de la machine est zéro"
  7258. #~ msgctxt "@option:check"
  7259. #~ msgid "Heated Bed"
  7260. #~ msgstr "Plateau chauffant"
  7261. #~ msgctxt "@label"
  7262. #~ msgid "GCode Flavor"
  7263. #~ msgstr "GCode Parfum"
  7264. #~ msgctxt "@label"
  7265. #~ msgid "Material Diameter"
  7266. #~ msgstr "Diamètre du matériau"
  7267. #~ msgctxt "@label"
  7268. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  7269. #~ 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>"
  7270. #~ msgctxt "@item:inlistbox"
  7271. #~ msgid "Ultimaker"
  7272. #~ msgstr "Ultimaker"
  7273. #~ msgctxt "@label"
  7274. #~ msgid "Support library for scientific computing "
  7275. #~ msgstr "Prise en charge de la bibliothèque pour le calcul scientifique "
  7276. #~ msgctxt "@tooltip"
  7277. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  7278. #~ msgstr "<b>Configuration de l'impression</b><br/><br/>Modifier ou réviser les paramètres pour la tâche d'impression active."
  7279. #~ msgctxt "@tooltip"
  7280. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  7281. #~ msgstr "<b>Moniteur de l'imprimante</b><br/><br/>Surveiller l'état de l'imprimante connectée et la progression de la tâche d'impression."
  7282. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  7283. #~ msgid "Automatic: %1"
  7284. #~ msgstr "Automatique : %1"
  7285. #~ msgctxt "@label:PrintjobStatus"
  7286. #~ msgid "Please load a 3d model"
  7287. #~ msgstr "Veuillez charger un modèle 3D"
  7288. #~ msgctxt "@label"
  7289. #~ msgid "Print Selected Model with %1"
  7290. #~ msgid_plural "Print Selected Models With %1"
  7291. #~ msgstr[0] "Imprimer le modèle sélectionné avec %1"
  7292. #~ msgstr[1] "Imprimer les modèles sélectionnés avec %1"
  7293. #~ msgctxt "@info:status"
  7294. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  7295. #~ msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. Pas de PrinterCore inséré dans la fente {0}."
  7296. #~ msgctxt "@label"
  7297. #~ msgid "Version Upgrade 2.4 to 2.5"
  7298. #~ msgstr "Mise à niveau de 2.4 vers 2.5"
  7299. #~ msgctxt "@info:whatsthis"
  7300. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  7301. #~ msgstr "Configurations des mises à niveau de Cura 2.4 vers Cura 2.5."
  7302. #~ msgctxt "@info:status"
  7303. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  7304. #~ msgstr "Impossible de trouver un profil de qualité pour cette combinaison. Les paramètres par défaut seront utilisés à la place."
  7305. #~ msgctxt "@title:window"
  7306. #~ msgid "Oops!"
  7307. #~ msgstr "Oups !"
  7308. #~ msgctxt "@label"
  7309. #~ msgid ""
  7310. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7311. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  7312. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  7313. #~ " "
  7314. #~ msgstr ""
  7315. #~ "<p>Une erreur fatale que nous ne pouvons résoudre s'est produite !</p>\n"
  7316. #~ " <p>Nous espérons que cette image d'un chaton vous aidera à vous remettre du choc.</p>\n"
  7317. #~ " <p>Veuillez utiliser les informations ci-dessous pour envoyer un rapport d'erreur à <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>"
  7318. #~ msgctxt "@label"
  7319. #~ msgid "Please enter the correct settings for your printer below:"
  7320. #~ msgstr "Indiquez les bons paramètres pour votre imprimante ci-dessous :"
  7321. #~ msgctxt "@label"
  7322. #~ msgid "Extruder %1"
  7323. #~ msgstr "Extrudeur %1"
  7324. #~ msgctxt "@label Followed by extruder selection drop-down."
  7325. #~ msgid "Print model with"
  7326. #~ msgstr "Imprimer le modèle avec"
  7327. #~ msgctxt "@label"
  7328. #~ msgid "You will need to restart the application for language changes to have effect."
  7329. #~ msgstr "Vous devez redémarrer l'application pour que les changements de langue prennent effet."
  7330. #~ msgctxt "@info:tooltip"
  7331. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  7332. #~ msgstr "Bouge la caméra afin que le modèle sélectionné se trouve au centre de la vue."
  7333. #~ msgctxt "@action:inmenu menubar:edit"
  7334. #~ msgid "Delete &Selection"
  7335. #~ msgstr "&Supprimer la sélection"
  7336. #~ msgctxt "@action:inmenu menubar:file"
  7337. #~ msgid "&Open File..."
  7338. #~ msgstr "&Ouvrir un fichier..."
  7339. #~ msgctxt "@action:inmenu menubar:file"
  7340. #~ msgid "&Open Project..."
  7341. #~ msgstr "&Ouvrir un projet..."
  7342. #~ msgctxt "@title:window"
  7343. #~ msgid "Multiply Model"
  7344. #~ msgstr "Multiplier le modèle"
  7345. #~ msgctxt "@title:menu menubar:file"
  7346. #~ msgid "Save &All"
  7347. #~ msgstr "Enregistrer &tout"
  7348. #~ msgctxt "@title:window"
  7349. #~ msgid "Open file"
  7350. #~ msgstr "Ouvrir un fichier"
  7351. #~ msgctxt "@title:window"
  7352. #~ msgid "Open workspace"
  7353. #~ msgstr "Ouvrir l'espace de travail"
  7354. #~ msgctxt "@label"
  7355. #~ msgid "Hollow"
  7356. #~ msgstr "Creux"
  7357. #~ msgctxt "@label"
  7358. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  7359. #~ msgstr "L'absence de remplissage (0 %) laissera votre modèle creux pour une solidité faible"
  7360. #~ msgctxt "@label"
  7361. #~ msgid "Light"
  7362. #~ msgstr "Clairsemé"
  7363. #~ msgctxt "@label"
  7364. #~ msgid "Light (20%) infill will give your model an average strength"
  7365. #~ msgstr "Un remplissage clairsemé (20 %) donnera à votre modèle une solidité moyenne"
  7366. #~ msgctxt "@label"
  7367. #~ msgid "Dense"
  7368. #~ msgstr "Dense"
  7369. #~ msgctxt "@label"
  7370. #~ msgid "Dense (50%) infill will give your model an above average strength"
  7371. #~ msgstr "Un remplissage dense (50 %) donnera à votre modèle une solidité supérieure à la moyenne"
  7372. #~ msgctxt "@label"
  7373. #~ msgid "Solid"
  7374. #~ msgstr "Solide"
  7375. #~ msgctxt "@label"
  7376. #~ msgid "Solid (100%) infill will make your model completely solid"
  7377. #~ msgstr "Un remplissage solide (100 %) rendra votre modèle vraiment résistant"
  7378. #~ msgctxt "@label"
  7379. #~ msgid "Enable Support"
  7380. #~ msgstr "Activer les supports"
  7381. #~ msgctxt "@label"
  7382. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  7383. #~ msgstr "Active les structures de support. Ces structures soutiennent les modèles présentant d'importants porte-à-faux."
  7384. #~ msgctxt "@label"
  7385. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  7386. #~ msgstr "Besoin d'aide pour améliorer vos impressions ? Lisez les <a href='%1'>Guides de dépannage Ultimaker</a>"
  7387. #~ msgctxt "@info:status"
  7388. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  7389. #~ msgstr "Connecté sur le réseau à {0}. Veuillez approuver la demande d'accès sur l'imprimante."
  7390. #~ msgctxt "@info:status"
  7391. #~ msgid "Connected over the network to {0}."
  7392. #~ msgstr "Connecté sur le réseau à {0}."
  7393. #~ msgctxt "@info:status"
  7394. #~ msgid "Connected over the network to {0}. No access to control the printer."
  7395. #~ msgstr "Connecté sur le réseau à {0}. Pas d'accès pour commander l'imprimante."
  7396. #~ msgctxt "@info:status"
  7397. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  7398. #~ msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. Vérifiez l'imprimante."
  7399. #~ msgctxt "@label"
  7400. #~ msgid "You made changes to the following setting(s)/override(s):"
  7401. #~ msgstr "Vous avez modifié le(s) paramètre(s) / forçage(s) suivant(s) :"
  7402. #~ msgctxt "@window:title"
  7403. #~ msgid "Switched profiles"
  7404. #~ msgstr "Profils échangés"
  7405. #~ msgctxt "@label"
  7406. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  7407. #~ msgstr "Voulez-vous transférer le(s) %d paramètre(s) / forçage(s) modifié(s) sur ce profil ?"
  7408. #~ msgctxt "@label"
  7409. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  7410. #~ msgstr "Si vous transférez vos paramètres, ils écraseront les paramètres dans le profil. Si vous ne transférez pas ces paramètres, ils seront perdus."
  7411. #~ msgctxt "@label"
  7412. #~ msgid "Cost per Meter (Approx.)"
  7413. #~ msgstr "Coût par mètre (env.)"
  7414. #~ msgctxt "@label"
  7415. #~ msgid "%1/m"
  7416. #~ msgstr "%1/m"
  7417. #~ msgctxt "@info:tooltip"
  7418. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  7419. #~ msgstr "Afficher les 5 couches supérieures en vue en couches ou seulement la couche du dessus. Le rendu de 5 couches prend plus de temps mais peut fournir davantage d'informations."
  7420. #~ msgctxt "@action:button"
  7421. #~ msgid "Display five top layers in layer view"
  7422. #~ msgstr "Afficher les cinq couches supérieures en vue en couches"
  7423. #~ msgctxt "@info:tooltip"
  7424. #~ msgid "Should only the top layers be displayed in layerview?"
  7425. #~ msgstr "Seules les couches supérieures doivent-elles être affichées en vue en couches ?"
  7426. #~ msgctxt "@option:check"
  7427. #~ msgid "Only display top layer(s) in layer view"
  7428. #~ msgstr "Afficher uniquement la (les) couche(s) supérieure(s) en vue en couches"
  7429. #~ msgctxt "@label"
  7430. #~ msgid "Opening files"
  7431. #~ msgstr "Ouverture des fichiers"
  7432. #~ msgctxt "@label"
  7433. #~ msgid "Printer Monitor"
  7434. #~ msgstr "Moniteur de l'imprimante"
  7435. #~ msgctxt "@label"
  7436. #~ msgid "Temperatures"
  7437. #~ msgstr "Températures"
  7438. #~ msgctxt "@label:PrintjobStatus"
  7439. #~ msgid "Preparing to slice..."
  7440. #~ msgstr "Préparation de la découpe..."
  7441. #~ msgctxt "@window:title"
  7442. #~ msgid "Changes on the Printer"
  7443. #~ msgstr "Modifications sur l'imprimante"
  7444. #~ msgctxt "@action:inmenu"
  7445. #~ msgid "&Duplicate Model"
  7446. #~ msgstr "&Dupliquer le modèle"
  7447. #~ msgctxt "@label"
  7448. #~ msgid "Helper Parts:"
  7449. #~ msgstr "Pièces d'aide :"
  7450. #~ msgctxt "@label"
  7451. #~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  7452. #~ msgstr "Activez l'impression des structures de support. Cela créera des structures de support sous le modèle afin de l'empêcher de s'affaisser ou de s'imprimer dans les airs."
  7453. #~ msgctxt "@label"
  7454. #~ msgid "Don't print support"
  7455. #~ msgstr "Ne pas imprimer le support"
  7456. #~ msgctxt "@label"
  7457. #~ msgid "Print support using %1"
  7458. #~ msgstr "Imprimer le support à l'aide de %1"
  7459. #~ msgctxt "@label:listbox"
  7460. #~ msgid "Printer:"
  7461. #~ msgstr "Imprimante :"
  7462. #~ msgctxt "@info:status"
  7463. #~ msgid "Successfully imported profiles {0}"
  7464. #~ msgstr "Importation des profils {0} réussie"
  7465. #~ msgctxt "@label"
  7466. #~ msgid "Scripts"
  7467. #~ msgstr "Scripts"
  7468. #~ msgctxt "@label"
  7469. #~ msgid "Active Scripts"
  7470. #~ msgstr "Scripts actifs"
  7471. #~ msgctxt "@label"
  7472. #~ msgid "Done"
  7473. #~ msgstr "Terminé"
  7474. #~ msgctxt "@item:inlistbox"
  7475. #~ msgid "English"
  7476. #~ msgstr "Anglais"
  7477. #~ msgctxt "@item:inlistbox"
  7478. #~ msgid "Finnish"
  7479. #~ msgstr "Finnois"
  7480. #~ msgctxt "@item:inlistbox"
  7481. #~ msgid "French"
  7482. #~ msgstr "Français"
  7483. #~ msgctxt "@item:inlistbox"
  7484. #~ msgid "German"
  7485. #~ msgstr "Allemand"
  7486. #~ msgctxt "@item:inlistbox"
  7487. #~ msgid "Italian"
  7488. #~ msgstr "Italien"
  7489. #~ msgctxt "@item:inlistbox"
  7490. #~ msgid "Dutch"
  7491. #~ msgstr "Néerlandais"
  7492. #~ msgctxt "@item:inlistbox"
  7493. #~ msgid "Spanish"
  7494. #~ msgstr "Espagnol"
  7495. #~ msgctxt "@label"
  7496. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  7497. #~ msgstr "Voulez-vous modifier les PrintCores et matériaux dans Cura pour correspondre à votre imprimante ?"
  7498. #~ msgctxt "@label:"
  7499. #~ msgid "Print Again"
  7500. #~ msgstr "Imprimer à nouveau"