fdmprinter.def.json.po 372 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681
  1. # Cura
  2. # Copyright (C) 2022 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 5.1\n"
  8. "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
  9. "POT-Creation-Date: 2022-06-21 12:50+0000\n"
  10. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  11. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  12. "Language-Team: LANGUAGE\n"
  13. "Language: \n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. #: fdmprinter.def.json
  18. msgctxt "machine_settings label"
  19. msgid "Machine"
  20. msgstr "Makine"
  21. #: fdmprinter.def.json
  22. msgctxt "machine_settings description"
  23. msgid "Machine specific settings"
  24. msgstr "Makine özel ayarları"
  25. #: fdmprinter.def.json
  26. msgctxt "machine_name label"
  27. msgid "Machine Type"
  28. msgstr "Makine Türü"
  29. #: fdmprinter.def.json
  30. msgctxt "machine_name description"
  31. msgid "The name of your 3D printer model."
  32. msgstr "3B yazıcı modelinin adı."
  33. #: fdmprinter.def.json
  34. msgctxt "machine_show_variants label"
  35. msgid "Show Machine Variants"
  36. msgstr "Makine Varyantlarını Göster"
  37. #: fdmprinter.def.json
  38. msgctxt "machine_show_variants description"
  39. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  40. msgstr "Ayrı json dosyalarında belirtilen bu makinenin farklı varyantlarının gösterilip gösterilmemesi."
  41. #: fdmprinter.def.json
  42. msgctxt "machine_start_gcode label"
  43. msgid "Start G-code"
  44. msgstr "G-code’u Başlat"
  45. #: fdmprinter.def.json
  46. msgctxt "machine_start_gcode description"
  47. msgid ""
  48. "G-code commands to be executed at the very start - separated by \n"
  49. "."
  50. msgstr ""
  51. "ile ayrılan, başlangıçta yürütülecek G-code komutları\n"
  52. "."
  53. #: fdmprinter.def.json
  54. msgctxt "machine_end_gcode label"
  55. msgid "End G-code"
  56. msgstr "G-code’u Sonlandır"
  57. #: fdmprinter.def.json
  58. msgctxt "machine_end_gcode description"
  59. msgid ""
  60. "G-code commands to be executed at the very end - separated by \n"
  61. "."
  62. msgstr ""
  63. "En son çalıştırılacak G-code komutları (\n"
  64. " ile ayrılır)."
  65. #: fdmprinter.def.json
  66. msgctxt "material_guid label"
  67. msgid "Material GUID"
  68. msgstr "GUID malzeme"
  69. #: fdmprinter.def.json
  70. msgctxt "material_guid description"
  71. msgid "GUID of the material. This is set automatically."
  72. msgstr "Malzemedeki GUID Otomatik olarak ayarlanır."
  73. #: fdmprinter.def.json
  74. msgctxt "material_diameter label"
  75. msgid "Diameter"
  76. msgstr "Çap"
  77. #: fdmprinter.def.json
  78. msgctxt "material_diameter description"
  79. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  80. msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin."
  81. #: fdmprinter.def.json
  82. msgctxt "material_bed_temp_wait label"
  83. msgid "Wait for Build Plate Heatup"
  84. msgstr "Yapı Levhasının Isınmasını Bekle"
  85. #: fdmprinter.def.json
  86. msgctxt "material_bed_temp_wait description"
  87. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  88. msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleme komutu ekleyip eklememe."
  89. #: fdmprinter.def.json
  90. msgctxt "material_print_temp_wait label"
  91. msgid "Wait for Nozzle Heatup"
  92. msgstr "Nozülün Isınmasını Bekle"
  93. #: fdmprinter.def.json
  94. msgctxt "material_print_temp_wait description"
  95. msgid "Whether to wait until the nozzle temperature is reached at the start."
  96. msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleyip beklememe."
  97. #: fdmprinter.def.json
  98. msgctxt "material_print_temp_prepend label"
  99. msgid "Include Material Temperatures"
  100. msgstr "Malzeme Sıcaklıklarını Ekle"
  101. #: fdmprinter.def.json
  102. msgctxt "material_print_temp_prepend description"
  103. msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting."
  104. msgstr "Gcode başlangıcında nozül sıcaklık komutlarını ekleyip eklememe. start_gcode zaten nozül sıcaklığı içeriyorsa Cura ön ucu otomatik olarak bu ayarı devre dışı bırakır."
  105. #: fdmprinter.def.json
  106. msgctxt "material_bed_temp_prepend label"
  107. msgid "Include Build Plate Temperature"
  108. msgstr "Yapı Levhası Sıcaklığını Ekle"
  109. #: fdmprinter.def.json
  110. msgctxt "material_bed_temp_prepend description"
  111. msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting."
  112. msgstr "Gcode başlangıcında yapı levhası sıcaklık komutlarını ekleyip eklememe. start_gcode zaten yapı levhası sıcaklığı içeriyorsa Cura ön ucu otomatik olarak bu ayarı devre dışı bırakır."
  113. #: fdmprinter.def.json
  114. msgctxt "machine_width label"
  115. msgid "Machine Width"
  116. msgstr "Makine Genişliği"
  117. #: fdmprinter.def.json
  118. msgctxt "machine_width description"
  119. msgid "The width (X-direction) of the printable area."
  120. msgstr "Yazdırılabilir alan genişliği (X yönü)."
  121. #: fdmprinter.def.json
  122. msgctxt "machine_depth label"
  123. msgid "Machine Depth"
  124. msgstr "Makine Derinliği"
  125. #: fdmprinter.def.json
  126. msgctxt "machine_depth description"
  127. msgid "The depth (Y-direction) of the printable area."
  128. msgstr "Yazdırılabilir alan derinliği (Y yönü)."
  129. #: fdmprinter.def.json
  130. msgctxt "machine_height label"
  131. msgid "Machine Height"
  132. msgstr "Makine Yüksekliği"
  133. #: fdmprinter.def.json
  134. msgctxt "machine_height description"
  135. msgid "The height (Z-direction) of the printable area."
  136. msgstr "Yazdırılabilir alan yüksekliği (Z yönü)."
  137. #: fdmprinter.def.json
  138. msgctxt "machine_shape label"
  139. msgid "Build Plate Shape"
  140. msgstr "Yapı Levhası Şekli"
  141. #: fdmprinter.def.json
  142. msgctxt "machine_shape description"
  143. msgid "The shape of the build plate without taking unprintable areas into account."
  144. msgstr "Yazdırılamayan alanların haricinde yapı levhasının şekli."
  145. #: fdmprinter.def.json
  146. msgctxt "machine_shape option rectangular"
  147. msgid "Rectangular"
  148. msgstr "Dikdörtgen"
  149. #: fdmprinter.def.json
  150. msgctxt "machine_shape option elliptic"
  151. msgid "Elliptic"
  152. msgstr "Eliptik"
  153. #: fdmprinter.def.json
  154. msgctxt "machine_buildplate_type label"
  155. msgid "Build Plate Material"
  156. msgstr "Yapı Levhası Malzemesi"
  157. #: fdmprinter.def.json
  158. msgctxt "machine_buildplate_type description"
  159. msgid "The material of the build plate installed on the printer."
  160. msgstr "Yazıcıya takılı yapı levhasının malzemesi."
  161. #: fdmprinter.def.json
  162. msgctxt "machine_buildplate_type option glass"
  163. msgid "Glass"
  164. msgstr "Cam"
  165. #: fdmprinter.def.json
  166. msgctxt "machine_buildplate_type option aluminum"
  167. msgid "Aluminum"
  168. msgstr "Alüminyum"
  169. #: fdmprinter.def.json
  170. msgctxt "machine_heated_bed label"
  171. msgid "Has Heated Build Plate"
  172. msgstr "Isıtılmış Yapı Levhası İçerir"
  173. #: fdmprinter.def.json
  174. msgctxt "machine_heated_bed description"
  175. msgid "Whether the machine has a heated build plate present."
  176. msgstr "Makinenin mevcut yapı levhasını ısıtıp ısıtmadığı."
  177. #: fdmprinter.def.json
  178. msgctxt "machine_heated_build_volume label"
  179. msgid "Has Build Volume Temperature Stabilization"
  180. msgstr "Yapı Hacmi Sıcaklığı Dengesi Mevcut"
  181. #: fdmprinter.def.json
  182. msgctxt "machine_heated_build_volume description"
  183. msgid "Whether the machine is able to stabilize the build volume temperature."
  184. msgstr "Makinenin yapı hacmi sıcaklığını dengeleyip dengelemediği."
  185. #: fdmprinter.def.json
  186. msgctxt "machine_always_write_active_tool label"
  187. msgid "Always Write Active Tool"
  188. msgstr "Her Zaman Aktif Aracı Yaz"
  189. #: fdmprinter.def.json
  190. msgctxt "machine_always_write_active_tool description"
  191. msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands."
  192. msgstr "Aktif olmayan araca geçici komut gönderildikten sonra aktif aracı yazın. Smoothie veya modal araç komutlarına sahip diğer donanım yazılımları ile Çift Ekstrüderli baskı için gereklidir."
  193. #: fdmprinter.def.json
  194. msgctxt "machine_center_is_zero label"
  195. msgid "Is Center Origin"
  196. msgstr "Merkez Nokta"
  197. #: fdmprinter.def.json
  198. msgctxt "machine_center_is_zero description"
  199. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  200. msgstr "Yazıcı sıfır noktasının X/Y koordinatlarının yazdırılabilir alanın merkezinde olup olmadığı."
  201. #: fdmprinter.def.json
  202. msgctxt "machine_extruder_count label"
  203. msgid "Number of Extruders"
  204. msgstr "Ekstrüder Sayısı"
  205. #: fdmprinter.def.json
  206. msgctxt "machine_extruder_count description"
  207. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  208. msgstr "Ekstruder dişli çarklarının sayısı. Ekstruder dişli çarkı besleyici, bowden tüpü ve nozülden oluşur."
  209. #: fdmprinter.def.json
  210. msgctxt "extruders_enabled_count label"
  211. msgid "Number of Extruders That Are Enabled"
  212. msgstr "Etkinleştirilmiş Ekstruder Sayısı"
  213. #: fdmprinter.def.json
  214. msgctxt "extruders_enabled_count description"
  215. msgid "Number of extruder trains that are enabled; automatically set in software"
  216. msgstr "Etkinleştirilmiş ekstruder dişli çarklarının sayısı; yazılımda otomatik olarak ayarlanır"
  217. #: fdmprinter.def.json
  218. msgctxt "machine_nozzle_tip_outer_diameter label"
  219. msgid "Outer Nozzle Diameter"
  220. msgstr "Dış Nozül Çapı"
  221. #: fdmprinter.def.json
  222. msgctxt "machine_nozzle_tip_outer_diameter description"
  223. msgid "The outer diameter of the tip of the nozzle."
  224. msgstr "Nozül ucunun dış çapı."
  225. #: fdmprinter.def.json
  226. msgctxt "machine_nozzle_head_distance label"
  227. msgid "Nozzle Length"
  228. msgstr "Nozül Uzunluğu"
  229. #: fdmprinter.def.json
  230. msgctxt "machine_nozzle_head_distance description"
  231. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  232. msgstr "Nozül ucu ve yazıcı başlığının en alt parçası arasındaki yükseklik farkı."
  233. #: fdmprinter.def.json
  234. msgctxt "machine_nozzle_expansion_angle label"
  235. msgid "Nozzle Angle"
  236. msgstr "Nozül Açısı"
  237. #: fdmprinter.def.json
  238. msgctxt "machine_nozzle_expansion_angle description"
  239. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  240. msgstr "Yatay düzlem ve nozül ucunun sağ üzerinde bulunan konik parça arasındaki açı."
  241. #: fdmprinter.def.json
  242. msgctxt "machine_heat_zone_length label"
  243. msgid "Heat Zone Length"
  244. msgstr "Isı Bölgesi Uzunluğu"
  245. #: fdmprinter.def.json
  246. msgctxt "machine_heat_zone_length description"
  247. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  248. msgstr "Nozülden gelen ısının filamana aktarıldığı nozül ucuna olan mesafe."
  249. #: fdmprinter.def.json
  250. msgctxt "machine_nozzle_temp_enabled label"
  251. msgid "Enable Nozzle Temperature Control"
  252. msgstr "Nozül Sıcaklığı Kontrolünü Etkinleştir"
  253. #: fdmprinter.def.json
  254. msgctxt "machine_nozzle_temp_enabled description"
  255. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  256. msgstr "Cura üzerinden sıcaklığın kontrol edilip edilmeme ayarı. Nozül sıcaklığını Cura dışından kontrol etmek için bu ayarı kapalı konuma getirin."
  257. #: fdmprinter.def.json
  258. msgctxt "machine_nozzle_heat_up_speed label"
  259. msgid "Heat Up Speed"
  260. msgstr "Isınma Hızı"
  261. #: fdmprinter.def.json
  262. msgctxt "machine_nozzle_heat_up_speed description"
  263. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  264. msgstr "Ortalama nozül ısınmasının normal yazdırma sıcaklıkları ve bekleme sıcaklığı penceresinin üzerinde olduğu hız (°C/sn)."
  265. #: fdmprinter.def.json
  266. msgctxt "machine_nozzle_cool_down_speed label"
  267. msgid "Cool Down Speed"
  268. msgstr "Soğuma hızı"
  269. #: fdmprinter.def.json
  270. msgctxt "machine_nozzle_cool_down_speed description"
  271. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  272. msgstr "Ortalama nozül soğumasının normal yazdırma sıcaklıkları ve bekleme sıcaklığı penceresinin üzerinde olduğu hız (°C/sn)."
  273. #: fdmprinter.def.json
  274. msgctxt "machine_min_cool_heat_time_window label"
  275. msgid "Minimal Time Standby Temperature"
  276. msgstr "Minimum Sürede Bekleme Sıcaklığı"
  277. #: fdmprinter.def.json
  278. msgctxt "machine_min_cool_heat_time_window description"
  279. msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature."
  280. msgstr "Nozül soğumadan önce ekstruderin etkin olmaması gerektiği minimum süre. Ekstruder sadece bu süreden daha uzun bir süre kullanılmadığında bekleme sıcaklığına inebilecektir."
  281. #: fdmprinter.def.json
  282. msgctxt "machine_gcode_flavor label"
  283. msgid "G-code Flavor"
  284. msgstr "G-code türü"
  285. #: fdmprinter.def.json
  286. msgctxt "machine_gcode_flavor description"
  287. msgid "The type of g-code to be generated."
  288. msgstr "Oluşturulacak g-code türü."
  289. #: fdmprinter.def.json
  290. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  291. msgid "Marlin"
  292. msgstr "Marlin"
  293. #: fdmprinter.def.json
  294. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  295. msgid "Marlin (Volumetric)"
  296. msgstr "Marlin (Volümetrik)"
  297. #: fdmprinter.def.json
  298. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  299. msgid "RepRap"
  300. msgstr "RepRap"
  301. #: fdmprinter.def.json
  302. msgctxt "machine_gcode_flavor option UltiGCode"
  303. msgid "Ultimaker 2"
  304. msgstr "Ultimaker 2"
  305. #: fdmprinter.def.json
  306. msgctxt "machine_gcode_flavor option Griffin"
  307. msgid "Griffin"
  308. msgstr "Griffin"
  309. #: fdmprinter.def.json
  310. msgctxt "machine_gcode_flavor option Makerbot"
  311. msgid "Makerbot"
  312. msgstr "Makerbot"
  313. #: fdmprinter.def.json
  314. msgctxt "machine_gcode_flavor option BFB"
  315. msgid "Bits from Bytes"
  316. msgstr "Bits from Bytes"
  317. #: fdmprinter.def.json
  318. msgctxt "machine_gcode_flavor option MACH3"
  319. msgid "Mach3"
  320. msgstr "Mach3"
  321. #: fdmprinter.def.json
  322. msgctxt "machine_gcode_flavor option Repetier"
  323. msgid "Repetier"
  324. msgstr "Repetier"
  325. #: fdmprinter.def.json
  326. msgctxt "machine_firmware_retract label"
  327. msgid "Firmware Retraction"
  328. msgstr "Üretici Yazılımı Geri Çekme"
  329. #: fdmprinter.def.json
  330. msgctxt "machine_firmware_retract description"
  331. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  332. msgstr "Malzemeyi geri çekmek için G1 komutlarında E özelliği yerine aygıt yazılımı çekme komutlarının (G10/G11) kullanılıp kullanılmayacağı."
  333. #: fdmprinter.def.json
  334. msgctxt "machine_extruders_share_heater label"
  335. msgid "Extruders Share Heater"
  336. msgstr "Ekstrüderler Isıtıcıyı Paylaşır"
  337. #: fdmprinter.def.json
  338. msgctxt "machine_extruders_share_heater description"
  339. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  340. msgstr "Ekstrüderlerin tek bir ısıtıcıyı mı paylaşacağı yoksa her bir ekstrüderin kendi ısıtıcısı mı olacağı."
  341. #: fdmprinter.def.json
  342. msgctxt "machine_extruders_share_nozzle label"
  343. msgid "Extruders Share Nozzle"
  344. msgstr "Ekstrüder Nozül Paylaşımı"
  345. #: fdmprinter.def.json
  346. msgctxt "machine_extruders_share_nozzle description"
  347. msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter."
  348. msgstr "Ekstrüderlerin tek bir nozülü mü paylaşacağı yoksa her bir ekstrüderin kendi nozülü mü olacağıdır. True olarak ayarlandığında printer-start gcode betiğinin tüm ekstrüderleri bilinen ve karşılıklı olarak uyumlu olan bir ilk geri çekme durumunda (sıfır veya geri çekilmemiş bir filament) düzgün bir şekilde ayarlaması beklenir. Bu durumda ilk geri çekme, ekstrüder başına \"machine_extruders_shared_nozzle_initial_retraction\" parametresi ile açıklanır."
  349. #: fdmprinter.def.json
  350. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  351. msgid "Shared Nozzle Initial Retraction"
  352. msgstr "Paylaşılan Nozül İlk Geri Çekme"
  353. #: fdmprinter.def.json
  354. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  355. msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts."
  356. msgstr "Printer-start gcode betiğinin tamamlanmasında her bir ekstrüder filamentinin paylaşılan nozül ucundan ne kadar geri çekildiğinin varsayıldığıdır. Değer, nozül kanallarının ortak parçasının uzunluğuna eşit veya daha büyük olmalıdır."
  357. #: fdmprinter.def.json
  358. msgctxt "machine_disallowed_areas label"
  359. msgid "Disallowed Areas"
  360. msgstr "İzin Verilmeyen Alanlar"
  361. #: fdmprinter.def.json
  362. msgctxt "machine_disallowed_areas description"
  363. msgid "A list of polygons with areas the print head is not allowed to enter."
  364. msgstr "Yazıcı başlığının giremediği alanları olan poligon listesi."
  365. #: fdmprinter.def.json
  366. msgctxt "nozzle_disallowed_areas label"
  367. msgid "Nozzle Disallowed Areas"
  368. msgstr "Nozül İzni Olmayan Alanlar"
  369. #: fdmprinter.def.json
  370. msgctxt "nozzle_disallowed_areas description"
  371. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  372. msgstr "Nozülün girmesine izin verilmeyen alanlara sahip poligon listesi."
  373. #: fdmprinter.def.json
  374. msgctxt "machine_head_with_fans_polygon label"
  375. msgid "Machine Head & Fan Polygon"
  376. msgstr "Makinenin Başlığı ve Fan Poligonu"
  377. #: fdmprinter.def.json
  378. msgctxt "machine_head_with_fans_polygon description"
  379. msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates."
  380. msgstr "Baskı kafasının şekli. Bunlar baskı kafasının konumuna göre koordinatlardır ve genellikle ilk ekstrüderin konumunu gösterir. Baskı kafasının sol ve önündeki boyutlar negatif koordinatlar olmalıdır."
  381. #: fdmprinter.def.json
  382. msgctxt "gantry_height label"
  383. msgid "Gantry Height"
  384. msgstr "Portal Yüksekliği"
  385. #: fdmprinter.def.json
  386. msgctxt "gantry_height description"
  387. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  388. msgstr "Nozül ucu ve portal sistemi (X ve Y aksları) arasındaki yükseklik farkı."
  389. #: fdmprinter.def.json
  390. msgctxt "machine_nozzle_id label"
  391. msgid "Nozzle ID"
  392. msgstr "Nozül Kimliği"
  393. #: fdmprinter.def.json
  394. msgctxt "machine_nozzle_id description"
  395. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  396. msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi."
  397. #: fdmprinter.def.json
  398. msgctxt "machine_nozzle_size label"
  399. msgid "Nozzle Diameter"
  400. msgstr "Nozül Çapı"
  401. #: fdmprinter.def.json
  402. msgctxt "machine_nozzle_size description"
  403. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  404. msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin."
  405. #: fdmprinter.def.json
  406. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  407. msgid "Offset with Extruder"
  408. msgstr "Ekstruder Ofseti"
  409. #: fdmprinter.def.json
  410. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  411. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  412. msgstr "Ekstrüder ofsetini koordinat sistemine uygulayın. Tüm ekstrüderleri etkiler."
  413. #: fdmprinter.def.json
  414. msgctxt "extruder_prime_pos_z label"
  415. msgid "Extruder Prime Z Position"
  416. msgstr "Ekstruder İlk Z konumu"
  417. #: fdmprinter.def.json
  418. msgctxt "extruder_prime_pos_z description"
  419. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  420. msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı."
  421. #: fdmprinter.def.json
  422. msgctxt "extruder_prime_pos_abs label"
  423. msgid "Absolute Extruder Prime Position"
  424. msgstr "Mutlak Ekstruder İlk Konumu"
  425. #: fdmprinter.def.json
  426. msgctxt "extruder_prime_pos_abs description"
  427. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  428. msgstr "Ekstruder ilk konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın."
  429. #: fdmprinter.def.json
  430. msgctxt "machine_max_feedrate_x label"
  431. msgid "Maximum Speed X"
  432. msgstr "Maksimum X Hızı"
  433. #: fdmprinter.def.json
  434. msgctxt "machine_max_feedrate_x description"
  435. msgid "The maximum speed for the motor of the X-direction."
  436. msgstr "X yönü motoru için maksimum hız."
  437. #: fdmprinter.def.json
  438. msgctxt "machine_max_feedrate_y label"
  439. msgid "Maximum Speed Y"
  440. msgstr "Maksimum Y Hızı"
  441. #: fdmprinter.def.json
  442. msgctxt "machine_max_feedrate_y description"
  443. msgid "The maximum speed for the motor of the Y-direction."
  444. msgstr "Y yönü motoru için maksimum hız."
  445. #: fdmprinter.def.json
  446. msgctxt "machine_max_feedrate_z label"
  447. msgid "Maximum Speed Z"
  448. msgstr "Maksimum Z Hızı"
  449. #: fdmprinter.def.json
  450. msgctxt "machine_max_feedrate_z description"
  451. msgid "The maximum speed for the motor of the Z-direction."
  452. msgstr "Z yönü motoru için maksimum hız."
  453. #: fdmprinter.def.json
  454. msgctxt "machine_max_feedrate_e label"
  455. msgid "Maximum Speed E"
  456. msgstr "Maksimum Hız E"
  457. #: fdmprinter.def.json
  458. msgctxt "machine_max_feedrate_e description"
  459. msgid "The maximum speed of the filament."
  460. msgstr "Filamanın maksimum hızı."
  461. #: fdmprinter.def.json
  462. msgctxt "machine_max_acceleration_x label"
  463. msgid "Maximum Acceleration X"
  464. msgstr "Maksimum X İvmesi"
  465. #: fdmprinter.def.json
  466. msgctxt "machine_max_acceleration_x description"
  467. msgid "Maximum acceleration for the motor of the X-direction"
  468. msgstr "X yönü motoru için maksimum ivme"
  469. #: fdmprinter.def.json
  470. msgctxt "machine_max_acceleration_y label"
  471. msgid "Maximum Acceleration Y"
  472. msgstr "Maksimum Y İvmesi"
  473. #: fdmprinter.def.json
  474. msgctxt "machine_max_acceleration_y description"
  475. msgid "Maximum acceleration for the motor of the Y-direction."
  476. msgstr "Y yönü motoru için maksimum ivme."
  477. #: fdmprinter.def.json
  478. msgctxt "machine_max_acceleration_z label"
  479. msgid "Maximum Acceleration Z"
  480. msgstr "Maksimum Z İvmesi"
  481. #: fdmprinter.def.json
  482. msgctxt "machine_max_acceleration_z description"
  483. msgid "Maximum acceleration for the motor of the Z-direction."
  484. msgstr "Z yönü motoru için maksimum ivme."
  485. #: fdmprinter.def.json
  486. msgctxt "machine_max_acceleration_e label"
  487. msgid "Maximum Filament Acceleration"
  488. msgstr "Maksimum Filaman İvmesi"
  489. #: fdmprinter.def.json
  490. msgctxt "machine_max_acceleration_e description"
  491. msgid "Maximum acceleration for the motor of the filament."
  492. msgstr "Filaman motoru için maksimum ivme."
  493. #: fdmprinter.def.json
  494. msgctxt "machine_acceleration label"
  495. msgid "Default Acceleration"
  496. msgstr "Varsayılan İvme"
  497. #: fdmprinter.def.json
  498. msgctxt "machine_acceleration description"
  499. msgid "The default acceleration of print head movement."
  500. msgstr "Yazıcı başlığı hareketinin varsayılan ivmesi."
  501. #: fdmprinter.def.json
  502. msgctxt "machine_max_jerk_xy label"
  503. msgid "Default X-Y Jerk"
  504. msgstr "Varsayılan X-Y Salınımı"
  505. #: fdmprinter.def.json
  506. msgctxt "machine_max_jerk_xy description"
  507. msgid "Default jerk for movement in the horizontal plane."
  508. msgstr "Yatay düzlemdeki hareketler için varsayılan salınım."
  509. #: fdmprinter.def.json
  510. msgctxt "machine_max_jerk_z label"
  511. msgid "Default Z Jerk"
  512. msgstr "Varsayılan Z Salınımı"
  513. #: fdmprinter.def.json
  514. msgctxt "machine_max_jerk_z description"
  515. msgid "Default jerk for the motor of the Z-direction."
  516. msgstr "Z yönü motoru için varsayılan salınım."
  517. #: fdmprinter.def.json
  518. msgctxt "machine_max_jerk_e label"
  519. msgid "Default Filament Jerk"
  520. msgstr "Varsayılan Filaman Salınımı"
  521. #: fdmprinter.def.json
  522. msgctxt "machine_max_jerk_e description"
  523. msgid "Default jerk for the motor of the filament."
  524. msgstr "Filaman motoru için varsayılan salınım."
  525. #: fdmprinter.def.json
  526. msgctxt "machine_steps_per_mm_x label"
  527. msgid "Steps per Millimeter (X)"
  528. msgstr "Milimetre Başına Adım (X)"
  529. #: fdmprinter.def.json
  530. msgctxt "machine_steps_per_mm_x description"
  531. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  532. msgstr "Kademeli motorun kaç adımının, X yönünde bir milimetre hareketle sonuçlanacağı."
  533. #: fdmprinter.def.json
  534. msgctxt "machine_steps_per_mm_y label"
  535. msgid "Steps per Millimeter (Y)"
  536. msgstr "Milimetre Başına Adım (Y)"
  537. #: fdmprinter.def.json
  538. msgctxt "machine_steps_per_mm_y description"
  539. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  540. msgstr "Kademeli motorun kaç adımının, Y yönünde bir milimetre hareketle sonuçlanacağı."
  541. #: fdmprinter.def.json
  542. msgctxt "machine_steps_per_mm_z label"
  543. msgid "Steps per Millimeter (Z)"
  544. msgstr "Milimetre Başına Adım (Z)"
  545. #: fdmprinter.def.json
  546. msgctxt "machine_steps_per_mm_z description"
  547. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  548. msgstr "Kademeli motorun kaç adımının, Z yönünde bir milimetre hareketle sonuçlanacağı."
  549. #: fdmprinter.def.json
  550. msgctxt "machine_steps_per_mm_e label"
  551. msgid "Steps per Millimeter (E)"
  552. msgstr "Milimetre Başına Adım (E)"
  553. #: fdmprinter.def.json
  554. msgctxt "machine_steps_per_mm_e description"
  555. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  556. msgstr "Kademeli motorların kaç adımının besleme ünitesi tekerleğini çevresi etrafında bir milimetre hareket ettirmekle sonuçlanacağı."
  557. #: fdmprinter.def.json
  558. msgctxt "machine_endstop_positive_direction_x label"
  559. msgid "X Endstop in Positive Direction"
  560. msgstr "X Kapaması Pozitif Yönde"
  561. #: fdmprinter.def.json
  562. msgctxt "machine_endstop_positive_direction_x description"
  563. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  564. msgstr "X ekseninin kapamasının pozitif yönde mi (yüksek X koordinatı) yoksa negatif yönde mi (düşük X koordinatı) olduğu."
  565. #: fdmprinter.def.json
  566. msgctxt "machine_endstop_positive_direction_y label"
  567. msgid "Y Endstop in Positive Direction"
  568. msgstr "Y Kapaması Pozitif Yönde"
  569. #: fdmprinter.def.json
  570. msgctxt "machine_endstop_positive_direction_y description"
  571. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  572. msgstr "Y ekseninin kapamasının pozitif yönde mi (yüksek Y koordinatı) yoksa negatif yönde mi (düşük Y koordinatı) olduğu."
  573. #: fdmprinter.def.json
  574. msgctxt "machine_endstop_positive_direction_z label"
  575. msgid "Z Endstop in Positive Direction"
  576. msgstr "Z Kapaması Pozitif Yönde"
  577. #: fdmprinter.def.json
  578. msgctxt "machine_endstop_positive_direction_z description"
  579. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  580. msgstr "Z ekseninin kapamasının pozitif yönde mi (yüksek Z koordinatı) yoksa negatif yönde mi (düşük Z koordinatı) olduğu."
  581. #: fdmprinter.def.json
  582. msgctxt "machine_minimum_feedrate label"
  583. msgid "Minimum Feedrate"
  584. msgstr "Minimum Besleme Hızı"
  585. #: fdmprinter.def.json
  586. msgctxt "machine_minimum_feedrate description"
  587. msgid "The minimal movement speed of the print head."
  588. msgstr "Yazıcı başlığının minimum hareket hızı."
  589. #: fdmprinter.def.json
  590. msgctxt "machine_feeder_wheel_diameter label"
  591. msgid "Feeder Wheel Diameter"
  592. msgstr "Besleyici Çark Çapı"
  593. #: fdmprinter.def.json
  594. msgctxt "machine_feeder_wheel_diameter description"
  595. msgid "The diameter of the wheel that drives the material in the feeder."
  596. msgstr "Besleyiciye malzeme veren çarkın çapı."
  597. #: fdmprinter.def.json
  598. msgctxt "machine_scale_fan_speed_zero_to_one label"
  599. msgid "Scale Fan Speed To 0-1"
  600. msgstr "Fan Hızını 0 - 1 Arasında Ölçeklendir"
  601. #: fdmprinter.def.json
  602. msgctxt "machine_scale_fan_speed_zero_to_one description"
  603. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  604. msgstr "Fan hızını 0 - 256 arasında değil 0 - 1 arasında ölçeklendirin."
  605. #: fdmprinter.def.json
  606. msgctxt "resolution label"
  607. msgid "Quality"
  608. msgstr "Kalite"
  609. #: fdmprinter.def.json
  610. msgctxt "resolution description"
  611. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  612. msgstr "Yazdırma çözünürlüğünü etkileyen tüm ayarlar. Bu ayarların (ve yazdırma süresinin) kalite üzerinde büyük bir etkisi vardır"
  613. #: fdmprinter.def.json
  614. msgctxt "layer_height label"
  615. msgid "Layer Height"
  616. msgstr "Katman Yüksekliği"
  617. #: fdmprinter.def.json
  618. msgctxt "layer_height description"
  619. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  620. msgstr "Her katmanın milimetre cinsinden yüksekliği. Daha yüksek değerler düşük çözünürlükte hızlı baskılar üretir; daha düşük değerler ise yüksek çözünürlükte daha yavaş baskılar üretir."
  621. #: fdmprinter.def.json
  622. msgctxt "layer_height_0 label"
  623. msgid "Initial Layer Height"
  624. msgstr "İlk Katman Yüksekliği"
  625. #: fdmprinter.def.json
  626. msgctxt "layer_height_0 description"
  627. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  628. msgstr "İlk katmanın milimetre cinsinden yüksekliği. Kalın ilk katmanlar yapı levhasına yapışmayı kolaylaştırır."
  629. #: fdmprinter.def.json
  630. msgctxt "line_width label"
  631. msgid "Line Width"
  632. msgstr "Hat Genişliği"
  633. #: fdmprinter.def.json
  634. msgctxt "line_width description"
  635. msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints."
  636. msgstr "Tek bir hattın genişliği Genellikle her hattın genişliği nozül genişliğine eşit olmalıdır. Ancak, bu değeri biraz azaltmak daha iyi baskılar üretilmesini sağlayabilir."
  637. #: fdmprinter.def.json
  638. msgctxt "wall_line_width label"
  639. msgid "Wall Line Width"
  640. msgstr "Duvar Hattı Genişliği"
  641. #: fdmprinter.def.json
  642. msgctxt "wall_line_width description"
  643. msgid "Width of a single wall line."
  644. msgstr "Tek bir duvar hattının genişliği."
  645. #: fdmprinter.def.json
  646. msgctxt "wall_line_width_0 label"
  647. msgid "Outer Wall Line Width"
  648. msgstr "Dış Duvar Hattı Genişliği"
  649. #: fdmprinter.def.json
  650. msgctxt "wall_line_width_0 description"
  651. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  652. msgstr "En dıştaki duvar hattının genişliği. Bu değeri azaltarak daha yüksek seviyede ayrıntılar yazdırılabilir."
  653. #: fdmprinter.def.json
  654. msgctxt "wall_line_width_x label"
  655. msgid "Inner Wall(s) Line Width"
  656. msgstr "İç Duvar(lar) Hattı Genişliği"
  657. #: fdmprinter.def.json
  658. msgctxt "wall_line_width_x description"
  659. msgid "Width of a single wall line for all wall lines except the outermost one."
  660. msgstr "En dış duvar haricindeki tüm duvar hatları için tek bir duvar hattı genişliği."
  661. #: fdmprinter.def.json
  662. msgctxt "skin_line_width label"
  663. msgid "Top/Bottom Line Width"
  664. msgstr "Üst/Alt Hat Genişliği"
  665. #: fdmprinter.def.json
  666. msgctxt "skin_line_width description"
  667. msgid "Width of a single top/bottom line."
  668. msgstr "Tek bir üst/alt hattın genişliği."
  669. #: fdmprinter.def.json
  670. msgctxt "infill_line_width label"
  671. msgid "Infill Line Width"
  672. msgstr "Dolgu Hattı Genişliği"
  673. #: fdmprinter.def.json
  674. msgctxt "infill_line_width description"
  675. msgid "Width of a single infill line."
  676. msgstr "Tek bir dolgu hattının genişliği."
  677. #: fdmprinter.def.json
  678. msgctxt "skirt_brim_line_width label"
  679. msgid "Skirt/Brim Line Width"
  680. msgstr "Etek/Kenar Hattı Genişliği"
  681. #: fdmprinter.def.json
  682. msgctxt "skirt_brim_line_width description"
  683. msgid "Width of a single skirt or brim line."
  684. msgstr "Tek bir etek veya kenar hattının genişliği."
  685. #: fdmprinter.def.json
  686. msgctxt "support_line_width label"
  687. msgid "Support Line Width"
  688. msgstr "Destek Hattı Genişliği"
  689. #: fdmprinter.def.json
  690. msgctxt "support_line_width description"
  691. msgid "Width of a single support structure line."
  692. msgstr "Tek bir destek yapısı hattının genişliği."
  693. #: fdmprinter.def.json
  694. msgctxt "support_interface_line_width label"
  695. msgid "Support Interface Line Width"
  696. msgstr "Destek Arayüz Hattı Genişliği"
  697. #: fdmprinter.def.json
  698. msgctxt "support_interface_line_width description"
  699. msgid "Width of a single line of support roof or floor."
  700. msgstr "Destek çatısı veya zemininin tek çizgi genişliği."
  701. #: fdmprinter.def.json
  702. msgctxt "support_roof_line_width label"
  703. msgid "Support Roof Line Width"
  704. msgstr "Destek Çatısı Çizgi Genişliği"
  705. #: fdmprinter.def.json
  706. msgctxt "support_roof_line_width description"
  707. msgid "Width of a single support roof line."
  708. msgstr "Tek bir destek çatısının çizgi genişliği."
  709. #: fdmprinter.def.json
  710. msgctxt "support_bottom_line_width label"
  711. msgid "Support Floor Line Width"
  712. msgstr "Destek Zemini Çizgi Genişliği"
  713. #: fdmprinter.def.json
  714. msgctxt "support_bottom_line_width description"
  715. msgid "Width of a single support floor line."
  716. msgstr "Tek bir destek zemininin çizgi genişliği."
  717. #: fdmprinter.def.json
  718. msgctxt "prime_tower_line_width label"
  719. msgid "Prime Tower Line Width"
  720. msgstr "İlk Direk Hattı Genişliği"
  721. #: fdmprinter.def.json
  722. msgctxt "prime_tower_line_width description"
  723. msgid "Width of a single prime tower line."
  724. msgstr "Tek bir ilk direk hattının genişliği."
  725. #: fdmprinter.def.json
  726. msgctxt "initial_layer_line_width_factor label"
  727. msgid "Initial Layer Line Width"
  728. msgstr "İlk Katman Hat Genişliği"
  729. #: fdmprinter.def.json
  730. msgctxt "initial_layer_line_width_factor description"
  731. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  732. msgstr "İlk katman üzerinde bulunan hat genişliği çoğaltıcı. Çoğaltmayı artırmak yatak yapışmasını iyileştirebilir."
  733. #: fdmprinter.def.json
  734. msgctxt "shell label"
  735. msgid "Walls"
  736. msgstr "Duvarlar"
  737. #: fdmprinter.def.json
  738. msgctxt "shell description"
  739. msgid "Shell"
  740. msgstr "Kovan"
  741. #: fdmprinter.def.json
  742. msgctxt "wall_extruder_nr label"
  743. msgid "Wall Extruder"
  744. msgstr "Duvar Ekstruderi"
  745. #: fdmprinter.def.json
  746. msgctxt "wall_extruder_nr description"
  747. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  748. msgstr "Duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır."
  749. #: fdmprinter.def.json
  750. msgctxt "wall_0_extruder_nr label"
  751. msgid "Outer Wall Extruder"
  752. msgstr "Dış Duvar Ekstruderi"
  753. #: fdmprinter.def.json
  754. msgctxt "wall_0_extruder_nr description"
  755. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  756. msgstr "Dış Duvarı yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır."
  757. #: fdmprinter.def.json
  758. msgctxt "wall_x_extruder_nr label"
  759. msgid "Inner Wall Extruder"
  760. msgstr "İç Duvar Ekstrüderi"
  761. #: fdmprinter.def.json
  762. msgctxt "wall_x_extruder_nr description"
  763. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  764. msgstr "İç duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır."
  765. #: fdmprinter.def.json
  766. msgctxt "wall_thickness label"
  767. msgid "Wall Thickness"
  768. msgstr "Duvar Kalınlığı"
  769. #: fdmprinter.def.json
  770. msgctxt "wall_thickness description"
  771. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  772. msgstr "Yatay yönde duvar kalınlığı. Bu değer duvar hattı genişliğiyle bölündüğünde duvar sayısını belirler."
  773. #: fdmprinter.def.json
  774. msgctxt "wall_line_count label"
  775. msgid "Wall Line Count"
  776. msgstr "Duvar Hattı Sayısı"
  777. #: fdmprinter.def.json
  778. msgctxt "wall_line_count description"
  779. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  780. msgstr "Duvar sayısı. Bu değer, duvar kalınlığıyla hesaplandığında tam sayıya yuvarlanır."
  781. #: fdmprinter.def.json
  782. msgctxt "wall_transition_length label"
  783. msgid "Wall Transition Length"
  784. msgstr "Duvar Geçişi Uzunluğu"
  785. #: fdmprinter.def.json
  786. msgctxt "wall_transition_length description"
  787. msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines."
  788. msgstr "Farkı sayıda duvar arasından geçerken parça daha ince hale geldiğinden duvar hatlarını bölmek veya birleştirmek için belirli bir alan ayrılır."
  789. #: fdmprinter.def.json
  790. msgctxt "wall_distribution_count label"
  791. msgid "Wall Distribution Count"
  792. msgstr "Duvar Dağılım Sayısı"
  793. #: fdmprinter.def.json
  794. msgctxt "wall_distribution_count description"
  795. msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width."
  796. msgstr "Varyasyonun yayılması gereken, merkezden itibaren sayılan duvar sayısı. Düşük değerler olması dış duvarların genişliğinin değişmeyeceğini gösterir."
  797. #: fdmprinter.def.json
  798. msgctxt "wall_transition_angle label"
  799. msgid "Wall Transitioning Threshold Angle"
  800. msgstr "Duvar Geçişi Eşik Açısı"
  801. #: fdmprinter.def.json
  802. msgctxt "wall_transition_angle description"
  803. msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude."
  804. msgstr "Çift ve tek sayıdaki duvarlar arasında ne zaman geçiş oluşturulacağını gösterir. Bu ayardan daha geniş açıya sahip bir kama şekline geçiş eklenmez ve kalan alanının doldurulması sırasında merkez noktada duvar baskısı yapılmaz. Bu ayarın düşürülmesi bu merkez duvarların sayısını ve uzunluğunu azaltır fakat boşluklara ve aşırı ekstrüzyona neden olabilir."
  805. #: fdmprinter.def.json
  806. msgctxt "wall_transition_filter_distance label"
  807. msgid "Wall Transitioning Filter Distance"
  808. msgstr "Duvar Geçişi Filtresi Mesafesi"
  809. #: fdmprinter.def.json
  810. msgctxt "wall_transition_filter_distance description"
  811. msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance."
  812. msgstr "Farklı sayıda duvar arasında arka arkaya hızlıca ileri geri geçiş yapılacaksa duvarlar arasında geçiş yapmayın. Duvarlar bir arada bu mesafeden daha yakındaysa geçişleri kaldırın."
  813. #: fdmprinter.def.json
  814. msgctxt "wall_transition_filter_deviation label"
  815. msgid "Wall Transitioning Filter Margin"
  816. msgstr "Duvar Geçişi Filtresi Kenar Boşluğu"
  817. #: fdmprinter.def.json
  818. msgctxt "wall_transition_filter_deviation description"
  819. msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems."
  820. msgstr "Bir fazla ve bir az duvar arasında ileri geri geçişi önleyin. Bu kenar boşluğu, [Minimum Duvar Hattı Genişliği - Kenar Boşluğu, 2 * Minimum Duvar Hattı Genişliği+Kenar Boşluğu] olarak takip edilen hat genişliklerinin aralığını genişletir. Bu kenar boşluğunun artırılması geçişlerin sayısını azaltır, bu da ekstrüzyon başlatma/durdurma sayısını ve hareket süresini azaltır. Bununla birlikte, geniş hat varyasyonları düşük veya aşırı ekstrüzyon sorunlarına yol açabilir."
  821. #: fdmprinter.def.json
  822. msgctxt "wall_0_wipe_dist label"
  823. msgid "Outer Wall Wipe Distance"
  824. msgstr "Dış Duvar Sürme Mesafesi"
  825. #: fdmprinter.def.json
  826. msgctxt "wall_0_wipe_dist description"
  827. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  828. msgstr "Z dikişini daha iyi gizlemek için dış duvardan sonra eklenen hareket mesafesi."
  829. #: fdmprinter.def.json
  830. msgctxt "wall_0_inset label"
  831. msgid "Outer Wall Inset"
  832. msgstr "Dış Duvar İlavesi"
  833. #: fdmprinter.def.json
  834. msgctxt "wall_0_inset description"
  835. msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model."
  836. msgstr "Dış duvar yoluna uygulanan ilave. Dış duvar nozülden küçükse ve iç duvardan sonra yazdırılmışsa, nozüldeki deliği modelin dış kısmı yerine iç duvarlar ile üst üste bindirmek için bu ofseti kullanın."
  837. #: fdmprinter.def.json
  838. msgctxt "optimize_wall_printing_order label"
  839. msgid "Optimize Wall Printing Order"
  840. msgstr "Duvar Yazdırma Sırasını Optimize Et"
  841. #: fdmprinter.def.json
  842. msgctxt "optimize_wall_printing_order description"
  843. msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type."
  844. msgstr "Geri çekmelerin sayısını ve kat edilen mesafeyi azaltmak için duvarların yazdırıldığı sırayı optimize edin. Çoğu parça, bunun etkinleştirilmesinden yararlanır, ancak bazılarının yararlanması için gerçekte daha uzun süre gerekebilir. Bu yüzden, yazdırma süresi tahminlerini optimizasyonlu ve optimizasyonsuz olarak karşılaştırın. Kenar, yapı levhası yapıştırması tipi olarak seçildiğinde ilk katman optimize edilmez."
  845. #: fdmprinter.def.json
  846. msgctxt "inset_direction label"
  847. msgid "Wall Ordering"
  848. msgstr "Duvar Sıralaması"
  849. #: fdmprinter.def.json
  850. msgctxt "inset_direction description"
  851. msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed."
  852. msgstr "Duvarların basılacağı sırayı belirler. Dış duvarların önce basılması, iç duvarlardaki hataların dışarıya taşmasını önleyerek boyutların doğru olmasını sağlar. Bu duvarların daha sonra basılması ise çıkıntılar basılırken daha iyi yığınlanma sağlar."
  853. #: fdmprinter.def.json
  854. msgctxt "inset_direction option inside_out"
  855. msgid "Inside To Outside"
  856. msgstr "İçten Dışa"
  857. #: fdmprinter.def.json
  858. msgctxt "inset_direction option outside_in"
  859. msgid "Outside To Inside"
  860. msgstr "Dıştan İçe"
  861. #: fdmprinter.def.json
  862. msgctxt "alternate_extra_perimeter label"
  863. msgid "Alternate Extra Wall"
  864. msgstr "Alternatif Ek Duvar"
  865. #: fdmprinter.def.json
  866. msgctxt "alternate_extra_perimeter description"
  867. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  868. msgstr "Her katmanda ek duvar yazdırır. Bu şekilde dolgu ek duvarların arasında alır ve daha sağlam baskılar ortaya çıkar."
  869. #: fdmprinter.def.json
  870. msgctxt "min_wall_line_width label"
  871. msgid "Minimum Wall Line Width"
  872. msgstr "Minimum Duvar Hattı Genişliği"
  873. #: fdmprinter.def.json
  874. msgctxt "min_wall_line_width description"
  875. msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
  876. msgstr "Nozül boyutunun bir veya iki katı kadar olan ince yapılarda modelin kalınlığına bağlı olarak hat genişliklerinin değiştirilmesi gerekir. Bu ayar, duvarlar için izin verilen minimum hat genişliğini kontrol eder. Minimum hat genişlikleri, N duvarlarının geniş ve N+1 duvarlarının dar olduğu bazı geometrik kalınlıklarda N duvardan N+1 duvara geçildiği için maksimum hat genişliklerini de belirler. Mümkün olan en geniş duvar hattı Minimum Duvar Hattı Genişliğinin iki katıdır."
  877. #: fdmprinter.def.json
  878. msgctxt "min_even_wall_line_width label"
  879. msgid "Minimum Even Wall Line Width"
  880. msgstr "Minimum Çift Duvar Hattı Genişliği"
  881. #: fdmprinter.def.json
  882. msgctxt "min_even_wall_line_width description"
  883. msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width."
  884. msgstr "Normal çokgen duvarlar için minimum hat genişliğidir. Bu ayar, tek bir ince duvar hattının basılmasından iki duvar hattına hangi model kalınlığında geçileceğini belirler. Daha yüksek Minimum Çift Duvar Hattı Genişliği değeri belirlenmesi daha yüksek maksimum tek duvar hattı genişliği oluşmasına yol açar. Maksimum çift duvar hattı genişliği, Dış Duvar Hattı Genişliği + 0,5 * Minimum Tek Duvar Hattı Genişliği formülüyle hesaplanır."
  885. #: fdmprinter.def.json
  886. msgctxt "wall_split_middle_threshold label"
  887. msgid "Split Middle Line Threshold"
  888. msgstr "Bölünmüş Orta Hat Eşiği"
  889. #: fdmprinter.def.json
  890. msgctxt "wall_split_middle_threshold description"
  891. msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall."
  892. msgstr "Normal hat genişliğinin bir faktörü olarak, üzerinde orta hattın (varsa) ikiye bölüneceği en küçük hat genişliğidir. Daha fazla sayıda ve daha ince hatlar kullanmak için bu ayarı düşürün. Daha az sayıda ve daha kalın hatlar kullanmak için ise bu ayarı artırın. Bunun tüm şeklin duvarla doldurulması gerektiğinde geçerli olduğunu unutmayın, bu nedenle buradaki orta hat baskıda duvar yerine dolgu veya diğer bir kaplama olsa bile şeklin iki dış kenarı arasındaki nesnenin ortasını ifade eder."
  893. #: fdmprinter.def.json
  894. msgctxt "min_odd_wall_line_width label"
  895. msgid "Minimum Odd Wall Line Width"
  896. msgstr "Minimum Tek Duvar Hattı Genişliği"
  897. #: fdmprinter.def.json
  898. msgctxt "min_odd_wall_line_width description"
  899. msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width,"
  900. msgstr "Orta hat boşluğunu dolduran çok hatlı duvarlar için minimum hat genişliğidir. Bu ayar, iki duvar hattı baskısının hangi model kalınlığında iki dış duvar ve tek bir merkezi orta duvar baskısına geçirileceğini belirler. Daha yüksek Minimum Tek Duvar Hattı Genişliği değeri belirlenmesi daha yüksek maksimum çift duvar hattı genişliği oluşturur. Maksimum tek duvar hattı genişliği, 2 * Minimum Çift Duvar Hattı Genişliği formülüyle hesaplanır,"
  901. #: fdmprinter.def.json
  902. msgctxt "wall_add_middle_threshold label"
  903. msgid "Add Middle Line Threshold"
  904. msgstr "Orta Hat Eşiği Ekle"
  905. #: fdmprinter.def.json
  906. msgctxt "wall_add_middle_threshold description"
  907. msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall."
  908. msgstr "Normal hat genişliğinin bir faktörü olarak, üzerine bir orta hat (zaten yoksa) eklenecek olan en küçük hat genişliğidir. Daha fazla sayıda ve daha ince hatlar kullanmak için bu ayarı düşürün. Daha az sayıda ve daha kalın hatlar kullanmak için ise bu ayarı artırın. Bunun tüm şeklin duvarla doldurulması gerektiğinde geçerli olduğunu unutmayın, bu nedenle buradaki orta hat baskıda duvar yerine dolgu veya diğer bir kaplama olsa bile şeklin iki dış kenarı arasındaki nesnenin ortasını ifade eder."
  909. #: fdmprinter.def.json
  910. msgctxt "fill_outline_gaps label"
  911. msgid "Print Thin Walls"
  912. msgstr "İnce Duvarları Yazdır"
  913. #: fdmprinter.def.json
  914. msgctxt "fill_outline_gaps description"
  915. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  916. msgstr "Yatay olarak nozül boyutundan daha ince olan model parçalarını yazdırır."
  917. #: fdmprinter.def.json
  918. msgctxt "min_feature_size label"
  919. msgid "Minimum Feature Size"
  920. msgstr "Minimum Yüz Hattı Boyutu"
  921. #: fdmprinter.def.json
  922. msgctxt "min_feature_size description"
  923. msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width."
  924. msgstr "İnce yüz hatlarının minimum kalınlığıdır. Bu değerden daha ince olan model yüz hatları yazdırılmaz, Minimum Yüz Hattı Boyutundan daha kalın olan modeller ise Minimum Duvar Hattı Genişliği değerine kadar genişletilir."
  925. #: fdmprinter.def.json
  926. msgctxt "min_bead_width label"
  927. msgid "Minimum Thin Wall Line Width"
  928. msgstr "Minimum İnce Duvar Hattı Genişliği"
  929. #: fdmprinter.def.json
  930. msgctxt "min_bead_width description"
  931. msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself."
  932. msgstr "Modelin ince yüz hatlarının yerini alacak duvarın genişliğidir (Minimum Yüz Hattı Boyutuna göre). Minimum Duvar Hattı Genişliği, yüz hattının kalınlığından daha inceyse duvar da yüz hattının kendisi kadar kalınlaştırılacaktır."
  933. #: fdmprinter.def.json
  934. msgctxt "xy_offset label"
  935. msgid "Horizontal Expansion"
  936. msgstr "Yatay Büyüme"
  937. #: fdmprinter.def.json
  938. msgctxt "xy_offset description"
  939. msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes."
  940. msgstr "Her katmandaki poligonlara uygulanan ofset miktarı. Pozitif değerler büyük boşlukları telafi ederken negatif değerler küçük boşlukları telafi edebilir."
  941. #: fdmprinter.def.json
  942. msgctxt "xy_offset_layer_0 label"
  943. msgid "Initial Layer Horizontal Expansion"
  944. msgstr "İlk Katmanın Yatay Genişlemesi"
  945. #: fdmprinter.def.json
  946. msgctxt "xy_offset_layer_0 description"
  947. msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"."
  948. msgstr "İlk katmandaki tüm poligonlara uygulanan ofset miktarı. Negatif bir değer “fil ayağı” olarak bilinen ilk katman ezilmesini dengeleyebilir."
  949. #: fdmprinter.def.json
  950. msgctxt "hole_xy_offset label"
  951. msgid "Hole Horizontal Expansion"
  952. msgstr "Delik Yatay Büyüme"
  953. #: fdmprinter.def.json
  954. msgctxt "hole_xy_offset description"
  955. msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
  956. msgstr "Her bir katmandaki tüm deliklere uygulanan ofset miktarıdır. Pozitif değerler deliklerin boyutunu artırırken, negatif değerler deliklerin boyutunu düşürür."
  957. #: fdmprinter.def.json
  958. msgctxt "z_seam_type label"
  959. msgid "Z Seam Alignment"
  960. msgstr "Z Dikiş Hizalama"
  961. #: fdmprinter.def.json
  962. msgctxt "z_seam_type description"
  963. msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker."
  964. msgstr "Bir katmandaki her yolun başlangıç noktası. Ardışık katmanlardaki yollar aynı noktadan başladığında, çıktıda dikey bir ek yeri görünebilir. Bunları kullanıcının belirlediği bir konumun yakınına hizalarken ek yerinin kaldırılması kolaylaşır. Gelişigüzel yerleştirildiğinde yolların başlangıcındaki düzensizlikler daha az fark edilecektir. En kısa yol kullanıldığında yazdırma hızlanacaktır."
  965. #: fdmprinter.def.json
  966. msgctxt "z_seam_type option back"
  967. msgid "User Specified"
  968. msgstr "Kullanıcı Tarafından Belirtilen"
  969. #: fdmprinter.def.json
  970. msgctxt "z_seam_type option shortest"
  971. msgid "Shortest"
  972. msgstr "En kısa"
  973. #: fdmprinter.def.json
  974. msgctxt "z_seam_type option random"
  975. msgid "Random"
  976. msgstr "Gelişigüzel"
  977. #: fdmprinter.def.json
  978. msgctxt "z_seam_type option sharpest_corner"
  979. msgid "Sharpest Corner"
  980. msgstr "En Keskin Köşe"
  981. #: fdmprinter.def.json
  982. msgctxt "z_seam_position label"
  983. msgid "Z Seam Position"
  984. msgstr "Z Dikişi Konumu"
  985. #: fdmprinter.def.json
  986. msgctxt "z_seam_position description"
  987. msgid "The position near where to start printing each part in a layer."
  988. msgstr "Bir katmandaki her kısmın basılmaya başlanacağı yere yakın konum."
  989. #: fdmprinter.def.json
  990. msgctxt "z_seam_position option backleft"
  991. msgid "Back Left"
  992. msgstr "Sol Arka"
  993. #: fdmprinter.def.json
  994. msgctxt "z_seam_position option back"
  995. msgid "Back"
  996. msgstr "Geri"
  997. #: fdmprinter.def.json
  998. msgctxt "z_seam_position option backright"
  999. msgid "Back Right"
  1000. msgstr "Sağ Arka"
  1001. #: fdmprinter.def.json
  1002. msgctxt "z_seam_position option right"
  1003. msgid "Right"
  1004. msgstr "Sağ"
  1005. #: fdmprinter.def.json
  1006. msgctxt "z_seam_position option frontright"
  1007. msgid "Front Right"
  1008. msgstr "Sağ Ön"
  1009. #: fdmprinter.def.json
  1010. msgctxt "z_seam_position option front"
  1011. msgid "Front"
  1012. msgstr "Ön"
  1013. #: fdmprinter.def.json
  1014. msgctxt "z_seam_position option frontleft"
  1015. msgid "Front Left"
  1016. msgstr "Sol Ön"
  1017. #: fdmprinter.def.json
  1018. msgctxt "z_seam_position option left"
  1019. msgid "Left"
  1020. msgstr "Sol"
  1021. #: fdmprinter.def.json
  1022. msgctxt "z_seam_x label"
  1023. msgid "Z Seam X"
  1024. msgstr "Z Dikişi X"
  1025. #: fdmprinter.def.json
  1026. msgctxt "z_seam_x description"
  1027. msgid "The X coordinate of the position near where to start printing each part in a layer."
  1028. msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun X koordinatı."
  1029. #: fdmprinter.def.json
  1030. msgctxt "z_seam_y label"
  1031. msgid "Z Seam Y"
  1032. msgstr "Z Dikişi Y"
  1033. #: fdmprinter.def.json
  1034. msgctxt "z_seam_y description"
  1035. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  1036. msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun Y koordinatı."
  1037. #: fdmprinter.def.json
  1038. msgctxt "z_seam_corner label"
  1039. msgid "Seam Corner Preference"
  1040. msgstr "Dikiş Köşesi Tercihi"
  1041. #: fdmprinter.def.json
  1042. msgctxt "z_seam_corner description"
  1043. msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate."
  1044. msgstr "Modelin ana hatlarında yer alan köşelerin dikişin konumunu etkileyip etkilemediğini kontrol edin. Hiçbiri, köşelerin dikişin konumunu etkilemediği anlamına gelir. Dikişi Gizle, dikişin daha büyük olasılıkla bir iç köşe üzerinde oluşmasını sağlar. Dikişi Açığa Çıkar, dikişin daha büyük olasılıkla bir dış köşe üzerinde oluşmasını sağlar. Dikişi Gizle veya Açığa Çıkar, dikişin daha büyük olasılıkla bir iç veya dış köşe üzerinde oluşmasını sağlar. Akıllı Gizleme, hem iç hem de dış köşelere izin verir ancak uygun olduğu durumlarda iç köşeleri daha sık seçer."
  1045. #: fdmprinter.def.json
  1046. msgctxt "z_seam_corner option z_seam_corner_none"
  1047. msgid "None"
  1048. msgstr "Hiçbiri"
  1049. #: fdmprinter.def.json
  1050. msgctxt "z_seam_corner option z_seam_corner_inner"
  1051. msgid "Hide Seam"
  1052. msgstr "Dikişi Gizle"
  1053. #: fdmprinter.def.json
  1054. msgctxt "z_seam_corner option z_seam_corner_outer"
  1055. msgid "Expose Seam"
  1056. msgstr "Dikişi Açığa Çıkar"
  1057. #: fdmprinter.def.json
  1058. msgctxt "z_seam_corner option z_seam_corner_any"
  1059. msgid "Hide or Expose Seam"
  1060. msgstr "Dikişi Gizle veya Açığa Çıkar"
  1061. #: fdmprinter.def.json
  1062. msgctxt "z_seam_corner option z_seam_corner_weighted"
  1063. msgid "Smart Hiding"
  1064. msgstr "Akıllı Gizleme"
  1065. #: fdmprinter.def.json
  1066. msgctxt "z_seam_relative label"
  1067. msgid "Z Seam Relative"
  1068. msgstr "Z Dikişi Göreliliği"
  1069. #: fdmprinter.def.json
  1070. msgctxt "z_seam_relative description"
  1071. msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate."
  1072. msgstr "Etkin olduğunda, z dikişi koordinatları her parçanın merkezine göre hizalıdır. Devre dışı olduğunda, koordinatlar yapı levhası üzerinde mutlak bir pozisyonu belirtir."
  1073. #: fdmprinter.def.json
  1074. msgctxt "top_bottom label"
  1075. msgid "Top/Bottom"
  1076. msgstr "Üst / Alt"
  1077. #: fdmprinter.def.json
  1078. msgctxt "top_bottom description"
  1079. msgid "Top/Bottom"
  1080. msgstr "Üst / Alt"
  1081. #: fdmprinter.def.json
  1082. msgctxt "roofing_extruder_nr label"
  1083. msgid "Top Surface Skin Extruder"
  1084. msgstr "Üst Yüzey Ekstruderi"
  1085. #: fdmprinter.def.json
  1086. msgctxt "roofing_extruder_nr description"
  1087. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  1088. msgstr "En üstteki yüzeyi yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır."
  1089. #: fdmprinter.def.json
  1090. msgctxt "roofing_layer_count label"
  1091. msgid "Top Surface Skin Layers"
  1092. msgstr "Üst Yüzey Katmanları"
  1093. #: fdmprinter.def.json
  1094. msgctxt "roofing_layer_count description"
  1095. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  1096. msgstr "En üstteki yüzey katmanlarının sayısı. Yüksek kalitede üst yüzeyler oluşturmak için genellikle tek bir üst yüzey katmanı yeterlidir."
  1097. #: fdmprinter.def.json
  1098. msgctxt "top_bottom_extruder_nr label"
  1099. msgid "Top/Bottom Extruder"
  1100. msgstr "Üst/Alt Ekstruderi"
  1101. #: fdmprinter.def.json
  1102. msgctxt "top_bottom_extruder_nr description"
  1103. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  1104. msgstr "Üst ve alt yüzeyi yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır."
  1105. #: fdmprinter.def.json
  1106. msgctxt "top_bottom_thickness label"
  1107. msgid "Top/Bottom Thickness"
  1108. msgstr "Üst/Alt Kalınlık"
  1109. #: fdmprinter.def.json
  1110. msgctxt "top_bottom_thickness description"
  1111. msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers."
  1112. msgstr "Yazdırmadaki üst/alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst/alt katmanların sayısını belirtir."
  1113. #: fdmprinter.def.json
  1114. msgctxt "top_thickness label"
  1115. msgid "Top Thickness"
  1116. msgstr "Üst Kalınlık"
  1117. #: fdmprinter.def.json
  1118. msgctxt "top_thickness description"
  1119. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  1120. msgstr "Yazdırmadaki üst katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst katmanların sayısını belirtir."
  1121. #: fdmprinter.def.json
  1122. msgctxt "top_layers label"
  1123. msgid "Top Layers"
  1124. msgstr "Üst Katmanlar"
  1125. #: fdmprinter.def.json
  1126. msgctxt "top_layers description"
  1127. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  1128. msgstr "Üst katman sayısı. Bu değer, üst kalınlığıyla hesaplandığında tam sayıya yuvarlanır."
  1129. #: fdmprinter.def.json
  1130. msgctxt "bottom_thickness label"
  1131. msgid "Bottom Thickness"
  1132. msgstr "Alt Kalınlık"
  1133. #: fdmprinter.def.json
  1134. msgctxt "bottom_thickness description"
  1135. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  1136. msgstr "Yazdırmadaki alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer alt katmanların sayısını belirtir."
  1137. #: fdmprinter.def.json
  1138. msgctxt "bottom_layers label"
  1139. msgid "Bottom Layers"
  1140. msgstr "Alt katmanlar"
  1141. #: fdmprinter.def.json
  1142. msgctxt "bottom_layers description"
  1143. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  1144. msgstr "Alt katman sayısı. Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır."
  1145. #: fdmprinter.def.json
  1146. msgctxt "initial_bottom_layers label"
  1147. msgid "Initial Bottom Layers"
  1148. msgstr "İlk Alt Katmanlar"
  1149. #: fdmprinter.def.json
  1150. msgctxt "initial_bottom_layers description"
  1151. msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number."
  1152. msgstr "Yapı plakasından itibaren ilk alt katman sayısı Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır."
  1153. #: fdmprinter.def.json
  1154. msgctxt "top_bottom_pattern label"
  1155. msgid "Top/Bottom Pattern"
  1156. msgstr "Üst/Alt Şekil"
  1157. #: fdmprinter.def.json
  1158. msgctxt "top_bottom_pattern description"
  1159. msgid "The pattern of the top/bottom layers."
  1160. msgstr "Üst/alt katmanların şekli."
  1161. #: fdmprinter.def.json
  1162. msgctxt "top_bottom_pattern option lines"
  1163. msgid "Lines"
  1164. msgstr "Çizgiler"
  1165. #: fdmprinter.def.json
  1166. msgctxt "top_bottom_pattern option concentric"
  1167. msgid "Concentric"
  1168. msgstr "Eş merkezli"
  1169. #: fdmprinter.def.json
  1170. msgctxt "top_bottom_pattern option zigzag"
  1171. msgid "Zig Zag"
  1172. msgstr "Zik Zak"
  1173. #: fdmprinter.def.json
  1174. msgctxt "top_bottom_pattern_0 label"
  1175. msgid "Bottom Pattern Initial Layer"
  1176. msgstr "Alt Şekil İlk Katmanı"
  1177. #: fdmprinter.def.json
  1178. msgctxt "top_bottom_pattern_0 description"
  1179. msgid "The pattern on the bottom of the print on the first layer."
  1180. msgstr "Yazdırmanın altında ilk katmanda yer alacak şekil."
  1181. #: fdmprinter.def.json
  1182. msgctxt "top_bottom_pattern_0 option lines"
  1183. msgid "Lines"
  1184. msgstr "Çizgiler"
  1185. #: fdmprinter.def.json
  1186. msgctxt "top_bottom_pattern_0 option concentric"
  1187. msgid "Concentric"
  1188. msgstr "Eş merkezli"
  1189. #: fdmprinter.def.json
  1190. msgctxt "top_bottom_pattern_0 option zigzag"
  1191. msgid "Zig Zag"
  1192. msgstr "Zikzak"
  1193. #: fdmprinter.def.json
  1194. msgctxt "connect_skin_polygons label"
  1195. msgid "Connect Top/Bottom Polygons"
  1196. msgstr "Üst/Alt Poligonları Bağla"
  1197. #: fdmprinter.def.json
  1198. msgctxt "connect_skin_polygons description"
  1199. msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
  1200. msgstr "Üst/alt yüzey yollarını yan yana ise bağla. Eş merkezli şekil için bu ayarı etkinleştirmek, hareket süresini önemli ölçüde kısaltır ancak bağlantılar dolgunun üzerinde meydana gelebileceğinden bu özellik üst yüzeyin kalitesini düşürebilir."
  1201. #: fdmprinter.def.json
  1202. msgctxt "skin_monotonic label"
  1203. msgid "Monotonic Top/Bottom Order"
  1204. msgstr "Monotonik Üst/Alt Düzeni"
  1205. #: fdmprinter.def.json
  1206. msgctxt "skin_monotonic description"
  1207. msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  1208. msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst/alt hat baskısı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar."
  1209. #: fdmprinter.def.json
  1210. msgctxt "skin_angles label"
  1211. msgid "Top/Bottom Line Directions"
  1212. msgstr "Üst/Alt Çizgi Yönleri"
  1213. #: fdmprinter.def.json
  1214. msgctxt "skin_angles description"
  1215. msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  1216. msgstr "Üst/alt katmanlar çizgi veya zikzak şekillerini kullandığında kullanılacak tam sayı çizgi yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında baştan başlanır. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar (45 ve 135 derece) kullanılır."
  1217. #: fdmprinter.def.json
  1218. msgctxt "skin_no_small_gaps_heuristic label"
  1219. msgid "No Skin in Z Gaps"
  1220. msgstr "Z Boşluklarında Dış Katman Oluşturma"
  1221. #: fdmprinter.def.json
  1222. msgctxt "skin_no_small_gaps_heuristic description"
  1223. msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air."
  1224. msgstr "Modelde yalnızca birkaç katmanda küçük dikey boşluklar varsa normal şartlarda dar alandaki bu katmanların etrafında dış bir katman olmalıdır. Dikey boşluğun çok küçük olduğu durumlarda dış katman oluşturulmaması için bu ayarı etkinleştirin. Böylece baskı ve dilimleme süresi kısalır ancak teknik olarak bakıldığında havayla temasa açık dolgular kalır."
  1225. #: fdmprinter.def.json
  1226. msgctxt "skin_outline_count label"
  1227. msgid "Extra Skin Wall Count"
  1228. msgstr "Ek Dış Katman Duvar Sayısı"
  1229. #: fdmprinter.def.json
  1230. msgctxt "skin_outline_count description"
  1231. msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material."
  1232. msgstr "Üst/alt şeklin en dıştaki parçasını eş merkezli hatlar ile değiştirir. Bir veya iki hat kullanmak, dolgu malzemesinde başlayan tavanları geliştirir."
  1233. #: fdmprinter.def.json
  1234. msgctxt "ironing_enabled label"
  1235. msgid "Enable Ironing"
  1236. msgstr "Ütülemeyi Etkinleştir"
  1237. #: fdmprinter.def.json
  1238. msgctxt "ironing_enabled description"
  1239. msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material."
  1240. msgstr "Üst yüzey üzerinden bir kere daha geçilir, ancak bu defa çok küçük malzeme ekstrüde edilir. Bu işlem en üstte bulunan plastiği eriterek daha pürüzsüz bir yüzey oluşturur. Nozül haznesindeki baskı yüksek tutularak yüzeydeki kıvrımların malzemeyle dolması sağlanır."
  1241. #: fdmprinter.def.json
  1242. msgctxt "ironing_only_highest_layer label"
  1243. msgid "Iron Only Highest Layer"
  1244. msgstr "Sadece En Yüksek Katmanı Ütüle"
  1245. #: fdmprinter.def.json
  1246. msgctxt "ironing_only_highest_layer description"
  1247. msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish."
  1248. msgstr "Ütüleme işlemini bileşimin sadece en son katmanı üzerinde gerçekleştirin. Bu, alt katmanlarda pürüzsüz bir yüzey tesviyesine gerek olmadığı durumlarda zaman kazandırır."
  1249. #: fdmprinter.def.json
  1250. msgctxt "ironing_pattern label"
  1251. msgid "Ironing Pattern"
  1252. msgstr "Ütüleme Modeli"
  1253. #: fdmprinter.def.json
  1254. msgctxt "ironing_pattern description"
  1255. msgid "The pattern to use for ironing top surfaces."
  1256. msgstr "Üst yüzeyleri ütülemek için kullanılacak model."
  1257. #: fdmprinter.def.json
  1258. msgctxt "ironing_pattern option concentric"
  1259. msgid "Concentric"
  1260. msgstr "Eş merkezli"
  1261. #: fdmprinter.def.json
  1262. msgctxt "ironing_pattern option zigzag"
  1263. msgid "Zig Zag"
  1264. msgstr "Zikzak"
  1265. #: fdmprinter.def.json
  1266. msgctxt "ironing_monotonic label"
  1267. msgid "Monotonic Ironing Order"
  1268. msgstr "Monotonik Ütüleme Düzeni"
  1269. #: fdmprinter.def.json
  1270. msgctxt "ironing_monotonic description"
  1271. msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  1272. msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle hatları ütüleyerek baskı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar."
  1273. #: fdmprinter.def.json
  1274. msgctxt "ironing_line_spacing label"
  1275. msgid "Ironing Line Spacing"
  1276. msgstr "Ütüleme Hattı Boşluğu"
  1277. #: fdmprinter.def.json
  1278. msgctxt "ironing_line_spacing description"
  1279. msgid "The distance between the lines of ironing."
  1280. msgstr "Ütüleme hatları arasında bulunan mesafe."
  1281. #: fdmprinter.def.json
  1282. msgctxt "ironing_flow label"
  1283. msgid "Ironing Flow"
  1284. msgstr "Ütüleme Akışı"
  1285. #: fdmprinter.def.json
  1286. msgctxt "ironing_flow description"
  1287. msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface."
  1288. msgstr "Ütüleme sırasında normal yüzey hattına göre ekstrude edilecek malzeme miktarı. Nozülü dolu tutmak üst yüzeyde oluşan çatlakların bir kısmının doldurulmasını sağlar fakat nozülün fazla dolu olması aşırı ekstrüzyona ve yüzey yanlarında noktalar oluşmasına neden olur."
  1289. #: fdmprinter.def.json
  1290. msgctxt "ironing_inset label"
  1291. msgid "Ironing Inset"
  1292. msgstr "Ütüleme İlave Mesafesi"
  1293. #: fdmprinter.def.json
  1294. msgctxt "ironing_inset description"
  1295. msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print."
  1296. msgstr "Modelin kenarlarından bırakılması gereken mesafe. Ağın kenarlarına kadar ütülemek baskınızın kenarlarının pürüzlü olmasına neden olabilir."
  1297. #: fdmprinter.def.json
  1298. msgctxt "speed_ironing label"
  1299. msgid "Ironing Speed"
  1300. msgstr "Ütüleme Hızı"
  1301. #: fdmprinter.def.json
  1302. msgctxt "speed_ironing description"
  1303. msgid "The speed at which to pass over the top surface."
  1304. msgstr "Üst yüzeyi geçmek için gereken süre."
  1305. #: fdmprinter.def.json
  1306. msgctxt "acceleration_ironing label"
  1307. msgid "Ironing Acceleration"
  1308. msgstr "Ütüleme İvmesi"
  1309. #: fdmprinter.def.json
  1310. msgctxt "acceleration_ironing description"
  1311. msgid "The acceleration with which ironing is performed."
  1312. msgstr "Ütülemenin gerçekleştiği ivme."
  1313. #: fdmprinter.def.json
  1314. msgctxt "jerk_ironing label"
  1315. msgid "Ironing Jerk"
  1316. msgstr "Ütüleme İvmesi Değişimi"
  1317. #: fdmprinter.def.json
  1318. msgctxt "jerk_ironing description"
  1319. msgid "The maximum instantaneous velocity change while performing ironing."
  1320. msgstr "Ütüleme sırasında oluşan maksimum anlık hız değişimi."
  1321. #: fdmprinter.def.json
  1322. msgctxt "skin_overlap label"
  1323. msgid "Skin Overlap Percentage"
  1324. msgstr "Yüzey Çakışma Oranı"
  1325. #: fdmprinter.def.json
  1326. msgctxt "skin_overlap description"
  1327. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  1328. msgstr "Duvarlar ile yüzey ekseni (uçları) arasındaki çakışma miktarını yüzey hatlarının hat genişliği ile en içteki duvarın bir yüzdesi olarak ayarlayın. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Eşit yüzey ve duvar hattı genişliği söz konusu olduğunda, %50’nin üstündeki yüzdelerde bu noktada yüzey ekstrüderinin nozül konumu halihazırda duvarın ortasına ulaşmış olacağından yüzeyin duvarı geçmiş olabileceğini unutmayın."
  1329. #: fdmprinter.def.json
  1330. msgctxt "skin_overlap_mm label"
  1331. msgid "Skin Overlap"
  1332. msgstr "Yüzey Çakışması"
  1333. #: fdmprinter.def.json
  1334. msgctxt "skin_overlap_mm description"
  1335. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  1336. msgstr "Duvarlar ile yüzey ekseni (uçları) arasındaki çakışma miktarını ayarlayın. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Eşit yüzey ve duvar hattı genişliği söz konusu olduğunda, duvar kalınlığının yarısından fazla değerlerde bu noktada yüzey ekstrüderinin nozül konumu halihazırda duvarın ortasına ulaşmış olacağından yüzeyin duvarı geçmiş olabileceğini unutmayın."
  1337. #: fdmprinter.def.json
  1338. msgctxt "skin_preshrink label"
  1339. msgid "Skin Removal Width"
  1340. msgstr "Yüzey Kaldırma Genişliği"
  1341. #: fdmprinter.def.json
  1342. msgctxt "skin_preshrink description"
  1343. msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model."
  1344. msgstr "Kaldırılacak olan yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde alt/üst yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir."
  1345. #: fdmprinter.def.json
  1346. msgctxt "top_skin_preshrink label"
  1347. msgid "Top Skin Removal Width"
  1348. msgstr "Üst Yüzey Kaldırma Genişliği"
  1349. #: fdmprinter.def.json
  1350. msgctxt "top_skin_preshrink description"
  1351. msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model."
  1352. msgstr "Kaldırılacak olan üst yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde üst yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir."
  1353. #: fdmprinter.def.json
  1354. msgctxt "bottom_skin_preshrink label"
  1355. msgid "Bottom Skin Removal Width"
  1356. msgstr "Alt Yüzey Kaldırma Genişliği"
  1357. #: fdmprinter.def.json
  1358. msgctxt "bottom_skin_preshrink description"
  1359. msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model."
  1360. msgstr "Kaldırılacak olan alt yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde alt yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir."
  1361. #: fdmprinter.def.json
  1362. msgctxt "expand_skins_expand_distance label"
  1363. msgid "Skin Expand Distance"
  1364. msgstr "Yüzey Genişleme Mesafesi"
  1365. #: fdmprinter.def.json
  1366. msgctxt "expand_skins_expand_distance description"
  1367. msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used."
  1368. msgstr "Yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi komşu katmanlardaki duvarların yüzeye daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar."
  1369. #: fdmprinter.def.json
  1370. msgctxt "top_skin_expand_distance label"
  1371. msgid "Top Skin Expand Distance"
  1372. msgstr "Üst Yüzey Genişleme Mesafesi"
  1373. #: fdmprinter.def.json
  1374. msgctxt "top_skin_expand_distance description"
  1375. msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used."
  1376. msgstr "Üst yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi yukarıdaki katmandaki duvarların yüzeye daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar."
  1377. #: fdmprinter.def.json
  1378. msgctxt "bottom_skin_expand_distance label"
  1379. msgid "Bottom Skin Expand Distance"
  1380. msgstr "Alt Yüzey Genişleme Mesafesi"
  1381. #: fdmprinter.def.json
  1382. msgctxt "bottom_skin_expand_distance description"
  1383. msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used."
  1384. msgstr "Alt yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi yüzeyin aşağıdaki katmandaki duvara daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar."
  1385. #: fdmprinter.def.json
  1386. msgctxt "max_skin_angle_for_expansion label"
  1387. msgid "Maximum Skin Angle for Expansion"
  1388. msgstr "Genişleme için Maksimum Yüzey Açısı"
  1389. #: fdmprinter.def.json
  1390. msgctxt "max_skin_angle_for_expansion description"
  1391. msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded."
  1392. msgstr "Nesnenizin bu ayardan daha geniş açıya sahip üst ve/veya alt zeminlerinin yüzeyleri genişletilmez. Böylece model yüzeyinin neredeyse dik açıya sahip olduğu durumlarda ortaya çıkan dar yüzey alanlarının genişletilmesi önlenmiş olur. 0°’lik bir açı yataydır ve yüzey alanının genişlemesine neden olmaz; 90°’lik bir açı dikeydir ve tüm yüzey alanlarının genişlemesine neden olur."
  1393. #: fdmprinter.def.json
  1394. msgctxt "min_skin_width_for_expansion label"
  1395. msgid "Minimum Skin Width for Expansion"
  1396. msgstr "Genişleme için Minimum Yüzey Genişliği"
  1397. #: fdmprinter.def.json
  1398. msgctxt "min_skin_width_for_expansion description"
  1399. msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
  1400. msgstr "Bu değerden daha dar olan yüzey alanları genişletilmez. Böylece model yüzeyinin dikeye yakın bir eğime sahip olduğu durumlarda ortaya çıkan dar yüzey alanlarının genişletilmesi önlenmiş olur."
  1401. #: fdmprinter.def.json
  1402. msgctxt "infill label"
  1403. msgid "Infill"
  1404. msgstr "Dolgu"
  1405. #: fdmprinter.def.json
  1406. msgctxt "infill description"
  1407. msgid "Infill"
  1408. msgstr "Dolgu"
  1409. #: fdmprinter.def.json
  1410. msgctxt "infill_extruder_nr label"
  1411. msgid "Infill Extruder"
  1412. msgstr "Dolgu Ekstruderi"
  1413. #: fdmprinter.def.json
  1414. msgctxt "infill_extruder_nr description"
  1415. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  1416. msgstr "Dolgu yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır."
  1417. #: fdmprinter.def.json
  1418. msgctxt "infill_sparse_density label"
  1419. msgid "Infill Density"
  1420. msgstr "Dolgu Yoğunluğu"
  1421. #: fdmprinter.def.json
  1422. msgctxt "infill_sparse_density description"
  1423. msgid "Adjusts the density of infill of the print."
  1424. msgstr "Yazdırma dolgusunun yoğunluğunu ayarlar."
  1425. #: fdmprinter.def.json
  1426. msgctxt "infill_line_distance label"
  1427. msgid "Infill Line Distance"
  1428. msgstr "Dolgu Hattı Mesafesi"
  1429. #: fdmprinter.def.json
  1430. msgctxt "infill_line_distance description"
  1431. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  1432. msgstr "Yazdırılan dolgu hatları arasındaki mesafe. Bu ayar, dolgu yoğunluğu ve dolgu hattı genişliği ile hesaplanır."
  1433. #: fdmprinter.def.json
  1434. msgctxt "infill_pattern label"
  1435. msgid "Infill Pattern"
  1436. msgstr "Dolgu Şekli"
  1437. #: fdmprinter.def.json
  1438. msgctxt "infill_pattern description"
  1439. msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object."
  1440. msgstr "Baskının dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, üçlü altıgen, kübik, sekizlik, çeyrek kübik, çapraz ve eşmerkezli şekiller her katmana tam olarak basılır. Gyroid, kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir. Yıldırım dolgu, objenin yalnızca tavanını destekleyerek dolgu miktarını en aza indirmeye çalışır."
  1441. #: fdmprinter.def.json
  1442. msgctxt "infill_pattern option grid"
  1443. msgid "Grid"
  1444. msgstr "Izgara"
  1445. #: fdmprinter.def.json
  1446. msgctxt "infill_pattern option lines"
  1447. msgid "Lines"
  1448. msgstr "Çizgiler"
  1449. #: fdmprinter.def.json
  1450. msgctxt "infill_pattern option triangles"
  1451. msgid "Triangles"
  1452. msgstr "Üçgenler"
  1453. #: fdmprinter.def.json
  1454. msgctxt "infill_pattern option trihexagon"
  1455. msgid "Tri-Hexagon"
  1456. msgstr "Üçlü Altıgen"
  1457. #: fdmprinter.def.json
  1458. msgctxt "infill_pattern option cubic"
  1459. msgid "Cubic"
  1460. msgstr "Kübik"
  1461. #: fdmprinter.def.json
  1462. msgctxt "infill_pattern option cubicsubdiv"
  1463. msgid "Cubic Subdivision"
  1464. msgstr "Kübik Alt Bölüm"
  1465. #: fdmprinter.def.json
  1466. msgctxt "infill_pattern option tetrahedral"
  1467. msgid "Octet"
  1468. msgstr "Sekizlik"
  1469. #: fdmprinter.def.json
  1470. msgctxt "infill_pattern option quarter_cubic"
  1471. msgid "Quarter Cubic"
  1472. msgstr "Çeyrek Kübik"
  1473. #: fdmprinter.def.json
  1474. msgctxt "infill_pattern option concentric"
  1475. msgid "Concentric"
  1476. msgstr "Eş merkezli"
  1477. #: fdmprinter.def.json
  1478. msgctxt "infill_pattern option zigzag"
  1479. msgid "Zig Zag"
  1480. msgstr "Zik Zak"
  1481. #: fdmprinter.def.json
  1482. msgctxt "infill_pattern option cross"
  1483. msgid "Cross"
  1484. msgstr "Çapraz"
  1485. #: fdmprinter.def.json
  1486. msgctxt "infill_pattern option cross_3d"
  1487. msgid "Cross 3D"
  1488. msgstr "Çapraz 3D"
  1489. #: fdmprinter.def.json
  1490. msgctxt "infill_pattern option gyroid"
  1491. msgid "Gyroid"
  1492. msgstr "Gyroid"
  1493. #: fdmprinter.def.json
  1494. msgctxt "infill_pattern option lightning"
  1495. msgid "Lightning"
  1496. msgstr "Yıldırım"
  1497. #: fdmprinter.def.json
  1498. msgctxt "zig_zaggify_infill label"
  1499. msgid "Connect Infill Lines"
  1500. msgstr "Dolgu Hatlarını Bağlayın"
  1501. #: fdmprinter.def.json
  1502. msgctxt "zig_zaggify_infill description"
  1503. msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  1504. msgstr "İç duvarın şeklini takip eden bir hattı kullanarak dolgu şeklinin iç duvarla buluştuğu noktada uçları bağlar. Bu ayarın etkinleştirilmesi, dolgunun duvarlara daha iyi yapışmasını sağlayabilir ve dolgunun dikey yüzeylerin kalitesinin etkilerini azaltabilir. Bu ayarın devre dışı bırakılması, kullanılan malzemenin miktarını azaltır."
  1505. #: fdmprinter.def.json
  1506. msgctxt "connect_infill_polygons label"
  1507. msgid "Connect Infill Polygons"
  1508. msgstr "Dolgu Poligonlarını Bağla"
  1509. #: fdmprinter.def.json
  1510. msgctxt "connect_infill_polygons description"
  1511. msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time."
  1512. msgstr "Yan yana giden dolgu yollarını bağla. Birkaç kapalı poligondan oluşan dolgu şekilleri için bu ayarı etkinleştirmek hareket süresini büyük ölçüde kısaltır."
  1513. #: fdmprinter.def.json
  1514. msgctxt "infill_angles label"
  1515. msgid "Infill Line Directions"
  1516. msgstr "Dolgu Hattı Yönleri"
  1517. #: fdmprinter.def.json
  1518. msgctxt "infill_angles description"
  1519. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)."
  1520. msgstr "Kullanılacak tam sayı hat yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında baştan başlanır. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar kullanılır (çizgiler ve zikzak şekiller için 45 ve 135 derece; diğer tüm şekiller için 45 derece)."
  1521. #: fdmprinter.def.json
  1522. msgctxt "infill_offset_x label"
  1523. msgid "Infill X Offset"
  1524. msgstr "Dolgu X Kayması"
  1525. #: fdmprinter.def.json
  1526. msgctxt "infill_offset_x description"
  1527. msgid "The infill pattern is moved this distance along the X axis."
  1528. msgstr "Dolgu şekli X ekseni boyunca bu mesafe kadar kaydırılır."
  1529. #: fdmprinter.def.json
  1530. msgctxt "infill_offset_y label"
  1531. msgid "Infill Y Offset"
  1532. msgstr "Dolgu Y Kayması"
  1533. #: fdmprinter.def.json
  1534. msgctxt "infill_offset_y description"
  1535. msgid "The infill pattern is moved this distance along the Y axis."
  1536. msgstr "Dolgu şekli Y ekseni boyunca bu mesafe kadar kaydırılır."
  1537. #: fdmprinter.def.json
  1538. msgctxt "infill_randomize_start_location label"
  1539. msgid "Randomize Infill Start"
  1540. msgstr "Rastgele Boşluk Doldurma Başlat"
  1541. #: fdmprinter.def.json
  1542. msgctxt "infill_randomize_start_location description"
  1543. msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move."
  1544. msgstr "Önce hangi boşluk doldurma hattının yapılacağını rastgele belirler. Böylece tek bir segmentin en güçlü yapıda olması önlenir ancak bu işlem ilave gezinti hamlelerine neden olabilir."
  1545. #: fdmprinter.def.json
  1546. msgctxt "infill_multiplier label"
  1547. msgid "Infill Line Multiplier"
  1548. msgstr "Dolgu Hattı Çoğaltıcı"
  1549. #: fdmprinter.def.json
  1550. msgctxt "infill_multiplier description"
  1551. msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage."
  1552. msgstr "Her bir dolgu hattını bu sayıda hatta dönüştür. Ekstra hatlar birbirlerini kesmez, birbirlerinden bağımsız kalırlar. Bu dolguyu sertleştirir, ancak yazdırma süresini uzatırken materyal kullanımını artırır."
  1553. #: fdmprinter.def.json
  1554. msgctxt "infill_wall_line_count label"
  1555. msgid "Extra Infill Wall Count"
  1556. msgstr "Ekstra Dolgu Duvar Sayısı"
  1557. #: fdmprinter.def.json
  1558. msgctxt "infill_wall_line_count description"
  1559. msgid ""
  1560. "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n"
  1561. "This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right."
  1562. msgstr ""
  1563. "Dolgu alanının etrafına ekstra duvar ekle. Bu duvarlar üst/alt yüzey hatlarının daha az aşağı düşmesini sağlar. Yani biraz fazla materyal kullanarak, daha az üst/alt yüzey katmanı ile aynı kaliteyi yakalayabilirsiniz.\n"
  1564. "Bu özellik, doğru konfigüre edildiğinde, harekete veya geri çekmeye gerek kalmadan Dolgu Poligonlarını Bağlama ile birlikte tüm dolguyu tek bir ekstrüzyon yoluna bağlayabilir."
  1565. #: fdmprinter.def.json
  1566. msgctxt "sub_div_rad_add label"
  1567. msgid "Cubic Subdivision Shell"
  1568. msgstr "Kübik Alt Bölüm Kalkanı"
  1569. #: fdmprinter.def.json
  1570. msgctxt "sub_div_rad_add description"
  1571. msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model."
  1572. msgstr "Bu küpün bölünüp bölünmemesine karar vermek için modelin sınırını kontrol eden ve her bir küpün merkezinden alınan yarıçapa ekleme. Büyük değerler modelin sınırının yanında daha kalın küçük küp kalkanları oluşmasına neden olur."
  1573. #: fdmprinter.def.json
  1574. msgctxt "infill_overlap label"
  1575. msgid "Infill Overlap Percentage"
  1576. msgstr "Dolgu Çakışma Oranı"
  1577. #: fdmprinter.def.json
  1578. msgctxt "infill_overlap description"
  1579. msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill."
  1580. msgstr "Dolgu hattı genişliğinin yüzdesi olarak dolgu ve duvarların arasındaki çakışma miktarı. Ufak bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar."
  1581. #: fdmprinter.def.json
  1582. msgctxt "infill_overlap_mm label"
  1583. msgid "Infill Overlap"
  1584. msgstr "Dolgu Çakışması"
  1585. #: fdmprinter.def.json
  1586. msgctxt "infill_overlap_mm description"
  1587. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  1588. msgstr "Dolgu ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar."
  1589. #: fdmprinter.def.json
  1590. msgctxt "infill_wipe_dist label"
  1591. msgid "Infill Wipe Distance"
  1592. msgstr "Dolgu Sürme Mesafesi"
  1593. #: fdmprinter.def.json
  1594. msgctxt "infill_wipe_dist description"
  1595. msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line."
  1596. msgstr "Dolgunun duvarlara daha iyi yapışması için her dolgu hattından sonra eklenen hareket mesafesi. Bu seçenek, dolgu çakışmasına benzer, ancak ekstrüzyon yoktur ve sadece dolgu hattının bir ucunda çakışma vardır."
  1597. #: fdmprinter.def.json
  1598. msgctxt "infill_sparse_thickness label"
  1599. msgid "Infill Layer Thickness"
  1600. msgstr "Dolgu Katmanı Kalınlığı"
  1601. #: fdmprinter.def.json
  1602. msgctxt "infill_sparse_thickness description"
  1603. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  1604. msgstr "Dolgu malzemesinin her bir katmanının kalınlığı Bu değer her zaman katman yüksekliğinin katı olmalıdır, aksi takdirde yuvarlanır."
  1605. #: fdmprinter.def.json
  1606. msgctxt "gradual_infill_steps label"
  1607. msgid "Gradual Infill Steps"
  1608. msgstr "Aşamalı Dolgu Basamakları"
  1609. #: fdmprinter.def.json
  1610. msgctxt "gradual_infill_steps description"
  1611. msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density."
  1612. msgstr "Üst yüzeylerin altına indikçe dolgu yoğunluğunu yarıya indirme sayısı. Üst yüzeylere daha yakın olan alanlarda, Dolgu Yoğunluğuna kadar yoğunluk daha yüksektir."
  1613. #: fdmprinter.def.json
  1614. msgctxt "gradual_infill_step_height label"
  1615. msgid "Gradual Infill Step Height"
  1616. msgstr "Aşamalı Dolgu Basamak Yüksekliği"
  1617. #: fdmprinter.def.json
  1618. msgctxt "gradual_infill_step_height description"
  1619. msgid "The height of infill of a given density before switching to half the density."
  1620. msgstr "Yoğunluğun yarısına inmeden önce verilen bir yoğunluktaki dolgunun yüksekliği."
  1621. #: fdmprinter.def.json
  1622. msgctxt "infill_before_walls label"
  1623. msgid "Infill Before Walls"
  1624. msgstr "Duvarlardan Önce Dolgu"
  1625. #: fdmprinter.def.json
  1626. msgctxt "infill_before_walls description"
  1627. msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface."
  1628. msgstr "Duvarları yazdırmadan önce dolguyu yazdırın. Önce duvarları yazdırmak daha düzgün duvarlar oluşturabilir ama yazdırmayı olumsuz etkiler. Önce dolguyu yazdırmak duvarların daha sağlam olmasını sağlar, fakat dolgu şekli bazen yüzeyden görünebilir."
  1629. #: fdmprinter.def.json
  1630. msgctxt "min_infill_area label"
  1631. msgid "Minimum Infill Area"
  1632. msgstr "Minimum Dolgu Alanı"
  1633. #: fdmprinter.def.json
  1634. msgctxt "min_infill_area description"
  1635. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1636. msgstr "Bundan küçük dolgu alanları oluşturma (onun yerine yüzey kullan)."
  1637. #: fdmprinter.def.json
  1638. msgctxt "infill_support_enabled label"
  1639. msgid "Infill Support"
  1640. msgstr "Dolgu Desteği"
  1641. #: fdmprinter.def.json
  1642. msgctxt "infill_support_enabled description"
  1643. msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength."
  1644. msgstr "Yazdırma dolgusu, yalnızca model tepelerinin desteklenmesi gereken yerleri yapılandırır. Bu özelliğin etkinleştirilmesi yazdırma süresini ve malzeme kullanımını azaltır ancak üniform olmayan nesne kuvvetine yol açar."
  1645. #: fdmprinter.def.json
  1646. msgctxt "infill_support_angle label"
  1647. msgid "Infill Overhang Angle"
  1648. msgstr "Dolum Çıkıntı Açısı"
  1649. #: fdmprinter.def.json
  1650. msgctxt "infill_support_angle description"
  1651. msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill."
  1652. msgstr "Dolum eklenen dahili çıkıntıların minimum açısı. 0° değerde nesneler tamamen doldurulur, 90°’de dolgu yapılmaz."
  1653. #: fdmprinter.def.json
  1654. msgctxt "skin_edge_support_thickness label"
  1655. msgid "Skin Edge Support Thickness"
  1656. msgstr "Kaplamanın Kenar Desteği Kalınlığı"
  1657. #: fdmprinter.def.json
  1658. msgctxt "skin_edge_support_thickness description"
  1659. msgid "The thickness of the extra infill that supports skin edges."
  1660. msgstr "Kaplamanın kenarlarını destekleyen ekstra dolgunun kalınlığı."
  1661. #: fdmprinter.def.json
  1662. msgctxt "skin_edge_support_layers label"
  1663. msgid "Skin Edge Support Layers"
  1664. msgstr "Kaplamanın Kenar Desteği Katmanları"
  1665. #: fdmprinter.def.json
  1666. msgctxt "skin_edge_support_layers description"
  1667. msgid "The number of infill layers that supports skin edges."
  1668. msgstr "Kaplamanın kenarlarını destekleyen dolgu katmanının kalınlığı."
  1669. #: fdmprinter.def.json
  1670. msgctxt "lightning_infill_support_angle label"
  1671. msgid "Lightning Infill Support Angle"
  1672. msgstr "Yıldırım Dolgu Destek Açısı"
  1673. #: fdmprinter.def.json
  1674. msgctxt "lightning_infill_support_angle description"
  1675. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  1676. msgstr "Bir yıldırım dolgu tabakasının üstünde kalanları ne zaman desteklenmesi gerektiğini belirler. Bir katmanın kalınlığı verilen açıyla ölçülür."
  1677. #: fdmprinter.def.json
  1678. msgctxt "lightning_infill_overhang_angle label"
  1679. msgid "Lightning Infill Overhang Angle"
  1680. msgstr "Yıldırım Dolgu Çıkıntı Açısı"
  1681. #: fdmprinter.def.json
  1682. msgctxt "lightning_infill_overhang_angle description"
  1683. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  1684. msgstr "Bir yıldırım dolgu tabakasının üstündeki modeli ne zaman desteklemesi gerektiğini belirler. Dalların açısı olarak ölçülür."
  1685. #: fdmprinter.def.json
  1686. msgctxt "lightning_infill_prune_angle label"
  1687. msgid "Lightning Infill Prune Angle"
  1688. msgstr "Yıldırım Dolgu Budama Açısı"
  1689. #: fdmprinter.def.json
  1690. msgctxt "lightning_infill_prune_angle description"
  1691. msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines."
  1692. msgstr "Malzemeden tasarruf etmek için dolgu hatlarının uç noktaları kısaltılır. Bu ayar, bu hatların uç noktalarının çıkıntı açısıdır."
  1693. #: fdmprinter.def.json
  1694. msgctxt "lightning_infill_straightening_angle label"
  1695. msgid "Lightning Infill Straightening Angle"
  1696. msgstr "Yıldırım Dolgu Düzleştirme Açısı"
  1697. #: fdmprinter.def.json
  1698. msgctxt "lightning_infill_straightening_angle description"
  1699. msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line."
  1700. msgstr "Dolgu hatları, baskı süresinden tasarruf etmek için düzleştirilir. Bu, dolgu hattının uzunluğu boyunca izin verilen maksimum çıkıntı açısıdır."
  1701. #: fdmprinter.def.json
  1702. msgctxt "material label"
  1703. msgid "Material"
  1704. msgstr "Malzeme"
  1705. #: fdmprinter.def.json
  1706. msgctxt "material description"
  1707. msgid "Material"
  1708. msgstr "Malzeme"
  1709. #: fdmprinter.def.json
  1710. msgctxt "default_material_print_temperature label"
  1711. msgid "Default Printing Temperature"
  1712. msgstr "Varsayılan Yazdırma Sıcaklığı"
  1713. #: fdmprinter.def.json
  1714. msgctxt "default_material_print_temperature description"
  1715. msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value"
  1716. msgstr "Yazdırma için kullanılan varsayılan sıcaklık. Bu sıcaklık malzemenin “temel” sıcaklığı olmalıdır. Diğer tüm yazıcı sıcaklıkları bu değere dayanan ofsetler kullanmalıdır"
  1717. #: fdmprinter.def.json
  1718. msgctxt "build_volume_temperature label"
  1719. msgid "Build Volume Temperature"
  1720. msgstr "Yapı Disk Bölümü Sıcaklığı"
  1721. #: fdmprinter.def.json
  1722. msgctxt "build_volume_temperature description"
  1723. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  1724. msgstr "Baskı yapılacak ortamın sıcaklığı. Bu değer 0 ise yapı hacminin sıcaklığı ayarlanmaz."
  1725. #: fdmprinter.def.json
  1726. msgctxt "material_print_temperature label"
  1727. msgid "Printing Temperature"
  1728. msgstr "Yazdırma Sıcaklığı"
  1729. #: fdmprinter.def.json
  1730. msgctxt "material_print_temperature description"
  1731. msgid "The temperature used for printing."
  1732. msgstr "Yazdırma için kullanılan sıcaklık."
  1733. #: fdmprinter.def.json
  1734. msgctxt "material_print_temperature_layer_0 label"
  1735. msgid "Printing Temperature Initial Layer"
  1736. msgstr "İlk Katman Yazdırma Sıcaklığı"
  1737. #: fdmprinter.def.json
  1738. msgctxt "material_print_temperature_layer_0 description"
  1739. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  1740. msgstr "İlk katmanı yazdırmak için kullanılan sıcaklık. İlk katmanın özel kullanımını devre dışı bırakmak için 0’a ayarlayın."
  1741. #: fdmprinter.def.json
  1742. msgctxt "material_initial_print_temperature label"
  1743. msgid "Initial Printing Temperature"
  1744. msgstr "İlk Yazdırma Sıcaklığı"
  1745. #: fdmprinter.def.json
  1746. msgctxt "material_initial_print_temperature description"
  1747. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  1748. msgstr "Yazdırmanın başlayacağı Yazdırma Sıcaklığına ulaşırken görülen minimum sıcaklık."
  1749. #: fdmprinter.def.json
  1750. msgctxt "material_final_print_temperature label"
  1751. msgid "Final Printing Temperature"
  1752. msgstr "Son Yazdırma Sıcaklığı"
  1753. #: fdmprinter.def.json
  1754. msgctxt "material_final_print_temperature description"
  1755. msgid "The temperature to which to already start cooling down just before the end of printing."
  1756. msgstr "Yazdırma bitmeden hemen önce soğuma işleminin başladığı sıcaklık."
  1757. #: fdmprinter.def.json
  1758. msgctxt "material_extrusion_cool_down_speed label"
  1759. msgid "Extrusion Cool Down Speed Modifier"
  1760. msgstr "Ekstrüzyon Sırasında Soğuma Hızı Düzenleyici"
  1761. #: fdmprinter.def.json
  1762. msgctxt "material_extrusion_cool_down_speed description"
  1763. msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding."
  1764. msgstr "Ekstrüzyon sırasında nozülün soğuduğu ilave hız. Aynı değer, ekstrüzyon sırasında ısınırken kaybedilen ısınma hızını göstermek için de kullanılır."
  1765. #: fdmprinter.def.json
  1766. msgctxt "default_material_bed_temperature label"
  1767. msgid "Default Build Plate Temperature"
  1768. msgstr "Varsayılan Yapı Levhası Sıcaklığı"
  1769. #: fdmprinter.def.json
  1770. msgctxt "default_material_bed_temperature description"
  1771. msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value"
  1772. msgstr "Isınan yapı levhası için kullanılan varsayılan sıcaklık. Bu sıcaklık yapı levhasının “temel” sıcaklığı olmalıdır. Diğer tüm yazıcı sıcaklıkları bu değere dayanan ofsetler kullanmalıdır"
  1773. #: fdmprinter.def.json
  1774. msgctxt "material_bed_temperature label"
  1775. msgid "Build Plate Temperature"
  1776. msgstr "Yapı Levhası Sıcaklığı"
  1777. #: fdmprinter.def.json
  1778. msgctxt "material_bed_temperature description"
  1779. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  1780. msgstr "Isıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ısıtılmaz."
  1781. #: fdmprinter.def.json
  1782. msgctxt "material_bed_temperature_layer_0 label"
  1783. msgid "Build Plate Temperature Initial Layer"
  1784. msgstr "İlk Katman Yapı Levhası Sıcaklığı"
  1785. #: fdmprinter.def.json
  1786. msgctxt "material_bed_temperature_layer_0 description"
  1787. msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer."
  1788. msgstr "İlk katmanda ısıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ilk katman boyunca ısıtılmaz."
  1789. #: fdmprinter.def.json
  1790. msgctxt "material_adhesion_tendency label"
  1791. msgid "Adhesion Tendency"
  1792. msgstr "Yapışma Eğilimi"
  1793. #: fdmprinter.def.json
  1794. msgctxt "material_adhesion_tendency description"
  1795. msgid "Surface adhesion tendency."
  1796. msgstr "Yüzeye yapışma eğilimi."
  1797. #: fdmprinter.def.json
  1798. msgctxt "material_surface_energy label"
  1799. msgid "Surface Energy"
  1800. msgstr "Yüzey Enerjisi"
  1801. #: fdmprinter.def.json
  1802. msgctxt "material_surface_energy description"
  1803. msgid "Surface energy."
  1804. msgstr "Yüzey enerjisi."
  1805. #: fdmprinter.def.json
  1806. msgctxt "material_shrinkage_percentage label"
  1807. msgid "Scaling Factor Shrinkage Compensation"
  1808. msgstr "Ölçekleme Faktörü Büzülme Telafisi"
  1809. #: fdmprinter.def.json
  1810. msgctxt "material_shrinkage_percentage description"
  1811. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  1812. msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre ölçeklenecektir."
  1813. #: fdmprinter.def.json
  1814. msgctxt "material_shrinkage_percentage_xy label"
  1815. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1816. msgstr "Yatay Ölçekleme Faktörü Büzülme Telafisi"
  1817. #: fdmprinter.def.json
  1818. msgctxt "material_shrinkage_percentage_xy description"
  1819. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)."
  1820. msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre XY yönünde (yatay olarak) ölçeklenecektir."
  1821. #: fdmprinter.def.json
  1822. msgctxt "material_shrinkage_percentage_z label"
  1823. msgid "Vertical Scaling Factor Shrinkage Compensation"
  1824. msgstr "Dikey Ölçekleme Faktörü Büzülme Telafisi"
  1825. #: fdmprinter.def.json
  1826. msgctxt "material_shrinkage_percentage_z description"
  1827. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)."
  1828. msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre Z yönünde (dikey olarak) ölçeklenecektir."
  1829. #: fdmprinter.def.json
  1830. msgctxt "material_crystallinity label"
  1831. msgid "Crystalline Material"
  1832. msgstr "Kristalli Malzeme"
  1833. #: fdmprinter.def.json
  1834. msgctxt "material_crystallinity description"
  1835. msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?"
  1836. msgstr "Bu malzeme ısıtıldığında temiz bir şekilde parçalanan tür de mi (kristalli) yoksa uzun iç içe polimer zincirler (kristal olmayan) oluşturan türde mi?"
  1837. #: fdmprinter.def.json
  1838. msgctxt "material_anti_ooze_retracted_position label"
  1839. msgid "Anti-ooze Retracted Position"
  1840. msgstr "Sızma Önleme Geri Çekme Mesafesi"
  1841. #: fdmprinter.def.json
  1842. msgctxt "material_anti_ooze_retracted_position description"
  1843. msgid "How far the material needs to be retracted before it stops oozing."
  1844. msgstr "Malzemenin sızma yapmaması için gereken geri çekilme mesafesidir."
  1845. #: fdmprinter.def.json
  1846. msgctxt "material_anti_ooze_retraction_speed label"
  1847. msgid "Anti-ooze Retraction Speed"
  1848. msgstr "Sızma Önleme Geri Çekme Hızı"
  1849. #: fdmprinter.def.json
  1850. msgctxt "material_anti_ooze_retraction_speed description"
  1851. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1852. msgstr "Filament değişimi sırasında malzemenin sızma yapmaması için gereken geri çekilme hızıdır."
  1853. #: fdmprinter.def.json
  1854. msgctxt "material_break_preparation_retracted_position label"
  1855. msgid "Break Preparation Retracted Position"
  1856. msgstr "Geri Çekme Pozisyonunda Durma Mesafesi"
  1857. #: fdmprinter.def.json
  1858. msgctxt "material_break_preparation_retracted_position description"
  1859. msgid "How far the filament can be stretched before it breaks, while heated."
  1860. msgstr "Filamentin ısıtıldığında kopmadan esneyebileceği mesafedir."
  1861. #: fdmprinter.def.json
  1862. msgctxt "material_break_preparation_speed label"
  1863. msgid "Break Preparation Retraction Speed"
  1864. msgstr "Durma Payına Uygun Geri Çekme Hızı"
  1865. #: fdmprinter.def.json
  1866. msgctxt "material_break_preparation_speed description"
  1867. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1868. msgstr "Filamentin kopmadan ne kadar hızlı geri çekilmesi gerektiğidir."
  1869. #: fdmprinter.def.json
  1870. msgctxt "material_break_preparation_temperature label"
  1871. msgid "Break Preparation Temperature"
  1872. msgstr "Kopma Hazırlığı Sıcaklığı"
  1873. #: fdmprinter.def.json
  1874. msgctxt "material_break_preparation_temperature description"
  1875. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  1876. msgstr "Malzemeyi temizlemek için kullanılan sıcaklık; kabaca mümkün olan en yüksek baskı sıcaklığına eşit olmalıdır."
  1877. #: fdmprinter.def.json
  1878. msgctxt "material_break_retracted_position label"
  1879. msgid "Break Retracted Position"
  1880. msgstr "Kopma Geri Çekme Mesafesi"
  1881. #: fdmprinter.def.json
  1882. msgctxt "material_break_retracted_position description"
  1883. msgid "How far to retract the filament in order to break it cleanly."
  1884. msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken mesafedir."
  1885. #: fdmprinter.def.json
  1886. msgctxt "material_break_speed label"
  1887. msgid "Break Retraction Speed"
  1888. msgstr "Kopma Geri Çekme Hızı"
  1889. #: fdmprinter.def.json
  1890. msgctxt "material_break_speed description"
  1891. msgid "The speed at which to retract the filament in order to break it cleanly."
  1892. msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken hızdır."
  1893. #: fdmprinter.def.json
  1894. msgctxt "material_break_temperature label"
  1895. msgid "Break Temperature"
  1896. msgstr "Kopma Sıcaklığı"
  1897. #: fdmprinter.def.json
  1898. msgctxt "material_break_temperature description"
  1899. msgid "The temperature at which the filament is broken for a clean break."
  1900. msgstr "Sorunsuz kopması için filament koptuğundaki sıcaklık değeridir."
  1901. #: fdmprinter.def.json
  1902. msgctxt "material_flush_purge_speed label"
  1903. msgid "Flush Purge Speed"
  1904. msgstr "Temizleme Hızı"
  1905. #: fdmprinter.def.json
  1906. msgctxt "material_flush_purge_speed description"
  1907. msgid "How fast to prime the material after switching to a different material."
  1908. msgstr "Farklı bir malzemeye geçildikten sonra malzemenin kullanıma hazır hale getirileceği süredir."
  1909. #: fdmprinter.def.json
  1910. msgctxt "material_flush_purge_length label"
  1911. msgid "Flush Purge Length"
  1912. msgstr "Temizleme Uzunluğu"
  1913. #: fdmprinter.def.json
  1914. msgctxt "material_flush_purge_length description"
  1915. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material."
  1916. msgstr "Farklı bir malzemeye geçilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır."
  1917. #: fdmprinter.def.json
  1918. msgctxt "material_end_of_filament_purge_speed label"
  1919. msgid "End of Filament Purge Speed"
  1920. msgstr "Filament Temizliği Bitiş Hızı"
  1921. #: fdmprinter.def.json
  1922. msgctxt "material_end_of_filament_purge_speed description"
  1923. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1924. msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirildikten sonra malzemenin kullanıma hazır hale getirileceği süredir."
  1925. #: fdmprinter.def.json
  1926. msgctxt "material_end_of_filament_purge_length label"
  1927. msgid "End of Filament Purge Length"
  1928. msgstr "Filament Temizliği Bitiş Uzunluğu"
  1929. #: fdmprinter.def.json
  1930. msgctxt "material_end_of_filament_purge_length description"
  1931. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material."
  1932. msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır."
  1933. #: fdmprinter.def.json
  1934. msgctxt "material_maximum_park_duration label"
  1935. msgid "Maximum Park Duration"
  1936. msgstr "Maksimum Durma Süresi"
  1937. #: fdmprinter.def.json
  1938. msgctxt "material_maximum_park_duration description"
  1939. msgid "How long the material can be kept out of dry storage safely."
  1940. msgstr "Malzemenin kuru olmadığı durumda güvenli şekilde saklanabileceği süredir."
  1941. #: fdmprinter.def.json
  1942. msgctxt "material_no_load_move_factor label"
  1943. msgid "No Load Move Factor"
  1944. msgstr "Yük Taşıma Çarpanı Yok"
  1945. #: fdmprinter.def.json
  1946. msgctxt "material_no_load_move_factor description"
  1947. msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch."
  1948. msgstr "Besleme ünitesi ile nozül haznesi arasına sıkıştırılacak filamenti belirten faktördür ve filament değişimi için malzemenin ne kadar hareket ettirileceğini belirlemek için kullanılır."
  1949. #: fdmprinter.def.json
  1950. msgctxt "material_flow label"
  1951. msgid "Flow"
  1952. msgstr "Akış"
  1953. #: fdmprinter.def.json
  1954. msgctxt "material_flow description"
  1955. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1956. msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır."
  1957. #: fdmprinter.def.json
  1958. msgctxt "wall_material_flow label"
  1959. msgid "Wall Flow"
  1960. msgstr "Duvar Akışı"
  1961. #: fdmprinter.def.json
  1962. msgctxt "wall_material_flow description"
  1963. msgid "Flow compensation on wall lines."
  1964. msgstr "Duvar hatlarının akış telafisidir."
  1965. #: fdmprinter.def.json
  1966. msgctxt "wall_0_material_flow label"
  1967. msgid "Outer Wall Flow"
  1968. msgstr "Dış Duvar Akışı"
  1969. #: fdmprinter.def.json
  1970. msgctxt "wall_0_material_flow description"
  1971. msgid "Flow compensation on the outermost wall line."
  1972. msgstr "En dıştaki duvar hattının akış telafisidir."
  1973. #: fdmprinter.def.json
  1974. msgctxt "wall_x_material_flow label"
  1975. msgid "Inner Wall(s) Flow"
  1976. msgstr "İç Duvar Akışı"
  1977. #: fdmprinter.def.json
  1978. msgctxt "wall_x_material_flow description"
  1979. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1980. msgstr "En dıştaki duvar hattı hariç diğer duvar hatlarının akış telafisidir."
  1981. #: fdmprinter.def.json
  1982. msgctxt "skin_material_flow label"
  1983. msgid "Top/Bottom Flow"
  1984. msgstr "Üst/Alt Akış"
  1985. #: fdmprinter.def.json
  1986. msgctxt "skin_material_flow description"
  1987. msgid "Flow compensation on top/bottom lines."
  1988. msgstr "Üst/alt hatların akış telafisidir."
  1989. #: fdmprinter.def.json
  1990. msgctxt "roofing_material_flow label"
  1991. msgid "Top Surface Skin Flow"
  1992. msgstr "Üst Yüzeyin Dış Katman Akışı"
  1993. #: fdmprinter.def.json
  1994. msgctxt "roofing_material_flow description"
  1995. msgid "Flow compensation on lines of the areas at the top of the print."
  1996. msgstr "Baskının üst bölümlerindeki hatların akış telafisidir."
  1997. #: fdmprinter.def.json
  1998. msgctxt "infill_material_flow label"
  1999. msgid "Infill Flow"
  2000. msgstr "Dolgu Akışı"
  2001. #: fdmprinter.def.json
  2002. msgctxt "infill_material_flow description"
  2003. msgid "Flow compensation on infill lines."
  2004. msgstr "Dolgu hatlarının akış telafisidir."
  2005. #: fdmprinter.def.json
  2006. msgctxt "skirt_brim_material_flow label"
  2007. msgid "Skirt/Brim Flow"
  2008. msgstr "Etek/Kenar Akışı"
  2009. #: fdmprinter.def.json
  2010. msgctxt "skirt_brim_material_flow description"
  2011. msgid "Flow compensation on skirt or brim lines."
  2012. msgstr "Etek veya kenar hatlarının akış telafisidir."
  2013. #: fdmprinter.def.json
  2014. msgctxt "support_material_flow label"
  2015. msgid "Support Flow"
  2016. msgstr "Destek Akışı"
  2017. #: fdmprinter.def.json
  2018. msgctxt "support_material_flow description"
  2019. msgid "Flow compensation on support structure lines."
  2020. msgstr "Destek yapı hatlarının akış telafisidir."
  2021. #: fdmprinter.def.json
  2022. msgctxt "support_interface_material_flow label"
  2023. msgid "Support Interface Flow"
  2024. msgstr "Destek Ara Yüzeyi Akışı"
  2025. #: fdmprinter.def.json
  2026. msgctxt "support_interface_material_flow description"
  2027. msgid "Flow compensation on lines of support roof or floor."
  2028. msgstr "Destek çatı ve zemin hatlarının akış telafisidir."
  2029. #: fdmprinter.def.json
  2030. msgctxt "support_roof_material_flow label"
  2031. msgid "Support Roof Flow"
  2032. msgstr "Destek Çatı Akışı"
  2033. #: fdmprinter.def.json
  2034. msgctxt "support_roof_material_flow description"
  2035. msgid "Flow compensation on support roof lines."
  2036. msgstr "Destek çatı hatlarının akış telafisidir."
  2037. #: fdmprinter.def.json
  2038. msgctxt "support_bottom_material_flow label"
  2039. msgid "Support Floor Flow"
  2040. msgstr "Destek Zemin Akışı"
  2041. #: fdmprinter.def.json
  2042. msgctxt "support_bottom_material_flow description"
  2043. msgid "Flow compensation on support floor lines."
  2044. msgstr "Destek zemin hatlarının akış telafisidir."
  2045. #: fdmprinter.def.json
  2046. msgctxt "prime_tower_flow label"
  2047. msgid "Prime Tower Flow"
  2048. msgstr "İlk Direk Akışı"
  2049. #: fdmprinter.def.json
  2050. msgctxt "prime_tower_flow description"
  2051. msgid "Flow compensation on prime tower lines."
  2052. msgstr "Temel kule hatlarının akış telafisidir."
  2053. #: fdmprinter.def.json
  2054. msgctxt "material_flow_layer_0 label"
  2055. msgid "Initial Layer Flow"
  2056. msgstr "İlk Katman Akışı"
  2057. #: fdmprinter.def.json
  2058. msgctxt "material_flow_layer_0 description"
  2059. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  2060. msgstr "İlk katman için akış dengelemesi: ilk katmana ekstrude edilen malzeme miktarı bu değerle çarpılır."
  2061. #: fdmprinter.def.json
  2062. msgctxt "material_standby_temperature label"
  2063. msgid "Standby Temperature"
  2064. msgstr "Bekleme Sıcaklığı"
  2065. #: fdmprinter.def.json
  2066. msgctxt "material_standby_temperature description"
  2067. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  2068. msgstr "Yazdırma için başka bir nozül kullanılırken nozülün sıcaklığı."
  2069. #: fdmprinter.def.json
  2070. msgctxt "speed label"
  2071. msgid "Speed"
  2072. msgstr "Hız"
  2073. #: fdmprinter.def.json
  2074. msgctxt "speed description"
  2075. msgid "Speed"
  2076. msgstr "Hız"
  2077. #: fdmprinter.def.json
  2078. msgctxt "speed_print label"
  2079. msgid "Print Speed"
  2080. msgstr "Yazdırma Hızı"
  2081. #: fdmprinter.def.json
  2082. msgctxt "speed_print description"
  2083. msgid "The speed at which printing happens."
  2084. msgstr "Yazdırmanın gerçekleştiği hız."
  2085. #: fdmprinter.def.json
  2086. msgctxt "speed_infill label"
  2087. msgid "Infill Speed"
  2088. msgstr "Dolgu Hızı"
  2089. #: fdmprinter.def.json
  2090. msgctxt "speed_infill description"
  2091. msgid "The speed at which infill is printed."
  2092. msgstr "Dolgunun gerçekleştiği hız."
  2093. #: fdmprinter.def.json
  2094. msgctxt "speed_wall label"
  2095. msgid "Wall Speed"
  2096. msgstr "Duvar Hızı"
  2097. #: fdmprinter.def.json
  2098. msgctxt "speed_wall description"
  2099. msgid "The speed at which the walls are printed."
  2100. msgstr "Duvarların yazdırıldığı hız."
  2101. #: fdmprinter.def.json
  2102. msgctxt "speed_wall_0 label"
  2103. msgid "Outer Wall Speed"
  2104. msgstr "Dış Duvar Hızı"
  2105. #: fdmprinter.def.json
  2106. msgctxt "speed_wall_0 description"
  2107. msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way."
  2108. msgstr "En dış duvarların yazdırıldığı hız. Dış duvarı düşük hızda yazdırmak son yüzey kalitesini artırır. Öte yandan, iç duvar hızı ve dış duvar hızı arasındaki farkın fazla olması kaliteyi olumsuz etkileyecektir."
  2109. #: fdmprinter.def.json
  2110. msgctxt "speed_wall_x label"
  2111. msgid "Inner Wall Speed"
  2112. msgstr "İç Duvar Hızı"
  2113. #: fdmprinter.def.json
  2114. msgctxt "speed_wall_x description"
  2115. msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed."
  2116. msgstr "Tüm iç duvarların yazdırıldığı hız. İç duvarları dış duvarlardan daha hızlı yazdırmak yazdırma süresini azaltacaktır. Bu ayarı dış duvar hızı ve dolgu hızı arasında yapmak faydalı olacaktır."
  2117. #: fdmprinter.def.json
  2118. msgctxt "speed_roofing label"
  2119. msgid "Top Surface Skin Speed"
  2120. msgstr "Üst Yüzey Hızı"
  2121. #: fdmprinter.def.json
  2122. msgctxt "speed_roofing description"
  2123. msgid "The speed at which top surface skin layers are printed."
  2124. msgstr "Üst yüzey katmanların yazdırıldığı hız."
  2125. #: fdmprinter.def.json
  2126. msgctxt "speed_topbottom label"
  2127. msgid "Top/Bottom Speed"
  2128. msgstr "Üst/Alt Hız"
  2129. #: fdmprinter.def.json
  2130. msgctxt "speed_topbottom description"
  2131. msgid "The speed at which top/bottom layers are printed."
  2132. msgstr "Üst/alt katmanların yazdırıldığı hız."
  2133. #: fdmprinter.def.json
  2134. msgctxt "speed_support label"
  2135. msgid "Support Speed"
  2136. msgstr "Destek Hızı"
  2137. #: fdmprinter.def.json
  2138. msgctxt "speed_support description"
  2139. msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing."
  2140. msgstr "Destek yapısının yazdırıldığı hız. Yüksek hızlardaki yazdırma desteği yazdırma süresini büyük oranda azaltabilir. Destek yapısının yüzey kalitesi, yazdırma işleminden sonra çıkartıldığı için önemli değildir."
  2141. #: fdmprinter.def.json
  2142. msgctxt "speed_support_infill label"
  2143. msgid "Support Infill Speed"
  2144. msgstr "Destek Dolgu Hızı"
  2145. #: fdmprinter.def.json
  2146. msgctxt "speed_support_infill description"
  2147. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  2148. msgstr "Dolgu desteğinin yazdırıldığı hız. Dolguyu daha düşük hızlarda yazdırmak sağlamlığı artırır."
  2149. #: fdmprinter.def.json
  2150. msgctxt "speed_support_interface label"
  2151. msgid "Support Interface Speed"
  2152. msgstr "Destek Arayüzü Hızı"
  2153. #: fdmprinter.def.json
  2154. msgctxt "speed_support_interface description"
  2155. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  2156. msgstr "Destek çatıları ve zeminlerinin yazdırılma hızı. Daha düşük hızlarda yazdırma, askıda kalan kısımların kalitesini iyileştirebilir."
  2157. #: fdmprinter.def.json
  2158. msgctxt "speed_support_roof label"
  2159. msgid "Support Roof Speed"
  2160. msgstr "Destek Çatısı Hızı"
  2161. #: fdmprinter.def.json
  2162. msgctxt "speed_support_roof description"
  2163. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  2164. msgstr "Destek çatısının yazdırılma hızı. Daha düşük hızlarda yazdırma, askıda kalan kısımların kalitesini iyileştirebilir."
  2165. #: fdmprinter.def.json
  2166. msgctxt "speed_support_bottom label"
  2167. msgid "Support Floor Speed"
  2168. msgstr "Destek Zemini Hızı"
  2169. #: fdmprinter.def.json
  2170. msgctxt "speed_support_bottom description"
  2171. msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model."
  2172. msgstr "Destek zemininin yazdırılma hızı. Daha düşük hızlarda yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir."
  2173. #: fdmprinter.def.json
  2174. msgctxt "speed_prime_tower label"
  2175. msgid "Prime Tower Speed"
  2176. msgstr "İlk Direk Hızı"
  2177. #: fdmprinter.def.json
  2178. msgctxt "speed_prime_tower description"
  2179. msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal."
  2180. msgstr "İlk direğin yazdırıldığı hız. Farklı filamanlar arasındaki yapışma standardın altında olduğunda, ilk direği daha yavaş yazdırmak dayanıklılığı artırabilir."
  2181. #: fdmprinter.def.json
  2182. msgctxt "speed_travel label"
  2183. msgid "Travel Speed"
  2184. msgstr "Hareket Hızı"
  2185. #: fdmprinter.def.json
  2186. msgctxt "speed_travel description"
  2187. msgid "The speed at which travel moves are made."
  2188. msgstr "Hareket hamlelerinin hızı."
  2189. #: fdmprinter.def.json
  2190. msgctxt "speed_layer_0 label"
  2191. msgid "Initial Layer Speed"
  2192. msgstr "İlk Katman Hızı"
  2193. #: fdmprinter.def.json
  2194. msgctxt "speed_layer_0 description"
  2195. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft."
  2196. msgstr "İlk katman için hız. Yapı plakasında yapışmayı iyileştirmek için düşük bir değer tavsiye edilir. Yapı plakasının kenar ve radye gibi yapışma yapılarını etkilemez."
  2197. #: fdmprinter.def.json
  2198. msgctxt "speed_print_layer_0 label"
  2199. msgid "Initial Layer Print Speed"
  2200. msgstr "İlk Katman Yazdırma Hızı"
  2201. #: fdmprinter.def.json
  2202. msgctxt "speed_print_layer_0 description"
  2203. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  2204. msgstr "İlk katmanın yazdırılması için belirlenen hız. Yapı tahtasına yapışmayı artırmak için daha düşük bir değer önerilmektedir."
  2205. #: fdmprinter.def.json
  2206. msgctxt "speed_travel_layer_0 label"
  2207. msgid "Initial Layer Travel Speed"
  2208. msgstr "İlk Katman Hareket Hızı"
  2209. #: fdmprinter.def.json
  2210. msgctxt "speed_travel_layer_0 description"
  2211. msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed."
  2212. msgstr "İlk katmandaki hareket hamlelerinin hızı. Daha önce yazdırılan bölümlerin yapı levhasından ayrılmasını önlemek için daha düşük bir değer kullanılması önerilir. Bu ayar değeri, Hareket Hızı ve Yazdırma Hızı arasındaki orana göre otomatik olarak hesaplanabilir."
  2213. #: fdmprinter.def.json
  2214. msgctxt "skirt_brim_speed label"
  2215. msgid "Skirt/Brim Speed"
  2216. msgstr "Etek/Kenar Hızı"
  2217. #: fdmprinter.def.json
  2218. msgctxt "skirt_brim_speed description"
  2219. msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed."
  2220. msgstr "Etek ve kenarın yazdırıldığı hız. Bu işlem normalde ilk katman hızında yapılır, ama etek ve kenarı farklı hızlarda yazdırmak isteyebilirsiniz."
  2221. #: fdmprinter.def.json
  2222. msgctxt "speed_z_hop label"
  2223. msgid "Z Hop Speed"
  2224. msgstr "Z Atlama Hızı"
  2225. #: fdmprinter.def.json
  2226. msgctxt "speed_z_hop description"
  2227. msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move."
  2228. msgstr "Z Atlamaları için yapılan dikey Z hareketinin gerçekleştirileceği hızdır. Yapı plakasının veya makine tezgahının hareket etmesi daha zor olduğundan genelde baskı hızından daha düşüktür."
  2229. #: fdmprinter.def.json
  2230. msgctxt "speed_slowdown_layers label"
  2231. msgid "Number of Slower Layers"
  2232. msgstr "Daha Yavaş Katman Sayısı"
  2233. #: fdmprinter.def.json
  2234. msgctxt "speed_slowdown_layers description"
  2235. msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers."
  2236. msgstr "Yapı levhasına daha iyi yapışma sağlamak ve yazdırmanın genel başarı oranını artırmak için ilk birkaç katman modelin kalan kısmından daha yavaş yazdırılır. Bu hız katmanlar üzerinde giderek artar."
  2237. #: fdmprinter.def.json
  2238. msgctxt "speed_equalize_flow_width_factor label"
  2239. msgid "Flow Equalization Ratio"
  2240. msgstr "Akış Eşitleme Oranı"
  2241. #: fdmprinter.def.json
  2242. msgctxt "speed_equalize_flow_width_factor description"
  2243. msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines."
  2244. msgstr "Hız için ekstrüzyon genişliği bazlı düzeltme faktörüdür. %0 değerinde hareket hızı Baskı Hızında sabit tutulur. %100 değerinde ise hareket hızı akış (mm³/s cinsinden) sabit tutulacak şekilde ayarlanır, yani normal Hat Genişliğinin yarısı iki kat daha hızlı basılır ve hatlar iki kat daha hızlı basılır. %100'den büyük değerler belirlenmesi, geniş hatların ekstrüde edilmesi için gereken yüksek basıncın telafi edilmesine yardımcı olabilir."
  2245. #: fdmprinter.def.json
  2246. msgctxt "acceleration_enabled label"
  2247. msgid "Enable Acceleration Control"
  2248. msgstr "İvme Kontrolünü Etkinleştir"
  2249. #: fdmprinter.def.json
  2250. msgctxt "acceleration_enabled description"
  2251. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  2252. msgstr "Yazıcı başlığı ivmesinin ayarlanmasını sağlar. İvmeleri artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir."
  2253. #: fdmprinter.def.json
  2254. msgctxt "acceleration_travel_enabled label"
  2255. msgid "Enable Travel Acceleration"
  2256. msgstr ""
  2257. #: fdmprinter.def.json
  2258. msgctxt "acceleration_travel_enabled description"
  2259. msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination."
  2260. msgstr ""
  2261. #: fdmprinter.def.json
  2262. msgctxt "acceleration_print label"
  2263. msgid "Print Acceleration"
  2264. msgstr "Yazdırma İvmesi"
  2265. #: fdmprinter.def.json
  2266. msgctxt "acceleration_print description"
  2267. msgid "The acceleration with which printing happens."
  2268. msgstr "Yazdırmanın gerçekleştiği ivme."
  2269. #: fdmprinter.def.json
  2270. msgctxt "acceleration_infill label"
  2271. msgid "Infill Acceleration"
  2272. msgstr "Dolgu İvmesi"
  2273. #: fdmprinter.def.json
  2274. msgctxt "acceleration_infill description"
  2275. msgid "The acceleration with which infill is printed."
  2276. msgstr "Dolgunun yazdırıldığı ivme."
  2277. #: fdmprinter.def.json
  2278. msgctxt "acceleration_wall label"
  2279. msgid "Wall Acceleration"
  2280. msgstr "Duvar İvmesi"
  2281. #: fdmprinter.def.json
  2282. msgctxt "acceleration_wall description"
  2283. msgid "The acceleration with which the walls are printed."
  2284. msgstr "Duvarların yazdırıldığı ivme."
  2285. #: fdmprinter.def.json
  2286. msgctxt "acceleration_wall_0 label"
  2287. msgid "Outer Wall Acceleration"
  2288. msgstr "Dış Duvar İvmesi"
  2289. #: fdmprinter.def.json
  2290. msgctxt "acceleration_wall_0 description"
  2291. msgid "The acceleration with which the outermost walls are printed."
  2292. msgstr "En dış duvarların yazdırıldığı ivme."
  2293. #: fdmprinter.def.json
  2294. msgctxt "acceleration_wall_x label"
  2295. msgid "Inner Wall Acceleration"
  2296. msgstr "İç Duvar İvmesi"
  2297. #: fdmprinter.def.json
  2298. msgctxt "acceleration_wall_x description"
  2299. msgid "The acceleration with which all inner walls are printed."
  2300. msgstr "İç duvarların yazdırıldığı ivme."
  2301. #: fdmprinter.def.json
  2302. msgctxt "acceleration_roofing label"
  2303. msgid "Top Surface Skin Acceleration"
  2304. msgstr "Üst Yüzey İvmesi"
  2305. #: fdmprinter.def.json
  2306. msgctxt "acceleration_roofing description"
  2307. msgid "The acceleration with which top surface skin layers are printed."
  2308. msgstr "Üst yüzey katmanların yazdırıldığı ivme."
  2309. #: fdmprinter.def.json
  2310. msgctxt "acceleration_topbottom label"
  2311. msgid "Top/Bottom Acceleration"
  2312. msgstr "Üst/Alt İvme"
  2313. #: fdmprinter.def.json
  2314. msgctxt "acceleration_topbottom description"
  2315. msgid "The acceleration with which top/bottom layers are printed."
  2316. msgstr "Üst/alt katmanların yazdırıldığı ivme."
  2317. #: fdmprinter.def.json
  2318. msgctxt "acceleration_support label"
  2319. msgid "Support Acceleration"
  2320. msgstr "Destek İvmesi"
  2321. #: fdmprinter.def.json
  2322. msgctxt "acceleration_support description"
  2323. msgid "The acceleration with which the support structure is printed."
  2324. msgstr "Destek yapısının yazdırıldığı ivme."
  2325. #: fdmprinter.def.json
  2326. msgctxt "acceleration_support_infill label"
  2327. msgid "Support Infill Acceleration"
  2328. msgstr "Destek Dolgusu İvmesi"
  2329. #: fdmprinter.def.json
  2330. msgctxt "acceleration_support_infill description"
  2331. msgid "The acceleration with which the infill of support is printed."
  2332. msgstr "Destek dolgusunun yazdırıldığı ivme."
  2333. #: fdmprinter.def.json
  2334. msgctxt "acceleration_support_interface label"
  2335. msgid "Support Interface Acceleration"
  2336. msgstr "Destek Arayüzü İvmesi"
  2337. #: fdmprinter.def.json
  2338. msgctxt "acceleration_support_interface description"
  2339. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  2340. msgstr "Destek çatıları ve zeminlerinin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, askıda kalan kısımların kalitesini iyileştirebilir."
  2341. #: fdmprinter.def.json
  2342. msgctxt "acceleration_support_roof label"
  2343. msgid "Support Roof Acceleration"
  2344. msgstr "Destek Çatısı İvmesi"
  2345. #: fdmprinter.def.json
  2346. msgctxt "acceleration_support_roof description"
  2347. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  2348. msgstr "Destek çatısının yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, askıda kalan kısımların kalitesini iyileştirebilir."
  2349. #: fdmprinter.def.json
  2350. msgctxt "acceleration_support_bottom label"
  2351. msgid "Support Floor Acceleration"
  2352. msgstr "Destek Zemini İvmesi"
  2353. #: fdmprinter.def.json
  2354. msgctxt "acceleration_support_bottom description"
  2355. msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model."
  2356. msgstr "Destek zemininin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir."
  2357. #: fdmprinter.def.json
  2358. msgctxt "acceleration_prime_tower label"
  2359. msgid "Prime Tower Acceleration"
  2360. msgstr "İlk Direk İvmesi"
  2361. #: fdmprinter.def.json
  2362. msgctxt "acceleration_prime_tower description"
  2363. msgid "The acceleration with which the prime tower is printed."
  2364. msgstr "İlk direğin yazdırıldığı ivme."
  2365. #: fdmprinter.def.json
  2366. msgctxt "acceleration_travel label"
  2367. msgid "Travel Acceleration"
  2368. msgstr "Hareket İvmesi"
  2369. #: fdmprinter.def.json
  2370. msgctxt "acceleration_travel description"
  2371. msgid "The acceleration with which travel moves are made."
  2372. msgstr "Hareket hamlelerinin ivmesi."
  2373. #: fdmprinter.def.json
  2374. msgctxt "acceleration_layer_0 label"
  2375. msgid "Initial Layer Acceleration"
  2376. msgstr "İlk Katman İvmesi"
  2377. #: fdmprinter.def.json
  2378. msgctxt "acceleration_layer_0 description"
  2379. msgid "The acceleration for the initial layer."
  2380. msgstr "İlk katman için belirlenen ivme."
  2381. #: fdmprinter.def.json
  2382. msgctxt "acceleration_print_layer_0 label"
  2383. msgid "Initial Layer Print Acceleration"
  2384. msgstr "İlk Katman Yazdırma İvmesi"
  2385. #: fdmprinter.def.json
  2386. msgctxt "acceleration_print_layer_0 description"
  2387. msgid "The acceleration during the printing of the initial layer."
  2388. msgstr "İlk katmanın yazdırıldığı ivme."
  2389. #: fdmprinter.def.json
  2390. msgctxt "acceleration_travel_layer_0 label"
  2391. msgid "Initial Layer Travel Acceleration"
  2392. msgstr "İlk Katman Hareket İvmesi"
  2393. #: fdmprinter.def.json
  2394. msgctxt "acceleration_travel_layer_0 description"
  2395. msgid "The acceleration for travel moves in the initial layer."
  2396. msgstr "İlk katmandaki hareket hamlelerinin ivmesi."
  2397. #: fdmprinter.def.json
  2398. msgctxt "acceleration_skirt_brim label"
  2399. msgid "Skirt/Brim Acceleration"
  2400. msgstr "Etek/Kenar İvmesi"
  2401. #: fdmprinter.def.json
  2402. msgctxt "acceleration_skirt_brim description"
  2403. msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration."
  2404. msgstr "Etek ve kenarın yazdırıldığı ivme. Bu işlem normalde ilk katman ivmesi ile yapılır, ama etek ve kenarı farklı bir ivmede yazdırmak isteyebilirsiniz."
  2405. #: fdmprinter.def.json
  2406. msgctxt "jerk_enabled label"
  2407. msgid "Enable Jerk Control"
  2408. msgstr "Salınım Kontrolünü Etkinleştir"
  2409. #: fdmprinter.def.json
  2410. msgctxt "jerk_enabled description"
  2411. msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality."
  2412. msgstr "X veya Y eksenlerindeki hareket hızı değiştiğinde yazıcı başlığının salınımının ayarlanmasını sağlar. Salınımı artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir."
  2413. #: fdmprinter.def.json
  2414. msgctxt "jerk_travel_enabled label"
  2415. msgid "Enable Travel Jerk"
  2416. msgstr ""
  2417. #: fdmprinter.def.json
  2418. msgctxt "jerk_travel_enabled description"
  2419. msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination."
  2420. msgstr ""
  2421. #: fdmprinter.def.json
  2422. msgctxt "jerk_print label"
  2423. msgid "Print Jerk"
  2424. msgstr "Yazdırma İvmesi Değişimi"
  2425. #: fdmprinter.def.json
  2426. msgctxt "jerk_print description"
  2427. msgid "The maximum instantaneous velocity change of the print head."
  2428. msgstr "Yazıcı başlığının maksimum anlık hız değişimi."
  2429. #: fdmprinter.def.json
  2430. msgctxt "jerk_infill label"
  2431. msgid "Infill Jerk"
  2432. msgstr "Dolgu Salınımı"
  2433. #: fdmprinter.def.json
  2434. msgctxt "jerk_infill description"
  2435. msgid "The maximum instantaneous velocity change with which infill is printed."
  2436. msgstr "Dolgunun yazdırıldığı maksimum anlık hız değişimi."
  2437. #: fdmprinter.def.json
  2438. msgctxt "jerk_wall label"
  2439. msgid "Wall Jerk"
  2440. msgstr "Duvar Salınımı"
  2441. #: fdmprinter.def.json
  2442. msgctxt "jerk_wall description"
  2443. msgid "The maximum instantaneous velocity change with which the walls are printed."
  2444. msgstr "Duvarların yazdırıldığı maksimum anlık hız değişimi."
  2445. #: fdmprinter.def.json
  2446. msgctxt "jerk_wall_0 label"
  2447. msgid "Outer Wall Jerk"
  2448. msgstr "Dış Duvar Salınımı"
  2449. #: fdmprinter.def.json
  2450. msgctxt "jerk_wall_0 description"
  2451. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  2452. msgstr "En dıştaki duvarların yazdırıldığı maksimum anlık hız değişimi."
  2453. #: fdmprinter.def.json
  2454. msgctxt "jerk_wall_x label"
  2455. msgid "Inner Wall Jerk"
  2456. msgstr "İç Duvar Salınımı"
  2457. #: fdmprinter.def.json
  2458. msgctxt "jerk_wall_x description"
  2459. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  2460. msgstr "Tüm iç duvarların yazdırıldığı maksimum anlık hız değişimi."
  2461. #: fdmprinter.def.json
  2462. msgctxt "jerk_roofing label"
  2463. msgid "Top Surface Skin Jerk"
  2464. msgstr "Üst Yüzey İvmesi Değişimi"
  2465. #: fdmprinter.def.json
  2466. msgctxt "jerk_roofing description"
  2467. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  2468. msgstr "Üst yüzey katmanların yazdırıldığı maksimum anlık hız değişimi."
  2469. #: fdmprinter.def.json
  2470. msgctxt "jerk_topbottom label"
  2471. msgid "Top/Bottom Jerk"
  2472. msgstr "Üst/Alt Salınımı"
  2473. #: fdmprinter.def.json
  2474. msgctxt "jerk_topbottom description"
  2475. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  2476. msgstr "Üst/alt katmanların yazdırıldığı maksimum anlık hız değişimi."
  2477. #: fdmprinter.def.json
  2478. msgctxt "jerk_support label"
  2479. msgid "Support Jerk"
  2480. msgstr "Destek Salınımı"
  2481. #: fdmprinter.def.json
  2482. msgctxt "jerk_support description"
  2483. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  2484. msgstr "Destek yapısının yazdırıldığı maksimum anlık hız değişimi."
  2485. #: fdmprinter.def.json
  2486. msgctxt "jerk_support_infill label"
  2487. msgid "Support Infill Jerk"
  2488. msgstr "Destek Dolgu İvmesi Değişimi"
  2489. #: fdmprinter.def.json
  2490. msgctxt "jerk_support_infill description"
  2491. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  2492. msgstr "Desteğin dolgusunun yazdırıldığı maksimum anlık hız değişimi."
  2493. #: fdmprinter.def.json
  2494. msgctxt "jerk_support_interface label"
  2495. msgid "Support Interface Jerk"
  2496. msgstr "Destek Arayüz Salınımı"
  2497. #: fdmprinter.def.json
  2498. msgctxt "jerk_support_interface description"
  2499. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  2500. msgstr "Desteğin çatıları ve zeminlerinin yazdırıldığı maksimum anlık hız değişimi."
  2501. #: fdmprinter.def.json
  2502. msgctxt "jerk_support_roof label"
  2503. msgid "Support Roof Jerk"
  2504. msgstr "Destek Çatısı Sarsıntısı"
  2505. #: fdmprinter.def.json
  2506. msgctxt "jerk_support_roof description"
  2507. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  2508. msgstr "Desteğin çatılarının yazdırıldığı maksimum anlık hız değişimi."
  2509. #: fdmprinter.def.json
  2510. msgctxt "jerk_support_bottom label"
  2511. msgid "Support Floor Jerk"
  2512. msgstr "Destek Zemini Sarsıntısı"
  2513. #: fdmprinter.def.json
  2514. msgctxt "jerk_support_bottom description"
  2515. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  2516. msgstr "Desteğin zeminlerinin yazdırıldığı maksimum anlık hız değişimi."
  2517. #: fdmprinter.def.json
  2518. msgctxt "jerk_prime_tower label"
  2519. msgid "Prime Tower Jerk"
  2520. msgstr "İlk Direk Salınımı"
  2521. #: fdmprinter.def.json
  2522. msgctxt "jerk_prime_tower description"
  2523. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  2524. msgstr "İlk direğin yazdırıldığı maksimum anlık hız değişimi."
  2525. #: fdmprinter.def.json
  2526. msgctxt "jerk_travel label"
  2527. msgid "Travel Jerk"
  2528. msgstr "Hareket Salınımı"
  2529. #: fdmprinter.def.json
  2530. msgctxt "jerk_travel description"
  2531. msgid "The maximum instantaneous velocity change with which travel moves are made."
  2532. msgstr "Hareket hamlelerinin yapıldığı maksimum anlık hız değişimi."
  2533. #: fdmprinter.def.json
  2534. msgctxt "jerk_layer_0 label"
  2535. msgid "Initial Layer Jerk"
  2536. msgstr "İlk Katman Salınımı"
  2537. #: fdmprinter.def.json
  2538. msgctxt "jerk_layer_0 description"
  2539. msgid "The print maximum instantaneous velocity change for the initial layer."
  2540. msgstr "İlk katman için maksimum anlık yazdırma hızı değişimi."
  2541. #: fdmprinter.def.json
  2542. msgctxt "jerk_print_layer_0 label"
  2543. msgid "Initial Layer Print Jerk"
  2544. msgstr "İlk Katman Yazdırma Salınımı"
  2545. #: fdmprinter.def.json
  2546. msgctxt "jerk_print_layer_0 description"
  2547. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  2548. msgstr "İlk katmanın yazdırıldığı maksimum anlık yazdırma hızı değişimi."
  2549. #: fdmprinter.def.json
  2550. msgctxt "jerk_travel_layer_0 label"
  2551. msgid "Initial Layer Travel Jerk"
  2552. msgstr "İlk Katman Hareket Salınımı"
  2553. #: fdmprinter.def.json
  2554. msgctxt "jerk_travel_layer_0 description"
  2555. msgid "The acceleration for travel moves in the initial layer."
  2556. msgstr "İlk katmandaki hareket hamlelerinin ivmesi."
  2557. #: fdmprinter.def.json
  2558. msgctxt "jerk_skirt_brim label"
  2559. msgid "Skirt/Brim Jerk"
  2560. msgstr "Etek/Kenar İvmesi Değişimi"
  2561. #: fdmprinter.def.json
  2562. msgctxt "jerk_skirt_brim description"
  2563. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  2564. msgstr "Etek ve kenarların yazdırıldığı maksimum anlık hız değişimi."
  2565. #: fdmprinter.def.json
  2566. msgctxt "travel label"
  2567. msgid "Travel"
  2568. msgstr "Hareket"
  2569. #: fdmprinter.def.json
  2570. msgctxt "travel description"
  2571. msgid "travel"
  2572. msgstr "hareket"
  2573. #: fdmprinter.def.json
  2574. msgctxt "retraction_enable label"
  2575. msgid "Enable Retraction"
  2576. msgstr "Geri Çekmeyi Etkinleştir"
  2577. #: fdmprinter.def.json
  2578. msgctxt "retraction_enable description"
  2579. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2580. msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker."
  2581. #: fdmprinter.def.json
  2582. msgctxt "retract_at_layer_change label"
  2583. msgid "Retract at Layer Change"
  2584. msgstr "Katman Değişimindeki Geri Çekme"
  2585. #: fdmprinter.def.json
  2586. msgctxt "retract_at_layer_change description"
  2587. msgid "Retract the filament when the nozzle is moving to the next layer."
  2588. msgstr "Nozül bir sonraki katmana doğru hareket ettiğinde filamanı geri çekin."
  2589. #: fdmprinter.def.json
  2590. msgctxt "retraction_amount label"
  2591. msgid "Retraction Distance"
  2592. msgstr "Geri Çekme Mesafesi"
  2593. #: fdmprinter.def.json
  2594. msgctxt "retraction_amount description"
  2595. msgid "The length of material retracted during a retraction move."
  2596. msgstr "Geri çekme hareketi sırasında geri çekilen malzemenin uzunluğu."
  2597. #: fdmprinter.def.json
  2598. msgctxt "retraction_speed label"
  2599. msgid "Retraction Speed"
  2600. msgstr "Geri Çekme Hızı"
  2601. #: fdmprinter.def.json
  2602. msgctxt "retraction_speed description"
  2603. msgid "The speed at which the filament is retracted and primed during a retraction move."
  2604. msgstr "Filamanın geri çekildiği ve geri çekme hareketi sırasında astarlandığı hız."
  2605. #: fdmprinter.def.json
  2606. msgctxt "retraction_retract_speed label"
  2607. msgid "Retraction Retract Speed"
  2608. msgstr "Geri Çekme Sırasındaki Çekim Hızı"
  2609. #: fdmprinter.def.json
  2610. msgctxt "retraction_retract_speed description"
  2611. msgid "The speed at which the filament is retracted during a retraction move."
  2612. msgstr "Filamanın geri çekme hareketi sırasında geri çekildiği hız."
  2613. #: fdmprinter.def.json
  2614. msgctxt "retraction_prime_speed label"
  2615. msgid "Retraction Prime Speed"
  2616. msgstr "Geri Çekme Sırasındaki Astar Hızı"
  2617. #: fdmprinter.def.json
  2618. msgctxt "retraction_prime_speed description"
  2619. msgid "The speed at which the filament is primed during a retraction move."
  2620. msgstr "Filamanın geri çekme hareketi sırasında astarlandığı hız."
  2621. #: fdmprinter.def.json
  2622. msgctxt "retraction_extra_prime_amount label"
  2623. msgid "Retraction Extra Prime Amount"
  2624. msgstr "Geri Çekme Sırasındaki İlave Astar Miktarı"
  2625. #: fdmprinter.def.json
  2626. msgctxt "retraction_extra_prime_amount description"
  2627. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2628. msgstr "Hareket sırasında bazı malzemeler eksilebilir, bu malzemeler burada telafi edebilir."
  2629. #: fdmprinter.def.json
  2630. msgctxt "retraction_min_travel label"
  2631. msgid "Retraction Minimum Travel"
  2632. msgstr "Minimum Geri Çekme Hareketi"
  2633. #: fdmprinter.def.json
  2634. msgctxt "retraction_min_travel description"
  2635. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  2636. msgstr "Geri çekme işleminin yapılması için gerekli olan minimum hareket mesafesi. Küçük bir alanda daha az geri çekme işlemi yapılmasına yardımcı olur."
  2637. #: fdmprinter.def.json
  2638. msgctxt "retraction_count_max label"
  2639. msgid "Maximum Retraction Count"
  2640. msgstr "Maksimum Geri Çekme Sayısı"
  2641. #: fdmprinter.def.json
  2642. msgctxt "retraction_count_max description"
  2643. msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
  2644. msgstr "Bu ayar, düşük ekstrüzyon mesafesi penceresinde oluşan ekstrüzyon sayısını sınırlandırır. Bu penceredeki geri çekmeler yok sayılacaktır. Filamanı düzleştirebildiği ve aşındırma sorunlarına yol açabileceği için aynı filaman parçası üzerinde tekrar tekrar geri çekme yapılmasını önler."
  2645. #: fdmprinter.def.json
  2646. msgctxt "retraction_extrusion_window label"
  2647. msgid "Minimum Extrusion Distance Window"
  2648. msgstr "Minimum Geri Çekme Mesafesi Penceresi"
  2649. #: fdmprinter.def.json
  2650. msgctxt "retraction_extrusion_window description"
  2651. msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
  2652. msgstr "Maksimum geri çekme sayısının uygulandığı pencere. Bu değer, geri çekme mesafesi ile hemen hemen aynıdır, bu şekilde geri çekmenin aynı malzeme yolundan geçme sayısı etkin olarak sınırlandırılır."
  2653. #: fdmprinter.def.json
  2654. msgctxt "limit_support_retractions label"
  2655. msgid "Limit Support Retractions"
  2656. msgstr "Destek Geri Çekmelerini Sınırlandır"
  2657. #: fdmprinter.def.json
  2658. msgctxt "limit_support_retractions description"
  2659. msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
  2660. msgstr "Düz hat üzerinde destekler arasında hareket ederken geri çekmeyi atlayın. Bu ayarın etkinleştirilmesi baskı süresini kısaltır ancak destek yapısında ölçüsüz dizilime yol açabilir."
  2661. #: fdmprinter.def.json
  2662. msgctxt "retraction_combing label"
  2663. msgid "Combing Mode"
  2664. msgstr "Tarama Modu"
  2665. #: fdmprinter.def.json
  2666. msgctxt "retraction_combing description"
  2667. msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill."
  2668. msgstr "Tarama, hareket sırasında nozülü daha önce yazdırılmış alanlarda tutar. Bu durum hareketleri biraz uzatır ancak geri çekme ihtiyacını azaltır. Tarama kapalıysa malzeme geri çekilecektir, nozül ise bir sonraki noktaya düz bir çizgi üzerinden gider. Üst/alt yüzey alanlarının üzerinde tarama yapılmayabilir veya sadece dolgu içerisinde tarama yapılabilir."
  2669. #: fdmprinter.def.json
  2670. msgctxt "retraction_combing option off"
  2671. msgid "Off"
  2672. msgstr "Kapalı"
  2673. #: fdmprinter.def.json
  2674. msgctxt "retraction_combing option all"
  2675. msgid "All"
  2676. msgstr "Tümü"
  2677. #: fdmprinter.def.json
  2678. msgctxt "retraction_combing option no_outer_surfaces"
  2679. msgid "Not on Outer Surface"
  2680. msgstr "Dış Yüzeyde Değil"
  2681. #: fdmprinter.def.json
  2682. msgctxt "retraction_combing option noskin"
  2683. msgid "Not in Skin"
  2684. msgstr "Yüzey Alanında Değil"
  2685. #: fdmprinter.def.json
  2686. msgctxt "retraction_combing option infill"
  2687. msgid "Within Infill"
  2688. msgstr "Dolgu İçinde"
  2689. #: fdmprinter.def.json
  2690. msgctxt "retraction_combing_max_distance label"
  2691. msgid "Max Comb Distance With No Retract"
  2692. msgstr "Geri Çekmesiz Maks. Tarama Mesafesi"
  2693. #: fdmprinter.def.json
  2694. msgctxt "retraction_combing_max_distance description"
  2695. msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
  2696. msgstr "Sıfırdan büyük olduğunda, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır. Sıfıra ayarlandığında, bir maksimum belirlenmez ve tarama hareketlerinde geri çekme kullanılmaz."
  2697. #: fdmprinter.def.json
  2698. msgctxt "travel_retract_before_outer_wall label"
  2699. msgid "Retract Before Outer Wall"
  2700. msgstr "Dış Duvardan Önce Geri Çek"
  2701. #: fdmprinter.def.json
  2702. msgctxt "travel_retract_before_outer_wall description"
  2703. msgid "Always retract when moving to start an outer wall."
  2704. msgstr "Dış duvar başlatmaya giderken her zaman geri çeker."
  2705. #: fdmprinter.def.json
  2706. msgctxt "travel_avoid_other_parts label"
  2707. msgid "Avoid Printed Parts When Traveling"
  2708. msgstr "Hareket Sırasında Yazdırılan Bölümleri Atlama"
  2709. #: fdmprinter.def.json
  2710. msgctxt "travel_avoid_other_parts description"
  2711. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  2712. msgstr "Nozül hareket esnasında daha önce yazdırılmış bölümleri atlar. Bu seçenek sadece tarama etkinleştirildiğinde kullanılabilir."
  2713. #: fdmprinter.def.json
  2714. msgctxt "travel_avoid_supports label"
  2715. msgid "Avoid Supports When Traveling"
  2716. msgstr "Hareket Sırasında Destekleri Atla"
  2717. #: fdmprinter.def.json
  2718. msgctxt "travel_avoid_supports description"
  2719. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  2720. msgstr "Nozül hareket ederken önceden yazdırılmış destekleri atlar. Bu seçenek yalnızca tarama etkin olduğunda kullanılabilir."
  2721. #: fdmprinter.def.json
  2722. msgctxt "travel_avoid_distance label"
  2723. msgid "Travel Avoid Distance"
  2724. msgstr "Hareket Atlama Mesafesi"
  2725. #: fdmprinter.def.json
  2726. msgctxt "travel_avoid_distance description"
  2727. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2728. msgstr "Hareket esnasında atlama yaparken nozül ve daha önce yazdırılmış olan bölümler arasındaki mesafe."
  2729. #: fdmprinter.def.json
  2730. msgctxt "layer_start_x label"
  2731. msgid "Layer Start X"
  2732. msgstr "Katman Başlangıcı X"
  2733. #: fdmprinter.def.json
  2734. msgctxt "layer_start_x description"
  2735. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2736. msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun X koordinatı."
  2737. #: fdmprinter.def.json
  2738. msgctxt "layer_start_y label"
  2739. msgid "Layer Start Y"
  2740. msgstr "Katman Başlangıcı Y"
  2741. #: fdmprinter.def.json
  2742. msgctxt "layer_start_y description"
  2743. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2744. msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun Y koordinatı."
  2745. #: fdmprinter.def.json
  2746. msgctxt "retraction_hop_enabled label"
  2747. msgid "Z Hop When Retracted"
  2748. msgstr "Geri Çekildiğinde Z Sıçraması"
  2749. #: fdmprinter.def.json
  2750. msgctxt "retraction_hop_enabled description"
  2751. msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  2752. msgstr "Geri çekme her yapıldığında, nozül ve baskı arasında açıklık oluşturmak için yapı levhası indirilir. Yapı levhasından baskıya çarpma şansını azaltarak nozülün hareket sırasında baskıya değmesini önler."
  2753. #: fdmprinter.def.json
  2754. msgctxt "retraction_hop_only_when_collides label"
  2755. msgid "Z Hop Only Over Printed Parts"
  2756. msgstr "Sadece Yazdırılan Parçalar Üzerindeki Z Sıçraması"
  2757. #: fdmprinter.def.json
  2758. msgctxt "retraction_hop_only_when_collides description"
  2759. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2760. msgstr "Sadece Hareket Sırasında Yazdırılan Bölümleri Atlama yoluyla yatay hareket sayesinde atlanamayan yazdırılmış parçalar üzerinde hareket ederken Z Sıçramasını gerçekleştirin."
  2761. #: fdmprinter.def.json
  2762. msgctxt "retraction_hop label"
  2763. msgid "Z Hop Height"
  2764. msgstr "Z Sıçraması Yüksekliği"
  2765. #: fdmprinter.def.json
  2766. msgctxt "retraction_hop description"
  2767. msgid "The height difference when performing a Z Hop."
  2768. msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı."
  2769. #: fdmprinter.def.json
  2770. msgctxt "retraction_hop_after_extruder_switch label"
  2771. msgid "Z Hop After Extruder Switch"
  2772. msgstr "Ekstruder Değişimi Sonrasındaki Z Sıçraması"
  2773. #: fdmprinter.def.json
  2774. msgctxt "retraction_hop_after_extruder_switch description"
  2775. msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print."
  2776. msgstr "Makine bir ekstruderden diğerine geçtikten sonra, nozül ve baskı arasında açıklık oluşması için yapı levhası indirilir. Nozülün baskı dışına malzeme sızdırmasını önler."
  2777. #: fdmprinter.def.json
  2778. msgctxt "retraction_hop_after_extruder_switch_height label"
  2779. msgid "Z Hop After Extruder Switch Height"
  2780. msgstr "Ekstruder Yüksekliği Değişimi Sonrasındaki Z Sıçraması"
  2781. #: fdmprinter.def.json
  2782. msgctxt "retraction_hop_after_extruder_switch_height description"
  2783. msgid "The height difference when performing a Z Hop after extruder switch."
  2784. msgstr "Ekstruder değişiminden sonra Z Sıçraması yapılırken oluşan yükseklik farkı."
  2785. #: fdmprinter.def.json
  2786. msgctxt "cooling label"
  2787. msgid "Cooling"
  2788. msgstr "Soğuma"
  2789. #: fdmprinter.def.json
  2790. msgctxt "cooling description"
  2791. msgid "Cooling"
  2792. msgstr "Soğuma"
  2793. #: fdmprinter.def.json
  2794. msgctxt "cool_fan_enabled label"
  2795. msgid "Enable Print Cooling"
  2796. msgstr "Yazdırma Soğutmayı Etkinleştir"
  2797. #: fdmprinter.def.json
  2798. msgctxt "cool_fan_enabled description"
  2799. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  2800. msgstr "Yazdırma sırasında yazdırma soğutma fanlarını etkinleştirir. Fanlar, katman süresi kısa olan katmanlar ve kemerlerde/çıkıntılarda yazdırma kalitesini artırır."
  2801. #: fdmprinter.def.json
  2802. msgctxt "cool_fan_speed label"
  2803. msgid "Fan Speed"
  2804. msgstr "Fan Hızı"
  2805. #: fdmprinter.def.json
  2806. msgctxt "cool_fan_speed description"
  2807. msgid "The speed at which the print cooling fans spin."
  2808. msgstr "Yazdırma soğutma fanlarının dönüş hızı."
  2809. #: fdmprinter.def.json
  2810. msgctxt "cool_fan_speed_min label"
  2811. msgid "Regular Fan Speed"
  2812. msgstr "Olağan Fan Hızı"
  2813. #: fdmprinter.def.json
  2814. msgctxt "cool_fan_speed_min description"
  2815. msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed."
  2816. msgstr "Katmanların sınıra ulaşmadan önceki dönüş hızı Katman sınır değerinden daha hızlı yazdırdığında fan hızı giderek maksimum fan hızına yönelir."
  2817. #: fdmprinter.def.json
  2818. msgctxt "cool_fan_speed_max label"
  2819. msgid "Maximum Fan Speed"
  2820. msgstr "Maksimum Fan Hızı"
  2821. #: fdmprinter.def.json
  2822. msgctxt "cool_fan_speed_max description"
  2823. msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit."
  2824. msgstr "Katmanların minimum katman süresindeki dönüş hızı. Sınır değerine ulaşıldığında, fan hızı olağan ve maksimum fan hızı arasında kademeli artış gösterir."
  2825. #: fdmprinter.def.json
  2826. msgctxt "cool_min_layer_time_fan_speed_max label"
  2827. msgid "Regular/Maximum Fan Speed Threshold"
  2828. msgstr "Olağan/Maksimum Fan Hızı Sınırı"
  2829. #: fdmprinter.def.json
  2830. msgctxt "cool_min_layer_time_fan_speed_max description"
  2831. msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed."
  2832. msgstr "Sınır değerini olağan ve maksimum fan hızı arasında ayarlayan katman süresi. Bundan daha kısa sürede yazdıran katmanlar olağan fan hızı kullanır. Daha hızlı katmanlar için, fan hızı maksimum fan hızına doğru kademeli olarak artar."
  2833. #: fdmprinter.def.json
  2834. msgctxt "cool_fan_speed_0 label"
  2835. msgid "Initial Fan Speed"
  2836. msgstr "İlk Fan Hızı"
  2837. #: fdmprinter.def.json
  2838. msgctxt "cool_fan_speed_0 description"
  2839. msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height."
  2840. msgstr "Fanların, yazdırma işleminin başındaki dönme hızı. Sonraki katmanlarda fan hızı, Yüksekteki Olağan Fan Hızına karşılık gelen katmana kadar kademeli olarak artar."
  2841. #: fdmprinter.def.json
  2842. msgctxt "cool_fan_full_at_height label"
  2843. msgid "Regular Fan Speed at Height"
  2844. msgstr "Yüksekteki Olağan Fan Hızı"
  2845. #: fdmprinter.def.json
  2846. msgctxt "cool_fan_full_at_height description"
  2847. msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed."
  2848. msgstr "Fanların olağan fan hızında döndüğü yükseklik. Alttaki katmanlarda fan hızı, İlk Fan Hızından Olağan Fan Hızına kadar kademeli olarak artar."
  2849. #: fdmprinter.def.json
  2850. msgctxt "cool_fan_full_layer label"
  2851. msgid "Regular Fan Speed at Layer"
  2852. msgstr "Katmandaki Olağan Fan Hızı"
  2853. #: fdmprinter.def.json
  2854. msgctxt "cool_fan_full_layer description"
  2855. msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number."
  2856. msgstr "Fanların olağan fan hızında döndüğü katman Yüksekteki olağan fan hızı ayarlanırsa bu değer hesaplanır ve tam sayıya yuvarlanır."
  2857. #: fdmprinter.def.json
  2858. msgctxt "cool_min_layer_time label"
  2859. msgid "Minimum Layer Time"
  2860. msgstr "Minimum Katman Süresi"
  2861. #: fdmprinter.def.json
  2862. msgctxt "cool_min_layer_time description"
  2863. msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated."
  2864. msgstr "Bir katmanda harcanan minimum süre. Bu süre yazıcıyı yavaşlamaya ve burada en azından bir katmanda ayarlanan süreyi kullanmaya zorlar. Bir sonraki katman yazdırılmadan önce yazdırılan materyalin düzgün bir şekilde soğumasını sağlar. Kaldırma Başlığı devre dışı bırakılır ve Minimum Hız değeri başka bir şekilde ihlal edilmezse katmanlar yine de minimal katman süresinden daha kısa sürebilir."
  2865. #: fdmprinter.def.json
  2866. msgctxt "cool_min_speed label"
  2867. msgid "Minimum Speed"
  2868. msgstr "Minimum Hız"
  2869. #: fdmprinter.def.json
  2870. msgctxt "cool_min_speed description"
  2871. msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality."
  2872. msgstr "Düşük katman süresi nedeniyle yavaşlamaya karşın minimum yazdırma hızı. Yazıcı çok yavaşladığında nozüldeki basınç çok düşük olacak ve kötü yazdırma kalitesiyle sonuçlanacaktır."
  2873. #: fdmprinter.def.json
  2874. msgctxt "cool_lift_head label"
  2875. msgid "Lift Head"
  2876. msgstr "Yazıcı Başlığını Kaldır"
  2877. #: fdmprinter.def.json
  2878. msgctxt "cool_lift_head description"
  2879. msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached."
  2880. msgstr "Düşük katman süresi nedeniyle minimum hıza inildiğinde yazıcı başlığını yazıcıdan kaldırıp düşük katman süresine ulaşana kadar olan ek süreyi bekleyin."
  2881. #: fdmprinter.def.json
  2882. msgctxt "support label"
  2883. msgid "Support"
  2884. msgstr "Destek"
  2885. #: fdmprinter.def.json
  2886. msgctxt "support description"
  2887. msgid "Support"
  2888. msgstr "Destek"
  2889. #: fdmprinter.def.json
  2890. msgctxt "support_enable label"
  2891. msgid "Generate Support"
  2892. msgstr "Oluşturma Desteği"
  2893. #: fdmprinter.def.json
  2894. msgctxt "support_enable description"
  2895. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2896. msgstr "Modellerin askıda kalan kısımlarını destekleyen yapılar oluşturun. Bu yapılar olmadan, yazdırma sırasında söz konusu kısımlar düşebilir."
  2897. #: fdmprinter.def.json
  2898. msgctxt "support_extruder_nr label"
  2899. msgid "Support Extruder"
  2900. msgstr "Destek Ekstruderi"
  2901. #: fdmprinter.def.json
  2902. msgctxt "support_extruder_nr description"
  2903. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2904. msgstr "Destek için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır."
  2905. #: fdmprinter.def.json
  2906. msgctxt "support_infill_extruder_nr label"
  2907. msgid "Support Infill Extruder"
  2908. msgstr "Destek Dolgu Ekstruderi"
  2909. #: fdmprinter.def.json
  2910. msgctxt "support_infill_extruder_nr description"
  2911. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2912. msgstr "Destek dolgusu için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır."
  2913. #: fdmprinter.def.json
  2914. msgctxt "support_extruder_nr_layer_0 label"
  2915. msgid "First Layer Support Extruder"
  2916. msgstr "İlk Katman Destek Ekstruderi"
  2917. #: fdmprinter.def.json
  2918. msgctxt "support_extruder_nr_layer_0 description"
  2919. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2920. msgstr "Destek dolgusunun ilk katmanı için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır."
  2921. #: fdmprinter.def.json
  2922. msgctxt "support_interface_extruder_nr label"
  2923. msgid "Support Interface Extruder"
  2924. msgstr "Destek Arayüz Ekstruderi"
  2925. #: fdmprinter.def.json
  2926. msgctxt "support_interface_extruder_nr description"
  2927. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2928. msgstr "Desteğin çatıları ve zeminlerinin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır."
  2929. #: fdmprinter.def.json
  2930. msgctxt "support_roof_extruder_nr label"
  2931. msgid "Support Roof Extruder"
  2932. msgstr "Destek Çatısı Ekstrüderi"
  2933. #: fdmprinter.def.json
  2934. msgctxt "support_roof_extruder_nr description"
  2935. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2936. msgstr "Desteğin çatısının yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır."
  2937. #: fdmprinter.def.json
  2938. msgctxt "support_bottom_extruder_nr label"
  2939. msgid "Support Floor Extruder"
  2940. msgstr "Destek Zemini Ekstrüderi"
  2941. #: fdmprinter.def.json
  2942. msgctxt "support_bottom_extruder_nr description"
  2943. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2944. msgstr "Desteğin zemininin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır."
  2945. #: fdmprinter.def.json
  2946. msgctxt "support_structure label"
  2947. msgid "Support Structure"
  2948. msgstr "Destek Yapısı"
  2949. #: fdmprinter.def.json
  2950. msgctxt "support_structure description"
  2951. msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible."
  2952. msgstr "Destek oluşturmak için kullanılabilir teknikler arasından seçim yapar. \"Normal\" destek, çıkıntılı parçaların hemen altında bir destek yapısı oluşturur ve bu alanları dümdüz aşağı indirir. \"Ağaç\"destek, çıkıntılı alanlara doğru dallar oluşturur ve bu dalların uçlarıyla model desteklenir; dallar modelin etrafına sarılarak yapı plakasından olabildiğince destek alır."
  2953. #: fdmprinter.def.json
  2954. msgctxt "support_structure option normal"
  2955. msgid "Normal"
  2956. msgstr "Normal"
  2957. #: fdmprinter.def.json
  2958. msgctxt "support_structure option tree"
  2959. msgid "Tree"
  2960. msgstr "Ağaç"
  2961. #: fdmprinter.def.json
  2962. msgctxt "support_tree_angle label"
  2963. msgid "Tree Support Branch Angle"
  2964. msgstr "Ağaç Destek Dal Açısı"
  2965. #: fdmprinter.def.json
  2966. msgctxt "support_tree_angle description"
  2967. msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  2968. msgstr "Dalların açısı. Daha dikey ve daha stabil olmaları için daha düşük bir açı kullanın. Daha fazla erişim için daha yüksek bir açı kullanın."
  2969. #: fdmprinter.def.json
  2970. msgctxt "support_tree_branch_distance label"
  2971. msgid "Tree Support Branch Distance"
  2972. msgstr "Ağaç Destek Dal Mesafesi"
  2973. #: fdmprinter.def.json
  2974. msgctxt "support_tree_branch_distance description"
  2975. msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove."
  2976. msgstr "Dalların modele temas ettiklerinde birbirlerine ne kadar uzaklıkta olacakları. Bu mesafenin kısa yapılması ağaç desteğin modele daha fazla noktada temas etmesini sağlayarak daha iyi bir sarkma sunacaktır ancak desteğin sökülmesini de daha güç hale getirecektir."
  2977. #: fdmprinter.def.json
  2978. msgctxt "support_tree_branch_diameter label"
  2979. msgid "Tree Support Branch Diameter"
  2980. msgstr "Ağaç Destek Dalının Çapı"
  2981. #: fdmprinter.def.json
  2982. msgctxt "support_tree_branch_diameter description"
  2983. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2984. msgstr "Ağaç desteğin en ince dallarının çapı. Daha kalın dallar daha dayanıklı olur. Tabana doğru uzanan dallar bundan daha kalın olacaktır."
  2985. #: fdmprinter.def.json
  2986. msgctxt "support_tree_branch_diameter_angle label"
  2987. msgid "Tree Support Branch Diameter Angle"
  2988. msgstr "Ağaç Destek Dalının Çap Açısı"
  2989. #: fdmprinter.def.json
  2990. msgctxt "support_tree_branch_diameter_angle description"
  2991. msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support."
  2992. msgstr "Alta doğru gidildikçe kademeli olarak kalınlaşan dalların açısı. 0 derecelik bir açı dalların uzunluklarını gözetmeksizin tekdüze bir kalınlığa sahip olmalarını sağlayacaktır. Birazcık açı ağaç desteğin sabitliğini artırabilir."
  2993. #: fdmprinter.def.json
  2994. msgctxt "support_tree_collision_resolution label"
  2995. msgid "Tree Support Collision Resolution"
  2996. msgstr "Ağaç Destek Çarpışma Çözünürlüğü"
  2997. #: fdmprinter.def.json
  2998. msgctxt "support_tree_collision_resolution description"
  2999. msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
  3000. msgstr "Modele çarpmamak adına çarpışmaları hesaplamak için çözünürlük. Buna düşük bir değerin verilmesi daha az hata çıkaran daha isabetli ağaçların üretilmesini sağlar ancak dilimleme süresini önemli ölçüde artırır."
  3001. #: fdmprinter.def.json
  3002. msgctxt "support_type label"
  3003. msgid "Support Placement"
  3004. msgstr "Destek Yerleştirme"
  3005. #: fdmprinter.def.json
  3006. msgctxt "support_type description"
  3007. msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model."
  3008. msgstr "Destek yapılarının yerleştirilmesini ayarlar. Yerleştirme, temas eden yapı levhasına veya her bölüme ayarlanabilir. Her bölüme ayarlandığında, destek yapıları da modelde yazdırılacaktır."
  3009. #: fdmprinter.def.json
  3010. msgctxt "support_type option buildplate"
  3011. msgid "Touching Buildplate"
  3012. msgstr "Yapı Levhasına Dokunma"
  3013. #: fdmprinter.def.json
  3014. msgctxt "support_type option everywhere"
  3015. msgid "Everywhere"
  3016. msgstr "Her bölüm"
  3017. #: fdmprinter.def.json
  3018. msgctxt "support_angle label"
  3019. msgid "Support Overhang Angle"
  3020. msgstr "Destek Çıkıntı Açısı"
  3021. #: fdmprinter.def.json
  3022. msgctxt "support_angle description"
  3023. msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support."
  3024. msgstr "Desteğin eklendiği çıkıntıların minimum açısı. 0°’de tüm çıkıntılar desteklenirken 90°‘de destek sağlanmaz."
  3025. #: fdmprinter.def.json
  3026. msgctxt "support_pattern label"
  3027. msgid "Support Pattern"
  3028. msgstr "Destek Şekli"
  3029. #: fdmprinter.def.json
  3030. msgctxt "support_pattern description"
  3031. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  3032. msgstr "Yazdırma destek yapılarının şekli. Bulunan farklı seçenekler sağlam veya kolay çıkarılabilir destek oluşturabilir."
  3033. #: fdmprinter.def.json
  3034. msgctxt "support_pattern option lines"
  3035. msgid "Lines"
  3036. msgstr "Çizgiler"
  3037. #: fdmprinter.def.json
  3038. msgctxt "support_pattern option grid"
  3039. msgid "Grid"
  3040. msgstr "Izgara"
  3041. #: fdmprinter.def.json
  3042. msgctxt "support_pattern option triangles"
  3043. msgid "Triangles"
  3044. msgstr "Üçgenler"
  3045. #: fdmprinter.def.json
  3046. msgctxt "support_pattern option concentric"
  3047. msgid "Concentric"
  3048. msgstr "Eş merkezli"
  3049. #: fdmprinter.def.json
  3050. msgctxt "support_pattern option zigzag"
  3051. msgid "Zig Zag"
  3052. msgstr "Zik Zak"
  3053. #: fdmprinter.def.json
  3054. msgctxt "support_pattern option cross"
  3055. msgid "Cross"
  3056. msgstr "Çapraz"
  3057. #: fdmprinter.def.json
  3058. msgctxt "support_pattern option gyroid"
  3059. msgid "Gyroid"
  3060. msgstr "Gyroid"
  3061. #: fdmprinter.def.json
  3062. msgctxt "support_wall_count label"
  3063. msgid "Support Wall Line Count"
  3064. msgstr "Duvar Hattı Sayısını Destekle"
  3065. #: fdmprinter.def.json
  3066. msgctxt "support_wall_count description"
  3067. msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  3068. msgstr "Destek dolgusunun çevreleneceği duvar sayısı. Bir duvarın eklenmesi destek yazdırmasını daha güvenilir kılabilir ve çıkıntıları daha iyi destekleyebilir. Ancak yazdırma süresini ve kullanılan malzemeyi artırır."
  3069. #: fdmprinter.def.json
  3070. msgctxt "zig_zaggify_support label"
  3071. msgid "Connect Support Lines"
  3072. msgstr "Destek Çizgilerini Bağla"
  3073. #: fdmprinter.def.json
  3074. msgctxt "zig_zaggify_support description"
  3075. msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material."
  3076. msgstr "Destek çizgilerinin uçlarını birbirine bağlayın. Bu ayarın etkinleştirilmesi, desteğinizi daha sağlam hale getirebilir ve ekstruzyonu azaltabilir ancak bu daha fazla malzemeye mal olacaktır."
  3077. #: fdmprinter.def.json
  3078. msgctxt "support_connect_zigzags label"
  3079. msgid "Connect Support ZigZags"
  3080. msgstr "Destek Zikzaklarını Bağla"
  3081. #: fdmprinter.def.json
  3082. msgctxt "support_connect_zigzags description"
  3083. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  3084. msgstr "Zikzakları Bağla Zik zak destek yapısının sağlamlığını artırır."
  3085. #: fdmprinter.def.json
  3086. msgctxt "support_infill_rate label"
  3087. msgid "Support Density"
  3088. msgstr "Destek Yoğunluğu"
  3089. #: fdmprinter.def.json
  3090. msgctxt "support_infill_rate description"
  3091. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3092. msgstr "Destek yapısının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken desteklerin kaldırılmasını zorlaştırır."
  3093. #: fdmprinter.def.json
  3094. msgctxt "support_line_distance label"
  3095. msgid "Support Line Distance"
  3096. msgstr "Destek Hattı Mesafesi"
  3097. #: fdmprinter.def.json
  3098. msgctxt "support_line_distance description"
  3099. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  3100. msgstr "Yazdırılan destek yapısı hatları arasındaki mesafe. Bu ayar, destek yoğunluğu ile hesaplanır."
  3101. #: fdmprinter.def.json
  3102. msgctxt "support_initial_layer_line_distance label"
  3103. msgid "Initial Layer Support Line Distance"
  3104. msgstr "İlk Katman Destek Hattı Mesafesi"
  3105. #: fdmprinter.def.json
  3106. msgctxt "support_initial_layer_line_distance description"
  3107. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  3108. msgstr "Yazdırılan ilk katman destek yapı hatları arasındaki mesafedir. Bu ayar destek yoğunluğuna göre hesaplanır."
  3109. #: fdmprinter.def.json
  3110. msgctxt "support_infill_angles label"
  3111. msgid "Support Infill Line Directions"
  3112. msgstr "Destek Dolgu Hattı Yönü"
  3113. #: fdmprinter.def.json
  3114. msgctxt "support_infill_angles description"
  3115. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees."
  3116. msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar listenin boş olmasıdır ve bu durumda varsayılan açı 0'dır."
  3117. #: fdmprinter.def.json
  3118. msgctxt "support_brim_enable label"
  3119. msgid "Enable Support Brim"
  3120. msgstr "Destek Kenarını Etkinleştir"
  3121. #: fdmprinter.def.json
  3122. msgctxt "support_brim_enable description"
  3123. msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate."
  3124. msgstr "İlk katmanın destek dolgu alanı içinde bir kenar oluşturun. Bu kenar, desteğin çevresine değil, altına yazdırılır. Bu ayarı etkinleştirmek, desteğin baskı tablasına yapışma alanını artırır."
  3125. #: fdmprinter.def.json
  3126. msgctxt "support_brim_width label"
  3127. msgid "Support Brim Width"
  3128. msgstr "Destek Kenar Genişliği"
  3129. #: fdmprinter.def.json
  3130. msgctxt "support_brim_width description"
  3131. msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material."
  3132. msgstr "Desteğin altına yazdırılacak kenarın genişliği. Daha geniş kenar, ekstra malzeme karşılığında baskı tablasına daha fazla alanın yapışacağı anlamına gelir."
  3133. #: fdmprinter.def.json
  3134. msgctxt "support_brim_line_count label"
  3135. msgid "Support Brim Line Count"
  3136. msgstr "Destek Kenar Hattı Sayısı"
  3137. #: fdmprinter.def.json
  3138. msgctxt "support_brim_line_count description"
  3139. msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material."
  3140. msgstr "Bir destek kenarı için kullanılan hatların sayısı. Daha fazla kenar hattı, ekstra malzeme karşılığında baskı tablasına daha fazla alanın yapışacağı anlamına gelir."
  3141. #: fdmprinter.def.json
  3142. msgctxt "support_z_distance label"
  3143. msgid "Support Z Distance"
  3144. msgstr "Destek Z Mesafesi"
  3145. #: fdmprinter.def.json
  3146. msgctxt "support_z_distance description"
  3147. msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height."
  3148. msgstr "Destek yapısının üst/alt kısmından baskıya olan mesafe. Bu boşluk, model yazdırıldıktan sonra desteklerin sökülmesi için açıklık sağlar. Bu değer, katman yüksekliğinin iki katına kadar yuvarlanır."
  3149. #: fdmprinter.def.json
  3150. msgctxt "support_top_distance label"
  3151. msgid "Support Top Distance"
  3152. msgstr "Destek Üst Mesafesi"
  3153. #: fdmprinter.def.json
  3154. msgctxt "support_top_distance description"
  3155. msgid "Distance from the top of the support to the print."
  3156. msgstr "Yazdırılıcak desteğin üstüne olan mesafe."
  3157. #: fdmprinter.def.json
  3158. msgctxt "support_bottom_distance label"
  3159. msgid "Support Bottom Distance"
  3160. msgstr "Destek Alt Mesafesi"
  3161. #: fdmprinter.def.json
  3162. msgctxt "support_bottom_distance description"
  3163. msgid "Distance from the print to the bottom of the support."
  3164. msgstr "Baskıdan desteğin altına olan mesafe."
  3165. #: fdmprinter.def.json
  3166. msgctxt "support_xy_distance label"
  3167. msgid "Support X/Y Distance"
  3168. msgstr "Destek X/Y Mesafesi"
  3169. #: fdmprinter.def.json
  3170. msgctxt "support_xy_distance description"
  3171. msgid "Distance of the support structure from the print in the X/Y directions."
  3172. msgstr "Destek yapısının X/Y yönlerindeki baskıya mesafesi."
  3173. #: fdmprinter.def.json
  3174. msgctxt "support_xy_overrides_z label"
  3175. msgid "Support Distance Priority"
  3176. msgstr "Destek Mesafesi Önceliği"
  3177. #: fdmprinter.def.json
  3178. msgctxt "support_xy_overrides_z description"
  3179. msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs."
  3180. msgstr "Destek X/Y Mesafesinin Destek Z Mesafesinden veya tersi yönde fazla olup olmadığı. X/Y, Z’den fazla olursa, X/Y mesafesi çıkıntıya olan asıl Z mesafesini etkileyerek desteği modelden iter. Çıkıntıların etrafına X/Y mesafesi uygulayarak bunu engelleyebiliriz."
  3181. #: fdmprinter.def.json
  3182. msgctxt "support_xy_overrides_z option xy_overrides_z"
  3183. msgid "X/Y overrides Z"
  3184. msgstr "X/Y, Z’den fazla"
  3185. #: fdmprinter.def.json
  3186. msgctxt "support_xy_overrides_z option z_overrides_xy"
  3187. msgid "Z overrides X/Y"
  3188. msgstr "Z, X/Y’den fazla"
  3189. #: fdmprinter.def.json
  3190. msgctxt "support_xy_distance_overhang label"
  3191. msgid "Minimum Support X/Y Distance"
  3192. msgstr "Minimum Destek X/Y Mesafesi"
  3193. #: fdmprinter.def.json
  3194. msgctxt "support_xy_distance_overhang description"
  3195. msgid "Distance of the support structure from the overhang in the X/Y directions."
  3196. msgstr "Destek yapısının X/Y yönlerindeki çıkıntıya mesafesi."
  3197. #: fdmprinter.def.json
  3198. msgctxt "support_bottom_stair_step_height label"
  3199. msgid "Support Stair Step Height"
  3200. msgstr "Destek Merdiveni Basamak Yüksekliği"
  3201. #: fdmprinter.def.json
  3202. msgctxt "support_bottom_stair_step_height description"
  3203. msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour."
  3204. msgstr "Modelin üzerinde sabit duran desteğin merdiven benzeri alt kısmının basamak yüksekliği. Daha düşük bir değer desteğin hareket ettirilmesini zorlaştırırken, daha yüksek bir değer kararsız destek yapılarına yol açabilir. Merdiven benzeri davranışı kapatmak için sıfır değerine ayarlayın."
  3205. #: fdmprinter.def.json
  3206. msgctxt "support_bottom_stair_step_width label"
  3207. msgid "Support Stair Step Maximum Width"
  3208. msgstr "Destek Merdiveni Maksimum Basamak Genişliği"
  3209. #: fdmprinter.def.json
  3210. msgctxt "support_bottom_stair_step_width description"
  3211. msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures."
  3212. msgstr "Modelin üzerinde sabit duran desteğin merdiven benzeri alt kısmının maksimum basamak genişliği. Daha düşük bir değer desteğin hareket ettirilmesini zorlaştırırken, daha yüksek bir değer kararsız destek yapılarına yol açabilir."
  3213. #: fdmprinter.def.json
  3214. msgctxt "support_bottom_stair_step_min_slope label"
  3215. msgid "Support Stair Step Minimum Slope Angle"
  3216. msgstr "Basamak Desteğinin Minimum Eğim Açısı"
  3217. #: fdmprinter.def.json
  3218. msgctxt "support_bottom_stair_step_min_slope description"
  3219. msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model."
  3220. msgstr "Basamaklı alanın etkili olması için gereken minimum eğimdir. Düşük değerler, derinliği daha düşük olan eğimlerde desteğin kaldırılmasını kolaylaştırırken, gerçekten düşük değerler ise modelin diğer parçalarında tersine sonuçlar doğurabilir."
  3221. #: fdmprinter.def.json
  3222. msgctxt "support_join_distance label"
  3223. msgid "Support Join Distance"
  3224. msgstr "Destek Birleşme Mesafesi"
  3225. #: fdmprinter.def.json
  3226. msgctxt "support_join_distance description"
  3227. msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one."
  3228. msgstr "X/Y yönlerinde destek yapıları arasındaki maksimum mesafedir. Ayrı yapılar birbirlerine bu değerden daha yakınsa yapılar birleşerek tek bir yapı haline gelir."
  3229. #: fdmprinter.def.json
  3230. msgctxt "support_offset label"
  3231. msgid "Support Horizontal Expansion"
  3232. msgstr "Destek Yatay Büyüme"
  3233. #: fdmprinter.def.json
  3234. msgctxt "support_offset description"
  3235. msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support."
  3236. msgstr "Her katmandaki tüm destek poligonlarına uygulanan ofset miktarı. Pozitif değerler destek alanlarını pürüzsüzleştirebilir ve daha sağlam destek sağlayabilir."
  3237. #: fdmprinter.def.json
  3238. msgctxt "support_infill_sparse_thickness label"
  3239. msgid "Support Infill Layer Thickness"
  3240. msgstr "Destek Dolgusu Katmanı Kalınlığı"
  3241. #: fdmprinter.def.json
  3242. msgctxt "support_infill_sparse_thickness description"
  3243. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3244. msgstr "Her katmandaki destek dolgusu malzemesinin kalınlığı. Bu değer her zaman katman yüksekliğinin bir katı olmalıdır, aksi takdirde değer yuvarlanır."
  3245. #: fdmprinter.def.json
  3246. msgctxt "gradual_support_infill_steps label"
  3247. msgid "Gradual Support Infill Steps"
  3248. msgstr "Kademeli Destek Dolgusu Aşamaları"
  3249. #: fdmprinter.def.json
  3250. msgctxt "gradual_support_infill_steps description"
  3251. msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density."
  3252. msgstr "Üst yüzeylerin altına inerken destek dolgusu yoğunluğunu yarıya indirmek için inilecek yüzey sayısı. Üst yüzeylere daha yakın olan alanlarda yoğunluk daha fazladır ve Destek Dolgusu Yoğunluğuna kadar çıkabilir."
  3253. #: fdmprinter.def.json
  3254. msgctxt "gradual_support_infill_step_height label"
  3255. msgid "Gradual Support Infill Step Height"
  3256. msgstr "Aşamalı Destek Dolgusu Basamak Yüksekliği"
  3257. #: fdmprinter.def.json
  3258. msgctxt "gradual_support_infill_step_height description"
  3259. msgid "The height of support infill of a given density before switching to half the density."
  3260. msgstr "Yoğunluğun yarısına inmeden önce belirli bir yoğunluktaki destek dolgusunun yüksekliği."
  3261. #: fdmprinter.def.json
  3262. msgctxt "minimum_support_area label"
  3263. msgid "Minimum Support Area"
  3264. msgstr "Minimum Destek Bölgesi"
  3265. #: fdmprinter.def.json
  3266. msgctxt "minimum_support_area description"
  3267. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  3268. msgstr "Destek poligonları için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır."
  3269. #: fdmprinter.def.json
  3270. msgctxt "support_interface_enable label"
  3271. msgid "Enable Support Interface"
  3272. msgstr "Destek Arayüzünü Etkinleştir"
  3273. #: fdmprinter.def.json
  3274. msgctxt "support_interface_enable description"
  3275. msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model."
  3276. msgstr "Model ve destek arasında yoğun bir arayüz oluştur. Modelin yazdırıldığı desteğin üstünde ve modelin üzerinde durduğu desteğin altında bir yüzey oluşturur."
  3277. #: fdmprinter.def.json
  3278. msgctxt "support_roof_enable label"
  3279. msgid "Enable Support Roof"
  3280. msgstr "Destek Çatısını Etkinleştir"
  3281. #: fdmprinter.def.json
  3282. msgctxt "support_roof_enable description"
  3283. msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support."
  3284. msgstr "Desteğin üst kısmı ile model arasında yoğun bir levha oluşturur. Bu işlem, model ile destek arasında bir yüzey alanı oluşturacaktır."
  3285. #: fdmprinter.def.json
  3286. msgctxt "support_bottom_enable label"
  3287. msgid "Enable Support Floor"
  3288. msgstr "Destek Zeminini Etkinleştir"
  3289. #: fdmprinter.def.json
  3290. msgctxt "support_bottom_enable description"
  3291. msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support."
  3292. msgstr "Desteğin alt kısmı ile model arasında yoğun bir levha oluşturur. Bu işlem, model ile destek arasında bir yüzey alanı oluşturacaktır."
  3293. #: fdmprinter.def.json
  3294. msgctxt "support_interface_height label"
  3295. msgid "Support Interface Thickness"
  3296. msgstr "Destek Arayüzü Kalınlığı"
  3297. #: fdmprinter.def.json
  3298. msgctxt "support_interface_height description"
  3299. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  3300. msgstr "Alt veya üst kısımdaki modele değdiği yerde destek arayüzü kalınlığı."
  3301. #: fdmprinter.def.json
  3302. msgctxt "support_roof_height label"
  3303. msgid "Support Roof Thickness"
  3304. msgstr "Destek Tavanı Kalınlığı"
  3305. #: fdmprinter.def.json
  3306. msgctxt "support_roof_height description"
  3307. msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests."
  3308. msgstr "Destek tavanlarının kalınlığı. Modelin bulunduğu desteğin üst kısmındaki yoğun katmanların sayısını kontrol eder."
  3309. #: fdmprinter.def.json
  3310. msgctxt "support_bottom_height label"
  3311. msgid "Support Floor Thickness"
  3312. msgstr "Destek Zemini Kalınlığı"
  3313. #: fdmprinter.def.json
  3314. msgctxt "support_bottom_height description"
  3315. msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests."
  3316. msgstr "Destek zeminlerinin kalınlığı. Desteğin üzerinde durduğu modelin üst kısımlarına yazdırılan yoğun katmanların sayısını kontrol eder."
  3317. #: fdmprinter.def.json
  3318. msgctxt "support_interface_skip_height label"
  3319. msgid "Support Interface Resolution"
  3320. msgstr "Destek Arayüz Çözünürlüğü"
  3321. #: fdmprinter.def.json
  3322. msgctxt "support_interface_skip_height description"
  3323. msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
  3324. msgstr "Desteğin üstünde ve altında model bulunduğunda, kontrol sırasında verilen yükseklikte adımlar uygulayın. Daha yüksek değerler, destek arayüzü olması gereken yerlerde yazdırılacak normal destek oluştururken daha düşük değerler daha yavaş dilimler."
  3325. #: fdmprinter.def.json
  3326. msgctxt "support_interface_density label"
  3327. msgid "Support Interface Density"
  3328. msgstr "Destek Arayüzü Yoğunluğu"
  3329. #: fdmprinter.def.json
  3330. msgctxt "support_interface_density description"
  3331. msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3332. msgstr "Destek yapısının çatılarının ve zeminlerinin yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken, desteklerin kaldırılmasını zorlaştırır."
  3333. #: fdmprinter.def.json
  3334. msgctxt "support_roof_density label"
  3335. msgid "Support Roof Density"
  3336. msgstr "Destek Çatısı Yoğunluğu"
  3337. #: fdmprinter.def.json
  3338. msgctxt "support_roof_density description"
  3339. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3340. msgstr "Destek yapısı çatılarının yoğunluğu. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken, desteklerin kaldırılmasını zorlaştırır."
  3341. #: fdmprinter.def.json
  3342. msgctxt "support_roof_line_distance label"
  3343. msgid "Support Roof Line Distance"
  3344. msgstr "Destek Çatısı Çizgi Mesafesi"
  3345. #: fdmprinter.def.json
  3346. msgctxt "support_roof_line_distance description"
  3347. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  3348. msgstr "Yazdırılan destek çatısı çizgileri arasındaki mesafe. Bu ayar Destek Çatısı Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir."
  3349. #: fdmprinter.def.json
  3350. msgctxt "support_bottom_density label"
  3351. msgid "Support Floor Density"
  3352. msgstr "Destek Zemini Yoğunluğu"
  3353. #: fdmprinter.def.json
  3354. msgctxt "support_bottom_density description"
  3355. msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model."
  3356. msgstr "Destek yapısı zeminlerinin yoğunluğu. Daha yüksek bir değer, desteğin modelin üzerine daha iyi yapışmasını sağlar."
  3357. #: fdmprinter.def.json
  3358. msgctxt "support_bottom_line_distance label"
  3359. msgid "Support Floor Line Distance"
  3360. msgstr "Destek Zemini Çizgi Mesafesi"
  3361. #: fdmprinter.def.json
  3362. msgctxt "support_bottom_line_distance description"
  3363. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  3364. msgstr "Yazdırılan destek zemini çizgileri arasındaki mesafe. Bu ayar Destek Zemini Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir."
  3365. #: fdmprinter.def.json
  3366. msgctxt "support_interface_pattern label"
  3367. msgid "Support Interface Pattern"
  3368. msgstr "Destek Arayüzü Şekli"
  3369. #: fdmprinter.def.json
  3370. msgctxt "support_interface_pattern description"
  3371. msgid "The pattern with which the interface of the support with the model is printed."
  3372. msgstr "Model ile birlikte destek arayüzünün yazdırıldığı şekil."
  3373. #: fdmprinter.def.json
  3374. msgctxt "support_interface_pattern option lines"
  3375. msgid "Lines"
  3376. msgstr "Çizgiler"
  3377. #: fdmprinter.def.json
  3378. msgctxt "support_interface_pattern option grid"
  3379. msgid "Grid"
  3380. msgstr "Izgara"
  3381. #: fdmprinter.def.json
  3382. msgctxt "support_interface_pattern option triangles"
  3383. msgid "Triangles"
  3384. msgstr "Üçgenler"
  3385. #: fdmprinter.def.json
  3386. msgctxt "support_interface_pattern option concentric"
  3387. msgid "Concentric"
  3388. msgstr "Eş merkezli"
  3389. #: fdmprinter.def.json
  3390. msgctxt "support_interface_pattern option zigzag"
  3391. msgid "Zig Zag"
  3392. msgstr "Zik Zak"
  3393. #: fdmprinter.def.json
  3394. msgctxt "support_roof_pattern label"
  3395. msgid "Support Roof Pattern"
  3396. msgstr "Destek Çatısı Deseni"
  3397. #: fdmprinter.def.json
  3398. msgctxt "support_roof_pattern description"
  3399. msgid "The pattern with which the roofs of the support are printed."
  3400. msgstr "Destek çatısının yazdırıldığı desen."
  3401. #: fdmprinter.def.json
  3402. msgctxt "support_roof_pattern option lines"
  3403. msgid "Lines"
  3404. msgstr "Çizgiler"
  3405. #: fdmprinter.def.json
  3406. msgctxt "support_roof_pattern option grid"
  3407. msgid "Grid"
  3408. msgstr "Izgara"
  3409. #: fdmprinter.def.json
  3410. msgctxt "support_roof_pattern option triangles"
  3411. msgid "Triangles"
  3412. msgstr "Üçgenler"
  3413. #: fdmprinter.def.json
  3414. msgctxt "support_roof_pattern option concentric"
  3415. msgid "Concentric"
  3416. msgstr "Eş Merkezli"
  3417. #: fdmprinter.def.json
  3418. msgctxt "support_roof_pattern option zigzag"
  3419. msgid "Zig Zag"
  3420. msgstr "Zikzak"
  3421. #: fdmprinter.def.json
  3422. msgctxt "support_bottom_pattern label"
  3423. msgid "Support Floor Pattern"
  3424. msgstr "Destek Zemini Deseni"
  3425. #: fdmprinter.def.json
  3426. msgctxt "support_bottom_pattern description"
  3427. msgid "The pattern with which the floors of the support are printed."
  3428. msgstr "Destek zeminlerinin yazdırıldığı desen."
  3429. #: fdmprinter.def.json
  3430. msgctxt "support_bottom_pattern option lines"
  3431. msgid "Lines"
  3432. msgstr "Çizgiler"
  3433. #: fdmprinter.def.json
  3434. msgctxt "support_bottom_pattern option grid"
  3435. msgid "Grid"
  3436. msgstr "Izgara"
  3437. #: fdmprinter.def.json
  3438. msgctxt "support_bottom_pattern option triangles"
  3439. msgid "Triangles"
  3440. msgstr "Üçgenler"
  3441. #: fdmprinter.def.json
  3442. msgctxt "support_bottom_pattern option concentric"
  3443. msgid "Concentric"
  3444. msgstr "Eş Merkezli"
  3445. #: fdmprinter.def.json
  3446. msgctxt "support_bottom_pattern option zigzag"
  3447. msgid "Zig Zag"
  3448. msgstr "Zikzak"
  3449. #: fdmprinter.def.json
  3450. msgctxt "minimum_interface_area label"
  3451. msgid "Minimum Support Interface Area"
  3452. msgstr "Minimum Destek Arayüzü Bölgesi"
  3453. #: fdmprinter.def.json
  3454. msgctxt "minimum_interface_area description"
  3455. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  3456. msgstr "Destek arayüzü çokgenlerinin minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır."
  3457. #: fdmprinter.def.json
  3458. msgctxt "minimum_roof_area label"
  3459. msgid "Minimum Support Roof Area"
  3460. msgstr "Minimum Destek Çatısı Bölgesi"
  3461. #: fdmprinter.def.json
  3462. msgctxt "minimum_roof_area description"
  3463. msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support."
  3464. msgstr "Destek çatılarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır."
  3465. #: fdmprinter.def.json
  3466. msgctxt "minimum_bottom_area label"
  3467. msgid "Minimum Support Floor Area"
  3468. msgstr "Minimum Destek Zemini Bölgesi"
  3469. #: fdmprinter.def.json
  3470. msgctxt "minimum_bottom_area description"
  3471. msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support."
  3472. msgstr "Destek tabanlarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır."
  3473. #: fdmprinter.def.json
  3474. msgctxt "support_interface_offset label"
  3475. msgid "Support Interface Horizontal Expansion"
  3476. msgstr "Destek Arayüzü Yatay Büyüme"
  3477. #: fdmprinter.def.json
  3478. msgctxt "support_interface_offset description"
  3479. msgid "Amount of offset applied to the support interface polygons."
  3480. msgstr "Destek arayüzü poligonlarına uygulanan ofset miktarı."
  3481. #: fdmprinter.def.json
  3482. msgctxt "support_roof_offset label"
  3483. msgid "Support Roof Horizontal Expansion"
  3484. msgstr "Destek Çatısı Yatay Büyüme"
  3485. #: fdmprinter.def.json
  3486. msgctxt "support_roof_offset description"
  3487. msgid "Amount of offset applied to the roofs of the support."
  3488. msgstr "Destek çatılarına uygulanan ofset miktarı."
  3489. #: fdmprinter.def.json
  3490. msgctxt "support_bottom_offset label"
  3491. msgid "Support Floor Horizontal Expansion"
  3492. msgstr "Destek Zemini Yatay Büyüme"
  3493. #: fdmprinter.def.json
  3494. msgctxt "support_bottom_offset description"
  3495. msgid "Amount of offset applied to the floors of the support."
  3496. msgstr "Destek zeminlerine uygulanan ofset miktarı."
  3497. #: fdmprinter.def.json
  3498. msgctxt "support_interface_angles label"
  3499. msgid "Support Interface Line Directions"
  3500. msgstr "Destek Arabirim Hattı Yönleri"
  3501. #: fdmprinter.def.json
  3502. msgctxt "support_interface_angles description"
  3503. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  3504. msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir."
  3505. #: fdmprinter.def.json
  3506. msgctxt "support_roof_angles label"
  3507. msgid "Support Roof Line Directions"
  3508. msgstr "Destek Çatı Hattı Yönleri"
  3509. #: fdmprinter.def.json
  3510. msgctxt "support_roof_angles description"
  3511. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  3512. msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir."
  3513. #: fdmprinter.def.json
  3514. msgctxt "support_bottom_angles label"
  3515. msgid "Support Floor Line Directions"
  3516. msgstr "Destek Zemin Hattı Yönleri"
  3517. #: fdmprinter.def.json
  3518. msgctxt "support_bottom_angles description"
  3519. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  3520. msgstr "Kullanılacak tam hat yönlerinin listesi. Listedeki öğeler katmanlar ilerledikçe sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir."
  3521. #: fdmprinter.def.json
  3522. msgctxt "support_fan_enable label"
  3523. msgid "Fan Speed Override"
  3524. msgstr "Fan Hızı Geçersiz Kılma"
  3525. #: fdmprinter.def.json
  3526. msgctxt "support_fan_enable description"
  3527. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  3528. msgstr "Bu ayar etkinleştirildiğinde, yazıcı soğutma fanının hızı desteğin hemen üzerindeki yüzey bölgeleri için değiştirilir."
  3529. #: fdmprinter.def.json
  3530. msgctxt "support_supported_skin_fan_speed label"
  3531. msgid "Supported Skin Fan Speed"
  3532. msgstr "Desteklenen Yüzey Fan Hızı"
  3533. #: fdmprinter.def.json
  3534. msgctxt "support_supported_skin_fan_speed description"
  3535. msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove."
  3536. msgstr "Desteğin hemen üzerindeki yüzey bölgeleri yazdırılırken kullanılacak yüzdelik fan hızıdır. Yüksek fan hızı kullanmak desteğin daha kolay kaldırılmasını sağlayabilir."
  3537. #: fdmprinter.def.json
  3538. msgctxt "support_use_towers label"
  3539. msgid "Use Towers"
  3540. msgstr "Direkleri kullan"
  3541. #: fdmprinter.def.json
  3542. msgctxt "support_use_towers description"
  3543. msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof."
  3544. msgstr "Küçük çıkıntı alanlarını desteklemek için özel direkler kullanın. Bu direkler desteklediğimiz bölgeden daha büyük çaptadır. Çıkıntıyı yaklaştırırsanız direklerin çapı azalır ve bir tavan oluşturur."
  3545. #: fdmprinter.def.json
  3546. msgctxt "support_tower_diameter label"
  3547. msgid "Tower Diameter"
  3548. msgstr "Direk Çapı"
  3549. #: fdmprinter.def.json
  3550. msgctxt "support_tower_diameter description"
  3551. msgid "The diameter of a special tower."
  3552. msgstr "Özel bir direğin çapı."
  3553. #: fdmprinter.def.json
  3554. msgctxt "support_tower_maximum_supported_diameter label"
  3555. msgid "Maximum Tower-Supported Diameter"
  3556. msgstr "Kule Destekli Maksimum Çap"
  3557. #: fdmprinter.def.json
  3558. msgctxt "support_tower_maximum_supported_diameter description"
  3559. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  3560. msgstr "Özel bir destek kulesiyle desteklenecek küçük bir alanın X/Y yönlerindeki maksimum çapıdır."
  3561. #: fdmprinter.def.json
  3562. msgctxt "support_tower_roof_angle label"
  3563. msgid "Tower Roof Angle"
  3564. msgstr "Direk Tavanı Açısı"
  3565. #: fdmprinter.def.json
  3566. msgctxt "support_tower_roof_angle description"
  3567. msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs."
  3568. msgstr "Direk tavanı açısı Yüksek bir değer, direk tavanını sivrileştirirken, daha düşük bir değer direk tavanlarını düzleştirir."
  3569. #: fdmprinter.def.json
  3570. msgctxt "support_mesh_drop_down label"
  3571. msgid "Drop Down Support Mesh"
  3572. msgstr "Alçalan Destek Örgüsü"
  3573. #: fdmprinter.def.json
  3574. msgctxt "support_mesh_drop_down description"
  3575. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  3576. msgstr "Destek örgüsünde askıda kalan herhangi bir kısım olmaması için destek örgüsünün altındaki her yere destek yapın."
  3577. #: fdmprinter.def.json
  3578. msgctxt "support_meshes_present label"
  3579. msgid "Scene Has Support Meshes"
  3580. msgstr "Sahnede Destek Örgüsü Var"
  3581. #: fdmprinter.def.json
  3582. msgctxt "support_meshes_present description"
  3583. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  3584. msgstr "Bunlar sahnedeki mevcut destek örgüleridir. Bu ayar Cura tarafından kontrol edilir."
  3585. #: fdmprinter.def.json
  3586. msgctxt "platform_adhesion label"
  3587. msgid "Build Plate Adhesion"
  3588. msgstr "Yapı Levhası Yapıştırması"
  3589. #: fdmprinter.def.json
  3590. msgctxt "platform_adhesion description"
  3591. msgid "Adhesion"
  3592. msgstr "Yapıştırma"
  3593. #: fdmprinter.def.json
  3594. msgctxt "prime_blob_enable label"
  3595. msgid "Enable Prime Blob"
  3596. msgstr "İlk Damlayı Etkinleştir"
  3597. #: fdmprinter.def.json
  3598. msgctxt "prime_blob_enable description"
  3599. msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time."
  3600. msgstr "Yazdırma öncesinde bir damla ile filamanın astarlanıp astarlanmayacağı. Bu ayar açık olarak ayarlandığında, yazdırma öncesinde ekstrüder nozülünde malzeme hazır olacaktır. Kenar veya Etek Yazdırma da astarlama etkisi yapabilir; bu durumda bu ayarın kapatılmasıyla biraz zaman kazanılabilir."
  3601. #: fdmprinter.def.json
  3602. msgctxt "extruder_prime_pos_x label"
  3603. msgid "Extruder Prime X Position"
  3604. msgstr "Extruder İlk X konumu"
  3605. #: fdmprinter.def.json
  3606. msgctxt "extruder_prime_pos_x description"
  3607. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  3608. msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı."
  3609. #: fdmprinter.def.json
  3610. msgctxt "extruder_prime_pos_y label"
  3611. msgid "Extruder Prime Y Position"
  3612. msgstr "Extruder İlk Y konumu"
  3613. #: fdmprinter.def.json
  3614. msgctxt "extruder_prime_pos_y description"
  3615. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  3616. msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı."
  3617. #: fdmprinter.def.json
  3618. msgctxt "adhesion_type label"
  3619. msgid "Build Plate Adhesion Type"
  3620. msgstr "Yapı Levhası Türü"
  3621. #: fdmprinter.def.json
  3622. msgctxt "adhesion_type description"
  3623. msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model."
  3624. msgstr "Ekstrüzyon işlemine hazırlamayı ve yapı levhasına yapışmayı artıran farklı seçenekler. Kenar, eğilmeyi önlemek için model tabanının etrafına tek katmanlı düz bir alan ekler. Radye, modelin altına çatısı olan kalın bir ızgara ekler. Etek modelin etrafına yazdırılan bir hattır fakat modele bağlı değildir."
  3625. #: fdmprinter.def.json
  3626. msgctxt "adhesion_type option skirt"
  3627. msgid "Skirt"
  3628. msgstr "Etek"
  3629. #: fdmprinter.def.json
  3630. msgctxt "adhesion_type option brim"
  3631. msgid "Brim"
  3632. msgstr "Kenar"
  3633. #: fdmprinter.def.json
  3634. msgctxt "adhesion_type option raft"
  3635. msgid "Raft"
  3636. msgstr "Radye"
  3637. #: fdmprinter.def.json
  3638. msgctxt "adhesion_type option none"
  3639. msgid "None"
  3640. msgstr "Hiçbiri"
  3641. #: fdmprinter.def.json
  3642. msgctxt "adhesion_extruder_nr label"
  3643. msgid "Build Plate Adhesion Extruder"
  3644. msgstr "Yapı Levhası Yapıştırma Ekstruderi"
  3645. #: fdmprinter.def.json
  3646. msgctxt "adhesion_extruder_nr description"
  3647. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3648. msgstr "Etek/kenar/radye yazdırmak için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır."
  3649. #: fdmprinter.def.json
  3650. msgctxt "skirt_brim_extruder_nr label"
  3651. msgid "Skirt/Brim Extruder"
  3652. msgstr "Etek/Kenar Ekstrüderi"
  3653. #: fdmprinter.def.json
  3654. msgctxt "skirt_brim_extruder_nr description"
  3655. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  3656. msgstr "Etek veya kenar baskısı için kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır."
  3657. #: fdmprinter.def.json
  3658. msgctxt "raft_base_extruder_nr label"
  3659. msgid "Raft Base Extruder"
  3660. msgstr "Radye Taban Ekstrüderi"
  3661. #: fdmprinter.def.json
  3662. msgctxt "raft_base_extruder_nr description"
  3663. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  3664. msgstr "Radyenin ilk katmanının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır."
  3665. #: fdmprinter.def.json
  3666. msgctxt "raft_interface_extruder_nr label"
  3667. msgid "Raft Middle Extruder"
  3668. msgstr "Radye Orta Ekstrüderi"
  3669. #: fdmprinter.def.json
  3670. msgctxt "raft_interface_extruder_nr description"
  3671. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  3672. msgstr "Radyenin orta katmanının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır."
  3673. #: fdmprinter.def.json
  3674. msgctxt "raft_surface_extruder_nr label"
  3675. msgid "Raft Top Extruder"
  3676. msgstr "Radye Üst Ekstrüderi"
  3677. #: fdmprinter.def.json
  3678. msgctxt "raft_surface_extruder_nr description"
  3679. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  3680. msgstr "Radyenin üst katmanlarının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır."
  3681. #: fdmprinter.def.json
  3682. msgctxt "skirt_line_count label"
  3683. msgid "Skirt Line Count"
  3684. msgstr "Etek Hattı Sayısı"
  3685. #: fdmprinter.def.json
  3686. msgctxt "skirt_line_count description"
  3687. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  3688. msgstr "Çoklu etek hatları küçük modeller için daha iyi ekstrüzyon işlemi hazırlanmasına yardımcı olur. Bu değeri 0’a ayarlamak eteği devre dışı bırakacaktır."
  3689. #: fdmprinter.def.json
  3690. msgctxt "skirt_gap label"
  3691. msgid "Skirt Distance"
  3692. msgstr "Etek Mesafesi"
  3693. #: fdmprinter.def.json
  3694. msgctxt "skirt_gap description"
  3695. msgid ""
  3696. "The horizontal distance between the skirt and the first layer of the print.\n"
  3697. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3698. msgstr ""
  3699. "Baskının eteği ve ilk katmanı arasındaki yatay mesafe.\n"
  3700. "Minimum mesafedir. Bu mesafeden çok sayıda etek hattı dışarı doğru uzanır."
  3701. #: fdmprinter.def.json
  3702. msgctxt "skirt_brim_minimal_length label"
  3703. msgid "Skirt/Brim Minimum Length"
  3704. msgstr "Minimum Etek/Kenar Uzunluğu"
  3705. #: fdmprinter.def.json
  3706. msgctxt "skirt_brim_minimal_length description"
  3707. msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored."
  3708. msgstr "Etek veya kenarın minimum uzunluğu. Tüm etek veya kenar hatları birlikte bu uzunluğa ulaşmazsa minimum uzunluğa ulaşılana kadar daha fazla etek veya kenar hattı eklenecektir. Not: Hat sayısı 0’a ayarlanırsa, bu yok sayılır."
  3709. #: fdmprinter.def.json
  3710. msgctxt "brim_width label"
  3711. msgid "Brim Width"
  3712. msgstr "Kenar Genişliği"
  3713. #: fdmprinter.def.json
  3714. msgctxt "brim_width description"
  3715. msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area."
  3716. msgstr "Modelin en dış kenar hattını olan mesafesi. Daha büyük kenar hattı yapı levhasına yapışmayı artırmanın yanı sıra etkin yazdırma alanını da azaltır."
  3717. #: fdmprinter.def.json
  3718. msgctxt "brim_line_count label"
  3719. msgid "Brim Line Count"
  3720. msgstr "Kenar Hattı Sayısı"
  3721. #: fdmprinter.def.json
  3722. msgctxt "brim_line_count description"
  3723. msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
  3724. msgstr "Bir kenar için kullanılan hatların sayısı Daha fazla kenar hattı yapı levhasına yapışmayı artırmanın yanı sıra etkin yazdırma alanını da azaltır."
  3725. #: fdmprinter.def.json
  3726. msgctxt "brim_gap label"
  3727. msgid "Brim Distance"
  3728. msgstr "Uç Mesafesi"
  3729. #: fdmprinter.def.json
  3730. msgctxt "brim_gap description"
  3731. msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
  3732. msgstr "Baskının ilk katmanının uçtaki ilk hattı ile ana hattı arasındaki yatay mesafe. Küçük bir boşluk baskının uç kısmının kolayca çıkarılmasını sağlamasının yanı sıra ısı bakımından da avantajlıdır."
  3733. #: fdmprinter.def.json
  3734. msgctxt "brim_replaces_support label"
  3735. msgid "Brim Replaces Support"
  3736. msgstr "Kenar, Desteği Değiştirir"
  3737. #: fdmprinter.def.json
  3738. msgctxt "brim_replaces_support description"
  3739. msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions."
  3740. msgstr "İlgili alan üzerinde destek olsa bile kenarı modelin çevresine yazdırmaya zorlayın. Desteğin ilk katmanının bazı alanlarını kenar alanları ile değiştirir."
  3741. #: fdmprinter.def.json
  3742. msgctxt "brim_outside_only label"
  3743. msgid "Brim Only on Outside"
  3744. msgstr "Sadece Dış Kısımdaki Kenar"
  3745. #: fdmprinter.def.json
  3746. msgctxt "brim_outside_only description"
  3747. msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much."
  3748. msgstr "Sadece modelin dış kısmındaki kenarı yazdırır. Yatak yapışmasını büyük oranda azaltmasa da daha sonra kaldırmanız gereken kenar sayısını azaltır."
  3749. #: fdmprinter.def.json
  3750. msgctxt "raft_margin label"
  3751. msgid "Raft Extra Margin"
  3752. msgstr "Ek Radye Boşluğu"
  3753. #: fdmprinter.def.json
  3754. msgctxt "raft_margin description"
  3755. msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  3756. msgstr "Radye etkinleştirildiğinde, ayrıca radye verilen model etrafındaki ek radye alanıdır. Bu boşluğu artırmak, daha fazla malzeme kullanırken ve yazdırma için daha az alan bırakırken daha sağlam bir radye oluşturacaktır."
  3757. #: fdmprinter.def.json
  3758. msgctxt "raft_smoothing label"
  3759. msgid "Raft Smoothing"
  3760. msgstr "Radye Düzeltme"
  3761. #: fdmprinter.def.json
  3762. msgctxt "raft_smoothing description"
  3763. msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  3764. msgstr "Bu ayar, radye ana hattında yer alan iç köşelerin ne kadar yuvarlanacağını kontrol eder. İç köşeler, burada belirtilen değere eşit yarıçapa sahip yarım daire şeklinde yuvarlanır. Ayrıca bu ayar, söz konusu daireden daha küçük olan radye ana hattındaki delikleri ortadan kaldırır."
  3765. #: fdmprinter.def.json
  3766. msgctxt "raft_airgap label"
  3767. msgid "Raft Air Gap"
  3768. msgstr "Radye Hava Boşluğu"
  3769. #: fdmprinter.def.json
  3770. msgctxt "raft_airgap description"
  3771. msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft."
  3772. msgstr "Son radye katmanı ve modelin ilk katmanı arasındaki boşluk. Radye katmanı ve model arasındaki yapışmayı azaltmak için sadece ilk katman yükseltilir. Radyeyi sıyırmayı kolaylaştırır."
  3773. #: fdmprinter.def.json
  3774. msgctxt "layer_0_z_overlap label"
  3775. msgid "Initial Layer Z Overlap"
  3776. msgstr "İlk Katman Z Çakışması"
  3777. #: fdmprinter.def.json
  3778. msgctxt "layer_0_z_overlap description"
  3779. msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount."
  3780. msgstr "Hava boşluğundaki filaman kaybını telafi etmek için Z yönünde modelin ilk ve ikinci katmanını çakıştırın. İlk model katmanının üstündeki tüm modeller bu miktara indirilecektir."
  3781. #: fdmprinter.def.json
  3782. msgctxt "raft_surface_layers label"
  3783. msgid "Raft Top Layers"
  3784. msgstr "Radyenin Üst Katmanları"
  3785. #: fdmprinter.def.json
  3786. msgctxt "raft_surface_layers description"
  3787. msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1."
  3788. msgstr "İkinci radye katmanındaki üst katmanların sayısı. Bunlar modelin üstünde durduğu tamamı dolgulu katmanlardır. İki katman bir katmandan daha pürüzsüz bir üst yüzey oluşturur."
  3789. #: fdmprinter.def.json
  3790. msgctxt "raft_surface_thickness label"
  3791. msgid "Raft Top Layer Thickness"
  3792. msgstr "Radyenin Üst Katman Kalınlığı"
  3793. #: fdmprinter.def.json
  3794. msgctxt "raft_surface_thickness description"
  3795. msgid "Layer thickness of the top raft layers."
  3796. msgstr "Üst radye katmanlarının katman kalınlığı."
  3797. #: fdmprinter.def.json
  3798. msgctxt "raft_surface_line_width label"
  3799. msgid "Raft Top Line Width"
  3800. msgstr "Radyenin Üst Hat Genişliği"
  3801. #: fdmprinter.def.json
  3802. msgctxt "raft_surface_line_width description"
  3803. msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth."
  3804. msgstr "Radyenin üst yüzeyindeki hatların genişliği. Radyenin üstünün pürüzsüz olması için bunlar ince hat olabilir."
  3805. #: fdmprinter.def.json
  3806. msgctxt "raft_surface_line_spacing label"
  3807. msgid "Raft Top Spacing"
  3808. msgstr "Radyenin Üst Boşluğu"
  3809. #: fdmprinter.def.json
  3810. msgctxt "raft_surface_line_spacing description"
  3811. msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid."
  3812. msgstr "Üst radye katmanları için radye hatları arasındaki mesafe. Yüzeyin katı olabilmesi için aralık hat genişliğine eşit olmalıdır."
  3813. #: fdmprinter.def.json
  3814. msgctxt "raft_interface_layers label"
  3815. msgid "Raft Middle Layers"
  3816. msgstr "Radye Orta Katmanları"
  3817. #: fdmprinter.def.json
  3818. msgctxt "raft_interface_layers description"
  3819. msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft."
  3820. msgstr "Radyenin tabanı ve yüzeyi arasındaki katman sayısıdır. Bunlar radyenin temel kalınlığını oluşturur. Bu değerin artırılması daha kalın ve sağlam bir radye oluşturur."
  3821. #: fdmprinter.def.json
  3822. msgctxt "raft_interface_thickness label"
  3823. msgid "Raft Middle Thickness"
  3824. msgstr "Radye Orta Kalınlığı"
  3825. #: fdmprinter.def.json
  3826. msgctxt "raft_interface_thickness description"
  3827. msgid "Layer thickness of the middle raft layer."
  3828. msgstr "Radyenin orta katmanının katman kalınlığı."
  3829. #: fdmprinter.def.json
  3830. msgctxt "raft_interface_line_width label"
  3831. msgid "Raft Middle Line Width"
  3832. msgstr "Radyenin Orta Hat Genişliği"
  3833. #: fdmprinter.def.json
  3834. msgctxt "raft_interface_line_width description"
  3835. msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate."
  3836. msgstr "Radyenin orta katmanındaki hatların genişliği. İkinci katmanın daha fazla sıkılması hatların yapı levhasına yapışmasına neden olur."
  3837. #: fdmprinter.def.json
  3838. msgctxt "raft_interface_line_spacing label"
  3839. msgid "Raft Middle Spacing"
  3840. msgstr "Radye Orta Boşluğu"
  3841. #: fdmprinter.def.json
  3842. msgctxt "raft_interface_line_spacing description"
  3843. msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers."
  3844. msgstr "Radyenin orta katmanı için radye hatları arasındaki mesafe. Ortadaki aralığın oldukça geniş olması gerekirken, üst radye katmanlarını desteklemek için de yeteri kadar yoğun olması gerekir."
  3845. #: fdmprinter.def.json
  3846. msgctxt "raft_base_thickness label"
  3847. msgid "Raft Base Thickness"
  3848. msgstr "Radye Taban Kalınlığı"
  3849. #: fdmprinter.def.json
  3850. msgctxt "raft_base_thickness description"
  3851. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  3852. msgstr "Radyenin taban katmanının katman kalınlığı. Bu, yazıcı yapı levhasına sıkıca yapışan kalın bir katman olmalıdır."
  3853. #: fdmprinter.def.json
  3854. msgctxt "raft_base_line_width label"
  3855. msgid "Raft Base Line Width"
  3856. msgstr "Radyenin Taban Hat Genişliği"
  3857. #: fdmprinter.def.json
  3858. msgctxt "raft_base_line_width description"
  3859. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3860. msgstr "Radyenin taban katmanındaki hatların genişliği. Bunlar, yapı levhasına yapışma işlemine yardımcı olan kalın hatlar olmalıdır."
  3861. #: fdmprinter.def.json
  3862. msgctxt "raft_base_line_spacing label"
  3863. msgid "Raft Base Line Spacing"
  3864. msgstr "Radye Taban Hat Genişliği"
  3865. #: fdmprinter.def.json
  3866. msgctxt "raft_base_line_spacing description"
  3867. msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate."
  3868. msgstr "Radyenin taban katmanı için radye hatları arasındaki mesafe. Geniş aralık bırakılması radyenin yapı levhasından kolayca kaldırılmasını sağlar."
  3869. #: fdmprinter.def.json
  3870. msgctxt "raft_speed label"
  3871. msgid "Raft Print Speed"
  3872. msgstr "Radye Yazdırma Hızı"
  3873. #: fdmprinter.def.json
  3874. msgctxt "raft_speed description"
  3875. msgid "The speed at which the raft is printed."
  3876. msgstr "Radyenin yazdırıldığı hız."
  3877. #: fdmprinter.def.json
  3878. msgctxt "raft_surface_speed label"
  3879. msgid "Raft Top Print Speed"
  3880. msgstr "Radye Üst Yazdırma Hızı"
  3881. #: fdmprinter.def.json
  3882. msgctxt "raft_surface_speed description"
  3883. msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines."
  3884. msgstr "Radye katmanlarının yazdırıldığı hız. Nozülün bitişik yüzey hatlarını yavaşça düzeltebilmesi için, bu kısımlar biraz daha yavaş yazdırılmalıdır."
  3885. #: fdmprinter.def.json
  3886. msgctxt "raft_interface_speed label"
  3887. msgid "Raft Middle Print Speed"
  3888. msgstr "Radyenin Orta Yazdırma Hızı"
  3889. #: fdmprinter.def.json
  3890. msgctxt "raft_interface_speed description"
  3891. msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  3892. msgstr "Orta radye katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır."
  3893. #: fdmprinter.def.json
  3894. msgctxt "raft_base_speed label"
  3895. msgid "Raft Base Print Speed"
  3896. msgstr "Radyenin Taban Yazdırma Hızı"
  3897. #: fdmprinter.def.json
  3898. msgctxt "raft_base_speed description"
  3899. msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  3900. msgstr "Radyenin taban katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır."
  3901. #: fdmprinter.def.json
  3902. msgctxt "raft_acceleration label"
  3903. msgid "Raft Print Acceleration"
  3904. msgstr "Radye Yazdırma İvmesi"
  3905. #: fdmprinter.def.json
  3906. msgctxt "raft_acceleration description"
  3907. msgid "The acceleration with which the raft is printed."
  3908. msgstr "Radyenin yazdırıldığı ivme."
  3909. #: fdmprinter.def.json
  3910. msgctxt "raft_surface_acceleration label"
  3911. msgid "Raft Top Print Acceleration"
  3912. msgstr "Radye Üst Yazdırma İvmesi"
  3913. #: fdmprinter.def.json
  3914. msgctxt "raft_surface_acceleration description"
  3915. msgid "The acceleration with which the top raft layers are printed."
  3916. msgstr "Üst radye katmanların yazdırıldığı ivme."
  3917. #: fdmprinter.def.json
  3918. msgctxt "raft_interface_acceleration label"
  3919. msgid "Raft Middle Print Acceleration"
  3920. msgstr "Radyenin Orta Yazdırma İvmesi"
  3921. #: fdmprinter.def.json
  3922. msgctxt "raft_interface_acceleration description"
  3923. msgid "The acceleration with which the middle raft layer is printed."
  3924. msgstr "Orta radye katmanının yazdırıldığı ivme."
  3925. #: fdmprinter.def.json
  3926. msgctxt "raft_base_acceleration label"
  3927. msgid "Raft Base Print Acceleration"
  3928. msgstr "Radyenin Taban Yazdırma İvmesi"
  3929. #: fdmprinter.def.json
  3930. msgctxt "raft_base_acceleration description"
  3931. msgid "The acceleration with which the base raft layer is printed."
  3932. msgstr "Taban radye katmanının yazdırıldığı ivme."
  3933. #: fdmprinter.def.json
  3934. msgctxt "raft_jerk label"
  3935. msgid "Raft Print Jerk"
  3936. msgstr "Radye Yazdırma Salınımı"
  3937. #: fdmprinter.def.json
  3938. msgctxt "raft_jerk description"
  3939. msgid "The jerk with which the raft is printed."
  3940. msgstr "Radyenin yazdırıldığı salınım."
  3941. #: fdmprinter.def.json
  3942. msgctxt "raft_surface_jerk label"
  3943. msgid "Raft Top Print Jerk"
  3944. msgstr "Radye Üst Yazdırma Salınımı"
  3945. #: fdmprinter.def.json
  3946. msgctxt "raft_surface_jerk description"
  3947. msgid "The jerk with which the top raft layers are printed."
  3948. msgstr "Üst radye katmanların yazdırıldığı salınım."
  3949. #: fdmprinter.def.json
  3950. msgctxt "raft_interface_jerk label"
  3951. msgid "Raft Middle Print Jerk"
  3952. msgstr "Radyenin Orta Yazdırma Salınımı"
  3953. #: fdmprinter.def.json
  3954. msgctxt "raft_interface_jerk description"
  3955. msgid "The jerk with which the middle raft layer is printed."
  3956. msgstr "Orta radye katmanının yazdırıldığı salınım."
  3957. #: fdmprinter.def.json
  3958. msgctxt "raft_base_jerk label"
  3959. msgid "Raft Base Print Jerk"
  3960. msgstr "Radyenin Taban Yazdırma Salınımı"
  3961. #: fdmprinter.def.json
  3962. msgctxt "raft_base_jerk description"
  3963. msgid "The jerk with which the base raft layer is printed."
  3964. msgstr "Taban radye katmanının yazdırıldığı ivmesi değişimi."
  3965. #: fdmprinter.def.json
  3966. msgctxt "raft_fan_speed label"
  3967. msgid "Raft Fan Speed"
  3968. msgstr "Radye Fan Hızı"
  3969. #: fdmprinter.def.json
  3970. msgctxt "raft_fan_speed description"
  3971. msgid "The fan speed for the raft."
  3972. msgstr "Radye için fan hızı."
  3973. #: fdmprinter.def.json
  3974. msgctxt "raft_surface_fan_speed label"
  3975. msgid "Raft Top Fan Speed"
  3976. msgstr "Radye Üst Fan Hızı"
  3977. #: fdmprinter.def.json
  3978. msgctxt "raft_surface_fan_speed description"
  3979. msgid "The fan speed for the top raft layers."
  3980. msgstr "Üst radye katmanları için fan hızı."
  3981. #: fdmprinter.def.json
  3982. msgctxt "raft_interface_fan_speed label"
  3983. msgid "Raft Middle Fan Speed"
  3984. msgstr "Radyenin Orta Fan Hızı"
  3985. #: fdmprinter.def.json
  3986. msgctxt "raft_interface_fan_speed description"
  3987. msgid "The fan speed for the middle raft layer."
  3988. msgstr "Radyenin orta katmanı için fan hızı."
  3989. #: fdmprinter.def.json
  3990. msgctxt "raft_base_fan_speed label"
  3991. msgid "Raft Base Fan Speed"
  3992. msgstr "Radyenin Taban Fan Hızı"
  3993. #: fdmprinter.def.json
  3994. msgctxt "raft_base_fan_speed description"
  3995. msgid "The fan speed for the base raft layer."
  3996. msgstr "Radyenin taban katmanı için fan hızı."
  3997. #: fdmprinter.def.json
  3998. msgctxt "dual label"
  3999. msgid "Dual Extrusion"
  4000. msgstr "İkili ekstrüzyon"
  4001. #: fdmprinter.def.json
  4002. msgctxt "dual description"
  4003. msgid "Settings used for printing with multiple extruders."
  4004. msgstr "Çoklu ekstruderler ile yapılan yazdırmalar için kullanılan ayarlar."
  4005. #: fdmprinter.def.json
  4006. msgctxt "prime_tower_enable label"
  4007. msgid "Enable Prime Tower"
  4008. msgstr "İlk Direği Etkinleştir"
  4009. #: fdmprinter.def.json
  4010. msgctxt "prime_tower_enable description"
  4011. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  4012. msgstr "Malzemenin hazırlanmasına yardımcı olan yazıcının yanındaki direği her nozül değişiminden sonra yazdırın."
  4013. #: fdmprinter.def.json
  4014. msgctxt "prime_tower_size label"
  4015. msgid "Prime Tower Size"
  4016. msgstr "İlk Direk Boyutu"
  4017. #: fdmprinter.def.json
  4018. msgctxt "prime_tower_size description"
  4019. msgid "The width of the prime tower."
  4020. msgstr "İlk Direk Genişliği."
  4021. #: fdmprinter.def.json
  4022. msgctxt "prime_tower_min_volume label"
  4023. msgid "Prime Tower Minimum Volume"
  4024. msgstr "İlk Direğin Minimum Hacmi"
  4025. #: fdmprinter.def.json
  4026. msgctxt "prime_tower_min_volume description"
  4027. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  4028. msgstr "Yeterince malzeme temizlemek için ilk direğin her bir katmanı için minimum hacim."
  4029. #: fdmprinter.def.json
  4030. msgctxt "prime_tower_position_x label"
  4031. msgid "Prime Tower X Position"
  4032. msgstr "İlk Direk X Konumu"
  4033. #: fdmprinter.def.json
  4034. msgctxt "prime_tower_position_x description"
  4035. msgid "The x coordinate of the position of the prime tower."
  4036. msgstr "İlk direk konumunun x koordinatı."
  4037. #: fdmprinter.def.json
  4038. msgctxt "prime_tower_position_y label"
  4039. msgid "Prime Tower Y Position"
  4040. msgstr "İlk Direk Y Konumu"
  4041. #: fdmprinter.def.json
  4042. msgctxt "prime_tower_position_y description"
  4043. msgid "The y coordinate of the position of the prime tower."
  4044. msgstr "İlk direk konumunun y koordinatı."
  4045. #: fdmprinter.def.json
  4046. msgctxt "prime_tower_wipe_enabled label"
  4047. msgid "Wipe Inactive Nozzle on Prime Tower"
  4048. msgstr "İlk Direkteki Sürme İnaktif Nozülü"
  4049. #: fdmprinter.def.json
  4050. msgctxt "prime_tower_wipe_enabled description"
  4051. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  4052. msgstr "Bir nozül ile ilk direği yazdırdıktan sonra, diğer nozülden ilk direğe sızdırılan malzemeyi silin."
  4053. #: fdmprinter.def.json
  4054. msgctxt "prime_tower_brim_enable label"
  4055. msgid "Prime Tower Brim"
  4056. msgstr "Astarlama Direği Kenarı"
  4057. #: fdmprinter.def.json
  4058. msgctxt "prime_tower_brim_enable description"
  4059. msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type."
  4060. msgstr "Model ihtiyaç duymasa da astarlama direkleri bir kenarın sağladığı ekstra yapışkanlığa ihtiyaç duyabilir. Şu anda \"radye\" yapışma tipi ile birlikte kullanılamamaktadır."
  4061. #: fdmprinter.def.json
  4062. msgctxt "ooze_shield_enabled label"
  4063. msgid "Enable Ooze Shield"
  4064. msgstr "Sızdırma Kalkanını Etkinleştir"
  4065. #: fdmprinter.def.json
  4066. msgctxt "ooze_shield_enabled description"
  4067. msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle."
  4068. msgstr "Dış sızdırma kalkanını etkinleştirir. Modelin etrafında, ilk nozül ile aynı yükseklikte olması halinde ikinci bir nozülü temizleyebilecek olan bir kalkan oluşturacaktır."
  4069. #: fdmprinter.def.json
  4070. msgctxt "ooze_shield_angle label"
  4071. msgid "Ooze Shield Angle"
  4072. msgstr "Sızdırma Kalkanı Açısı"
  4073. #: fdmprinter.def.json
  4074. msgctxt "ooze_shield_angle description"
  4075. msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material."
  4076. msgstr "Sızdırma kalkanında bir bölümün sahip olacağı en büyük açı. Dikey 0 derece ve yatay 90 derece. Daha küçük bir açı sızdırma kalkanının daha sorunsuz olmasını sağlarken daha fazla malzeme kullanılmasına yol açar."
  4077. #: fdmprinter.def.json
  4078. msgctxt "ooze_shield_dist label"
  4079. msgid "Ooze Shield Distance"
  4080. msgstr "Sızdırma Kalkanı Mesafesi"
  4081. #: fdmprinter.def.json
  4082. msgctxt "ooze_shield_dist description"
  4083. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  4084. msgstr "Sızdırma kalkanını X/Y yönlerindeki baskıya mesafesi."
  4085. #: fdmprinter.def.json
  4086. msgctxt "switch_extruder_retraction_amount label"
  4087. msgid "Nozzle Switch Retraction Distance"
  4088. msgstr "Nozül Anahtarı Geri Çekme Mesafesi"
  4089. #: fdmprinter.def.json
  4090. msgctxt "switch_extruder_retraction_amount description"
  4091. msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  4092. msgstr "Ekstrüderler değiştirilirken oluşan geri çekme miktarı. Geri çekme yoksa 0 olarak ayarlayın. Bu genellikle ısı bölgesinin uzunluğuna eşittir."
  4093. #: fdmprinter.def.json
  4094. msgctxt "switch_extruder_retraction_speeds label"
  4095. msgid "Nozzle Switch Retraction Speed"
  4096. msgstr "Nozül Anahtarı Geri Çekme Hızı"
  4097. #: fdmprinter.def.json
  4098. msgctxt "switch_extruder_retraction_speeds description"
  4099. msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
  4100. msgstr "Filamanın geri çekildiği hız. Daha yüksek bir geri çekme hızı daha çok işe yarar, fakat çok yüksek geri çekme hızı filaman aşınmasına neden olabilir."
  4101. #: fdmprinter.def.json
  4102. msgctxt "switch_extruder_retraction_speed label"
  4103. msgid "Nozzle Switch Retract Speed"
  4104. msgstr "Nozül Değişiminin Geri Çekme Hızı"
  4105. #: fdmprinter.def.json
  4106. msgctxt "switch_extruder_retraction_speed description"
  4107. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  4108. msgstr "Nozül değişiminin çekmesi sırasında filamanın geri çekildiği hız."
  4109. #: fdmprinter.def.json
  4110. msgctxt "switch_extruder_prime_speed label"
  4111. msgid "Nozzle Switch Prime Speed"
  4112. msgstr "Nozül Değişiminin İlk Hızı"
  4113. #: fdmprinter.def.json
  4114. msgctxt "switch_extruder_prime_speed description"
  4115. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  4116. msgstr "Nozül değişiminin çekmesi sonucunda filamanın geriye doğru itildiği hız."
  4117. #: fdmprinter.def.json
  4118. msgctxt "switch_extruder_extra_prime_amount label"
  4119. msgid "Nozzle Switch Extra Prime Amount"
  4120. msgstr "Nozül Değişimiyle Çalışmaya Hazırlanacak Ek Miktar"
  4121. #: fdmprinter.def.json
  4122. msgctxt "switch_extruder_extra_prime_amount description"
  4123. msgid "Extra material to prime after nozzle switching."
  4124. msgstr "Nozül değişiminin ardından çalışmaya hazırlanacak ek malzemedir."
  4125. #: fdmprinter.def.json
  4126. msgctxt "meshfix label"
  4127. msgid "Mesh Fixes"
  4128. msgstr "Ağ Onarımları"
  4129. #: fdmprinter.def.json
  4130. msgctxt "meshfix description"
  4131. msgid "Make the meshes more suited for 3D printing."
  4132. msgstr "Kafesleri 3D baskı için daha uygun hale getirir."
  4133. #: fdmprinter.def.json
  4134. msgctxt "meshfix_union_all label"
  4135. msgid "Union Overlapping Volumes"
  4136. msgstr "Bağlantı Çakışma Hacimleri"
  4137. #: fdmprinter.def.json
  4138. msgctxt "meshfix_union_all description"
  4139. msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear."
  4140. msgstr "Bir örgü içinde çakışan hacimlerden kaynaklanan iç geometriyi yok sayın ve hacimleri tek bir hacim olarak yazdırın. Bu durum, istenmeyen iç boşlukların kaybolmasını sağlar."
  4141. #: fdmprinter.def.json
  4142. msgctxt "meshfix_union_all_remove_holes label"
  4143. msgid "Remove All Holes"
  4144. msgstr "Tüm Boşlukları Kaldır"
  4145. #: fdmprinter.def.json
  4146. msgctxt "meshfix_union_all_remove_holes description"
  4147. msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below."
  4148. msgstr "Her katmandaki boşlukları ortadan kaldırır ve sadece dış şekli korur. Görünmez tüm iç geometriyi yok sayar. Bununla birlikte, üstten ve alttan görünebilen katman boşluklarını da göz ardı eder."
  4149. #: fdmprinter.def.json
  4150. msgctxt "meshfix_extensive_stitching label"
  4151. msgid "Extensive Stitching"
  4152. msgstr "Geniş Dikiş"
  4153. #: fdmprinter.def.json
  4154. msgctxt "meshfix_extensive_stitching description"
  4155. msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time."
  4156. msgstr "Geniş Dikiş, bitişik poligonlarla dikişleri kapatarak ağdaki açık boşlukların dikmeye çalışır. Bu seçenek çok fazla işlem süresi ortaya çıkarabilir."
  4157. #: fdmprinter.def.json
  4158. msgctxt "meshfix_keep_open_polygons label"
  4159. msgid "Keep Disconnected Faces"
  4160. msgstr "Bağlı Olmayan Yüzleri Tut"
  4161. #: fdmprinter.def.json
  4162. msgctxt "meshfix_keep_open_polygons description"
  4163. msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code."
  4164. msgstr "Normal koşullarda, Cura ağdaki küçük boşlukları diker ve büyük boşluklu katman parçalarını ortadan kaldırır. Bu seçeneği etkinleştirmek, dikilemeyen parçaları muhafaza eder. Bu seçenek, hiçbir işlemin uygun bir g-code oluşturamaması durumunda başvurulacak son seçenek olarak kullanılmalıdır."
  4165. #: fdmprinter.def.json
  4166. msgctxt "multiple_mesh_overlap label"
  4167. msgid "Merged Meshes Overlap"
  4168. msgstr "Birleştirilmiş Bileşim Çakışması"
  4169. #: fdmprinter.def.json
  4170. msgctxt "multiple_mesh_overlap description"
  4171. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  4172. msgstr "Birbirine dokunan örgülerin az oranda üst üste binmesini sağlayın. Böylelikle bunlar daha iyi birleşebilir."
  4173. #: fdmprinter.def.json
  4174. msgctxt "carve_multiple_volumes label"
  4175. msgid "Remove Mesh Intersection"
  4176. msgstr "Bileşim Kesişimini Kaldırın"
  4177. #: fdmprinter.def.json
  4178. msgctxt "carve_multiple_volumes description"
  4179. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  4180. msgstr "Birden fazla bileşimin çakıştığı alanları kaldırın. Bu, birleştirilmiş ikili malzemeler çakıştığında kullanılabilir."
  4181. #: fdmprinter.def.json
  4182. msgctxt "alternate_carve_order label"
  4183. msgid "Alternate Mesh Removal"
  4184. msgstr "Alternatif Örgü Giderimi"
  4185. #: fdmprinter.def.json
  4186. msgctxt "alternate_carve_order description"
  4187. msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
  4188. msgstr "Çakışan bileşimlerin birbirine karışması için her bir katmanda bileşim kesişimi hacimlerine göre değişiklik yapın. Bu ayarın kapatılması, bir bileşimin diğer bileşimlerden ayrılarak çakışmadaki tüm hacmi almasına neden olur."
  4189. #: fdmprinter.def.json
  4190. msgctxt "remove_empty_first_layers label"
  4191. msgid "Remove Empty First Layers"
  4192. msgstr "Boş İlk Katmanları Kaldır"
  4193. #: fdmprinter.def.json
  4194. msgctxt "remove_empty_first_layers description"
  4195. msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle."
  4196. msgstr "Basılan ilk katmanın altındaki varsa boş katmanları kaldır. Bu ayarın devre dışı bırakılması, Dilimleme Toleransı Dışlayıcı veya Ortalayıcı olarak ayarlanmışsa, boş ilk katmanlar oluşmasına neden olabilir."
  4197. #: fdmprinter.def.json
  4198. msgctxt "meshfix_maximum_resolution label"
  4199. msgid "Maximum Resolution"
  4200. msgstr "Maksimum Çözünürlük"
  4201. #: fdmprinter.def.json
  4202. msgctxt "meshfix_maximum_resolution description"
  4203. msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway."
  4204. msgstr "Bir çizginin dilimlemeden sonraki minimum boyutu. Bu değer artırıldıktan sonra örgünün çözünürlüğü düşer. Bu, yazıcının g-kodunu işlemek için gereken hıza yetişmesine olanak tanır ve örtünün zaten işlenemeyecek ayrıntılarını kaldırarak dilimleme hızını artırır."
  4205. #: fdmprinter.def.json
  4206. msgctxt "meshfix_maximum_travel_resolution label"
  4207. msgid "Maximum Travel Resolution"
  4208. msgstr "Maksimum Hareket Çözünürlüğü"
  4209. #: fdmprinter.def.json
  4210. msgctxt "meshfix_maximum_travel_resolution description"
  4211. msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate."
  4212. msgstr "Bir hareket çizgisinin dilimlemeden sonraki minimum boyutu. Bunu artırmanız durumunda, hareketlerde köşelerin yumuşaklığı azalır. Bu seçenek, yazıcının g-code işlemek için gereken hızı yakalamasına olanak tanıyabilir ancak model kaçınmasının doğruluğunu azaltabilir."
  4213. #: fdmprinter.def.json
  4214. msgctxt "meshfix_maximum_deviation label"
  4215. msgid "Maximum Deviation"
  4216. msgstr "Maksimum Sapma"
  4217. #: fdmprinter.def.json
  4218. msgctxt "meshfix_maximum_deviation description"
  4219. msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true."
  4220. msgstr "Maksimum Çözünürlük ayarı için çözünürlük azaltıldığında izin verilen maksimum sapma. Bu değeri artırırsanız baskının doğruluğu azalacak ancak g kodu daha küçük olacaktır. Maksimum Sapma, Maksimum Çözünürlük için sınırdır, dolayısıyla iki değer çelişirse Maksimum Sapma her zaman doğru kabul edilir."
  4221. #: fdmprinter.def.json
  4222. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  4223. msgid "Maximum Extrusion Area Deviation"
  4224. msgstr "Maksimum Ekstrüzyon Alanı Sapması"
  4225. #: fdmprinter.def.json
  4226. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  4227. msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller."
  4228. msgstr "Ara noktaları düz bir hattan çıkarırken izin verilen maksimum ekstrüzyon alanı sapmasıdır. Bir ara nokta, uzun düz bir hatta genişlik değiştiren nokta olarak hizmet edebilir. Bu nedenle, ara noktanın çıkarılması hattın tek boyutlu bir genişliğe sahip olmasına ve dolayısıyla bir miktar ekstrüzyon alanı kaybetmesine (veya kazanmasına) neden olur. Bu değeri artırırsanız daha fazla ara genişlik değiştiren noktaların kaldırılmasına izin verileceğinden, düz paralel duvarlar arasında az (veya çok) ekstrüzyon görebilirsiniz. Baskının doğruluğu azalacak fakat g kodu daha küçük olacaktır."
  4229. #: fdmprinter.def.json
  4230. msgctxt "blackmagic label"
  4231. msgid "Special Modes"
  4232. msgstr "Özel Modlar"
  4233. #: fdmprinter.def.json
  4234. msgctxt "blackmagic description"
  4235. msgid "Non-traditional ways to print your models."
  4236. msgstr "Modellerinizi yazdırmanın geleneksel olmayan yollarıdır."
  4237. #: fdmprinter.def.json
  4238. msgctxt "print_sequence label"
  4239. msgid "Print Sequence"
  4240. msgstr "Yazdırma Dizisi"
  4241. #: fdmprinter.def.json
  4242. msgctxt "print_sequence description"
  4243. msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
  4244. msgstr "Sıradakine geçmeden önce, tüm modellerin tek seferde bir katmanla mı yazdırılacağı yoksa bir modelin bitmesinin mi bekleneceği. Teker teker modu a) yalnızca bir ekstrüder etkinleştirildiğinde b) tüm modeller baskı kafası aralarında hareket edecek veya nozül ile X/Y eksenleri arasındaki mesafeden az olacak şekilde ayrıldığında kullanılabilir."
  4245. #: fdmprinter.def.json
  4246. msgctxt "print_sequence option all_at_once"
  4247. msgid "All at Once"
  4248. msgstr "Tümünü birden"
  4249. #: fdmprinter.def.json
  4250. msgctxt "print_sequence option one_at_a_time"
  4251. msgid "One at a Time"
  4252. msgstr "Birer Birer"
  4253. #: fdmprinter.def.json
  4254. msgctxt "infill_mesh label"
  4255. msgid "Infill Mesh"
  4256. msgstr "Dolgu Ağı"
  4257. #: fdmprinter.def.json
  4258. msgctxt "infill_mesh description"
  4259. msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh."
  4260. msgstr "Çakıştığı diğer dolgu ağını düzeltmek için bu ağı kullanın. Bu birleşim için olan bölgelerle diğer birleşimlerin dolgu bölgelerini değiştirir. Bu birleşim için Üst/Alt Dış Katmanı değil sadece bir Duvarı yazdırmak önerilir."
  4261. #: fdmprinter.def.json
  4262. msgctxt "infill_mesh_order label"
  4263. msgid "Mesh Processing Rank"
  4264. msgstr "Örgü İşleme Sıralaması"
  4265. #: fdmprinter.def.json
  4266. msgctxt "infill_mesh_order description"
  4267. msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes."
  4268. msgstr "Çakışan birden çok dolgu örgüsünü göz önüne alarak bu örgünün önceliğini belirler. Birden çok dolgu örgüsünün çakıştığı alanlar en yüksek sıralamaya sahip örgünün ayarlarını alacaktır. Daha yüksek sıralamaya sahip dolgu örgüsü, dolgu örgülerinin dolgusunu daha düşük sıralı ve normal örgüler ile değiştirecektir."
  4269. #: fdmprinter.def.json
  4270. msgctxt "cutting_mesh label"
  4271. msgid "Cutting Mesh"
  4272. msgstr "Kesme Örgüsü"
  4273. #: fdmprinter.def.json
  4274. msgctxt "cutting_mesh description"
  4275. msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder."
  4276. msgstr "Bu örgünün hacmini diğer örgülere göre sınırlandırın. Bir örgünün belirli alanlarını farklı ayarlarla ve tamamen farklı bir ekstrüder ile yazdırmak için bunu kullanabilirsiniz."
  4277. #: fdmprinter.def.json
  4278. msgctxt "mold_enabled label"
  4279. msgid "Mold"
  4280. msgstr "Kalıp"
  4281. #: fdmprinter.def.json
  4282. msgctxt "mold_enabled description"
  4283. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  4284. msgstr "Yapı levhası üzerinde modelleri toplayan bir model elde etmek amacıyla döküm olabilecek modelleri kalıp olarak yazdırır."
  4285. #: fdmprinter.def.json
  4286. msgctxt "mold_width label"
  4287. msgid "Minimal Mold Width"
  4288. msgstr "Minimum Kalıp Genişliği"
  4289. #: fdmprinter.def.json
  4290. msgctxt "mold_width description"
  4291. msgid "The minimal distance between the outside of the mold and the outside of the model."
  4292. msgstr "Kalıbın dış tarafı ile modelin dış tarafı arasındaki minimum mesafedir."
  4293. #: fdmprinter.def.json
  4294. msgctxt "mold_roof_height label"
  4295. msgid "Mold Roof Height"
  4296. msgstr "Kalıp Çatı Yüksekliği"
  4297. #: fdmprinter.def.json
  4298. msgctxt "mold_roof_height description"
  4299. msgid "The height above horizontal parts in your model which to print mold."
  4300. msgstr "Kalıp yazdıracak modelinizin yatay kısımlarının üzerindeki yükseklik."
  4301. #: fdmprinter.def.json
  4302. msgctxt "mold_angle label"
  4303. msgid "Mold Angle"
  4304. msgstr "Kalıp Açısı"
  4305. #: fdmprinter.def.json
  4306. msgctxt "mold_angle description"
  4307. msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model."
  4308. msgstr "Kalıp için oluşturulan dış duvarların çıkıntı açısı. 0° kalıbın dış kovanını dikey hale getirirken, 90° ise modelin dış kısmının model konturunu takip etmesini sağlayacaktır."
  4309. #: fdmprinter.def.json
  4310. msgctxt "support_mesh label"
  4311. msgid "Support Mesh"
  4312. msgstr "Destek Örgüsü"
  4313. #: fdmprinter.def.json
  4314. msgctxt "support_mesh description"
  4315. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  4316. msgstr "Destek alanlarını belirlemek için bu örgüyü kullanın. Bu örgü, destek yapısını oluşturmak için kullanılabilir."
  4317. #: fdmprinter.def.json
  4318. msgctxt "anti_overhang_mesh label"
  4319. msgid "Anti Overhang Mesh"
  4320. msgstr "Çıkıntı Önleme Örgüsü"
  4321. #: fdmprinter.def.json
  4322. msgctxt "anti_overhang_mesh description"
  4323. msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure."
  4324. msgstr "Bu bileşimi, modelin hiçbir parçasının çıkıntı olarak algılanmadığı durumları belirlemek için kullanın. Bu, istenmeyen destek yapısını kaldırmak için kullanılabilir."
  4325. #: fdmprinter.def.json
  4326. msgctxt "magic_mesh_surface_mode label"
  4327. msgid "Surface Mode"
  4328. msgstr "Yüzey Modu"
  4329. #: fdmprinter.def.json
  4330. msgctxt "magic_mesh_surface_mode description"
  4331. msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces."
  4332. msgstr "Modeli sadece bir yüzey, gevşek yüzeyli hacim veya hacimler şeklinde işleyin. Normal yazdırma modu sadece kapalı hacimleri yazdırır. “Yüzey”, dolgusu ve üst/alt dış katmanı olmayan birleşim yüzeyini takip eden tek bir duvar yazdırır. “Her ikisi” kapalı hacimleri normal şekilde ve kalan poligonları yüzey şeklinde yazdırır."
  4333. #: fdmprinter.def.json
  4334. msgctxt "magic_mesh_surface_mode option normal"
  4335. msgid "Normal"
  4336. msgstr "Normal"
  4337. #: fdmprinter.def.json
  4338. msgctxt "magic_mesh_surface_mode option surface"
  4339. msgid "Surface"
  4340. msgstr "Yüzey"
  4341. #: fdmprinter.def.json
  4342. msgctxt "magic_mesh_surface_mode option both"
  4343. msgid "Both"
  4344. msgstr "Her İkisi"
  4345. #: fdmprinter.def.json
  4346. msgctxt "magic_spiralize label"
  4347. msgid "Spiralize Outer Contour"
  4348. msgstr "Spiral Dış Çevre"
  4349. #: fdmprinter.def.json
  4350. msgctxt "magic_spiralize description"
  4351. msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part."
  4352. msgstr "Dış kenarın Z hareketini helezon şeklinde düzeltir. Böylece yazdırmanın tamamında sabit bir Z artışı oluşur. Bu özellik katı bir modeli, tabanı katı tek bir duvar yazdırmasına dönüştürür. Bu özelliğin sadece tek bir parça içeren tüm tabakalarda etkinleştirilmesi gerekir."
  4353. #: fdmprinter.def.json
  4354. msgctxt "smooth_spiralized_contours label"
  4355. msgid "Smooth Spiralized Contours"
  4356. msgstr "Helezon Şeklinde Düzeltme"
  4357. #: fdmprinter.def.json
  4358. msgctxt "smooth_spiralized_contours description"
  4359. msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details."
  4360. msgstr "Z dikişinin görünürlüğünü azaltmak için helezon şeklindeki konturları düzeltin (Z dikişi baskıda zor görünmeli ancak katman görünümünde görünür olmalıdır). Düzeltme işleminin ince yüzey detaylarında bulanıklığa neden olabileceğini göz önünde bulundurun."
  4361. #: fdmprinter.def.json
  4362. msgctxt "relative_extrusion label"
  4363. msgid "Relative Extrusion"
  4364. msgstr "Bağıl Ekstrüzyon"
  4365. #: fdmprinter.def.json
  4366. msgctxt "relative_extrusion description"
  4367. msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output."
  4368. msgstr "Mutlak ekstrüzyon yerine bağıl ekstrüzyon uygulayın. Bağıl E-adımlarının uygulanması, g-code’un sonradan işlenmesini kolaylaştırır. Ancak bu, tüm yazıcılar tarafından desteklenmemektedir ve mutlak E-adımları ile karşılaştırıldığında birikmiş malzemenin miktarında hafif farklılıklar yaratabilir. Bu ayara bakılmaksızın, herhangi bir g-code komut dosyası çıkartılmadan önce ekstrüzyon modu her zaman mutlak değere ayarlı olacaktır."
  4369. #: fdmprinter.def.json
  4370. msgctxt "experimental label"
  4371. msgid "Experimental"
  4372. msgstr "Deneysel"
  4373. #: fdmprinter.def.json
  4374. msgctxt "experimental description"
  4375. msgid "Features that haven't completely been fleshed out yet."
  4376. msgstr "Henüz tamamen detaylandırılmamış özelliklerdir."
  4377. #: fdmprinter.def.json
  4378. msgctxt "slicing_tolerance label"
  4379. msgid "Slicing Tolerance"
  4380. msgstr "Dilimleme Toleransı"
  4381. #: fdmprinter.def.json
  4382. msgctxt "slicing_tolerance description"
  4383. msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface."
  4384. msgstr "Dilimlenmiş katmanlardaki dikey tolerans. Bir katmanın konturları her katmanın kalınlığının ortasından enine kesitler (Ortalayan) alınarak normal şekilde oluşturulur. Alternatif olarak, her katman, katmanın tüm kalınlığı boyunca hacmin iç kısmına düşen alanlara (Dışlayan) sahip olabilir; veya bir katman, katman içinde herhangi bir yere düşen alanlara (İçeren) sahip olabilir. İçeren seçeneğinde katmandaki çoğu ayrıntı korunur, Dışlayan seçeneği en iyi uyum içindir ve Ortalayan seçeneği ise katmanı orijinal yüzeyin en yakınında tutar."
  4385. #: fdmprinter.def.json
  4386. msgctxt "slicing_tolerance option middle"
  4387. msgid "Middle"
  4388. msgstr "Ortalayıcı"
  4389. #: fdmprinter.def.json
  4390. msgctxt "slicing_tolerance option exclusive"
  4391. msgid "Exclusive"
  4392. msgstr "Dışlayıcı"
  4393. #: fdmprinter.def.json
  4394. msgctxt "slicing_tolerance option inclusive"
  4395. msgid "Inclusive"
  4396. msgstr "Kapsayıcı"
  4397. #: fdmprinter.def.json
  4398. msgctxt "roofing_line_width label"
  4399. msgid "Top Surface Skin Line Width"
  4400. msgstr "Üst Yüzey Hat Genişliği"
  4401. #: fdmprinter.def.json
  4402. msgctxt "roofing_line_width description"
  4403. msgid "Width of a single line of the areas at the top of the print."
  4404. msgstr "Baskının üst tarafında bulunan alanlardaki tek bir hattın genişliği."
  4405. #: fdmprinter.def.json
  4406. msgctxt "roofing_pattern label"
  4407. msgid "Top Surface Skin Pattern"
  4408. msgstr "Üst Yüzey Şekli"
  4409. #: fdmprinter.def.json
  4410. msgctxt "roofing_pattern description"
  4411. msgid "The pattern of the top most layers."
  4412. msgstr "En üst yüzeyin şekli."
  4413. #: fdmprinter.def.json
  4414. msgctxt "roofing_pattern option lines"
  4415. msgid "Lines"
  4416. msgstr "Çizgiler"
  4417. #: fdmprinter.def.json
  4418. msgctxt "roofing_pattern option concentric"
  4419. msgid "Concentric"
  4420. msgstr "Eş merkezli"
  4421. #: fdmprinter.def.json
  4422. msgctxt "roofing_pattern option zigzag"
  4423. msgid "Zig Zag"
  4424. msgstr "Zikzak"
  4425. #: fdmprinter.def.json
  4426. msgctxt "roofing_monotonic label"
  4427. msgid "Monotonic Top Surface Order"
  4428. msgstr "Monotonik Üst Yüzey Düzeni"
  4429. #: fdmprinter.def.json
  4430. msgctxt "roofing_monotonic description"
  4431. msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  4432. msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst yüzey hatlarının baskısını yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar."
  4433. #: fdmprinter.def.json
  4434. msgctxt "roofing_angles label"
  4435. msgid "Top Surface Skin Line Directions"
  4436. msgstr "Üst Yüzey Hat Yönleri"
  4437. #: fdmprinter.def.json
  4438. msgctxt "roofing_angles description"
  4439. msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  4440. msgstr "Üst yüzey katmanları çizgi veya zikzak biçimindeyken kullanılacak tam sayı hat yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında tekrar başa dönülür. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar (45 ve 135 derece) kullanılır."
  4441. #: fdmprinter.def.json
  4442. msgctxt "infill_enable_travel_optimization label"
  4443. msgid "Infill Travel Optimization"
  4444. msgstr "Dolgu Hareket Optimizasyonu"
  4445. #: fdmprinter.def.json
  4446. msgctxt "infill_enable_travel_optimization description"
  4447. msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased."
  4448. msgstr "Aktifleştirildiğinde, dolgu hatlarının baskı düzeni, hareketi azaltmak için optimize edilir. Elde edilen hareket zamanındaki azalma dilimlenen modele, dolgu şekline ve yoğunluğuna vs. bağlıdır. Birçok ufak dolgu bölgesine sahip bazı modeller için modelin dilimlenme süresi önemli ölçüde artabilir."
  4449. #: fdmprinter.def.json
  4450. msgctxt "material_flow_dependent_temperature label"
  4451. msgid "Auto Temperature"
  4452. msgstr "Otomatik Sıcaklık"
  4453. #: fdmprinter.def.json
  4454. msgctxt "material_flow_dependent_temperature description"
  4455. msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  4456. msgstr "Katmanın ortalama akış hızıyla otomatik olarak her katman için sıcaklığı değiştirir."
  4457. #: fdmprinter.def.json
  4458. msgctxt "material_flow_temp_graph label"
  4459. msgid "Flow Temperature Graph"
  4460. msgstr "Akış Sıcaklık Grafiği"
  4461. #: fdmprinter.def.json
  4462. msgctxt "material_flow_temp_graph description"
  4463. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  4464. msgstr "Malzeme akışını (saniye başına mm3 bazında) sıcaklığa (santigrat derece) bağlayan veri."
  4465. #: fdmprinter.def.json
  4466. msgctxt "minimum_polygon_circumference label"
  4467. msgid "Minimum Polygon Circumference"
  4468. msgstr "Minimum Poligon Çevre Uzunluğu"
  4469. #: fdmprinter.def.json
  4470. msgctxt "minimum_polygon_circumference description"
  4471. msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details."
  4472. msgstr "Bu miktardan daha kısa çevre uzunluğuna sahip dilimlenmiş katmanlardaki poligonlar filtre ile elenecektir. Daha düşük değerler dilimleme süresini uzatacak ancak daha yüksek çözünürlükte bir ağ oluşturacaktır. Genellikle yüksek çözünürlüklü SLA yazıcılarına yöneliktir ve çok fazla detay içeren çok küçük 3D modellerinde kullanılır."
  4473. #: fdmprinter.def.json
  4474. msgctxt "support_skip_some_zags label"
  4475. msgid "Break Up Support In Chunks"
  4476. msgstr "Parçalarda Döküm Desteği"
  4477. #: fdmprinter.def.json
  4478. msgctxt "support_skip_some_zags description"
  4479. msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern."
  4480. msgstr "Destek yapısının daha kolay kırılması için bazı destek hattı bağlantılarını atlayın. Bu ayar, Zikzak destek dolgusu şekli için geçerlidir."
  4481. #: fdmprinter.def.json
  4482. msgctxt "support_skip_zag_per_mm label"
  4483. msgid "Support Chunk Size"
  4484. msgstr "Destek Parçasının Boyutu"
  4485. #: fdmprinter.def.json
  4486. msgctxt "support_skip_zag_per_mm description"
  4487. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  4488. msgstr "Destek yapısının daha kolay kırılması için her N milimetresinde bir destek hatları arasında bağlantı atlayın."
  4489. #: fdmprinter.def.json
  4490. msgctxt "support_zag_skip_count label"
  4491. msgid "Support Chunk Line Count"
  4492. msgstr "Destek Parçası Hattı Sayısı"
  4493. #: fdmprinter.def.json
  4494. msgctxt "support_zag_skip_count description"
  4495. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  4496. msgstr "Destek yapısının daha kolay kırılması için her N bağlantı hattında bir zikzak atlayın."
  4497. #: fdmprinter.def.json
  4498. msgctxt "draft_shield_enabled label"
  4499. msgid "Enable Draft Shield"
  4500. msgstr "Cereyan Kalkanını Etkinleştir"
  4501. #: fdmprinter.def.json
  4502. msgctxt "draft_shield_enabled description"
  4503. msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily."
  4504. msgstr "Modelin etrafında (sıcak) hava ve kalkanlara dışarıdaki hava akımına karşı set çeken bir duvar oluşturur. Özellikle kolayca eğrilebilen malzemeler için kullanışlıdır."
  4505. #: fdmprinter.def.json
  4506. msgctxt "draft_shield_dist label"
  4507. msgid "Draft Shield X/Y Distance"
  4508. msgstr "Cereyan Kalkanı X/Y Mesafesi"
  4509. #: fdmprinter.def.json
  4510. msgctxt "draft_shield_dist description"
  4511. msgid "Distance of the draft shield from the print, in the X/Y directions."
  4512. msgstr "Cereyan kalkanını X/Y yönlerindeki baskıya mesafesi."
  4513. #: fdmprinter.def.json
  4514. msgctxt "draft_shield_height_limitation label"
  4515. msgid "Draft Shield Limitation"
  4516. msgstr "Cereyan Kalkanı Sınırlaması"
  4517. #: fdmprinter.def.json
  4518. msgctxt "draft_shield_height_limitation description"
  4519. msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height."
  4520. msgstr "Cereyan kalkanının yüksekliğini ayarlayın. Cereyan kalkanını model yüksekliğinde veya sınırlı yükseklikte yazdırmayı seçin."
  4521. #: fdmprinter.def.json
  4522. msgctxt "draft_shield_height_limitation option full"
  4523. msgid "Full"
  4524. msgstr "Tam"
  4525. #: fdmprinter.def.json
  4526. msgctxt "draft_shield_height_limitation option limited"
  4527. msgid "Limited"
  4528. msgstr "Sınırlı"
  4529. #: fdmprinter.def.json
  4530. msgctxt "draft_shield_height label"
  4531. msgid "Draft Shield Height"
  4532. msgstr "Cereyan Kalkanı Yüksekliği"
  4533. #: fdmprinter.def.json
  4534. msgctxt "draft_shield_height description"
  4535. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  4536. msgstr "Cereyan kalkanının yükseklik sınırı. Bundan daha fazla bir yükseklikte cereyan kalkanı yazdırılmayacaktır."
  4537. #: fdmprinter.def.json
  4538. msgctxt "conical_overhang_enabled label"
  4539. msgid "Make Overhang Printable"
  4540. msgstr "Çıkıntıyı Yazdırılabilir Yap"
  4541. #: fdmprinter.def.json
  4542. msgctxt "conical_overhang_enabled description"
  4543. msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical."
  4544. msgstr "En az desteğin istenmesi için yazdırılan modelin geometrisini değiştirin. Dik çıkıntılar sığlaşacaktır. Çıkıntılı alanlar daha dikey biçimde olmak için alçalacaktır."
  4545. #: fdmprinter.def.json
  4546. msgctxt "conical_overhang_angle label"
  4547. msgid "Maximum Model Angle"
  4548. msgstr "Maksimum Model Açısı"
  4549. #: fdmprinter.def.json
  4550. msgctxt "conical_overhang_angle description"
  4551. msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way."
  4552. msgstr "Yazdırılabilir yapıldıktan sonra çıkıntıların en büyük açısı. 0° değerindeyken tüm modeller yapı levhasına bağlı bir model parçasıyla değiştirilirken 90° modeli hiçbir şekilde değiştirmez."
  4553. #: fdmprinter.def.json
  4554. msgctxt "conical_overhang_hole_size label"
  4555. msgid "Maximum Overhang Hole Area"
  4556. msgstr "Maksimum Çıkıntı Deliği Alanı"
  4557. #: fdmprinter.def.json
  4558. msgctxt "conical_overhang_hole_size description"
  4559. msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base."
  4560. msgstr "Çıkıntıyı Yazdırılabilir Yap işlemiyle çıkarılmadan önce modelin tabanındaki deliğin maksimum alanı. Bu değerden küçük delikler korunacaktır. 0 mm²'lik değer modellerin tabanındaki tüm delikleri dolduracaktır."
  4561. #: fdmprinter.def.json
  4562. msgctxt "coasting_enable label"
  4563. msgid "Enable Coasting"
  4564. msgstr "Taramayı Etkinleştir"
  4565. #: fdmprinter.def.json
  4566. msgctxt "coasting_enable description"
  4567. msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing."
  4568. msgstr "Tarama, ekstrüzyon yolunun son parçasını hareket parça ile değiştirir. Dizimli azaltmak amacıyla sızdırılan malzeme ekstrüzyon yolunun son parçasını yazdırmak için kullanılır."
  4569. #: fdmprinter.def.json
  4570. msgctxt "coasting_volume label"
  4571. msgid "Coasting Volume"
  4572. msgstr "Tarama Hacmi"
  4573. #: fdmprinter.def.json
  4574. msgctxt "coasting_volume description"
  4575. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  4576. msgstr "Aksi takdirde hacim sızdırılır. Bu değer, genellikle nozül çapının küpüne yakındır."
  4577. #: fdmprinter.def.json
  4578. msgctxt "coasting_min_volume label"
  4579. msgid "Minimum Volume Before Coasting"
  4580. msgstr "Tarama Öncesi Minimum Hacim"
  4581. #: fdmprinter.def.json
  4582. msgctxt "coasting_min_volume description"
  4583. msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume."
  4584. msgstr "Taramaya izin verilmeden önce ekstrüzyon yolunda olması gereken en küçük hacim. Daha küçük ekstrüzyon yolları için bowden tüpünde daha az basınç geliştirilir ve bu nedenle taranan hacim doğrusal olarak ölçeklendirilir. Bu değer her zaman Tarama Değerinden daha büyüktür."
  4585. #: fdmprinter.def.json
  4586. msgctxt "coasting_speed label"
  4587. msgid "Coasting Speed"
  4588. msgstr "Tarama Hızı"
  4589. #: fdmprinter.def.json
  4590. msgctxt "coasting_speed description"
  4591. msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops."
  4592. msgstr "Ekstrüzyon yolu hızına göre tarama sırasındaki hareket hızı. Tarama hareketi sırasında bowden tüpündeki basınç düştüğü için değerin %100’ün altında olması öneriliyor."
  4593. #: fdmprinter.def.json
  4594. msgctxt "cross_infill_pocket_size label"
  4595. msgid "Cross 3D Pocket Size"
  4596. msgstr "Çapraz 3D Cebin Boyutu"
  4597. #: fdmprinter.def.json
  4598. msgctxt "cross_infill_pocket_size description"
  4599. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  4600. msgstr "Şeklin kendisine temas ettiği yüksekliklerde, çapraz 3D şekilde dört yönlü kesişme yerlerinde bulunan ceplerin boyutudur."
  4601. #: fdmprinter.def.json
  4602. msgctxt "cross_infill_density_image label"
  4603. msgid "Cross Infill Density Image"
  4604. msgstr "Çapraz Dolgu Yoğunluğu Görüntüsü"
  4605. #: fdmprinter.def.json
  4606. msgctxt "cross_infill_density_image description"
  4607. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print."
  4608. msgstr "Parlaklık değerlerinin, yazdırma dolgusunun ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu."
  4609. #: fdmprinter.def.json
  4610. msgctxt "cross_support_density_image label"
  4611. msgid "Cross Fill Density Image for Support"
  4612. msgstr "Destek için Çapraz Dolgu Yoğunluğu Görüntüsü"
  4613. #: fdmprinter.def.json
  4614. msgctxt "cross_support_density_image description"
  4615. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  4616. msgstr "Parlaklık değerlerinin, desteğin ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu."
  4617. #: fdmprinter.def.json
  4618. msgctxt "support_conical_enabled label"
  4619. msgid "Enable Conical Support"
  4620. msgstr "Konik Desteği Etkinleştir"
  4621. #: fdmprinter.def.json
  4622. msgctxt "support_conical_enabled description"
  4623. msgid "Make support areas smaller at the bottom than at the overhang."
  4624. msgstr "Alttaki destek alanlarını çıkıntıda olanlardan daha küçük yapın."
  4625. #: fdmprinter.def.json
  4626. msgctxt "support_conical_angle label"
  4627. msgid "Conical Support Angle"
  4628. msgstr "Konik Destek Açısı"
  4629. #: fdmprinter.def.json
  4630. msgctxt "support_conical_angle description"
  4631. msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top."
  4632. msgstr "Konik desteğin eğim açısı. Dikey 0 derece ve yatay 90 derece. Daha küçük açılar desteğin daha sağlam olmasını sağlar, ancak çok fazla malzeme içerir. Negatif açılar destek tabanının üst kısımdan daha geniş olmasına yol açar."
  4633. #: fdmprinter.def.json
  4634. msgctxt "support_conical_min_width label"
  4635. msgid "Conical Support Minimum Width"
  4636. msgstr "Koni Desteğinin Minimum Genişliği"
  4637. #: fdmprinter.def.json
  4638. msgctxt "support_conical_min_width description"
  4639. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  4640. msgstr "Koni desteği tabanının indirildiği minimum genişlik. Küçük genişlikler, destek tabanlarının dengesiz olmasına neden olur."
  4641. #: fdmprinter.def.json
  4642. msgctxt "magic_fuzzy_skin_enabled label"
  4643. msgid "Fuzzy Skin"
  4644. msgstr "Belirsiz Dış Katman"
  4645. #: fdmprinter.def.json
  4646. msgctxt "magic_fuzzy_skin_enabled description"
  4647. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  4648. msgstr "Yüzeyin sert ve belirsiz bir görüntü alması için dış duvarları yazdırırken rastgele titrer."
  4649. #: fdmprinter.def.json
  4650. msgctxt "magic_fuzzy_skin_outside_only label"
  4651. msgid "Fuzzy Skin Outside Only"
  4652. msgstr "Yalnızca Belirsiz Dış Katman"
  4653. #: fdmprinter.def.json
  4654. msgctxt "magic_fuzzy_skin_outside_only description"
  4655. msgid "Jitter only the parts' outlines and not the parts' holes."
  4656. msgstr "Parçalardaki delikleri değil, yalnızca ana hatlarını titretir."
  4657. #: fdmprinter.def.json
  4658. msgctxt "magic_fuzzy_skin_thickness label"
  4659. msgid "Fuzzy Skin Thickness"
  4660. msgstr "Belirsiz Dış Katman Kalınlığı"
  4661. #: fdmprinter.def.json
  4662. msgctxt "magic_fuzzy_skin_thickness description"
  4663. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  4664. msgstr "Titremenin yapılacağı genişlik. İç duvarlar değiştirilmediği için, bunun dış duvar genişliğinin altında tutulması öneriliyor."
  4665. #: fdmprinter.def.json
  4666. msgctxt "magic_fuzzy_skin_point_density label"
  4667. msgid "Fuzzy Skin Density"
  4668. msgstr "Belirsiz Dış Katman Yoğunluğu"
  4669. #: fdmprinter.def.json
  4670. msgctxt "magic_fuzzy_skin_point_density description"
  4671. msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution."
  4672. msgstr "Bir katmandaki her bir poligona tanınan noktaların ortalama yoğunluğu. Poligonların asıl noktalarının çıkarıldığını dikkate alın; bunun sonucunda düşük yoğunluk sonuçları çözünürlük azalmasıyla sonuçlanabilir."
  4673. #: fdmprinter.def.json
  4674. msgctxt "magic_fuzzy_skin_point_dist label"
  4675. msgid "Fuzzy Skin Point Distance"
  4676. msgstr "Belirsiz Dış Katman Noktası Mesafesi"
  4677. #: fdmprinter.def.json
  4678. msgctxt "magic_fuzzy_skin_point_dist description"
  4679. msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness."
  4680. msgstr "Her bir hat dilimine tanıtılan rastgele noktalar arasındaki ortalama mesafe. Poligonların asıl noktalarının çıkarıldığını dikkate alın; bunun sonucunda yüksek pürüzsüzlük sonuçları çözünürlük azalmasıyla sonuçlanabilir. Bu değer, Belirsiz Dış Katman Kalınlığından yüksek olmalıdır."
  4681. #: fdmprinter.def.json
  4682. msgctxt "flow_rate_max_extrusion_offset label"
  4683. msgid "Flow Rate Compensation Max Extrusion Offset"
  4684. msgstr "Akış hızı dengelemesi maksimum ekstrüzyon kayması"
  4685. #: fdmprinter.def.json
  4686. msgctxt "flow_rate_max_extrusion_offset description"
  4687. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  4688. msgstr "Akış hızındaki değişiklikleri telafi etmek için filamentin hareket ettirileceği mm cinsinden maksimum mesafe."
  4689. #: fdmprinter.def.json
  4690. msgctxt "flow_rate_extrusion_offset_factor label"
  4691. msgid "Flow Rate Compensation Factor"
  4692. msgstr "Akış hızı dengeleme çarpanı"
  4693. #: fdmprinter.def.json
  4694. msgctxt "flow_rate_extrusion_offset_factor description"
  4695. msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
  4696. msgstr "Akış hızındaki değişiklikleri telafi edebilmek için filamentin bir saniyelik ekstrüzyonda hareket ettirileceği mesafenin yüzdesi olarak filamentin ne kadar uzağa hareket ettirileceği."
  4697. #: fdmprinter.def.json
  4698. msgctxt "wireframe_enabled label"
  4699. msgid "Wire Printing"
  4700. msgstr "Kablo Yazdırma"
  4701. #: fdmprinter.def.json
  4702. msgctxt "wireframe_enabled description"
  4703. msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines."
  4704. msgstr "“Belli belirsiz” yazdıran seyrek gövdeli bir yapı ile sadece dış yüzeyi yazdırın. Bu işlem, yukarı ve çapraz olarak aşağı yöndeki hatlar ile bağlı olan verilen Z aralıklarındaki modelin çevresini yatay olarak yazdırarak gerçekleştirilir."
  4705. #: fdmprinter.def.json
  4706. msgctxt "wireframe_height label"
  4707. msgid "WP Connection Height"
  4708. msgstr "WP Bağlantı Yüksekliği"
  4709. #: fdmprinter.def.json
  4710. msgctxt "wireframe_height description"
  4711. msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing."
  4712. msgstr "İki yatay bölüm arasındaki yukarı ve çapraz olarak aşağı yöndeki hatların yüksekliği. Net yapının genel yoğunluğunu belirler. Sadece kablo yazdırmaya uygulanır."
  4713. #: fdmprinter.def.json
  4714. msgctxt "wireframe_roof_inset label"
  4715. msgid "WP Roof Inset Distance"
  4716. msgstr "WP Tavan İlave Mesafesi"
  4717. #: fdmprinter.def.json
  4718. msgctxt "wireframe_roof_inset description"
  4719. msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  4720. msgstr "İçerideki ana tavan hattından bağlantı yaparken kapatılan mesafe. Sadece kablo yazdırmaya uygulanır."
  4721. #: fdmprinter.def.json
  4722. msgctxt "wireframe_printspeed label"
  4723. msgid "WP Speed"
  4724. msgstr "WP Hızı"
  4725. #: fdmprinter.def.json
  4726. msgctxt "wireframe_printspeed description"
  4727. msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  4728. msgstr "Malzemeleri sıkarken nozül hareketlerinin hızı. Sadece kablo yazdırmaya uygulanır."
  4729. #: fdmprinter.def.json
  4730. msgctxt "wireframe_printspeed_bottom label"
  4731. msgid "WP Bottom Printing Speed"
  4732. msgstr "WP Alt Yazdırma Hızı"
  4733. #: fdmprinter.def.json
  4734. msgctxt "wireframe_printspeed_bottom description"
  4735. msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  4736. msgstr "Yapı platformuna değen tek katman olan ilk katmanın yazdırılma hızı. Sadece kablo yazdırmaya uygulanır."
  4737. #: fdmprinter.def.json
  4738. msgctxt "wireframe_printspeed_up label"
  4739. msgid "WP Upward Printing Speed"
  4740. msgstr "WP Yukarı Doğru Yazdırma Hızı"
  4741. #: fdmprinter.def.json
  4742. msgctxt "wireframe_printspeed_up description"
  4743. msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  4744. msgstr "“Belli belirsiz” yukarı doğru bir hat yazdırma hızı. Sadece kablo yazdırmaya uygulanır."
  4745. #: fdmprinter.def.json
  4746. msgctxt "wireframe_printspeed_down label"
  4747. msgid "WP Downward Printing Speed"
  4748. msgstr "WP Aşağı Doğru Yazdırma Hızı"
  4749. #: fdmprinter.def.json
  4750. msgctxt "wireframe_printspeed_down description"
  4751. msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  4752. msgstr "Çapraz şekilde aşağı doğru bir hat yazdırma hızı. Sadece kablo yazdırmaya uygulanır."
  4753. #: fdmprinter.def.json
  4754. msgctxt "wireframe_printspeed_flat label"
  4755. msgid "WP Horizontal Printing Speed"
  4756. msgstr "WP Yatay Yazdırma Hızı"
  4757. #: fdmprinter.def.json
  4758. msgctxt "wireframe_printspeed_flat description"
  4759. msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  4760. msgstr "Modelin yatay dış çevresini yazdırma hızı. Sadece kablo yazdırmaya uygulanır."
  4761. #: fdmprinter.def.json
  4762. msgctxt "wireframe_flow label"
  4763. msgid "WP Flow"
  4764. msgstr "WP Akışı"
  4765. #: fdmprinter.def.json
  4766. msgctxt "wireframe_flow description"
  4767. msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  4768. msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır. Sadece kablo yazdırmaya uygulanır."
  4769. #: fdmprinter.def.json
  4770. msgctxt "wireframe_flow_connection label"
  4771. msgid "WP Connection Flow"
  4772. msgstr "WP Bağlantı Akışı"
  4773. #: fdmprinter.def.json
  4774. msgctxt "wireframe_flow_connection description"
  4775. msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  4776. msgstr "Yukarı veya aşağı yönde hareket ederken akış dengelenmesi. Sadece kablo yazdırmaya uygulanır."
  4777. #: fdmprinter.def.json
  4778. msgctxt "wireframe_flow_flat label"
  4779. msgid "WP Flat Flow"
  4780. msgstr "WP Düz Akışı"
  4781. #: fdmprinter.def.json
  4782. msgctxt "wireframe_flow_flat description"
  4783. msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  4784. msgstr "Düz hatlar yazdırılırken akış dengelenmesi. Sadece kablo yazdırmaya uygulanır."
  4785. #: fdmprinter.def.json
  4786. msgctxt "wireframe_top_delay label"
  4787. msgid "WP Top Delay"
  4788. msgstr "WP Üst Gecikme"
  4789. #: fdmprinter.def.json
  4790. msgctxt "wireframe_top_delay description"
  4791. msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  4792. msgstr "Yukarı hattın sertleşmesi için, yukarıya doğru hareketten sonraki gecikme süresi. Sadece kablo yazdırmaya uygulanır."
  4793. #: fdmprinter.def.json
  4794. msgctxt "wireframe_bottom_delay label"
  4795. msgid "WP Bottom Delay"
  4796. msgstr "WP Alt Gecikme"
  4797. #: fdmprinter.def.json
  4798. msgctxt "wireframe_bottom_delay description"
  4799. msgid "Delay time after a downward move. Only applies to Wire Printing."
  4800. msgstr "Aşağı doğru hareketten sonraki bekleme süresi. Sadece kablo yazdırmaya uygulanır."
  4801. #: fdmprinter.def.json
  4802. msgctxt "wireframe_flat_delay label"
  4803. msgid "WP Flat Delay"
  4804. msgstr "WP Düz Gecikme"
  4805. #: fdmprinter.def.json
  4806. msgctxt "wireframe_flat_delay description"
  4807. msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing."
  4808. msgstr "İki yatay dilim arasındaki gecikme süresi. Haha uzun gecikmeler düşüşe neden olduğu halde, bu tür bir gecikme uygulamak bağlantı noktalarındaki önceki katmanlara daha iyi yapışma sağlayabilir. Sadece kablo yazdırmaya uygulanır."
  4809. #: fdmprinter.def.json
  4810. msgctxt "wireframe_up_half_speed label"
  4811. msgid "WP Ease Upward"
  4812. msgstr "WP Kolay Yukarı Çıkma"
  4813. #: fdmprinter.def.json
  4814. msgctxt "wireframe_up_half_speed description"
  4815. msgid ""
  4816. "Distance of an upward move which is extruded with half speed.\n"
  4817. "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  4818. msgstr ""
  4819. "Yarı hızda sıkıştırılmış yukarı doğru hareket mesafesi.\n"
  4820. "Bu katmanlarda malzemeyi çok fazla ısıtmayarak önceki katmanlarda daha iyi yapışma sağlayabilir. Sadece kablo yazdırmaya uygulanır."
  4821. #: fdmprinter.def.json
  4822. msgctxt "wireframe_top_jump label"
  4823. msgid "WP Knot Size"
  4824. msgstr "WP Düğüm Boyutu"
  4825. #: fdmprinter.def.json
  4826. msgctxt "wireframe_top_jump description"
  4827. msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing."
  4828. msgstr "Ardından gelen yatay katmanın daha iyi bir bağlanma şansının olması için, yukarı doğru çıkan hattın ucunda küçük bir düğüm oluşturulur. Sadece kablo yazdırmaya uygulanır."
  4829. #: fdmprinter.def.json
  4830. msgctxt "wireframe_fall_down label"
  4831. msgid "WP Fall Down"
  4832. msgstr "WP Aşağı İnme"
  4833. #: fdmprinter.def.json
  4834. msgctxt "wireframe_fall_down description"
  4835. msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4836. msgstr "Malzemenin yukarı doğru ekstrüzyondan sonra aşağı inme mesafesi. Mesafe telafi edilir. Sadece kablo yazdırmaya uygulanır."
  4837. #: fdmprinter.def.json
  4838. msgctxt "wireframe_drag_along label"
  4839. msgid "WP Drag Along"
  4840. msgstr "WP Sürüklenme"
  4841. #: fdmprinter.def.json
  4842. msgctxt "wireframe_drag_along description"
  4843. msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4844. msgstr "Yukarı yönlü ekstrüzyon materyalinin çapraz şekilde aşağı yönlü ekstrüzyona sürüklendiği mesafe. Mesafe telafi edilir. Sadece kablo yazdırmaya uygulanır."
  4845. #: fdmprinter.def.json
  4846. msgctxt "wireframe_strategy label"
  4847. msgid "WP Strategy"
  4848. msgstr "WP Stratejisi"
  4849. #: fdmprinter.def.json
  4850. msgctxt "wireframe_strategy description"
  4851. msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted."
  4852. msgstr "Art arda gelen iki katmanın her bir bağlantı noktasına bağlı olduğundan emin olma stratejisi. Geri çekme yukarı yöndeki hatların doğru konumda sertleşmesini sağlar ancak filaman aşınmasına neden olabilir. Düğüme bağlanma şansını artırmak ve hattın soğumasını sağlamak için yukarı yöndeki hattın ucunda bir düğüm oluşturulabilir, fakat bu işlem daha yavaş yazdırma hızı gerektirir. Başka bir strateji de yukarı yöndeki hat ucunun düşmesini dengelemektir, ancak hatlar her zaman beklenildiği gibi düşmez."
  4853. #: fdmprinter.def.json
  4854. msgctxt "wireframe_strategy option compensate"
  4855. msgid "Compensate"
  4856. msgstr "Dengele"
  4857. #: fdmprinter.def.json
  4858. msgctxt "wireframe_strategy option knot"
  4859. msgid "Knot"
  4860. msgstr "Düğüm"
  4861. #: fdmprinter.def.json
  4862. msgctxt "wireframe_strategy option retract"
  4863. msgid "Retract"
  4864. msgstr "Geri Çek"
  4865. #: fdmprinter.def.json
  4866. msgctxt "wireframe_straight_before_down label"
  4867. msgid "WP Straighten Downward Lines"
  4868. msgstr "WP Aşağı Yöndeki Hatları Güçlendirme"
  4869. #: fdmprinter.def.json
  4870. msgctxt "wireframe_straight_before_down description"
  4871. msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing."
  4872. msgstr "Yatay hat parçasıyla kaplanan çapraz şekilde aşağı yöndeki hat yüzdesi. Bu, yukarı yöndeki hatların en baştaki noktasının düşmesini engelleyebilir. Sadece kablo yazdırmaya uygulanır."
  4873. #: fdmprinter.def.json
  4874. msgctxt "wireframe_roof_fall_down label"
  4875. msgid "WP Roof Fall Down"
  4876. msgstr "WP Tavandan Aşağı İnme"
  4877. #: fdmprinter.def.json
  4878. msgctxt "wireframe_roof_fall_down description"
  4879. msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing."
  4880. msgstr "“Belli belirsiz” yazdırılan yatay tavan hatlarının yazdırıldıklarındaki düşme mesafesi. Mesafe telafi edilir. Sadece kablo yazdırmaya uygulanır."
  4881. #: fdmprinter.def.json
  4882. msgctxt "wireframe_roof_drag_along label"
  4883. msgid "WP Roof Drag Along"
  4884. msgstr "WP Tavandan Sürüklenme"
  4885. #: fdmprinter.def.json
  4886. msgctxt "wireframe_roof_drag_along description"
  4887. msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing."
  4888. msgstr "Tavanın ana dış kısmına geri gelirken sürüklenen iç kısımdaki bir hattın son parçasının mesafesi. Mesafe telafi edilir. Sadece kablo yazdırmaya uygulanır."
  4889. #: fdmprinter.def.json
  4890. msgctxt "wireframe_roof_outer_delay label"
  4891. msgid "WP Roof Outer Delay"
  4892. msgstr "WP Tavan Dış Gecikmesi"
  4893. #: fdmprinter.def.json
  4894. msgctxt "wireframe_roof_outer_delay description"
  4895. msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing."
  4896. msgstr "Tavanı oluşturacak dış çevresel uzunluklara harcanan zaman. Sürenin daha uzun olması daha iyi bir bağlantı sağlayabilir. Sadece kablo yazdırmaya uygulanır."
  4897. #: fdmprinter.def.json
  4898. msgctxt "wireframe_nozzle_clearance label"
  4899. msgid "WP Nozzle Clearance"
  4900. msgstr "WP Nozül Açıklığı"
  4901. #: fdmprinter.def.json
  4902. msgctxt "wireframe_nozzle_clearance description"
  4903. msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing."
  4904. msgstr "Nozül ve aşağı yöndeki hatlar arasındaki mesafe. Daha büyük açıklık, dik açısı daha küçük çapraz şekilde aşağı yöndeki hatların oluşmasına neden olur, dolayısıyla bu durum bir sonraki katman ile yukarı yönde daha az bağlantıya yol açar. Sadece kablo yazdırmaya uygulanır."
  4905. #: fdmprinter.def.json
  4906. msgctxt "adaptive_layer_height_enabled label"
  4907. msgid "Use Adaptive Layers"
  4908. msgstr "Uyarlanabilir Katmanların Kullanımı"
  4909. #: fdmprinter.def.json
  4910. msgctxt "adaptive_layer_height_enabled description"
  4911. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  4912. msgstr "Uyarlanabilir katmanlar modelin şekline bağlı olarak katman yüksekliğini hesaplar."
  4913. #: fdmprinter.def.json
  4914. msgctxt "adaptive_layer_height_variation label"
  4915. msgid "Adaptive Layers Maximum Variation"
  4916. msgstr "Uyarlanabilir Katmanların Azami Değişkenliği"
  4917. #: fdmprinter.def.json
  4918. msgctxt "adaptive_layer_height_variation description"
  4919. msgid "The maximum allowed height different from the base layer height."
  4920. msgstr "Taban katmanı yüksekliğine göre izin verilen azami yükseklik."
  4921. #: fdmprinter.def.json
  4922. msgctxt "adaptive_layer_height_variation_step label"
  4923. msgid "Adaptive Layers Variation Step Size"
  4924. msgstr "Uyarlanabilir Katmanların Değişkenlik Adım Boyu"
  4925. #: fdmprinter.def.json
  4926. msgctxt "adaptive_layer_height_variation_step description"
  4927. msgid "The difference in height of the next layer height compared to the previous one."
  4928. msgstr "Bir önceki ve bir sonraki katman yüksekliği arasındaki yükseklik farkı."
  4929. #: fdmprinter.def.json
  4930. msgctxt "adaptive_layer_height_threshold label"
  4931. msgid "Adaptive Layers Topography Size"
  4932. msgstr "Uyarlanabilir Katman Topografisi Boyutu"
  4933. #: fdmprinter.def.json
  4934. msgctxt "adaptive_layer_height_threshold description"
  4935. msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
  4936. msgstr "İki bitişik katman arasındaki hedef yatay mesafe. Bu ayarın azaltılması, katmanların kenarlarını birbirine yakınlaştırmak için daha ince katmanlar kullanılmasına neden olur."
  4937. #: fdmprinter.def.json
  4938. msgctxt "wall_overhang_angle label"
  4939. msgid "Overhanging Wall Angle"
  4940. msgstr "Çıkıntılı Duvar Açısı"
  4941. #: fdmprinter.def.json
  4942. msgctxt "wall_overhang_angle description"
  4943. msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
  4944. msgstr "Bu açıdan daha yüksek çıkıntıya sahip duvarlar çıkıntılı duvar ayarları kullanılarak basılacaktır. Değer 90 ise hiçbir duvarda çıkıntı olmadığı varsayılacaktır. Destek ile desteklenen çıkıntılar da çıkıntı olarak değerlendirilmeyecektir."
  4945. #: fdmprinter.def.json
  4946. msgctxt "wall_overhang_speed_factor label"
  4947. msgid "Overhanging Wall Speed"
  4948. msgstr "Çıkıntılı Duvar Hızı"
  4949. #: fdmprinter.def.json
  4950. msgctxt "wall_overhang_speed_factor description"
  4951. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  4952. msgstr "Çıkıntılı duvarlar, normal yazdırma hızına göre bu yüzdeye denk bir hızda yazdırılacaktır."
  4953. #: fdmprinter.def.json
  4954. msgctxt "bridge_settings_enabled label"
  4955. msgid "Enable Bridge Settings"
  4956. msgstr "Köprü Ayarlarını Etkinleştir"
  4957. #: fdmprinter.def.json
  4958. msgctxt "bridge_settings_enabled description"
  4959. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  4960. msgstr "Köprüleri tespit edin ve köprüler yazdırılırken yazdırma hızını, akışı ve fan ayarlarını değiştirin."
  4961. #: fdmprinter.def.json
  4962. msgctxt "bridge_wall_min_length label"
  4963. msgid "Minimum Bridge Wall Length"
  4964. msgstr "Minimum Köprü Duvarı Uzunluğu"
  4965. #: fdmprinter.def.json
  4966. msgctxt "bridge_wall_min_length description"
  4967. msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings."
  4968. msgstr "Bundan daha kısa desteklenmeyen duvarlar normal duvar ayarları kullanılarak yazdırılacaktır. Daha uzun desteklenmeyen duvarlar köprü duvarı ayarları kullanılarak yazdırılacaktır."
  4969. #: fdmprinter.def.json
  4970. msgctxt "bridge_skin_support_threshold label"
  4971. msgid "Bridge Skin Support Threshold"
  4972. msgstr "Köprü Yüzey Alanı Destek Eşiği"
  4973. #: fdmprinter.def.json
  4974. msgctxt "bridge_skin_support_threshold description"
  4975. msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
  4976. msgstr "Eğer bir yüzey alanı bölgesi, alanının bu yüzdeden daha azı için destekleniyorsa, köprü ayarlarını kullanarak yazdırın. Aksi halde normal yüzey alanı ayarları kullanılarak yazdırılır."
  4977. #: fdmprinter.def.json
  4978. msgctxt "bridge_sparse_infill_max_density label"
  4979. msgid "Bridge Sparse Infill Max Density"
  4980. msgstr "Maksimum Köprü Seyrek Dolgu Yoğunluğu"
  4981. #: fdmprinter.def.json
  4982. msgctxt "bridge_sparse_infill_max_density description"
  4983. msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
  4984. msgstr "Seyrek olması düşünülen dolgunun maksimum yoğunluğu. Seyrek dolgu üzerindeki kaplama, desteksiz olacağı düşünülerek köprü kaplaması olarak değerlendirilir."
  4985. #: fdmprinter.def.json
  4986. msgctxt "bridge_wall_coast label"
  4987. msgid "Bridge Wall Coasting"
  4988. msgstr "Köprü Duvarı Tarama"
  4989. #: fdmprinter.def.json
  4990. msgctxt "bridge_wall_coast description"
  4991. msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge."
  4992. msgstr "Bu, ekstruderin bir köprü duvarı başlamadan hemen önce taraması gereken mesafeyi kontrol eder. Köprü başlamadan önce tarama, nozüldeki basıncı azaltabilir ve daha düz bir köprü üretebilir."
  4993. #: fdmprinter.def.json
  4994. msgctxt "bridge_wall_speed label"
  4995. msgid "Bridge Wall Speed"
  4996. msgstr "Köprü Duvarı Hızı"
  4997. #: fdmprinter.def.json
  4998. msgctxt "bridge_wall_speed description"
  4999. msgid "The speed at which the bridge walls are printed."
  5000. msgstr "Köprü duvarlarının yazdırıldığı hız."
  5001. #: fdmprinter.def.json
  5002. msgctxt "bridge_wall_material_flow label"
  5003. msgid "Bridge Wall Flow"
  5004. msgstr "Köprü Duvarı Akışı"
  5005. #: fdmprinter.def.json
  5006. msgctxt "bridge_wall_material_flow description"
  5007. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  5008. msgstr "Köprü duvarları yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır."
  5009. #: fdmprinter.def.json
  5010. msgctxt "bridge_skin_speed label"
  5011. msgid "Bridge Skin Speed"
  5012. msgstr "Köprü Yüzey Alanı Hızı"
  5013. #: fdmprinter.def.json
  5014. msgctxt "bridge_skin_speed description"
  5015. msgid "The speed at which bridge skin regions are printed."
  5016. msgstr "Köprü yüzey alanı bölgelerinin yazdırıldığı hız."
  5017. #: fdmprinter.def.json
  5018. msgctxt "bridge_skin_material_flow label"
  5019. msgid "Bridge Skin Flow"
  5020. msgstr "Köprü Yüzey Alanı Akışı"
  5021. #: fdmprinter.def.json
  5022. msgctxt "bridge_skin_material_flow description"
  5023. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  5024. msgstr "Köprü yüzey alanı bölgeleri yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır."
  5025. #: fdmprinter.def.json
  5026. msgctxt "bridge_skin_density label"
  5027. msgid "Bridge Skin Density"
  5028. msgstr "Köprü Yüzey Alanı Yoğunluğu"
  5029. #: fdmprinter.def.json
  5030. msgctxt "bridge_skin_density description"
  5031. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  5032. msgstr "Köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır."
  5033. #: fdmprinter.def.json
  5034. msgctxt "bridge_fan_speed label"
  5035. msgid "Bridge Fan Speed"
  5036. msgstr "Köprü Fan Hızı"
  5037. #: fdmprinter.def.json
  5038. msgctxt "bridge_fan_speed description"
  5039. msgid "Percentage fan speed to use when printing bridge walls and skin."
  5040. msgstr "Köprü duvarları ve yüzey alanı yazdırılırken kullanılacak yüzde fan hızı."
  5041. #: fdmprinter.def.json
  5042. msgctxt "bridge_enable_more_layers label"
  5043. msgid "Bridge Has Multiple Layers"
  5044. msgstr "Köprüde Birden Fazla Katman Var"
  5045. #: fdmprinter.def.json
  5046. msgctxt "bridge_enable_more_layers description"
  5047. msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings."
  5048. msgstr "Eğer etkinleştirilirse, havanın üzerindeki ikinci ve üçüncü katmanlar aşağıdaki ayarlar kullanılarak yazdırılır. Aksi halde bu katmanlar normal ayarlar kullanılarak yazdırılır."
  5049. #: fdmprinter.def.json
  5050. msgctxt "bridge_skin_speed_2 label"
  5051. msgid "Bridge Second Skin Speed"
  5052. msgstr "Köprü İkinci Yüzey Alanı Hızı"
  5053. #: fdmprinter.def.json
  5054. msgctxt "bridge_skin_speed_2 description"
  5055. msgid "Print speed to use when printing the second bridge skin layer."
  5056. msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı."
  5057. #: fdmprinter.def.json
  5058. msgctxt "bridge_skin_material_flow_2 label"
  5059. msgid "Bridge Second Skin Flow"
  5060. msgstr "Köprü İkinci Yüzey Alanı Akışı"
  5061. #: fdmprinter.def.json
  5062. msgctxt "bridge_skin_material_flow_2 description"
  5063. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  5064. msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır."
  5065. #: fdmprinter.def.json
  5066. msgctxt "bridge_skin_density_2 label"
  5067. msgid "Bridge Second Skin Density"
  5068. msgstr "Köprü İkinci Yüzey Alanı Yoğunluğu"
  5069. #: fdmprinter.def.json
  5070. msgctxt "bridge_skin_density_2 description"
  5071. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  5072. msgstr "İkinci köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır."
  5073. #: fdmprinter.def.json
  5074. msgctxt "bridge_fan_speed_2 label"
  5075. msgid "Bridge Second Skin Fan Speed"
  5076. msgstr "Köprü İkinci Yüzey Alanı Fan Hızı"
  5077. #: fdmprinter.def.json
  5078. msgctxt "bridge_fan_speed_2 description"
  5079. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  5080. msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı."
  5081. #: fdmprinter.def.json
  5082. msgctxt "bridge_skin_speed_3 label"
  5083. msgid "Bridge Third Skin Speed"
  5084. msgstr "Köprü Üçüncü Yüzey Alanı Hızı"
  5085. #: fdmprinter.def.json
  5086. msgctxt "bridge_skin_speed_3 description"
  5087. msgid "Print speed to use when printing the third bridge skin layer."
  5088. msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı."
  5089. #: fdmprinter.def.json
  5090. msgctxt "bridge_skin_material_flow_3 label"
  5091. msgid "Bridge Third Skin Flow"
  5092. msgstr "Köprü Üçüncü Yüzey Alanı Akışı"
  5093. #: fdmprinter.def.json
  5094. msgctxt "bridge_skin_material_flow_3 description"
  5095. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  5096. msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır."
  5097. #: fdmprinter.def.json
  5098. msgctxt "bridge_skin_density_3 label"
  5099. msgid "Bridge Third Skin Density"
  5100. msgstr "Köprü Üçüncü Yüzey Alanı Yoğunluğu"
  5101. #: fdmprinter.def.json
  5102. msgctxt "bridge_skin_density_3 description"
  5103. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  5104. msgstr "Üçüncü köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır."
  5105. #: fdmprinter.def.json
  5106. msgctxt "bridge_fan_speed_3 label"
  5107. msgid "Bridge Third Skin Fan Speed"
  5108. msgstr "Köprü Üçüncü Yüzey Alanı Fan Hızı"
  5109. #: fdmprinter.def.json
  5110. msgctxt "bridge_fan_speed_3 description"
  5111. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  5112. msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı."
  5113. #: fdmprinter.def.json
  5114. msgctxt "clean_between_layers label"
  5115. msgid "Wipe Nozzle Between Layers"
  5116. msgstr "Katmanlar Arasındaki Sürme Nozülü"
  5117. #: fdmprinter.def.json
  5118. msgctxt "clean_between_layers description"
  5119. msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  5120. msgstr "Katmanlar arasına nozül sürme G-Code'u eklenip eklenmeyeceği (katman başına maksimum 1). Bu ayarın etkinleştirilmesi katman değişiminde geri çekme davranışını etkileyebilir. Sürme komutunun çalıştığı katmanlarda geri çekmeyi kontrol etmek için lütfen Sürme Geri Çekme ayarlarını kullanın."
  5121. #: fdmprinter.def.json
  5122. msgctxt "max_extrusion_before_wipe label"
  5123. msgid "Material Volume Between Wipes"
  5124. msgstr "Sürme Hareketleri Arasındaki Malzeme Hacmi"
  5125. #: fdmprinter.def.json
  5126. msgctxt "max_extrusion_before_wipe description"
  5127. msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
  5128. msgstr "Başka bir nozül sürme işlemi başlatılmadan önce ekstrüde edilebilecek maksimum malzeme miktarı. Bu değer, bir katmanda gereken malzeme hacminden daha düşükse ayarın bu katmanda bir etkisi olmayacaktır, yani katman başına bir sürme sınırı vardır."
  5129. #: fdmprinter.def.json
  5130. msgctxt "wipe_retraction_enable label"
  5131. msgid "Wipe Retraction Enable"
  5132. msgstr "Sürme Geri Çekmenin Etkinleştirilmesi"
  5133. #: fdmprinter.def.json
  5134. msgctxt "wipe_retraction_enable description"
  5135. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  5136. msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker."
  5137. #: fdmprinter.def.json
  5138. msgctxt "wipe_retraction_amount label"
  5139. msgid "Wipe Retraction Distance"
  5140. msgstr "Sürme Geri Çekme Mesafesi"
  5141. #: fdmprinter.def.json
  5142. msgctxt "wipe_retraction_amount description"
  5143. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  5144. msgstr "Filamanın sürme dizisi sırasında sızıntı yapmaması için filanın geri çekilme miktarı."
  5145. #: fdmprinter.def.json
  5146. msgctxt "wipe_retraction_extra_prime_amount label"
  5147. msgid "Wipe Retraction Extra Prime Amount"
  5148. msgstr "Sürme Geri Çekme Sırasındaki İlave Astar Miktarı"
  5149. #: fdmprinter.def.json
  5150. msgctxt "wipe_retraction_extra_prime_amount description"
  5151. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  5152. msgstr "Sürme hareketi sırasında bazı malzemeler eksilebilir; bu malzemeler burada telafi edebilir."
  5153. #: fdmprinter.def.json
  5154. msgctxt "wipe_retraction_speed label"
  5155. msgid "Wipe Retraction Speed"
  5156. msgstr "Sürme Geri Çekme Hızı"
  5157. #: fdmprinter.def.json
  5158. msgctxt "wipe_retraction_speed description"
  5159. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  5160. msgstr "Filamanın geri çekildiği ve sürme geri çekme hareketi sırasında astarlandığı hız."
  5161. #: fdmprinter.def.json
  5162. msgctxt "wipe_retraction_retract_speed label"
  5163. msgid "Wipe Retraction Retract Speed"
  5164. msgstr "Sürme Geri Çekme Sırasındaki Çekim Hızı"
  5165. #: fdmprinter.def.json
  5166. msgctxt "wipe_retraction_retract_speed description"
  5167. msgid "The speed at which the filament is retracted during a wipe retraction move."
  5168. msgstr "Filamanın sürme geri çekme hareketi sırasında geri çekildiği hız."
  5169. #: fdmprinter.def.json
  5170. msgctxt "wipe_retraction_prime_speed label"
  5171. msgid "Wipe Retraction Prime Speed"
  5172. msgstr "Sürme Geri Çekme Sırasındaki Çalışmaya Hazırlama Hızı"
  5173. #: fdmprinter.def.json
  5174. msgctxt "wipe_retraction_prime_speed description"
  5175. msgid "The speed at which the filament is primed during a wipe retraction move."
  5176. msgstr "Filamanın sürme geri çekme hareketi sırasında astarlandığı hız."
  5177. #: fdmprinter.def.json
  5178. msgctxt "wipe_pause label"
  5179. msgid "Wipe Pause"
  5180. msgstr "Sürmeyi Durdurma"
  5181. #: fdmprinter.def.json
  5182. msgctxt "wipe_pause description"
  5183. msgid "Pause after the unretract."
  5184. msgstr "Geri çekmenin geri alınmasından sonraki duraklama."
  5185. #: fdmprinter.def.json
  5186. msgctxt "wipe_hop_enable label"
  5187. msgid "Wipe Z Hop"
  5188. msgstr "Sürme Z Sıçraması"
  5189. #: fdmprinter.def.json
  5190. msgctxt "wipe_hop_enable description"
  5191. msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  5192. msgstr "Sürme sırasında yapı plakası nozül ve baskı arasında açıklık oluşturmak üzere alçaltılır. Bu işlem, hareket sırasında nozülün baskıya çarpmasını önler ve baskının devrilerek yapı plakasından düşme olasılığını azaltır."
  5193. #: fdmprinter.def.json
  5194. msgctxt "wipe_hop_amount label"
  5195. msgid "Wipe Z Hop Height"
  5196. msgstr "Sürme Z Sıçraması Yüksekliği"
  5197. #: fdmprinter.def.json
  5198. msgctxt "wipe_hop_amount description"
  5199. msgid "The height difference when performing a Z Hop."
  5200. msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı."
  5201. #: fdmprinter.def.json
  5202. msgctxt "wipe_hop_speed label"
  5203. msgid "Wipe Hop Speed"
  5204. msgstr "Sürme Sıçrama Hızı"
  5205. #: fdmprinter.def.json
  5206. msgctxt "wipe_hop_speed description"
  5207. msgid "Speed to move the z-axis during the hop."
  5208. msgstr "Sıçrama sırasında z eksenini hareket ettirmek için gerekli hız."
  5209. #: fdmprinter.def.json
  5210. msgctxt "wipe_brush_pos_x label"
  5211. msgid "Wipe Brush X Position"
  5212. msgstr "Sürme Fırçası X Konumu"
  5213. #: fdmprinter.def.json
  5214. msgctxt "wipe_brush_pos_x description"
  5215. msgid "X location where wipe script will start."
  5216. msgstr "Sürme komutunun başlatılacağı X konumu."
  5217. #: fdmprinter.def.json
  5218. msgctxt "wipe_repeat_count label"
  5219. msgid "Wipe Repeat Count"
  5220. msgstr "Sürme Tekrar Sayısı"
  5221. #: fdmprinter.def.json
  5222. msgctxt "wipe_repeat_count description"
  5223. msgid "Number of times to move the nozzle across the brush."
  5224. msgstr "Nozülün fırçadan geçirilme sayısı."
  5225. #: fdmprinter.def.json
  5226. msgctxt "wipe_move_distance label"
  5227. msgid "Wipe Move Distance"
  5228. msgstr "Sürme Hareket Mesafesi"
  5229. #: fdmprinter.def.json
  5230. msgctxt "wipe_move_distance description"
  5231. msgid "The distance to move the head back and forth across the brush."
  5232. msgstr "Başlığı fırçada ileri ve geri hareket ettirme mesafesi."
  5233. #: fdmprinter.def.json
  5234. msgctxt "small_hole_max_size label"
  5235. msgid "Small Hole Max Size"
  5236. msgstr "Maksimum Küçük Delik Boyutu"
  5237. #: fdmprinter.def.json
  5238. msgctxt "small_hole_max_size description"
  5239. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  5240. msgstr "Bu değerden daha küçük çaptaki delik ve parça ana hatları Küçük Özellik Hızı kullanılarak basılacaktır."
  5241. #: fdmprinter.def.json
  5242. msgctxt "small_feature_max_length label"
  5243. msgid "Small Feature Max Length"
  5244. msgstr "Maksimum Küçük Özellik Uzunluğu"
  5245. #: fdmprinter.def.json
  5246. msgctxt "small_feature_max_length description"
  5247. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  5248. msgstr "Bu uzunluktan kısa olan özellik ana hatları Kısa Özellik Hızı kullanılarak basılacaktır."
  5249. #: fdmprinter.def.json
  5250. msgctxt "small_feature_speed_factor label"
  5251. msgid "Small Feature Speed"
  5252. msgstr "Küçük Özellik Hızı"
  5253. #: fdmprinter.def.json
  5254. msgctxt "small_feature_speed_factor description"
  5255. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  5256. msgstr "Küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir."
  5257. #: fdmprinter.def.json
  5258. msgctxt "small_feature_speed_factor_0 label"
  5259. msgid "Small Feature Initial Layer Speed"
  5260. msgstr "Küçük Özellik İlk Katman Hızı"
  5261. #: fdmprinter.def.json
  5262. msgctxt "small_feature_speed_factor_0 description"
  5263. msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  5264. msgstr "İlk katman üzerindeki küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir."
  5265. #: fdmprinter.def.json
  5266. msgctxt "material_alternate_walls label"
  5267. msgid "Alternate Wall Directions"
  5268. msgstr "Duvar Yönlerini Değiştir"
  5269. #: fdmprinter.def.json
  5270. msgctxt "material_alternate_walls description"
  5271. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  5272. msgstr "Duvar yönlerini her katmanda ve iç dolguda değiştirin. Metal baskıdaki gibi stres oluşturabilen malzemeler için kullanışlıdır."
  5273. #: fdmprinter.def.json
  5274. msgctxt "raft_remove_inside_corners label"
  5275. msgid "Remove Raft Inside Corners"
  5276. msgstr "Radye İç Köşelerini Kaldır"
  5277. #: fdmprinter.def.json
  5278. msgctxt "raft_remove_inside_corners description"
  5279. msgid "Remove inside corners from the raft, causing the raft to become convex."
  5280. msgstr "Radyenin iç köşelerini kaldırır ve radyenin dışbükey olmasına yol açar."
  5281. #: fdmprinter.def.json
  5282. msgctxt "raft_base_wall_count label"
  5283. msgid "Raft Base Wall Count"
  5284. msgstr "Radye Tabanı Duvar Sayısı"
  5285. #: fdmprinter.def.json
  5286. msgctxt "raft_base_wall_count description"
  5287. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  5288. msgstr "Radyenin taban katmanındaki doğrusal desen etrafına basılacak kontur sayısıdır."
  5289. #: fdmprinter.def.json
  5290. msgctxt "command_line_settings label"
  5291. msgid "Command Line Settings"
  5292. msgstr "Komut Satırı Ayarları"
  5293. #: fdmprinter.def.json
  5294. msgctxt "command_line_settings description"
  5295. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  5296. msgstr "Sadece Cura ön ucundan CuraEngine istenmediğinde kullanılan ayarlar."
  5297. #: fdmprinter.def.json
  5298. msgctxt "center_object label"
  5299. msgid "Center Object"
  5300. msgstr "Nesneyi ortalayın"
  5301. #: fdmprinter.def.json
  5302. msgctxt "center_object description"
  5303. msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved."
  5304. msgstr "Nesnenin kaydedildiği koordinat sistemini kullanmak yerine nesnenin yapı platformunun (0,0) ortasına yerleştirilmesi."
  5305. #: fdmprinter.def.json
  5306. msgctxt "mesh_position_x label"
  5307. msgid "Mesh Position X"
  5308. msgstr "Bileşim konumu X"
  5309. #: fdmprinter.def.json
  5310. msgctxt "mesh_position_x description"
  5311. msgid "Offset applied to the object in the x direction."
  5312. msgstr "Nesneye x yönünde uygulanan ofset."
  5313. #: fdmprinter.def.json
  5314. msgctxt "mesh_position_y label"
  5315. msgid "Mesh Position Y"
  5316. msgstr "Bileşim konumu Y"
  5317. #: fdmprinter.def.json
  5318. msgctxt "mesh_position_y description"
  5319. msgid "Offset applied to the object in the y direction."
  5320. msgstr "Nesneye y yönünde uygulanan ofset."
  5321. #: fdmprinter.def.json
  5322. msgctxt "mesh_position_z label"
  5323. msgid "Mesh Position Z"
  5324. msgstr "Bileşim konumu Z"
  5325. #: fdmprinter.def.json
  5326. msgctxt "mesh_position_z description"
  5327. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  5328. msgstr "Nesneye z yönünde uygulanan ofset. Bununla birlikte “Nesne Havuzu” olarak adlandırılan malzemeyi de kullanabilirsiniz."
  5329. #: fdmprinter.def.json
  5330. msgctxt "mesh_rotation_matrix label"
  5331. msgid "Mesh Rotation Matrix"
  5332. msgstr "Bileşim Rotasyon Matrisi"
  5333. #: fdmprinter.def.json
  5334. msgctxt "mesh_rotation_matrix description"
  5335. msgid "Transformation matrix to be applied to the model when loading it from file."
  5336. msgstr "Modeli dosyadan indirirken modele uygulanacak olan dönüşüm matrisi."
  5337. #~ msgctxt "machine_head_with_fans_polygon description"
  5338. #~ msgid "A 2D silhouette of the print head (fan caps included)."
  5339. #~ msgstr "Yazıcı başlığının 2B taslağı (fan başlıkları dahil)."
  5340. #~ msgctxt "outer_inset_first label"
  5341. #~ msgid "Outer Before Inner Walls"
  5342. #~ msgstr "Önce Dış Sonra İç Duvarlar"
  5343. #~ msgctxt "outer_inset_first description"
  5344. #~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs."
  5345. #~ msgstr "Etkinleştirilmişse, duvarları dıştan içe doğru yazdırır. ABS gibi yüksek viskoziteli plastik kullanılırken boyutsal kesinliğin artırılmasını sağlayabilir; öte yandan dış düzey baskı kalitesini, özellikle çıkmalı kirişlerde etkileyebilir."
  5346. #~ msgctxt "travel_compensate_overlapping_walls_enabled label"
  5347. #~ msgid "Compensate Wall Overlaps"
  5348. #~ msgstr "Duvar Çakışmalarının Telafi Edilmesi"
  5349. #~ msgctxt "travel_compensate_overlapping_walls_enabled description"
  5350. #~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  5351. #~ msgstr "Halihazırda duvarın olduğu bir yere yazdırılan bir duvarın parçaları için akışı telafi eder."
  5352. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  5353. #~ msgid "Compensate Outer Wall Overlaps"
  5354. #~ msgstr "Dış Duvar Çakışmalarının Telafi Edilmesi"
  5355. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  5356. #~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  5357. #~ msgstr "Halihazırda dış duvarın olduğu bir yere yazdırılan bir dış duvarın parçaları için akışı telafi eder."
  5358. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  5359. #~ msgid "Compensate Inner Wall Overlaps"
  5360. #~ msgstr "İç Duvar Çakışmalarının Telafi Edilmesi"
  5361. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  5362. #~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  5363. #~ msgstr "Halihazırda duvarın olduğu bir yere yazdırılan bir iç duvarın parçaları için akışı telafi eder."
  5364. #~ msgctxt "wall_min_flow label"
  5365. #~ msgid "Minimum Wall Flow"
  5366. #~ msgstr "Minimum Duvar Akışı"
  5367. #~ msgctxt "wall_min_flow description"
  5368. #~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls."
  5369. #~ msgstr "Bir duvar hattı için izin verilen en düşük yüzde akımdır. Duvar çakışması, mevcut bir duvara yakın duruyorsa bir duvarın akışını azaltır. Akışları bu değerden düşük olan duvarların yerine hareket hamlesi konacaktır. Bu ayarı kullanırken duvar çakışma telafisini açmanız ve iç duvardan önce dış duvarı yazdırmanız gerekir."
  5370. #~ msgctxt "wall_min_flow_retract label"
  5371. #~ msgid "Prefer Retract"
  5372. #~ msgstr "Geri Çekmeyi Tercih Et"
  5373. #~ msgctxt "wall_min_flow_retract description"
  5374. #~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold."
  5375. #~ msgstr "Geri çekme etkinleştirildiğinde, akışları minimum akış eşiğinin altındaki duvarların yerini alacak hareketleri taramak yerine geri çekme kullanılır."
  5376. #~ msgctxt "fill_perimeter_gaps label"
  5377. #~ msgid "Fill Gaps Between Walls"
  5378. #~ msgstr "Duvarlar Arasındaki Boşlukları Doldur"
  5379. #~ msgctxt "fill_perimeter_gaps description"
  5380. #~ msgid "Fills the gaps between walls where no walls fit."
  5381. #~ msgstr "Duvarların sığmadığı yerlerde duvarlar arasında kalan boşlukları doldurur."
  5382. #~ msgctxt "fill_perimeter_gaps option nowhere"
  5383. #~ msgid "Nowhere"
  5384. #~ msgstr "Hiçbir yerde"
  5385. #~ msgctxt "fill_perimeter_gaps option everywhere"
  5386. #~ msgid "Everywhere"
  5387. #~ msgstr "Her bölüm"
  5388. #~ msgctxt "filter_out_tiny_gaps label"
  5389. #~ msgid "Filter Out Tiny Gaps"
  5390. #~ msgstr "Küçük Boşlukların Filtrelenmesi"
  5391. #~ msgctxt "filter_out_tiny_gaps description"
  5392. #~ msgid "Filter out tiny gaps to reduce blobs on outside of model."
  5393. #~ msgstr "Modelin dışındaki damlalarını azaltmak için küçük boşlukları filtreleyin."
  5394. #~ msgctxt "speed_equalize_flow_enabled label"
  5395. #~ msgid "Equalize Filament Flow"
  5396. #~ msgstr "Filaman Akışını Eşitle"
  5397. #~ msgctxt "speed_equalize_flow_enabled description"
  5398. #~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines."
  5399. #~ msgstr "Saniye başına geçirilen malzeme sayısının aynı kalabilmesi için normalden ince hatları daha hızlı yazdırın. Modelinizdeki parçalar ayarlarda belirtilenden daha küçük hat genişliği olan hatların yazdırılmasını gerektirebilir. Bu ayar bu tür hatlar için hız değişikliklerini kontrol eder."
  5400. #~ msgctxt "speed_equalize_flow_max label"
  5401. #~ msgid "Maximum Speed for Flow Equalization"
  5402. #~ msgstr "Akışı Eşitlemek için Maksimum Hız"
  5403. #~ msgctxt "speed_equalize_flow_max description"
  5404. #~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  5405. #~ msgstr "Akışı eşitlemek için yazdırma hızını ayarlarken kullanılan maksimum yazdırma hızı."
  5406. #~ msgctxt "machine_start_gcode description"
  5407. #~ msgid "G-code commands to be executed at the very start - separated by \\n."
  5408. #~ msgstr "ile ayrılan, başlangıçta yürütülecek G-code komutları \\n."
  5409. #~ msgctxt "machine_end_gcode description"
  5410. #~ msgid "G-code commands to be executed at the very end - separated by \\n."
  5411. #~ msgstr "ile ayrılan, bitişte yürütülecek G-code komutları \\n."
  5412. #~ msgctxt "machine_max_feedrate_e label"
  5413. #~ msgid "Maximum Feedrate"
  5414. #~ msgstr "Maksimum besleme hızı"
  5415. #~ msgctxt "infill_pattern description"
  5416. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model."
  5417. #~ msgstr "Baskının dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, üçlü altıgen, kübik, sekizlik, çeyrek kübik, çapraz ve eşmerkezli şekiller her katmana tam olarak basılır. Gyroid, kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir. Yıldırım dolgu, objenin yalnızca (iç) çatılarını destekleyerek dolgu miktarını en aza indirmeye çalışır. Bu durumda dolgu yüzdesi yalnızca bir katmanın altında 'geçerli' olur ve modeli destekler."
  5418. #~ msgctxt "lightning_infill_prune_angle description"
  5419. #~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness."
  5420. #~ msgstr "Bir yıldırım dolgu katmanının hemen üstündeki katmanla ağaçların dış uzantılarının budanması şeklinde sahip olabileceği farktır. Dalların açısı olarak ölçülür."
  5421. #~ msgctxt "lightning_infill_straightening_angle description"
  5422. #~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness."
  5423. #~ msgstr "Bir yıldırım dolgu katmanının hemen üstündeki katmanla ağaçların düzlenmesi şeklinde sahip olabileceği farktır. Dalların açısı olarak ölçülür."
  5424. #~ msgctxt "infill_pattern description"
  5425. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5426. #~ msgstr "Baskının dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, üçlü altıgen, kübik, sekizlik, çeyrek kübik, çapraz ve eşmerkezli şekiller, her katmana tam olarak basılır. Gyroid, kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir."
  5427. #~ msgctxt "mold_width description"
  5428. #~ msgid "The minimal distance between the ouside of the mold and the outside of the model."
  5429. #~ msgstr "Kalıbın dış tarafı ile modelin dış tarafı arasındaki minimum mesafe."
  5430. #~ msgctxt "machine_steps_per_mm_e description"
  5431. #~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  5432. #~ msgstr "Kademeli motorun kaç adımının, bir milimetre ekstruzyon ile sonuçlanacağı."
  5433. #~ msgctxt "retraction_combing_max_distance description"
  5434. #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  5435. #~ msgstr "Sıfır olmadığında, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır."
  5436. #~ msgctxt "machine_use_extruder_offset_to_offset_coords description"
  5437. #~ msgid "Apply the extruder offset to the coordinate system."
  5438. #~ msgstr "Ekstruder ofsetini koordinat sistemine uygulayın."
  5439. #~ msgctxt "shell label"
  5440. #~ msgid "Shell"
  5441. #~ msgstr "Kovan"
  5442. #~ msgctxt "max_skin_angle_for_expansion description"
  5443. #~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical."
  5444. #~ msgstr "Nesnenizin bu ayardan daha geniş açıya sahip üst ve/veya alt zeminlerinin yüzeyleri genişletilmez. Böylece model yüzeyinin neredeyse dik açıya sahip olduğu durumlarda ortaya çıkan dar yüzey alanlarının genişletilmesi önlenmiş olur. 0°’lik bir açı yataydır; 90°’lik bir açı dikeydir."
  5445. #~ msgctxt "speed_layer_0 description"
  5446. #~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  5447. #~ msgstr "İlk katman için belirlenen hız. Yapı tahtasına yapışmayı artırmak için daha düşük bir değer önerilmektedir."
  5448. #~ msgctxt "infill_mesh_order description"
  5449. #~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  5450. #~ msgstr "Çakışan birden çok dolgu örgüsünü göz önüne alarak bu örgünün önceliğini belirler. Birden çok dolgu örgüsünün çakıştığı alanlar en düşük sıralamaya sahip örgünün ayarlarını alacaktır. Daha yüksek sıralamaya sahip dolgu örgüsü, dolgu örgülerinin dolgusunu daha düşük sıralı ve normal örgüler ile değiştirecektir."
  5451. #~ msgctxt "material_bed_temperature description"
  5452. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  5453. #~ msgstr "Isınan yapı levhası için kullanılan sıcaklık. Bu değer 0 ise yatak sıcaklığı değiştirilmez."
  5454. #~ msgctxt "material_bed_temperature_layer_0 description"
  5455. #~ msgid "The temperature used for the heated build plate at the first layer."
  5456. #~ msgstr "İlk katmanda ısınan yapı levhası için kullanılan sıcaklık."
  5457. #~ msgctxt "material_shrinkage_percentage label"
  5458. #~ msgid "Shrinkage Ratio"
  5459. #~ msgstr "Çekme Oranı"
  5460. #~ msgctxt "material_shrinkage_percentage description"
  5461. #~ msgid "Shrinkage ratio in percentage."
  5462. #~ msgstr "Yüzde cinsinden çekme oranı."
  5463. #~ msgctxt "infill_mesh_order description"
  5464. #~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  5465. #~ msgstr "Çakışan birimleri göz önüne alarak bu örgünün önceliğini belirler. Birden çok örgünün bulunduğu alanlarda düşük sıralamalı örgü öncelenir. Daha yüksek sıralamaya sahip dolgu örgüsü, dolgu örgülerin dolgusunu daha düşük sıralı ve normal örgüler ile değiştirecektir."
  5466. #~ msgctxt "print_sequence description"
  5467. #~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
  5468. #~ msgstr "Sıradakine geçmeden önce, tüm modellerin tek seferde bir katmanla mı yazdırılacağı yoksa bir modelin bitmesinin mi bekleneceği. Teker teker modu a) yalnızca bir ekstrüder etkinleştirildiğinde b) tüm modeller baskı kafası aralarında hareket edecek veya nozül ile X/Y eksenleri arasındaki mesafeden az olacak şekilde ayrıldığında kullanılabilir. "
  5469. #~ msgctxt "infill_mesh_order label"
  5470. #~ msgid "Infill Mesh Order"
  5471. #~ msgstr "Dolgu Birleşim Düzeni"
  5472. #~ msgctxt "infill_mesh_order description"
  5473. #~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  5474. #~ msgstr "Hangi dolgu birleşiminin diğer dolgu birleşiminin içinde olacağını belirler. Yüksek düzeyli bir dolgu birleşimi, dolgu birleşimlerinin dolgusunu daha düşük düzey ve normal birleşimler ile düzeltir."
  5475. #~ msgctxt "support_tree_enable label"
  5476. #~ msgid "Tree Support"
  5477. #~ msgstr "Ağaç Destek"
  5478. #~ msgctxt "support_tree_enable description"
  5479. #~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time."
  5480. #~ msgstr "Baskınızı desteklemesi adına dallarıyla birlikte ağaca benzeyen bir destek oluşturun. Malzeme kullanımı ve baskı süresi düşer ancak dilimleme zamanı da önemli ölçüde artar."
  5481. #~ msgctxt "slicing_tolerance description"
  5482. #~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process."
  5483. #~ msgstr "Çapraz yüzeylerle katman dilimleme yolları. Bir katmanın alanları katmanın ortasının yüzeyle kesiştiği yere (Ortalayıcı) göre oluşturulabilir. Diğer bir yol da her katmanın yüksekliği boyunca hacim içinde kalan alanları (Dışlayıcı) veya katmanın içinde herhangi bir yerde kalan alanları (Kapsayıcı) almasıdır. Dışlayıcı seçenek en çok ayrıntıyı tutar; Kapsayıcı seçenek en iyi şekilde oturur; Ortalayıcı ise en kısa sürede işlenir."
  5484. #~ msgctxt "spaghetti_infill_enabled label"
  5485. #~ msgid "Spaghetti Infill"
  5486. #~ msgstr "Spagetti Dolgu"
  5487. #~ msgctxt "spaghetti_infill_enabled description"
  5488. #~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable."
  5489. #~ msgstr "Filamanın nesnenin içinde düzensiz bir şekilde yukarı doğru kıvrılması için dolguyu arada sırada yazdırın. Böylece yazdırma süresi azalır, ancak davranış önceden kestirilemez."
  5490. #~ msgctxt "spaghetti_infill_stepped label"
  5491. #~ msgid "Spaghetti Infill Stepping"
  5492. #~ msgstr "Spagetti Dolgu Adımları"
  5493. #~ msgctxt "spaghetti_infill_stepped description"
  5494. #~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  5495. #~ msgstr "Spagetti dolgusunu adım adım yazdırma veya tüm dolgu filamanını yazdırma işleminin sonunda ekstrude etme."
  5496. #~ msgctxt "spaghetti_max_infill_angle label"
  5497. #~ msgid "Spaghetti Maximum Infill Angle"
  5498. #~ msgstr "Spagetti Maksimum Dolgu Açısı"
  5499. #~ msgctxt "spaghetti_max_infill_angle description"
  5500. #~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer."
  5501. #~ msgstr "Daha sonradan spagetti dolgu uygulanacak alanlar için yazdırmanın içindeki Z ekseninin maksimum açısı. Bu değerin düşürülmesi, modelinize yapılan her bir dolgu katmanında daha fazla açılı kısımlara neden olur."
  5502. #~ msgctxt "spaghetti_max_height label"
  5503. #~ msgid "Spaghetti Infill Maximum Height"
  5504. #~ msgstr "Spagetti Dolgu Maksimum Yüksekliği"
  5505. #~ msgctxt "spaghetti_max_height description"
  5506. #~ msgid "The maximum height of inside space which can be combined and filled from the top."
  5507. #~ msgstr "Birleştirilebilecek ve üstten dolgu yapılabilecek iç alanın maksimum yüksekliği."
  5508. #~ msgctxt "spaghetti_inset label"
  5509. #~ msgid "Spaghetti Inset"
  5510. #~ msgstr "Spagetti İç Dolgusu"
  5511. #~ msgctxt "spaghetti_inset description"
  5512. #~ msgid "The offset from the walls from where the spaghetti infill will be printed."
  5513. #~ msgstr "Spagetti dolgunun yazdırılacağı yerin duvarlardan ofset değeri."
  5514. #~ msgctxt "spaghetti_flow label"
  5515. #~ msgid "Spaghetti Flow"
  5516. #~ msgstr "Spagetti Debisi"
  5517. #~ msgctxt "spaghetti_flow description"
  5518. #~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill."
  5519. #~ msgstr "Spagetti dolgusunun yoğunluğunu ayarlar. Dolgu yoğunluğunun spagetti dolgu için ekstrüzyon miktarını değil, sadece dolgu deseni çizgi boşluğunu kontrol ettiğini unutmayın."
  5520. #~ msgctxt "spaghetti_infill_extra_volume label"
  5521. #~ msgid "Spaghetti Infill Extra Volume"
  5522. #~ msgstr "Spagetti Dolgu Ekstra Hacmi"
  5523. #~ msgctxt "spaghetti_infill_extra_volume description"
  5524. #~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  5525. #~ msgstr "Her spagetti dolumunda ekstrude edilen toplam hacmi ayarlamak için kullanılan bir düzeltme terimi."
  5526. #~ msgctxt "material_guid description"
  5527. #~ msgid "GUID of the material. This is set automatically. "
  5528. #~ msgstr "Malzemedeki GUID Otomatik olarak ayarlanır. "
  5529. #~ msgctxt "machine_filament_park_distance label"
  5530. #~ msgid "Filament Park Distance"
  5531. #~ msgstr "Filaman Bırakma Mesafesi"
  5532. #~ msgctxt "machine_filament_park_distance description"
  5533. #~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used."
  5534. #~ msgstr "Bir ekstrüder artık kullanılmadığında filamanın bırakılacağı nozül ucuna olan mesafe."
  5535. #~ msgctxt "material_flush_purge_speed description"
  5536. #~ msgid "Material Station internal value"
  5537. #~ msgstr "Material Station iç değeri"
  5538. #~ msgctxt "material_flush_purge_length description"
  5539. #~ msgid "Material Station internal value"
  5540. #~ msgstr "Material Station iç değeri"
  5541. #~ msgctxt "material_end_of_filament_purge_speed label"
  5542. #~ msgid "End Of Filament Purge Speed"
  5543. #~ msgstr "Filament Temizliği Bitiş Hızı"
  5544. #~ msgctxt "material_end_of_filament_purge_speed description"
  5545. #~ msgid "Material Station internal value"
  5546. #~ msgstr "Material Station iç değeri"
  5547. #~ msgctxt "material_end_of_filament_purge_length label"
  5548. #~ msgid "End Of Filament Purge Length"
  5549. #~ msgstr "Filament Temizliği Bitiş Uzunluğu"
  5550. #~ msgctxt "material_end_of_filament_purge_length description"
  5551. #~ msgid "Material Station internal value"
  5552. #~ msgstr "Material Station iç değeri"
  5553. #~ msgctxt "material_maximum_park_duration description"
  5554. #~ msgid "Material Station internal value"
  5555. #~ msgstr "Material Station iç değeri"
  5556. #~ msgctxt "material_no_load_move_factor description"
  5557. #~ msgid "Material Station internal value"
  5558. #~ msgstr "Material Station iç değeri"
  5559. #~ msgctxt "retraction_enable description"
  5560. #~ msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  5561. #~ msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker. "
  5562. #~ msgctxt "support_xy_distance_overhang description"
  5563. #~ msgid "Distance of the support structure from the overhang in the X/Y directions. "
  5564. #~ msgstr "Destek yapısının X/Y yönlerindeki çıkıntıya mesafesi. "
  5565. #~ msgctxt "meshfix description"
  5566. #~ msgid "category_fixes"
  5567. #~ msgstr "category_fixes"
  5568. #~ msgctxt "blackmagic description"
  5569. #~ msgid "category_blackmagic"
  5570. #~ msgstr "category_blackmagic"
  5571. #~ msgctxt "experimental description"
  5572. #~ msgid "experimental!"
  5573. #~ msgstr "deneysel!"
  5574. #~ msgctxt "machine_head_polygon label"
  5575. #~ msgid "Machine Head Polygon"
  5576. #~ msgstr "Makinenin Ana Poligonu"
  5577. #~ msgctxt "machine_head_polygon description"
  5578. #~ msgid "A 2D silhouette of the print head (fan caps excluded)."
  5579. #~ msgstr "Yazıcı başlığının 2B taslağı (fan başlıkları hariç)."
  5580. #~ msgctxt "print_sequence description"
  5581. #~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
  5582. #~ msgstr "Sıradakine geçmeden önce, tek seferde bir katmanla tüm modelleri yazdırmak veya bir modelin bitmesini beklemek. Teker teker modu sadece tüm modellerin, yazıcı başlığı aralarında hareket edecek şekilde veya aralarındaki mesafe X/Y aksları arasındaki mesafeden az olacak şekilde ayrıldığında kullanılabilir."
  5583. #~ msgctxt "support_tree_wall_thickness label"
  5584. #~ msgid "Tree Support Wall Thickness"
  5585. #~ msgstr "Ağaç Destek Duvarının Kalınlığı"
  5586. #~ msgctxt "support_tree_wall_thickness description"
  5587. #~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5588. #~ msgstr "Ağaç desteğin dallarında yer alan duvarların kalınlığı. Kalın duvarların basılması daha uzun sürer ancak kalın duvarlar kolay devrilmezler."
  5589. #~ msgctxt "support_tree_wall_count label"
  5590. #~ msgid "Tree Support Wall Line Count"
  5591. #~ msgstr "Ağaç Destek Duvarının Hat Sayısı"
  5592. #~ msgctxt "support_tree_wall_count description"
  5593. #~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5594. #~ msgstr "Ağaç desteğin dallarında yer alan duvarların sayısı. Kalın duvarların basılması daha uzun sürer ancak kalın duvarlar kolay devrilmezler."
  5595. #~ msgctxt "clean_between_layers description"
  5596. #~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  5597. #~ msgstr "Katmanlar arasına sürme nozülü G-code'unun dahil edilip edilmeyeceği. Bu ayarın etkinleştirilmesi katman değişiminde geri çekme davranışını etkileyebilir. Sürme komutunun çalıştığı katmanlarda geri çekmeyi kontrol etmek için lütfen Sürme Geri Çekme ayarlarını kullanın."
  5598. #~ msgctxt "max_extrusion_before_wipe description"
  5599. #~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
  5600. #~ msgstr "Başka bir sürme nozülü başlatılmadan önce ekstrude edilebilecek maksimum malzeme miktarı."
  5601. #~ msgctxt "wipe_retraction_prime_speed label"
  5602. #~ msgid "Retraction Prime Speed"
  5603. #~ msgstr "Geri Çekme Sırasındaki Astar Hızı"
  5604. #~ msgctxt "wipe_hop_enable label"
  5605. #~ msgid "Wipe Z Hop When Retracted"
  5606. #~ msgstr "Geri Çekildiğinde Sürme Z Sıçraması"
  5607. #~ msgctxt "wipe_hop_enable description"
  5608. #~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  5609. #~ msgstr "Bir geri çekme işlemi yapıldığında baskı tepsisi nozül ve baskı arasında açıklık oluşturmak üzere alçaltılır. Bu, hareket sırasında nozülün baskıya çarpmasını önleyerek baskının devrilip baskı tepsisinden düşmesini önler."
  5610. #~ msgctxt "minimum_interface_area description"
  5611. #~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
  5612. #~ msgstr "Destek arayüzü poligonları için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır."
  5613. #~ msgctxt "minimum_roof_area description"
  5614. #~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated."
  5615. #~ msgstr "Destek çatıları için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır."
  5616. #~ msgctxt "minimum_bottom_area description"
  5617. #~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated."
  5618. #~ msgstr "Destek zeminleri için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır."
  5619. #~ msgctxt "skin_alternate_rotation label"
  5620. #~ msgid "Alternate Skin Rotation"
  5621. #~ msgstr "Dış Katman Rotasyonunu Değiştir"
  5622. #~ msgctxt "skin_alternate_rotation description"
  5623. #~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions."
  5624. #~ msgstr "Üst/alt katmanların yazdırıldığı yönü değiştirin. Normal koşullarda sadece çapraz şekilde yazdırılırlar. Bu ayar sadece-X ve sadece-Y yönlerini ekler."
  5625. #~ msgctxt "flow_rate_max_extrusion_offset label"
  5626. #~ msgid "Flow rate compensation max extrusion offset"
  5627. #~ msgstr "Akış hızı dengelemesi maksimum ekstrüzyon kayması"
  5628. #~ msgctxt "flow_rate_max_extrusion_offset description"
  5629. #~ msgid "The maximum distance in mm to compensate."
  5630. #~ msgstr "Dengelenecek, mm cinsinden maksimum mesafe."
  5631. #~ msgctxt "flow_rate_extrusion_offset_factor label"
  5632. #~ msgid "Flow rate compensation factor"
  5633. #~ msgstr "Akış hızı dengeleme çarpanı"
  5634. #~ msgctxt "flow_rate_extrusion_offset_factor description"
  5635. #~ msgid "The multiplication factor for the flow rate -> distance translation."
  5636. #~ msgstr "Akış hızından -> mesafeye dönüştürme için çarpan."
  5637. #~ msgctxt "adaptive_layer_height_threshold label"
  5638. #~ msgid "Adaptive Layers Threshold"
  5639. #~ msgstr "Uyarlanabilir Katman Eşiği"
  5640. #~ msgctxt "adaptive_layer_height_threshold description"
  5641. #~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer."
  5642. #~ msgstr "Daha küçük bir katmanın kullanılıp kullanılmayacağını belirleyen eşik. Bu rakam bir katmandaki en dik eğimin tanjantına eşittir."
  5643. #~ msgctxt "wall_overhang_angle description"
  5644. #~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging."
  5645. #~ msgstr "Bu açıdan daha fazla çıkıntı yapan duvarlar çıkıntılı duvar ayarları kullanılarak yazdırılacaktır. Değer 90 ise hiçbir duvar çıkıntılı kabul edilmeyecektir."
  5646. #~ msgctxt "small_feature_speed_factor description"
  5647. #~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5648. #~ msgstr "Küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir."
  5649. #~ msgctxt "small_feature_speed_factor_0 label"
  5650. #~ msgid "First Layer Speed"
  5651. #~ msgstr "İlk Katman Hızı"
  5652. #~ msgctxt "small_feature_speed_factor_0 description"
  5653. #~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5654. #~ msgstr "İlk katman üzerindeki küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir."
  5655. #~ msgctxt "ironing_enabled description"
  5656. #~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface."
  5657. #~ msgstr "Malzeme ekstrude edilmeden önce üst yüzey üzerinden bir kere daha geçilir. Bu işlem en üstte bulunan plastiği eriterek daha pürüzsüz bir yüzey elde etmek için kullanılır."
  5658. #~ msgctxt "start_layers_at_same_position label"
  5659. #~ msgid "Start Layers with the Same Part"
  5660. #~ msgstr "Katmanları Aynı Bölümle Başlatın"
  5661. #~ msgctxt "start_layers_at_same_position description"
  5662. #~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time."
  5663. #~ msgstr "Bir önceki katmanın bitirdiği bir parçayı yeni bir katmanla tekrar yazdırmamak için, her bir katmanda nesneyi yazdırmaya aynı noktanın yakınından başlayın. Bu şekilde daha iyi çıkıntılar ve küçük parçalar oluşturulur, ancak yazdırma süresi uzar."
  5664. #~ msgctxt "support_infill_angles description"
  5665. #~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane."
  5666. #~ msgstr "Destekler için dolgu şeklinin döndürülmesi. Destek dolgu şekli yatay düzlemde döndürülür."
  5667. #~ msgctxt "meshfix_maximum_deviation description"
  5668. #~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller."
  5669. #~ msgstr "Maksimum Çözünürlük ayarı için çözünürlüğü azaltırken izin verilen maksimum sapma. Bunu arttırırsanız baskının doğruluğu azalacak fakat g-code daha küçük olacaktır."
  5670. #~ msgctxt "machine_gcode_flavor label"
  5671. #~ msgid "G-code Flavour"
  5672. #~ msgstr "G-code Türü"
  5673. #~ msgctxt "z_seam_corner description"
  5674. #~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner."
  5675. #~ msgstr "Modelin ana hatlarında yer alan köşelerin dikişin konumunu etkileyip etkilemediğini kontrol edin. Hiçbiri, köşelerin dikişin konumunu etkilemediği anlamına gelir. Dikişi Gizle, dikişin daha büyük olasılıkla bir iç köşe üzerinde oluşmasını sağlar. Dikişi Açığa Çıkar, dikişin daha büyük olasılıkla bir dış köşe üzerinde oluşmasını sağlar. Dikişi Gizle veya Açığa Çıkar, dikişin daha büyük olasılıkla bir iç veya dış köşe üzerinde oluşmasını sağlar."
  5676. #~ msgctxt "skin_no_small_gaps_heuristic label"
  5677. #~ msgid "Ignore Small Z Gaps"
  5678. #~ msgstr "Küçük Z Açıklıklarını Yoksay"
  5679. #~ msgctxt "skin_no_small_gaps_heuristic description"
  5680. #~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting."
  5681. #~ msgstr "Modelde küçük dikey açıklıklar varsa bu dar yerlerdeki üst ve alt yüzeyleri oluşturmak için %5 oranında ek hesaplama süresi verilebilir. Bu gibi bir durumda ayarı devre dışı bırakın."
  5682. #~ msgctxt "build_volume_temperature description"
  5683. #~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted."
  5684. #~ msgstr "Yapı disk bölümü için kullanılan sıcaklık. Bu 0 olursa yapı disk bölümü sıcaklığı ayarlanmaz."
  5685. #~ msgctxt "limit_support_retractions description"
  5686. #~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure."
  5687. #~ msgstr "Düz çizgi üzerinde destekler arasında hareket ederken geri çekmeyi atla. Bu ayarın etkinleştirilmesi yazdırma süresi tasarrufu sağlar ancak destek yapısı içinde aşırı dizilime yol açabilir."
  5688. #~ msgctxt "max_feedrate_z_override label"
  5689. #~ msgid "Maximum Z Speed"
  5690. #~ msgstr "Maksimum Z Hızı"
  5691. #~ msgctxt "max_feedrate_z_override description"
  5692. #~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed."
  5693. #~ msgstr "Yapı levhasının hareket ettiği maksimum hız. Bu hızı 0’a ayarlamak yazdırmanın maksimum z hızı için aygıt yazılımı kullanmasına neden olur."
  5694. #~ msgctxt "support_join_distance description"
  5695. #~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one."
  5696. #~ msgstr "X/Y yönündeki destek yapıları arasındaki maksimum mesafe. Ayrı yapılar birbirlerine bu değerden daha yakınsa yapılar birleşip tek olur."
  5697. #~ msgctxt "support_minimal_diameter label"
  5698. #~ msgid "Minimum Diameter"
  5699. #~ msgstr "Minimum Çap"
  5700. #~ msgctxt "support_minimal_diameter description"
  5701. #~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  5702. #~ msgstr "Özel bir destek direği ile desteklenecek küçük bir alanın X/Y yönündeki minimum çapı."
  5703. #~ msgctxt "prime_tower_circular label"
  5704. #~ msgid "Circular Prime Tower"
  5705. #~ msgstr "Dairesel İlk Direk"
  5706. #~ msgctxt "prime_tower_circular description"
  5707. #~ msgid "Make the prime tower as a circular shape."
  5708. #~ msgstr "İlk direği dairesel bir şekil olarak yapın."
  5709. #~ msgctxt "prime_tower_flow description"
  5710. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  5711. #~ msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır."
  5712. #~ msgctxt "smooth_spiralized_contours description"
  5713. #~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details."
  5714. #~ msgstr "Z dikişinin görünürlüğünü azaltmak için helezon şeklinde konturları düzeltin (Z-dikişi yazdırma durumunda çok az görünür olmalı, ancak tabaka görünümünde halen görünür olmalıdır). Düzeltme işleminin ince yüzey detaylarında bulanıklığa neden olabileceğini unutmayınız."
  5715. #~ msgctxt "support_conical_enabled description"
  5716. #~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang."
  5717. #~ msgstr "Deneysel Özellik: Destek alanlarını alt kısımlarda çıkıntılardakinden daha küçük yapar."
  5718. #~ msgctxt "extruders_enabled_count label"
  5719. #~ msgid "Number of Extruders that are enabled"
  5720. #~ msgstr "Etkinleştirilmiş Ekstruder sayısı"
  5721. #~ msgctxt "machine_nozzle_tip_outer_diameter label"
  5722. #~ msgid "Outer nozzle diameter"
  5723. #~ msgstr "Dış nozül çapı"
  5724. #~ msgctxt "machine_nozzle_head_distance label"
  5725. #~ msgid "Nozzle length"
  5726. #~ msgstr "Nozül uzunluğu"
  5727. #~ msgctxt "machine_nozzle_expansion_angle label"
  5728. #~ msgid "Nozzle angle"
  5729. #~ msgstr "Nozül açısı"
  5730. #~ msgctxt "machine_heat_zone_length label"
  5731. #~ msgid "Heat zone length"
  5732. #~ msgstr "Isı bölgesi uzunluğu"
  5733. #~ msgctxt "machine_nozzle_heat_up_speed label"
  5734. #~ msgid "Heat up speed"
  5735. #~ msgstr "Isınma hızı"
  5736. #~ msgctxt "machine_nozzle_cool_down_speed label"
  5737. #~ msgid "Cool down speed"
  5738. #~ msgstr "Soğuma hızı"
  5739. #~ msgctxt "machine_gcode_flavor label"
  5740. #~ msgid "G-code flavour"
  5741. #~ msgstr "G-code türü"
  5742. #~ msgctxt "machine_disallowed_areas label"
  5743. #~ msgid "Disallowed areas"
  5744. #~ msgstr "İzin verilmeyen alanlar"
  5745. #~ msgctxt "machine_head_polygon label"
  5746. #~ msgid "Machine head polygon"
  5747. #~ msgstr "Makinenin ana poligonu"
  5748. #~ msgctxt "machine_head_with_fans_polygon label"
  5749. #~ msgid "Machine head & Fan polygon"
  5750. #~ msgstr "Makinenin başlığı ve Fan poligonu"
  5751. #~ msgctxt "gantry_height label"
  5752. #~ msgid "Gantry height"
  5753. #~ msgstr "Portal yüksekliği"
  5754. #~ msgctxt "machine_use_extruder_offset_to_offset_coords label"
  5755. #~ msgid "Offset With Extruder"
  5756. #~ msgstr "Ekstruder Ofseti"
  5757. #~ msgctxt "adaptive_layer_height_enabled label"
  5758. #~ msgid "Use adaptive layers"
  5759. #~ msgstr "Uyarlanabilir Katmanların Kullanımı"
  5760. #~ msgctxt "adaptive_layer_height_variation label"
  5761. #~ msgid "Adaptive layers maximum variation"
  5762. #~ msgstr "Uyarlanabilir katmanların azami değişkenliği"
  5763. #~ msgctxt "adaptive_layer_height_variation_step label"
  5764. #~ msgid "Adaptive layers variation step size"
  5765. #~ msgstr "Uyarlanabilir katmanların değişkenlik adım boyu"
  5766. #~ msgctxt "adaptive_layer_height_threshold label"
  5767. #~ msgid "Adaptive layers threshold"
  5768. #~ msgstr "Uyarlanabilir katman eşiği"
  5769. #~ msgctxt "skin_overlap description"
  5770. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  5771. #~ msgstr "Yüzey hattı genişliğinin yüzdesi olarak yüzey ve duvar çakışmasının miktarı. Ufak bir çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Bu, yüzey ve en iç duvar hat eninin ortalama yüzdesidir."
  5772. #~ msgctxt "skin_overlap_mm description"
  5773. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  5774. #~ msgstr "Yüzey ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların yüzeye sıkıca bağlanmasını sağlar."
  5775. #~ msgctxt "switch_extruder_retraction_amount description"
  5776. #~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  5777. #~ msgstr "Geri çekme miktarı: Hiçbir geri çekme yapılmaması için 0’a ayarlayın. Bu genellikle ısı bölgesi uzunluğu ile aynıdır."
  5778. #~ msgctxt "retraction_combing description"
  5779. #~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases."
  5780. #~ msgstr "Tarama, hareket sırasında nozülü daha önce yazdırılmış alanlarda tutar. Bu durum hareketleri biraz uzatır ancak geri çekme ihtiyacını azaltır. Tarama kapalıysa materyal geri çekilecektir, nozül de bir sonraki noktaya düz bir çizgi üzerinden gider. Üst/alt yüzey alanlarının üzerinde tarama yapmayarak sadece dolgu içerisinde tarama yapılabilir. “Dolgu İçinde” seçeneğinin daha önceki Cura sürümlerinde bulunan “Yüzey Alanında Değil” seçeneğiyle tamamen aynı davranışı gösterdiğini unutmayın."
  5781. #~ msgctxt "connect_skin_polygons description"
  5782. #~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality."
  5783. #~ msgstr "Üst/alt yüzey yollarını yan yana ise bağla. Eş merkezli şekil için bu ayarı etkinleştirmek hareket süresini önemli ölçüde kısaltır; ancak bağlantılar dolgunun üzerinde meydana gelebileceğinden bu özellik üst yüzeyin kalitesini düşürebilir."
  5784. #~ msgctxt "infill_pattern description"
  5785. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5786. #~ msgstr "Baskının dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, üçlü altıgen, kübik, sekizlik, çeyrek kübik, çapraz ve eşmerkezli şekiller, her katmana tam olarak basılır. Kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir."
  5787. #~ msgctxt "infill_pattern option concentric_3d"
  5788. #~ msgid "Concentric 3D"
  5789. #~ msgstr "Eş merkezli 3D"
  5790. #~ msgctxt "retraction_combing description"
  5791. #~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only."
  5792. #~ msgstr "Tarama, hareket sırasında nozülü halihazırda yazdırılmış bölgelerde tutar. Bu şekilde biraz daha uzun hareket hamleleri sağlarken geri çekme ihtiyacını azaltır. Tarama kapatıldığında, malzeme geri çekilecek ve nozül bir sonraki noktaya kadar düz bir çizgide hareket edecektir. Sadece dolgunun taratılmasıyla üst/alt yüzey bölgelerinde taramanın engellenmesi de mümkündür."
  5793. #~ msgctxt "support_pattern option concentric_3d"
  5794. #~ msgid "Concentric 3D"
  5795. #~ msgstr "Eş merkezli 3D"
  5796. #~ msgctxt "support_interface_pattern option concentric_3d"
  5797. #~ msgid "Concentric 3D"
  5798. #~ msgstr "Eş merkezli 3D"
  5799. #~ msgctxt "support_roof_pattern option concentric_3d"
  5800. #~ msgid "Concentric 3D"
  5801. #~ msgstr "Eş Merkezli 3D"
  5802. #~ msgctxt "support_bottom_pattern option concentric_3d"
  5803. #~ msgid "Concentric 3D"
  5804. #~ msgstr "Eş Merkezli 3D"
  5805. #~ msgctxt "raft_base_line_spacing label"
  5806. #~ msgid "Raft Line Spacing"
  5807. #~ msgstr "Radye Hat Boşluğu"
  5808. #~ msgctxt "prime_tower_wall_thickness label"
  5809. #~ msgid "Prime Tower Thickness"
  5810. #~ msgstr "İlk Direğin Kalınlığı"
  5811. #~ msgctxt "prime_tower_wall_thickness description"
  5812. #~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower."
  5813. #~ msgstr "Boş olan ilk direğin kalınlığı Kalınlığın Minimum İlk Direk Hacminin yarısından fazla olması ilk direğin yoğun olmasına neden olur."
  5814. #~ msgctxt "dual_pre_wipe label"
  5815. #~ msgid "Wipe Nozzle After Switch"
  5816. #~ msgstr "Değişimden Sonra Sürme Nozülü"
  5817. #~ msgctxt "dual_pre_wipe description"
  5818. #~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print."
  5819. #~ msgstr "Ekstruderi değiştirdikten sonra ilk nesne yazdırıldığında nozülden sızan malzemeyi temizleyin. Bu, sızdırılan malzemenin yazdırmanın yüzey kalitesine en az zarar verdiği yerlerde güvenli ve yavaş bir temizleme hareketi gerçekleştirir."
  5820. #~ msgctxt "prime_tower_purge_volume label"
  5821. #~ msgid "Prime Tower Purge Volume"
  5822. #~ msgstr "İlk Direk Temizleme Hacmi"
  5823. #~ msgctxt "prime_tower_purge_volume description"
  5824. #~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle."
  5825. #~ msgstr "İlk direk silinirken temizlenecek olan filaman miktarı. Temizleme işlemi, nozül aktif değilken sızarak kaybolan filamanı dengelemeye yarar."
  5826. #~ msgctxt "bridge_wall_max_overhang label"
  5827. #~ msgid "Bridge Wall Max Overhang"
  5828. #~ msgstr "Köprü Duvarı Maksimum Çıkıntısı"
  5829. #~ msgctxt "bridge_wall_max_overhang description"
  5830. #~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings."
  5831. #~ msgstr "Bir duvar, köprü ayarları kullanılarak yazdırılmadan önce o duvar çizgisinin altındaki hava bölgesinin maksimum izin verilen genişliği. Duvar çizgisi genişliğinin bir yüzdesi olarak ifade edilir. Hava boşluğu bundan daha geniş olduğunda, duvar çizgisi köprü ayarları kullanılarak yazdırılır. Aksi halde duvar çizgisi normal ayarlar kullanılarak yazdırılır. Değer ne kadar düşük olursa, çıkıntı yapan duvar çizgilerinin köprü ayarları kullanılarak yazdırılması ihtimali o kadar yüksek olur."
  5832. #~ msgctxt "optimize_wall_printing_order description"
  5833. #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization."
  5834. #~ msgstr "Geri çekmelerin sayısını ve kat edilen mesafeyi azaltmak için duvarların yazdırıldığı sırayı optimize edin. Çoğu parça, bunun etkinleştirilmesinden yararlanır, ancak bazılarının yararlanması için gerçekte daha uzun bir süre gerekebilir. Bu yüzden, yazdırma süresi tahminlerini optimizasyonlu ve optimizasyonsuz olarak karşılaştırın."
  5835. #~ msgctxt "retraction_combing option noskin"
  5836. #~ msgid "No Skin"
  5837. #~ msgstr "Yüzey yok"
  5838. #~ msgctxt "cross_infill_apply_pockets_alternatingly label"
  5839. #~ msgid "Alternate Cross 3D Pockets"
  5840. #~ msgstr "Çapraz 3D Cepleri Değiştir"
  5841. #~ msgctxt "cross_infill_apply_pockets_alternatingly description"
  5842. #~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself."
  5843. #~ msgstr "Cepleri sadece çapraz 3D şekildeki dört yönlü kesişme yerlerinin yarısında uygulayın ve şeklin kendisine temas ettiği yüksekliklerin arasında ceplerin yerini değiştirin."
  5844. #~ msgctxt "infill_hollow label"
  5845. #~ msgid "Hollow Out Objects"
  5846. #~ msgstr "Nesnelerin Oyulması"
  5847. #~ msgctxt "infill_hollow description"
  5848. #~ msgid "Remove all infill and make the inside of the object eligible for support."
  5849. #~ msgstr "Tüm dolgu malzemesini kaldırın ve nesnenin içini destek için uygun hale getirin."
  5850. #~ msgctxt "adaptive_layer_height_variation description"
  5851. #~ msgid "The maximum allowed height different from the base layer height in mm."
  5852. #~ msgstr "Mm bazında taban katmanı yüksekliğine göre izin verilen azami yükseklik."
  5853. #~ msgctxt "center_object label"
  5854. #~ msgid "Center object"
  5855. #~ msgstr "Nesneyi ortalayın"
  5856. #~ msgctxt "mesh_position_x label"
  5857. #~ msgid "Mesh position x"
  5858. #~ msgstr "Bileşim konumu x"
  5859. #~ msgctxt "mesh_position_y label"
  5860. #~ msgid "Mesh position y"
  5861. #~ msgstr "Bileşim konumu y"
  5862. #~ msgctxt "mesh_position_z label"
  5863. #~ msgid "Mesh position z"
  5864. #~ msgstr "Bileşim konumu z"
  5865. #~ msgctxt "machine_start_gcode label"
  5866. #~ msgid "Start GCode"
  5867. #~ msgstr "G-Code'u başlat"
  5868. #~ msgctxt "machine_start_gcode description"
  5869. #~ msgid ""
  5870. #~ "Gcode commands to be executed at the very start - separated by \n"
  5871. #~ "."
  5872. #~ msgstr ""
  5873. #~ "​\n"
  5874. #~ " ile ayrılan, başlangıçta yürütülecek G-code komutları."
  5875. #~ msgctxt "machine_end_gcode label"
  5876. #~ msgid "End GCode"
  5877. #~ msgstr "G-Code'u sonlandır"
  5878. #~ msgctxt "machine_end_gcode description"
  5879. #~ msgid ""
  5880. #~ "Gcode commands to be executed at the very end - separated by \n"
  5881. #~ "."
  5882. #~ msgstr ""
  5883. #~ "​\n"
  5884. #~ " ile ayrılan, bitişte yürütülecek Gcode komutları."
  5885. #~ msgctxt "machine_gcode_flavor label"
  5886. #~ msgid "Gcode flavour"
  5887. #~ msgstr "GCode türü"
  5888. #~ msgctxt "machine_gcode_flavor description"
  5889. #~ msgid "The type of gcode to be generated."
  5890. #~ msgstr "Oluşturulacak gcode türü."
  5891. #~ msgctxt "meshfix_keep_open_polygons description"
  5892. #~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode."
  5893. #~ msgstr "Normal koşullarda, Cura ağdaki küçük boşlukları diker ve büyük boşluklu katman parçalarını ortadan kaldırır. Bu seçeneği etkinleştirmek, dikilemeyen parçaları muhafaza eder. Bu seçenek, hiçbir işlemin uygun bir GCode oluşturamaması durumunda başvurulacak son seçenek olarak kullanılmalıdır."
  5894. #~ msgctxt "relative_extrusion description"
  5895. #~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output."
  5896. #~ msgstr "Mutlak ekstrüzyon yerine bağıl ekstrüzyon uygulayın. Bağıl E-adımlarının uygulanması, Gcode’un sonradan işlenmesini kolaylaştırır. Ancak bu, tüm yazıcılar tarafından desteklenmemektedir ve mutlak E-adımları ile karşılaştırıldığında birikmiş malzemenin miktarında hafif farklılıklar yaratabilir. Bu ayara bakılmaksızın, herhangi bir Gcode komut dosyası çıkartılmadan önce ekstrüzyon modu her zaman mutlak değere ayarlı olacaktır."
  5897. #~ msgctxt "infill_offset_x description"
  5898. #~ msgid "The infill pattern is offset this distance along the X axis."
  5899. #~ msgstr "Dolgu şekli X ekseni boyunca bu mesafe kadar kaydırılır."
  5900. #~ msgctxt "infill_offset_y description"
  5901. #~ msgid "The infill pattern is offset this distance along the Y axis."
  5902. #~ msgstr "Dolgu şekli Y ekseni boyunca bu mesafe kadar kaydırılır."
  5903. #~ msgctxt "infill_overlap description"
  5904. #~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  5905. #~ msgstr "Dolgu ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar."
  5906. #~ msgctxt "skin_overlap description"
  5907. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  5908. #~ msgstr "Hat genişliğinin bir yüzdesi olarak yüzey ve duvarlar arasındaki çakışma miktarı. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Bu, yüzey hatlarının ve en içteki duvarın ortalama hat genişliklerinin bir yüzdesidir."
  5909. #~ msgctxt "material_bed_temperature description"
  5910. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print."
  5911. #~ msgstr "Isınan yapı levhası için kullanılan sıcaklık. Bu ayar 0 olursa bu yazdırma için yatak ısıtılmaz."
  5912. #~ msgctxt "wall_x_extruder_nr label"
  5913. #~ msgid "Inner Walls Extruder"
  5914. #~ msgstr "İç Duvar Ekstruderi"
  5915. #~ msgctxt "infill_pattern description"
  5916. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5917. #~ msgstr "Yazdırma dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, kübik, sekizlik, çeyrek kübik ve eş merkezli şekiller, her katmanda tam olarak yazdırılır. Kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir."
  5918. #~ msgctxt "zig_zaggify_infill description"
  5919. #~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  5920. #~ msgstr "İç duvarın şeklini takip eden bir hattı kullanarak, dolgu şeklinin iç duvarla buluştuğu noktada uçları bağlayın. Bu ayarın etkinleştirilmesi, dolgunun duvarlara daha iyi yapışmasını sağlayabilir ve dolgunun dikey yüzeylerin kalitesi üzerindeki etkilerini azaltır. Bu ayarın devre dışı bırakılması, kullanılan malzemenin miktarını azaltır."
  5921. #~ msgctxt "skirt_gap description"
  5922. #~ msgid ""
  5923. #~ "The horizontal distance between the skirt and the first layer of the print.\n"
  5924. #~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance."
  5925. #~ msgstr ""
  5926. #~ "Etek ve baskının ilk katmanı arasındaki yatay mesafe.\n"
  5927. #~ "Bu minimum mesafedir ve çoklu etek hatları bu mesafeden dışa doğru genişleyecektir."
  5928. #~ msgctxt "z_offset_layer_0 label"
  5929. #~ msgid "Initial Layer Z Offset"
  5930. #~ msgstr "İlk Katman Z Ofseti"
  5931. #~ msgctxt "z_offset_layer_0 description"
  5932. #~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly."
  5933. #~ msgstr "Ekstrüder, birinci katmanın normal yüksekliğinden bu miktarda mesafe bırakılır. Negatif (yükseltilmiş) veya pozitif (alçaltılmış) olabilir. Ekstrüderin hafifçe yükseltilmesi durumunda, bazı filaman türleri yapı levhasına daha iyi yapışır."
  5934. #~ msgctxt "z_offset_taper_layers label"
  5935. #~ msgid "Z Offset Taper Layers"
  5936. #~ msgstr "Z Ofseti Konik Katmanları"
  5937. #~ msgctxt "z_offset_taper_layers description"
  5938. #~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print."
  5939. #~ msgstr "Sıfır olmadığında, Z ofseti birçok katman üzerinde 0’a düşürülür. 0 değeri, Z ofsetinin yazdırmada yer alan tüm katmanlarda sabit kalması anlamına gelir."
  5940. #~ msgctxt "raft_smoothing description"
  5941. #~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  5942. #~ msgstr "Bu ayar, radye ana hattında yer alan iç köşelerin ne kadar yuvarlandığını kontrol eder. İç köşeler, burada belirtilen değere eşit yarıçapa sahip yarım daire şeklinde yuvarlanır. Ayrıca bu ayar, söz konusu daireden daha küçük olan radye ana hattındaki delikleri ortadan kaldırır."
  5943. #~ msgctxt "infill_pattern description"
  5944. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction."
  5945. #~ msgstr "Yazdırma dolgu malzemesinin şekli. Hat ve zik zak dolguları alternatif katmanlarda yön değiştirerek malzeme masrafını azaltır Izgara, üçgen, kübik, dört yüzlü ve eş merkezli desenler her katmanda tamamıyla yazdırılır. Her yönde daha eşit dayanıklılık dağılımı sağlamak için küp ve dört yüzlü dolgular her katmanda değişir."
  5946. #~ msgctxt "infill_pattern option tetrahedral"
  5947. #~ msgid "Tetrahedral"
  5948. #~ msgstr "Dört yüzlü"
  5949. #~ msgctxt "expand_skins_into_infill label"
  5950. #~ msgid "Expand Skins Into Infill"
  5951. #~ msgstr "Yüzeyleri Dolguya Genişlet"
  5952. #~ msgctxt "expand_skins_into_infill description"
  5953. #~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin."
  5954. #~ msgstr "Düz zeminlerin üst ve/veya alt yüzeylerinin yüzey alanlarını genişletin. Varsayılan olarak yüzeyler dolguyu çevreleyen duvar çizgilerinin altında sona erer. Ancak bu ayar, dolgu yoğunluğu düşük olduğunda deliklerin görünmesine neden olur. Bu ayar, yüzeyleri duvar çizgisinin ötesine genişleterek sonraki katmandaki dolgunun yüzeye dayanmasını sağlar."
  5955. #~ msgctxt "expand_upper_skins label"
  5956. #~ msgid "Expand Top Skins Into Infill"
  5957. #~ msgstr "Üst Yüzey Alanını Dolguya Genişlet"
  5958. #~ msgctxt "expand_upper_skins description"
  5959. #~ msgid "Expand the top skin areas (areas with air above) so that they support infill above."
  5960. #~ msgstr "Dolguyu yukarıdan desteklemeleri için üst yüzey alanlarını (üzerinde hava bulunan alanları) genişletin."
  5961. #~ msgctxt "expand_lower_skins label"
  5962. #~ msgid "Expand Bottom Skins Into Infill"
  5963. #~ msgstr "Alt Yüzey Alanını Dolguya Genişlet"
  5964. #~ msgctxt "expand_lower_skins description"
  5965. #~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  5966. #~ msgstr "Dolgu katmanlarını yukarıdan ve aşağıdan desteklemeleri için alt yüzey alanlarını (altında hava bulunan alanları) genişletin."
  5967. #~ msgctxt "expand_skins_expand_distance description"
  5968. #~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient."
  5969. #~ msgstr "Yüzeylerin dolguya doğru genişleyeceği mesafe. Varsayılan mesafe dolgu hatları arasındaki boşluğu kapatmaya yeterlidir ve dolgu yoğunluğu düşük olduğunda yüzeyin duvara temas ettiği kısımlarda oluşan delikleri önler. Küçük bir mesafe genellikle yeterli olur."
  5970. #~ msgctxt "support_skip_some_zags label"
  5971. #~ msgid "Skip Some ZigZags Connections"
  5972. #~ msgstr "Bazı Zikzak Bağlantılarını Atla"
  5973. #~ msgctxt "support_skip_some_zags description"
  5974. #~ msgid "Skip some ZigZags connections to make the support structure easier to break."
  5975. #~ msgstr "Destek yapısının daha kolay kırılması için bazı Zikzak bağlantılarını atlayın."
  5976. #~ msgctxt "support_zag_skip_count label"
  5977. #~ msgid "ZigZag Connection Skip Count"
  5978. #~ msgstr "Atlanan Zikzak Bağlantısı Sayısı"
  5979. #~ msgctxt "support_zag_skip_count description"
  5980. #~ msgid "Skip one in every N connection lines to make the support structure easier to break."
  5981. #~ msgstr "Destek yapısının daha kolay kırılması için her N bağlantı hattında bir zikzak atlayın."
  5982. #~ msgctxt "machine_show_variants label"
  5983. #~ msgid "Show machine variants"
  5984. #~ msgstr "Makine varyantlarını göster"
  5985. #~ msgctxt "material_bed_temp_wait label"
  5986. #~ msgid "Wait for build plate heatup"
  5987. #~ msgstr "Yapı levhasının ısınmasını bekle"
  5988. #~ msgctxt "material_print_temp_wait label"
  5989. #~ msgid "Wait for nozzle heatup"
  5990. #~ msgstr "Nozülün ısınmasını bekle"
  5991. #~ msgctxt "material_print_temp_prepend label"
  5992. #~ msgid "Include material temperatures"
  5993. #~ msgstr "Malzeme sıcaklıkları ekleme"
  5994. #~ msgctxt "material_bed_temp_prepend label"
  5995. #~ msgid "Include build plate temperature"
  5996. #~ msgstr "Yapı levhası sıcaklığı ekle"
  5997. #~ msgctxt "machine_width label"
  5998. #~ msgid "Machine width"
  5999. #~ msgstr "Makine genişliği"
  6000. #~ msgctxt "machine_depth label"
  6001. #~ msgid "Machine depth"
  6002. #~ msgstr "Makine derinliği"
  6003. #~ msgctxt "machine_shape label"
  6004. #~ msgid "Build plate shape"
  6005. #~ msgstr "Yapı levhası şekli"
  6006. #~ msgctxt "machine_height label"
  6007. #~ msgid "Machine height"
  6008. #~ msgstr "Makine yüksekliği"
  6009. #~ msgctxt "machine_heated_bed label"
  6010. #~ msgid "Has heated build plate"
  6011. #~ msgstr "Yapı levhası ısıtıldı"
  6012. #~ msgctxt "machine_center_is_zero label"
  6013. #~ msgid "Is center origin"
  6014. #~ msgstr "Merkez nokta"
  6015. #~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  6016. #~ msgid "RepRap (Marlin/Sprinter)"
  6017. #~ msgstr "RepRap (Marlin/Sprinter)"
  6018. #~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)"
  6019. #~ msgid "RepRap (Volumetric)"
  6020. #~ msgstr "RepRap (Volumetric)"
  6021. #~ msgctxt "wall_thickness description"
  6022. #~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  6023. #~ msgstr "Dış duvarların yatay istikametteki kalınlığı. Duvar hattı genişliği ile ayrılan bu değer duvar sayısını belirtir."
  6024. #~ msgctxt "skin_overlap description"
  6025. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  6026. #~ msgstr "Yüzey ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların yüzeye sıkıca bağlanmasını sağlar."
  6027. #~ msgctxt "support_interface_line_width description"
  6028. #~ msgid "Width of a single support interface line."
  6029. #~ msgstr "Tek bir destek arayüz hattının genişliği."
  6030. #~ msgctxt "sub_div_rad_mult label"
  6031. #~ msgid "Cubic Subdivision Radius"
  6032. #~ msgstr "Kübik Alt Bölüm Yarıçapı"
  6033. #~ msgctxt "sub_div_rad_mult description"
  6034. #~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes."
  6035. #~ msgstr "Bu küpün bölünüp bölünmemesine karar vermek için modelin sınırını kontrol eden ve her bir küpün merkezinden alınan yarıçaptaki çarpan. Büyük değerler, daha küçük küpler gibi daha fazla alt bölüm oluşmasına neden olur."
  6036. #~ msgctxt "expand_upper_skins label"
  6037. #~ msgid "Expand Upper Skins"
  6038. #~ msgstr "Üst Yüzeyleri Genişlet"
  6039. #~ msgctxt "expand_upper_skins description"
  6040. #~ msgid "Expand upper skin areas (areas with air above) so that they support infill above."
  6041. #~ msgstr "Üst yüzey alanlarını (üzerinde hava bulunan alanları), üstteki dolguyu destekleyecek şekilde genişletin."
  6042. #~ msgctxt "expand_lower_skins label"
  6043. #~ msgid "Expand Lower Skins"
  6044. #~ msgstr "Alt Yüzeyleri Genişlet"
  6045. #~ msgctxt "expand_lower_skins description"
  6046. #~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  6047. #~ msgstr "Alt yüzey alanlarını (altında hava bulunan alanları), üstteki ve alttaki dolgu katmanlarıyla sabitlenecek şekilde genişletin."
  6048. #~ msgctxt "speed_support_interface description"
  6049. #~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality."
  6050. #~ msgstr "Destek tavan ve tabanının yazdırıldığı hız. Bunları daha düşük hızda yazdırmak çıkıntı kalitesini artırabilir."
  6051. #~ msgctxt "acceleration_support_interface description"
  6052. #~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality."
  6053. #~ msgstr "Destek tavanı ve tabanının yazdırıldığı ivme. Bunları daha düşük ivmelerde yazdırmak çıkıntı kalitesini artırabilir."
  6054. #~ msgctxt "jerk_support_interface description"
  6055. #~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed."
  6056. #~ msgstr "Desteğin tavan ve tabanlarının yazdırıldığı maksimum anlık hız değişimi."
  6057. #~ msgctxt "support_enable label"
  6058. #~ msgid "Enable Support"
  6059. #~ msgstr "Desteği etkinleştir"
  6060. #~ msgctxt "support_enable description"
  6061. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  6062. #~ msgstr "Destek yapılarını etkinleştir. Bu yapılar sert çıkıntıları olan model parçalarını destekler."
  6063. #~ msgctxt "support_interface_extruder_nr description"
  6064. #~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion."
  6065. #~ msgstr "Destek dolgusunun tavan ve tabanları için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır."
  6066. #~ msgctxt "support_bottom_stair_step_height description"
  6067. #~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures."
  6068. #~ msgstr "Model üzerindeki desteğin merdivene benzeyen alt kısmındaki basamakların yüksekliği. Düşük bir değer desteğin çıkarılmasını zorlaştırırken yüksek değerler destek yapılarının sağlam olmamasına neden olabilir."
  6069. #~ msgctxt "support_bottom_height label"
  6070. #~ msgid "Support Bottom Thickness"
  6071. #~ msgstr "Destek Taban Kalınlığı"
  6072. #~ msgctxt "support_bottom_height description"
  6073. #~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests."
  6074. #~ msgstr "Destek tabanlarının kalınlığı. Desteğin bulunduğu modelin üst kısımlarına yazdırılan yoğun katmanların sayısını kontrol eder."
  6075. #~ msgctxt "support_interface_skip_height description"
  6076. #~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
  6077. #~ msgstr "Destek üzerinde modelin olduğu yeri kontrol ederken belirtilen yükselin adımlarını izleyin. Daha yüksek değerler, destek arayüzü olması gereken yerlerde yazdırılacak normal destek oluştururken daha düşük değerler daha yavaş dilimler."
  6078. #~ msgctxt "support_interface_density description"
  6079. #~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  6080. #~ msgstr "Destek yapısının tavan ve tabanlarının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken desteklerin kaldırılmasını zorlaştırır."
  6081. #~ msgctxt "support_interface_line_distance label"
  6082. #~ msgid "Support Interface Line Distance"
  6083. #~ msgstr "Destek Arayüz Hattı Mesafesi"
  6084. #~ msgctxt "support_interface_line_distance description"
  6085. #~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately."
  6086. #~ msgstr "Yazdırılan destek arayüz hatları arasındaki mesafe. Bu ayar, Destek Arayüz Yoğunluğu ile hesaplanır ama ayrı ayrı ayarlanabilir."
  6087. #~ msgctxt "magic_spiralize description"
  6088. #~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions."
  6089. #~ msgstr "Dış kenarın Z hareketini pürüzsüzleştirir. Bu şekilde yazdırma boyunca sabit bir Z artışı oluşur. Bu özellik, katı bir modeli katı bir tabanı olan tek duvarlı bir modele dönüştürür. Özellik, diğer sürümlerde Joris olarak adlandırılmıştır."
  6090. #~ msgctxt "material_print_temperature description"
  6091. #~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually."
  6092. #~ msgstr "Yazdırma için kullanılan sıcaklık. Yazıcıyı elle önceden ısıtmak için 0’a ayarlayın."
  6093. #~ msgctxt "material_bed_temperature description"
  6094. #~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually."
  6095. #~ msgstr "Isınan yapı levhası için kullanılan sıcaklık. Yazıcıyı elle önceden ısıtmak için 0’a ayarlayın."
  6096. #~ msgctxt "support_z_distance description"
  6097. #~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height."
  6098. #~ msgstr "Yazdırılacak destek yapısının üstüne/altına olan mesafe Bu boşluk, model yazdırıldıktan sonra destekleri kaldırmak için açıklık sağlar. Bu değer katman yüksekliğinin üst katına yuvarlanır."
  6099. #~ msgctxt "z_seam_type option back"
  6100. #~ msgid "Back"
  6101. #~ msgstr "Arka"
  6102. #~ msgctxt "multiple_mesh_overlap label"
  6103. #~ msgid "Dual Extrusion Overlap"
  6104. #~ msgstr "İkili Ekstrüzyon Çakışması"