cura.po 308 KB

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