cura.po 251 KB

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