fdmprinter.def.json.po 288 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589
  1. #, fuzzy
  2. msgid ""
  3. msgstr ""
  4. "Project-Id-Version: Uranium json setting files\n"
  5. "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
  6. "POT-Creation-Date: 2023-06-08 16:32+0000\n"
  7. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  8. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  9. "Language-Team: LANGUAGE\n"
  10. "Language: \n"
  11. "MIME-Version: 1.0\n"
  12. "Content-Type: text/plain; charset=UTF-8\n"
  13. "Content-Transfer-Encoding: 8bit\n"
  14. msgctxt "ironing_inset description"
  15. 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."
  16. 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."
  17. msgctxt "material_no_load_move_factor description"
  18. 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."
  19. 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."
  20. msgctxt "roofing_angles description"
  21. 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)."
  22. 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."
  23. msgctxt "skin_angles description"
  24. 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)."
  25. 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."
  26. msgctxt "support_infill_angles description"
  27. 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."
  28. 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."
  29. msgctxt "support_bottom_angles description"
  30. 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)."
  31. 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."
  32. msgctxt "support_interface_angles description"
  33. 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)."
  34. 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."
  35. msgctxt "support_roof_angles description"
  36. 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)."
  37. 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."
  38. msgctxt "infill_angles description"
  39. 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)."
  40. 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)."
  41. msgctxt "nozzle_disallowed_areas description"
  42. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  43. msgstr "Nozülün girmesine izin verilmeyen alanlara sahip poligon listesi."
  44. msgctxt "machine_disallowed_areas description"
  45. msgid "A list of polygons with areas the print head is not allowed to enter."
  46. msgstr "Yazıcı başlığının giremediği alanları olan poligon listesi."
  47. msgctxt "brim_inside_margin description"
  48. msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
  49. msgstr "Bir başka parçanın içine tamamen kapatılmış bir parça, diğer parçanın içine temas eden bir dış kenar oluşturabilir. Bu, iç deliklerden bu mesafe içindeki tüm kenarları kaldırır."
  50. msgctxt "support_tree_branch_reach_limit description"
  51. msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) "
  52. msgstr "Dalların destekledikleri noktalardan ne kadar uzağa hareket edebileceğine dair bir tavsiye. Dallar hedeflerine (yapı levhası veya modelin düz bir parçası) ulaşmak için bu değeri ihlal edebilir. Bu değeri düşürmek, desteği daha sağlam hale getirecek, ancak dal miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır"
  53. msgctxt "extruder_prime_pos_abs label"
  54. msgid "Absolute Extruder Prime Position"
  55. msgstr "Mutlak Ekstruder İlk Konumu"
  56. msgctxt "adaptive_layer_height_variation label"
  57. msgid "Adaptive Layers Maximum Variation"
  58. msgstr "Uyarlanabilir Katmanların Azami Değişkenliği"
  59. msgctxt "adaptive_layer_height_threshold label"
  60. msgid "Adaptive Layers Topography Size"
  61. msgstr "Uyarlanabilir Katman Topografisi Boyutu"
  62. msgctxt "adaptive_layer_height_variation_step label"
  63. msgid "Adaptive Layers Variation Step Size"
  64. msgstr "Uyarlanabilir Katmanların Değişkenlik Adım Boyu"
  65. msgctxt "adaptive_layer_height_enabled description"
  66. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  67. msgstr "Uyarlanabilir katmanlar modelin şekline bağlı olarak katman yüksekliğini hesaplar."
  68. msgctxt "infill_wall_line_count description"
  69. msgid ""
  70. "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"
  71. "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."
  72. msgstr ""
  73. "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"
  74. "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."
  75. msgctxt "platform_adhesion description"
  76. msgid "Adhesion"
  77. msgstr "Yapıştırma"
  78. msgctxt "material_adhesion_tendency label"
  79. msgid "Adhesion Tendency"
  80. msgstr "Yapışma Eğilimi"
  81. msgctxt "skin_overlap description"
  82. 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."
  83. 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."
  84. msgctxt "skin_overlap_mm description"
  85. 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."
  86. 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."
  87. msgctxt "infill_sparse_density description"
  88. msgid "Adjusts the density of infill of the print."
  89. msgstr "Yazdırma dolgusunun yoğunluğunu ayarlar."
  90. msgctxt "support_interface_density description"
  91. 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."
  92. 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."
  93. msgctxt "support_tree_top_rate description"
  94. msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top."
  95. msgstr "Dalların uçlarını oluşturmak için kullanılan destek yapısının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar sağlar, ancak desteklerin çıkarılması daha zordur. Çok yüksek değerler için Destek Çatısı’nı kullanın veya destek yoğunluğunun en üstte benzer şekilde yüksek olmasını sağlayın."
  96. msgctxt "support_infill_rate description"
  97. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  98. 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."
  99. msgctxt "material_diameter description"
  100. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  101. msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin."
  102. msgctxt "support_type description"
  103. 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."
  104. 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."
  105. msgctxt "prime_tower_wipe_enabled description"
  106. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  107. 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."
  108. msgctxt "retraction_hop_after_extruder_switch description"
  109. 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."
  110. 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."
  111. msgctxt "retraction_combing option all"
  112. msgid "All"
  113. msgstr "Tümü"
  114. msgctxt "print_sequence option all_at_once"
  115. msgid "All at Once"
  116. msgstr "Tümünü birden"
  117. msgctxt "resolution description"
  118. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  119. 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"
  120. msgctxt "alternate_extra_perimeter label"
  121. msgid "Alternate Extra Wall"
  122. msgstr "Alternatif Ek Duvar"
  123. msgctxt "alternate_carve_order label"
  124. msgid "Alternate Mesh Removal"
  125. msgstr "Alternatif Örgü Giderimi"
  126. msgctxt "material_alternate_walls label"
  127. msgid "Alternate Wall Directions"
  128. msgstr "Duvar Yönlerini Değiştir"
  129. msgctxt "material_alternate_walls description"
  130. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  131. 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."
  132. msgctxt "machine_buildplate_type option aluminum"
  133. msgid "Aluminum"
  134. msgstr "Alüminyum"
  135. msgctxt "machine_always_write_active_tool label"
  136. msgid "Always Write Active Tool"
  137. msgstr "Her Zaman Aktif Aracı Yaz"
  138. msgctxt "travel_retract_before_outer_wall description"
  139. msgid "Always retract when moving to start an outer wall."
  140. msgstr "Dış duvar başlatmaya giderken her zaman geri çeker."
  141. msgctxt "hole_xy_offset description"
  142. 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."
  143. 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."
  144. msgctxt "xy_offset description"
  145. 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."
  146. 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."
  147. msgctxt "xy_offset_layer_0 description"
  148. 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\"."
  149. msgstr "İlk katmandaki tüm poligonlara uygulanan ofset miktarı. Negatif bir değer “fil ayağı” olarak bilinen ilk katman ezilmesini dengeleyebilir."
  150. msgctxt "support_offset description"
  151. 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."
  152. 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."
  153. msgctxt "support_bottom_offset description"
  154. msgid "Amount of offset applied to the floors of the support."
  155. msgstr "Destek zeminlerine uygulanan ofset miktarı."
  156. msgctxt "support_roof_offset description"
  157. msgid "Amount of offset applied to the roofs of the support."
  158. msgstr "Destek çatılarına uygulanan ofset miktarı."
  159. msgctxt "support_interface_offset description"
  160. msgid "Amount of offset applied to the support interface polygons."
  161. msgstr "Destek arayüzü poligonlarına uygulanan ofset miktarı."
  162. msgctxt "wipe_retraction_amount description"
  163. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  164. msgstr "Filamanın sürme dizisi sırasında sızıntı yapmaması için filanın geri çekilme miktarı."
  165. msgctxt "sub_div_rad_add description"
  166. 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."
  167. 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."
  168. msgctxt "anti_overhang_mesh label"
  169. msgid "Anti Overhang Mesh"
  170. msgstr "Çıkıntı Önleme Örgüsü"
  171. msgctxt "material_anti_ooze_retracted_position label"
  172. msgid "Anti-ooze Retracted Position"
  173. msgstr "Sızma Önleme Geri Çekme Mesafesi"
  174. msgctxt "material_anti_ooze_retraction_speed label"
  175. msgid "Anti-ooze Retraction Speed"
  176. msgstr "Sızma Önleme Geri Çekme Hızı"
  177. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  178. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  179. msgstr "Ekstrüder ofsetini koordinat sistemine uygulayın. Tüm ekstrüderleri etkiler."
  180. msgctxt "interlocking_enable description"
  181. msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
  182. msgstr "Modellerin temas ettiği yerlerde, iç içe geçen bir kiriş yapısı oluşturun. Bu, özellikle farklı malzemelerden basılmış modellerde, modeller arasındaki yapışmayı iyileştirir."
  183. msgctxt "travel_avoid_other_parts label"
  184. msgid "Avoid Printed Parts When Traveling"
  185. msgstr "Hareket Sırasında Yazdırılan Bölümleri Atlama"
  186. msgctxt "travel_avoid_supports label"
  187. msgid "Avoid Supports When Traveling"
  188. msgstr "Hareket Sırasında Destekleri Atla"
  189. msgctxt "z_seam_position option back"
  190. msgid "Back"
  191. msgstr "Geri"
  192. msgctxt "z_seam_position option backleft"
  193. msgid "Back Left"
  194. msgstr "Sol Arka"
  195. msgctxt "z_seam_position option backright"
  196. msgid "Back Right"
  197. msgstr "Sağ Arka"
  198. msgctxt "machine_gcode_flavor option BFB"
  199. msgid "Bits from Bytes"
  200. msgstr "Bits from Bytes"
  201. msgctxt "magic_mesh_surface_mode option both"
  202. msgid "Both"
  203. msgstr "Her İkisi"
  204. msgctxt "support_interface_priority option nothing"
  205. msgid "Both overlap"
  206. msgstr "Her ikisi de çakışıyor"
  207. msgctxt "bottom_layers label"
  208. msgid "Bottom Layers"
  209. msgstr "Alt katmanlar"
  210. msgctxt "top_bottom_pattern_0 label"
  211. msgid "Bottom Pattern Initial Layer"
  212. msgstr "Alt Şekil İlk Katmanı"
  213. msgctxt "bottom_skin_expand_distance label"
  214. msgid "Bottom Skin Expand Distance"
  215. msgstr "Alt Yüzey Genişleme Mesafesi"
  216. msgctxt "bottom_skin_preshrink label"
  217. msgid "Bottom Skin Removal Width"
  218. msgstr "Alt Yüzey Kaldırma Genişliği"
  219. msgctxt "bottom_thickness label"
  220. msgid "Bottom Thickness"
  221. msgstr "Alt Kalınlık"
  222. msgctxt "support_tree_top_rate label"
  223. msgid "Branch Density"
  224. msgstr "Dal Yoğunluğu"
  225. msgctxt "support_tree_branch_diameter label"
  226. msgid "Branch Diameter"
  227. msgstr "Dal Çapı"
  228. msgctxt "support_tree_branch_diameter_angle label"
  229. msgid "Branch Diameter Angle"
  230. msgstr "Dal Çapı Açısı"
  231. msgctxt "material_break_preparation_retracted_position label"
  232. msgid "Break Preparation Retracted Position"
  233. msgstr "Geri Çekme Pozisyonunda Durma Mesafesi"
  234. msgctxt "material_break_preparation_speed label"
  235. msgid "Break Preparation Retraction Speed"
  236. msgstr "Durma Payına Uygun Geri Çekme Hızı"
  237. msgctxt "material_break_preparation_temperature label"
  238. msgid "Break Preparation Temperature"
  239. msgstr "Kopma Hazırlığı Sıcaklığı"
  240. msgctxt "material_break_retracted_position label"
  241. msgid "Break Retracted Position"
  242. msgstr "Kopma Geri Çekme Mesafesi"
  243. msgctxt "material_break_speed label"
  244. msgid "Break Retraction Speed"
  245. msgstr "Kopma Geri Çekme Hızı"
  246. msgctxt "material_break_temperature label"
  247. msgid "Break Temperature"
  248. msgstr "Kopma Sıcaklığı"
  249. msgctxt "support_skip_some_zags label"
  250. msgid "Break Up Support In Chunks"
  251. msgstr "Parçalarda Döküm Desteği"
  252. msgctxt "bridge_fan_speed label"
  253. msgid "Bridge Fan Speed"
  254. msgstr "Köprü Fan Hızı"
  255. msgctxt "bridge_enable_more_layers label"
  256. msgid "Bridge Has Multiple Layers"
  257. msgstr "Köprüde Birden Fazla Katman Var"
  258. msgctxt "bridge_skin_density_2 label"
  259. msgid "Bridge Second Skin Density"
  260. msgstr "Köprü İkinci Yüzey Alanı Yoğunluğu"
  261. msgctxt "bridge_fan_speed_2 label"
  262. msgid "Bridge Second Skin Fan Speed"
  263. msgstr "Köprü İkinci Yüzey Alanı Fan Hızı"
  264. msgctxt "bridge_skin_material_flow_2 label"
  265. msgid "Bridge Second Skin Flow"
  266. msgstr "Köprü İkinci Yüzey Alanı Akışı"
  267. msgctxt "bridge_skin_speed_2 label"
  268. msgid "Bridge Second Skin Speed"
  269. msgstr "Köprü İkinci Yüzey Alanı Hızı"
  270. msgctxt "bridge_skin_density label"
  271. msgid "Bridge Skin Density"
  272. msgstr "Köprü Yüzey Alanı Yoğunluğu"
  273. msgctxt "bridge_skin_material_flow label"
  274. msgid "Bridge Skin Flow"
  275. msgstr "Köprü Yüzey Alanı Akışı"
  276. msgctxt "bridge_skin_speed label"
  277. msgid "Bridge Skin Speed"
  278. msgstr "Köprü Yüzey Alanı Hızı"
  279. msgctxt "bridge_skin_support_threshold label"
  280. msgid "Bridge Skin Support Threshold"
  281. msgstr "Köprü Yüzey Alanı Destek Eşiği"
  282. msgctxt "bridge_sparse_infill_max_density label"
  283. msgid "Bridge Sparse Infill Max Density"
  284. msgstr "Maksimum Köprü Seyrek Dolgu Yoğunluğu"
  285. msgctxt "bridge_skin_density_3 label"
  286. msgid "Bridge Third Skin Density"
  287. msgstr "Köprü Üçüncü Yüzey Alanı Yoğunluğu"
  288. msgctxt "bridge_fan_speed_3 label"
  289. msgid "Bridge Third Skin Fan Speed"
  290. msgstr "Köprü Üçüncü Yüzey Alanı Fan Hızı"
  291. msgctxt "bridge_skin_material_flow_3 label"
  292. msgid "Bridge Third Skin Flow"
  293. msgstr "Köprü Üçüncü Yüzey Alanı Akışı"
  294. msgctxt "bridge_skin_speed_3 label"
  295. msgid "Bridge Third Skin Speed"
  296. msgstr "Köprü Üçüncü Yüzey Alanı Hızı"
  297. msgctxt "bridge_wall_coast label"
  298. msgid "Bridge Wall Coasting"
  299. msgstr "Köprü Duvarı Tarama"
  300. msgctxt "bridge_wall_material_flow label"
  301. msgid "Bridge Wall Flow"
  302. msgstr "Köprü Duvarı Akışı"
  303. msgctxt "bridge_wall_speed label"
  304. msgid "Bridge Wall Speed"
  305. msgstr "Köprü Duvarı Hızı"
  306. msgctxt "adhesion_type option brim"
  307. msgid "Brim"
  308. msgstr "Kenar"
  309. msgctxt "brim_gap label"
  310. msgid "Brim Distance"
  311. msgstr "Uç Mesafesi"
  312. msgctxt "brim_inside_margin label"
  313. msgid "Brim Inside Avoid Margin"
  314. msgstr "Kenar İçi Kaçınma Payı"
  315. msgctxt "brim_line_count label"
  316. msgid "Brim Line Count"
  317. msgstr "Kenar Hattı Sayısı"
  318. msgctxt "brim_outside_only label"
  319. msgid "Brim Only on Outside"
  320. msgstr "Sadece Dış Kısımdaki Kenar"
  321. msgctxt "brim_replaces_support label"
  322. msgid "Brim Replaces Support"
  323. msgstr "Kenar, Desteği Değiştirir"
  324. msgctxt "brim_width label"
  325. msgid "Brim Width"
  326. msgstr "Kenar Genişliği"
  327. msgctxt "platform_adhesion label"
  328. msgid "Build Plate Adhesion"
  329. msgstr "Yapı Levhası Yapıştırması"
  330. msgctxt "adhesion_extruder_nr label"
  331. msgid "Build Plate Adhesion Extruder"
  332. msgstr "Yapı Levhası Yapıştırma Ekstruderi"
  333. msgctxt "adhesion_type label"
  334. msgid "Build Plate Adhesion Type"
  335. msgstr "Yapı Levhası Türü"
  336. msgctxt "machine_buildplate_type label"
  337. msgid "Build Plate Material"
  338. msgstr "Yapı Levhası Malzemesi"
  339. msgctxt "machine_shape label"
  340. msgid "Build Plate Shape"
  341. msgstr "Yapı Levhası Şekli"
  342. msgctxt "material_bed_temperature label"
  343. msgid "Build Plate Temperature"
  344. msgstr "Yapı Levhası Sıcaklığı"
  345. msgctxt "material_bed_temperature_layer_0 label"
  346. msgid "Build Plate Temperature Initial Layer"
  347. msgstr "İlk Katman Yapı Levhası Sıcaklığı"
  348. msgctxt "build_volume_temperature label"
  349. msgid "Build Volume Temperature"
  350. msgstr "Yapı Disk Bölümü Sıcaklığı"
  351. msgctxt "center_object label"
  352. msgid "Center Object"
  353. msgstr "Nesneyi ortalayın"
  354. msgctxt "conical_overhang_enabled description"
  355. 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."
  356. 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."
  357. msgctxt "support_structure description"
  358. 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."
  359. 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."
  360. msgctxt "coasting_speed label"
  361. msgid "Coasting Speed"
  362. msgstr "Tarama Hızı"
  363. msgctxt "coasting_volume label"
  364. msgid "Coasting Volume"
  365. msgstr "Tarama Hacmi"
  366. msgctxt "coasting_enable description"
  367. 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."
  368. 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."
  369. msgctxt "retraction_combing label"
  370. msgid "Combing Mode"
  371. msgstr "Tarama Modu"
  372. msgctxt "retraction_combing description"
  373. 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."
  374. 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."
  375. msgctxt "command_line_settings label"
  376. msgid "Command Line Settings"
  377. msgstr "Komut Satırı Ayarları"
  378. msgctxt "infill_pattern option concentric"
  379. msgid "Concentric"
  380. msgstr "Eş merkezli"
  381. msgctxt "ironing_pattern option concentric"
  382. msgid "Concentric"
  383. msgstr "Eş merkezli"
  384. msgctxt "roofing_pattern option concentric"
  385. msgid "Concentric"
  386. msgstr "Eş merkezli"
  387. msgctxt "support_bottom_pattern option concentric"
  388. msgid "Concentric"
  389. msgstr "Eş Merkezli"
  390. msgctxt "support_interface_pattern option concentric"
  391. msgid "Concentric"
  392. msgstr "Eş merkezli"
  393. msgctxt "support_pattern option concentric"
  394. msgid "Concentric"
  395. msgstr "Eş merkezli"
  396. msgctxt "support_roof_pattern option concentric"
  397. msgid "Concentric"
  398. msgstr "Eş Merkezli"
  399. msgctxt "top_bottom_pattern option concentric"
  400. msgid "Concentric"
  401. msgstr "Eş merkezli"
  402. msgctxt "top_bottom_pattern_0 option concentric"
  403. msgid "Concentric"
  404. msgstr "Eş merkezli"
  405. msgctxt "support_conical_angle label"
  406. msgid "Conical Support Angle"
  407. msgstr "Konik Destek Açısı"
  408. msgctxt "support_conical_min_width label"
  409. msgid "Conical Support Minimum Width"
  410. msgstr "Koni Desteğinin Minimum Genişliği"
  411. msgctxt "zig_zaggify_infill label"
  412. msgid "Connect Infill Lines"
  413. msgstr "Dolgu Hatlarını Bağlayın"
  414. msgctxt "connect_infill_polygons label"
  415. msgid "Connect Infill Polygons"
  416. msgstr "Dolgu Poligonlarını Bağla"
  417. msgctxt "zig_zaggify_support label"
  418. msgid "Connect Support Lines"
  419. msgstr "Destek Çizgilerini Bağla"
  420. msgctxt "support_connect_zigzags label"
  421. msgid "Connect Support ZigZags"
  422. msgstr "Destek Zikzaklarını Bağla"
  423. msgctxt "connect_skin_polygons label"
  424. msgid "Connect Top/Bottom Polygons"
  425. msgstr "Üst/Alt Poligonları Bağla"
  426. msgctxt "connect_infill_polygons description"
  427. 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."
  428. 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."
  429. msgctxt "support_connect_zigzags description"
  430. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  431. msgstr "Zikzakları Bağla Zik zak destek yapısının sağlamlığını artırır."
  432. msgctxt "zig_zaggify_support description"
  433. 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."
  434. 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."
  435. msgctxt "zig_zaggify_infill description"
  436. 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."
  437. 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."
  438. msgctxt "connect_skin_polygons description"
  439. 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."
  440. 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."
  441. msgctxt "z_seam_corner description"
  442. 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."
  443. 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."
  444. msgctxt "infill_multiplier description"
  445. 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."
  446. 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."
  447. msgctxt "machine_nozzle_cool_down_speed label"
  448. msgid "Cool Down Speed"
  449. msgstr "Soğuma hızı"
  450. msgctxt "cooling description"
  451. msgid "Cooling"
  452. msgstr "Soğuma"
  453. msgctxt "cooling label"
  454. msgid "Cooling"
  455. msgstr "Soğuma"
  456. msgctxt "infill_pattern option cross"
  457. msgid "Cross"
  458. msgstr "Çapraz"
  459. msgctxt "support_pattern option cross"
  460. msgid "Cross"
  461. msgstr "Çapraz"
  462. msgctxt "infill_pattern option cross_3d"
  463. msgid "Cross 3D"
  464. msgstr "Çapraz 3D"
  465. msgctxt "cross_infill_pocket_size label"
  466. msgid "Cross 3D Pocket Size"
  467. msgstr "Çapraz 3D Cebin Boyutu"
  468. msgctxt "cross_support_density_image label"
  469. msgid "Cross Fill Density Image for Support"
  470. msgstr "Destek için Çapraz Dolgu Yoğunluğu Görüntüsü"
  471. msgctxt "cross_infill_density_image label"
  472. msgid "Cross Infill Density Image"
  473. msgstr "Çapraz Dolgu Yoğunluğu Görüntüsü"
  474. msgctxt "material_crystallinity label"
  475. msgid "Crystalline Material"
  476. msgstr "Kristalli Malzeme"
  477. msgctxt "infill_pattern option cubic"
  478. msgid "Cubic"
  479. msgstr "Kübik"
  480. msgctxt "infill_pattern option cubicsubdiv"
  481. msgid "Cubic Subdivision"
  482. msgstr "Kübik Alt Bölüm"
  483. msgctxt "sub_div_rad_add label"
  484. msgid "Cubic Subdivision Shell"
  485. msgstr "Kübik Alt Bölüm Kalkanı"
  486. msgctxt "cutting_mesh label"
  487. msgid "Cutting Mesh"
  488. msgstr "Kesme Örgüsü"
  489. msgctxt "material_flow_temp_graph description"
  490. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  491. msgstr "Malzeme akışını (saniye başına mm3 bazında) sıcaklığa (santigrat derece) bağlayan veri."
  492. msgctxt "machine_acceleration label"
  493. msgid "Default Acceleration"
  494. msgstr "Varsayılan İvme"
  495. msgctxt "default_material_bed_temperature label"
  496. msgid "Default Build Plate Temperature"
  497. msgstr "Varsayılan Yapı Levhası Sıcaklığı"
  498. msgctxt "machine_max_jerk_e label"
  499. msgid "Default Filament Jerk"
  500. msgstr "Varsayılan Filaman Salınımı"
  501. msgctxt "default_material_print_temperature label"
  502. msgid "Default Printing Temperature"
  503. msgstr "Varsayılan Yazdırma Sıcaklığı"
  504. msgctxt "machine_max_jerk_xy label"
  505. msgid "Default X-Y Jerk"
  506. msgstr "Varsayılan X-Y Salınımı"
  507. msgctxt "machine_max_jerk_z label"
  508. msgid "Default Z Jerk"
  509. msgstr "Varsayılan Z Salınımı"
  510. msgctxt "machine_max_jerk_xy description"
  511. msgid "Default jerk for movement in the horizontal plane."
  512. msgstr "Yatay düzlemdeki hareketler için varsayılan salınım."
  513. msgctxt "machine_max_jerk_z description"
  514. msgid "Default jerk for the motor of the Z-direction."
  515. msgstr "Z yönü motoru için varsayılan salınım."
  516. msgctxt "machine_max_jerk_e description"
  517. msgid "Default jerk for the motor of the filament."
  518. msgstr "Filaman motoru için varsayılan salınım."
  519. msgctxt "bridge_settings_enabled description"
  520. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  521. 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."
  522. msgctxt "inset_direction description"
  523. 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. When there is an uneven amount of total innner walls, the 'center last line' is always printed last."
  524. 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. Toplam iç duvar miktarı eşit değilse ”ortadaki son hat” her zaman en son yazdırılır."
  525. msgctxt "infill_mesh_order description"
  526. 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."
  527. 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."
  528. msgctxt "lightning_infill_support_angle description"
  529. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  530. 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."
  531. msgctxt "lightning_infill_overhang_angle description"
  532. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  533. 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."
  534. msgctxt "material_diameter label"
  535. msgid "Diameter"
  536. msgstr "Çap"
  537. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
  538. msgid "Diameter Increase To Model"
  539. msgstr "Modele Göre Çap Artışı"
  540. msgctxt "support_tree_bp_diameter description"
  541. msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
  542. msgstr "Her dalın yapı levhasına ulaşırken elde etmeye çalıştığı çap. Yatak yapışmasını geliştirir."
  543. msgctxt "adhesion_type description"
  544. 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."
  545. 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."
  546. msgctxt "machine_disallowed_areas label"
  547. msgid "Disallowed Areas"
  548. msgstr "İzin Verilmeyen Alanlar"
  549. msgctxt "infill_line_distance description"
  550. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  551. msgstr "Yazdırılan dolgu hatları arasındaki mesafe. Bu ayar, dolgu yoğunluğu ve dolgu hattı genişliği ile hesaplanır."
  552. msgctxt "support_initial_layer_line_distance description"
  553. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  554. msgstr "Yazdırılan ilk katman destek yapı hatları arasındaki mesafedir. Bu ayar destek yoğunluğuna göre hesaplanır."
  555. msgctxt "support_bottom_line_distance description"
  556. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  557. msgstr "Yazdırılan destek zemini çizgileri arasındaki mesafe. Bu ayar Destek Zemini Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir."
  558. msgctxt "support_roof_line_distance description"
  559. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  560. 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."
  561. msgctxt "support_line_distance description"
  562. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  563. msgstr "Yazdırılan destek yapısı hatları arasındaki mesafe. Bu ayar, destek yoğunluğu ile hesaplanır."
  564. msgctxt "support_bottom_distance description"
  565. msgid "Distance from the print to the bottom of the support."
  566. msgstr "Baskıdan desteğin altına olan mesafe."
  567. msgctxt "support_top_distance description"
  568. msgid "Distance from the top of the support to the print."
  569. msgstr "Yazdırılıcak desteğin üstüne olan mesafe."
  570. msgctxt "support_z_distance description"
  571. 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."
  572. 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."
  573. msgctxt "infill_wipe_dist description"
  574. 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."
  575. 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."
  576. msgctxt "wall_0_wipe_dist description"
  577. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  578. msgstr "Z dikişini daha iyi gizlemek için dış duvardan sonra eklenen hareket mesafesi."
  579. msgctxt "draft_shield_dist description"
  580. msgid "Distance of the draft shield from the print, in the X/Y directions."
  581. msgstr "Cereyan kalkanını X/Y yönlerindeki baskıya mesafesi."
  582. msgctxt "ooze_shield_dist description"
  583. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  584. msgstr "Sızdırma kalkanını X/Y yönlerindeki baskıya mesafesi."
  585. msgctxt "support_xy_distance_overhang description"
  586. msgid "Distance of the support structure from the overhang in the X/Y directions."
  587. msgstr "Destek yapısının X/Y yönlerindeki çıkıntıya mesafesi."
  588. msgctxt "support_xy_distance description"
  589. msgid "Distance of the support structure from the print in the X/Y directions."
  590. msgstr "Destek yapısının X/Y yönlerindeki baskıya mesafesi."
  591. msgctxt "min_infill_area description"
  592. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  593. msgstr "Bundan küçük dolgu alanları oluşturma (onun yerine yüzey kullan)."
  594. msgctxt "draft_shield_height label"
  595. msgid "Draft Shield Height"
  596. msgstr "Cereyan Kalkanı Yüksekliği"
  597. msgctxt "draft_shield_height_limitation label"
  598. msgid "Draft Shield Limitation"
  599. msgstr "Cereyan Kalkanı Sınırlaması"
  600. msgctxt "draft_shield_dist label"
  601. msgid "Draft Shield X/Y Distance"
  602. msgstr "Cereyan Kalkanı X/Y Mesafesi"
  603. msgctxt "support_mesh_drop_down label"
  604. msgid "Drop Down Support Mesh"
  605. msgstr "Alçalan Destek Örgüsü"
  606. msgctxt "dual label"
  607. msgid "Dual Extrusion"
  608. msgstr "İkili ekstrüzyon"
  609. msgctxt "machine_shape option elliptic"
  610. msgid "Elliptic"
  611. msgstr "Eliptik"
  612. msgctxt "acceleration_enabled label"
  613. msgid "Enable Acceleration Control"
  614. msgstr "İvme Kontrolünü Etkinleştir"
  615. msgctxt "bridge_settings_enabled label"
  616. msgid "Enable Bridge Settings"
  617. msgstr "Köprü Ayarlarını Etkinleştir"
  618. msgctxt "coasting_enable label"
  619. msgid "Enable Coasting"
  620. msgstr "Taramayı Etkinleştir"
  621. msgctxt "support_conical_enabled label"
  622. msgid "Enable Conical Support"
  623. msgstr "Konik Desteği Etkinleştir"
  624. msgctxt "draft_shield_enabled label"
  625. msgid "Enable Draft Shield"
  626. msgstr "Cereyan Kalkanını Etkinleştir"
  627. msgctxt "ironing_enabled label"
  628. msgid "Enable Ironing"
  629. msgstr "Ütülemeyi Etkinleştir"
  630. msgctxt "jerk_enabled label"
  631. msgid "Enable Jerk Control"
  632. msgstr "Salınım Kontrolünü Etkinleştir"
  633. msgctxt "machine_nozzle_temp_enabled label"
  634. msgid "Enable Nozzle Temperature Control"
  635. msgstr "Nozül Sıcaklığı Kontrolünü Etkinleştir"
  636. msgctxt "ooze_shield_enabled label"
  637. msgid "Enable Ooze Shield"
  638. msgstr "Sızdırma Kalkanını Etkinleştir"
  639. msgctxt "prime_blob_enable label"
  640. msgid "Enable Prime Blob"
  641. msgstr "İlk Damlayı Etkinleştir"
  642. msgctxt "prime_tower_enable label"
  643. msgid "Enable Prime Tower"
  644. msgstr "İlk Direği Etkinleştir"
  645. msgctxt "cool_fan_enabled label"
  646. msgid "Enable Print Cooling"
  647. msgstr "Yazdırma Soğutmayı Etkinleştir"
  648. msgctxt "retraction_enable label"
  649. msgid "Enable Retraction"
  650. msgstr "Geri Çekmeyi Etkinleştir"
  651. msgctxt "support_brim_enable label"
  652. msgid "Enable Support Brim"
  653. msgstr "Destek Kenarını Etkinleştir"
  654. msgctxt "support_bottom_enable label"
  655. msgid "Enable Support Floor"
  656. msgstr "Destek Zeminini Etkinleştir"
  657. msgctxt "support_interface_enable label"
  658. msgid "Enable Support Interface"
  659. msgstr "Destek Arayüzünü Etkinleştir"
  660. msgctxt "support_roof_enable label"
  661. msgid "Enable Support Roof"
  662. msgstr "Destek Çatısını Etkinleştir"
  663. msgctxt "acceleration_travel_enabled label"
  664. msgid "Enable Travel Acceleration"
  665. msgstr "Hareket İvmesini Etkinleştir"
  666. msgctxt "jerk_travel_enabled label"
  667. msgid "Enable Travel Jerk"
  668. msgstr "Hareket Salınımını Etkinleştir"
  669. msgctxt "ooze_shield_enabled description"
  670. 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."
  671. 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."
  672. msgctxt "jerk_enabled description"
  673. 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."
  674. 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."
  675. msgctxt "acceleration_enabled description"
  676. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  677. msgstr "Yazıcı başlığı ivmesinin ayarlanmasını sağlar. İvmeleri artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir."
  678. msgctxt "cool_fan_enabled description"
  679. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  680. 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."
  681. msgctxt "machine_end_gcode label"
  682. msgid "End G-code"
  683. msgstr "G-code’u Sonlandır"
  684. msgctxt "material_end_of_filament_purge_length label"
  685. msgid "End of Filament Purge Length"
  686. msgstr "Filament Temizliği Bitiş Uzunluğu"
  687. msgctxt "material_end_of_filament_purge_speed label"
  688. msgid "End of Filament Purge Speed"
  689. msgstr "Filament Temizliği Bitiş Hızı"
  690. msgctxt "brim_replaces_support description"
  691. 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."
  692. 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."
  693. msgctxt "support_type option everywhere"
  694. msgid "Everywhere"
  695. msgstr "Her bölüm"
  696. msgctxt "slicing_tolerance option exclusive"
  697. msgid "Exclusive"
  698. msgstr "Dışlayıcı"
  699. msgctxt "experimental label"
  700. msgid "Experimental"
  701. msgstr "Deneysel"
  702. msgctxt "z_seam_corner option z_seam_corner_outer"
  703. msgid "Expose Seam"
  704. msgstr "Dikişi Açığa Çıkar"
  705. msgctxt "meshfix_extensive_stitching label"
  706. msgid "Extensive Stitching"
  707. msgstr "Geniş Dikiş"
  708. msgctxt "meshfix_extensive_stitching description"
  709. 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."
  710. 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."
  711. msgctxt "infill_wall_line_count label"
  712. msgid "Extra Infill Wall Count"
  713. msgstr "Ekstra Dolgu Duvar Sayısı"
  714. msgctxt "skin_outline_count label"
  715. msgid "Extra Skin Wall Count"
  716. msgstr "Ek Dış Katman Duvar Sayısı"
  717. msgctxt "switch_extruder_extra_prime_amount description"
  718. msgid "Extra material to prime after nozzle switching."
  719. msgstr "Nozül değişiminin ardından çalışmaya hazırlanacak ek malzemedir."
  720. msgctxt "extruder_prime_pos_x label"
  721. msgid "Extruder Prime X Position"
  722. msgstr "Extruder İlk X konumu"
  723. msgctxt "extruder_prime_pos_y label"
  724. msgid "Extruder Prime Y Position"
  725. msgstr "Extruder İlk Y konumu"
  726. msgctxt "extruder_prime_pos_z label"
  727. msgid "Extruder Prime Z Position"
  728. msgstr "Ekstruder İlk Z konumu"
  729. msgctxt "machine_extruders_share_heater label"
  730. msgid "Extruders Share Heater"
  731. msgstr "Ekstrüderler Isıtıcıyı Paylaşır"
  732. msgctxt "machine_extruders_share_nozzle label"
  733. msgid "Extruders Share Nozzle"
  734. msgstr "Ekstrüder Nozül Paylaşımı"
  735. msgctxt "material_extrusion_cool_down_speed label"
  736. msgid "Extrusion Cool Down Speed Modifier"
  737. msgstr "Ekstrüzyon Sırasında Soğuma Hızı Düzenleyici"
  738. msgctxt "speed_equalize_flow_width_factor description"
  739. 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."
  740. 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."
  741. msgctxt "cool_fan_speed label"
  742. msgid "Fan Speed"
  743. msgstr "Fan Hızı"
  744. msgctxt "support_fan_enable label"
  745. msgid "Fan Speed Override"
  746. msgstr "Fan Hızı Geçersiz Kılma"
  747. msgctxt "small_feature_max_length description"
  748. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  749. msgstr "Bu uzunluktan kısa olan özellik ana hatları Kısa Özellik Hızı kullanılarak basılacaktır."
  750. msgctxt "experimental description"
  751. msgid "Features that haven't completely been fleshed out yet."
  752. msgstr "Henüz tamamen detaylandırılmamış özelliklerdir."
  753. msgctxt "machine_feeder_wheel_diameter label"
  754. msgid "Feeder Wheel Diameter"
  755. msgstr "Besleyici Çark Çapı"
  756. msgctxt "material_final_print_temperature label"
  757. msgid "Final Printing Temperature"
  758. msgstr "Son Yazdırma Sıcaklığı"
  759. msgctxt "machine_firmware_retract label"
  760. msgid "Firmware Retraction"
  761. msgstr "Üretici Yazılımı Geri Çekme"
  762. msgctxt "support_extruder_nr_layer_0 label"
  763. msgid "First Layer Support Extruder"
  764. msgstr "İlk Katman Destek Ekstruderi"
  765. msgctxt "material_flow label"
  766. msgid "Flow"
  767. msgstr "Akış"
  768. msgctxt "speed_equalize_flow_width_factor label"
  769. msgid "Flow Equalization Ratio"
  770. msgstr "Akış Eşitleme Oranı"
  771. msgctxt "flow_rate_extrusion_offset_factor label"
  772. msgid "Flow Rate Compensation Factor"
  773. msgstr "Akış hızı dengeleme çarpanı"
  774. msgctxt "flow_rate_max_extrusion_offset label"
  775. msgid "Flow Rate Compensation Max Extrusion Offset"
  776. msgstr "Akış hızı dengelemesi maksimum ekstrüzyon kayması"
  777. msgctxt "material_flow_temp_graph label"
  778. msgid "Flow Temperature Graph"
  779. msgstr "Akış Sıcaklık Grafiği"
  780. msgctxt "material_flow_layer_0 description"
  781. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  782. msgstr "İlk katman için akış dengelemesi: ilk katmana ekstrude edilen malzeme miktarı bu değerle çarpılır."
  783. msgctxt "skin_material_flow_layer_0 description"
  784. msgid "Flow compensation on bottom lines of the first layer"
  785. msgstr "İlk katmanın alt hatlarında akış telafisi"
  786. msgctxt "infill_material_flow description"
  787. msgid "Flow compensation on infill lines."
  788. msgstr "Dolgu hatlarının akış telafisidir."
  789. msgctxt "support_interface_material_flow description"
  790. msgid "Flow compensation on lines of support roof or floor."
  791. msgstr "Destek çatı ve zemin hatlarının akış telafisidir."
  792. msgctxt "roofing_material_flow description"
  793. msgid "Flow compensation on lines of the areas at the top of the print."
  794. msgstr "Baskının üst bölümlerindeki hatların akış telafisidir."
  795. msgctxt "prime_tower_flow description"
  796. msgid "Flow compensation on prime tower lines."
  797. msgstr "Temel kule hatlarının akış telafisidir."
  798. msgctxt "skirt_brim_material_flow description"
  799. msgid "Flow compensation on skirt or brim lines."
  800. msgstr "Etek veya kenar hatlarının akış telafisidir."
  801. msgctxt "support_bottom_material_flow description"
  802. msgid "Flow compensation on support floor lines."
  803. msgstr "Destek zemin hatlarının akış telafisidir."
  804. msgctxt "support_roof_material_flow description"
  805. msgid "Flow compensation on support roof lines."
  806. msgstr "Destek çatı hatlarının akış telafisidir."
  807. msgctxt "support_material_flow description"
  808. msgid "Flow compensation on support structure lines."
  809. msgstr "Destek yapı hatlarının akış telafisidir."
  810. msgctxt "wall_0_material_flow_layer_0 description"
  811. msgid "Flow compensation on the outermost wall line of the first layer."
  812. msgstr "İlk katmanın en dış duvar hattında akış telafisi."
  813. msgctxt "wall_0_material_flow description"
  814. msgid "Flow compensation on the outermost wall line."
  815. msgstr "En dıştaki duvar hattının akış telafisidir."
  816. msgctxt "skin_material_flow description"
  817. msgid "Flow compensation on top/bottom lines."
  818. msgstr "Üst/alt hatların akış telafisidir."
  819. msgctxt "wall_x_material_flow_layer_0 description"
  820. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  821. msgstr "En dıştaki duvar hatları hariç tüm duvar hatları için duvar hatlarında akış telafisi, ancak sadece ilk katman içindir."
  822. msgctxt "wall_x_material_flow description"
  823. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  824. msgstr "En dıştaki duvar hattı hariç diğer duvar hatlarının akış telafisidir."
  825. msgctxt "wall_material_flow description"
  826. msgid "Flow compensation on wall lines."
  827. msgstr "Duvar hatlarının akış telafisidir."
  828. msgctxt "material_flow description"
  829. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  830. msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır."
  831. msgctxt "material_flush_purge_length label"
  832. msgid "Flush Purge Length"
  833. msgstr "Temizleme Uzunluğu"
  834. msgctxt "material_flush_purge_speed label"
  835. msgid "Flush Purge Speed"
  836. msgstr "Temizleme Hızı"
  837. msgctxt "min_wall_line_width description"
  838. 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."
  839. 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."
  840. msgctxt "z_seam_position option front"
  841. msgid "Front"
  842. msgstr "Ön"
  843. msgctxt "z_seam_position option frontleft"
  844. msgid "Front Left"
  845. msgstr "Sol Ön"
  846. msgctxt "z_seam_position option frontright"
  847. msgid "Front Right"
  848. msgstr "Sağ Ön"
  849. msgctxt "draft_shield_height_limitation option full"
  850. msgid "Full"
  851. msgstr "Tam"
  852. msgctxt "magic_fuzzy_skin_enabled label"
  853. msgid "Fuzzy Skin"
  854. msgstr "Belirsiz Dış Katman"
  855. msgctxt "magic_fuzzy_skin_point_density label"
  856. msgid "Fuzzy Skin Density"
  857. msgstr "Belirsiz Dış Katman Yoğunluğu"
  858. msgctxt "magic_fuzzy_skin_outside_only label"
  859. msgid "Fuzzy Skin Outside Only"
  860. msgstr "Yalnızca Belirsiz Dış Katman"
  861. msgctxt "magic_fuzzy_skin_point_dist label"
  862. msgid "Fuzzy Skin Point Distance"
  863. msgstr "Belirsiz Dış Katman Noktası Mesafesi"
  864. msgctxt "magic_fuzzy_skin_thickness label"
  865. msgid "Fuzzy Skin Thickness"
  866. msgstr "Belirsiz Dış Katman Kalınlığı"
  867. msgctxt "machine_gcode_flavor label"
  868. msgid "G-code Flavor"
  869. msgstr "G-code türü"
  870. msgctxt "machine_end_gcode description"
  871. msgid ""
  872. "G-code commands to be executed at the very end - separated by \n"
  873. "."
  874. msgstr ""
  875. "En son çalıştırılacak G-code komutları (\n"
  876. " ile ayrılır)."
  877. msgctxt "machine_start_gcode description"
  878. msgid ""
  879. "G-code commands to be executed at the very start - separated by \n"
  880. "."
  881. msgstr ""
  882. "ile ayrılan, başlangıçta yürütülecek G-code komutları\n"
  883. "."
  884. msgctxt "material_guid description"
  885. msgid "GUID of the material. This is set automatically."
  886. msgstr "Malzemedeki GUID Otomatik olarak ayarlanır."
  887. msgctxt "gantry_height label"
  888. msgid "Gantry Height"
  889. msgstr "Portal Yüksekliği"
  890. msgctxt "interlocking_enable label"
  891. msgid "Generate Interlocking Structure"
  892. msgstr "İç İçe Geçen Yapı Oluşturma"
  893. msgctxt "support_enable label"
  894. msgid "Generate Support"
  895. msgstr "Oluşturma Desteği"
  896. msgctxt "support_brim_enable description"
  897. 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."
  898. 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."
  899. msgctxt "support_interface_enable description"
  900. 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."
  901. 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."
  902. msgctxt "support_bottom_enable description"
  903. 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."
  904. 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."
  905. msgctxt "support_roof_enable description"
  906. 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."
  907. 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."
  908. msgctxt "support_enable description"
  909. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  910. 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."
  911. msgctxt "machine_buildplate_type option glass"
  912. msgid "Glass"
  913. msgstr "Cam"
  914. msgctxt "ironing_enabled description"
  915. 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."
  916. 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."
  917. msgctxt "gradual_infill_step_height label"
  918. msgid "Gradual Infill Step Height"
  919. msgstr "Aşamalı Dolgu Basamak Yüksekliği"
  920. msgctxt "gradual_infill_steps label"
  921. msgid "Gradual Infill Steps"
  922. msgstr "Aşamalı Dolgu Basamakları"
  923. msgctxt "gradual_support_infill_step_height label"
  924. msgid "Gradual Support Infill Step Height"
  925. msgstr "Aşamalı Destek Dolgusu Basamak Yüksekliği"
  926. msgctxt "gradual_support_infill_steps label"
  927. msgid "Gradual Support Infill Steps"
  928. msgstr "Kademeli Destek Dolgusu Aşamaları"
  929. msgctxt "cool_min_temperature description"
  930. msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
  931. msgstr "Minimum katman süresi nedeniyle düşük hızlarda yazdırırken bu sıcaklığa kademeli olarak düşürün."
  932. msgctxt "infill_pattern option grid"
  933. msgid "Grid"
  934. msgstr "Izgara"
  935. msgctxt "support_bottom_pattern option grid"
  936. msgid "Grid"
  937. msgstr "Izgara"
  938. msgctxt "support_interface_pattern option grid"
  939. msgid "Grid"
  940. msgstr "Izgara"
  941. msgctxt "support_pattern option grid"
  942. msgid "Grid"
  943. msgstr "Izgara"
  944. msgctxt "support_roof_pattern option grid"
  945. msgid "Grid"
  946. msgstr "Izgara"
  947. msgctxt "machine_gcode_flavor option Griffin"
  948. msgid "Griffin"
  949. msgstr "Griffin"
  950. msgctxt "infill_pattern option gyroid"
  951. msgid "Gyroid"
  952. msgstr "Gyroid"
  953. msgctxt "support_pattern option gyroid"
  954. msgid "Gyroid"
  955. msgstr "Gyroid"
  956. msgctxt "machine_heated_build_volume label"
  957. msgid "Has Build Volume Temperature Stabilization"
  958. msgstr "Yapı Hacmi Sıcaklığı Dengesi Mevcut"
  959. msgctxt "machine_heated_bed label"
  960. msgid "Has Heated Build Plate"
  961. msgstr "Isıtılmış Yapı Levhası İçerir"
  962. msgctxt "machine_nozzle_heat_up_speed label"
  963. msgid "Heat Up Speed"
  964. msgstr "Isınma Hızı"
  965. msgctxt "machine_heat_zone_length label"
  966. msgid "Heat Zone Length"
  967. msgstr "Isı Bölgesi Uzunluğu"
  968. msgctxt "draft_shield_height description"
  969. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  970. msgstr "Cereyan kalkanının yükseklik sınırı. Bundan daha fazla bir yükseklikte cereyan kalkanı yazdırılmayacaktır."
  971. msgctxt "z_seam_corner option z_seam_corner_inner"
  972. msgid "Hide Seam"
  973. msgstr "Dikişi Gizle"
  974. msgctxt "z_seam_corner option z_seam_corner_any"
  975. msgid "Hide or Expose Seam"
  976. msgstr "Dikişi Gizle veya Açığa Çıkar"
  977. msgctxt "hole_xy_offset label"
  978. msgid "Hole Horizontal Expansion"
  979. msgstr "Delik Yatay Büyüme"
  980. msgctxt "hole_xy_offset_max_diameter label"
  981. msgid "Hole Horizontal Expansion Max Diameter"
  982. msgstr "Delik Yatay Büyüme Maksimum Çapı"
  983. msgctxt "small_hole_max_size description"
  984. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  985. msgstr "Bu değerden daha küçük çaptaki delik ve parça ana hatları Küçük Özellik Hızı kullanılarak basılacaktır."
  986. msgctxt "xy_offset label"
  987. msgid "Horizontal Expansion"
  988. msgstr "Yatay Büyüme"
  989. msgctxt "material_shrinkage_percentage_xy label"
  990. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  991. msgstr "Yatay Ölçekleme Faktörü Büzülme Telafisi"
  992. msgctxt "material_break_preparation_retracted_position description"
  993. msgid "How far the filament can be stretched before it breaks, while heated."
  994. msgstr "Filamentin ısıtıldığında kopmadan esneyebileceği mesafedir."
  995. msgctxt "material_anti_ooze_retracted_position description"
  996. msgid "How far the material needs to be retracted before it stops oozing."
  997. msgstr "Malzemenin sızma yapmaması için gereken geri çekilme mesafesidir."
  998. msgctxt "flow_rate_extrusion_offset_factor description"
  999. 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."
  1000. 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."
  1001. msgctxt "material_break_retracted_position description"
  1002. msgid "How far to retract the filament in order to break it cleanly."
  1003. msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken mesafedir."
  1004. msgctxt "material_break_preparation_speed description"
  1005. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1006. msgstr "Filamentin kopmadan ne kadar hızlı geri çekilmesi gerektiğidir."
  1007. msgctxt "material_anti_ooze_retraction_speed description"
  1008. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1009. msgstr "Filament değişimi sırasında malzemenin sızma yapmaması için gereken geri çekilme hızıdır."
  1010. msgctxt "material_end_of_filament_purge_speed description"
  1011. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1012. msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirildikten sonra malzemenin kullanıma hazır hale getirileceği süredir."
  1013. msgctxt "material_flush_purge_speed description"
  1014. msgid "How fast to prime the material after switching to a different material."
  1015. msgstr "Farklı bir malzemeye geçildikten sonra malzemenin kullanıma hazır hale getirileceği süredir."
  1016. msgctxt "material_maximum_park_duration description"
  1017. msgid "How long the material can be kept out of dry storage safely."
  1018. msgstr "Malzemenin kuru olmadığı durumda güvenli şekilde saklanabileceği süredir."
  1019. msgctxt "machine_steps_per_mm_x description"
  1020. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  1021. msgstr "Kademeli motorun kaç adımının, X yönünde bir milimetre hareketle sonuçlanacağı."
  1022. msgctxt "machine_steps_per_mm_y description"
  1023. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  1024. msgstr "Kademeli motorun kaç adımının, Y yönünde bir milimetre hareketle sonuçlanacağı."
  1025. msgctxt "machine_steps_per_mm_z description"
  1026. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  1027. msgstr "Kademeli motorun kaç adımının, Z yönünde bir milimetre hareketle sonuçlanacağı."
  1028. msgctxt "machine_steps_per_mm_e description"
  1029. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  1030. msgstr "Kademeli motorların kaç adımının besleme ünitesi tekerleğini çevresi etrafında bir milimetre hareket ettirmekle sonuçlanacağı."
  1031. msgctxt "material_end_of_filament_purge_length description"
  1032. 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."
  1033. 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."
  1034. msgctxt "material_flush_purge_length description"
  1035. 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."
  1036. msgstr "Farklı bir malzemeye geçilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır."
  1037. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  1038. 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."
  1039. 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."
  1040. msgctxt "support_interface_priority description"
  1041. msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
  1042. msgstr "Destek arayüzü ve destek çakıştıklarında nasıl etkileşime girerler? Şu anda sadece destek çatısı için uygulanmaktadır."
  1043. msgctxt "support_tree_min_height_to_model description"
  1044. msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof."
  1045. msgstr "Model üzerine yerleştirilmesi gereken bir dalın ne kadar uzun olması gerektiği. Küçük destek lekelerini önler. Bir dalın bir destek çatısını desteklemesi durumunda bu ayar göz ardı edilir."
  1046. msgctxt "bridge_skin_support_threshold description"
  1047. 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."
  1048. 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."
  1049. msgctxt "bridge_enable_more_layers description"
  1050. 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."
  1051. 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."
  1052. msgctxt "wall_transition_filter_distance description"
  1053. 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."
  1054. 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."
  1055. msgctxt "raft_margin description"
  1056. 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."
  1057. 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."
  1058. msgctxt "meshfix_union_all description"
  1059. 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."
  1060. 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."
  1061. msgctxt "material_bed_temp_prepend label"
  1062. msgid "Include Build Plate Temperature"
  1063. msgstr "Yapı Levhası Sıcaklığını Ekle"
  1064. msgctxt "material_print_temp_prepend label"
  1065. msgid "Include Material Temperatures"
  1066. msgstr "Malzeme Sıcaklıklarını Ekle"
  1067. msgctxt "slicing_tolerance option inclusive"
  1068. msgid "Inclusive"
  1069. msgstr "Kapsayıcı"
  1070. msgctxt "infill description"
  1071. msgid "Infill"
  1072. msgstr "Dolgu"
  1073. msgctxt "infill label"
  1074. msgid "Infill"
  1075. msgstr "Dolgu"
  1076. msgctxt "acceleration_infill label"
  1077. msgid "Infill Acceleration"
  1078. msgstr "Dolgu İvmesi"
  1079. msgctxt "infill_before_walls label"
  1080. msgid "Infill Before Walls"
  1081. msgstr "Duvarlardan Önce Dolgu"
  1082. msgctxt "infill_sparse_density label"
  1083. msgid "Infill Density"
  1084. msgstr "Dolgu Yoğunluğu"
  1085. msgctxt "infill_extruder_nr label"
  1086. msgid "Infill Extruder"
  1087. msgstr "Dolgu Ekstruderi"
  1088. msgctxt "infill_material_flow label"
  1089. msgid "Infill Flow"
  1090. msgstr "Dolgu Akışı"
  1091. msgctxt "jerk_infill label"
  1092. msgid "Infill Jerk"
  1093. msgstr "Dolgu Salınımı"
  1094. msgctxt "infill_sparse_thickness label"
  1095. msgid "Infill Layer Thickness"
  1096. msgstr "Dolgu Katmanı Kalınlığı"
  1097. msgctxt "infill_angles label"
  1098. msgid "Infill Line Directions"
  1099. msgstr "Dolgu Hattı Yönleri"
  1100. msgctxt "infill_line_distance label"
  1101. msgid "Infill Line Distance"
  1102. msgstr "Dolgu Hattı Mesafesi"
  1103. msgctxt "infill_multiplier label"
  1104. msgid "Infill Line Multiplier"
  1105. msgstr "Dolgu Hattı Çoğaltıcı"
  1106. msgctxt "infill_line_width label"
  1107. msgid "Infill Line Width"
  1108. msgstr "Dolgu Hattı Genişliği"
  1109. msgctxt "infill_mesh label"
  1110. msgid "Infill Mesh"
  1111. msgstr "Dolgu Ağı"
  1112. msgctxt "infill_support_angle label"
  1113. msgid "Infill Overhang Angle"
  1114. msgstr "Dolum Çıkıntı Açısı"
  1115. msgctxt "infill_overlap_mm label"
  1116. msgid "Infill Overlap"
  1117. msgstr "Dolgu Çakışması"
  1118. msgctxt "infill_overlap label"
  1119. msgid "Infill Overlap Percentage"
  1120. msgstr "Dolgu Çakışma Oranı"
  1121. msgctxt "infill_pattern label"
  1122. msgid "Infill Pattern"
  1123. msgstr "Dolgu Şekli"
  1124. msgctxt "speed_infill label"
  1125. msgid "Infill Speed"
  1126. msgstr "Dolgu Hızı"
  1127. msgctxt "infill_support_enabled label"
  1128. msgid "Infill Support"
  1129. msgstr "Dolgu Desteği"
  1130. msgctxt "infill_enable_travel_optimization label"
  1131. msgid "Infill Travel Optimization"
  1132. msgstr "Dolgu Hareket Optimizasyonu"
  1133. msgctxt "infill_wipe_dist label"
  1134. msgid "Infill Wipe Distance"
  1135. msgstr "Dolgu Sürme Mesafesi"
  1136. msgctxt "infill_offset_x label"
  1137. msgid "Infill X Offset"
  1138. msgstr "Dolgu X Kayması"
  1139. msgctxt "infill_offset_y label"
  1140. msgid "Infill Y Offset"
  1141. msgstr "Dolgu Y Kayması"
  1142. msgctxt "initial_bottom_layers label"
  1143. msgid "Initial Bottom Layers"
  1144. msgstr "İlk Alt Katmanlar"
  1145. msgctxt "cool_fan_speed_0 label"
  1146. msgid "Initial Fan Speed"
  1147. msgstr "İlk Fan Hızı"
  1148. msgctxt "acceleration_layer_0 label"
  1149. msgid "Initial Layer Acceleration"
  1150. msgstr "İlk Katman İvmesi"
  1151. msgctxt "skin_material_flow_layer_0 label"
  1152. msgid "Initial Layer Bottom Flow"
  1153. msgstr "İlk Katman Alt Akışı"
  1154. msgctxt "support_tree_bp_diameter label"
  1155. msgid "Initial Layer Diameter"
  1156. msgstr "İlk Katman Çapı"
  1157. msgctxt "material_flow_layer_0 label"
  1158. msgid "Initial Layer Flow"
  1159. msgstr "İlk Katman Akışı"
  1160. msgctxt "layer_height_0 label"
  1161. msgid "Initial Layer Height"
  1162. msgstr "İlk Katman Yüksekliği"
  1163. msgctxt "xy_offset_layer_0 label"
  1164. msgid "Initial Layer Horizontal Expansion"
  1165. msgstr "İlk Katmanın Yatay Genişlemesi"
  1166. msgctxt "wall_x_material_flow_layer_0 label"
  1167. msgid "Initial Layer Inner Wall Flow"
  1168. msgstr "İlk Katman İç Duvar Akışı"
  1169. msgctxt "jerk_layer_0 label"
  1170. msgid "Initial Layer Jerk"
  1171. msgstr "İlk Katman Salınımı"
  1172. msgctxt "initial_layer_line_width_factor label"
  1173. msgid "Initial Layer Line Width"
  1174. msgstr "İlk Katman Hat Genişliği"
  1175. msgctxt "wall_0_material_flow_layer_0 label"
  1176. msgid "Initial Layer Outer Wall Flow"
  1177. msgstr "İlk Katman Dış Duvar Akışı"
  1178. msgctxt "acceleration_print_layer_0 label"
  1179. msgid "Initial Layer Print Acceleration"
  1180. msgstr "İlk Katman Yazdırma İvmesi"
  1181. msgctxt "jerk_print_layer_0 label"
  1182. msgid "Initial Layer Print Jerk"
  1183. msgstr "İlk Katman Yazdırma Salınımı"
  1184. msgctxt "speed_print_layer_0 label"
  1185. msgid "Initial Layer Print Speed"
  1186. msgstr "İlk Katman Yazdırma Hızı"
  1187. msgctxt "speed_layer_0 label"
  1188. msgid "Initial Layer Speed"
  1189. msgstr "İlk Katman Hızı"
  1190. msgctxt "support_initial_layer_line_distance label"
  1191. msgid "Initial Layer Support Line Distance"
  1192. msgstr "İlk Katman Destek Hattı Mesafesi"
  1193. msgctxt "acceleration_travel_layer_0 label"
  1194. msgid "Initial Layer Travel Acceleration"
  1195. msgstr "İlk Katman Hareket İvmesi"
  1196. msgctxt "jerk_travel_layer_0 label"
  1197. msgid "Initial Layer Travel Jerk"
  1198. msgstr "İlk Katman Hareket Salınımı"
  1199. msgctxt "speed_travel_layer_0 label"
  1200. msgid "Initial Layer Travel Speed"
  1201. msgstr "İlk Katman Hareket Hızı"
  1202. msgctxt "layer_0_z_overlap label"
  1203. msgid "Initial Layer Z Overlap"
  1204. msgstr "İlk Katman Z Çakışması"
  1205. msgctxt "material_initial_print_temperature label"
  1206. msgid "Initial Printing Temperature"
  1207. msgstr "İlk Yazdırma Sıcaklığı"
  1208. msgctxt "acceleration_wall_x label"
  1209. msgid "Inner Wall Acceleration"
  1210. msgstr "İç Duvar İvmesi"
  1211. msgctxt "wall_x_extruder_nr label"
  1212. msgid "Inner Wall Extruder"
  1213. msgstr "İç Duvar Ekstrüderi"
  1214. msgctxt "jerk_wall_x label"
  1215. msgid "Inner Wall Jerk"
  1216. msgstr "İç Duvar Salınımı"
  1217. msgctxt "speed_wall_x label"
  1218. msgid "Inner Wall Speed"
  1219. msgstr "İç Duvar Hızı"
  1220. msgctxt "wall_x_material_flow label"
  1221. msgid "Inner Wall(s) Flow"
  1222. msgstr "İç Duvar Akışı"
  1223. msgctxt "wall_line_width_x label"
  1224. msgid "Inner Wall(s) Line Width"
  1225. msgstr "İç Duvar(lar) Hattı Genişliği"
  1226. msgctxt "wall_0_inset description"
  1227. 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."
  1228. 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."
  1229. msgctxt "inset_direction option inside_out"
  1230. msgid "Inside To Outside"
  1231. msgstr "İçten Dışa"
  1232. msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
  1233. msgid "Interface lines preferred"
  1234. msgstr "Tercih edilen arayüz hatları"
  1235. msgctxt "support_interface_priority option interface_area_overwrite_support_area"
  1236. msgid "Interface preferred"
  1237. msgstr "Tercih edilen arayüz"
  1238. msgctxt "interlocking_beam_layer_count label"
  1239. msgid "Interlocking Beam Layer Count"
  1240. msgstr "İç İçe Geçen Kiriş Katman Sayısı"
  1241. msgctxt "interlocking_beam_width label"
  1242. msgid "Interlocking Beam Width"
  1243. msgstr "İç İçe Geçme Genişliği"
  1244. msgctxt "interlocking_boundary_avoidance label"
  1245. msgid "Interlocking Boundary Avoidance"
  1246. msgstr "İç İçe Geçme Sınırından Kaçınma"
  1247. msgctxt "interlocking_depth label"
  1248. msgid "Interlocking Depth"
  1249. msgstr "İç İçe Geçme Derinliği"
  1250. msgctxt "interlocking_orientation label"
  1251. msgid "Interlocking Structure Orientation"
  1252. msgstr "İç İçe Geçen Yapı Uyumlaması"
  1253. msgctxt "ironing_only_highest_layer label"
  1254. msgid "Iron Only Highest Layer"
  1255. msgstr "Sadece En Yüksek Katmanı Ütüle"
  1256. msgctxt "acceleration_ironing label"
  1257. msgid "Ironing Acceleration"
  1258. msgstr "Ütüleme İvmesi"
  1259. msgctxt "ironing_flow label"
  1260. msgid "Ironing Flow"
  1261. msgstr "Ütüleme Akışı"
  1262. msgctxt "ironing_inset label"
  1263. msgid "Ironing Inset"
  1264. msgstr "Ütüleme İlave Mesafesi"
  1265. msgctxt "jerk_ironing label"
  1266. msgid "Ironing Jerk"
  1267. msgstr "Ütüleme İvmesi Değişimi"
  1268. msgctxt "ironing_line_spacing label"
  1269. msgid "Ironing Line Spacing"
  1270. msgstr "Ütüleme Hattı Boşluğu"
  1271. msgctxt "ironing_pattern label"
  1272. msgid "Ironing Pattern"
  1273. msgstr "Ütüleme Modeli"
  1274. msgctxt "speed_ironing label"
  1275. msgid "Ironing Speed"
  1276. msgstr "Ütüleme Hızı"
  1277. msgctxt "machine_center_is_zero label"
  1278. msgid "Is Center Origin"
  1279. msgstr "Merkez Nokta"
  1280. msgctxt "material_is_support_material label"
  1281. msgid "Is support material"
  1282. msgstr "Destek malzemesi mi"
  1283. msgctxt "material_crystallinity description"
  1284. 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)?"
  1285. 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?"
  1286. msgctxt "material_is_support_material description"
  1287. msgid "Is this material typically used as a support material during printing."
  1288. msgstr "Bu malzeme genellikle baskı sırasında destek malzemesi olarak mı kullanılır"
  1289. msgctxt "magic_fuzzy_skin_outside_only description"
  1290. msgid "Jitter only the parts' outlines and not the parts' holes."
  1291. msgstr "Parçalardaki delikleri değil, yalnızca ana hatlarını titretir."
  1292. msgctxt "meshfix_keep_open_polygons label"
  1293. msgid "Keep Disconnected Faces"
  1294. msgstr "Bağlı Olmayan Yüzleri Tut"
  1295. msgctxt "layer_height label"
  1296. msgid "Layer Height"
  1297. msgstr "Katman Yüksekliği"
  1298. msgctxt "layer_start_x label"
  1299. msgid "Layer Start X"
  1300. msgstr "Katman Başlangıcı X"
  1301. msgctxt "layer_start_y label"
  1302. msgid "Layer Start Y"
  1303. msgstr "Katman Başlangıcı Y"
  1304. msgctxt "raft_base_thickness description"
  1305. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  1306. 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."
  1307. msgctxt "raft_interface_thickness description"
  1308. msgid "Layer thickness of the middle raft layer."
  1309. msgstr "Radyenin orta katmanının katman kalınlığı."
  1310. msgctxt "raft_surface_thickness description"
  1311. msgid "Layer thickness of the top raft layers."
  1312. msgstr "Üst radye katmanlarının katman kalınlığı."
  1313. msgctxt "support_skip_zag_per_mm description"
  1314. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  1315. 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."
  1316. msgctxt "z_seam_position option left"
  1317. msgid "Left"
  1318. msgstr "Sol"
  1319. msgctxt "cool_lift_head label"
  1320. msgid "Lift Head"
  1321. msgstr "Yazıcı Başlığını Kaldır"
  1322. msgctxt "infill_pattern option lightning"
  1323. msgid "Lightning"
  1324. msgstr "Yıldırım"
  1325. msgctxt "lightning_infill_overhang_angle label"
  1326. msgid "Lightning Infill Overhang Angle"
  1327. msgstr "Yıldırım Dolgu Çıkıntı Açısı"
  1328. msgctxt "lightning_infill_prune_angle label"
  1329. msgid "Lightning Infill Prune Angle"
  1330. msgstr "Yıldırım Dolgu Budama Açısı"
  1331. msgctxt "lightning_infill_straightening_angle label"
  1332. msgid "Lightning Infill Straightening Angle"
  1333. msgstr "Yıldırım Dolgu Düzleştirme Açısı"
  1334. msgctxt "lightning_infill_support_angle label"
  1335. msgid "Lightning Infill Support Angle"
  1336. msgstr "Yıldırım Dolgu Destek Açısı"
  1337. msgctxt "support_tree_limit_branch_reach label"
  1338. msgid "Limit Branch Reach"
  1339. msgstr "Dal Erişimini Sınırla"
  1340. msgctxt "support_tree_limit_branch_reach description"
  1341. msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)"
  1342. msgstr "Her dalın desteklediği noktadan ne kadar uzağa gitmesi gerektiğini sınırlayın. Bu sınırlama, desteği daha sağlam hale getirebilir, ancak dalların miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır"
  1343. msgctxt "cutting_mesh description"
  1344. 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."
  1345. 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."
  1346. msgctxt "draft_shield_height_limitation option limited"
  1347. msgid "Limited"
  1348. msgstr "Sınırlı"
  1349. msgctxt "line_width label"
  1350. msgid "Line Width"
  1351. msgstr "Hat Genişliği"
  1352. msgctxt "infill_pattern option lines"
  1353. msgid "Lines"
  1354. msgstr "Çizgiler"
  1355. msgctxt "roofing_pattern option lines"
  1356. msgid "Lines"
  1357. msgstr "Çizgiler"
  1358. msgctxt "support_bottom_pattern option lines"
  1359. msgid "Lines"
  1360. msgstr "Çizgiler"
  1361. msgctxt "support_interface_pattern option lines"
  1362. msgid "Lines"
  1363. msgstr "Çizgiler"
  1364. msgctxt "support_pattern option lines"
  1365. msgid "Lines"
  1366. msgstr "Çizgiler"
  1367. msgctxt "support_roof_pattern option lines"
  1368. msgid "Lines"
  1369. msgstr "Çizgiler"
  1370. msgctxt "top_bottom_pattern option lines"
  1371. msgid "Lines"
  1372. msgstr "Çizgiler"
  1373. msgctxt "top_bottom_pattern_0 option lines"
  1374. msgid "Lines"
  1375. msgstr "Çizgiler"
  1376. msgctxt "machine_gcode_flavor option MACH3"
  1377. msgid "Mach3"
  1378. msgstr "Mach3"
  1379. msgctxt "machine_settings label"
  1380. msgid "Machine"
  1381. msgstr "Makine"
  1382. msgctxt "machine_depth label"
  1383. msgid "Machine Depth"
  1384. msgstr "Makine Derinliği"
  1385. msgctxt "machine_head_with_fans_polygon label"
  1386. msgid "Machine Head & Fan Polygon"
  1387. msgstr "Makinenin Başlığı ve Fan Poligonu"
  1388. msgctxt "machine_height label"
  1389. msgid "Machine Height"
  1390. msgstr "Makine Yüksekliği"
  1391. msgctxt "machine_name label"
  1392. msgid "Machine Type"
  1393. msgstr "Makine Türü"
  1394. msgctxt "machine_width label"
  1395. msgid "Machine Width"
  1396. msgstr "Makine Genişliği"
  1397. msgctxt "machine_settings description"
  1398. msgid "Machine specific settings"
  1399. msgstr "Makine özel ayarları"
  1400. msgctxt "conical_overhang_enabled label"
  1401. msgid "Make Overhang Printable"
  1402. msgstr "Çıkıntıyı Yazdırılabilir Yap"
  1403. msgctxt "multiple_mesh_overlap description"
  1404. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  1405. msgstr "Birbirine dokunan örgülerin az oranda üst üste binmesini sağlayın. Böylelikle bunlar daha iyi birleşebilir."
  1406. msgctxt "support_conical_enabled description"
  1407. msgid "Make support areas smaller at the bottom than at the overhang."
  1408. msgstr "Alttaki destek alanlarını çıkıntıda olanlardan daha küçük yapın."
  1409. msgctxt "support_mesh_drop_down description"
  1410. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  1411. 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."
  1412. msgctxt "extruder_prime_pos_abs description"
  1413. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  1414. msgstr "Ekstruder ilk konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın."
  1415. msgctxt "layer_0_z_overlap description"
  1416. 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."
  1417. 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."
  1418. msgctxt "meshfix description"
  1419. msgid "Make the meshes more suited for 3D printing."
  1420. msgstr "Kafesleri 3D baskı için daha uygun hale getirir."
  1421. msgctxt "machine_gcode_flavor option Makerbot"
  1422. msgid "Makerbot"
  1423. msgstr "Makerbot"
  1424. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  1425. msgid "Marlin"
  1426. msgstr "Marlin"
  1427. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  1428. msgid "Marlin (Volumetric)"
  1429. msgstr "Marlin (Volümetrik)"
  1430. msgctxt "material description"
  1431. msgid "Material"
  1432. msgstr "Malzeme"
  1433. msgctxt "material label"
  1434. msgid "Material"
  1435. msgstr "Malzeme"
  1436. msgctxt "material_guid label"
  1437. msgid "Material GUID"
  1438. msgstr "GUID malzeme"
  1439. msgctxt "max_extrusion_before_wipe label"
  1440. msgid "Material Volume Between Wipes"
  1441. msgstr "Sürme Hareketleri Arasındaki Malzeme Hacmi"
  1442. msgctxt "retraction_combing_max_distance label"
  1443. msgid "Max Comb Distance With No Retract"
  1444. msgstr "Geri Çekmesiz Maks. Tarama Mesafesi"
  1445. msgctxt "machine_max_acceleration_x label"
  1446. msgid "Maximum Acceleration X"
  1447. msgstr "Maksimum X İvmesi"
  1448. msgctxt "machine_max_acceleration_y label"
  1449. msgid "Maximum Acceleration Y"
  1450. msgstr "Maksimum Y İvmesi"
  1451. msgctxt "machine_max_acceleration_z label"
  1452. msgid "Maximum Acceleration Z"
  1453. msgstr "Maksimum Z İvmesi"
  1454. msgctxt "support_tree_angle label"
  1455. msgid "Maximum Branch Angle"
  1456. msgstr "Maksimum Dal Açısı"
  1457. msgctxt "meshfix_maximum_deviation label"
  1458. msgid "Maximum Deviation"
  1459. msgstr "Maksimum Sapma"
  1460. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  1461. msgid "Maximum Extrusion Area Deviation"
  1462. msgstr "Maksimum Ekstrüzyon Alanı Sapması"
  1463. msgctxt "cool_fan_speed_max label"
  1464. msgid "Maximum Fan Speed"
  1465. msgstr "Maksimum Fan Hızı"
  1466. msgctxt "machine_max_acceleration_e label"
  1467. msgid "Maximum Filament Acceleration"
  1468. msgstr "Maksimum Filaman İvmesi"
  1469. msgctxt "conical_overhang_angle label"
  1470. msgid "Maximum Model Angle"
  1471. msgstr "Maksimum Model Açısı"
  1472. msgctxt "conical_overhang_hole_size label"
  1473. msgid "Maximum Overhang Hole Area"
  1474. msgstr "Maksimum Çıkıntı Deliği Alanı"
  1475. msgctxt "material_maximum_park_duration label"
  1476. msgid "Maximum Park Duration"
  1477. msgstr "Maksimum Durma Süresi"
  1478. msgctxt "meshfix_maximum_resolution label"
  1479. msgid "Maximum Resolution"
  1480. msgstr "Maksimum Çözünürlük"
  1481. msgctxt "retraction_count_max label"
  1482. msgid "Maximum Retraction Count"
  1483. msgstr "Maksimum Geri Çekme Sayısı"
  1484. msgctxt "max_skin_angle_for_expansion label"
  1485. msgid "Maximum Skin Angle for Expansion"
  1486. msgstr "Genişleme için Maksimum Yüzey Açısı"
  1487. msgctxt "machine_max_feedrate_e label"
  1488. msgid "Maximum Speed E"
  1489. msgstr "Maksimum Hız E"
  1490. msgctxt "machine_max_feedrate_x label"
  1491. msgid "Maximum Speed X"
  1492. msgstr "Maksimum X Hızı"
  1493. msgctxt "machine_max_feedrate_y label"
  1494. msgid "Maximum Speed Y"
  1495. msgstr "Maksimum Y Hızı"
  1496. msgctxt "machine_max_feedrate_z label"
  1497. msgid "Maximum Speed Z"
  1498. msgstr "Maksimum Z Hızı"
  1499. msgctxt "support_tower_maximum_supported_diameter label"
  1500. msgid "Maximum Tower-Supported Diameter"
  1501. msgstr "Kule Destekli Maksimum Çap"
  1502. msgctxt "meshfix_maximum_travel_resolution label"
  1503. msgid "Maximum Travel Resolution"
  1504. msgstr "Maksimum Hareket Çözünürlüğü"
  1505. msgctxt "machine_max_acceleration_x description"
  1506. msgid "Maximum acceleration for the motor of the X-direction"
  1507. msgstr "X yönü motoru için maksimum ivme"
  1508. msgctxt "machine_max_acceleration_y description"
  1509. msgid "Maximum acceleration for the motor of the Y-direction."
  1510. msgstr "Y yönü motoru için maksimum ivme."
  1511. msgctxt "machine_max_acceleration_z description"
  1512. msgid "Maximum acceleration for the motor of the Z-direction."
  1513. msgstr "Z yönü motoru için maksimum ivme."
  1514. msgctxt "machine_max_acceleration_e description"
  1515. msgid "Maximum acceleration for the motor of the filament."
  1516. msgstr "Filaman motoru için maksimum ivme."
  1517. msgctxt "bridge_sparse_infill_max_density description"
  1518. 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."
  1519. 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."
  1520. msgctxt "support_tower_maximum_supported_diameter description"
  1521. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  1522. msgstr "Özel bir destek kulesiyle desteklenecek küçük bir alanın X/Y yönlerindeki maksimum çapıdır."
  1523. msgctxt "max_extrusion_before_wipe description"
  1524. 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."
  1525. 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."
  1526. msgctxt "multiple_mesh_overlap label"
  1527. msgid "Merged Meshes Overlap"
  1528. msgstr "Birleştirilmiş Bileşim Çakışması"
  1529. msgctxt "meshfix label"
  1530. msgid "Mesh Fixes"
  1531. msgstr "Ağ Onarımları"
  1532. msgctxt "mesh_position_x label"
  1533. msgid "Mesh Position X"
  1534. msgstr "Bileşim konumu X"
  1535. msgctxt "mesh_position_y label"
  1536. msgid "Mesh Position Y"
  1537. msgstr "Bileşim konumu Y"
  1538. msgctxt "mesh_position_z label"
  1539. msgid "Mesh Position Z"
  1540. msgstr "Bileşim konumu Z"
  1541. msgctxt "infill_mesh_order label"
  1542. msgid "Mesh Processing Rank"
  1543. msgstr "Örgü İşleme Sıralaması"
  1544. msgctxt "mesh_rotation_matrix label"
  1545. msgid "Mesh Rotation Matrix"
  1546. msgstr "Bileşim Rotasyon Matrisi"
  1547. msgctxt "slicing_tolerance option middle"
  1548. msgid "Middle"
  1549. msgstr "Ortalayıcı"
  1550. msgctxt "mold_width label"
  1551. msgid "Minimal Mold Width"
  1552. msgstr "Minimum Kalıp Genişliği"
  1553. msgctxt "machine_min_cool_heat_time_window label"
  1554. msgid "Minimal Time Standby Temperature"
  1555. msgstr "Minimum Sürede Bekleme Sıcaklığı"
  1556. msgctxt "bridge_wall_min_length label"
  1557. msgid "Minimum Bridge Wall Length"
  1558. msgstr "Minimum Köprü Duvarı Uzunluğu"
  1559. msgctxt "min_even_wall_line_width label"
  1560. msgid "Minimum Even Wall Line Width"
  1561. msgstr "Minimum Çift Duvar Hattı Genişliği"
  1562. msgctxt "retraction_extrusion_window label"
  1563. msgid "Minimum Extrusion Distance Window"
  1564. msgstr "Minimum Geri Çekme Mesafesi Penceresi"
  1565. msgctxt "min_feature_size label"
  1566. msgid "Minimum Feature Size"
  1567. msgstr "Minimum Yüz Hattı Boyutu"
  1568. msgctxt "machine_minimum_feedrate label"
  1569. msgid "Minimum Feedrate"
  1570. msgstr "Minimum Besleme Hızı"
  1571. msgctxt "support_tree_min_height_to_model label"
  1572. msgid "Minimum Height To Model"
  1573. msgstr "Modele Göre Minimum Yükseklik"
  1574. msgctxt "min_infill_area label"
  1575. msgid "Minimum Infill Area"
  1576. msgstr "Minimum Dolgu Alanı"
  1577. msgctxt "cool_min_layer_time label"
  1578. msgid "Minimum Layer Time"
  1579. msgstr "Minimum Katman Süresi"
  1580. msgctxt "min_odd_wall_line_width label"
  1581. msgid "Minimum Odd Wall Line Width"
  1582. msgstr "Minimum Tek Duvar Hattı Genişliği"
  1583. msgctxt "minimum_polygon_circumference label"
  1584. msgid "Minimum Polygon Circumference"
  1585. msgstr "Minimum Poligon Çevre Uzunluğu"
  1586. msgctxt "min_skin_width_for_expansion label"
  1587. msgid "Minimum Skin Width for Expansion"
  1588. msgstr "Genişleme için Minimum Yüzey Genişliği"
  1589. msgctxt "cool_min_speed label"
  1590. msgid "Minimum Speed"
  1591. msgstr "Minimum Hız"
  1592. msgctxt "minimum_support_area label"
  1593. msgid "Minimum Support Area"
  1594. msgstr "Minimum Destek Bölgesi"
  1595. msgctxt "minimum_bottom_area label"
  1596. msgid "Minimum Support Floor Area"
  1597. msgstr "Minimum Destek Zemini Bölgesi"
  1598. msgctxt "minimum_interface_area label"
  1599. msgid "Minimum Support Interface Area"
  1600. msgstr "Minimum Destek Arayüzü Bölgesi"
  1601. msgctxt "minimum_roof_area label"
  1602. msgid "Minimum Support Roof Area"
  1603. msgstr "Minimum Destek Çatısı Bölgesi"
  1604. msgctxt "support_xy_distance_overhang label"
  1605. msgid "Minimum Support X/Y Distance"
  1606. msgstr "Minimum Destek X/Y Mesafesi"
  1607. msgctxt "min_bead_width label"
  1608. msgid "Minimum Thin Wall Line Width"
  1609. msgstr "Minimum İnce Duvar Hattı Genişliği"
  1610. msgctxt "coasting_min_volume label"
  1611. msgid "Minimum Volume Before Coasting"
  1612. msgstr "Tarama Öncesi Minimum Hacim"
  1613. msgctxt "min_wall_line_width label"
  1614. msgid "Minimum Wall Line Width"
  1615. msgstr "Minimum Duvar Hattı Genişliği"
  1616. msgctxt "minimum_interface_area description"
  1617. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  1618. msgstr "Destek arayüzü çokgenlerinin minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır."
  1619. msgctxt "minimum_support_area description"
  1620. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  1621. msgstr "Destek poligonları için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır."
  1622. msgctxt "minimum_bottom_area description"
  1623. 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."
  1624. msgstr "Destek tabanlarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır."
  1625. msgctxt "minimum_roof_area description"
  1626. 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."
  1627. msgstr "Destek çatılarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır."
  1628. msgctxt "min_feature_size description"
  1629. 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."
  1630. 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."
  1631. msgctxt "support_conical_min_width description"
  1632. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  1633. 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."
  1634. msgctxt "mold_enabled label"
  1635. msgid "Mold"
  1636. msgstr "Kalıp"
  1637. msgctxt "mold_angle label"
  1638. msgid "Mold Angle"
  1639. msgstr "Kalıp Açısı"
  1640. msgctxt "mold_roof_height label"
  1641. msgid "Mold Roof Height"
  1642. msgstr "Kalıp Çatı Yüksekliği"
  1643. msgctxt "ironing_monotonic label"
  1644. msgid "Monotonic Ironing Order"
  1645. msgstr "Monotonik Ütüleme Düzeni"
  1646. msgctxt "roofing_monotonic label"
  1647. msgid "Monotonic Top Surface Order"
  1648. msgstr "Monotonik Üst Yüzey Düzeni"
  1649. msgctxt "skin_monotonic label"
  1650. msgid "Monotonic Top/Bottom Order"
  1651. msgstr "Monotonik Üst/Alt Düzeni"
  1652. msgctxt "skirt_line_count description"
  1653. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  1654. 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."
  1655. msgctxt "initial_layer_line_width_factor description"
  1656. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  1657. msgstr "İlk katman üzerinde bulunan hat genişliği çoğaltıcı. Çoğaltmayı artırmak yatak yapışmasını iyileştirebilir."
  1658. msgctxt "material_no_load_move_factor label"
  1659. msgid "No Load Move Factor"
  1660. msgstr "Yük Taşıma Çarpanı Yok"
  1661. msgctxt "skin_no_small_gaps_heuristic label"
  1662. msgid "No Skin in Z Gaps"
  1663. msgstr "Z Boşluklarında Dış Katman Oluşturma"
  1664. msgctxt "blackmagic description"
  1665. msgid "Non-traditional ways to print your models."
  1666. msgstr "Modellerinizi yazdırmanın geleneksel olmayan yollarıdır."
  1667. msgctxt "adhesion_type option none"
  1668. msgid "None"
  1669. msgstr "Hiçbiri"
  1670. msgctxt "z_seam_corner option z_seam_corner_none"
  1671. msgid "None"
  1672. msgstr "Hiçbiri"
  1673. msgctxt "magic_mesh_surface_mode option normal"
  1674. msgid "Normal"
  1675. msgstr "Normal"
  1676. msgctxt "support_structure option normal"
  1677. msgid "Normal"
  1678. msgstr "Normal"
  1679. msgctxt "meshfix_keep_open_polygons description"
  1680. 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."
  1681. 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."
  1682. msgctxt "retraction_combing option noskin"
  1683. msgid "Not in Skin"
  1684. msgstr "Yüzey Alanında Değil"
  1685. msgctxt "retraction_combing option no_outer_surfaces"
  1686. msgid "Not on Outer Surface"
  1687. msgstr "Dış Yüzeyde Değil"
  1688. msgctxt "machine_nozzle_expansion_angle label"
  1689. msgid "Nozzle Angle"
  1690. msgstr "Nozül Açısı"
  1691. msgctxt "machine_nozzle_size label"
  1692. msgid "Nozzle Diameter"
  1693. msgstr "Nozül Çapı"
  1694. msgctxt "nozzle_disallowed_areas label"
  1695. msgid "Nozzle Disallowed Areas"
  1696. msgstr "Nozül İzni Olmayan Alanlar"
  1697. msgctxt "machine_nozzle_id label"
  1698. msgid "Nozzle ID"
  1699. msgstr "Nozül Kimliği"
  1700. msgctxt "machine_nozzle_head_distance label"
  1701. msgid "Nozzle Length"
  1702. msgstr "Nozül Uzunluğu"
  1703. msgctxt "switch_extruder_extra_prime_amount label"
  1704. msgid "Nozzle Switch Extra Prime Amount"
  1705. msgstr "Nozül Değişimiyle Çalışmaya Hazırlanacak Ek Miktar"
  1706. msgctxt "switch_extruder_prime_speed label"
  1707. msgid "Nozzle Switch Prime Speed"
  1708. msgstr "Nozül Değişiminin İlk Hızı"
  1709. msgctxt "switch_extruder_retraction_speed label"
  1710. msgid "Nozzle Switch Retract Speed"
  1711. msgstr "Nozül Değişiminin Geri Çekme Hızı"
  1712. msgctxt "switch_extruder_retraction_amount label"
  1713. msgid "Nozzle Switch Retraction Distance"
  1714. msgstr "Nozül Anahtarı Geri Çekme Mesafesi"
  1715. msgctxt "switch_extruder_retraction_speeds label"
  1716. msgid "Nozzle Switch Retraction Speed"
  1717. msgstr "Nozül Anahtarı Geri Çekme Hızı"
  1718. msgctxt "machine_extruder_count label"
  1719. msgid "Number of Extruders"
  1720. msgstr "Ekstrüder Sayısı"
  1721. msgctxt "extruders_enabled_count label"
  1722. msgid "Number of Extruders That Are Enabled"
  1723. msgstr "Etkinleştirilmiş Ekstruder Sayısı"
  1724. msgctxt "speed_slowdown_layers label"
  1725. msgid "Number of Slower Layers"
  1726. msgstr "Daha Yavaş Katman Sayısı"
  1727. msgctxt "extruders_enabled_count description"
  1728. msgid "Number of extruder trains that are enabled; automatically set in software"
  1729. msgstr "Etkinleştirilmiş ekstruder dişli çarklarının sayısı; yazılımda otomatik olarak ayarlanır"
  1730. msgctxt "machine_extruder_count description"
  1731. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  1732. msgstr "Ekstruder dişli çarklarının sayısı. Ekstruder dişli çarkı besleyici, bowden tüpü ve nozülden oluşur."
  1733. msgctxt "wipe_repeat_count description"
  1734. msgid "Number of times to move the nozzle across the brush."
  1735. msgstr "Nozülün fırçadan geçirilme sayısı."
  1736. msgctxt "gradual_infill_steps description"
  1737. 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."
  1738. 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."
  1739. msgctxt "gradual_support_infill_steps description"
  1740. 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."
  1741. 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."
  1742. msgctxt "infill_pattern option tetrahedral"
  1743. msgid "Octet"
  1744. msgstr "Sekizlik"
  1745. msgctxt "retraction_combing option off"
  1746. msgid "Off"
  1747. msgstr "Kapalı"
  1748. msgctxt "mesh_position_x description"
  1749. msgid "Offset applied to the object in the x direction."
  1750. msgstr "Nesneye x yönünde uygulanan ofset."
  1751. msgctxt "mesh_position_y description"
  1752. msgid "Offset applied to the object in the y direction."
  1753. msgstr "Nesneye y yönünde uygulanan ofset."
  1754. msgctxt "mesh_position_z description"
  1755. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  1756. msgstr "Nesneye z yönünde uygulanan ofset. Bununla birlikte “Nesne Havuzu” olarak adlandırılan malzemeyi de kullanabilirsiniz."
  1757. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  1758. msgid "Offset with Extruder"
  1759. msgstr "Ekstruder Ofseti"
  1760. msgctxt "support_tree_rest_preference option buildplate"
  1761. msgid "On buildplate when possible"
  1762. msgstr "Mümkün olduğunda yapı levhası üzerinde"
  1763. msgctxt "support_tree_rest_preference option graceful"
  1764. msgid "On model if required"
  1765. msgstr "Gerektiğinde model üzerinde"
  1766. msgctxt "print_sequence option one_at_a_time"
  1767. msgid "One at a Time"
  1768. msgstr "Birer Birer"
  1769. msgctxt "retraction_hop_only_when_collides description"
  1770. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  1771. 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."
  1772. msgctxt "ironing_only_highest_layer description"
  1773. 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."
  1774. 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."
  1775. msgctxt "brim_outside_only description"
  1776. 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."
  1777. 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."
  1778. msgctxt "ooze_shield_angle label"
  1779. msgid "Ooze Shield Angle"
  1780. msgstr "Sızdırma Kalkanı Açısı"
  1781. msgctxt "ooze_shield_dist label"
  1782. msgid "Ooze Shield Distance"
  1783. msgstr "Sızdırma Kalkanı Mesafesi"
  1784. msgctxt "support_tree_branch_reach_limit label"
  1785. msgid "Optimal Branch Range"
  1786. msgstr "Optimum Dal Aralığı"
  1787. msgctxt "optimize_wall_printing_order label"
  1788. msgid "Optimize Wall Printing Order"
  1789. msgstr "Duvar Yazdırma Sırasını Optimize Et"
  1790. msgctxt "optimize_wall_printing_order description"
  1791. 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."
  1792. 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."
  1793. msgctxt "machine_nozzle_tip_outer_diameter label"
  1794. msgid "Outer Nozzle Diameter"
  1795. msgstr "Dış Nozül Çapı"
  1796. msgctxt "acceleration_wall_0 label"
  1797. msgid "Outer Wall Acceleration"
  1798. msgstr "Dış Duvar İvmesi"
  1799. msgctxt "wall_0_extruder_nr label"
  1800. msgid "Outer Wall Extruder"
  1801. msgstr "Dış Duvar Ekstruderi"
  1802. msgctxt "wall_0_material_flow label"
  1803. msgid "Outer Wall Flow"
  1804. msgstr "Dış Duvar Akışı"
  1805. msgctxt "wall_0_inset label"
  1806. msgid "Outer Wall Inset"
  1807. msgstr "Dış Duvar İlavesi"
  1808. msgctxt "jerk_wall_0 label"
  1809. msgid "Outer Wall Jerk"
  1810. msgstr "Dış Duvar Salınımı"
  1811. msgctxt "wall_line_width_0 label"
  1812. msgid "Outer Wall Line Width"
  1813. msgstr "Dış Duvar Hattı Genişliği"
  1814. msgctxt "speed_wall_0 label"
  1815. msgid "Outer Wall Speed"
  1816. msgstr "Dış Duvar Hızı"
  1817. msgctxt "wall_0_wipe_dist label"
  1818. msgid "Outer Wall Wipe Distance"
  1819. msgstr "Dış Duvar Sürme Mesafesi"
  1820. msgctxt "inset_direction option outside_in"
  1821. msgid "Outside To Inside"
  1822. msgstr "Dıştan İçe"
  1823. msgctxt "wall_overhang_angle label"
  1824. msgid "Overhanging Wall Angle"
  1825. msgstr "Çıkıntılı Duvar Açısı"
  1826. msgctxt "wall_overhang_speed_factor label"
  1827. msgid "Overhanging Wall Speed"
  1828. msgstr "Çıkıntılı Duvar Hızı"
  1829. msgctxt "wall_overhang_speed_factor description"
  1830. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  1831. msgstr "Çıkıntılı duvarlar, normal yazdırma hızına göre bu yüzdeye denk bir hızda yazdırılacaktır."
  1832. msgctxt "wipe_pause description"
  1833. msgid "Pause after the unretract."
  1834. msgstr "Geri çekmenin geri alınmasından sonraki duraklama."
  1835. msgctxt "bridge_fan_speed description"
  1836. msgid "Percentage fan speed to use when printing bridge walls and skin."
  1837. msgstr "Köprü duvarları ve yüzey alanı yazdırılırken kullanılacak yüzde fan hızı."
  1838. msgctxt "bridge_fan_speed_2 description"
  1839. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  1840. msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı."
  1841. msgctxt "support_supported_skin_fan_speed description"
  1842. 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."
  1843. 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."
  1844. msgctxt "bridge_fan_speed_3 description"
  1845. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  1846. msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı."
  1847. msgctxt "minimum_polygon_circumference description"
  1848. 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."
  1849. 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."
  1850. msgctxt "support_tree_angle_slow label"
  1851. msgid "Preferred Branch Angle"
  1852. msgstr "Tercih Edilen Dal Açısı"
  1853. msgctxt "wall_transition_filter_deviation description"
  1854. 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."
  1855. 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."
  1856. msgctxt "acceleration_prime_tower label"
  1857. msgid "Prime Tower Acceleration"
  1858. msgstr "İlk Direk İvmesi"
  1859. msgctxt "prime_tower_brim_enable label"
  1860. msgid "Prime Tower Brim"
  1861. msgstr "Astarlama Direği Kenarı"
  1862. msgctxt "prime_tower_flow label"
  1863. msgid "Prime Tower Flow"
  1864. msgstr "İlk Direk Akışı"
  1865. msgctxt "jerk_prime_tower label"
  1866. msgid "Prime Tower Jerk"
  1867. msgstr "İlk Direk Salınımı"
  1868. msgctxt "prime_tower_line_width label"
  1869. msgid "Prime Tower Line Width"
  1870. msgstr "İlk Direk Hattı Genişliği"
  1871. msgctxt "prime_tower_min_volume label"
  1872. msgid "Prime Tower Minimum Volume"
  1873. msgstr "İlk Direğin Minimum Hacmi"
  1874. msgctxt "prime_tower_size label"
  1875. msgid "Prime Tower Size"
  1876. msgstr "İlk Direk Boyutu"
  1877. msgctxt "speed_prime_tower label"
  1878. msgid "Prime Tower Speed"
  1879. msgstr "İlk Direk Hızı"
  1880. msgctxt "prime_tower_position_x label"
  1881. msgid "Prime Tower X Position"
  1882. msgstr "İlk Direk X Konumu"
  1883. msgctxt "prime_tower_position_y label"
  1884. msgid "Prime Tower Y Position"
  1885. msgstr "İlk Direk Y Konumu"
  1886. msgctxt "prime_tower_brim_enable description"
  1887. 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."
  1888. 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."
  1889. msgctxt "acceleration_print label"
  1890. msgid "Print Acceleration"
  1891. msgstr "Yazdırma İvmesi"
  1892. msgctxt "jerk_print label"
  1893. msgid "Print Jerk"
  1894. msgstr "Yazdırma İvmesi Değişimi"
  1895. msgctxt "print_sequence label"
  1896. msgid "Print Sequence"
  1897. msgstr "Yazdırma Dizisi"
  1898. msgctxt "speed_print label"
  1899. msgid "Print Speed"
  1900. msgstr "Yazdırma Hızı"
  1901. msgctxt "fill_outline_gaps label"
  1902. msgid "Print Thin Walls"
  1903. msgstr "İnce Duvarları Yazdır"
  1904. msgctxt "prime_tower_enable description"
  1905. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  1906. 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."
  1907. msgctxt "infill_support_enabled description"
  1908. 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."
  1909. 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."
  1910. msgctxt "ironing_monotonic description"
  1911. 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."
  1912. 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."
  1913. msgctxt "mold_enabled description"
  1914. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  1915. msgstr "Yapı levhası üzerinde modelleri toplayan bir model elde etmek amacıyla döküm olabilecek modelleri kalıp olarak yazdırır."
  1916. msgctxt "fill_outline_gaps description"
  1917. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  1918. msgstr "Yatay olarak nozül boyutundan daha ince olan model parçalarını yazdırır."
  1919. msgctxt "bridge_skin_speed_2 description"
  1920. msgid "Print speed to use when printing the second bridge skin layer."
  1921. msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı."
  1922. msgctxt "bridge_skin_speed_3 description"
  1923. msgid "Print speed to use when printing the third bridge skin layer."
  1924. msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı."
  1925. msgctxt "infill_before_walls description"
  1926. 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."
  1927. 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."
  1928. msgctxt "roofing_monotonic description"
  1929. 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."
  1930. 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."
  1931. msgctxt "skin_monotonic description"
  1932. 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."
  1933. 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."
  1934. msgctxt "material_print_temperature label"
  1935. msgid "Printing Temperature"
  1936. msgstr "Yazdırma Sıcaklığı"
  1937. msgctxt "material_print_temperature_layer_0 label"
  1938. msgid "Printing Temperature Initial Layer"
  1939. msgstr "İlk Katman Yazdırma Sıcaklığı"
  1940. msgctxt "skirt_height description"
  1941. msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
  1942. msgstr "En içteki etek çizgisinin birden fazla katmanla yazdırılması, eteğin çıkarılmasını kolaylaştırır."
  1943. msgctxt "alternate_extra_perimeter description"
  1944. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  1945. 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."
  1946. msgctxt "resolution label"
  1947. msgid "Quality"
  1948. msgstr "Kalite"
  1949. msgctxt "infill_pattern option quarter_cubic"
  1950. msgid "Quarter Cubic"
  1951. msgstr "Çeyrek Kübik"
  1952. msgctxt "adhesion_type option raft"
  1953. msgid "Raft"
  1954. msgstr "Radye"
  1955. msgctxt "raft_airgap label"
  1956. msgid "Raft Air Gap"
  1957. msgstr "Radye Hava Boşluğu"
  1958. msgctxt "raft_base_extruder_nr label"
  1959. msgid "Raft Base Extruder"
  1960. msgstr "Radye Taban Ekstrüderi"
  1961. msgctxt "raft_base_fan_speed label"
  1962. msgid "Raft Base Fan Speed"
  1963. msgstr "Radyenin Taban Fan Hızı"
  1964. msgctxt "raft_base_line_spacing label"
  1965. msgid "Raft Base Line Spacing"
  1966. msgstr "Radye Taban Hat Genişliği"
  1967. msgctxt "raft_base_line_width label"
  1968. msgid "Raft Base Line Width"
  1969. msgstr "Radyenin Taban Hat Genişliği"
  1970. msgctxt "raft_base_acceleration label"
  1971. msgid "Raft Base Print Acceleration"
  1972. msgstr "Radyenin Taban Yazdırma İvmesi"
  1973. msgctxt "raft_base_jerk label"
  1974. msgid "Raft Base Print Jerk"
  1975. msgstr "Radyenin Taban Yazdırma Salınımı"
  1976. msgctxt "raft_base_speed label"
  1977. msgid "Raft Base Print Speed"
  1978. msgstr "Radyenin Taban Yazdırma Hızı"
  1979. msgctxt "raft_base_thickness label"
  1980. msgid "Raft Base Thickness"
  1981. msgstr "Radye Taban Kalınlığı"
  1982. msgctxt "raft_base_wall_count label"
  1983. msgid "Raft Base Wall Count"
  1984. msgstr "Radye Tabanı Duvar Sayısı"
  1985. msgctxt "raft_margin label"
  1986. msgid "Raft Extra Margin"
  1987. msgstr "Ek Radye Boşluğu"
  1988. msgctxt "raft_fan_speed label"
  1989. msgid "Raft Fan Speed"
  1990. msgstr "Radye Fan Hızı"
  1991. msgctxt "raft_interface_extruder_nr label"
  1992. msgid "Raft Middle Extruder"
  1993. msgstr "Radye Orta Ekstrüderi"
  1994. msgctxt "raft_interface_fan_speed label"
  1995. msgid "Raft Middle Fan Speed"
  1996. msgstr "Radyenin Orta Fan Hızı"
  1997. msgctxt "raft_interface_layers label"
  1998. msgid "Raft Middle Layers"
  1999. msgstr "Radye Orta Katmanları"
  2000. msgctxt "raft_interface_line_width label"
  2001. msgid "Raft Middle Line Width"
  2002. msgstr "Radyenin Orta Hat Genişliği"
  2003. msgctxt "raft_interface_acceleration label"
  2004. msgid "Raft Middle Print Acceleration"
  2005. msgstr "Radyenin Orta Yazdırma İvmesi"
  2006. msgctxt "raft_interface_jerk label"
  2007. msgid "Raft Middle Print Jerk"
  2008. msgstr "Radyenin Orta Yazdırma Salınımı"
  2009. msgctxt "raft_interface_speed label"
  2010. msgid "Raft Middle Print Speed"
  2011. msgstr "Radyenin Orta Yazdırma Hızı"
  2012. msgctxt "raft_interface_line_spacing label"
  2013. msgid "Raft Middle Spacing"
  2014. msgstr "Radye Orta Boşluğu"
  2015. msgctxt "raft_interface_thickness label"
  2016. msgid "Raft Middle Thickness"
  2017. msgstr "Radye Orta Kalınlığı"
  2018. msgctxt "raft_acceleration label"
  2019. msgid "Raft Print Acceleration"
  2020. msgstr "Radye Yazdırma İvmesi"
  2021. msgctxt "raft_jerk label"
  2022. msgid "Raft Print Jerk"
  2023. msgstr "Radye Yazdırma Salınımı"
  2024. msgctxt "raft_speed label"
  2025. msgid "Raft Print Speed"
  2026. msgstr "Radye Yazdırma Hızı"
  2027. msgctxt "raft_smoothing label"
  2028. msgid "Raft Smoothing"
  2029. msgstr "Radye Düzeltme"
  2030. msgctxt "raft_surface_extruder_nr label"
  2031. msgid "Raft Top Extruder"
  2032. msgstr "Radye Üst Ekstrüderi"
  2033. msgctxt "raft_surface_fan_speed label"
  2034. msgid "Raft Top Fan Speed"
  2035. msgstr "Radye Üst Fan Hızı"
  2036. msgctxt "raft_surface_thickness label"
  2037. msgid "Raft Top Layer Thickness"
  2038. msgstr "Radyenin Üst Katman Kalınlığı"
  2039. msgctxt "raft_surface_layers label"
  2040. msgid "Raft Top Layers"
  2041. msgstr "Radyenin Üst Katmanları"
  2042. msgctxt "raft_surface_line_width label"
  2043. msgid "Raft Top Line Width"
  2044. msgstr "Radyenin Üst Hat Genişliği"
  2045. msgctxt "raft_surface_acceleration label"
  2046. msgid "Raft Top Print Acceleration"
  2047. msgstr "Radye Üst Yazdırma İvmesi"
  2048. msgctxt "raft_surface_jerk label"
  2049. msgid "Raft Top Print Jerk"
  2050. msgstr "Radye Üst Yazdırma Salınımı"
  2051. msgctxt "raft_surface_speed label"
  2052. msgid "Raft Top Print Speed"
  2053. msgstr "Radye Üst Yazdırma Hızı"
  2054. msgctxt "raft_surface_line_spacing label"
  2055. msgid "Raft Top Spacing"
  2056. msgstr "Radyenin Üst Boşluğu"
  2057. msgctxt "z_seam_type option random"
  2058. msgid "Random"
  2059. msgstr "Gelişigüzel"
  2060. msgctxt "infill_randomize_start_location label"
  2061. msgid "Randomize Infill Start"
  2062. msgstr "Rastgele Boşluk Doldurma Başlat"
  2063. msgctxt "infill_randomize_start_location description"
  2064. 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."
  2065. 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."
  2066. msgctxt "magic_fuzzy_skin_enabled description"
  2067. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  2068. msgstr "Yüzeyin sert ve belirsiz bir görüntü alması için dış duvarları yazdırırken rastgele titrer."
  2069. msgctxt "machine_shape option rectangular"
  2070. msgid "Rectangular"
  2071. msgstr "Dikdörtgen"
  2072. msgctxt "cool_fan_speed_min label"
  2073. msgid "Regular Fan Speed"
  2074. msgstr "Olağan Fan Hızı"
  2075. msgctxt "cool_fan_full_at_height label"
  2076. msgid "Regular Fan Speed at Height"
  2077. msgstr "Yüksekteki Olağan Fan Hızı"
  2078. msgctxt "cool_fan_full_layer label"
  2079. msgid "Regular Fan Speed at Layer"
  2080. msgstr "Katmandaki Olağan Fan Hızı"
  2081. msgctxt "cool_min_layer_time_fan_speed_max label"
  2082. msgid "Regular/Maximum Fan Speed Threshold"
  2083. msgstr "Olağan/Maksimum Fan Hızı Sınırı"
  2084. msgctxt "relative_extrusion label"
  2085. msgid "Relative Extrusion"
  2086. msgstr "Bağıl Ekstrüzyon"
  2087. msgctxt "meshfix_union_all_remove_holes label"
  2088. msgid "Remove All Holes"
  2089. msgstr "Tüm Boşlukları Kaldır"
  2090. msgctxt "remove_empty_first_layers label"
  2091. msgid "Remove Empty First Layers"
  2092. msgstr "Boş İlk Katmanları Kaldır"
  2093. msgctxt "carve_multiple_volumes label"
  2094. msgid "Remove Mesh Intersection"
  2095. msgstr "Bileşim Kesişimini Kaldırın"
  2096. msgctxt "raft_remove_inside_corners label"
  2097. msgid "Remove Raft Inside Corners"
  2098. msgstr "Radye İç Köşelerini Kaldır"
  2099. msgctxt "carve_multiple_volumes description"
  2100. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  2101. msgstr "Birden fazla bileşimin çakıştığı alanları kaldırın. Bu, birleştirilmiş ikili malzemeler çakıştığında kullanılabilir."
  2102. msgctxt "remove_empty_first_layers description"
  2103. 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."
  2104. 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."
  2105. msgctxt "raft_remove_inside_corners description"
  2106. msgid "Remove inside corners from the raft, causing the raft to become convex."
  2107. msgstr "Radyenin iç köşelerini kaldırır ve radyenin dışbükey olmasına yol açar."
  2108. msgctxt "meshfix_union_all_remove_holes description"
  2109. 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."
  2110. 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."
  2111. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  2112. msgid "RepRap"
  2113. msgstr "RepRap"
  2114. msgctxt "machine_gcode_flavor option Repetier"
  2115. msgid "Repetier"
  2116. msgstr "Repetier"
  2117. msgctxt "skin_outline_count description"
  2118. 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."
  2119. 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."
  2120. msgctxt "support_tree_rest_preference label"
  2121. msgid "Rest Preference"
  2122. msgstr "Yerleştirme Tercihi"
  2123. msgctxt "travel_retract_before_outer_wall label"
  2124. msgid "Retract Before Outer Wall"
  2125. msgstr "Dış Duvardan Önce Geri Çek"
  2126. msgctxt "retract_at_layer_change label"
  2127. msgid "Retract at Layer Change"
  2128. msgstr "Katman Değişimindeki Geri Çekme"
  2129. msgctxt "retraction_enable description"
  2130. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2131. msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker."
  2132. msgctxt "wipe_retraction_enable description"
  2133. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2134. msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker."
  2135. msgctxt "retract_at_layer_change description"
  2136. msgid "Retract the filament when the nozzle is moving to the next layer."
  2137. msgstr "Nozül bir sonraki katmana doğru hareket ettiğinde filamanı geri çekin."
  2138. msgctxt "retraction_amount label"
  2139. msgid "Retraction Distance"
  2140. msgstr "Geri Çekme Mesafesi"
  2141. msgctxt "retraction_extra_prime_amount label"
  2142. msgid "Retraction Extra Prime Amount"
  2143. msgstr "Geri Çekme Sırasındaki İlave Astar Miktarı"
  2144. msgctxt "retraction_min_travel label"
  2145. msgid "Retraction Minimum Travel"
  2146. msgstr "Minimum Geri Çekme Hareketi"
  2147. msgctxt "retraction_prime_speed label"
  2148. msgid "Retraction Prime Speed"
  2149. msgstr "Geri Çekme Sırasındaki Astar Hızı"
  2150. msgctxt "retraction_retract_speed label"
  2151. msgid "Retraction Retract Speed"
  2152. msgstr "Geri Çekme Sırasındaki Çekim Hızı"
  2153. msgctxt "retraction_speed label"
  2154. msgid "Retraction Speed"
  2155. msgstr "Geri Çekme Hızı"
  2156. msgctxt "z_seam_position option right"
  2157. msgid "Right"
  2158. msgstr "Sağ"
  2159. msgctxt "machine_scale_fan_speed_zero_to_one label"
  2160. msgid "Scale Fan Speed To 0-1"
  2161. msgstr "Fan Hızını 0 - 1 Arasında Ölçeklendir"
  2162. msgctxt "machine_scale_fan_speed_zero_to_one description"
  2163. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  2164. msgstr "Fan hızını 0 - 256 arasında değil 0 - 1 arasında ölçeklendirin."
  2165. msgctxt "material_shrinkage_percentage label"
  2166. msgid "Scaling Factor Shrinkage Compensation"
  2167. msgstr "Ölçekleme Faktörü Büzülme Telafisi"
  2168. msgctxt "support_meshes_present label"
  2169. msgid "Scene Has Support Meshes"
  2170. msgstr "Sahnede Destek Örgüsü Var"
  2171. msgctxt "z_seam_corner label"
  2172. msgid "Seam Corner Preference"
  2173. msgstr "Dikiş Köşesi Tercihi"
  2174. msgctxt "draft_shield_height_limitation description"
  2175. 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."
  2176. 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."
  2177. msgctxt "dual description"
  2178. msgid "Settings used for printing with multiple extruders."
  2179. msgstr "Çoklu ekstruderler ile yapılan yazdırmalar için kullanılan ayarlar."
  2180. msgctxt "command_line_settings description"
  2181. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  2182. msgstr "Sadece Cura ön ucundan CuraEngine istenmediğinde kullanılan ayarlar."
  2183. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  2184. msgid "Shared Nozzle Initial Retraction"
  2185. msgstr "Paylaşılan Nozül İlk Geri Çekme"
  2186. msgctxt "z_seam_type option sharpest_corner"
  2187. msgid "Sharpest Corner"
  2188. msgstr "En Keskin Köşe"
  2189. msgctxt "shell description"
  2190. msgid "Shell"
  2191. msgstr "Kovan"
  2192. msgctxt "z_seam_type option shortest"
  2193. msgid "Shortest"
  2194. msgstr "En kısa"
  2195. msgctxt "machine_show_variants label"
  2196. msgid "Show Machine Variants"
  2197. msgstr "Makine Varyantlarını Göster"
  2198. msgctxt "skin_edge_support_layers label"
  2199. msgid "Skin Edge Support Layers"
  2200. msgstr "Kaplamanın Kenar Desteği Katmanları"
  2201. msgctxt "skin_edge_support_thickness label"
  2202. msgid "Skin Edge Support Thickness"
  2203. msgstr "Kaplamanın Kenar Desteği Kalınlığı"
  2204. msgctxt "expand_skins_expand_distance label"
  2205. msgid "Skin Expand Distance"
  2206. msgstr "Yüzey Genişleme Mesafesi"
  2207. msgctxt "skin_overlap_mm label"
  2208. msgid "Skin Overlap"
  2209. msgstr "Yüzey Çakışması"
  2210. msgctxt "skin_overlap label"
  2211. msgid "Skin Overlap Percentage"
  2212. msgstr "Yüzey Çakışma Oranı"
  2213. msgctxt "skin_preshrink label"
  2214. msgid "Skin Removal Width"
  2215. msgstr "Yüzey Kaldırma Genişliği"
  2216. msgctxt "min_skin_width_for_expansion description"
  2217. 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."
  2218. 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."
  2219. msgctxt "support_zag_skip_count description"
  2220. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  2221. msgstr "Destek yapısının daha kolay kırılması için her N bağlantı hattında bir zikzak atlayın."
  2222. msgctxt "support_skip_some_zags description"
  2223. 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."
  2224. 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."
  2225. msgctxt "adhesion_type option skirt"
  2226. msgid "Skirt"
  2227. msgstr "Etek"
  2228. msgctxt "skirt_gap label"
  2229. msgid "Skirt Distance"
  2230. msgstr "Etek Mesafesi"
  2231. msgctxt "skirt_height label"
  2232. msgid "Skirt Height"
  2233. msgstr "Etek Yüksekliği"
  2234. msgctxt "skirt_line_count label"
  2235. msgid "Skirt Line Count"
  2236. msgstr "Etek Hattı Sayısı"
  2237. msgctxt "acceleration_skirt_brim label"
  2238. msgid "Skirt/Brim Acceleration"
  2239. msgstr "Etek/Kenar İvmesi"
  2240. msgctxt "skirt_brim_extruder_nr label"
  2241. msgid "Skirt/Brim Extruder"
  2242. msgstr "Etek/Kenar Ekstrüderi"
  2243. msgctxt "skirt_brim_material_flow label"
  2244. msgid "Skirt/Brim Flow"
  2245. msgstr "Etek/Kenar Akışı"
  2246. msgctxt "jerk_skirt_brim label"
  2247. msgid "Skirt/Brim Jerk"
  2248. msgstr "Etek/Kenar İvmesi Değişimi"
  2249. msgctxt "skirt_brim_line_width label"
  2250. msgid "Skirt/Brim Line Width"
  2251. msgstr "Etek/Kenar Hattı Genişliği"
  2252. msgctxt "skirt_brim_minimal_length label"
  2253. msgid "Skirt/Brim Minimum Length"
  2254. msgstr "Minimum Etek/Kenar Uzunluğu"
  2255. msgctxt "skirt_brim_speed label"
  2256. msgid "Skirt/Brim Speed"
  2257. msgstr "Etek/Kenar Hızı"
  2258. msgctxt "slicing_tolerance label"
  2259. msgid "Slicing Tolerance"
  2260. msgstr "Dilimleme Toleransı"
  2261. msgctxt "small_feature_speed_factor_0 label"
  2262. msgid "Small Feature Initial Layer Speed"
  2263. msgstr "Küçük Özellik İlk Katman Hızı"
  2264. msgctxt "small_feature_max_length label"
  2265. msgid "Small Feature Max Length"
  2266. msgstr "Maksimum Küçük Özellik Uzunluğu"
  2267. msgctxt "small_feature_speed_factor label"
  2268. msgid "Small Feature Speed"
  2269. msgstr "Küçük Özellik Hızı"
  2270. msgctxt "small_hole_max_size label"
  2271. msgid "Small Hole Max Size"
  2272. msgstr "Maksimum Küçük Delik Boyutu"
  2273. msgctxt "cool_min_temperature label"
  2274. msgid "Small Layer Printing Temperature"
  2275. msgstr "Küçük Katman Yazdırma Sıcaklığı"
  2276. msgctxt "small_skin_width label"
  2277. msgid "Small Top/Bottom Width"
  2278. msgstr "Küçük Üst/​Alt Genişlik"
  2279. msgctxt "small_feature_speed_factor_0 description"
  2280. 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."
  2281. 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."
  2282. msgctxt "small_feature_speed_factor description"
  2283. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  2284. 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."
  2285. msgctxt "small_skin_width description"
  2286. msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
  2287. msgstr "Küçük üst/alt bölgeler varsayılan üst/alt deseni yerine duvarlarla doldurulur. Bu, sarsıntılı hareketlerden kaçınmaya yardımcı olur."
  2288. msgctxt "brim_smart_ordering label"
  2289. msgid "Smart Brim"
  2290. msgstr "Akıllı Kenar"
  2291. msgctxt "z_seam_corner option z_seam_corner_weighted"
  2292. msgid "Smart Hiding"
  2293. msgstr "Akıllı Gizleme"
  2294. msgctxt "smooth_spiralized_contours label"
  2295. msgid "Smooth Spiralized Contours"
  2296. msgstr "Helezon Şeklinde Düzeltme"
  2297. msgctxt "smooth_spiralized_contours description"
  2298. 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."
  2299. 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."
  2300. msgctxt "retraction_extra_prime_amount description"
  2301. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2302. msgstr "Hareket sırasında bazı malzemeler eksilebilir, bu malzemeler burada telafi edebilir."
  2303. msgctxt "wipe_retraction_extra_prime_amount description"
  2304. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  2305. msgstr "Sürme hareketi sırasında bazı malzemeler eksilebilir; bu malzemeler burada telafi edebilir."
  2306. msgctxt "blackmagic label"
  2307. msgid "Special Modes"
  2308. msgstr "Özel Modlar"
  2309. msgctxt "speed description"
  2310. msgid "Speed"
  2311. msgstr "Hız"
  2312. msgctxt "speed label"
  2313. msgid "Speed"
  2314. msgstr "Hız"
  2315. msgctxt "wipe_hop_speed description"
  2316. msgid "Speed to move the z-axis during the hop."
  2317. msgstr "Sıçrama sırasında z eksenini hareket ettirmek için gerekli hız."
  2318. msgctxt "magic_spiralize label"
  2319. msgid "Spiralize Outer Contour"
  2320. msgstr "Spiral Dış Çevre"
  2321. msgctxt "magic_spiralize description"
  2322. 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."
  2323. 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."
  2324. msgctxt "material_standby_temperature label"
  2325. msgid "Standby Temperature"
  2326. msgstr "Bekleme Sıcaklığı"
  2327. msgctxt "machine_start_gcode label"
  2328. msgid "Start G-code"
  2329. msgstr "G-code’u Başlat"
  2330. msgctxt "z_seam_type description"
  2331. 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."
  2332. 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."
  2333. msgctxt "machine_steps_per_mm_e label"
  2334. msgid "Steps per Millimeter (E)"
  2335. msgstr "Milimetre Başına Adım (E)"
  2336. msgctxt "machine_steps_per_mm_x label"
  2337. msgid "Steps per Millimeter (X)"
  2338. msgstr "Milimetre Başına Adım (X)"
  2339. msgctxt "machine_steps_per_mm_y label"
  2340. msgid "Steps per Millimeter (Y)"
  2341. msgstr "Milimetre Başına Adım (Y)"
  2342. msgctxt "machine_steps_per_mm_z label"
  2343. msgid "Steps per Millimeter (Z)"
  2344. msgstr "Milimetre Başına Adım (Z)"
  2345. msgctxt "support description"
  2346. msgid "Support"
  2347. msgstr "Destek"
  2348. msgctxt "support label"
  2349. msgid "Support"
  2350. msgstr "Destek"
  2351. msgctxt "acceleration_support label"
  2352. msgid "Support Acceleration"
  2353. msgstr "Destek İvmesi"
  2354. msgctxt "support_bottom_distance label"
  2355. msgid "Support Bottom Distance"
  2356. msgstr "Destek Alt Mesafesi"
  2357. msgctxt "support_bottom_wall_count label"
  2358. msgid "Support Bottom Wall Line Count"
  2359. msgstr "Destek Alt Duvar Hattı Sayısı"
  2360. msgctxt "support_brim_line_count label"
  2361. msgid "Support Brim Line Count"
  2362. msgstr "Destek Kenar Hattı Sayısı"
  2363. msgctxt "support_brim_width label"
  2364. msgid "Support Brim Width"
  2365. msgstr "Destek Kenar Genişliği"
  2366. msgctxt "support_zag_skip_count label"
  2367. msgid "Support Chunk Line Count"
  2368. msgstr "Destek Parçası Hattı Sayısı"
  2369. msgctxt "support_skip_zag_per_mm label"
  2370. msgid "Support Chunk Size"
  2371. msgstr "Destek Parçasının Boyutu"
  2372. msgctxt "support_infill_rate label"
  2373. msgid "Support Density"
  2374. msgstr "Destek Yoğunluğu"
  2375. msgctxt "support_xy_overrides_z label"
  2376. msgid "Support Distance Priority"
  2377. msgstr "Destek Mesafesi Önceliği"
  2378. msgctxt "support_extruder_nr label"
  2379. msgid "Support Extruder"
  2380. msgstr "Destek Ekstruderi"
  2381. msgctxt "acceleration_support_bottom label"
  2382. msgid "Support Floor Acceleration"
  2383. msgstr "Destek Zemini İvmesi"
  2384. msgctxt "support_bottom_density label"
  2385. msgid "Support Floor Density"
  2386. msgstr "Destek Zemini Yoğunluğu"
  2387. msgctxt "support_bottom_extruder_nr label"
  2388. msgid "Support Floor Extruder"
  2389. msgstr "Destek Zemini Ekstrüderi"
  2390. msgctxt "support_bottom_material_flow label"
  2391. msgid "Support Floor Flow"
  2392. msgstr "Destek Zemin Akışı"
  2393. msgctxt "support_bottom_offset label"
  2394. msgid "Support Floor Horizontal Expansion"
  2395. msgstr "Destek Zemini Yatay Büyüme"
  2396. msgctxt "jerk_support_bottom label"
  2397. msgid "Support Floor Jerk"
  2398. msgstr "Destek Zemini Sarsıntısı"
  2399. msgctxt "support_bottom_angles label"
  2400. msgid "Support Floor Line Directions"
  2401. msgstr "Destek Zemin Hattı Yönleri"
  2402. msgctxt "support_bottom_line_distance label"
  2403. msgid "Support Floor Line Distance"
  2404. msgstr "Destek Zemini Çizgi Mesafesi"
  2405. msgctxt "support_bottom_line_width label"
  2406. msgid "Support Floor Line Width"
  2407. msgstr "Destek Zemini Çizgi Genişliği"
  2408. msgctxt "support_bottom_pattern label"
  2409. msgid "Support Floor Pattern"
  2410. msgstr "Destek Zemini Deseni"
  2411. msgctxt "speed_support_bottom label"
  2412. msgid "Support Floor Speed"
  2413. msgstr "Destek Zemini Hızı"
  2414. msgctxt "support_bottom_height label"
  2415. msgid "Support Floor Thickness"
  2416. msgstr "Destek Zemini Kalınlığı"
  2417. msgctxt "support_material_flow label"
  2418. msgid "Support Flow"
  2419. msgstr "Destek Akışı"
  2420. msgctxt "support_offset label"
  2421. msgid "Support Horizontal Expansion"
  2422. msgstr "Destek Yatay Büyüme"
  2423. msgctxt "acceleration_support_infill label"
  2424. msgid "Support Infill Acceleration"
  2425. msgstr "Destek Dolgusu İvmesi"
  2426. msgctxt "support_infill_extruder_nr label"
  2427. msgid "Support Infill Extruder"
  2428. msgstr "Destek Dolgu Ekstruderi"
  2429. msgctxt "jerk_support_infill label"
  2430. msgid "Support Infill Jerk"
  2431. msgstr "Destek Dolgu İvmesi Değişimi"
  2432. msgctxt "support_infill_sparse_thickness label"
  2433. msgid "Support Infill Layer Thickness"
  2434. msgstr "Destek Dolgusu Katmanı Kalınlığı"
  2435. msgctxt "support_infill_angles label"
  2436. msgid "Support Infill Line Directions"
  2437. msgstr "Destek Dolgu Hattı Yönü"
  2438. msgctxt "speed_support_infill label"
  2439. msgid "Support Infill Speed"
  2440. msgstr "Destek Dolgu Hızı"
  2441. msgctxt "acceleration_support_interface label"
  2442. msgid "Support Interface Acceleration"
  2443. msgstr "Destek Arayüzü İvmesi"
  2444. msgctxt "support_interface_density label"
  2445. msgid "Support Interface Density"
  2446. msgstr "Destek Arayüzü Yoğunluğu"
  2447. msgctxt "support_interface_extruder_nr label"
  2448. msgid "Support Interface Extruder"
  2449. msgstr "Destek Arayüz Ekstruderi"
  2450. msgctxt "support_interface_material_flow label"
  2451. msgid "Support Interface Flow"
  2452. msgstr "Destek Ara Yüzeyi Akışı"
  2453. msgctxt "support_interface_offset label"
  2454. msgid "Support Interface Horizontal Expansion"
  2455. msgstr "Destek Arayüzü Yatay Büyüme"
  2456. msgctxt "jerk_support_interface label"
  2457. msgid "Support Interface Jerk"
  2458. msgstr "Destek Arayüz Salınımı"
  2459. msgctxt "support_interface_angles label"
  2460. msgid "Support Interface Line Directions"
  2461. msgstr "Destek Arabirim Hattı Yönleri"
  2462. msgctxt "support_interface_line_width label"
  2463. msgid "Support Interface Line Width"
  2464. msgstr "Destek Arayüz Hattı Genişliği"
  2465. msgctxt "support_interface_pattern label"
  2466. msgid "Support Interface Pattern"
  2467. msgstr "Destek Arayüzü Şekli"
  2468. msgctxt "support_interface_priority label"
  2469. msgid "Support Interface Priority"
  2470. msgstr "Destek Arayüzü Önceliği"
  2471. msgctxt "support_interface_skip_height label"
  2472. msgid "Support Interface Resolution"
  2473. msgstr "Destek Arayüz Çözünürlüğü"
  2474. msgctxt "speed_support_interface label"
  2475. msgid "Support Interface Speed"
  2476. msgstr "Destek Arayüzü Hızı"
  2477. msgctxt "support_interface_height label"
  2478. msgid "Support Interface Thickness"
  2479. msgstr "Destek Arayüzü Kalınlığı"
  2480. msgctxt "support_interface_wall_count label"
  2481. msgid "Support Interface Wall Line Count"
  2482. msgstr "Destek Arayüzü Duvar Hattı Sayısı"
  2483. msgctxt "jerk_support label"
  2484. msgid "Support Jerk"
  2485. msgstr "Destek Salınımı"
  2486. msgctxt "support_join_distance label"
  2487. msgid "Support Join Distance"
  2488. msgstr "Destek Birleşme Mesafesi"
  2489. msgctxt "support_line_distance label"
  2490. msgid "Support Line Distance"
  2491. msgstr "Destek Hattı Mesafesi"
  2492. msgctxt "support_line_width label"
  2493. msgid "Support Line Width"
  2494. msgstr "Destek Hattı Genişliği"
  2495. msgctxt "support_mesh label"
  2496. msgid "Support Mesh"
  2497. msgstr "Destek Örgüsü"
  2498. msgctxt "support_angle label"
  2499. msgid "Support Overhang Angle"
  2500. msgstr "Destek Çıkıntı Açısı"
  2501. msgctxt "support_pattern label"
  2502. msgid "Support Pattern"
  2503. msgstr "Destek Şekli"
  2504. msgctxt "support_type label"
  2505. msgid "Support Placement"
  2506. msgstr "Destek Yerleştirme"
  2507. msgctxt "acceleration_support_roof label"
  2508. msgid "Support Roof Acceleration"
  2509. msgstr "Destek Çatısı İvmesi"
  2510. msgctxt "support_roof_density label"
  2511. msgid "Support Roof Density"
  2512. msgstr "Destek Çatısı Yoğunluğu"
  2513. msgctxt "support_roof_extruder_nr label"
  2514. msgid "Support Roof Extruder"
  2515. msgstr "Destek Çatısı Ekstrüderi"
  2516. msgctxt "support_roof_material_flow label"
  2517. msgid "Support Roof Flow"
  2518. msgstr "Destek Çatı Akışı"
  2519. msgctxt "support_roof_offset label"
  2520. msgid "Support Roof Horizontal Expansion"
  2521. msgstr "Destek Çatısı Yatay Büyüme"
  2522. msgctxt "jerk_support_roof label"
  2523. msgid "Support Roof Jerk"
  2524. msgstr "Destek Çatısı Sarsıntısı"
  2525. msgctxt "support_roof_angles label"
  2526. msgid "Support Roof Line Directions"
  2527. msgstr "Destek Çatı Hattı Yönleri"
  2528. msgctxt "support_roof_line_distance label"
  2529. msgid "Support Roof Line Distance"
  2530. msgstr "Destek Çatısı Çizgi Mesafesi"
  2531. msgctxt "support_roof_line_width label"
  2532. msgid "Support Roof Line Width"
  2533. msgstr "Destek Çatısı Çizgi Genişliği"
  2534. msgctxt "support_roof_pattern label"
  2535. msgid "Support Roof Pattern"
  2536. msgstr "Destek Çatısı Deseni"
  2537. msgctxt "speed_support_roof label"
  2538. msgid "Support Roof Speed"
  2539. msgstr "Destek Çatısı Hızı"
  2540. msgctxt "support_roof_height label"
  2541. msgid "Support Roof Thickness"
  2542. msgstr "Destek Tavanı Kalınlığı"
  2543. msgctxt "support_roof_wall_count label"
  2544. msgid "Support Roof Wall Line Count"
  2545. msgstr "Destek Çatı Duvar Hattı Sayısı"
  2546. msgctxt "speed_support label"
  2547. msgid "Support Speed"
  2548. msgstr "Destek Hızı"
  2549. msgctxt "support_bottom_stair_step_height label"
  2550. msgid "Support Stair Step Height"
  2551. msgstr "Destek Merdiveni Basamak Yüksekliği"
  2552. msgctxt "support_bottom_stair_step_width label"
  2553. msgid "Support Stair Step Maximum Width"
  2554. msgstr "Destek Merdiveni Maksimum Basamak Genişliği"
  2555. msgctxt "support_bottom_stair_step_min_slope label"
  2556. msgid "Support Stair Step Minimum Slope Angle"
  2557. msgstr "Basamak Desteğinin Minimum Eğim Açısı"
  2558. msgctxt "support_structure label"
  2559. msgid "Support Structure"
  2560. msgstr "Destek Yapısı"
  2561. msgctxt "support_top_distance label"
  2562. msgid "Support Top Distance"
  2563. msgstr "Destek Üst Mesafesi"
  2564. msgctxt "support_wall_count label"
  2565. msgid "Support Wall Line Count"
  2566. msgstr "Duvar Hattı Sayısını Destekle"
  2567. msgctxt "support_xy_distance label"
  2568. msgid "Support X/Y Distance"
  2569. msgstr "Destek X/Y Mesafesi"
  2570. msgctxt "support_z_distance label"
  2571. msgid "Support Z Distance"
  2572. msgstr "Destek Z Mesafesi"
  2573. msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
  2574. msgid "Support lines preferred"
  2575. msgstr "Tercih edilen destek hatları"
  2576. msgctxt "support_interface_priority option support_area_overwrite_interface_area"
  2577. msgid "Support preferred"
  2578. msgstr "Tercih edilen destek"
  2579. msgctxt "support_supported_skin_fan_speed label"
  2580. msgid "Supported Skin Fan Speed"
  2581. msgstr "Desteklenen Yüzey Fan Hızı"
  2582. msgctxt "magic_mesh_surface_mode option surface"
  2583. msgid "Surface"
  2584. msgstr "Yüzey"
  2585. msgctxt "material_surface_energy label"
  2586. msgid "Surface Energy"
  2587. msgstr "Yüzey Enerjisi"
  2588. msgctxt "magic_mesh_surface_mode label"
  2589. msgid "Surface Mode"
  2590. msgstr "Yüzey Modu"
  2591. msgctxt "material_adhesion_tendency description"
  2592. msgid "Surface adhesion tendency."
  2593. msgstr "Yüzeye yapışma eğilimi."
  2594. msgctxt "material_surface_energy description"
  2595. msgid "Surface energy."
  2596. msgstr "Yüzey enerjisi."
  2597. msgctxt "brim_smart_ordering description"
  2598. msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
  2599. msgstr "En içteki ve ikinci en içteki kenar çizgilerinin baskı sırasını değiştirin. Bu, kenarın çıkarılmasını kolaylaştırır."
  2600. msgctxt "alternate_carve_order description"
  2601. 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."
  2602. 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."
  2603. msgctxt "adaptive_layer_height_threshold description"
  2604. 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."
  2605. 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."
  2606. msgctxt "layer_start_x description"
  2607. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2608. msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun X koordinatı."
  2609. msgctxt "z_seam_x description"
  2610. msgid "The X coordinate of the position near where to start printing each part in a layer."
  2611. msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun X koordinatı."
  2612. msgctxt "extruder_prime_pos_x description"
  2613. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  2614. msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı."
  2615. msgctxt "layer_start_y description"
  2616. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2617. msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun Y koordinatı."
  2618. msgctxt "z_seam_y description"
  2619. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  2620. msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun Y koordinatı."
  2621. msgctxt "extruder_prime_pos_y description"
  2622. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  2623. msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı."
  2624. msgctxt "extruder_prime_pos_z description"
  2625. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  2626. msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı."
  2627. msgctxt "acceleration_print_layer_0 description"
  2628. msgid "The acceleration during the printing of the initial layer."
  2629. msgstr "İlk katmanın yazdırıldığı ivme."
  2630. msgctxt "acceleration_layer_0 description"
  2631. msgid "The acceleration for the initial layer."
  2632. msgstr "İlk katman için belirlenen ivme."
  2633. msgctxt "acceleration_travel_layer_0 description"
  2634. msgid "The acceleration for travel moves in the initial layer."
  2635. msgstr "İlk katmandaki hareket hamlelerinin ivmesi."
  2636. msgctxt "jerk_travel_layer_0 description"
  2637. msgid "The acceleration for travel moves in the initial layer."
  2638. msgstr "İlk katmandaki hareket hamlelerinin ivmesi."
  2639. msgctxt "acceleration_wall_x description"
  2640. msgid "The acceleration with which all inner walls are printed."
  2641. msgstr "İç duvarların yazdırıldığı ivme."
  2642. msgctxt "acceleration_infill description"
  2643. msgid "The acceleration with which infill is printed."
  2644. msgstr "Dolgunun yazdırıldığı ivme."
  2645. msgctxt "acceleration_ironing description"
  2646. msgid "The acceleration with which ironing is performed."
  2647. msgstr "Ütülemenin gerçekleştiği ivme."
  2648. msgctxt "acceleration_print description"
  2649. msgid "The acceleration with which printing happens."
  2650. msgstr "Yazdırmanın gerçekleştiği ivme."
  2651. msgctxt "raft_base_acceleration description"
  2652. msgid "The acceleration with which the base raft layer is printed."
  2653. msgstr "Taban radye katmanının yazdırıldığı ivme."
  2654. msgctxt "acceleration_support_bottom description"
  2655. 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."
  2656. msgstr "Destek zemininin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir."
  2657. msgctxt "acceleration_support_infill description"
  2658. msgid "The acceleration with which the infill of support is printed."
  2659. msgstr "Destek dolgusunun yazdırıldığı ivme."
  2660. msgctxt "raft_interface_acceleration description"
  2661. msgid "The acceleration with which the middle raft layer is printed."
  2662. msgstr "Orta radye katmanının yazdırıldığı ivme."
  2663. msgctxt "acceleration_wall_0 description"
  2664. msgid "The acceleration with which the outermost walls are printed."
  2665. msgstr "En dış duvarların yazdırıldığı ivme."
  2666. msgctxt "acceleration_prime_tower description"
  2667. msgid "The acceleration with which the prime tower is printed."
  2668. msgstr "İlk direğin yazdırıldığı ivme."
  2669. msgctxt "raft_acceleration description"
  2670. msgid "The acceleration with which the raft is printed."
  2671. msgstr "Radyenin yazdırıldığı ivme."
  2672. msgctxt "acceleration_support_interface description"
  2673. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  2674. 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."
  2675. msgctxt "acceleration_support_roof description"
  2676. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  2677. 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."
  2678. msgctxt "acceleration_skirt_brim description"
  2679. 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."
  2680. 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."
  2681. msgctxt "acceleration_support description"
  2682. msgid "The acceleration with which the support structure is printed."
  2683. msgstr "Destek yapısının yazdırıldığı ivme."
  2684. msgctxt "raft_surface_acceleration description"
  2685. msgid "The acceleration with which the top raft layers are printed."
  2686. msgstr "Üst radye katmanların yazdırıldığı ivme."
  2687. msgctxt "acceleration_wall description"
  2688. msgid "The acceleration with which the walls are printed."
  2689. msgstr "Duvarların yazdırıldığı ivme."
  2690. msgctxt "acceleration_roofing description"
  2691. msgid "The acceleration with which top surface skin layers are printed."
  2692. msgstr "Üst yüzey katmanların yazdırıldığı ivme."
  2693. msgctxt "acceleration_topbottom description"
  2694. msgid "The acceleration with which top/bottom layers are printed."
  2695. msgstr "Üst/alt katmanların yazdırıldığı ivme."
  2696. msgctxt "acceleration_travel description"
  2697. msgid "The acceleration with which travel moves are made."
  2698. msgstr "Hareket hamlelerinin ivmesi."
  2699. msgctxt "ironing_flow description"
  2700. 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."
  2701. 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."
  2702. msgctxt "infill_overlap description"
  2703. 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."
  2704. 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."
  2705. msgctxt "infill_overlap_mm description"
  2706. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  2707. msgstr "Dolgu ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar."
  2708. msgctxt "switch_extruder_retraction_amount description"
  2709. 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."
  2710. 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."
  2711. msgctxt "machine_nozzle_expansion_angle description"
  2712. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  2713. msgstr "Yatay düzlem ve nozül ucunun sağ üzerinde bulunan konik parça arasındaki açı."
  2714. msgctxt "support_tower_roof_angle description"
  2715. 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."
  2716. 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."
  2717. msgctxt "mold_angle description"
  2718. 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."
  2719. 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."
  2720. msgctxt "support_tree_branch_diameter_angle description"
  2721. 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."
  2722. 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."
  2723. msgctxt "support_conical_angle description"
  2724. 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."
  2725. 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."
  2726. msgctxt "magic_fuzzy_skin_point_density description"
  2727. 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."
  2728. 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."
  2729. msgctxt "magic_fuzzy_skin_point_dist description"
  2730. 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."
  2731. 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."
  2732. msgctxt "machine_acceleration description"
  2733. msgid "The default acceleration of print head movement."
  2734. msgstr "Yazıcı başlığı hareketinin varsayılan ivmesi."
  2735. msgctxt "default_material_print_temperature description"
  2736. 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"
  2737. 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"
  2738. msgctxt "default_material_bed_temperature description"
  2739. 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"
  2740. 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"
  2741. msgctxt "bridge_skin_density description"
  2742. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2743. 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."
  2744. msgctxt "support_bottom_density description"
  2745. 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."
  2746. 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."
  2747. msgctxt "support_roof_density description"
  2748. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2749. 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."
  2750. msgctxt "bridge_skin_density_2 description"
  2751. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2752. 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."
  2753. msgctxt "bridge_skin_density_3 description"
  2754. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2755. 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."
  2756. msgctxt "machine_depth description"
  2757. msgid "The depth (Y-direction) of the printable area."
  2758. msgstr "Yazdırılabilir alan derinliği (Y yönü)."
  2759. msgctxt "support_tower_diameter description"
  2760. msgid "The diameter of a special tower."
  2761. msgstr "Özel bir direğin çapı."
  2762. msgctxt "support_tree_branch_diameter description"
  2763. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2764. 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."
  2765. msgctxt "support_tree_tip_diameter description"
  2766. msgid "The diameter of the top of the tip of the branches of tree support."
  2767. msgstr "Ağaç desteğinin dallarının ucunun en üstteki çapı."
  2768. msgctxt "machine_feeder_wheel_diameter description"
  2769. msgid "The diameter of the wheel that drives the material in the feeder."
  2770. msgstr "Besleyiciye malzeme veren çarkın çapı."
  2771. msgctxt "support_tree_max_diameter description"
  2772. msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate."
  2773. msgstr "Ağaç desteğinin en geniş dallarının çapı. Daha kalın bir gövde daha sağlamdır; daha ince bir gövde, yapı plakasında daha az yer kaplar."
  2774. msgctxt "adaptive_layer_height_variation_step description"
  2775. msgid "The difference in height of the next layer height compared to the previous one."
  2776. msgstr "Bir önceki ve bir sonraki katman yüksekliği arasındaki yükseklik farkı."
  2777. msgctxt "ironing_line_spacing description"
  2778. msgid "The distance between the lines of ironing."
  2779. msgstr "Ütüleme hatları arasında bulunan mesafe."
  2780. msgctxt "travel_avoid_distance description"
  2781. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2782. msgstr "Hareket esnasında atlama yaparken nozül ve daha önce yazdırılmış olan bölümler arasındaki mesafe."
  2783. msgctxt "raft_base_line_spacing description"
  2784. 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."
  2785. 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."
  2786. msgctxt "raft_interface_line_spacing description"
  2787. 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."
  2788. 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."
  2789. msgctxt "raft_surface_line_spacing description"
  2790. 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."
  2791. 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."
  2792. msgctxt "interlocking_depth description"
  2793. msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
  2794. msgstr "İç içe geçen yapı oluşturmak için modeller arası sınırdan hücre sayısı olarak ölçülen mesafe. Çok az hücre kullanmak zayıf yapışmaya neden olur."
  2795. msgctxt "brim_width description"
  2796. 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."
  2797. 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."
  2798. msgctxt "interlocking_boundary_avoidance description"
  2799. msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
  2800. msgstr "İç içe geçen yapıların oluşturulmayacağı bir modelin dışından hücre cinsinden ölçülen mesafe."
  2801. msgctxt "machine_heat_zone_length description"
  2802. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  2803. msgstr "Nozülden gelen ısının filamana aktarıldığı nozül ucuna olan mesafe."
  2804. msgctxt "bottom_skin_expand_distance description"
  2805. 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."
  2806. 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."
  2807. msgctxt "expand_skins_expand_distance description"
  2808. 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."
  2809. 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."
  2810. msgctxt "top_skin_expand_distance description"
  2811. 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."
  2812. 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."
  2813. msgctxt "wipe_move_distance description"
  2814. msgid "The distance to move the head back and forth across the brush."
  2815. msgstr "Başlığı fırçada ileri ve geri hareket ettirme mesafesi."
  2816. msgctxt "lightning_infill_prune_angle description"
  2817. 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."
  2818. 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."
  2819. msgctxt "material_extrusion_cool_down_speed description"
  2820. 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."
  2821. 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."
  2822. msgctxt "support_extruder_nr_layer_0 description"
  2823. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2824. msgstr "Destek dolgusunun ilk katmanı için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır."
  2825. msgctxt "raft_base_extruder_nr description"
  2826. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  2827. msgstr "Radyenin ilk katmanının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır."
  2828. msgctxt "support_bottom_extruder_nr description"
  2829. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2830. msgstr "Desteğin zemininin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır."
  2831. msgctxt "support_infill_extruder_nr description"
  2832. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2833. msgstr "Destek dolgusu için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır."
  2834. msgctxt "raft_interface_extruder_nr description"
  2835. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  2836. msgstr "Radyenin orta katmanının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır."
  2837. msgctxt "support_interface_extruder_nr description"
  2838. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2839. 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."
  2840. msgctxt "support_roof_extruder_nr description"
  2841. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2842. 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."
  2843. msgctxt "skirt_brim_extruder_nr description"
  2844. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  2845. msgstr "Etek veya kenar baskısı için kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır."
  2846. msgctxt "adhesion_extruder_nr description"
  2847. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  2848. msgstr "Etek/kenar/radye yazdırmak için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır."
  2849. msgctxt "support_extruder_nr description"
  2850. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2851. msgstr "Destek için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır."
  2852. msgctxt "raft_surface_extruder_nr description"
  2853. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  2854. msgstr "Radyenin üst katmanlarının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır."
  2855. msgctxt "infill_extruder_nr description"
  2856. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  2857. msgstr "Dolgu yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır."
  2858. msgctxt "wall_x_extruder_nr description"
  2859. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  2860. msgstr "İç duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır."
  2861. msgctxt "wall_0_extruder_nr description"
  2862. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  2863. msgstr "Dış Duvarı yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır."
  2864. msgctxt "top_bottom_extruder_nr description"
  2865. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  2866. 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."
  2867. msgctxt "roofing_extruder_nr description"
  2868. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  2869. 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."
  2870. msgctxt "wall_extruder_nr description"
  2871. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  2872. msgstr "Duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır."
  2873. msgctxt "raft_base_fan_speed description"
  2874. msgid "The fan speed for the base raft layer."
  2875. msgstr "Radyenin taban katmanı için fan hızı."
  2876. msgctxt "raft_interface_fan_speed description"
  2877. msgid "The fan speed for the middle raft layer."
  2878. msgstr "Radyenin orta katmanı için fan hızı."
  2879. msgctxt "raft_fan_speed description"
  2880. msgid "The fan speed for the raft."
  2881. msgstr "Radye için fan hızı."
  2882. msgctxt "raft_surface_fan_speed description"
  2883. msgid "The fan speed for the top raft layers."
  2884. msgstr "Üst radye katmanları için fan hızı."
  2885. msgctxt "cross_infill_density_image description"
  2886. 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."
  2887. msgstr "Parlaklık değerlerinin, yazdırma dolgusunun ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu."
  2888. msgctxt "cross_support_density_image description"
  2889. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  2890. msgstr "Parlaklık değerlerinin, desteğin ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu."
  2891. msgctxt "speed_slowdown_layers description"
  2892. 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."
  2893. 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."
  2894. msgctxt "raft_airgap description"
  2895. 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."
  2896. 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."
  2897. msgctxt "machine_height description"
  2898. msgid "The height (Z-direction) of the printable area."
  2899. msgstr "Yazdırılabilir alan yüksekliği (Z yönü)."
  2900. msgctxt "mold_roof_height description"
  2901. msgid "The height above horizontal parts in your model which to print mold."
  2902. msgstr "Kalıp yazdıracak modelinizin yatay kısımlarının üzerindeki yükseklik."
  2903. msgctxt "cool_fan_full_at_height description"
  2904. 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."
  2905. 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."
  2906. msgctxt "gantry_height description"
  2907. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  2908. msgstr "Nozül ucu ve portal sistemi (X ve Y aksları) arasındaki yükseklik farkı."
  2909. msgctxt "machine_nozzle_head_distance description"
  2910. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  2911. msgstr "Nozül ucu ve yazıcı başlığının en alt parçası arasındaki yükseklik farkı."
  2912. msgctxt "retraction_hop_after_extruder_switch_height description"
  2913. msgid "The height difference when performing a Z Hop after extruder switch."
  2914. msgstr "Ekstruder değişiminden sonra Z Sıçraması yapılırken oluşan yükseklik farkı."
  2915. msgctxt "retraction_hop description"
  2916. msgid "The height difference when performing a Z Hop."
  2917. msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı."
  2918. msgctxt "wipe_hop_amount description"
  2919. msgid "The height difference when performing a Z Hop."
  2920. msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı."
  2921. msgctxt "layer_height description"
  2922. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  2923. 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."
  2924. msgctxt "gradual_infill_step_height description"
  2925. msgid "The height of infill of a given density before switching to half the density."
  2926. msgstr "Yoğunluğun yarısına inmeden önce verilen bir yoğunluktaki dolgunun yüksekliği."
  2927. msgctxt "gradual_support_infill_step_height description"
  2928. msgid "The height of support infill of a given density before switching to half the density."
  2929. msgstr "Yoğunluğun yarısına inmeden önce belirli bir yoğunluktaki destek dolgusunun yüksekliği."
  2930. msgctxt "interlocking_beam_layer_count description"
  2931. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  2932. msgstr "İç içe geçen yapı kirişlerinin katman sayısı olarak ölçülen yüksekliği. Daha az katman daha güçlüdür, ama kusurlara daha yatkındır."
  2933. msgctxt "interlocking_orientation description"
  2934. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  2935. msgstr "İç içe geçen yapı kirişlerinin katman sayısı olarak ölçülen yüksekliği. Daha az katman daha güçlüdür, ama kusurlara daha yatkındır."
  2936. msgctxt "layer_height_0 description"
  2937. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  2938. msgstr "İlk katmanın milimetre cinsinden yüksekliği. Kalın ilk katmanlar yapı levhasına yapışmayı kolaylaştırır."
  2939. msgctxt "support_bottom_stair_step_height description"
  2940. 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."
  2941. 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."
  2942. msgctxt "brim_gap description"
  2943. 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."
  2944. 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."
  2945. msgctxt "skirt_gap description"
  2946. msgid ""
  2947. "The horizontal distance between the skirt and the first layer of the print.\n"
  2948. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  2949. msgstr ""
  2950. "Baskının eteği ve ilk katmanı arasındaki yatay mesafe.\n"
  2951. "Minimum mesafedir. Bu mesafeden çok sayıda etek hattı dışarı doğru uzanır."
  2952. msgctxt "lightning_infill_straightening_angle description"
  2953. 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."
  2954. 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."
  2955. msgctxt "infill_offset_x description"
  2956. msgid "The infill pattern is moved this distance along the X axis."
  2957. msgstr "Dolgu şekli X ekseni boyunca bu mesafe kadar kaydırılır."
  2958. msgctxt "infill_offset_y description"
  2959. msgid "The infill pattern is moved this distance along the Y axis."
  2960. msgstr "Dolgu şekli Y ekseni boyunca bu mesafe kadar kaydırılır."
  2961. msgctxt "machine_nozzle_size description"
  2962. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  2963. msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin."
  2964. msgctxt "raft_base_jerk description"
  2965. msgid "The jerk with which the base raft layer is printed."
  2966. msgstr "Taban radye katmanının yazdırıldığı ivmesi değişimi."
  2967. msgctxt "raft_interface_jerk description"
  2968. msgid "The jerk with which the middle raft layer is printed."
  2969. msgstr "Orta radye katmanının yazdırıldığı salınım."
  2970. msgctxt "raft_jerk description"
  2971. msgid "The jerk with which the raft is printed."
  2972. msgstr "Radyenin yazdırıldığı salınım."
  2973. msgctxt "raft_surface_jerk description"
  2974. msgid "The jerk with which the top raft layers are printed."
  2975. msgstr "Üst radye katmanların yazdırıldığı salınım."
  2976. msgctxt "bottom_skin_preshrink description"
  2977. 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."
  2978. 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."
  2979. msgctxt "skin_preshrink description"
  2980. 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."
  2981. 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."
  2982. msgctxt "top_skin_preshrink description"
  2983. 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."
  2984. 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."
  2985. msgctxt "cool_fan_full_layer description"
  2986. 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."
  2987. 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."
  2988. msgctxt "cool_min_layer_time_fan_speed_max description"
  2989. 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."
  2990. 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."
  2991. msgctxt "retraction_amount description"
  2992. msgid "The length of material retracted during a retraction move."
  2993. msgstr "Geri çekme hareketi sırasında geri çekilen malzemenin uzunluğu."
  2994. msgctxt "machine_buildplate_type description"
  2995. msgid "The material of the build plate installed on the printer."
  2996. msgstr "Yazıcıya takılı yapı levhasının malzemesi."
  2997. msgctxt "adaptive_layer_height_variation description"
  2998. msgid "The maximum allowed height different from the base layer height."
  2999. msgstr "Taban katmanı yüksekliğine göre izin verilen azami yükseklik."
  3000. msgctxt "ooze_shield_angle description"
  3001. 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."
  3002. 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."
  3003. msgctxt "conical_overhang_angle description"
  3004. 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."
  3005. 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."
  3006. msgctxt "support_tree_angle description"
  3007. msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  3008. msgstr "Dalların modelin etrafında büyürken aldıkları maksimum açı. Daha dikey ve daha dengeli hale getirmek için daha düşük bir açı kullanın. Daha fazla erişim için daha yüksek bir açı kullanın."
  3009. msgctxt "conical_overhang_hole_size description"
  3010. 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."
  3011. 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."
  3012. msgctxt "meshfix_maximum_deviation description"
  3013. 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."
  3014. 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."
  3015. msgctxt "support_join_distance description"
  3016. 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."
  3017. 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."
  3018. msgctxt "flow_rate_max_extrusion_offset description"
  3019. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  3020. msgstr "Akış hızındaki değişiklikleri telafi etmek için filamentin hareket ettirileceği mm cinsinden maksimum mesafe."
  3021. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  3022. 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."
  3023. 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."
  3024. msgctxt "jerk_print_layer_0 description"
  3025. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  3026. msgstr "İlk katmanın yazdırıldığı maksimum anlık yazdırma hızı değişimi."
  3027. msgctxt "jerk_print description"
  3028. msgid "The maximum instantaneous velocity change of the print head."
  3029. msgstr "Yazıcı başlığının maksimum anlık hız değişimi."
  3030. msgctxt "jerk_ironing description"
  3031. msgid "The maximum instantaneous velocity change while performing ironing."
  3032. msgstr "Ütüleme sırasında oluşan maksimum anlık hız değişimi."
  3033. msgctxt "jerk_wall_x description"
  3034. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  3035. msgstr "Tüm iç duvarların yazdırıldığı maksimum anlık hız değişimi."
  3036. msgctxt "jerk_infill description"
  3037. msgid "The maximum instantaneous velocity change with which infill is printed."
  3038. msgstr "Dolgunun yazdırıldığı maksimum anlık hız değişimi."
  3039. msgctxt "jerk_support_bottom description"
  3040. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  3041. msgstr "Desteğin zeminlerinin yazdırıldığı maksimum anlık hız değişimi."
  3042. msgctxt "jerk_support_infill description"
  3043. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  3044. msgstr "Desteğin dolgusunun yazdırıldığı maksimum anlık hız değişimi."
  3045. msgctxt "jerk_wall_0 description"
  3046. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  3047. msgstr "En dıştaki duvarların yazdırıldığı maksimum anlık hız değişimi."
  3048. msgctxt "jerk_prime_tower description"
  3049. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  3050. msgstr "İlk direğin yazdırıldığı maksimum anlık hız değişimi."
  3051. msgctxt "jerk_support_interface description"
  3052. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  3053. msgstr "Desteğin çatıları ve zeminlerinin yazdırıldığı maksimum anlık hız değişimi."
  3054. msgctxt "jerk_support_roof description"
  3055. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  3056. msgstr "Desteğin çatılarının yazdırıldığı maksimum anlık hız değişimi."
  3057. msgctxt "jerk_skirt_brim description"
  3058. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  3059. msgstr "Etek ve kenarların yazdırıldığı maksimum anlık hız değişimi."
  3060. msgctxt "jerk_support description"
  3061. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  3062. msgstr "Destek yapısının yazdırıldığı maksimum anlık hız değişimi."
  3063. msgctxt "jerk_wall description"
  3064. msgid "The maximum instantaneous velocity change with which the walls are printed."
  3065. msgstr "Duvarların yazdırıldığı maksimum anlık hız değişimi."
  3066. msgctxt "jerk_roofing description"
  3067. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  3068. msgstr "Üst yüzey katmanların yazdırıldığı maksimum anlık hız değişimi."
  3069. msgctxt "jerk_topbottom description"
  3070. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  3071. msgstr "Üst/alt katmanların yazdırıldığı maksimum anlık hız değişimi."
  3072. msgctxt "jerk_travel description"
  3073. msgid "The maximum instantaneous velocity change with which travel moves are made."
  3074. msgstr "Hareket hamlelerinin yapıldığı maksimum anlık hız değişimi."
  3075. msgctxt "machine_max_feedrate_x description"
  3076. msgid "The maximum speed for the motor of the X-direction."
  3077. msgstr "X yönü motoru için maksimum hız."
  3078. msgctxt "machine_max_feedrate_y description"
  3079. msgid "The maximum speed for the motor of the Y-direction."
  3080. msgstr "Y yönü motoru için maksimum hız."
  3081. msgctxt "machine_max_feedrate_z description"
  3082. msgid "The maximum speed for the motor of the Z-direction."
  3083. msgstr "Z yönü motoru için maksimum hız."
  3084. msgctxt "machine_max_feedrate_e description"
  3085. msgid "The maximum speed of the filament."
  3086. msgstr "Filamanın maksimum hızı."
  3087. msgctxt "support_bottom_stair_step_width description"
  3088. 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."
  3089. 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."
  3090. msgctxt "mold_width description"
  3091. msgid "The minimal distance between the outside of the mold and the outside of the model."
  3092. msgstr "Kalıbın dış tarafı ile modelin dış tarafı arasındaki minimum mesafedir."
  3093. msgctxt "machine_minimum_feedrate description"
  3094. msgid "The minimal movement speed of the print head."
  3095. msgstr "Yazıcı başlığının minimum hareket hızı."
  3096. msgctxt "material_initial_print_temperature description"
  3097. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  3098. msgstr "Yazdırmanın başlayacağı Yazdırma Sıcaklığına ulaşırken görülen minimum sıcaklık."
  3099. msgctxt "machine_min_cool_heat_time_window description"
  3100. 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."
  3101. 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."
  3102. msgctxt "infill_support_angle description"
  3103. 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."
  3104. msgstr "Dolum eklenen dahili çıkıntıların minimum açısı. 0° değerde nesneler tamamen doldurulur, 90°’de dolgu yapılmaz."
  3105. msgctxt "support_angle description"
  3106. 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."
  3107. 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."
  3108. msgctxt "retraction_min_travel description"
  3109. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  3110. 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."
  3111. msgctxt "skirt_brim_minimal_length description"
  3112. 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."
  3113. 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."
  3114. msgctxt "min_odd_wall_line_width description"
  3115. 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."
  3116. 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."
  3117. msgctxt "min_even_wall_line_width description"
  3118. 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."
  3119. 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."
  3120. msgctxt "cool_min_speed description"
  3121. 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."
  3122. 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."
  3123. msgctxt "meshfix_maximum_resolution description"
  3124. 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."
  3125. 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."
  3126. msgctxt "meshfix_maximum_travel_resolution description"
  3127. 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."
  3128. 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."
  3129. msgctxt "support_bottom_stair_step_min_slope description"
  3130. 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."
  3131. 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."
  3132. msgctxt "cool_min_layer_time description"
  3133. 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."
  3134. 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."
  3135. msgctxt "prime_tower_min_volume description"
  3136. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3137. msgstr "Yeterince malzeme temizlemek için ilk direğin her bir katmanı için minimum hacim."
  3138. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
  3139. msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model"
  3140. msgstr "Modele bağlanması gereken dalın çapının, yapı levhasına erişebilecek dallarla birleşerek en fazla ne kadar artabileceği. Bunu artırmak baskı süresini azaltır, ancak modele dayanan destek alanını artırır"
  3141. msgctxt "machine_name description"
  3142. msgid "The name of your 3D printer model."
  3143. msgstr "3B yazıcı modelinin adı."
  3144. msgctxt "machine_nozzle_id description"
  3145. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  3146. msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi."
  3147. msgctxt "travel_avoid_other_parts description"
  3148. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  3149. 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."
  3150. msgctxt "travel_avoid_supports description"
  3151. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  3152. msgstr "Nozül hareket ederken önceden yazdırılmış destekleri atlar. Bu seçenek yalnızca tarama etkin olduğunda kullanılabilir."
  3153. msgctxt "bottom_layers description"
  3154. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  3155. msgstr "Alt katman sayısı. Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır."
  3156. msgctxt "raft_base_wall_count description"
  3157. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  3158. msgstr "Radyenin taban katmanındaki doğrusal desen etrafına basılacak kontur sayısıdır."
  3159. msgctxt "skin_edge_support_layers description"
  3160. msgid "The number of infill layers that supports skin edges."
  3161. msgstr "Kaplamanın kenarlarını destekleyen dolgu katmanının kalınlığı."
  3162. msgctxt "initial_bottom_layers description"
  3163. 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."
  3164. msgstr "Yapı plakasından itibaren ilk alt katman sayısı Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır."
  3165. msgctxt "raft_interface_layers description"
  3166. 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."
  3167. 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."
  3168. msgctxt "brim_line_count description"
  3169. 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."
  3170. 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."
  3171. msgctxt "support_brim_line_count description"
  3172. 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."
  3173. 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."
  3174. msgctxt "raft_surface_layers description"
  3175. 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."
  3176. 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."
  3177. msgctxt "top_layers description"
  3178. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  3179. msgstr "Üst katman sayısı. Bu değer, üst kalınlığıyla hesaplandığında tam sayıya yuvarlanır."
  3180. msgctxt "roofing_layer_count description"
  3181. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  3182. 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."
  3183. msgctxt "support_wall_count description"
  3184. 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."
  3185. 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."
  3186. msgctxt "support_bottom_wall_count description"
  3187. msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  3188. msgstr "Destek arayüz zeminini çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır."
  3189. msgctxt "support_roof_wall_count description"
  3190. msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  3191. msgstr "Destek arayüz çatısını çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır."
  3192. msgctxt "support_interface_wall_count description"
  3193. msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  3194. msgstr "Destek arayüzünü çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır."
  3195. msgctxt "wall_distribution_count description"
  3196. 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."
  3197. 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."
  3198. msgctxt "wall_line_count description"
  3199. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  3200. msgstr "Duvar sayısı. Bu değer, duvar kalınlığıyla hesaplandığında tam sayıya yuvarlanır."
  3201. msgctxt "machine_nozzle_tip_outer_diameter description"
  3202. msgid "The outer diameter of the tip of the nozzle."
  3203. msgstr "Nozül ucunun dış çapı."
  3204. msgctxt "infill_pattern description"
  3205. 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."
  3206. 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."
  3207. msgctxt "support_pattern description"
  3208. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  3209. msgstr "Yazdırma destek yapılarının şekli. Bulunan farklı seçenekler sağlam veya kolay çıkarılabilir destek oluşturabilir."
  3210. msgctxt "roofing_pattern description"
  3211. msgid "The pattern of the top most layers."
  3212. msgstr "En üst yüzeyin şekli."
  3213. msgctxt "top_bottom_pattern description"
  3214. msgid "The pattern of the top/bottom layers."
  3215. msgstr "Üst/alt katmanların şekli."
  3216. msgctxt "top_bottom_pattern_0 description"
  3217. msgid "The pattern on the bottom of the print on the first layer."
  3218. msgstr "Yazdırmanın altında ilk katmanda yer alacak şekil."
  3219. msgctxt "ironing_pattern description"
  3220. msgid "The pattern to use for ironing top surfaces."
  3221. msgstr "Üst yüzeyleri ütülemek için kullanılacak model."
  3222. msgctxt "support_bottom_pattern description"
  3223. msgid "The pattern with which the floors of the support are printed."
  3224. msgstr "Destek zeminlerinin yazdırıldığı desen."
  3225. msgctxt "support_interface_pattern description"
  3226. msgid "The pattern with which the interface of the support with the model is printed."
  3227. msgstr "Model ile birlikte destek arayüzünün yazdırıldığı şekil."
  3228. msgctxt "support_roof_pattern description"
  3229. msgid "The pattern with which the roofs of the support are printed."
  3230. msgstr "Destek çatısının yazdırıldığı desen."
  3231. msgctxt "z_seam_position description"
  3232. msgid "The position near where to start printing each part in a layer."
  3233. msgstr "Bir katmandaki her kısmın basılmaya başlanacağı yere yakın konum."
  3234. msgctxt "support_tree_angle_slow description"
  3235. msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster."
  3236. msgstr "Modelden kaçınmak zorunda olmadıklarında dalların tercih edilen açısı. Daha dikey ve daha dengeli hale getirmek için daha düşük bir açı kullanın. Dalların daha hızlı birleşmesi için daha yüksek bir açı kullanın."
  3237. msgctxt "support_tree_rest_preference description"
  3238. msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model."
  3239. msgstr "Destek yapılarının tercih edilen yerleşimi. Yapılar tercih edilen yere yerleştirilemiyorsa başka bir yere yerleştirilecektir. Bu, onları modelin üzerine yerleştirmek anlamına da gelebilir."
  3240. msgctxt "jerk_layer_0 description"
  3241. msgid "The print maximum instantaneous velocity change for the initial layer."
  3242. msgstr "İlk katman için maksimum anlık yazdırma hızı değişimi."
  3243. msgctxt "machine_shape description"
  3244. msgid "The shape of the build plate without taking unprintable areas into account."
  3245. msgstr "Yazdırılamayan alanların haricinde yapı levhasının şekli."
  3246. msgctxt "machine_head_with_fans_polygon description"
  3247. 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."
  3248. 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."
  3249. msgctxt "cross_infill_pocket_size description"
  3250. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3251. msgstr "Şeklin kendisine temas ettiği yüksekliklerde, çapraz 3D şekilde dört yönlü kesişme yerlerinde bulunan ceplerin boyutudur."
  3252. msgctxt "coasting_min_volume description"
  3253. 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."
  3254. 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."
  3255. msgctxt "machine_nozzle_cool_down_speed description"
  3256. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  3257. 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)."
  3258. msgctxt "machine_nozzle_heat_up_speed description"
  3259. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  3260. 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)."
  3261. msgctxt "speed_wall_x description"
  3262. 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."
  3263. 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."
  3264. msgctxt "bridge_skin_speed description"
  3265. msgid "The speed at which bridge skin regions are printed."
  3266. msgstr "Köprü yüzey alanı bölgelerinin yazdırıldığı hız."
  3267. msgctxt "speed_infill description"
  3268. msgid "The speed at which infill is printed."
  3269. msgstr "Dolgunun gerçekleştiği hız."
  3270. msgctxt "speed_print description"
  3271. msgid "The speed at which printing happens."
  3272. msgstr "Yazdırmanın gerçekleştiği hız."
  3273. msgctxt "raft_base_speed description"
  3274. 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."
  3275. 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."
  3276. msgctxt "bridge_wall_speed description"
  3277. msgid "The speed at which the bridge walls are printed."
  3278. msgstr "Köprü duvarlarının yazdırıldığı hız."
  3279. msgctxt "cool_fan_speed_0 description"
  3280. 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."
  3281. 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."
  3282. msgctxt "cool_fan_speed_min description"
  3283. 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."
  3284. 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."
  3285. msgctxt "cool_fan_speed_max description"
  3286. 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."
  3287. 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."
  3288. msgctxt "retraction_prime_speed description"
  3289. msgid "The speed at which the filament is primed during a retraction move."
  3290. msgstr "Filamanın geri çekme hareketi sırasında astarlandığı hız."
  3291. msgctxt "wipe_retraction_prime_speed description"
  3292. msgid "The speed at which the filament is primed during a wipe retraction move."
  3293. msgstr "Filamanın sürme geri çekme hareketi sırasında astarlandığı hız."
  3294. msgctxt "switch_extruder_prime_speed description"
  3295. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  3296. msgstr "Nozül değişiminin çekmesi sonucunda filamanın geriye doğru itildiği hız."
  3297. msgctxt "retraction_speed description"
  3298. msgid "The speed at which the filament is retracted and primed during a retraction move."
  3299. msgstr "Filamanın geri çekildiği ve geri çekme hareketi sırasında astarlandığı hız."
  3300. msgctxt "wipe_retraction_speed description"
  3301. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  3302. msgstr "Filamanın geri çekildiği ve sürme geri çekme hareketi sırasında astarlandığı hız."
  3303. msgctxt "switch_extruder_retraction_speed description"
  3304. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  3305. msgstr "Nozül değişiminin çekmesi sırasında filamanın geri çekildiği hız."
  3306. msgctxt "retraction_retract_speed description"
  3307. msgid "The speed at which the filament is retracted during a retraction move."
  3308. msgstr "Filamanın geri çekme hareketi sırasında geri çekildiği hız."
  3309. msgctxt "wipe_retraction_retract_speed description"
  3310. msgid "The speed at which the filament is retracted during a wipe retraction move."
  3311. msgstr "Filamanın sürme geri çekme hareketi sırasında geri çekildiği hız."
  3312. msgctxt "switch_extruder_retraction_speeds description"
  3313. 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."
  3314. 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."
  3315. msgctxt "speed_support_bottom description"
  3316. 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."
  3317. msgstr "Destek zemininin yazdırılma hızı. Daha düşük hızlarda yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir."
  3318. msgctxt "speed_support_infill description"
  3319. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  3320. msgstr "Dolgu desteğinin yazdırıldığı hız. Dolguyu daha düşük hızlarda yazdırmak sağlamlığı artırır."
  3321. msgctxt "raft_interface_speed description"
  3322. 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."
  3323. 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."
  3324. msgctxt "speed_wall_0 description"
  3325. 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."
  3326. 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."
  3327. msgctxt "speed_prime_tower description"
  3328. 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."
  3329. 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."
  3330. msgctxt "cool_fan_speed description"
  3331. msgid "The speed at which the print cooling fans spin."
  3332. msgstr "Yazdırma soğutma fanlarının dönüş hızı."
  3333. msgctxt "raft_speed description"
  3334. msgid "The speed at which the raft is printed."
  3335. msgstr "Radyenin yazdırıldığı hız."
  3336. msgctxt "speed_support_interface description"
  3337. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  3338. 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."
  3339. msgctxt "speed_support_roof description"
  3340. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  3341. 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."
  3342. msgctxt "skirt_brim_speed description"
  3343. 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."
  3344. 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."
  3345. msgctxt "speed_support description"
  3346. 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."
  3347. 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."
  3348. msgctxt "raft_surface_speed description"
  3349. 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."
  3350. 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."
  3351. msgctxt "speed_z_hop description"
  3352. 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."
  3353. 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."
  3354. msgctxt "speed_wall description"
  3355. msgid "The speed at which the walls are printed."
  3356. msgstr "Duvarların yazdırıldığı hız."
  3357. msgctxt "speed_ironing description"
  3358. msgid "The speed at which to pass over the top surface."
  3359. msgstr "Üst yüzeyi geçmek için gereken süre."
  3360. msgctxt "material_break_speed description"
  3361. msgid "The speed at which to retract the filament in order to break it cleanly."
  3362. msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken hızdır."
  3363. msgctxt "speed_roofing description"
  3364. msgid "The speed at which top surface skin layers are printed."
  3365. msgstr "Üst yüzey katmanların yazdırıldığı hız."
  3366. msgctxt "speed_topbottom description"
  3367. msgid "The speed at which top/bottom layers are printed."
  3368. msgstr "Üst/alt katmanların yazdırıldığı hız."
  3369. msgctxt "speed_travel description"
  3370. msgid "The speed at which travel moves are made."
  3371. msgstr "Hareket hamlelerinin hızı."
  3372. msgctxt "coasting_speed description"
  3373. 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."
  3374. 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."
  3375. msgctxt "speed_layer_0 description"
  3376. 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."
  3377. 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."
  3378. msgctxt "speed_print_layer_0 description"
  3379. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  3380. 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."
  3381. msgctxt "speed_travel_layer_0 description"
  3382. 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."
  3383. 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."
  3384. msgctxt "material_break_temperature description"
  3385. msgid "The temperature at which the filament is broken for a clean break."
  3386. msgstr "Sorunsuz kopması için filament koptuğundaki sıcaklık değeridir."
  3387. msgctxt "build_volume_temperature description"
  3388. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  3389. msgstr "Baskı yapılacak ortamın sıcaklığı. Bu değer 0 ise yapı hacminin sıcaklığı ayarlanmaz."
  3390. msgctxt "material_standby_temperature description"
  3391. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  3392. msgstr "Yazdırma için başka bir nozül kullanılırken nozülün sıcaklığı."
  3393. msgctxt "material_final_print_temperature description"
  3394. msgid "The temperature to which to already start cooling down just before the end of printing."
  3395. msgstr "Yazdırma bitmeden hemen önce soğuma işleminin başladığı sıcaklık."
  3396. msgctxt "material_print_temperature_layer_0 description"
  3397. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  3398. 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."
  3399. msgctxt "material_print_temperature description"
  3400. msgid "The temperature used for printing."
  3401. msgstr "Yazdırma için kullanılan sıcaklık."
  3402. msgctxt "material_bed_temperature_layer_0 description"
  3403. 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."
  3404. 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."
  3405. msgctxt "material_bed_temperature description"
  3406. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  3407. msgstr "Isıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ısıtılmaz."
  3408. msgctxt "material_break_preparation_temperature description"
  3409. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  3410. 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."
  3411. msgctxt "bottom_thickness description"
  3412. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  3413. msgstr "Yazdırmadaki alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer alt katmanların sayısını belirtir."
  3414. msgctxt "skin_edge_support_thickness description"
  3415. msgid "The thickness of the extra infill that supports skin edges."
  3416. msgstr "Kaplamanın kenarlarını destekleyen ekstra dolgunun kalınlığı."
  3417. msgctxt "support_interface_height description"
  3418. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  3419. msgstr "Alt veya üst kısımdaki modele değdiği yerde destek arayüzü kalınlığı."
  3420. msgctxt "support_bottom_height description"
  3421. 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."
  3422. 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."
  3423. msgctxt "support_roof_height description"
  3424. 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."
  3425. 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."
  3426. msgctxt "top_thickness description"
  3427. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  3428. msgstr "Yazdırmadaki üst katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst katmanların sayısını belirtir."
  3429. msgctxt "top_bottom_thickness description"
  3430. 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."
  3431. 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."
  3432. msgctxt "wall_thickness description"
  3433. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  3434. msgstr "Yatay yönde duvar kalınlığı. Bu değer duvar hattı genişliğiyle bölündüğünde duvar sayısını belirler."
  3435. msgctxt "infill_sparse_thickness description"
  3436. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3437. 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."
  3438. msgctxt "support_infill_sparse_thickness description"
  3439. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3440. 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."
  3441. msgctxt "machine_gcode_flavor description"
  3442. msgid "The type of g-code to be generated."
  3443. msgstr "Oluşturulacak g-code türü."
  3444. msgctxt "coasting_volume description"
  3445. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3446. msgstr "Aksi takdirde hacim sızdırılır. Bu değer, genellikle nozül çapının küpüne yakındır."
  3447. msgctxt "machine_width description"
  3448. msgid "The width (X-direction) of the printable area."
  3449. msgstr "Yazdırılabilir alan genişliği (X yönü)."
  3450. msgctxt "support_brim_width description"
  3451. 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."
  3452. 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."
  3453. msgctxt "interlocking_beam_width description"
  3454. msgid "The width of the interlocking structure beams."
  3455. msgstr "İç içe geçen yapı kirişlerinin genişliği."
  3456. msgctxt "prime_tower_size description"
  3457. msgid "The width of the prime tower."
  3458. msgstr "İlk Direk Genişliği."
  3459. msgctxt "magic_fuzzy_skin_thickness description"
  3460. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  3461. msgstr "Titremenin yapılacağı genişlik. İç duvarlar değiştirilmediği için, bunun dış duvar genişliğinin altında tutulması öneriliyor."
  3462. msgctxt "retraction_extrusion_window description"
  3463. 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."
  3464. 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."
  3465. msgctxt "prime_tower_position_x description"
  3466. msgid "The x coordinate of the position of the prime tower."
  3467. msgstr "İlk direk konumunun x koordinatı."
  3468. msgctxt "prime_tower_position_y description"
  3469. msgid "The y coordinate of the position of the prime tower."
  3470. msgstr "İlk direk konumunun y koordinatı."
  3471. msgctxt "support_meshes_present description"
  3472. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  3473. msgstr "Bunlar sahnedeki mevcut destek örgüleridir. Bu ayar Cura tarafından kontrol edilir."
  3474. msgctxt "bridge_wall_coast description"
  3475. 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."
  3476. 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."
  3477. msgctxt "raft_smoothing description"
  3478. 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."
  3479. 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."
  3480. msgctxt "retraction_count_max description"
  3481. 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."
  3482. 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."
  3483. msgctxt "draft_shield_enabled description"
  3484. 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."
  3485. 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."
  3486. msgctxt "support_tree_tip_diameter label"
  3487. msgid "Tip Diameter"
  3488. msgstr "Uç Çapı"
  3489. msgctxt "material_shrinkage_percentage_xy description"
  3490. 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)."
  3491. 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."
  3492. msgctxt "material_shrinkage_percentage_z description"
  3493. 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)."
  3494. 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."
  3495. msgctxt "material_shrinkage_percentage description"
  3496. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  3497. msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre ölçeklenecektir."
  3498. msgctxt "top_layers label"
  3499. msgid "Top Layers"
  3500. msgstr "Üst Katmanlar"
  3501. msgctxt "top_skin_expand_distance label"
  3502. msgid "Top Skin Expand Distance"
  3503. msgstr "Üst Yüzey Genişleme Mesafesi"
  3504. msgctxt "top_skin_preshrink label"
  3505. msgid "Top Skin Removal Width"
  3506. msgstr "Üst Yüzey Kaldırma Genişliği"
  3507. msgctxt "acceleration_roofing label"
  3508. msgid "Top Surface Skin Acceleration"
  3509. msgstr "Üst Yüzey İvmesi"
  3510. msgctxt "roofing_extruder_nr label"
  3511. msgid "Top Surface Skin Extruder"
  3512. msgstr "Üst Yüzey Ekstruderi"
  3513. msgctxt "roofing_material_flow label"
  3514. msgid "Top Surface Skin Flow"
  3515. msgstr "Üst Yüzeyin Dış Katman Akışı"
  3516. msgctxt "jerk_roofing label"
  3517. msgid "Top Surface Skin Jerk"
  3518. msgstr "Üst Yüzey İvmesi Değişimi"
  3519. msgctxt "roofing_layer_count label"
  3520. msgid "Top Surface Skin Layers"
  3521. msgstr "Üst Yüzey Katmanları"
  3522. msgctxt "roofing_angles label"
  3523. msgid "Top Surface Skin Line Directions"
  3524. msgstr "Üst Yüzey Hat Yönleri"
  3525. msgctxt "roofing_line_width label"
  3526. msgid "Top Surface Skin Line Width"
  3527. msgstr "Üst Yüzey Hat Genişliği"
  3528. msgctxt "roofing_pattern label"
  3529. msgid "Top Surface Skin Pattern"
  3530. msgstr "Üst Yüzey Şekli"
  3531. msgctxt "speed_roofing label"
  3532. msgid "Top Surface Skin Speed"
  3533. msgstr "Üst Yüzey Hızı"
  3534. msgctxt "top_thickness label"
  3535. msgid "Top Thickness"
  3536. msgstr "Üst Kalınlık"
  3537. msgctxt "max_skin_angle_for_expansion description"
  3538. 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."
  3539. 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."
  3540. msgctxt "top_bottom description"
  3541. msgid "Top/Bottom"
  3542. msgstr "Üst / Alt"
  3543. msgctxt "top_bottom label"
  3544. msgid "Top/Bottom"
  3545. msgstr "Üst / Alt"
  3546. msgctxt "acceleration_topbottom label"
  3547. msgid "Top/Bottom Acceleration"
  3548. msgstr "Üst/Alt İvme"
  3549. msgctxt "top_bottom_extruder_nr label"
  3550. msgid "Top/Bottom Extruder"
  3551. msgstr "Üst/Alt Ekstruderi"
  3552. msgctxt "skin_material_flow label"
  3553. msgid "Top/Bottom Flow"
  3554. msgstr "Üst/Alt Akış"
  3555. msgctxt "jerk_topbottom label"
  3556. msgid "Top/Bottom Jerk"
  3557. msgstr "Üst/Alt Salınımı"
  3558. msgctxt "skin_angles label"
  3559. msgid "Top/Bottom Line Directions"
  3560. msgstr "Üst/Alt Çizgi Yönleri"
  3561. msgctxt "skin_line_width label"
  3562. msgid "Top/Bottom Line Width"
  3563. msgstr "Üst/Alt Hat Genişliği"
  3564. msgctxt "top_bottom_pattern label"
  3565. msgid "Top/Bottom Pattern"
  3566. msgstr "Üst/Alt Şekil"
  3567. msgctxt "speed_topbottom label"
  3568. msgid "Top/Bottom Speed"
  3569. msgstr "Üst/Alt Hız"
  3570. msgctxt "top_bottom_thickness label"
  3571. msgid "Top/Bottom Thickness"
  3572. msgstr "Üst/Alt Kalınlık"
  3573. msgctxt "support_type option buildplate"
  3574. msgid "Touching Buildplate"
  3575. msgstr "Yapı Levhasına Dokunma"
  3576. msgctxt "support_tower_diameter label"
  3577. msgid "Tower Diameter"
  3578. msgstr "Direk Çapı"
  3579. msgctxt "support_tower_roof_angle label"
  3580. msgid "Tower Roof Angle"
  3581. msgstr "Direk Tavanı Açısı"
  3582. msgctxt "mesh_rotation_matrix description"
  3583. msgid "Transformation matrix to be applied to the model when loading it from file."
  3584. msgstr "Modeli dosyadan indirirken modele uygulanacak olan dönüşüm matrisi."
  3585. msgctxt "travel label"
  3586. msgid "Travel"
  3587. msgstr "Hareket"
  3588. msgctxt "acceleration_travel label"
  3589. msgid "Travel Acceleration"
  3590. msgstr "Hareket İvmesi"
  3591. msgctxt "travel_avoid_distance label"
  3592. msgid "Travel Avoid Distance"
  3593. msgstr "Hareket Atlama Mesafesi"
  3594. msgctxt "jerk_travel label"
  3595. msgid "Travel Jerk"
  3596. msgstr "Hareket Salınımı"
  3597. msgctxt "speed_travel label"
  3598. msgid "Travel Speed"
  3599. msgstr "Hareket Hızı"
  3600. msgctxt "magic_mesh_surface_mode description"
  3601. 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."
  3602. 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."
  3603. msgctxt "support_structure option tree"
  3604. msgid "Tree"
  3605. msgstr "Ağaç"
  3606. msgctxt "infill_pattern option trihexagon"
  3607. msgid "Tri-Hexagon"
  3608. msgstr "Üçlü Altıgen"
  3609. msgctxt "infill_pattern option triangles"
  3610. msgid "Triangles"
  3611. msgstr "Üçgenler"
  3612. msgctxt "support_bottom_pattern option triangles"
  3613. msgid "Triangles"
  3614. msgstr "Üçgenler"
  3615. msgctxt "support_interface_pattern option triangles"
  3616. msgid "Triangles"
  3617. msgstr "Üçgenler"
  3618. msgctxt "support_pattern option triangles"
  3619. msgid "Triangles"
  3620. msgstr "Üçgenler"
  3621. msgctxt "support_roof_pattern option triangles"
  3622. msgid "Triangles"
  3623. msgstr "Üçgenler"
  3624. msgctxt "support_tree_max_diameter label"
  3625. msgid "Trunk Diameter"
  3626. msgstr "Gövde Çapı"
  3627. msgctxt "machine_gcode_flavor option UltiGCode"
  3628. msgid "Ultimaker 2"
  3629. msgstr "Ultimaker 2"
  3630. msgctxt "meshfix_union_all label"
  3631. msgid "Union Overlapping Volumes"
  3632. msgstr "Bağlantı Çakışma Hacimleri"
  3633. msgctxt "bridge_wall_min_length description"
  3634. 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."
  3635. 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."
  3636. msgctxt "adaptive_layer_height_enabled label"
  3637. msgid "Use Adaptive Layers"
  3638. msgstr "Uyarlanabilir Katmanların Kullanımı"
  3639. msgctxt "support_use_towers label"
  3640. msgid "Use Towers"
  3641. msgstr "Direkleri kullan"
  3642. msgctxt "acceleration_travel_enabled description"
  3643. 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."
  3644. msgstr "Hareket hamleleri için ayrı bir ivme oranı kullanın. Hareket hamleleri devre dışı bırakılırsa varış noktasında yazdırılan hattın ivme değerini kullanır."
  3645. msgctxt "jerk_travel_enabled description"
  3646. 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."
  3647. msgstr "Hareket hamleleri için ayrı bir salınım oranı kullanın. Hareket hamleleri devre dışı bırakılırsa varış noktasında yazdırılan hattın ivme değerini kullanır."
  3648. msgctxt "relative_extrusion description"
  3649. 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."
  3650. 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."
  3651. msgctxt "support_use_towers description"
  3652. 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."
  3653. 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."
  3654. msgctxt "infill_mesh description"
  3655. 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."
  3656. 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."
  3657. msgctxt "support_mesh description"
  3658. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3659. msgstr "Destek alanlarını belirlemek için bu örgüyü kullanın. Bu örgü, destek yapısını oluşturmak için kullanılabilir."
  3660. msgctxt "anti_overhang_mesh description"
  3661. 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."
  3662. 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."
  3663. msgctxt "z_seam_type option back"
  3664. msgid "User Specified"
  3665. msgstr "Kullanıcı Tarafından Belirtilen"
  3666. msgctxt "material_shrinkage_percentage_z label"
  3667. msgid "Vertical Scaling Factor Shrinkage Compensation"
  3668. msgstr "Dikey Ölçekleme Faktörü Büzülme Telafisi"
  3669. msgctxt "slicing_tolerance description"
  3670. 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."
  3671. 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."
  3672. msgctxt "material_bed_temp_wait label"
  3673. msgid "Wait for Build Plate Heatup"
  3674. msgstr "Yapı Levhasının Isınmasını Bekle"
  3675. msgctxt "material_print_temp_wait label"
  3676. msgid "Wait for Nozzle Heatup"
  3677. msgstr "Nozülün Isınmasını Bekle"
  3678. msgctxt "acceleration_wall label"
  3679. msgid "Wall Acceleration"
  3680. msgstr "Duvar İvmesi"
  3681. msgctxt "wall_distribution_count label"
  3682. msgid "Wall Distribution Count"
  3683. msgstr "Duvar Dağılım Sayısı"
  3684. msgctxt "wall_extruder_nr label"
  3685. msgid "Wall Extruder"
  3686. msgstr "Duvar Ekstruderi"
  3687. msgctxt "wall_material_flow label"
  3688. msgid "Wall Flow"
  3689. msgstr "Duvar Akışı"
  3690. msgctxt "jerk_wall label"
  3691. msgid "Wall Jerk"
  3692. msgstr "Duvar Salınımı"
  3693. msgctxt "wall_line_count label"
  3694. msgid "Wall Line Count"
  3695. msgstr "Duvar Hattı Sayısı"
  3696. msgctxt "wall_line_width label"
  3697. msgid "Wall Line Width"
  3698. msgstr "Duvar Hattı Genişliği"
  3699. msgctxt "inset_direction label"
  3700. msgid "Wall Ordering"
  3701. msgstr "Duvar Sıralaması"
  3702. msgctxt "speed_wall label"
  3703. msgid "Wall Speed"
  3704. msgstr "Duvar Hızı"
  3705. msgctxt "wall_thickness label"
  3706. msgid "Wall Thickness"
  3707. msgstr "Duvar Kalınlığı"
  3708. msgctxt "wall_transition_length label"
  3709. msgid "Wall Transition Length"
  3710. msgstr "Duvar Geçişi Uzunluğu"
  3711. msgctxt "wall_transition_filter_distance label"
  3712. msgid "Wall Transitioning Filter Distance"
  3713. msgstr "Duvar Geçişi Filtresi Mesafesi"
  3714. msgctxt "wall_transition_filter_deviation label"
  3715. msgid "Wall Transitioning Filter Margin"
  3716. msgstr "Duvar Geçişi Filtresi Kenar Boşluğu"
  3717. msgctxt "wall_transition_angle label"
  3718. msgid "Wall Transitioning Threshold Angle"
  3719. msgstr "Duvar Geçişi Eşik Açısı"
  3720. msgctxt "shell label"
  3721. msgid "Walls"
  3722. msgstr "Duvarlar"
  3723. msgctxt "wall_overhang_angle description"
  3724. 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."
  3725. 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."
  3726. msgctxt "support_interface_skip_height description"
  3727. 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."
  3728. 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."
  3729. msgctxt "infill_enable_travel_optimization description"
  3730. 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."
  3731. 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."
  3732. msgctxt "support_fan_enable description"
  3733. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  3734. 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."
  3735. msgctxt "z_seam_relative description"
  3736. 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."
  3737. 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."
  3738. msgctxt "retraction_combing_max_distance description"
  3739. 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."
  3740. 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."
  3741. msgctxt "hole_xy_offset_max_diameter description"
  3742. msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
  3743. msgstr "Sıfırdan büyük olduğunda, Delik Yatay Büyüme küçük deliklere kademeli olarak uygulanır (küçük delikler daha fazla büyütülür). Sıfır olarak ayarlandığında Delik Yatay Büyüme tüm deliklere uygulanacaktır. Delik Yatay Büyüme Maksimum Çapı’ndan daha büyük delikler genişletilmez."
  3744. msgctxt "bridge_skin_material_flow description"
  3745. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  3746. msgstr "Köprü yüzey alanı bölgeleri yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır."
  3747. msgctxt "bridge_wall_material_flow description"
  3748. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  3749. msgstr "Köprü duvarları yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır."
  3750. msgctxt "bridge_skin_material_flow_2 description"
  3751. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  3752. msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır."
  3753. msgctxt "bridge_skin_material_flow_3 description"
  3754. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  3755. msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır."
  3756. msgctxt "cool_lift_head description"
  3757. 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."
  3758. 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."
  3759. msgctxt "skin_no_small_gaps_heuristic description"
  3760. 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."
  3761. 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."
  3762. msgctxt "wall_transition_angle description"
  3763. 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."
  3764. 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."
  3765. msgctxt "wall_transition_length description"
  3766. 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."
  3767. 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."
  3768. msgctxt "wipe_hop_enable description"
  3769. 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."
  3770. 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."
  3771. msgctxt "retraction_hop_enabled description"
  3772. 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."
  3773. 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."
  3774. msgctxt "support_xy_overrides_z description"
  3775. 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."
  3776. 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."
  3777. msgctxt "machine_center_is_zero description"
  3778. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  3779. msgstr "Yazıcı sıfır noktasının X/Y koordinatlarının yazdırılabilir alanın merkezinde olup olmadığı."
  3780. msgctxt "machine_endstop_positive_direction_x description"
  3781. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  3782. 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."
  3783. msgctxt "machine_endstop_positive_direction_y description"
  3784. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  3785. 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."
  3786. msgctxt "machine_endstop_positive_direction_z description"
  3787. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  3788. 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."
  3789. msgctxt "machine_extruders_share_heater description"
  3790. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  3791. msgstr "Ekstrüderlerin tek bir ısıtıcıyı mı paylaşacağı yoksa her bir ekstrüderin kendi ısıtıcısı mı olacağı."
  3792. msgctxt "machine_extruders_share_nozzle description"
  3793. 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."
  3794. 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."
  3795. msgctxt "machine_heated_bed description"
  3796. msgid "Whether the machine has a heated build plate present."
  3797. msgstr "Makinenin mevcut yapı levhasını ısıtıp ısıtmadığı."
  3798. msgctxt "machine_heated_build_volume description"
  3799. msgid "Whether the machine is able to stabilize the build volume temperature."
  3800. msgstr "Makinenin yapı hacmi sıcaklığını dengeleyip dengelemediği."
  3801. msgctxt "center_object description"
  3802. 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."
  3803. msgstr "Nesnenin kaydedildiği koordinat sistemini kullanmak yerine nesnenin yapı platformunun (0,0) ortasına yerleştirilmesi."
  3804. msgctxt "machine_nozzle_temp_enabled description"
  3805. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  3806. 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."
  3807. msgctxt "material_bed_temp_prepend description"
  3808. 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."
  3809. 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."
  3810. msgctxt "material_print_temp_prepend description"
  3811. 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."
  3812. 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."
  3813. msgctxt "clean_between_layers description"
  3814. 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."
  3815. 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."
  3816. msgctxt "material_bed_temp_wait description"
  3817. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  3818. msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleme komutu ekleyip eklememe."
  3819. msgctxt "prime_blob_enable description"
  3820. 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."
  3821. 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."
  3822. msgctxt "print_sequence description"
  3823. 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."
  3824. 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."
  3825. msgctxt "machine_show_variants description"
  3826. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  3827. msgstr "Ayrı json dosyalarında belirtilen bu makinenin farklı varyantlarının gösterilip gösterilmemesi."
  3828. msgctxt "machine_firmware_retract description"
  3829. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  3830. 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ğı."
  3831. msgctxt "material_print_temp_wait description"
  3832. msgid "Whether to wait until the nozzle temperature is reached at the start."
  3833. msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleyip beklememe."
  3834. msgctxt "infill_line_width description"
  3835. msgid "Width of a single infill line."
  3836. msgstr "Tek bir dolgu hattının genişliği."
  3837. msgctxt "support_interface_line_width description"
  3838. msgid "Width of a single line of support roof or floor."
  3839. msgstr "Destek çatısı veya zemininin tek çizgi genişliği."
  3840. msgctxt "roofing_line_width description"
  3841. msgid "Width of a single line of the areas at the top of the print."
  3842. msgstr "Baskının üst tarafında bulunan alanlardaki tek bir hattın genişliği."
  3843. msgctxt "line_width description"
  3844. 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."
  3845. 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."
  3846. msgctxt "prime_tower_line_width description"
  3847. msgid "Width of a single prime tower line."
  3848. msgstr "Tek bir ilk direk hattının genişliği."
  3849. msgctxt "skirt_brim_line_width description"
  3850. msgid "Width of a single skirt or brim line."
  3851. msgstr "Tek bir etek veya kenar hattının genişliği."
  3852. msgctxt "support_bottom_line_width description"
  3853. msgid "Width of a single support floor line."
  3854. msgstr "Tek bir destek zemininin çizgi genişliği."
  3855. msgctxt "support_roof_line_width description"
  3856. msgid "Width of a single support roof line."
  3857. msgstr "Tek bir destek çatısının çizgi genişliği."
  3858. msgctxt "support_line_width description"
  3859. msgid "Width of a single support structure line."
  3860. msgstr "Tek bir destek yapısı hattının genişliği."
  3861. msgctxt "skin_line_width description"
  3862. msgid "Width of a single top/bottom line."
  3863. msgstr "Tek bir üst/alt hattın genişliği."
  3864. msgctxt "wall_line_width_x description"
  3865. msgid "Width of a single wall line for all wall lines except the outermost one."
  3866. msgstr "En dış duvar haricindeki tüm duvar hatları için tek bir duvar hattı genişliği."
  3867. msgctxt "wall_line_width description"
  3868. msgid "Width of a single wall line."
  3869. msgstr "Tek bir duvar hattının genişliği."
  3870. msgctxt "raft_base_line_width description"
  3871. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3872. 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."
  3873. msgctxt "raft_interface_line_width description"
  3874. 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."
  3875. 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."
  3876. msgctxt "raft_surface_line_width description"
  3877. 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."
  3878. 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."
  3879. msgctxt "wall_line_width_0 description"
  3880. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  3881. 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."
  3882. msgctxt "min_bead_width description"
  3883. 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."
  3884. 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."
  3885. msgctxt "wipe_brush_pos_x label"
  3886. msgid "Wipe Brush X Position"
  3887. msgstr "Sürme Fırçası X Konumu"
  3888. msgctxt "wipe_hop_speed label"
  3889. msgid "Wipe Hop Speed"
  3890. msgstr "Sürme Sıçrama Hızı"
  3891. msgctxt "prime_tower_wipe_enabled label"
  3892. msgid "Wipe Inactive Nozzle on Prime Tower"
  3893. msgstr "İlk Direkteki Sürme İnaktif Nozülü"
  3894. msgctxt "wipe_move_distance label"
  3895. msgid "Wipe Move Distance"
  3896. msgstr "Sürme Hareket Mesafesi"
  3897. msgctxt "clean_between_layers label"
  3898. msgid "Wipe Nozzle Between Layers"
  3899. msgstr "Katmanlar Arasındaki Sürme Nozülü"
  3900. msgctxt "wipe_pause label"
  3901. msgid "Wipe Pause"
  3902. msgstr "Sürmeyi Durdurma"
  3903. msgctxt "wipe_repeat_count label"
  3904. msgid "Wipe Repeat Count"
  3905. msgstr "Sürme Tekrar Sayısı"
  3906. msgctxt "wipe_retraction_amount label"
  3907. msgid "Wipe Retraction Distance"
  3908. msgstr "Sürme Geri Çekme Mesafesi"
  3909. msgctxt "wipe_retraction_enable label"
  3910. msgid "Wipe Retraction Enable"
  3911. msgstr "Sürme Geri Çekmenin Etkinleştirilmesi"
  3912. msgctxt "wipe_retraction_extra_prime_amount label"
  3913. msgid "Wipe Retraction Extra Prime Amount"
  3914. msgstr "Sürme Geri Çekme Sırasındaki İlave Astar Miktarı"
  3915. msgctxt "wipe_retraction_prime_speed label"
  3916. msgid "Wipe Retraction Prime Speed"
  3917. msgstr "Sürme Geri Çekme Sırasındaki Çalışmaya Hazırlama Hızı"
  3918. msgctxt "wipe_retraction_retract_speed label"
  3919. msgid "Wipe Retraction Retract Speed"
  3920. msgstr "Sürme Geri Çekme Sırasındaki Çekim Hızı"
  3921. msgctxt "wipe_retraction_speed label"
  3922. msgid "Wipe Retraction Speed"
  3923. msgstr "Sürme Geri Çekme Hızı"
  3924. msgctxt "wipe_hop_enable label"
  3925. msgid "Wipe Z Hop"
  3926. msgstr "Sürme Z Sıçraması"
  3927. msgctxt "wipe_hop_amount label"
  3928. msgid "Wipe Z Hop Height"
  3929. msgstr "Sürme Z Sıçraması Yüksekliği"
  3930. msgctxt "retraction_combing option infill"
  3931. msgid "Within Infill"
  3932. msgstr "Dolgu İçinde"
  3933. msgctxt "machine_always_write_active_tool description"
  3934. 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."
  3935. 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."
  3936. msgctxt "machine_endstop_positive_direction_x label"
  3937. msgid "X Endstop in Positive Direction"
  3938. msgstr "X Kapaması Pozitif Yönde"
  3939. msgctxt "wipe_brush_pos_x description"
  3940. msgid "X location where wipe script will start."
  3941. msgstr "Sürme komutunun başlatılacağı X konumu."
  3942. msgctxt "support_xy_overrides_z option xy_overrides_z"
  3943. msgid "X/Y overrides Z"
  3944. msgstr "X/Y, Z’den fazla"
  3945. msgctxt "machine_endstop_positive_direction_y label"
  3946. msgid "Y Endstop in Positive Direction"
  3947. msgstr "Y Kapaması Pozitif Yönde"
  3948. msgctxt "machine_endstop_positive_direction_z label"
  3949. msgid "Z Endstop in Positive Direction"
  3950. msgstr "Z Kapaması Pozitif Yönde"
  3951. msgctxt "retraction_hop_after_extruder_switch label"
  3952. msgid "Z Hop After Extruder Switch"
  3953. msgstr "Ekstruder Değişimi Sonrasındaki Z Sıçraması"
  3954. msgctxt "retraction_hop_after_extruder_switch_height label"
  3955. msgid "Z Hop After Extruder Switch Height"
  3956. msgstr "Ekstruder Yüksekliği Değişimi Sonrasındaki Z Sıçraması"
  3957. msgctxt "retraction_hop label"
  3958. msgid "Z Hop Height"
  3959. msgstr "Z Sıçraması Yüksekliği"
  3960. msgctxt "retraction_hop_only_when_collides label"
  3961. msgid "Z Hop Only Over Printed Parts"
  3962. msgstr "Sadece Yazdırılan Parçalar Üzerindeki Z Sıçraması"
  3963. msgctxt "speed_z_hop label"
  3964. msgid "Z Hop Speed"
  3965. msgstr "Z Atlama Hızı"
  3966. msgctxt "retraction_hop_enabled label"
  3967. msgid "Z Hop When Retracted"
  3968. msgstr "Geri Çekildiğinde Z Sıçraması"
  3969. msgctxt "z_seam_type label"
  3970. msgid "Z Seam Alignment"
  3971. msgstr "Z Dikiş Hizalama"
  3972. msgctxt "z_seam_position label"
  3973. msgid "Z Seam Position"
  3974. msgstr "Z Dikişi Konumu"
  3975. msgctxt "z_seam_relative label"
  3976. msgid "Z Seam Relative"
  3977. msgstr "Z Dikişi Göreliliği"
  3978. msgctxt "z_seam_x label"
  3979. msgid "Z Seam X"
  3980. msgstr "Z Dikişi X"
  3981. msgctxt "z_seam_y label"
  3982. msgid "Z Seam Y"
  3983. msgstr "Z Dikişi Y"
  3984. msgctxt "support_xy_overrides_z option z_overrides_xy"
  3985. msgid "Z overrides X/Y"
  3986. msgstr "Z, X/Y’den fazla"
  3987. msgctxt "infill_pattern option zigzag"
  3988. msgid "Zig Zag"
  3989. msgstr "Zik Zak"
  3990. msgctxt "ironing_pattern option zigzag"
  3991. msgid "Zig Zag"
  3992. msgstr "Zikzak"
  3993. msgctxt "roofing_pattern option zigzag"
  3994. msgid "Zig Zag"
  3995. msgstr "Zikzak"
  3996. msgctxt "support_bottom_pattern option zigzag"
  3997. msgid "Zig Zag"
  3998. msgstr "Zikzak"
  3999. msgctxt "support_interface_pattern option zigzag"
  4000. msgid "Zig Zag"
  4001. msgstr "Zik Zak"
  4002. msgctxt "support_pattern option zigzag"
  4003. msgid "Zig Zag"
  4004. msgstr "Zik Zak"
  4005. msgctxt "support_roof_pattern option zigzag"
  4006. msgid "Zig Zag"
  4007. msgstr "Zikzak"
  4008. msgctxt "top_bottom_pattern option zigzag"
  4009. msgid "Zig Zag"
  4010. msgstr "Zik Zak"
  4011. msgctxt "top_bottom_pattern_0 option zigzag"
  4012. msgid "Zig Zag"
  4013. msgstr "Zikzak"
  4014. msgctxt "travel description"
  4015. msgid "travel"
  4016. msgstr "hareket"
  4017. #~ msgctxt "wireframe_strategy option compensate"
  4018. #~ msgid "Compensate"
  4019. #~ msgstr "Dengele"
  4020. #~ msgctxt "wireframe_top_jump description"
  4021. #~ 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."
  4022. #~ 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."
  4023. #~ msgctxt "wireframe_bottom_delay description"
  4024. #~ msgid "Delay time after a downward move. Only applies to Wire Printing."
  4025. #~ msgstr "Aşağı doğru hareketten sonraki bekleme süresi. Sadece kablo yazdırmaya uygulanır."
  4026. #~ msgctxt "wireframe_top_delay description"
  4027. #~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  4028. #~ msgstr "Yukarı hattın sertleşmesi için, yukarıya doğru hareketten sonraki gecikme süresi. Sadece kablo yazdırmaya uygulanır."
  4029. #~ msgctxt "wireframe_flat_delay description"
  4030. #~ 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."
  4031. #~ 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."
  4032. #~ msgctxt "wireframe_nozzle_clearance description"
  4033. #~ 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."
  4034. #~ 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."
  4035. #~ msgctxt "wireframe_up_half_speed description"
  4036. #~ msgid ""
  4037. #~ "Distance of an upward move which is extruded with half speed.\n"
  4038. #~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  4039. #~ msgstr ""
  4040. #~ "Yarı hızda sıkıştırılmış yukarı doğru hareket mesafesi.\n"
  4041. #~ "Bu katmanlarda malzemeyi çok fazla ısıtmayarak önceki katmanlarda daha iyi yapışma sağlayabilir. Sadece kablo yazdırmaya uygulanır."
  4042. #~ msgctxt "wireframe_fall_down description"
  4043. #~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4044. #~ msgstr "Malzemenin yukarı doğru ekstrüzyondan sonra aşağı inme mesafesi. Mesafe telafi edilir. Sadece kablo yazdırmaya uygulanır."
  4045. #~ msgctxt "wireframe_drag_along description"
  4046. #~ 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."
  4047. #~ 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."
  4048. #~ msgctxt "wireframe_flow_connection description"
  4049. #~ msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  4050. #~ msgstr "Yukarı veya aşağı yönde hareket ederken akış dengelenmesi. Sadece kablo yazdırmaya uygulanır."
  4051. #~ msgctxt "wireframe_flow_flat description"
  4052. #~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  4053. #~ msgstr "Düz hatlar yazdırılırken akış dengelenmesi. Sadece kablo yazdırmaya uygulanır."
  4054. #~ msgctxt "wireframe_flow description"
  4055. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  4056. #~ msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır. Sadece kablo yazdırmaya uygulanır."
  4057. #~ msgctxt "support_tree_branch_distance description"
  4058. #~ 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."
  4059. #~ 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."
  4060. #~ msgctxt "wireframe_strategy option knot"
  4061. #~ msgid "Knot"
  4062. #~ msgstr "Düğüm"
  4063. #~ msgctxt "wireframe_straight_before_down description"
  4064. #~ 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."
  4065. #~ 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."
  4066. #~ msgctxt "wireframe_enabled description"
  4067. #~ 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."
  4068. #~ 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."
  4069. #~ msgctxt "support_tree_collision_resolution description"
  4070. #~ 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."
  4071. #~ 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."
  4072. #~ msgctxt "wireframe_strategy option retract"
  4073. #~ msgid "Retract"
  4074. #~ msgstr "Geri Çek"
  4075. #~ msgctxt "wireframe_printspeed description"
  4076. #~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  4077. #~ msgstr "Malzemeleri sıkarken nozül hareketlerinin hızı. Sadece kablo yazdırmaya uygulanır."
  4078. #~ msgctxt "wireframe_printspeed_down description"
  4079. #~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  4080. #~ msgstr "Çapraz şekilde aşağı doğru bir hat yazdırma hızı. Sadece kablo yazdırmaya uygulanır."
  4081. #~ msgctxt "wireframe_printspeed_up description"
  4082. #~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  4083. #~ msgstr "“Belli belirsiz” yukarı doğru bir hat yazdırma hızı. Sadece kablo yazdırmaya uygulanır."
  4084. #~ msgctxt "wireframe_printspeed_bottom description"
  4085. #~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  4086. #~ msgstr "Yapı platformuna değen tek katman olan ilk katmanın yazdırılma hızı. Sadece kablo yazdırmaya uygulanır."
  4087. #~ msgctxt "wireframe_printspeed_flat description"
  4088. #~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  4089. #~ msgstr "Modelin yatay dış çevresini yazdırma hızı. Sadece kablo yazdırmaya uygulanır."
  4090. #~ msgctxt "wireframe_strategy description"
  4091. #~ 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."
  4092. #~ 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."
  4093. #~ msgctxt "support_tree_angle description"
  4094. #~ 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."
  4095. #~ 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."
  4096. #~ msgctxt "wireframe_roof_inset description"
  4097. #~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  4098. #~ msgstr "İçerideki ana tavan hattından bağlantı yaparken kapatılan mesafe. Sadece kablo yazdırmaya uygulanır."
  4099. #~ msgctxt "wireframe_roof_drag_along description"
  4100. #~ 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."
  4101. #~ 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."
  4102. #~ msgctxt "wireframe_roof_fall_down description"
  4103. #~ 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."
  4104. #~ 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."
  4105. #~ msgctxt "wireframe_height description"
  4106. #~ 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."
  4107. #~ 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."
  4108. #~ msgctxt "wireframe_roof_outer_delay description"
  4109. #~ 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."
  4110. #~ 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."
  4111. #~ msgctxt "support_tree_angle label"
  4112. #~ msgid "Tree Support Branch Angle"
  4113. #~ msgstr "Ağaç Destek Dal Açısı"
  4114. #~ msgctxt "support_tree_branch_diameter label"
  4115. #~ msgid "Tree Support Branch Diameter"
  4116. #~ msgstr "Ağaç Destek Dalının Çapı"
  4117. #~ msgctxt "support_tree_branch_diameter_angle label"
  4118. #~ msgid "Tree Support Branch Diameter Angle"
  4119. #~ msgstr "Ağaç Destek Dalının Çap Açısı"
  4120. #~ msgctxt "support_tree_branch_distance label"
  4121. #~ msgid "Tree Support Branch Distance"
  4122. #~ msgstr "Ağaç Destek Dal Mesafesi"
  4123. #~ msgctxt "support_tree_collision_resolution label"
  4124. #~ msgid "Tree Support Collision Resolution"
  4125. #~ msgstr "Ağaç Destek Çarpışma Çözünürlüğü"
  4126. #~ msgctxt "support_tree_max_diameter label"
  4127. #~ msgid "Tree Support Trunk Diameter"
  4128. #~ msgstr "Ağaç Desteği Gövde Çapı"
  4129. #~ msgctxt "wireframe_bottom_delay label"
  4130. #~ msgid "WP Bottom Delay"
  4131. #~ msgstr "WP Alt Gecikme"
  4132. #~ msgctxt "wireframe_printspeed_bottom label"
  4133. #~ msgid "WP Bottom Printing Speed"
  4134. #~ msgstr "WP Alt Yazdırma Hızı"
  4135. #~ msgctxt "wireframe_flow_connection label"
  4136. #~ msgid "WP Connection Flow"
  4137. #~ msgstr "WP Bağlantı Akışı"
  4138. #~ msgctxt "wireframe_height label"
  4139. #~ msgid "WP Connection Height"
  4140. #~ msgstr "WP Bağlantı Yüksekliği"
  4141. #~ msgctxt "wireframe_printspeed_down label"
  4142. #~ msgid "WP Downward Printing Speed"
  4143. #~ msgstr "WP Aşağı Doğru Yazdırma Hızı"
  4144. #~ msgctxt "wireframe_drag_along label"
  4145. #~ msgid "WP Drag Along"
  4146. #~ msgstr "WP Sürüklenme"
  4147. #~ msgctxt "wireframe_up_half_speed label"
  4148. #~ msgid "WP Ease Upward"
  4149. #~ msgstr "WP Kolay Yukarı Çıkma"
  4150. #~ msgctxt "wireframe_fall_down label"
  4151. #~ msgid "WP Fall Down"
  4152. #~ msgstr "WP Aşağı İnme"
  4153. #~ msgctxt "wireframe_flat_delay label"
  4154. #~ msgid "WP Flat Delay"
  4155. #~ msgstr "WP Düz Gecikme"
  4156. #~ msgctxt "wireframe_flow_flat label"
  4157. #~ msgid "WP Flat Flow"
  4158. #~ msgstr "WP Düz Akışı"
  4159. #~ msgctxt "wireframe_flow label"
  4160. #~ msgid "WP Flow"
  4161. #~ msgstr "WP Akışı"
  4162. #~ msgctxt "wireframe_printspeed_flat label"
  4163. #~ msgid "WP Horizontal Printing Speed"
  4164. #~ msgstr "WP Yatay Yazdırma Hızı"
  4165. #~ msgctxt "wireframe_top_jump label"
  4166. #~ msgid "WP Knot Size"
  4167. #~ msgstr "WP Düğüm Boyutu"
  4168. #~ msgctxt "wireframe_nozzle_clearance label"
  4169. #~ msgid "WP Nozzle Clearance"
  4170. #~ msgstr "WP Nozül Açıklığı"
  4171. #~ msgctxt "wireframe_roof_drag_along label"
  4172. #~ msgid "WP Roof Drag Along"
  4173. #~ msgstr "WP Tavandan Sürüklenme"
  4174. #~ msgctxt "wireframe_roof_fall_down label"
  4175. #~ msgid "WP Roof Fall Down"
  4176. #~ msgstr "WP Tavandan Aşağı İnme"
  4177. #~ msgctxt "wireframe_roof_inset label"
  4178. #~ msgid "WP Roof Inset Distance"
  4179. #~ msgstr "WP Tavan İlave Mesafesi"
  4180. #~ msgctxt "wireframe_roof_outer_delay label"
  4181. #~ msgid "WP Roof Outer Delay"
  4182. #~ msgstr "WP Tavan Dış Gecikmesi"
  4183. #~ msgctxt "wireframe_printspeed label"
  4184. #~ msgid "WP Speed"
  4185. #~ msgstr "WP Hızı"
  4186. #~ msgctxt "wireframe_straight_before_down label"
  4187. #~ msgid "WP Straighten Downward Lines"
  4188. #~ msgstr "WP Aşağı Yöndeki Hatları Güçlendirme"
  4189. #~ msgctxt "wireframe_strategy label"
  4190. #~ msgid "WP Strategy"
  4191. #~ msgstr "WP Stratejisi"
  4192. #~ msgctxt "wireframe_top_delay label"
  4193. #~ msgid "WP Top Delay"
  4194. #~ msgstr "WP Üst Gecikme"
  4195. #~ msgctxt "wireframe_printspeed_up label"
  4196. #~ msgid "WP Upward Printing Speed"
  4197. #~ msgstr "WP Yukarı Doğru Yazdırma Hızı"
  4198. #~ msgctxt "wireframe_enabled label"
  4199. #~ msgid "Wire Printing"
  4200. #~ msgstr "Kablo Yazdırma"