fdmprinter.def.json.po 346 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331
  1. # Cura
  2. # Copyright (C) 2021 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 4.11\n"
  8. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  9. "POT-Creation-Date: 2021-08-11 09:58+0000\n"
  10. "PO-Revision-Date: 2021-04-16 15:03+0200\n"
  11. "Last-Translator: Lionbridge <info@lionbridge.com>\n"
  12. "Language-Team: Turkish <info@lionbridge.com>, Turkish <info@bothof.nl>\n"
  13. "Language: tr_TR\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Generator: Poedit 2.4.1\n"
  18. #: fdmprinter.def.json
  19. msgctxt "machine_settings label"
  20. msgid "Machine"
  21. msgstr "Makine"
  22. #: fdmprinter.def.json
  23. msgctxt "machine_settings description"
  24. msgid "Machine specific settings"
  25. msgstr "Makine özel ayarları"
  26. #: fdmprinter.def.json
  27. msgctxt "machine_name label"
  28. msgid "Machine Type"
  29. msgstr "Makine Türü"
  30. #: fdmprinter.def.json
  31. msgctxt "machine_name description"
  32. msgid "The name of your 3D printer model."
  33. msgstr "3B yazıcı modelinin adı."
  34. #: fdmprinter.def.json
  35. msgctxt "machine_show_variants label"
  36. msgid "Show Machine Variants"
  37. msgstr "Makine Varyantlarını Göster"
  38. #: fdmprinter.def.json
  39. msgctxt "machine_show_variants description"
  40. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  41. msgstr "Ayrı json dosyalarında belirtilen bu makinenin farklı varyantlarının gösterilip gösterilmemesi."
  42. #: fdmprinter.def.json
  43. msgctxt "machine_start_gcode label"
  44. msgid "Start G-code"
  45. msgstr "G-code’u Başlat"
  46. #: fdmprinter.def.json
  47. msgctxt "machine_start_gcode description"
  48. msgid ""
  49. "G-code commands to be executed at the very start - separated by \n"
  50. "."
  51. msgstr ""
  52. "ile ayrılan, başlangıçta yürütülecek G-code komutları\n"
  53. "."
  54. #: fdmprinter.def.json
  55. msgctxt "machine_end_gcode label"
  56. msgid "End G-code"
  57. msgstr "G-code’u Sonlandır"
  58. #: fdmprinter.def.json
  59. msgctxt "machine_end_gcode description"
  60. msgid ""
  61. "G-code commands to be executed at the very end - separated by \n"
  62. "."
  63. msgstr ""
  64. "ile ayrılan, bitişte yürütülecek G-code komutları\n"
  65. "."
  66. #: fdmprinter.def.json
  67. msgctxt "material_guid label"
  68. msgid "Material GUID"
  69. msgstr "GUID malzeme"
  70. #: fdmprinter.def.json
  71. msgctxt "material_guid description"
  72. msgid "GUID of the material. This is set automatically."
  73. msgstr "Malzemedeki GUID Otomatik olarak ayarlanır."
  74. #: fdmprinter.def.json
  75. msgctxt "material_diameter label"
  76. msgid "Diameter"
  77. msgstr "Çap"
  78. #: fdmprinter.def.json
  79. msgctxt "material_diameter description"
  80. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  81. msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin."
  82. #: fdmprinter.def.json
  83. msgctxt "material_bed_temp_wait label"
  84. msgid "Wait for Build Plate Heatup"
  85. msgstr "Yapı Levhasının Isınmasını Bekle"
  86. #: fdmprinter.def.json
  87. msgctxt "material_bed_temp_wait description"
  88. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  89. msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleme komutu ekleyip eklememe."
  90. #: fdmprinter.def.json
  91. msgctxt "material_print_temp_wait label"
  92. msgid "Wait for Nozzle Heatup"
  93. msgstr "Nozülün Isınmasını Bekle"
  94. #: fdmprinter.def.json
  95. msgctxt "material_print_temp_wait description"
  96. msgid "Whether to wait until the nozzle temperature is reached at the start."
  97. msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleyip beklememe."
  98. #: fdmprinter.def.json
  99. msgctxt "material_print_temp_prepend label"
  100. msgid "Include Material Temperatures"
  101. msgstr "Malzeme Sıcaklıklarını Ekle"
  102. #: fdmprinter.def.json
  103. msgctxt "material_print_temp_prepend description"
  104. 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."
  105. 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."
  106. #: fdmprinter.def.json
  107. msgctxt "material_bed_temp_prepend label"
  108. msgid "Include Build Plate Temperature"
  109. msgstr "Yapı Levhası Sıcaklığını Ekle"
  110. #: fdmprinter.def.json
  111. msgctxt "material_bed_temp_prepend description"
  112. 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."
  113. 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."
  114. #: fdmprinter.def.json
  115. msgctxt "machine_width label"
  116. msgid "Machine Width"
  117. msgstr "Makine Genişliği"
  118. #: fdmprinter.def.json
  119. msgctxt "machine_width description"
  120. msgid "The width (X-direction) of the printable area."
  121. msgstr "Yazdırılabilir alan genişliği (X yönü)."
  122. #: fdmprinter.def.json
  123. msgctxt "machine_depth label"
  124. msgid "Machine Depth"
  125. msgstr "Makine Derinliği"
  126. #: fdmprinter.def.json
  127. msgctxt "machine_depth description"
  128. msgid "The depth (Y-direction) of the printable area."
  129. msgstr "Yazdırılabilir alan derinliği (Y yönü)."
  130. #: fdmprinter.def.json
  131. msgctxt "machine_shape label"
  132. msgid "Build Plate Shape"
  133. msgstr "Yapı Levhası Şekli"
  134. #: fdmprinter.def.json
  135. msgctxt "machine_shape description"
  136. msgid "The shape of the build plate without taking unprintable areas into account."
  137. msgstr "Yazdırılamayan alanların haricinde yapı levhasının şekli."
  138. #: fdmprinter.def.json
  139. msgctxt "machine_shape option rectangular"
  140. msgid "Rectangular"
  141. msgstr "Dikdörtgen"
  142. #: fdmprinter.def.json
  143. msgctxt "machine_shape option elliptic"
  144. msgid "Elliptic"
  145. msgstr "Eliptik"
  146. #: fdmprinter.def.json
  147. msgctxt "machine_buildplate_type label"
  148. msgid "Build Plate Material"
  149. msgstr "Yapı Levhası Malzemesi"
  150. #: fdmprinter.def.json
  151. msgctxt "machine_buildplate_type description"
  152. msgid "The material of the build plate installed on the printer."
  153. msgstr "Yazıcıya takılı yapı levhasının malzemesi."
  154. #: fdmprinter.def.json
  155. msgctxt "machine_buildplate_type option glass"
  156. msgid "Glass"
  157. msgstr "Cam"
  158. #: fdmprinter.def.json
  159. msgctxt "machine_buildplate_type option aluminum"
  160. msgid "Aluminum"
  161. msgstr "Alüminyum"
  162. #: fdmprinter.def.json
  163. msgctxt "machine_height label"
  164. msgid "Machine Height"
  165. msgstr "Makine Yüksekliği"
  166. #: fdmprinter.def.json
  167. msgctxt "machine_height description"
  168. msgid "The height (Z-direction) of the printable area."
  169. msgstr "Yazdırılabilir alan yüksekliği (Z yönü)."
  170. #: fdmprinter.def.json
  171. msgctxt "machine_heated_bed label"
  172. msgid "Has Heated Build Plate"
  173. msgstr "Isıtılmış Yapı Levhası İçerir"
  174. #: fdmprinter.def.json
  175. msgctxt "machine_heated_bed description"
  176. msgid "Whether the machine has a heated build plate present."
  177. msgstr "Makinenin mevcut yapı levhasını ısıtıp ısıtmadığı."
  178. #: fdmprinter.def.json
  179. msgctxt "machine_heated_build_volume label"
  180. msgid "Has Build Volume Temperature Stabilization"
  181. msgstr "Yapı Hacmi Sıcaklığı Dengesi Mevcut"
  182. #: fdmprinter.def.json
  183. msgctxt "machine_heated_build_volume description"
  184. msgid "Whether the machine is able to stabilize the build volume temperature."
  185. msgstr "Makinenin yapı hacmi sıcaklığını dengeleyip dengelemediği."
  186. #: fdmprinter.def.json
  187. msgctxt "machine_always_write_active_tool label"
  188. msgid "Always Write Active Tool"
  189. msgstr "Her Zaman Aktif Aracı Yaz"
  190. #: fdmprinter.def.json
  191. msgctxt "machine_always_write_active_tool description"
  192. 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."
  193. 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."
  194. #: fdmprinter.def.json
  195. msgctxt "machine_center_is_zero label"
  196. msgid "Is Center Origin"
  197. msgstr "Merkez Nokta"
  198. #: fdmprinter.def.json
  199. msgctxt "machine_center_is_zero description"
  200. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  201. msgstr "Yazıcı sıfır noktasının X/Y koordinatlarının yazdırılabilir alanın merkezinde olup olmadığı."
  202. #: fdmprinter.def.json
  203. msgctxt "machine_extruder_count label"
  204. msgid "Number of Extruders"
  205. msgstr "Ekstrüder Sayısı"
  206. #: fdmprinter.def.json
  207. msgctxt "machine_extruder_count description"
  208. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  209. msgstr "Ekstruder dişli çarklarının sayısı. Ekstruder dişli çarkı besleyici, bowden tüpü ve nozülden oluşur."
  210. #: fdmprinter.def.json
  211. msgctxt "extruders_enabled_count label"
  212. msgid "Number of Extruders That Are Enabled"
  213. msgstr "Etkinleştirilmiş Ekstruder Sayısı"
  214. #: fdmprinter.def.json
  215. msgctxt "extruders_enabled_count description"
  216. msgid "Number of extruder trains that are enabled; automatically set in software"
  217. msgstr "Etkinleştirilmiş ekstruder dişli çarklarının sayısı; yazılımda otomatik olarak ayarlanır"
  218. #: fdmprinter.def.json
  219. msgctxt "machine_nozzle_tip_outer_diameter label"
  220. msgid "Outer Nozzle Diameter"
  221. msgstr "Dış Nozül Çapı"
  222. #: fdmprinter.def.json
  223. msgctxt "machine_nozzle_tip_outer_diameter description"
  224. msgid "The outer diameter of the tip of the nozzle."
  225. msgstr "Nozül ucunun dış çapı."
  226. #: fdmprinter.def.json
  227. msgctxt "machine_nozzle_head_distance label"
  228. msgid "Nozzle Length"
  229. msgstr "Nozül Uzunluğu"
  230. #: fdmprinter.def.json
  231. msgctxt "machine_nozzle_head_distance description"
  232. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  233. msgstr "Nozül ucu ve yazıcı başlığının en alt parçası arasındaki yükseklik farkı."
  234. #: fdmprinter.def.json
  235. msgctxt "machine_nozzle_expansion_angle label"
  236. msgid "Nozzle Angle"
  237. msgstr "Nozül Açısı"
  238. #: fdmprinter.def.json
  239. msgctxt "machine_nozzle_expansion_angle description"
  240. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  241. msgstr "Yatay düzlem ve nozül ucunun sağ üzerinde bulunan konik parça arasındaki açı."
  242. #: fdmprinter.def.json
  243. msgctxt "machine_heat_zone_length label"
  244. msgid "Heat Zone Length"
  245. msgstr "Isı Bölgesi Uzunluğu"
  246. #: fdmprinter.def.json
  247. msgctxt "machine_heat_zone_length description"
  248. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  249. msgstr "Nozülden gelen ısının filamana aktarıldığı nozül ucuna olan mesafe."
  250. #: fdmprinter.def.json
  251. msgctxt "machine_nozzle_temp_enabled label"
  252. msgid "Enable Nozzle Temperature Control"
  253. msgstr "Nozül Sıcaklığı Kontrolünü Etkinleştir"
  254. #: fdmprinter.def.json
  255. msgctxt "machine_nozzle_temp_enabled description"
  256. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  257. 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."
  258. #: fdmprinter.def.json
  259. msgctxt "machine_nozzle_heat_up_speed label"
  260. msgid "Heat Up Speed"
  261. msgstr "Isınma Hızı"
  262. #: fdmprinter.def.json
  263. msgctxt "machine_nozzle_heat_up_speed description"
  264. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  265. 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)."
  266. #: fdmprinter.def.json
  267. msgctxt "machine_nozzle_cool_down_speed label"
  268. msgid "Cool Down Speed"
  269. msgstr "Soğuma hızı"
  270. #: fdmprinter.def.json
  271. msgctxt "machine_nozzle_cool_down_speed description"
  272. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  273. 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)."
  274. #: fdmprinter.def.json
  275. msgctxt "machine_min_cool_heat_time_window label"
  276. msgid "Minimal Time Standby Temperature"
  277. msgstr "Minimum Sürede Bekleme Sıcaklığı"
  278. #: fdmprinter.def.json
  279. msgctxt "machine_min_cool_heat_time_window description"
  280. 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."
  281. 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."
  282. #: fdmprinter.def.json
  283. msgctxt "machine_gcode_flavor label"
  284. msgid "G-code Flavor"
  285. msgstr "G-code türü"
  286. #: fdmprinter.def.json
  287. msgctxt "machine_gcode_flavor description"
  288. msgid "The type of g-code to be generated."
  289. msgstr "Oluşturulacak g-code türü."
  290. #: fdmprinter.def.json
  291. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  292. msgid "Marlin"
  293. msgstr "Marlin"
  294. #: fdmprinter.def.json
  295. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  296. msgid "Marlin (Volumetric)"
  297. msgstr "Marlin (Volümetrik)"
  298. #: fdmprinter.def.json
  299. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  300. msgid "RepRap"
  301. msgstr "RepRap"
  302. #: fdmprinter.def.json
  303. msgctxt "machine_gcode_flavor option UltiGCode"
  304. msgid "Ultimaker 2"
  305. msgstr "Ultimaker 2"
  306. #: fdmprinter.def.json
  307. msgctxt "machine_gcode_flavor option Griffin"
  308. msgid "Griffin"
  309. msgstr "Griffin"
  310. #: fdmprinter.def.json
  311. msgctxt "machine_gcode_flavor option Makerbot"
  312. msgid "Makerbot"
  313. msgstr "Makerbot"
  314. #: fdmprinter.def.json
  315. msgctxt "machine_gcode_flavor option BFB"
  316. msgid "Bits from Bytes"
  317. msgstr "Bits from Bytes"
  318. #: fdmprinter.def.json
  319. msgctxt "machine_gcode_flavor option MACH3"
  320. msgid "Mach3"
  321. msgstr "Mach3"
  322. #: fdmprinter.def.json
  323. msgctxt "machine_gcode_flavor option Repetier"
  324. msgid "Repetier"
  325. msgstr "Repetier"
  326. #: fdmprinter.def.json
  327. msgctxt "machine_firmware_retract label"
  328. msgid "Firmware Retraction"
  329. msgstr "Üretici Yazılımı Geri Çekme"
  330. #: fdmprinter.def.json
  331. msgctxt "machine_firmware_retract description"
  332. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  333. 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ğı."
  334. #: fdmprinter.def.json
  335. msgctxt "machine_extruders_share_heater label"
  336. msgid "Extruders Share Heater"
  337. msgstr "Ekstrüderler Isıtıcıyı Paylaşır"
  338. #: fdmprinter.def.json
  339. msgctxt "machine_extruders_share_heater description"
  340. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  341. msgstr "Ekstrüderlerin tek bir ısıtıcıyı mı paylaşacağı yoksa her bir ekstrüderin kendi ısıtıcısı mı olacağı."
  342. #: fdmprinter.def.json
  343. msgctxt "machine_extruders_share_nozzle label"
  344. msgid "Extruders Share Nozzle"
  345. msgstr "Ekstrüder Nozül Paylaşımı"
  346. #: fdmprinter.def.json
  347. msgctxt "machine_extruders_share_nozzle description"
  348. 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."
  349. 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."
  350. #: fdmprinter.def.json
  351. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  352. msgid "Shared Nozzle Initial Retraction"
  353. msgstr "Paylaşılan Nozül İlk Geri Çekme"
  354. #: fdmprinter.def.json
  355. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  356. 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."
  357. 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."
  358. #: fdmprinter.def.json
  359. msgctxt "machine_disallowed_areas label"
  360. msgid "Disallowed Areas"
  361. msgstr "İzin Verilmeyen Alanlar"
  362. #: fdmprinter.def.json
  363. msgctxt "machine_disallowed_areas description"
  364. msgid "A list of polygons with areas the print head is not allowed to enter."
  365. msgstr "Yazıcı başlığının giremediği alanları olan poligon listesi."
  366. #: fdmprinter.def.json
  367. msgctxt "nozzle_disallowed_areas label"
  368. msgid "Nozzle Disallowed Areas"
  369. msgstr "Nozül İzni Olmayan Alanlar"
  370. #: fdmprinter.def.json
  371. msgctxt "nozzle_disallowed_areas description"
  372. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  373. msgstr "Nozülün girmesine izin verilmeyen alanlara sahip poligon listesi."
  374. #: fdmprinter.def.json
  375. msgctxt "machine_head_with_fans_polygon label"
  376. msgid "Machine Head & Fan Polygon"
  377. msgstr "Makinenin Başlığı ve Fan Poligonu"
  378. #: fdmprinter.def.json
  379. msgctxt "machine_head_with_fans_polygon description"
  380. msgid "A 2D silhouette of the print head (fan caps included)."
  381. msgstr "Yazıcı başlığının 2B taslağı (fan başlıkları dahil)."
  382. #: fdmprinter.def.json
  383. msgctxt "gantry_height label"
  384. msgid "Gantry Height"
  385. msgstr "Portal Yüksekliği"
  386. #: fdmprinter.def.json
  387. msgctxt "gantry_height description"
  388. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  389. msgstr "Nozül ucu ve portal sistemi (X ve Y aksları) arasındaki yükseklik farkı."
  390. #: fdmprinter.def.json
  391. msgctxt "machine_nozzle_id label"
  392. msgid "Nozzle ID"
  393. msgstr "Nozül Kimliği"
  394. #: fdmprinter.def.json
  395. msgctxt "machine_nozzle_id description"
  396. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  397. msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi."
  398. #: fdmprinter.def.json
  399. msgctxt "machine_nozzle_size label"
  400. msgid "Nozzle Diameter"
  401. msgstr "Nozül Çapı"
  402. #: fdmprinter.def.json
  403. msgctxt "machine_nozzle_size description"
  404. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  405. msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin."
  406. #: fdmprinter.def.json
  407. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  408. msgid "Offset with Extruder"
  409. msgstr "Ekstruder Ofseti"
  410. #: fdmprinter.def.json
  411. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  412. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  413. msgstr "Ekstrüder ofsetini koordinat sistemine uygulayın. Tüm ekstrüderleri etkiler."
  414. #: fdmprinter.def.json
  415. msgctxt "extruder_prime_pos_z label"
  416. msgid "Extruder Prime Z Position"
  417. msgstr "Ekstruder İlk Z konumu"
  418. #: fdmprinter.def.json
  419. msgctxt "extruder_prime_pos_z description"
  420. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  421. msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı."
  422. #: fdmprinter.def.json
  423. msgctxt "extruder_prime_pos_abs label"
  424. msgid "Absolute Extruder Prime Position"
  425. msgstr "Mutlak Ekstruder İlk Konumu"
  426. #: fdmprinter.def.json
  427. msgctxt "extruder_prime_pos_abs description"
  428. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  429. msgstr "Ekstruder ilk konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın."
  430. #: fdmprinter.def.json
  431. msgctxt "machine_max_feedrate_x label"
  432. msgid "Maximum Speed X"
  433. msgstr "Maksimum X Hızı"
  434. #: fdmprinter.def.json
  435. msgctxt "machine_max_feedrate_x description"
  436. msgid "The maximum speed for the motor of the X-direction."
  437. msgstr "X yönü motoru için maksimum hız."
  438. #: fdmprinter.def.json
  439. msgctxt "machine_max_feedrate_y label"
  440. msgid "Maximum Speed Y"
  441. msgstr "Maksimum Y Hızı"
  442. #: fdmprinter.def.json
  443. msgctxt "machine_max_feedrate_y description"
  444. msgid "The maximum speed for the motor of the Y-direction."
  445. msgstr "Y yönü motoru için maksimum hız."
  446. #: fdmprinter.def.json
  447. msgctxt "machine_max_feedrate_z label"
  448. msgid "Maximum Speed Z"
  449. msgstr "Maksimum Z Hızı"
  450. #: fdmprinter.def.json
  451. msgctxt "machine_max_feedrate_z description"
  452. msgid "The maximum speed for the motor of the Z-direction."
  453. msgstr "Z yönü motoru için maksimum hız."
  454. #: fdmprinter.def.json
  455. msgctxt "machine_max_feedrate_e label"
  456. msgid "Maximum Feedrate"
  457. msgstr "Maksimum besleme hızı"
  458. #: fdmprinter.def.json
  459. msgctxt "machine_max_feedrate_e description"
  460. msgid "The maximum speed of the filament."
  461. msgstr "Filamanın maksimum hızı."
  462. #: fdmprinter.def.json
  463. msgctxt "machine_max_acceleration_x label"
  464. msgid "Maximum Acceleration X"
  465. msgstr "Maksimum X İvmesi"
  466. #: fdmprinter.def.json
  467. msgctxt "machine_max_acceleration_x description"
  468. msgid "Maximum acceleration for the motor of the X-direction"
  469. msgstr "X yönü motoru için maksimum ivme"
  470. #: fdmprinter.def.json
  471. msgctxt "machine_max_acceleration_y label"
  472. msgid "Maximum Acceleration Y"
  473. msgstr "Maksimum Y İvmesi"
  474. #: fdmprinter.def.json
  475. msgctxt "machine_max_acceleration_y description"
  476. msgid "Maximum acceleration for the motor of the Y-direction."
  477. msgstr "Y yönü motoru için maksimum ivme."
  478. #: fdmprinter.def.json
  479. msgctxt "machine_max_acceleration_z label"
  480. msgid "Maximum Acceleration Z"
  481. msgstr "Maksimum Z İvmesi"
  482. #: fdmprinter.def.json
  483. msgctxt "machine_max_acceleration_z description"
  484. msgid "Maximum acceleration for the motor of the Z-direction."
  485. msgstr "Z yönü motoru için maksimum ivme."
  486. #: fdmprinter.def.json
  487. msgctxt "machine_max_acceleration_e label"
  488. msgid "Maximum Filament Acceleration"
  489. msgstr "Maksimum Filaman İvmesi"
  490. #: fdmprinter.def.json
  491. msgctxt "machine_max_acceleration_e description"
  492. msgid "Maximum acceleration for the motor of the filament."
  493. msgstr "Filaman motoru için maksimum ivme."
  494. #: fdmprinter.def.json
  495. msgctxt "machine_acceleration label"
  496. msgid "Default Acceleration"
  497. msgstr "Varsayılan İvme"
  498. #: fdmprinter.def.json
  499. msgctxt "machine_acceleration description"
  500. msgid "The default acceleration of print head movement."
  501. msgstr "Yazıcı başlığı hareketinin varsayılan ivmesi."
  502. #: fdmprinter.def.json
  503. msgctxt "machine_max_jerk_xy label"
  504. msgid "Default X-Y Jerk"
  505. msgstr "Varsayılan X-Y Salınımı"
  506. #: fdmprinter.def.json
  507. msgctxt "machine_max_jerk_xy description"
  508. msgid "Default jerk for movement in the horizontal plane."
  509. msgstr "Yatay düzlemdeki hareketler için varsayılan salınım."
  510. #: fdmprinter.def.json
  511. msgctxt "machine_max_jerk_z label"
  512. msgid "Default Z Jerk"
  513. msgstr "Varsayılan Z Salınımı"
  514. #: fdmprinter.def.json
  515. msgctxt "machine_max_jerk_z description"
  516. msgid "Default jerk for the motor of the Z-direction."
  517. msgstr "Z yönü motoru için varsayılan salınım."
  518. #: fdmprinter.def.json
  519. msgctxt "machine_max_jerk_e label"
  520. msgid "Default Filament Jerk"
  521. msgstr "Varsayılan Filaman Salınımı"
  522. #: fdmprinter.def.json
  523. msgctxt "machine_max_jerk_e description"
  524. msgid "Default jerk for the motor of the filament."
  525. msgstr "Filaman motoru için varsayılan salınım."
  526. #: fdmprinter.def.json
  527. msgctxt "machine_steps_per_mm_x label"
  528. msgid "Steps per Millimeter (X)"
  529. msgstr "Milimetre Başına Adım (X)"
  530. #: fdmprinter.def.json
  531. msgctxt "machine_steps_per_mm_x description"
  532. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  533. msgstr "Kademeli motorun kaç adımının, X yönünde bir milimetre hareketle sonuçlanacağı."
  534. #: fdmprinter.def.json
  535. msgctxt "machine_steps_per_mm_y label"
  536. msgid "Steps per Millimeter (Y)"
  537. msgstr "Milimetre Başına Adım (Y)"
  538. #: fdmprinter.def.json
  539. msgctxt "machine_steps_per_mm_y description"
  540. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  541. msgstr "Kademeli motorun kaç adımının, Y yönünde bir milimetre hareketle sonuçlanacağı."
  542. #: fdmprinter.def.json
  543. msgctxt "machine_steps_per_mm_z label"
  544. msgid "Steps per Millimeter (Z)"
  545. msgstr "Milimetre Başına Adım (Z)"
  546. #: fdmprinter.def.json
  547. msgctxt "machine_steps_per_mm_z description"
  548. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  549. msgstr "Kademeli motorun kaç adımının, Z yönünde bir milimetre hareketle sonuçlanacağı."
  550. #: fdmprinter.def.json
  551. msgctxt "machine_steps_per_mm_e label"
  552. msgid "Steps per Millimeter (E)"
  553. msgstr "Milimetre Başına Adım (E)"
  554. #: fdmprinter.def.json
  555. msgctxt "machine_steps_per_mm_e description"
  556. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  557. msgstr "Kademeli motorların kaç adımının besleme ünitesi tekerleğini çevresi etrafında bir milimetre hareket ettirmekle sonuçlanacağı."
  558. #: fdmprinter.def.json
  559. msgctxt "machine_endstop_positive_direction_x label"
  560. msgid "X Endstop in Positive Direction"
  561. msgstr "X Kapaması Pozitif Yönde"
  562. #: fdmprinter.def.json
  563. msgctxt "machine_endstop_positive_direction_x description"
  564. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  565. 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."
  566. #: fdmprinter.def.json
  567. msgctxt "machine_endstop_positive_direction_y label"
  568. msgid "Y Endstop in Positive Direction"
  569. msgstr "Y Kapaması Pozitif Yönde"
  570. #: fdmprinter.def.json
  571. msgctxt "machine_endstop_positive_direction_y description"
  572. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  573. 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."
  574. #: fdmprinter.def.json
  575. msgctxt "machine_endstop_positive_direction_z label"
  576. msgid "Z Endstop in Positive Direction"
  577. msgstr "Z Kapaması Pozitif Yönde"
  578. #: fdmprinter.def.json
  579. msgctxt "machine_endstop_positive_direction_z description"
  580. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  581. 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."
  582. #: fdmprinter.def.json
  583. msgctxt "machine_minimum_feedrate label"
  584. msgid "Minimum Feedrate"
  585. msgstr "Minimum Besleme Hızı"
  586. #: fdmprinter.def.json
  587. msgctxt "machine_minimum_feedrate description"
  588. msgid "The minimal movement speed of the print head."
  589. msgstr "Yazıcı başlığının minimum hareket hızı."
  590. #: fdmprinter.def.json
  591. msgctxt "machine_feeder_wheel_diameter label"
  592. msgid "Feeder Wheel Diameter"
  593. msgstr "Besleyici Çark Çapı"
  594. #: fdmprinter.def.json
  595. msgctxt "machine_feeder_wheel_diameter description"
  596. msgid "The diameter of the wheel that drives the material in the feeder."
  597. msgstr "Besleyiciye malzeme veren çarkın çapı."
  598. #: fdmprinter.def.json
  599. msgctxt "resolution label"
  600. msgid "Quality"
  601. msgstr "Kalite"
  602. #: fdmprinter.def.json
  603. msgctxt "resolution description"
  604. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  605. 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"
  606. #: fdmprinter.def.json
  607. msgctxt "layer_height label"
  608. msgid "Layer Height"
  609. msgstr "Katman Yüksekliği"
  610. #: fdmprinter.def.json
  611. msgctxt "layer_height description"
  612. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  613. 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."
  614. #: fdmprinter.def.json
  615. msgctxt "layer_height_0 label"
  616. msgid "Initial Layer Height"
  617. msgstr "İlk Katman Yüksekliği"
  618. #: fdmprinter.def.json
  619. msgctxt "layer_height_0 description"
  620. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  621. msgstr "İlk katmanın milimetre cinsinden yüksekliği. Kalın ilk katmanlar yapı levhasına yapışmayı kolaylaştırır."
  622. #: fdmprinter.def.json
  623. msgctxt "line_width label"
  624. msgid "Line Width"
  625. msgstr "Hat Genişliği"
  626. #: fdmprinter.def.json
  627. msgctxt "line_width description"
  628. 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."
  629. 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."
  630. #: fdmprinter.def.json
  631. msgctxt "wall_line_width label"
  632. msgid "Wall Line Width"
  633. msgstr "Duvar Hattı Genişliği"
  634. #: fdmprinter.def.json
  635. msgctxt "wall_line_width description"
  636. msgid "Width of a single wall line."
  637. msgstr "Tek bir duvar hattının genişliği."
  638. #: fdmprinter.def.json
  639. msgctxt "wall_line_width_0 label"
  640. msgid "Outer Wall Line Width"
  641. msgstr "Dış Duvar Hattı Genişliği"
  642. #: fdmprinter.def.json
  643. msgctxt "wall_line_width_0 description"
  644. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  645. 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."
  646. #: fdmprinter.def.json
  647. msgctxt "wall_line_width_x label"
  648. msgid "Inner Wall(s) Line Width"
  649. msgstr "İç Duvar(lar) Hattı Genişliği"
  650. #: fdmprinter.def.json
  651. msgctxt "wall_line_width_x description"
  652. msgid "Width of a single wall line for all wall lines except the outermost one."
  653. msgstr "En dış duvar haricindeki tüm duvar hatları için tek bir duvar hattı genişliği."
  654. #: fdmprinter.def.json
  655. msgctxt "skin_line_width label"
  656. msgid "Top/Bottom Line Width"
  657. msgstr "Üst/Alt Hat Genişliği"
  658. #: fdmprinter.def.json
  659. msgctxt "skin_line_width description"
  660. msgid "Width of a single top/bottom line."
  661. msgstr "Tek bir üst/alt hattın genişliği."
  662. #: fdmprinter.def.json
  663. msgctxt "infill_line_width label"
  664. msgid "Infill Line Width"
  665. msgstr "Dolgu Hattı Genişliği"
  666. #: fdmprinter.def.json
  667. msgctxt "infill_line_width description"
  668. msgid "Width of a single infill line."
  669. msgstr "Tek bir dolgu hattının genişliği."
  670. #: fdmprinter.def.json
  671. msgctxt "skirt_brim_line_width label"
  672. msgid "Skirt/Brim Line Width"
  673. msgstr "Etek/Kenar Hattı Genişliği"
  674. #: fdmprinter.def.json
  675. msgctxt "skirt_brim_line_width description"
  676. msgid "Width of a single skirt or brim line."
  677. msgstr "Tek bir etek veya kenar hattının genişliği."
  678. #: fdmprinter.def.json
  679. msgctxt "support_line_width label"
  680. msgid "Support Line Width"
  681. msgstr "Destek Hattı Genişliği"
  682. #: fdmprinter.def.json
  683. msgctxt "support_line_width description"
  684. msgid "Width of a single support structure line."
  685. msgstr "Tek bir destek yapısı hattının genişliği."
  686. #: fdmprinter.def.json
  687. msgctxt "support_interface_line_width label"
  688. msgid "Support Interface Line Width"
  689. msgstr "Destek Arayüz Hattı Genişliği"
  690. #: fdmprinter.def.json
  691. msgctxt "support_interface_line_width description"
  692. msgid "Width of a single line of support roof or floor."
  693. msgstr "Destek çatısı veya zemininin tek çizgi genişliği."
  694. #: fdmprinter.def.json
  695. msgctxt "support_roof_line_width label"
  696. msgid "Support Roof Line Width"
  697. msgstr "Destek Çatısı Çizgi Genişliği"
  698. #: fdmprinter.def.json
  699. msgctxt "support_roof_line_width description"
  700. msgid "Width of a single support roof line."
  701. msgstr "Tek bir destek çatısının çizgi genişliği."
  702. #: fdmprinter.def.json
  703. msgctxt "support_bottom_line_width label"
  704. msgid "Support Floor Line Width"
  705. msgstr "Destek Zemini Çizgi Genişliği"
  706. #: fdmprinter.def.json
  707. msgctxt "support_bottom_line_width description"
  708. msgid "Width of a single support floor line."
  709. msgstr "Tek bir destek zemininin çizgi genişliği."
  710. #: fdmprinter.def.json
  711. msgctxt "prime_tower_line_width label"
  712. msgid "Prime Tower Line Width"
  713. msgstr "İlk Direk Hattı Genişliği"
  714. #: fdmprinter.def.json
  715. msgctxt "prime_tower_line_width description"
  716. msgid "Width of a single prime tower line."
  717. msgstr "Tek bir ilk direk hattının genişliği."
  718. #: fdmprinter.def.json
  719. msgctxt "initial_layer_line_width_factor label"
  720. msgid "Initial Layer Line Width"
  721. msgstr "İlk Katman Hat Genişliği"
  722. #: fdmprinter.def.json
  723. msgctxt "initial_layer_line_width_factor description"
  724. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  725. msgstr "İlk katman üzerinde bulunan hat genişliği çoğaltıcı. Çoğaltmayı artırmak yatak yapışmasını iyileştirebilir."
  726. #: fdmprinter.def.json
  727. msgctxt "shell label"
  728. msgid "Walls"
  729. msgstr "Duvarlar"
  730. #: fdmprinter.def.json
  731. msgctxt "shell description"
  732. msgid "Shell"
  733. msgstr "Kovan"
  734. #: fdmprinter.def.json
  735. msgctxt "wall_extruder_nr label"
  736. msgid "Wall Extruder"
  737. msgstr "Duvar Ekstruderi"
  738. #: fdmprinter.def.json
  739. msgctxt "wall_extruder_nr description"
  740. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  741. msgstr "Duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır."
  742. #: fdmprinter.def.json
  743. msgctxt "wall_0_extruder_nr label"
  744. msgid "Outer Wall Extruder"
  745. msgstr "Dış Duvar Ekstruderi"
  746. #: fdmprinter.def.json
  747. msgctxt "wall_0_extruder_nr description"
  748. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  749. msgstr "Dış Duvarı yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır."
  750. #: fdmprinter.def.json
  751. msgctxt "wall_x_extruder_nr label"
  752. msgid "Inner Wall Extruder"
  753. msgstr "İç Duvar Ekstrüderi"
  754. #: fdmprinter.def.json
  755. msgctxt "wall_x_extruder_nr description"
  756. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  757. msgstr "İç duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır."
  758. #: fdmprinter.def.json
  759. msgctxt "wall_thickness label"
  760. msgid "Wall Thickness"
  761. msgstr "Duvar Kalınlığı"
  762. #: fdmprinter.def.json
  763. msgctxt "wall_thickness description"
  764. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  765. msgstr "Yatay yönde duvar kalınlığı. Bu değer duvar hattı genişliğiyle bölündüğünde duvar sayısını belirler."
  766. #: fdmprinter.def.json
  767. msgctxt "wall_line_count label"
  768. msgid "Wall Line Count"
  769. msgstr "Duvar Hattı Sayısı"
  770. #: fdmprinter.def.json
  771. msgctxt "wall_line_count description"
  772. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  773. msgstr "Duvar sayısı. Bu değer, duvar kalınlığıyla hesaplandığında tam sayıya yuvarlanır."
  774. #: fdmprinter.def.json
  775. msgctxt "wall_0_wipe_dist label"
  776. msgid "Outer Wall Wipe Distance"
  777. msgstr "Dış Duvar Sürme Mesafesi"
  778. #: fdmprinter.def.json
  779. msgctxt "wall_0_wipe_dist description"
  780. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  781. msgstr "Z dikişini daha iyi gizlemek için dış duvardan sonra eklenen hareket mesafesi."
  782. #: fdmprinter.def.json
  783. msgctxt "wall_0_inset label"
  784. msgid "Outer Wall Inset"
  785. msgstr "Dış Duvar İlavesi"
  786. #: fdmprinter.def.json
  787. msgctxt "wall_0_inset description"
  788. 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."
  789. 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."
  790. #: fdmprinter.def.json
  791. msgctxt "optimize_wall_printing_order label"
  792. msgid "Optimize Wall Printing Order"
  793. msgstr "Duvar Yazdırma Sırasını Optimize Et"
  794. #: fdmprinter.def.json
  795. msgctxt "optimize_wall_printing_order description"
  796. 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."
  797. 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."
  798. #: fdmprinter.def.json
  799. msgctxt "outer_inset_first label"
  800. msgid "Outer Before Inner Walls"
  801. msgstr "Önce Dış Sonra İç Duvarlar"
  802. #: fdmprinter.def.json
  803. msgctxt "outer_inset_first description"
  804. msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs."
  805. msgstr "Etkinleştirilmişse, duvarları dıştan içe doğru yazdırır. ABS gibi yüksek viskoziteli plastik kullanılırken boyutsal kesinliğin artırılmasını sağlayabilir; öte yandan dış düzey baskı kalitesini, özellikle çıkmalı kirişlerde etkileyebilir."
  806. #: fdmprinter.def.json
  807. msgctxt "alternate_extra_perimeter label"
  808. msgid "Alternate Extra Wall"
  809. msgstr "Alternatif Ek Duvar"
  810. #: fdmprinter.def.json
  811. msgctxt "alternate_extra_perimeter description"
  812. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  813. 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."
  814. #: fdmprinter.def.json
  815. msgctxt "travel_compensate_overlapping_walls_enabled label"
  816. msgid "Compensate Wall Overlaps"
  817. msgstr "Duvar Çakışmalarının Telafi Edilmesi"
  818. #: fdmprinter.def.json
  819. msgctxt "travel_compensate_overlapping_walls_enabled description"
  820. msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  821. msgstr "Halihazırda duvarın olduğu bir yere yazdırılan bir duvarın parçaları için akışı telafi eder."
  822. #: fdmprinter.def.json
  823. msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  824. msgid "Compensate Outer Wall Overlaps"
  825. msgstr "Dış Duvar Çakışmalarının Telafi Edilmesi"
  826. #: fdmprinter.def.json
  827. msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  828. msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  829. msgstr "Halihazırda dış duvarın olduğu bir yere yazdırılan bir dış duvarın parçaları için akışı telafi eder."
  830. #: fdmprinter.def.json
  831. msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  832. msgid "Compensate Inner Wall Overlaps"
  833. msgstr "İç Duvar Çakışmalarının Telafi Edilmesi"
  834. #: fdmprinter.def.json
  835. msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  836. msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  837. msgstr "Halihazırda duvarın olduğu bir yere yazdırılan bir iç duvarın parçaları için akışı telafi eder."
  838. #: fdmprinter.def.json
  839. msgctxt "wall_min_flow label"
  840. msgid "Minimum Wall Flow"
  841. msgstr "Minimum Duvar Akışı"
  842. #: fdmprinter.def.json
  843. msgctxt "wall_min_flow description"
  844. msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls."
  845. msgstr "Bir duvar hattı için izin verilen en düşük yüzde akımdır. Duvar çakışması, mevcut bir duvara yakın duruyorsa bir duvarın akışını azaltır. Akışları bu değerden düşük olan duvarların yerine hareket hamlesi konacaktır. Bu ayarı kullanırken duvar çakışma telafisini açmanız ve iç duvardan önce dış duvarı yazdırmanız gerekir."
  846. #: fdmprinter.def.json
  847. msgctxt "wall_min_flow_retract label"
  848. msgid "Prefer Retract"
  849. msgstr "Geri Çekmeyi Tercih Et"
  850. #: fdmprinter.def.json
  851. msgctxt "wall_min_flow_retract description"
  852. msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold."
  853. msgstr "Geri çekme etkinleştirildiğinde, akışları minimum akış eşiğinin altındaki duvarların yerini alacak hareketleri taramak yerine geri çekme kullanılır."
  854. #: fdmprinter.def.json
  855. msgctxt "fill_perimeter_gaps label"
  856. msgid "Fill Gaps Between Walls"
  857. msgstr "Duvarlar Arasındaki Boşlukları Doldur"
  858. #: fdmprinter.def.json
  859. msgctxt "fill_perimeter_gaps description"
  860. msgid "Fills the gaps between walls where no walls fit."
  861. msgstr "Duvarların sığmadığı yerlerde duvarlar arasında kalan boşlukları doldurur."
  862. #: fdmprinter.def.json
  863. msgctxt "fill_perimeter_gaps option nowhere"
  864. msgid "Nowhere"
  865. msgstr "Hiçbir yerde"
  866. #: fdmprinter.def.json
  867. msgctxt "fill_perimeter_gaps option everywhere"
  868. msgid "Everywhere"
  869. msgstr "Her bölüm"
  870. #: fdmprinter.def.json
  871. msgctxt "filter_out_tiny_gaps label"
  872. msgid "Filter Out Tiny Gaps"
  873. msgstr "Küçük Boşlukların Filtrelenmesi"
  874. #: fdmprinter.def.json
  875. msgctxt "filter_out_tiny_gaps description"
  876. msgid "Filter out tiny gaps to reduce blobs on outside of model."
  877. msgstr "Modelin dışındaki damlalarını azaltmak için küçük boşlukları filtreleyin."
  878. #: fdmprinter.def.json
  879. msgctxt "fill_outline_gaps label"
  880. msgid "Print Thin Walls"
  881. msgstr "İnce Duvarları Yazdır"
  882. #: fdmprinter.def.json
  883. msgctxt "fill_outline_gaps description"
  884. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  885. msgstr "Yatay olarak nozül boyutundan daha ince olan model parçalarını yazdırır."
  886. #: fdmprinter.def.json
  887. msgctxt "xy_offset label"
  888. msgid "Horizontal Expansion"
  889. msgstr "Yatay Büyüme"
  890. #: fdmprinter.def.json
  891. msgctxt "xy_offset description"
  892. 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."
  893. 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."
  894. #: fdmprinter.def.json
  895. msgctxt "xy_offset_layer_0 label"
  896. msgid "Initial Layer Horizontal Expansion"
  897. msgstr "İlk Katmanın Yatay Genişlemesi"
  898. #: fdmprinter.def.json
  899. msgctxt "xy_offset_layer_0 description"
  900. 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\"."
  901. msgstr "İlk katmandaki tüm poligonlara uygulanan ofset miktarı. Negatif bir değer “fil ayağı” olarak bilinen ilk katman ezilmesini dengeleyebilir."
  902. #: fdmprinter.def.json
  903. msgctxt "hole_xy_offset label"
  904. msgid "Hole Horizontal Expansion"
  905. msgstr "Delik Yatay Büyüme"
  906. #: fdmprinter.def.json
  907. msgctxt "hole_xy_offset description"
  908. 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."
  909. 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."
  910. #: fdmprinter.def.json
  911. msgctxt "z_seam_type label"
  912. msgid "Z Seam Alignment"
  913. msgstr "Z Dikiş Hizalama"
  914. #: fdmprinter.def.json
  915. msgctxt "z_seam_type description"
  916. 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."
  917. 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."
  918. #: fdmprinter.def.json
  919. msgctxt "z_seam_type option back"
  920. msgid "User Specified"
  921. msgstr "Kullanıcı Tarafından Belirtilen"
  922. #: fdmprinter.def.json
  923. msgctxt "z_seam_type option shortest"
  924. msgid "Shortest"
  925. msgstr "En kısa"
  926. #: fdmprinter.def.json
  927. msgctxt "z_seam_type option random"
  928. msgid "Random"
  929. msgstr "Gelişigüzel"
  930. #: fdmprinter.def.json
  931. msgctxt "z_seam_type option sharpest_corner"
  932. msgid "Sharpest Corner"
  933. msgstr "En Keskin Köşe"
  934. #: fdmprinter.def.json
  935. msgctxt "z_seam_position label"
  936. msgid "Z Seam Position"
  937. msgstr "Z Dikişi Konumu"
  938. #: fdmprinter.def.json
  939. msgctxt "z_seam_position description"
  940. msgid "The position near where to start printing each part in a layer."
  941. msgstr "Bir katmandaki her kısmın basılmaya başlanacağı yere yakın konum."
  942. #: fdmprinter.def.json
  943. msgctxt "z_seam_position option backleft"
  944. msgid "Back Left"
  945. msgstr "Sol Arka"
  946. #: fdmprinter.def.json
  947. msgctxt "z_seam_position option back"
  948. msgid "Back"
  949. msgstr "Geri"
  950. #: fdmprinter.def.json
  951. msgctxt "z_seam_position option backright"
  952. msgid "Back Right"
  953. msgstr "Sağ Arka"
  954. #: fdmprinter.def.json
  955. msgctxt "z_seam_position option right"
  956. msgid "Right"
  957. msgstr "Sağ"
  958. #: fdmprinter.def.json
  959. msgctxt "z_seam_position option frontright"
  960. msgid "Front Right"
  961. msgstr "Sağ Ön"
  962. #: fdmprinter.def.json
  963. msgctxt "z_seam_position option front"
  964. msgid "Front"
  965. msgstr "Ön"
  966. #: fdmprinter.def.json
  967. msgctxt "z_seam_position option frontleft"
  968. msgid "Front Left"
  969. msgstr "Sol Ön"
  970. #: fdmprinter.def.json
  971. msgctxt "z_seam_position option left"
  972. msgid "Left"
  973. msgstr "Sol"
  974. #: fdmprinter.def.json
  975. msgctxt "z_seam_x label"
  976. msgid "Z Seam X"
  977. msgstr "Z Dikişi X"
  978. #: fdmprinter.def.json
  979. msgctxt "z_seam_x description"
  980. msgid "The X coordinate of the position near where to start printing each part in a layer."
  981. msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun X koordinatı."
  982. #: fdmprinter.def.json
  983. msgctxt "z_seam_y label"
  984. msgid "Z Seam Y"
  985. msgstr "Z Dikişi Y"
  986. #: fdmprinter.def.json
  987. msgctxt "z_seam_y description"
  988. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  989. msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun Y koordinatı."
  990. #: fdmprinter.def.json
  991. msgctxt "z_seam_corner label"
  992. msgid "Seam Corner Preference"
  993. msgstr "Dikiş Köşesi Tercihi"
  994. #: fdmprinter.def.json
  995. msgctxt "z_seam_corner description"
  996. 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."
  997. 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."
  998. #: fdmprinter.def.json
  999. msgctxt "z_seam_corner option z_seam_corner_none"
  1000. msgid "None"
  1001. msgstr "Hiçbiri"
  1002. #: fdmprinter.def.json
  1003. msgctxt "z_seam_corner option z_seam_corner_inner"
  1004. msgid "Hide Seam"
  1005. msgstr "Dikişi Gizle"
  1006. #: fdmprinter.def.json
  1007. msgctxt "z_seam_corner option z_seam_corner_outer"
  1008. msgid "Expose Seam"
  1009. msgstr "Dikişi Açığa Çıkar"
  1010. #: fdmprinter.def.json
  1011. msgctxt "z_seam_corner option z_seam_corner_any"
  1012. msgid "Hide or Expose Seam"
  1013. msgstr "Dikişi Gizle veya Açığa Çıkar"
  1014. #: fdmprinter.def.json
  1015. msgctxt "z_seam_corner option z_seam_corner_weighted"
  1016. msgid "Smart Hiding"
  1017. msgstr "Akıllı Gizleme"
  1018. #: fdmprinter.def.json
  1019. msgctxt "z_seam_relative label"
  1020. msgid "Z Seam Relative"
  1021. msgstr "Z Dikişi Göreliliği"
  1022. #: fdmprinter.def.json
  1023. msgctxt "z_seam_relative description"
  1024. 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."
  1025. 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."
  1026. #: fdmprinter.def.json
  1027. msgctxt "top_bottom label"
  1028. msgid "Top/Bottom"
  1029. msgstr "Üst / Alt"
  1030. #: fdmprinter.def.json
  1031. msgctxt "top_bottom description"
  1032. msgid "Top/Bottom"
  1033. msgstr "Üst / Alt"
  1034. #: fdmprinter.def.json
  1035. msgctxt "roofing_extruder_nr label"
  1036. msgid "Top Surface Skin Extruder"
  1037. msgstr "Üst Yüzey Ekstruderi"
  1038. #: fdmprinter.def.json
  1039. msgctxt "roofing_extruder_nr description"
  1040. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  1041. 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."
  1042. #: fdmprinter.def.json
  1043. msgctxt "roofing_layer_count label"
  1044. msgid "Top Surface Skin Layers"
  1045. msgstr "Üst Yüzey Katmanları"
  1046. #: fdmprinter.def.json
  1047. msgctxt "roofing_layer_count description"
  1048. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  1049. 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."
  1050. #: fdmprinter.def.json
  1051. msgctxt "top_bottom_extruder_nr label"
  1052. msgid "Top/Bottom Extruder"
  1053. msgstr "Üst/Alt Ekstruderi"
  1054. #: fdmprinter.def.json
  1055. msgctxt "top_bottom_extruder_nr description"
  1056. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  1057. 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."
  1058. #: fdmprinter.def.json
  1059. msgctxt "top_bottom_thickness label"
  1060. msgid "Top/Bottom Thickness"
  1061. msgstr "Üst/Alt Kalınlık"
  1062. #: fdmprinter.def.json
  1063. msgctxt "top_bottom_thickness description"
  1064. 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."
  1065. 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."
  1066. #: fdmprinter.def.json
  1067. msgctxt "top_thickness label"
  1068. msgid "Top Thickness"
  1069. msgstr "Üst Kalınlık"
  1070. #: fdmprinter.def.json
  1071. msgctxt "top_thickness description"
  1072. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  1073. msgstr "Yazdırmadaki üst katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst katmanların sayısını belirtir."
  1074. #: fdmprinter.def.json
  1075. msgctxt "top_layers label"
  1076. msgid "Top Layers"
  1077. msgstr "Üst Katmanlar"
  1078. #: fdmprinter.def.json
  1079. msgctxt "top_layers description"
  1080. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  1081. msgstr "Üst katman sayısı. Bu değer, üst kalınlığıyla hesaplandığında tam sayıya yuvarlanır."
  1082. #: fdmprinter.def.json
  1083. msgctxt "bottom_thickness label"
  1084. msgid "Bottom Thickness"
  1085. msgstr "Alt Kalınlık"
  1086. #: fdmprinter.def.json
  1087. msgctxt "bottom_thickness description"
  1088. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  1089. msgstr "Yazdırmadaki alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer alt katmanların sayısını belirtir."
  1090. #: fdmprinter.def.json
  1091. msgctxt "bottom_layers label"
  1092. msgid "Bottom Layers"
  1093. msgstr "Alt katmanlar"
  1094. #: fdmprinter.def.json
  1095. msgctxt "bottom_layers description"
  1096. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  1097. msgstr "Alt katman sayısı. Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır."
  1098. #: fdmprinter.def.json
  1099. msgctxt "initial_bottom_layers label"
  1100. msgid "Initial Bottom Layers"
  1101. msgstr "İlk Alt Katmanlar"
  1102. #: fdmprinter.def.json
  1103. msgctxt "initial_bottom_layers description"
  1104. 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."
  1105. msgstr "Yapı plakasından itibaren ilk alt katman sayısı Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır."
  1106. #: fdmprinter.def.json
  1107. msgctxt "top_bottom_pattern label"
  1108. msgid "Top/Bottom Pattern"
  1109. msgstr "Üst/Alt Şekil"
  1110. #: fdmprinter.def.json
  1111. msgctxt "top_bottom_pattern description"
  1112. msgid "The pattern of the top/bottom layers."
  1113. msgstr "Üst/alt katmanların şekli."
  1114. #: fdmprinter.def.json
  1115. msgctxt "top_bottom_pattern option lines"
  1116. msgid "Lines"
  1117. msgstr "Çizgiler"
  1118. #: fdmprinter.def.json
  1119. msgctxt "top_bottom_pattern option concentric"
  1120. msgid "Concentric"
  1121. msgstr "Eş merkezli"
  1122. #: fdmprinter.def.json
  1123. msgctxt "top_bottom_pattern option zigzag"
  1124. msgid "Zig Zag"
  1125. msgstr "Zik Zak"
  1126. #: fdmprinter.def.json
  1127. msgctxt "top_bottom_pattern_0 label"
  1128. msgid "Bottom Pattern Initial Layer"
  1129. msgstr "Alt Şekil İlk Katmanı"
  1130. #: fdmprinter.def.json
  1131. msgctxt "top_bottom_pattern_0 description"
  1132. msgid "The pattern on the bottom of the print on the first layer."
  1133. msgstr "Yazdırmanın altında ilk katmanda yer alacak şekil."
  1134. #: fdmprinter.def.json
  1135. msgctxt "top_bottom_pattern_0 option lines"
  1136. msgid "Lines"
  1137. msgstr "Çizgiler"
  1138. #: fdmprinter.def.json
  1139. msgctxt "top_bottom_pattern_0 option concentric"
  1140. msgid "Concentric"
  1141. msgstr "Eş merkezli"
  1142. #: fdmprinter.def.json
  1143. msgctxt "top_bottom_pattern_0 option zigzag"
  1144. msgid "Zig Zag"
  1145. msgstr "Zikzak"
  1146. #: fdmprinter.def.json
  1147. msgctxt "connect_skin_polygons label"
  1148. msgid "Connect Top/Bottom Polygons"
  1149. msgstr "Üst/Alt Poligonları Bağla"
  1150. #: fdmprinter.def.json
  1151. msgctxt "connect_skin_polygons description"
  1152. 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."
  1153. 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."
  1154. #: fdmprinter.def.json
  1155. msgctxt "skin_monotonic label"
  1156. msgid "Monotonic Top/Bottom Order"
  1157. msgstr "Monotonik Üst/Alt Düzeni"
  1158. #: fdmprinter.def.json
  1159. msgctxt "skin_monotonic description"
  1160. 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."
  1161. 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"
  1162. " tutarlı görünmesini sağlar."
  1163. #: fdmprinter.def.json
  1164. msgctxt "skin_angles label"
  1165. msgid "Top/Bottom Line Directions"
  1166. msgstr "Üst/Alt Çizgi Yönleri"
  1167. #: fdmprinter.def.json
  1168. msgctxt "skin_angles description"
  1169. 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)."
  1170. 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."
  1171. #: fdmprinter.def.json
  1172. msgctxt "skin_no_small_gaps_heuristic label"
  1173. msgid "No Skin in Z Gaps"
  1174. msgstr "Z Boşluklarında Dış Katman Oluşturma"
  1175. #: fdmprinter.def.json
  1176. msgctxt "skin_no_small_gaps_heuristic description"
  1177. 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."
  1178. 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."
  1179. #: fdmprinter.def.json
  1180. msgctxt "skin_outline_count label"
  1181. msgid "Extra Skin Wall Count"
  1182. msgstr "Ek Dış Katman Duvar Sayısı"
  1183. #: fdmprinter.def.json
  1184. msgctxt "skin_outline_count description"
  1185. 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."
  1186. 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."
  1187. #: fdmprinter.def.json
  1188. msgctxt "ironing_enabled label"
  1189. msgid "Enable Ironing"
  1190. msgstr "Ütülemeyi Etkinleştir"
  1191. #: fdmprinter.def.json
  1192. msgctxt "ironing_enabled description"
  1193. 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."
  1194. 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."
  1195. #: fdmprinter.def.json
  1196. msgctxt "ironing_only_highest_layer label"
  1197. msgid "Iron Only Highest Layer"
  1198. msgstr "Sadece En Yüksek Katmanı Ütüle"
  1199. #: fdmprinter.def.json
  1200. msgctxt "ironing_only_highest_layer description"
  1201. 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."
  1202. 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."
  1203. #: fdmprinter.def.json
  1204. msgctxt "ironing_pattern label"
  1205. msgid "Ironing Pattern"
  1206. msgstr "Ütüleme Modeli"
  1207. #: fdmprinter.def.json
  1208. msgctxt "ironing_pattern description"
  1209. msgid "The pattern to use for ironing top surfaces."
  1210. msgstr "Üst yüzeyleri ütülemek için kullanılacak model."
  1211. #: fdmprinter.def.json
  1212. msgctxt "ironing_pattern option concentric"
  1213. msgid "Concentric"
  1214. msgstr "Eş merkezli"
  1215. #: fdmprinter.def.json
  1216. msgctxt "ironing_pattern option zigzag"
  1217. msgid "Zig Zag"
  1218. msgstr "Zikzak"
  1219. #: fdmprinter.def.json
  1220. msgctxt "ironing_monotonic label"
  1221. msgid "Monotonic Ironing Order"
  1222. msgstr "Monotonik Ütüleme Düzeni"
  1223. #: fdmprinter.def.json
  1224. msgctxt "ironing_monotonic description"
  1225. 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."
  1226. 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"
  1227. " daha tutarlı görünmesini sağlar."
  1228. #: fdmprinter.def.json
  1229. msgctxt "ironing_line_spacing label"
  1230. msgid "Ironing Line Spacing"
  1231. msgstr "Ütüleme Hattı Boşluğu"
  1232. #: fdmprinter.def.json
  1233. msgctxt "ironing_line_spacing description"
  1234. msgid "The distance between the lines of ironing."
  1235. msgstr "Ütüleme hatları arasında bulunan mesafe."
  1236. #: fdmprinter.def.json
  1237. msgctxt "ironing_flow label"
  1238. msgid "Ironing Flow"
  1239. msgstr "Ütüleme Akışı"
  1240. #: fdmprinter.def.json
  1241. msgctxt "ironing_flow description"
  1242. 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."
  1243. 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."
  1244. #: fdmprinter.def.json
  1245. msgctxt "ironing_inset label"
  1246. msgid "Ironing Inset"
  1247. msgstr "Ütüleme İlave Mesafesi"
  1248. #: fdmprinter.def.json
  1249. msgctxt "ironing_inset description"
  1250. 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."
  1251. 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."
  1252. #: fdmprinter.def.json
  1253. msgctxt "speed_ironing label"
  1254. msgid "Ironing Speed"
  1255. msgstr "Ütüleme Hızı"
  1256. #: fdmprinter.def.json
  1257. msgctxt "speed_ironing description"
  1258. msgid "The speed at which to pass over the top surface."
  1259. msgstr "Üst yüzeyi geçmek için gereken süre."
  1260. #: fdmprinter.def.json
  1261. msgctxt "acceleration_ironing label"
  1262. msgid "Ironing Acceleration"
  1263. msgstr "Ütüleme İvmesi"
  1264. #: fdmprinter.def.json
  1265. msgctxt "acceleration_ironing description"
  1266. msgid "The acceleration with which ironing is performed."
  1267. msgstr "Ütülemenin gerçekleştiği ivme."
  1268. #: fdmprinter.def.json
  1269. msgctxt "jerk_ironing label"
  1270. msgid "Ironing Jerk"
  1271. msgstr "Ütüleme İvmesi Değişimi"
  1272. #: fdmprinter.def.json
  1273. msgctxt "jerk_ironing description"
  1274. msgid "The maximum instantaneous velocity change while performing ironing."
  1275. msgstr "Ütüleme sırasında oluşan maksimum anlık hız değişimi."
  1276. #: fdmprinter.def.json
  1277. msgctxt "skin_overlap label"
  1278. msgid "Skin Overlap Percentage"
  1279. msgstr "Yüzey Çakışma Oranı"
  1280. #: fdmprinter.def.json
  1281. msgctxt "skin_overlap description"
  1282. 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."
  1283. 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."
  1284. #: fdmprinter.def.json
  1285. msgctxt "skin_overlap_mm label"
  1286. msgid "Skin Overlap"
  1287. msgstr "Yüzey Çakışması"
  1288. #: fdmprinter.def.json
  1289. msgctxt "skin_overlap_mm description"
  1290. 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."
  1291. 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."
  1292. #: fdmprinter.def.json
  1293. msgctxt "skin_preshrink label"
  1294. msgid "Skin Removal Width"
  1295. msgstr "Yüzey Kaldırma Genişliği"
  1296. #: fdmprinter.def.json
  1297. msgctxt "skin_preshrink description"
  1298. 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."
  1299. 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."
  1300. #: fdmprinter.def.json
  1301. msgctxt "top_skin_preshrink label"
  1302. msgid "Top Skin Removal Width"
  1303. msgstr "Üst Yüzey Kaldırma Genişliği"
  1304. #: fdmprinter.def.json
  1305. msgctxt "top_skin_preshrink description"
  1306. 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."
  1307. 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."
  1308. #: fdmprinter.def.json
  1309. msgctxt "bottom_skin_preshrink label"
  1310. msgid "Bottom Skin Removal Width"
  1311. msgstr "Alt Yüzey Kaldırma Genişliği"
  1312. #: fdmprinter.def.json
  1313. msgctxt "bottom_skin_preshrink description"
  1314. 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."
  1315. 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."
  1316. #: fdmprinter.def.json
  1317. msgctxt "expand_skins_expand_distance label"
  1318. msgid "Skin Expand Distance"
  1319. msgstr "Yüzey Genişleme Mesafesi"
  1320. #: fdmprinter.def.json
  1321. msgctxt "expand_skins_expand_distance description"
  1322. 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."
  1323. 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."
  1324. #: fdmprinter.def.json
  1325. msgctxt "top_skin_expand_distance label"
  1326. msgid "Top Skin Expand Distance"
  1327. msgstr "Üst Yüzey Genişleme Mesafesi"
  1328. #: fdmprinter.def.json
  1329. msgctxt "top_skin_expand_distance description"
  1330. 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."
  1331. 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."
  1332. #: fdmprinter.def.json
  1333. msgctxt "bottom_skin_expand_distance label"
  1334. msgid "Bottom Skin Expand Distance"
  1335. msgstr "Alt Yüzey Genişleme Mesafesi"
  1336. #: fdmprinter.def.json
  1337. msgctxt "bottom_skin_expand_distance description"
  1338. 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."
  1339. 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."
  1340. #: fdmprinter.def.json
  1341. msgctxt "max_skin_angle_for_expansion label"
  1342. msgid "Maximum Skin Angle for Expansion"
  1343. msgstr "Genişleme için Maksimum Yüzey Açısı"
  1344. #: fdmprinter.def.json
  1345. msgctxt "max_skin_angle_for_expansion description"
  1346. 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."
  1347. 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."
  1348. #: fdmprinter.def.json
  1349. msgctxt "min_skin_width_for_expansion label"
  1350. msgid "Minimum Skin Width for Expansion"
  1351. msgstr "Genişleme için Minimum Yüzey Genişliği"
  1352. #: fdmprinter.def.json
  1353. msgctxt "min_skin_width_for_expansion description"
  1354. 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."
  1355. 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."
  1356. #: fdmprinter.def.json
  1357. msgctxt "infill label"
  1358. msgid "Infill"
  1359. msgstr "Dolgu"
  1360. #: fdmprinter.def.json
  1361. msgctxt "infill description"
  1362. msgid "Infill"
  1363. msgstr "Dolgu"
  1364. #: fdmprinter.def.json
  1365. msgctxt "infill_extruder_nr label"
  1366. msgid "Infill Extruder"
  1367. msgstr "Dolgu Ekstruderi"
  1368. #: fdmprinter.def.json
  1369. msgctxt "infill_extruder_nr description"
  1370. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  1371. msgstr "Dolgu yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır."
  1372. #: fdmprinter.def.json
  1373. msgctxt "infill_sparse_density label"
  1374. msgid "Infill Density"
  1375. msgstr "Dolgu Yoğunluğu"
  1376. #: fdmprinter.def.json
  1377. msgctxt "infill_sparse_density description"
  1378. msgid "Adjusts the density of infill of the print."
  1379. msgstr "Yazdırma dolgusunun yoğunluğunu ayarlar."
  1380. #: fdmprinter.def.json
  1381. msgctxt "infill_line_distance label"
  1382. msgid "Infill Line Distance"
  1383. msgstr "Dolgu Hattı Mesafesi"
  1384. #: fdmprinter.def.json
  1385. msgctxt "infill_line_distance description"
  1386. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  1387. msgstr "Yazdırılan dolgu hatları arasındaki mesafe. Bu ayar, dolgu yoğunluğu ve dolgu hattı genişliği ile hesaplanır."
  1388. #: fdmprinter.def.json
  1389. msgctxt "infill_pattern label"
  1390. msgid "Infill Pattern"
  1391. msgstr "Dolgu Şekli"
  1392. #: fdmprinter.def.json
  1393. msgctxt "infill_pattern description"
  1394. 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."
  1395. 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."
  1396. #: fdmprinter.def.json
  1397. msgctxt "infill_pattern option grid"
  1398. msgid "Grid"
  1399. msgstr "Izgara"
  1400. #: fdmprinter.def.json
  1401. msgctxt "infill_pattern option lines"
  1402. msgid "Lines"
  1403. msgstr "Çizgiler"
  1404. #: fdmprinter.def.json
  1405. msgctxt "infill_pattern option triangles"
  1406. msgid "Triangles"
  1407. msgstr "Üçgenler"
  1408. #: fdmprinter.def.json
  1409. msgctxt "infill_pattern option trihexagon"
  1410. msgid "Tri-Hexagon"
  1411. msgstr "Üçlü Altıgen"
  1412. #: fdmprinter.def.json
  1413. msgctxt "infill_pattern option cubic"
  1414. msgid "Cubic"
  1415. msgstr "Kübik"
  1416. #: fdmprinter.def.json
  1417. msgctxt "infill_pattern option cubicsubdiv"
  1418. msgid "Cubic Subdivision"
  1419. msgstr "Kübik Alt Bölüm"
  1420. #: fdmprinter.def.json
  1421. msgctxt "infill_pattern option tetrahedral"
  1422. msgid "Octet"
  1423. msgstr "Sekizlik"
  1424. #: fdmprinter.def.json
  1425. msgctxt "infill_pattern option quarter_cubic"
  1426. msgid "Quarter Cubic"
  1427. msgstr "Çeyrek Kübik"
  1428. #: fdmprinter.def.json
  1429. msgctxt "infill_pattern option concentric"
  1430. msgid "Concentric"
  1431. msgstr "Eş merkezli"
  1432. #: fdmprinter.def.json
  1433. msgctxt "infill_pattern option zigzag"
  1434. msgid "Zig Zag"
  1435. msgstr "Zik Zak"
  1436. #: fdmprinter.def.json
  1437. msgctxt "infill_pattern option cross"
  1438. msgid "Cross"
  1439. msgstr "Çapraz"
  1440. #: fdmprinter.def.json
  1441. msgctxt "infill_pattern option cross_3d"
  1442. msgid "Cross 3D"
  1443. msgstr "Çapraz 3D"
  1444. #: fdmprinter.def.json
  1445. msgctxt "infill_pattern option gyroid"
  1446. msgid "Gyroid"
  1447. msgstr "Gyroid"
  1448. #: fdmprinter.def.json
  1449. msgctxt "zig_zaggify_infill label"
  1450. msgid "Connect Infill Lines"
  1451. msgstr "Dolgu Hatlarını Bağlayın"
  1452. #: fdmprinter.def.json
  1453. msgctxt "zig_zaggify_infill description"
  1454. 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."
  1455. 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."
  1456. #: fdmprinter.def.json
  1457. msgctxt "connect_infill_polygons label"
  1458. msgid "Connect Infill Polygons"
  1459. msgstr "Dolgu Poligonlarını Bağla"
  1460. #: fdmprinter.def.json
  1461. msgctxt "connect_infill_polygons description"
  1462. 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."
  1463. 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."
  1464. #: fdmprinter.def.json
  1465. msgctxt "infill_angles label"
  1466. msgid "Infill Line Directions"
  1467. msgstr "Dolgu Hattı Yönleri"
  1468. #: fdmprinter.def.json
  1469. msgctxt "infill_angles description"
  1470. 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)."
  1471. 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)."
  1472. #: fdmprinter.def.json
  1473. msgctxt "infill_offset_x label"
  1474. msgid "Infill X Offset"
  1475. msgstr "Dolgu X Kayması"
  1476. #: fdmprinter.def.json
  1477. msgctxt "infill_offset_x description"
  1478. msgid "The infill pattern is moved this distance along the X axis."
  1479. msgstr "Dolgu şekli X ekseni boyunca bu mesafe kadar kaydırılır."
  1480. #: fdmprinter.def.json
  1481. msgctxt "infill_offset_y label"
  1482. msgid "Infill Y Offset"
  1483. msgstr "Dolgu Y Kayması"
  1484. #: fdmprinter.def.json
  1485. msgctxt "infill_offset_y description"
  1486. msgid "The infill pattern is moved this distance along the Y axis."
  1487. msgstr "Dolgu şekli Y ekseni boyunca bu mesafe kadar kaydırılır."
  1488. #: fdmprinter.def.json
  1489. msgctxt "infill_randomize_start_location label"
  1490. msgid "Randomize Infill Start"
  1491. msgstr "Rastgele Boşluk Doldurma Başlat"
  1492. #: fdmprinter.def.json
  1493. msgctxt "infill_randomize_start_location description"
  1494. 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."
  1495. 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."
  1496. #: fdmprinter.def.json
  1497. msgctxt "infill_multiplier label"
  1498. msgid "Infill Line Multiplier"
  1499. msgstr "Dolgu Hattı Çoğaltıcı"
  1500. #: fdmprinter.def.json
  1501. msgctxt "infill_multiplier description"
  1502. 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."
  1503. 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."
  1504. #: fdmprinter.def.json
  1505. msgctxt "infill_wall_line_count label"
  1506. msgid "Extra Infill Wall Count"
  1507. msgstr "Ekstra Dolgu Duvar Sayısı"
  1508. #: fdmprinter.def.json
  1509. msgctxt "infill_wall_line_count description"
  1510. msgid ""
  1511. "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"
  1512. "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."
  1513. msgstr ""
  1514. "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"
  1515. "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."
  1516. #: fdmprinter.def.json
  1517. msgctxt "sub_div_rad_add label"
  1518. msgid "Cubic Subdivision Shell"
  1519. msgstr "Kübik Alt Bölüm Kalkanı"
  1520. #: fdmprinter.def.json
  1521. msgctxt "sub_div_rad_add description"
  1522. 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."
  1523. 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."
  1524. #: fdmprinter.def.json
  1525. msgctxt "infill_overlap label"
  1526. msgid "Infill Overlap Percentage"
  1527. msgstr "Dolgu Çakışma Oranı"
  1528. #: fdmprinter.def.json
  1529. msgctxt "infill_overlap description"
  1530. 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."
  1531. 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."
  1532. #: fdmprinter.def.json
  1533. msgctxt "infill_overlap_mm label"
  1534. msgid "Infill Overlap"
  1535. msgstr "Dolgu Çakışması"
  1536. #: fdmprinter.def.json
  1537. msgctxt "infill_overlap_mm description"
  1538. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  1539. msgstr "Dolgu ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar."
  1540. #: fdmprinter.def.json
  1541. msgctxt "infill_wipe_dist label"
  1542. msgid "Infill Wipe Distance"
  1543. msgstr "Dolgu Sürme Mesafesi"
  1544. #: fdmprinter.def.json
  1545. msgctxt "infill_wipe_dist description"
  1546. 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."
  1547. 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."
  1548. #: fdmprinter.def.json
  1549. msgctxt "infill_sparse_thickness label"
  1550. msgid "Infill Layer Thickness"
  1551. msgstr "Dolgu Katmanı Kalınlığı"
  1552. #: fdmprinter.def.json
  1553. msgctxt "infill_sparse_thickness description"
  1554. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  1555. 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."
  1556. #: fdmprinter.def.json
  1557. msgctxt "gradual_infill_steps label"
  1558. msgid "Gradual Infill Steps"
  1559. msgstr "Aşamalı Dolgu Basamakları"
  1560. #: fdmprinter.def.json
  1561. msgctxt "gradual_infill_steps description"
  1562. 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."
  1563. 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."
  1564. #: fdmprinter.def.json
  1565. msgctxt "gradual_infill_step_height label"
  1566. msgid "Gradual Infill Step Height"
  1567. msgstr "Aşamalı Dolgu Basamak Yüksekliği"
  1568. #: fdmprinter.def.json
  1569. msgctxt "gradual_infill_step_height description"
  1570. msgid "The height of infill of a given density before switching to half the density."
  1571. msgstr "Yoğunluğun yarısına inmeden önce verilen bir yoğunluktaki dolgunun yüksekliği."
  1572. #: fdmprinter.def.json
  1573. msgctxt "infill_before_walls label"
  1574. msgid "Infill Before Walls"
  1575. msgstr "Duvarlardan Önce Dolgu"
  1576. #: fdmprinter.def.json
  1577. msgctxt "infill_before_walls description"
  1578. 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."
  1579. 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."
  1580. #: fdmprinter.def.json
  1581. msgctxt "min_infill_area label"
  1582. msgid "Minimum Infill Area"
  1583. msgstr "Minimum Dolgu Alanı"
  1584. #: fdmprinter.def.json
  1585. msgctxt "min_infill_area description"
  1586. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1587. msgstr "Bundan küçük dolgu alanları oluşturma (onun yerine yüzey kullan)."
  1588. #: fdmprinter.def.json
  1589. msgctxt "infill_support_enabled label"
  1590. msgid "Infill Support"
  1591. msgstr "Dolgu Desteği"
  1592. #: fdmprinter.def.json
  1593. msgctxt "infill_support_enabled description"
  1594. 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."
  1595. 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."
  1596. #: fdmprinter.def.json
  1597. msgctxt "infill_support_angle label"
  1598. msgid "Infill Overhang Angle"
  1599. msgstr "Dolum Çıkıntı Açısı"
  1600. #: fdmprinter.def.json
  1601. msgctxt "infill_support_angle description"
  1602. 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."
  1603. msgstr "Dolum eklenen dahili çıkıntıların minimum açısı. 0° değerde nesneler tamamen doldurulur, 90°’de dolgu yapılmaz."
  1604. #: fdmprinter.def.json
  1605. msgctxt "skin_edge_support_thickness label"
  1606. msgid "Skin Edge Support Thickness"
  1607. msgstr "Kaplamanın Kenar Desteği Kalınlığı"
  1608. #: fdmprinter.def.json
  1609. msgctxt "skin_edge_support_thickness description"
  1610. msgid "The thickness of the extra infill that supports skin edges."
  1611. msgstr "Kaplamanın kenarlarını destekleyen ekstra dolgunun kalınlığı."
  1612. #: fdmprinter.def.json
  1613. msgctxt "skin_edge_support_layers label"
  1614. msgid "Skin Edge Support Layers"
  1615. msgstr "Kaplamanın Kenar Desteği Katmanları"
  1616. #: fdmprinter.def.json
  1617. msgctxt "skin_edge_support_layers description"
  1618. msgid "The number of infill layers that supports skin edges."
  1619. msgstr "Kaplamanın kenarlarını destekleyen dolgu katmanının kalınlığı."
  1620. #: fdmprinter.def.json
  1621. msgctxt "material label"
  1622. msgid "Material"
  1623. msgstr "Malzeme"
  1624. #: fdmprinter.def.json
  1625. msgctxt "material description"
  1626. msgid "Material"
  1627. msgstr "Malzeme"
  1628. #: fdmprinter.def.json
  1629. msgctxt "default_material_print_temperature label"
  1630. msgid "Default Printing Temperature"
  1631. msgstr "Varsayılan Yazdırma Sıcaklığı"
  1632. #: fdmprinter.def.json
  1633. msgctxt "default_material_print_temperature description"
  1634. 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"
  1635. 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"
  1636. #: fdmprinter.def.json
  1637. msgctxt "build_volume_temperature label"
  1638. msgid "Build Volume Temperature"
  1639. msgstr "Yapı Disk Bölümü Sıcaklığı"
  1640. #: fdmprinter.def.json
  1641. msgctxt "build_volume_temperature description"
  1642. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  1643. msgstr "Baskı yapılacak ortamın sıcaklığı. Bu değer 0 ise yapı hacminin sıcaklığı ayarlanmaz."
  1644. #: fdmprinter.def.json
  1645. msgctxt "material_print_temperature label"
  1646. msgid "Printing Temperature"
  1647. msgstr "Yazdırma Sıcaklığı"
  1648. #: fdmprinter.def.json
  1649. msgctxt "material_print_temperature description"
  1650. msgid "The temperature used for printing."
  1651. msgstr "Yazdırma için kullanılan sıcaklık."
  1652. #: fdmprinter.def.json
  1653. msgctxt "material_print_temperature_layer_0 label"
  1654. msgid "Printing Temperature Initial Layer"
  1655. msgstr "İlk Katman Yazdırma Sıcaklığı"
  1656. #: fdmprinter.def.json
  1657. msgctxt "material_print_temperature_layer_0 description"
  1658. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  1659. 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."
  1660. #: fdmprinter.def.json
  1661. msgctxt "material_initial_print_temperature label"
  1662. msgid "Initial Printing Temperature"
  1663. msgstr "İlk Yazdırma Sıcaklığı"
  1664. #: fdmprinter.def.json
  1665. msgctxt "material_initial_print_temperature description"
  1666. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  1667. msgstr "Yazdırmanın başlayacağı Yazdırma Sıcaklığına ulaşırken görülen minimum sıcaklık."
  1668. #: fdmprinter.def.json
  1669. msgctxt "material_final_print_temperature label"
  1670. msgid "Final Printing Temperature"
  1671. msgstr "Son Yazdırma Sıcaklığı"
  1672. #: fdmprinter.def.json
  1673. msgctxt "material_final_print_temperature description"
  1674. msgid "The temperature to which to already start cooling down just before the end of printing."
  1675. msgstr "Yazdırma bitmeden hemen önce soğuma işleminin başladığı sıcaklık."
  1676. #: fdmprinter.def.json
  1677. msgctxt "material_extrusion_cool_down_speed label"
  1678. msgid "Extrusion Cool Down Speed Modifier"
  1679. msgstr "Ekstrüzyon Sırasında Soğuma Hızı Düzenleyici"
  1680. #: fdmprinter.def.json
  1681. msgctxt "material_extrusion_cool_down_speed description"
  1682. 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."
  1683. 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."
  1684. #: fdmprinter.def.json
  1685. msgctxt "default_material_bed_temperature label"
  1686. msgid "Default Build Plate Temperature"
  1687. msgstr "Varsayılan Yapı Levhası Sıcaklığı"
  1688. #: fdmprinter.def.json
  1689. msgctxt "default_material_bed_temperature description"
  1690. 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"
  1691. 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"
  1692. #: fdmprinter.def.json
  1693. msgctxt "material_bed_temperature label"
  1694. msgid "Build Plate Temperature"
  1695. msgstr "Yapı Levhası Sıcaklığı"
  1696. #: fdmprinter.def.json
  1697. msgctxt "material_bed_temperature description"
  1698. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  1699. msgstr "Isıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ısıtılmaz."
  1700. #: fdmprinter.def.json
  1701. msgctxt "material_bed_temperature_layer_0 label"
  1702. msgid "Build Plate Temperature Initial Layer"
  1703. msgstr "İlk Katman Yapı Levhası Sıcaklığı"
  1704. #: fdmprinter.def.json
  1705. msgctxt "material_bed_temperature_layer_0 description"
  1706. 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."
  1707. 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."
  1708. #: fdmprinter.def.json
  1709. msgctxt "material_adhesion_tendency label"
  1710. msgid "Adhesion Tendency"
  1711. msgstr "Yapışma Eğilimi"
  1712. #: fdmprinter.def.json
  1713. msgctxt "material_adhesion_tendency description"
  1714. msgid "Surface adhesion tendency."
  1715. msgstr "Yüzeye yapışma eğilimi."
  1716. #: fdmprinter.def.json
  1717. msgctxt "material_surface_energy label"
  1718. msgid "Surface Energy"
  1719. msgstr "Yüzey Enerjisi"
  1720. #: fdmprinter.def.json
  1721. msgctxt "material_surface_energy description"
  1722. msgid "Surface energy."
  1723. msgstr "Yüzey enerjisi."
  1724. #: fdmprinter.def.json
  1725. msgctxt "material_shrinkage_percentage label"
  1726. msgid "Scaling Factor Shrinkage Compensation"
  1727. msgstr "Ölçekleme Faktörü Büzülme Telafisi"
  1728. #: fdmprinter.def.json
  1729. msgctxt "material_shrinkage_percentage description"
  1730. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  1731. msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre ölçeklenecektir."
  1732. #: fdmprinter.def.json
  1733. msgctxt "material_crystallinity label"
  1734. msgid "Crystalline Material"
  1735. msgstr "Kristalli Malzeme"
  1736. #: fdmprinter.def.json
  1737. msgctxt "material_crystallinity description"
  1738. 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)?"
  1739. 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?"
  1740. #: fdmprinter.def.json
  1741. msgctxt "material_anti_ooze_retracted_position label"
  1742. msgid "Anti-ooze Retracted Position"
  1743. msgstr "Sızma Önleme Geri Çekme Mesafesi"
  1744. #: fdmprinter.def.json
  1745. msgctxt "material_anti_ooze_retracted_position description"
  1746. msgid "How far the material needs to be retracted before it stops oozing."
  1747. msgstr "Malzemenin sızma yapmaması için gereken geri çekilme mesafesidir."
  1748. #: fdmprinter.def.json
  1749. msgctxt "material_anti_ooze_retraction_speed label"
  1750. msgid "Anti-ooze Retraction Speed"
  1751. msgstr "Sızma Önleme Geri Çekme Hızı"
  1752. #: fdmprinter.def.json
  1753. msgctxt "material_anti_ooze_retraction_speed description"
  1754. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1755. msgstr "Filament değişimi sırasında malzemenin sızma yapmaması için gereken geri çekilme hızıdır."
  1756. #: fdmprinter.def.json
  1757. msgctxt "material_break_preparation_retracted_position label"
  1758. msgid "Break Preparation Retracted Position"
  1759. msgstr "Geri Çekme Pozisyonunda Durma Mesafesi"
  1760. #: fdmprinter.def.json
  1761. msgctxt "material_break_preparation_retracted_position description"
  1762. msgid "How far the filament can be stretched before it breaks, while heated."
  1763. msgstr "Filamentin ısıtıldığında kopmadan esneyebileceği mesafedir."
  1764. #: fdmprinter.def.json
  1765. msgctxt "material_break_preparation_speed label"
  1766. msgid "Break Preparation Retraction Speed"
  1767. msgstr "Durma Payına Uygun Geri Çekme Hızı"
  1768. #: fdmprinter.def.json
  1769. msgctxt "material_break_preparation_speed description"
  1770. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1771. msgstr "Filamentin kopmadan ne kadar hızlı geri çekilmesi gerektiğidir."
  1772. #: fdmprinter.def.json
  1773. msgctxt "material_break_preparation_temperature label"
  1774. msgid "Break Preparation Temperature"
  1775. msgstr "Kopma Hazırlığı Sıcaklığı"
  1776. #: fdmprinter.def.json
  1777. msgctxt "material_break_preparation_temperature description"
  1778. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  1779. 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."
  1780. #: fdmprinter.def.json
  1781. msgctxt "material_break_retracted_position label"
  1782. msgid "Break Retracted Position"
  1783. msgstr "Kopma Geri Çekme Mesafesi"
  1784. #: fdmprinter.def.json
  1785. msgctxt "material_break_retracted_position description"
  1786. msgid "How far to retract the filament in order to break it cleanly."
  1787. msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken mesafedir."
  1788. #: fdmprinter.def.json
  1789. msgctxt "material_break_speed label"
  1790. msgid "Break Retraction Speed"
  1791. msgstr "Kopma Geri Çekme Hızı"
  1792. #: fdmprinter.def.json
  1793. msgctxt "material_break_speed description"
  1794. msgid "The speed at which to retract the filament in order to break it cleanly."
  1795. msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken hızdır."
  1796. #: fdmprinter.def.json
  1797. msgctxt "material_break_temperature label"
  1798. msgid "Break Temperature"
  1799. msgstr "Kopma Sıcaklığı"
  1800. #: fdmprinter.def.json
  1801. msgctxt "material_break_temperature description"
  1802. msgid "The temperature at which the filament is broken for a clean break."
  1803. msgstr "Sorunsuz kopması için filament koptuğundaki sıcaklık değeridir."
  1804. #: fdmprinter.def.json
  1805. msgctxt "material_flush_purge_speed label"
  1806. msgid "Flush Purge Speed"
  1807. msgstr "Temizleme Hızı"
  1808. #: fdmprinter.def.json
  1809. msgctxt "material_flush_purge_speed description"
  1810. msgid "How fast to prime the material after switching to a different material."
  1811. msgstr "Farklı bir malzemeye geçildikten sonra malzemenin kullanıma hazır hale getirileceği süredir."
  1812. #: fdmprinter.def.json
  1813. msgctxt "material_flush_purge_length label"
  1814. msgid "Flush Purge Length"
  1815. msgstr "Temizleme Uzunluğu"
  1816. #: fdmprinter.def.json
  1817. msgctxt "material_flush_purge_length description"
  1818. 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."
  1819. msgstr "Farklı bir malzemeye geçilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır."
  1820. #: fdmprinter.def.json
  1821. msgctxt "material_end_of_filament_purge_speed label"
  1822. msgid "End of Filament Purge Speed"
  1823. msgstr "Filament Temizliği Bitiş Hızı"
  1824. #: fdmprinter.def.json
  1825. msgctxt "material_end_of_filament_purge_speed description"
  1826. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1827. msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirildikten sonra malzemenin kullanıma hazır hale getirileceği süredir."
  1828. #: fdmprinter.def.json
  1829. msgctxt "material_end_of_filament_purge_length label"
  1830. msgid "End of Filament Purge Length"
  1831. msgstr "Filament Temizliği Bitiş Uzunluğu"
  1832. #: fdmprinter.def.json
  1833. msgctxt "material_end_of_filament_purge_length description"
  1834. 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."
  1835. 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."
  1836. #: fdmprinter.def.json
  1837. msgctxt "material_maximum_park_duration label"
  1838. msgid "Maximum Park Duration"
  1839. msgstr "Maksimum Durma Süresi"
  1840. #: fdmprinter.def.json
  1841. msgctxt "material_maximum_park_duration description"
  1842. msgid "How long the material can be kept out of dry storage safely."
  1843. msgstr "Malzemenin kuru olmadığı durumda güvenli şekilde saklanabileceği süredir."
  1844. #: fdmprinter.def.json
  1845. msgctxt "material_no_load_move_factor label"
  1846. msgid "No Load Move Factor"
  1847. msgstr "Yük Taşıma Çarpanı Yok"
  1848. #: fdmprinter.def.json
  1849. msgctxt "material_no_load_move_factor description"
  1850. 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."
  1851. 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."
  1852. #: fdmprinter.def.json
  1853. msgctxt "material_flow label"
  1854. msgid "Flow"
  1855. msgstr "Akış"
  1856. #: fdmprinter.def.json
  1857. msgctxt "material_flow description"
  1858. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1859. msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır."
  1860. #: fdmprinter.def.json
  1861. msgctxt "wall_material_flow label"
  1862. msgid "Wall Flow"
  1863. msgstr "Duvar Akışı"
  1864. #: fdmprinter.def.json
  1865. msgctxt "wall_material_flow description"
  1866. msgid "Flow compensation on wall lines."
  1867. msgstr "Duvar hatlarının akış telafisidir."
  1868. #: fdmprinter.def.json
  1869. msgctxt "wall_0_material_flow label"
  1870. msgid "Outer Wall Flow"
  1871. msgstr "Dış Duvar Akışı"
  1872. #: fdmprinter.def.json
  1873. msgctxt "wall_0_material_flow description"
  1874. msgid "Flow compensation on the outermost wall line."
  1875. msgstr "En dıştaki duvar hattının akış telafisidir."
  1876. #: fdmprinter.def.json
  1877. msgctxt "wall_x_material_flow label"
  1878. msgid "Inner Wall(s) Flow"
  1879. msgstr "İç Duvar Akışı"
  1880. #: fdmprinter.def.json
  1881. msgctxt "wall_x_material_flow description"
  1882. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1883. msgstr "En dıştaki duvar hattı hariç diğer duvar hatlarının akış telafisidir."
  1884. #: fdmprinter.def.json
  1885. msgctxt "skin_material_flow label"
  1886. msgid "Top/Bottom Flow"
  1887. msgstr "Üst/Alt Akış"
  1888. #: fdmprinter.def.json
  1889. msgctxt "skin_material_flow description"
  1890. msgid "Flow compensation on top/bottom lines."
  1891. msgstr "Üst/alt hatların akış telafisidir."
  1892. #: fdmprinter.def.json
  1893. msgctxt "roofing_material_flow label"
  1894. msgid "Top Surface Skin Flow"
  1895. msgstr "Üst Yüzeyin Dış Katman Akışı"
  1896. #: fdmprinter.def.json
  1897. msgctxt "roofing_material_flow description"
  1898. msgid "Flow compensation on lines of the areas at the top of the print."
  1899. msgstr "Baskının üst bölümlerindeki hatların akış telafisidir."
  1900. #: fdmprinter.def.json
  1901. msgctxt "infill_material_flow label"
  1902. msgid "Infill Flow"
  1903. msgstr "Dolgu Akışı"
  1904. #: fdmprinter.def.json
  1905. msgctxt "infill_material_flow description"
  1906. msgid "Flow compensation on infill lines."
  1907. msgstr "Dolgu hatlarının akış telafisidir."
  1908. #: fdmprinter.def.json
  1909. msgctxt "skirt_brim_material_flow label"
  1910. msgid "Skirt/Brim Flow"
  1911. msgstr "Etek/Kenar Akışı"
  1912. #: fdmprinter.def.json
  1913. msgctxt "skirt_brim_material_flow description"
  1914. msgid "Flow compensation on skirt or brim lines."
  1915. msgstr "Etek veya kenar hatlarının akış telafisidir."
  1916. #: fdmprinter.def.json
  1917. msgctxt "support_material_flow label"
  1918. msgid "Support Flow"
  1919. msgstr "Destek Akışı"
  1920. #: fdmprinter.def.json
  1921. msgctxt "support_material_flow description"
  1922. msgid "Flow compensation on support structure lines."
  1923. msgstr "Destek yapı hatlarının akış telafisidir."
  1924. #: fdmprinter.def.json
  1925. msgctxt "support_interface_material_flow label"
  1926. msgid "Support Interface Flow"
  1927. msgstr "Destek Ara Yüzeyi Akışı"
  1928. #: fdmprinter.def.json
  1929. msgctxt "support_interface_material_flow description"
  1930. msgid "Flow compensation on lines of support roof or floor."
  1931. msgstr "Destek çatı ve zemin hatlarının akış telafisidir."
  1932. #: fdmprinter.def.json
  1933. msgctxt "support_roof_material_flow label"
  1934. msgid "Support Roof Flow"
  1935. msgstr "Destek Çatı Akışı"
  1936. #: fdmprinter.def.json
  1937. msgctxt "support_roof_material_flow description"
  1938. msgid "Flow compensation on support roof lines."
  1939. msgstr "Destek çatı hatlarının akış telafisidir."
  1940. #: fdmprinter.def.json
  1941. msgctxt "support_bottom_material_flow label"
  1942. msgid "Support Floor Flow"
  1943. msgstr "Destek Zemin Akışı"
  1944. #: fdmprinter.def.json
  1945. msgctxt "support_bottom_material_flow description"
  1946. msgid "Flow compensation on support floor lines."
  1947. msgstr "Destek zemin hatlarının akış telafisidir."
  1948. #: fdmprinter.def.json
  1949. msgctxt "prime_tower_flow label"
  1950. msgid "Prime Tower Flow"
  1951. msgstr "İlk Direk Akışı"
  1952. #: fdmprinter.def.json
  1953. msgctxt "prime_tower_flow description"
  1954. msgid "Flow compensation on prime tower lines."
  1955. msgstr "Temel kule hatlarının akış telafisidir."
  1956. #: fdmprinter.def.json
  1957. msgctxt "material_flow_layer_0 label"
  1958. msgid "Initial Layer Flow"
  1959. msgstr "İlk Katman Akışı"
  1960. #: fdmprinter.def.json
  1961. msgctxt "material_flow_layer_0 description"
  1962. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1963. msgstr "İlk katman için akış dengelemesi: ilk katmana ekstrude edilen malzeme miktarı bu değerle çarpılır."
  1964. #: fdmprinter.def.json
  1965. msgctxt "material_standby_temperature label"
  1966. msgid "Standby Temperature"
  1967. msgstr "Bekleme Sıcaklığı"
  1968. #: fdmprinter.def.json
  1969. msgctxt "material_standby_temperature description"
  1970. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  1971. msgstr "Yazdırma için başka bir nozül kullanılırken nozülün sıcaklığı."
  1972. #: fdmprinter.def.json
  1973. msgctxt "speed label"
  1974. msgid "Speed"
  1975. msgstr "Hız"
  1976. #: fdmprinter.def.json
  1977. msgctxt "speed description"
  1978. msgid "Speed"
  1979. msgstr "Hız"
  1980. #: fdmprinter.def.json
  1981. msgctxt "speed_print label"
  1982. msgid "Print Speed"
  1983. msgstr "Yazdırma Hızı"
  1984. #: fdmprinter.def.json
  1985. msgctxt "speed_print description"
  1986. msgid "The speed at which printing happens."
  1987. msgstr "Yazdırmanın gerçekleştiği hız."
  1988. #: fdmprinter.def.json
  1989. msgctxt "speed_infill label"
  1990. msgid "Infill Speed"
  1991. msgstr "Dolgu Hızı"
  1992. #: fdmprinter.def.json
  1993. msgctxt "speed_infill description"
  1994. msgid "The speed at which infill is printed."
  1995. msgstr "Dolgunun gerçekleştiği hız."
  1996. #: fdmprinter.def.json
  1997. msgctxt "speed_wall label"
  1998. msgid "Wall Speed"
  1999. msgstr "Duvar Hızı"
  2000. #: fdmprinter.def.json
  2001. msgctxt "speed_wall description"
  2002. msgid "The speed at which the walls are printed."
  2003. msgstr "Duvarların yazdırıldığı hız."
  2004. #: fdmprinter.def.json
  2005. msgctxt "speed_wall_0 label"
  2006. msgid "Outer Wall Speed"
  2007. msgstr "Dış Duvar Hızı"
  2008. #: fdmprinter.def.json
  2009. msgctxt "speed_wall_0 description"
  2010. 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."
  2011. 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."
  2012. #: fdmprinter.def.json
  2013. msgctxt "speed_wall_x label"
  2014. msgid "Inner Wall Speed"
  2015. msgstr "İç Duvar Hızı"
  2016. #: fdmprinter.def.json
  2017. msgctxt "speed_wall_x description"
  2018. 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."
  2019. 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."
  2020. #: fdmprinter.def.json
  2021. msgctxt "speed_roofing label"
  2022. msgid "Top Surface Skin Speed"
  2023. msgstr "Üst Yüzey Hızı"
  2024. #: fdmprinter.def.json
  2025. msgctxt "speed_roofing description"
  2026. msgid "The speed at which top surface skin layers are printed."
  2027. msgstr "Üst yüzey katmanların yazdırıldığı hız."
  2028. #: fdmprinter.def.json
  2029. msgctxt "speed_topbottom label"
  2030. msgid "Top/Bottom Speed"
  2031. msgstr "Üst/Alt Hız"
  2032. #: fdmprinter.def.json
  2033. msgctxt "speed_topbottom description"
  2034. msgid "The speed at which top/bottom layers are printed."
  2035. msgstr "Üst/alt katmanların yazdırıldığı hız."
  2036. #: fdmprinter.def.json
  2037. msgctxt "speed_support label"
  2038. msgid "Support Speed"
  2039. msgstr "Destek Hızı"
  2040. #: fdmprinter.def.json
  2041. msgctxt "speed_support description"
  2042. 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."
  2043. 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."
  2044. #: fdmprinter.def.json
  2045. msgctxt "speed_support_infill label"
  2046. msgid "Support Infill Speed"
  2047. msgstr "Destek Dolgu Hızı"
  2048. #: fdmprinter.def.json
  2049. msgctxt "speed_support_infill description"
  2050. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  2051. msgstr "Dolgu desteğinin yazdırıldığı hız. Dolguyu daha düşük hızlarda yazdırmak sağlamlığı artırır."
  2052. #: fdmprinter.def.json
  2053. msgctxt "speed_support_interface label"
  2054. msgid "Support Interface Speed"
  2055. msgstr "Destek Arayüzü Hızı"
  2056. #: fdmprinter.def.json
  2057. msgctxt "speed_support_interface description"
  2058. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  2059. 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."
  2060. #: fdmprinter.def.json
  2061. msgctxt "speed_support_roof label"
  2062. msgid "Support Roof Speed"
  2063. msgstr "Destek Çatısı Hızı"
  2064. #: fdmprinter.def.json
  2065. msgctxt "speed_support_roof description"
  2066. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  2067. 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."
  2068. #: fdmprinter.def.json
  2069. msgctxt "speed_support_bottom label"
  2070. msgid "Support Floor Speed"
  2071. msgstr "Destek Zemini Hızı"
  2072. #: fdmprinter.def.json
  2073. msgctxt "speed_support_bottom description"
  2074. 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."
  2075. msgstr "Destek zemininin yazdırılma hızı. Daha düşük hızlarda yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir."
  2076. #: fdmprinter.def.json
  2077. msgctxt "speed_prime_tower label"
  2078. msgid "Prime Tower Speed"
  2079. msgstr "İlk Direk Hızı"
  2080. #: fdmprinter.def.json
  2081. msgctxt "speed_prime_tower description"
  2082. 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."
  2083. 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."
  2084. #: fdmprinter.def.json
  2085. msgctxt "speed_travel label"
  2086. msgid "Travel Speed"
  2087. msgstr "Hareket Hızı"
  2088. #: fdmprinter.def.json
  2089. msgctxt "speed_travel description"
  2090. msgid "The speed at which travel moves are made."
  2091. msgstr "Hareket hamlelerinin hızı."
  2092. #: fdmprinter.def.json
  2093. msgctxt "speed_layer_0 label"
  2094. msgid "Initial Layer Speed"
  2095. msgstr "İlk Katman Hızı"
  2096. #: fdmprinter.def.json
  2097. msgctxt "speed_layer_0 description"
  2098. 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."
  2099. 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."
  2100. #: fdmprinter.def.json
  2101. msgctxt "speed_print_layer_0 label"
  2102. msgid "Initial Layer Print Speed"
  2103. msgstr "İlk Katman Yazdırma Hızı"
  2104. #: fdmprinter.def.json
  2105. msgctxt "speed_print_layer_0 description"
  2106. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  2107. 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."
  2108. #: fdmprinter.def.json
  2109. msgctxt "speed_travel_layer_0 label"
  2110. msgid "Initial Layer Travel Speed"
  2111. msgstr "İlk Katman Hareket Hızı"
  2112. #: fdmprinter.def.json
  2113. msgctxt "speed_travel_layer_0 description"
  2114. 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."
  2115. 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."
  2116. #: fdmprinter.def.json
  2117. msgctxt "skirt_brim_speed label"
  2118. msgid "Skirt/Brim Speed"
  2119. msgstr "Etek/Kenar Hızı"
  2120. #: fdmprinter.def.json
  2121. msgctxt "skirt_brim_speed description"
  2122. 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."
  2123. 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."
  2124. #: fdmprinter.def.json
  2125. msgctxt "speed_z_hop label"
  2126. msgid "Z Hop Speed"
  2127. msgstr "Z Atlama Hızı"
  2128. #: fdmprinter.def.json
  2129. msgctxt "speed_z_hop description"
  2130. 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."
  2131. 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."
  2132. #: fdmprinter.def.json
  2133. msgctxt "speed_slowdown_layers label"
  2134. msgid "Number of Slower Layers"
  2135. msgstr "Daha Yavaş Katman Sayısı"
  2136. #: fdmprinter.def.json
  2137. msgctxt "speed_slowdown_layers description"
  2138. 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."
  2139. 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."
  2140. #: fdmprinter.def.json
  2141. msgctxt "speed_equalize_flow_enabled label"
  2142. msgid "Equalize Filament Flow"
  2143. msgstr "Filaman Akışını Eşitle"
  2144. #: fdmprinter.def.json
  2145. msgctxt "speed_equalize_flow_enabled description"
  2146. msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines."
  2147. msgstr "Saniye başına geçirilen malzeme sayısının aynı kalabilmesi için normalden ince hatları daha hızlı yazdırın. Modelinizdeki parçalar ayarlarda belirtilenden daha küçük hat genişliği olan hatların yazdırılmasını gerektirebilir. Bu ayar bu tür hatlar için hız değişikliklerini kontrol eder."
  2148. #: fdmprinter.def.json
  2149. msgctxt "speed_equalize_flow_max label"
  2150. msgid "Maximum Speed for Flow Equalization"
  2151. msgstr "Akışı Eşitlemek için Maksimum Hız"
  2152. #: fdmprinter.def.json
  2153. msgctxt "speed_equalize_flow_max description"
  2154. msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  2155. msgstr "Akışı eşitlemek için yazdırma hızını ayarlarken kullanılan maksimum yazdırma hızı."
  2156. #: fdmprinter.def.json
  2157. msgctxt "acceleration_enabled label"
  2158. msgid "Enable Acceleration Control"
  2159. msgstr "İvme Kontrolünü Etkinleştir"
  2160. #: fdmprinter.def.json
  2161. msgctxt "acceleration_enabled description"
  2162. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  2163. msgstr "Yazıcı başlığı ivmesinin ayarlanmasını sağlar. İvmeleri artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir."
  2164. #: fdmprinter.def.json
  2165. msgctxt "acceleration_print label"
  2166. msgid "Print Acceleration"
  2167. msgstr "Yazdırma İvmesi"
  2168. #: fdmprinter.def.json
  2169. msgctxt "acceleration_print description"
  2170. msgid "The acceleration with which printing happens."
  2171. msgstr "Yazdırmanın gerçekleştiği ivme."
  2172. #: fdmprinter.def.json
  2173. msgctxt "acceleration_infill label"
  2174. msgid "Infill Acceleration"
  2175. msgstr "Dolgu İvmesi"
  2176. #: fdmprinter.def.json
  2177. msgctxt "acceleration_infill description"
  2178. msgid "The acceleration with which infill is printed."
  2179. msgstr "Dolgunun yazdırıldığı ivme."
  2180. #: fdmprinter.def.json
  2181. msgctxt "acceleration_wall label"
  2182. msgid "Wall Acceleration"
  2183. msgstr "Duvar İvmesi"
  2184. #: fdmprinter.def.json
  2185. msgctxt "acceleration_wall description"
  2186. msgid "The acceleration with which the walls are printed."
  2187. msgstr "Duvarların yazdırıldığı ivme."
  2188. #: fdmprinter.def.json
  2189. msgctxt "acceleration_wall_0 label"
  2190. msgid "Outer Wall Acceleration"
  2191. msgstr "Dış Duvar İvmesi"
  2192. #: fdmprinter.def.json
  2193. msgctxt "acceleration_wall_0 description"
  2194. msgid "The acceleration with which the outermost walls are printed."
  2195. msgstr "En dış duvarların yazdırıldığı ivme."
  2196. #: fdmprinter.def.json
  2197. msgctxt "acceleration_wall_x label"
  2198. msgid "Inner Wall Acceleration"
  2199. msgstr "İç Duvar İvmesi"
  2200. #: fdmprinter.def.json
  2201. msgctxt "acceleration_wall_x description"
  2202. msgid "The acceleration with which all inner walls are printed."
  2203. msgstr "İç duvarların yazdırıldığı ivme."
  2204. #: fdmprinter.def.json
  2205. msgctxt "acceleration_roofing label"
  2206. msgid "Top Surface Skin Acceleration"
  2207. msgstr "Üst Yüzey İvmesi"
  2208. #: fdmprinter.def.json
  2209. msgctxt "acceleration_roofing description"
  2210. msgid "The acceleration with which top surface skin layers are printed."
  2211. msgstr "Üst yüzey katmanların yazdırıldığı ivme."
  2212. #: fdmprinter.def.json
  2213. msgctxt "acceleration_topbottom label"
  2214. msgid "Top/Bottom Acceleration"
  2215. msgstr "Üst/Alt İvme"
  2216. #: fdmprinter.def.json
  2217. msgctxt "acceleration_topbottom description"
  2218. msgid "The acceleration with which top/bottom layers are printed."
  2219. msgstr "Üst/alt katmanların yazdırıldığı ivme."
  2220. #: fdmprinter.def.json
  2221. msgctxt "acceleration_support label"
  2222. msgid "Support Acceleration"
  2223. msgstr "Destek İvmesi"
  2224. #: fdmprinter.def.json
  2225. msgctxt "acceleration_support description"
  2226. msgid "The acceleration with which the support structure is printed."
  2227. msgstr "Destek yapısının yazdırıldığı ivme."
  2228. #: fdmprinter.def.json
  2229. msgctxt "acceleration_support_infill label"
  2230. msgid "Support Infill Acceleration"
  2231. msgstr "Destek Dolgusu İvmesi"
  2232. #: fdmprinter.def.json
  2233. msgctxt "acceleration_support_infill description"
  2234. msgid "The acceleration with which the infill of support is printed."
  2235. msgstr "Destek dolgusunun yazdırıldığı ivme."
  2236. #: fdmprinter.def.json
  2237. msgctxt "acceleration_support_interface label"
  2238. msgid "Support Interface Acceleration"
  2239. msgstr "Destek Arayüzü İvmesi"
  2240. #: fdmprinter.def.json
  2241. msgctxt "acceleration_support_interface description"
  2242. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  2243. 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."
  2244. #: fdmprinter.def.json
  2245. msgctxt "acceleration_support_roof label"
  2246. msgid "Support Roof Acceleration"
  2247. msgstr "Destek Çatısı İvmesi"
  2248. #: fdmprinter.def.json
  2249. msgctxt "acceleration_support_roof description"
  2250. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  2251. 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."
  2252. #: fdmprinter.def.json
  2253. msgctxt "acceleration_support_bottom label"
  2254. msgid "Support Floor Acceleration"
  2255. msgstr "Destek Zemini İvmesi"
  2256. #: fdmprinter.def.json
  2257. msgctxt "acceleration_support_bottom description"
  2258. 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."
  2259. msgstr "Destek zemininin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir."
  2260. #: fdmprinter.def.json
  2261. msgctxt "acceleration_prime_tower label"
  2262. msgid "Prime Tower Acceleration"
  2263. msgstr "İlk Direk İvmesi"
  2264. #: fdmprinter.def.json
  2265. msgctxt "acceleration_prime_tower description"
  2266. msgid "The acceleration with which the prime tower is printed."
  2267. msgstr "İlk direğin yazdırıldığı ivme."
  2268. #: fdmprinter.def.json
  2269. msgctxt "acceleration_travel label"
  2270. msgid "Travel Acceleration"
  2271. msgstr "Hareket İvmesi"
  2272. #: fdmprinter.def.json
  2273. msgctxt "acceleration_travel description"
  2274. msgid "The acceleration with which travel moves are made."
  2275. msgstr "Hareket hamlelerinin ivmesi."
  2276. #: fdmprinter.def.json
  2277. msgctxt "acceleration_layer_0 label"
  2278. msgid "Initial Layer Acceleration"
  2279. msgstr "İlk Katman İvmesi"
  2280. #: fdmprinter.def.json
  2281. msgctxt "acceleration_layer_0 description"
  2282. msgid "The acceleration for the initial layer."
  2283. msgstr "İlk katman için belirlenen ivme."
  2284. #: fdmprinter.def.json
  2285. msgctxt "acceleration_print_layer_0 label"
  2286. msgid "Initial Layer Print Acceleration"
  2287. msgstr "İlk Katman Yazdırma İvmesi"
  2288. #: fdmprinter.def.json
  2289. msgctxt "acceleration_print_layer_0 description"
  2290. msgid "The acceleration during the printing of the initial layer."
  2291. msgstr "İlk katmanın yazdırıldığı ivme."
  2292. #: fdmprinter.def.json
  2293. msgctxt "acceleration_travel_layer_0 label"
  2294. msgid "Initial Layer Travel Acceleration"
  2295. msgstr "İlk Katman Hareket İvmesi"
  2296. #: fdmprinter.def.json
  2297. msgctxt "acceleration_travel_layer_0 description"
  2298. msgid "The acceleration for travel moves in the initial layer."
  2299. msgstr "İlk katmandaki hareket hamlelerinin ivmesi."
  2300. #: fdmprinter.def.json
  2301. msgctxt "acceleration_skirt_brim label"
  2302. msgid "Skirt/Brim Acceleration"
  2303. msgstr "Etek/Kenar İvmesi"
  2304. #: fdmprinter.def.json
  2305. msgctxt "acceleration_skirt_brim description"
  2306. 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."
  2307. 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."
  2308. #: fdmprinter.def.json
  2309. msgctxt "jerk_enabled label"
  2310. msgid "Enable Jerk Control"
  2311. msgstr "Salınım Kontrolünü Etkinleştir"
  2312. #: fdmprinter.def.json
  2313. msgctxt "jerk_enabled description"
  2314. 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."
  2315. 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."
  2316. #: fdmprinter.def.json
  2317. msgctxt "jerk_print label"
  2318. msgid "Print Jerk"
  2319. msgstr "Yazdırma İvmesi Değişimi"
  2320. #: fdmprinter.def.json
  2321. msgctxt "jerk_print description"
  2322. msgid "The maximum instantaneous velocity change of the print head."
  2323. msgstr "Yazıcı başlığının maksimum anlık hız değişimi."
  2324. #: fdmprinter.def.json
  2325. msgctxt "jerk_infill label"
  2326. msgid "Infill Jerk"
  2327. msgstr "Dolgu Salınımı"
  2328. #: fdmprinter.def.json
  2329. msgctxt "jerk_infill description"
  2330. msgid "The maximum instantaneous velocity change with which infill is printed."
  2331. msgstr "Dolgunun yazdırıldığı maksimum anlık hız değişimi."
  2332. #: fdmprinter.def.json
  2333. msgctxt "jerk_wall label"
  2334. msgid "Wall Jerk"
  2335. msgstr "Duvar Salınımı"
  2336. #: fdmprinter.def.json
  2337. msgctxt "jerk_wall description"
  2338. msgid "The maximum instantaneous velocity change with which the walls are printed."
  2339. msgstr "Duvarların yazdırıldığı maksimum anlık hız değişimi."
  2340. #: fdmprinter.def.json
  2341. msgctxt "jerk_wall_0 label"
  2342. msgid "Outer Wall Jerk"
  2343. msgstr "Dış Duvar Salınımı"
  2344. #: fdmprinter.def.json
  2345. msgctxt "jerk_wall_0 description"
  2346. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  2347. msgstr "En dıştaki duvarların yazdırıldığı maksimum anlık hız değişimi."
  2348. #: fdmprinter.def.json
  2349. msgctxt "jerk_wall_x label"
  2350. msgid "Inner Wall Jerk"
  2351. msgstr "İç Duvar Salınımı"
  2352. #: fdmprinter.def.json
  2353. msgctxt "jerk_wall_x description"
  2354. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  2355. msgstr "Tüm iç duvarların yazdırıldığı maksimum anlık hız değişimi."
  2356. #: fdmprinter.def.json
  2357. msgctxt "jerk_roofing label"
  2358. msgid "Top Surface Skin Jerk"
  2359. msgstr "Üst Yüzey İvmesi Değişimi"
  2360. #: fdmprinter.def.json
  2361. msgctxt "jerk_roofing description"
  2362. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  2363. msgstr "Üst yüzey katmanların yazdırıldığı maksimum anlık hız değişimi."
  2364. #: fdmprinter.def.json
  2365. msgctxt "jerk_topbottom label"
  2366. msgid "Top/Bottom Jerk"
  2367. msgstr "Üst/Alt Salınımı"
  2368. #: fdmprinter.def.json
  2369. msgctxt "jerk_topbottom description"
  2370. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  2371. msgstr "Üst/alt katmanların yazdırıldığı maksimum anlık hız değişimi."
  2372. #: fdmprinter.def.json
  2373. msgctxt "jerk_support label"
  2374. msgid "Support Jerk"
  2375. msgstr "Destek Salınımı"
  2376. #: fdmprinter.def.json
  2377. msgctxt "jerk_support description"
  2378. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  2379. msgstr "Destek yapısının yazdırıldığı maksimum anlık hız değişimi."
  2380. #: fdmprinter.def.json
  2381. msgctxt "jerk_support_infill label"
  2382. msgid "Support Infill Jerk"
  2383. msgstr "Destek Dolgu İvmesi Değişimi"
  2384. #: fdmprinter.def.json
  2385. msgctxt "jerk_support_infill description"
  2386. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  2387. msgstr "Desteğin dolgusunun yazdırıldığı maksimum anlık hız değişimi."
  2388. #: fdmprinter.def.json
  2389. msgctxt "jerk_support_interface label"
  2390. msgid "Support Interface Jerk"
  2391. msgstr "Destek Arayüz Salınımı"
  2392. #: fdmprinter.def.json
  2393. msgctxt "jerk_support_interface description"
  2394. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  2395. msgstr "Desteğin çatıları ve zeminlerinin yazdırıldığı maksimum anlık hız değişimi."
  2396. #: fdmprinter.def.json
  2397. msgctxt "jerk_support_roof label"
  2398. msgid "Support Roof Jerk"
  2399. msgstr "Destek Çatısı Sarsıntısı"
  2400. #: fdmprinter.def.json
  2401. msgctxt "jerk_support_roof description"
  2402. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  2403. msgstr "Desteğin çatılarının yazdırıldığı maksimum anlık hız değişimi."
  2404. #: fdmprinter.def.json
  2405. msgctxt "jerk_support_bottom label"
  2406. msgid "Support Floor Jerk"
  2407. msgstr "Destek Zemini Sarsıntısı"
  2408. #: fdmprinter.def.json
  2409. msgctxt "jerk_support_bottom description"
  2410. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  2411. msgstr "Desteğin zeminlerinin yazdırıldığı maksimum anlık hız değişimi."
  2412. #: fdmprinter.def.json
  2413. msgctxt "jerk_prime_tower label"
  2414. msgid "Prime Tower Jerk"
  2415. msgstr "İlk Direk Salınımı"
  2416. #: fdmprinter.def.json
  2417. msgctxt "jerk_prime_tower description"
  2418. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  2419. msgstr "İlk direğin yazdırıldığı maksimum anlık hız değişimi."
  2420. #: fdmprinter.def.json
  2421. msgctxt "jerk_travel label"
  2422. msgid "Travel Jerk"
  2423. msgstr "Hareket Salınımı"
  2424. #: fdmprinter.def.json
  2425. msgctxt "jerk_travel description"
  2426. msgid "The maximum instantaneous velocity change with which travel moves are made."
  2427. msgstr "Hareket hamlelerinin yapıldığı maksimum anlık hız değişimi."
  2428. #: fdmprinter.def.json
  2429. msgctxt "jerk_layer_0 label"
  2430. msgid "Initial Layer Jerk"
  2431. msgstr "İlk Katman Salınımı"
  2432. #: fdmprinter.def.json
  2433. msgctxt "jerk_layer_0 description"
  2434. msgid "The print maximum instantaneous velocity change for the initial layer."
  2435. msgstr "İlk katman için maksimum anlık yazdırma hızı değişimi."
  2436. #: fdmprinter.def.json
  2437. msgctxt "jerk_print_layer_0 label"
  2438. msgid "Initial Layer Print Jerk"
  2439. msgstr "İlk Katman Yazdırma Salınımı"
  2440. #: fdmprinter.def.json
  2441. msgctxt "jerk_print_layer_0 description"
  2442. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  2443. msgstr "İlk katmanın yazdırıldığı maksimum anlık yazdırma hızı değişimi."
  2444. #: fdmprinter.def.json
  2445. msgctxt "jerk_travel_layer_0 label"
  2446. msgid "Initial Layer Travel Jerk"
  2447. msgstr "İlk Katman Hareket Salınımı"
  2448. #: fdmprinter.def.json
  2449. msgctxt "jerk_travel_layer_0 description"
  2450. msgid "The acceleration for travel moves in the initial layer."
  2451. msgstr "İlk katmandaki hareket hamlelerinin ivmesi."
  2452. #: fdmprinter.def.json
  2453. msgctxt "jerk_skirt_brim label"
  2454. msgid "Skirt/Brim Jerk"
  2455. msgstr "Etek/Kenar İvmesi Değişimi"
  2456. #: fdmprinter.def.json
  2457. msgctxt "jerk_skirt_brim description"
  2458. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  2459. msgstr "Etek ve kenarların yazdırıldığı maksimum anlık hız değişimi."
  2460. #: fdmprinter.def.json
  2461. msgctxt "travel label"
  2462. msgid "Travel"
  2463. msgstr "Hareket"
  2464. #: fdmprinter.def.json
  2465. msgctxt "travel description"
  2466. msgid "travel"
  2467. msgstr "hareket"
  2468. #: fdmprinter.def.json
  2469. msgctxt "retraction_enable label"
  2470. msgid "Enable Retraction"
  2471. msgstr "Geri Çekmeyi Etkinleştir"
  2472. #: fdmprinter.def.json
  2473. msgctxt "retraction_enable description"
  2474. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2475. msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker."
  2476. #: fdmprinter.def.json
  2477. msgctxt "retract_at_layer_change label"
  2478. msgid "Retract at Layer Change"
  2479. msgstr "Katman Değişimindeki Geri Çekme"
  2480. #: fdmprinter.def.json
  2481. msgctxt "retract_at_layer_change description"
  2482. msgid "Retract the filament when the nozzle is moving to the next layer."
  2483. msgstr "Nozül bir sonraki katmana doğru hareket ettiğinde filamanı geri çekin."
  2484. #: fdmprinter.def.json
  2485. msgctxt "retraction_amount label"
  2486. msgid "Retraction Distance"
  2487. msgstr "Geri Çekme Mesafesi"
  2488. #: fdmprinter.def.json
  2489. msgctxt "retraction_amount description"
  2490. msgid "The length of material retracted during a retraction move."
  2491. msgstr "Geri çekme hareketi sırasında geri çekilen malzemenin uzunluğu."
  2492. #: fdmprinter.def.json
  2493. msgctxt "retraction_speed label"
  2494. msgid "Retraction Speed"
  2495. msgstr "Geri Çekme Hızı"
  2496. #: fdmprinter.def.json
  2497. msgctxt "retraction_speed description"
  2498. msgid "The speed at which the filament is retracted and primed during a retraction move."
  2499. msgstr "Filamanın geri çekildiği ve geri çekme hareketi sırasında astarlandığı hız."
  2500. #: fdmprinter.def.json
  2501. msgctxt "retraction_retract_speed label"
  2502. msgid "Retraction Retract Speed"
  2503. msgstr "Geri Çekme Sırasındaki Çekim Hızı"
  2504. #: fdmprinter.def.json
  2505. msgctxt "retraction_retract_speed description"
  2506. msgid "The speed at which the filament is retracted during a retraction move."
  2507. msgstr "Filamanın geri çekme hareketi sırasında geri çekildiği hız."
  2508. #: fdmprinter.def.json
  2509. msgctxt "retraction_prime_speed label"
  2510. msgid "Retraction Prime Speed"
  2511. msgstr "Geri Çekme Sırasındaki Astar Hızı"
  2512. #: fdmprinter.def.json
  2513. msgctxt "retraction_prime_speed description"
  2514. msgid "The speed at which the filament is primed during a retraction move."
  2515. msgstr "Filamanın geri çekme hareketi sırasında astarlandığı hız."
  2516. #: fdmprinter.def.json
  2517. msgctxt "retraction_extra_prime_amount label"
  2518. msgid "Retraction Extra Prime Amount"
  2519. msgstr "Geri Çekme Sırasındaki İlave Astar Miktarı"
  2520. #: fdmprinter.def.json
  2521. msgctxt "retraction_extra_prime_amount description"
  2522. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2523. msgstr "Hareket sırasında bazı malzemeler eksilebilir, bu malzemeler burada telafi edebilir."
  2524. #: fdmprinter.def.json
  2525. msgctxt "retraction_min_travel label"
  2526. msgid "Retraction Minimum Travel"
  2527. msgstr "Minimum Geri Çekme Hareketi"
  2528. #: fdmprinter.def.json
  2529. msgctxt "retraction_min_travel description"
  2530. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  2531. 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."
  2532. #: fdmprinter.def.json
  2533. msgctxt "retraction_count_max label"
  2534. msgid "Maximum Retraction Count"
  2535. msgstr "Maksimum Geri Çekme Sayısı"
  2536. #: fdmprinter.def.json
  2537. msgctxt "retraction_count_max description"
  2538. 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."
  2539. 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."
  2540. #: fdmprinter.def.json
  2541. msgctxt "retraction_extrusion_window label"
  2542. msgid "Minimum Extrusion Distance Window"
  2543. msgstr "Minimum Geri Çekme Mesafesi Penceresi"
  2544. #: fdmprinter.def.json
  2545. msgctxt "retraction_extrusion_window description"
  2546. 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."
  2547. 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."
  2548. #: fdmprinter.def.json
  2549. msgctxt "limit_support_retractions label"
  2550. msgid "Limit Support Retractions"
  2551. msgstr "Destek Geri Çekmelerini Sınırlandır"
  2552. #: fdmprinter.def.json
  2553. msgctxt "limit_support_retractions description"
  2554. msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
  2555. msgstr "Düz hat üzerinde destekler arasında hareket ederken geri çekmeyi atlayın. Bu ayarın etkinleştirilmesi baskı süresini kısaltır ancak destek yapısında ölçüsüz dizilime yol açabilir."
  2556. #: fdmprinter.def.json
  2557. msgctxt "retraction_combing label"
  2558. msgid "Combing Mode"
  2559. msgstr "Tarama Modu"
  2560. #: fdmprinter.def.json
  2561. msgctxt "retraction_combing description"
  2562. 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."
  2563. 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."
  2564. #: fdmprinter.def.json
  2565. msgctxt "retraction_combing option off"
  2566. msgid "Off"
  2567. msgstr "Kapalı"
  2568. #: fdmprinter.def.json
  2569. msgctxt "retraction_combing option all"
  2570. msgid "All"
  2571. msgstr "Tümü"
  2572. #: fdmprinter.def.json
  2573. msgctxt "retraction_combing option noskin"
  2574. msgid "Not in Skin"
  2575. msgstr "Yüzey Alanında Değil"
  2576. #: fdmprinter.def.json
  2577. msgctxt "retraction_combing option infill"
  2578. msgid "Within Infill"
  2579. msgstr "Dolgu İçinde"
  2580. #: fdmprinter.def.json
  2581. msgctxt "retraction_combing_max_distance label"
  2582. msgid "Max Comb Distance With No Retract"
  2583. msgstr "Geri Çekmesiz Maks. Tarama Mesafesi"
  2584. #: fdmprinter.def.json
  2585. msgctxt "retraction_combing_max_distance description"
  2586. 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."
  2587. 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."
  2588. #: fdmprinter.def.json
  2589. msgctxt "travel_retract_before_outer_wall label"
  2590. msgid "Retract Before Outer Wall"
  2591. msgstr "Dış Duvardan Önce Geri Çek"
  2592. #: fdmprinter.def.json
  2593. msgctxt "travel_retract_before_outer_wall description"
  2594. msgid "Always retract when moving to start an outer wall."
  2595. msgstr "Dış duvar başlatmaya giderken her zaman geri çeker."
  2596. #: fdmprinter.def.json
  2597. msgctxt "travel_avoid_other_parts label"
  2598. msgid "Avoid Printed Parts When Traveling"
  2599. msgstr "Hareket Sırasında Yazdırılan Bölümleri Atlama"
  2600. #: fdmprinter.def.json
  2601. msgctxt "travel_avoid_other_parts description"
  2602. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  2603. 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."
  2604. #: fdmprinter.def.json
  2605. msgctxt "travel_avoid_supports label"
  2606. msgid "Avoid Supports When Traveling"
  2607. msgstr "Hareket Sırasında Destekleri Atla"
  2608. #: fdmprinter.def.json
  2609. msgctxt "travel_avoid_supports description"
  2610. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  2611. msgstr "Nozül hareket ederken önceden yazdırılmış destekleri atlar. Bu seçenek yalnızca tarama etkin olduğunda kullanılabilir."
  2612. #: fdmprinter.def.json
  2613. msgctxt "travel_avoid_distance label"
  2614. msgid "Travel Avoid Distance"
  2615. msgstr "Hareket Atlama Mesafesi"
  2616. #: fdmprinter.def.json
  2617. msgctxt "travel_avoid_distance description"
  2618. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2619. msgstr "Hareket esnasında atlama yaparken nozül ve daha önce yazdırılmış olan bölümler arasındaki mesafe."
  2620. #: fdmprinter.def.json
  2621. msgctxt "layer_start_x label"
  2622. msgid "Layer Start X"
  2623. msgstr "Katman Başlangıcı X"
  2624. #: fdmprinter.def.json
  2625. msgctxt "layer_start_x description"
  2626. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2627. msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun X koordinatı."
  2628. #: fdmprinter.def.json
  2629. msgctxt "layer_start_y label"
  2630. msgid "Layer Start Y"
  2631. msgstr "Katman Başlangıcı Y"
  2632. #: fdmprinter.def.json
  2633. msgctxt "layer_start_y description"
  2634. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2635. msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun Y koordinatı."
  2636. #: fdmprinter.def.json
  2637. msgctxt "retraction_hop_enabled label"
  2638. msgid "Z Hop When Retracted"
  2639. msgstr "Geri Çekildiğinde Z Sıçraması"
  2640. #: fdmprinter.def.json
  2641. msgctxt "retraction_hop_enabled description"
  2642. 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."
  2643. 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."
  2644. #: fdmprinter.def.json
  2645. msgctxt "retraction_hop_only_when_collides label"
  2646. msgid "Z Hop Only Over Printed Parts"
  2647. msgstr "Sadece Yazdırılan Parçalar Üzerindeki Z Sıçraması"
  2648. #: fdmprinter.def.json
  2649. msgctxt "retraction_hop_only_when_collides description"
  2650. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2651. 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."
  2652. #: fdmprinter.def.json
  2653. msgctxt "retraction_hop label"
  2654. msgid "Z Hop Height"
  2655. msgstr "Z Sıçraması Yüksekliği"
  2656. #: fdmprinter.def.json
  2657. msgctxt "retraction_hop description"
  2658. msgid "The height difference when performing a Z Hop."
  2659. msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı."
  2660. #: fdmprinter.def.json
  2661. msgctxt "retraction_hop_after_extruder_switch label"
  2662. msgid "Z Hop After Extruder Switch"
  2663. msgstr "Ekstruder Değişimi Sonrasındaki Z Sıçraması"
  2664. #: fdmprinter.def.json
  2665. msgctxt "retraction_hop_after_extruder_switch description"
  2666. 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."
  2667. 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."
  2668. #: fdmprinter.def.json
  2669. msgctxt "retraction_hop_after_extruder_switch_height label"
  2670. msgid "Z Hop After Extruder Switch Height"
  2671. msgstr "Ekstruder Yüksekliği Değişimi Sonrasındaki Z Sıçraması"
  2672. #: fdmprinter.def.json
  2673. msgctxt "retraction_hop_after_extruder_switch_height description"
  2674. msgid "The height difference when performing a Z Hop after extruder switch."
  2675. msgstr "Ekstruder değişiminden sonra Z Sıçraması yapılırken oluşan yükseklik farkı."
  2676. #: fdmprinter.def.json
  2677. msgctxt "cooling label"
  2678. msgid "Cooling"
  2679. msgstr "Soğuma"
  2680. #: fdmprinter.def.json
  2681. msgctxt "cooling description"
  2682. msgid "Cooling"
  2683. msgstr "Soğuma"
  2684. #: fdmprinter.def.json
  2685. msgctxt "cool_fan_enabled label"
  2686. msgid "Enable Print Cooling"
  2687. msgstr "Yazdırma Soğutmayı Etkinleştir"
  2688. #: fdmprinter.def.json
  2689. msgctxt "cool_fan_enabled description"
  2690. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  2691. 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."
  2692. #: fdmprinter.def.json
  2693. msgctxt "cool_fan_speed label"
  2694. msgid "Fan Speed"
  2695. msgstr "Fan Hızı"
  2696. #: fdmprinter.def.json
  2697. msgctxt "cool_fan_speed description"
  2698. msgid "The speed at which the print cooling fans spin."
  2699. msgstr "Yazdırma soğutma fanlarının dönüş hızı."
  2700. #: fdmprinter.def.json
  2701. msgctxt "cool_fan_speed_min label"
  2702. msgid "Regular Fan Speed"
  2703. msgstr "Olağan Fan Hızı"
  2704. #: fdmprinter.def.json
  2705. msgctxt "cool_fan_speed_min description"
  2706. 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."
  2707. 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."
  2708. #: fdmprinter.def.json
  2709. msgctxt "cool_fan_speed_max label"
  2710. msgid "Maximum Fan Speed"
  2711. msgstr "Maksimum Fan Hızı"
  2712. #: fdmprinter.def.json
  2713. msgctxt "cool_fan_speed_max description"
  2714. 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."
  2715. 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."
  2716. #: fdmprinter.def.json
  2717. msgctxt "cool_min_layer_time_fan_speed_max label"
  2718. msgid "Regular/Maximum Fan Speed Threshold"
  2719. msgstr "Olağan/Maksimum Fan Hızı Sınırı"
  2720. #: fdmprinter.def.json
  2721. msgctxt "cool_min_layer_time_fan_speed_max description"
  2722. 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."
  2723. 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."
  2724. #: fdmprinter.def.json
  2725. msgctxt "cool_fan_speed_0 label"
  2726. msgid "Initial Fan Speed"
  2727. msgstr "İlk Fan Hızı"
  2728. #: fdmprinter.def.json
  2729. msgctxt "cool_fan_speed_0 description"
  2730. 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."
  2731. 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."
  2732. #: fdmprinter.def.json
  2733. msgctxt "cool_fan_full_at_height label"
  2734. msgid "Regular Fan Speed at Height"
  2735. msgstr "Yüksekteki Olağan Fan Hızı"
  2736. #: fdmprinter.def.json
  2737. msgctxt "cool_fan_full_at_height description"
  2738. 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."
  2739. 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."
  2740. #: fdmprinter.def.json
  2741. msgctxt "cool_fan_full_layer label"
  2742. msgid "Regular Fan Speed at Layer"
  2743. msgstr "Katmandaki Olağan Fan Hızı"
  2744. #: fdmprinter.def.json
  2745. msgctxt "cool_fan_full_layer description"
  2746. 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."
  2747. 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."
  2748. #: fdmprinter.def.json
  2749. msgctxt "cool_min_layer_time label"
  2750. msgid "Minimum Layer Time"
  2751. msgstr "Minimum Katman Süresi"
  2752. #: fdmprinter.def.json
  2753. msgctxt "cool_min_layer_time description"
  2754. 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."
  2755. 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."
  2756. #: fdmprinter.def.json
  2757. msgctxt "cool_min_speed label"
  2758. msgid "Minimum Speed"
  2759. msgstr "Minimum Hız"
  2760. #: fdmprinter.def.json
  2761. msgctxt "cool_min_speed description"
  2762. 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."
  2763. 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."
  2764. #: fdmprinter.def.json
  2765. msgctxt "cool_lift_head label"
  2766. msgid "Lift Head"
  2767. msgstr "Yazıcı Başlığını Kaldır"
  2768. #: fdmprinter.def.json
  2769. msgctxt "cool_lift_head description"
  2770. 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."
  2771. 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."
  2772. #: fdmprinter.def.json
  2773. msgctxt "support label"
  2774. msgid "Support"
  2775. msgstr "Destek"
  2776. #: fdmprinter.def.json
  2777. msgctxt "support description"
  2778. msgid "Support"
  2779. msgstr "Destek"
  2780. #: fdmprinter.def.json
  2781. msgctxt "support_enable label"
  2782. msgid "Generate Support"
  2783. msgstr "Oluşturma Desteği"
  2784. #: fdmprinter.def.json
  2785. msgctxt "support_enable description"
  2786. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2787. 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."
  2788. #: fdmprinter.def.json
  2789. msgctxt "support_extruder_nr label"
  2790. msgid "Support Extruder"
  2791. msgstr "Destek Ekstruderi"
  2792. #: fdmprinter.def.json
  2793. msgctxt "support_extruder_nr description"
  2794. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2795. msgstr "Destek için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır."
  2796. #: fdmprinter.def.json
  2797. msgctxt "support_infill_extruder_nr label"
  2798. msgid "Support Infill Extruder"
  2799. msgstr "Destek Dolgu Ekstruderi"
  2800. #: fdmprinter.def.json
  2801. msgctxt "support_infill_extruder_nr description"
  2802. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2803. msgstr "Destek dolgusu için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır."
  2804. #: fdmprinter.def.json
  2805. msgctxt "support_extruder_nr_layer_0 label"
  2806. msgid "First Layer Support Extruder"
  2807. msgstr "İlk Katman Destek Ekstruderi"
  2808. #: fdmprinter.def.json
  2809. msgctxt "support_extruder_nr_layer_0 description"
  2810. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2811. msgstr "Destek dolgusunun ilk katmanı için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır."
  2812. #: fdmprinter.def.json
  2813. msgctxt "support_interface_extruder_nr label"
  2814. msgid "Support Interface Extruder"
  2815. msgstr "Destek Arayüz Ekstruderi"
  2816. #: fdmprinter.def.json
  2817. msgctxt "support_interface_extruder_nr description"
  2818. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2819. 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."
  2820. #: fdmprinter.def.json
  2821. msgctxt "support_roof_extruder_nr label"
  2822. msgid "Support Roof Extruder"
  2823. msgstr "Destek Çatısı Ekstrüderi"
  2824. #: fdmprinter.def.json
  2825. msgctxt "support_roof_extruder_nr description"
  2826. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2827. 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."
  2828. #: fdmprinter.def.json
  2829. msgctxt "support_bottom_extruder_nr label"
  2830. msgid "Support Floor Extruder"
  2831. msgstr "Destek Zemini Ekstrüderi"
  2832. #: fdmprinter.def.json
  2833. msgctxt "support_bottom_extruder_nr description"
  2834. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2835. msgstr "Desteğin zemininin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır."
  2836. #: fdmprinter.def.json
  2837. msgctxt "support_structure label"
  2838. msgid "Support Structure"
  2839. msgstr "Destek Yapısı"
  2840. #: fdmprinter.def.json
  2841. msgctxt "support_structure description"
  2842. 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."
  2843. 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."
  2844. #: fdmprinter.def.json
  2845. msgctxt "support_structure option normal"
  2846. msgid "Normal"
  2847. msgstr "Normal"
  2848. #: fdmprinter.def.json
  2849. msgctxt "support_structure option tree"
  2850. msgid "Tree"
  2851. msgstr "Ağaç"
  2852. #: fdmprinter.def.json
  2853. msgctxt "support_tree_angle label"
  2854. msgid "Tree Support Branch Angle"
  2855. msgstr "Ağaç Destek Dal Açısı"
  2856. #: fdmprinter.def.json
  2857. msgctxt "support_tree_angle description"
  2858. 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."
  2859. 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."
  2860. #: fdmprinter.def.json
  2861. msgctxt "support_tree_branch_distance label"
  2862. msgid "Tree Support Branch Distance"
  2863. msgstr "Ağaç Destek Dal Mesafesi"
  2864. #: fdmprinter.def.json
  2865. msgctxt "support_tree_branch_distance description"
  2866. 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."
  2867. 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."
  2868. #: fdmprinter.def.json
  2869. msgctxt "support_tree_branch_diameter label"
  2870. msgid "Tree Support Branch Diameter"
  2871. msgstr "Ağaç Destek Dalının Çapı"
  2872. #: fdmprinter.def.json
  2873. msgctxt "support_tree_branch_diameter description"
  2874. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2875. 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."
  2876. #: fdmprinter.def.json
  2877. msgctxt "support_tree_branch_diameter_angle label"
  2878. msgid "Tree Support Branch Diameter Angle"
  2879. msgstr "Ağaç Destek Dalının Çap Açısı"
  2880. #: fdmprinter.def.json
  2881. msgctxt "support_tree_branch_diameter_angle description"
  2882. 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."
  2883. 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."
  2884. #: fdmprinter.def.json
  2885. msgctxt "support_tree_collision_resolution label"
  2886. msgid "Tree Support Collision Resolution"
  2887. msgstr "Ağaç Destek Çarpışma Çözünürlüğü"
  2888. #: fdmprinter.def.json
  2889. msgctxt "support_tree_collision_resolution description"
  2890. 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."
  2891. 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."
  2892. #: fdmprinter.def.json
  2893. msgctxt "support_type label"
  2894. msgid "Support Placement"
  2895. msgstr "Destek Yerleştirme"
  2896. #: fdmprinter.def.json
  2897. msgctxt "support_type description"
  2898. 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."
  2899. 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."
  2900. #: fdmprinter.def.json
  2901. msgctxt "support_type option buildplate"
  2902. msgid "Touching Buildplate"
  2903. msgstr "Yapı Levhasına Dokunma"
  2904. #: fdmprinter.def.json
  2905. msgctxt "support_type option everywhere"
  2906. msgid "Everywhere"
  2907. msgstr "Her bölüm"
  2908. #: fdmprinter.def.json
  2909. msgctxt "support_angle label"
  2910. msgid "Support Overhang Angle"
  2911. msgstr "Destek Çıkıntı Açısı"
  2912. #: fdmprinter.def.json
  2913. msgctxt "support_angle description"
  2914. 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."
  2915. 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."
  2916. #: fdmprinter.def.json
  2917. msgctxt "support_pattern label"
  2918. msgid "Support Pattern"
  2919. msgstr "Destek Şekli"
  2920. #: fdmprinter.def.json
  2921. msgctxt "support_pattern description"
  2922. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  2923. msgstr "Yazdırma destek yapılarının şekli. Bulunan farklı seçenekler sağlam veya kolay çıkarılabilir destek oluşturabilir."
  2924. #: fdmprinter.def.json
  2925. msgctxt "support_pattern option lines"
  2926. msgid "Lines"
  2927. msgstr "Çizgiler"
  2928. #: fdmprinter.def.json
  2929. msgctxt "support_pattern option grid"
  2930. msgid "Grid"
  2931. msgstr "Izgara"
  2932. #: fdmprinter.def.json
  2933. msgctxt "support_pattern option triangles"
  2934. msgid "Triangles"
  2935. msgstr "Üçgenler"
  2936. #: fdmprinter.def.json
  2937. msgctxt "support_pattern option concentric"
  2938. msgid "Concentric"
  2939. msgstr "Eş merkezli"
  2940. #: fdmprinter.def.json
  2941. msgctxt "support_pattern option zigzag"
  2942. msgid "Zig Zag"
  2943. msgstr "Zik Zak"
  2944. #: fdmprinter.def.json
  2945. msgctxt "support_pattern option cross"
  2946. msgid "Cross"
  2947. msgstr "Çapraz"
  2948. #: fdmprinter.def.json
  2949. msgctxt "support_pattern option gyroid"
  2950. msgid "Gyroid"
  2951. msgstr "Gyroid"
  2952. #: fdmprinter.def.json
  2953. msgctxt "support_wall_count label"
  2954. msgid "Support Wall Line Count"
  2955. msgstr "Duvar Hattı Sayısını Destekle"
  2956. #: fdmprinter.def.json
  2957. msgctxt "support_wall_count description"
  2958. 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."
  2959. 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."
  2960. #: fdmprinter.def.json
  2961. msgctxt "zig_zaggify_support label"
  2962. msgid "Connect Support Lines"
  2963. msgstr "Destek Çizgilerini Bağla"
  2964. #: fdmprinter.def.json
  2965. msgctxt "zig_zaggify_support description"
  2966. 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."
  2967. 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."
  2968. #: fdmprinter.def.json
  2969. msgctxt "support_connect_zigzags label"
  2970. msgid "Connect Support ZigZags"
  2971. msgstr "Destek Zikzaklarını Bağla"
  2972. #: fdmprinter.def.json
  2973. msgctxt "support_connect_zigzags description"
  2974. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  2975. msgstr "Zikzakları Bağla Zik zak destek yapısının sağlamlığını artırır."
  2976. #: fdmprinter.def.json
  2977. msgctxt "support_infill_rate label"
  2978. msgid "Support Density"
  2979. msgstr "Destek Yoğunluğu"
  2980. #: fdmprinter.def.json
  2981. msgctxt "support_infill_rate description"
  2982. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2983. 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."
  2984. #: fdmprinter.def.json
  2985. msgctxt "support_line_distance label"
  2986. msgid "Support Line Distance"
  2987. msgstr "Destek Hattı Mesafesi"
  2988. #: fdmprinter.def.json
  2989. msgctxt "support_line_distance description"
  2990. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  2991. msgstr "Yazdırılan destek yapısı hatları arasındaki mesafe. Bu ayar, destek yoğunluğu ile hesaplanır."
  2992. #: fdmprinter.def.json
  2993. msgctxt "support_initial_layer_line_distance label"
  2994. msgid "Initial Layer Support Line Distance"
  2995. msgstr "İlk Katman Destek Hattı Mesafesi"
  2996. #: fdmprinter.def.json
  2997. msgctxt "support_initial_layer_line_distance description"
  2998. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  2999. msgstr "Yazdırılan ilk katman destek yapı hatları arasındaki mesafedir. Bu ayar destek yoğunluğuna göre hesaplanır."
  3000. #: fdmprinter.def.json
  3001. msgctxt "support_infill_angles label"
  3002. msgid "Support Infill Line Directions"
  3003. msgstr "Destek Dolgu Hattı Yönü"
  3004. #: fdmprinter.def.json
  3005. msgctxt "support_infill_angles description"
  3006. 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."
  3007. 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."
  3008. #: fdmprinter.def.json
  3009. msgctxt "support_brim_enable label"
  3010. msgid "Enable Support Brim"
  3011. msgstr "Destek Kenarını Etkinleştir"
  3012. #: fdmprinter.def.json
  3013. msgctxt "support_brim_enable description"
  3014. 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."
  3015. 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."
  3016. #: fdmprinter.def.json
  3017. msgctxt "support_brim_width label"
  3018. msgid "Support Brim Width"
  3019. msgstr "Destek Kenar Genişliği"
  3020. #: fdmprinter.def.json
  3021. msgctxt "support_brim_width description"
  3022. 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."
  3023. 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."
  3024. #: fdmprinter.def.json
  3025. msgctxt "support_brim_line_count label"
  3026. msgid "Support Brim Line Count"
  3027. msgstr "Destek Kenar Hattı Sayısı"
  3028. #: fdmprinter.def.json
  3029. msgctxt "support_brim_line_count description"
  3030. 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."
  3031. 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."
  3032. #: fdmprinter.def.json
  3033. msgctxt "support_z_distance label"
  3034. msgid "Support Z Distance"
  3035. msgstr "Destek Z Mesafesi"
  3036. #: fdmprinter.def.json
  3037. msgctxt "support_z_distance description"
  3038. 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."
  3039. 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."
  3040. #: fdmprinter.def.json
  3041. msgctxt "support_top_distance label"
  3042. msgid "Support Top Distance"
  3043. msgstr "Destek Üst Mesafesi"
  3044. #: fdmprinter.def.json
  3045. msgctxt "support_top_distance description"
  3046. msgid "Distance from the top of the support to the print."
  3047. msgstr "Yazdırılıcak desteğin üstüne olan mesafe."
  3048. #: fdmprinter.def.json
  3049. msgctxt "support_bottom_distance label"
  3050. msgid "Support Bottom Distance"
  3051. msgstr "Destek Alt Mesafesi"
  3052. #: fdmprinter.def.json
  3053. msgctxt "support_bottom_distance description"
  3054. msgid "Distance from the print to the bottom of the support."
  3055. msgstr "Baskıdan desteğin altına olan mesafe."
  3056. #: fdmprinter.def.json
  3057. msgctxt "support_xy_distance label"
  3058. msgid "Support X/Y Distance"
  3059. msgstr "Destek X/Y Mesafesi"
  3060. #: fdmprinter.def.json
  3061. msgctxt "support_xy_distance description"
  3062. msgid "Distance of the support structure from the print in the X/Y directions."
  3063. msgstr "Destek yapısının X/Y yönlerindeki baskıya mesafesi."
  3064. #: fdmprinter.def.json
  3065. msgctxt "support_xy_overrides_z label"
  3066. msgid "Support Distance Priority"
  3067. msgstr "Destek Mesafesi Önceliği"
  3068. #: fdmprinter.def.json
  3069. msgctxt "support_xy_overrides_z description"
  3070. 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."
  3071. 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."
  3072. #: fdmprinter.def.json
  3073. msgctxt "support_xy_overrides_z option xy_overrides_z"
  3074. msgid "X/Y overrides Z"
  3075. msgstr "X/Y, Z’den fazla"
  3076. #: fdmprinter.def.json
  3077. msgctxt "support_xy_overrides_z option z_overrides_xy"
  3078. msgid "Z overrides X/Y"
  3079. msgstr "Z, X/Y’den fazla"
  3080. #: fdmprinter.def.json
  3081. msgctxt "support_xy_distance_overhang label"
  3082. msgid "Minimum Support X/Y Distance"
  3083. msgstr "Minimum Destek X/Y Mesafesi"
  3084. #: fdmprinter.def.json
  3085. msgctxt "support_xy_distance_overhang description"
  3086. msgid "Distance of the support structure from the overhang in the X/Y directions."
  3087. msgstr "Destek yapısının X/Y yönlerindeki çıkıntıya mesafesi."
  3088. #: fdmprinter.def.json
  3089. msgctxt "support_bottom_stair_step_height label"
  3090. msgid "Support Stair Step Height"
  3091. msgstr "Destek Merdiveni Basamak Yüksekliği"
  3092. #: fdmprinter.def.json
  3093. msgctxt "support_bottom_stair_step_height description"
  3094. 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."
  3095. 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."
  3096. #: fdmprinter.def.json
  3097. msgctxt "support_bottom_stair_step_width label"
  3098. msgid "Support Stair Step Maximum Width"
  3099. msgstr "Destek Merdiveni Maksimum Basamak Genişliği"
  3100. #: fdmprinter.def.json
  3101. msgctxt "support_bottom_stair_step_width description"
  3102. 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."
  3103. 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."
  3104. #: fdmprinter.def.json
  3105. msgctxt "support_bottom_stair_step_min_slope label"
  3106. msgid "Support Stair Step Minimum Slope Angle"
  3107. msgstr "Basamak Desteğinin Minimum Eğim Açısı"
  3108. #: fdmprinter.def.json
  3109. msgctxt "support_bottom_stair_step_min_slope description"
  3110. 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."
  3111. 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."
  3112. #: fdmprinter.def.json
  3113. msgctxt "support_join_distance label"
  3114. msgid "Support Join Distance"
  3115. msgstr "Destek Birleşme Mesafesi"
  3116. #: fdmprinter.def.json
  3117. msgctxt "support_join_distance description"
  3118. 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."
  3119. 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."
  3120. #: fdmprinter.def.json
  3121. msgctxt "support_offset label"
  3122. msgid "Support Horizontal Expansion"
  3123. msgstr "Destek Yatay Büyüme"
  3124. #: fdmprinter.def.json
  3125. msgctxt "support_offset description"
  3126. 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."
  3127. 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."
  3128. #: fdmprinter.def.json
  3129. msgctxt "support_infill_sparse_thickness label"
  3130. msgid "Support Infill Layer Thickness"
  3131. msgstr "Destek Dolgusu Katmanı Kalınlığı"
  3132. #: fdmprinter.def.json
  3133. msgctxt "support_infill_sparse_thickness description"
  3134. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3135. 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."
  3136. #: fdmprinter.def.json
  3137. msgctxt "gradual_support_infill_steps label"
  3138. msgid "Gradual Support Infill Steps"
  3139. msgstr "Kademeli Destek Dolgusu Aşamaları"
  3140. #: fdmprinter.def.json
  3141. msgctxt "gradual_support_infill_steps description"
  3142. 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."
  3143. 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."
  3144. #: fdmprinter.def.json
  3145. msgctxt "gradual_support_infill_step_height label"
  3146. msgid "Gradual Support Infill Step Height"
  3147. msgstr "Aşamalı Destek Dolgusu Basamak Yüksekliği"
  3148. #: fdmprinter.def.json
  3149. msgctxt "gradual_support_infill_step_height description"
  3150. msgid "The height of support infill of a given density before switching to half the density."
  3151. msgstr "Yoğunluğun yarısına inmeden önce belirli bir yoğunluktaki destek dolgusunun yüksekliği."
  3152. #: fdmprinter.def.json
  3153. msgctxt "minimum_support_area label"
  3154. msgid "Minimum Support Area"
  3155. msgstr "Minimum Destek Bölgesi"
  3156. #: fdmprinter.def.json
  3157. msgctxt "minimum_support_area description"
  3158. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  3159. msgstr "Destek poligonları için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır."
  3160. #: fdmprinter.def.json
  3161. msgctxt "support_interface_enable label"
  3162. msgid "Enable Support Interface"
  3163. msgstr "Destek Arayüzünü Etkinleştir"
  3164. #: fdmprinter.def.json
  3165. msgctxt "support_interface_enable description"
  3166. 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."
  3167. 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."
  3168. #: fdmprinter.def.json
  3169. msgctxt "support_roof_enable label"
  3170. msgid "Enable Support Roof"
  3171. msgstr "Destek Çatısını Etkinleştir"
  3172. #: fdmprinter.def.json
  3173. msgctxt "support_roof_enable description"
  3174. 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."
  3175. 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."
  3176. #: fdmprinter.def.json
  3177. msgctxt "support_bottom_enable label"
  3178. msgid "Enable Support Floor"
  3179. msgstr "Destek Zeminini Etkinleştir"
  3180. #: fdmprinter.def.json
  3181. msgctxt "support_bottom_enable description"
  3182. 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."
  3183. 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."
  3184. #: fdmprinter.def.json
  3185. msgctxt "support_interface_height label"
  3186. msgid "Support Interface Thickness"
  3187. msgstr "Destek Arayüzü Kalınlığı"
  3188. #: fdmprinter.def.json
  3189. msgctxt "support_interface_height description"
  3190. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  3191. msgstr "Alt veya üst kısımdaki modele değdiği yerde destek arayüzü kalınlığı."
  3192. #: fdmprinter.def.json
  3193. msgctxt "support_roof_height label"
  3194. msgid "Support Roof Thickness"
  3195. msgstr "Destek Tavanı Kalınlığı"
  3196. #: fdmprinter.def.json
  3197. msgctxt "support_roof_height description"
  3198. 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."
  3199. 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."
  3200. #: fdmprinter.def.json
  3201. msgctxt "support_bottom_height label"
  3202. msgid "Support Floor Thickness"
  3203. msgstr "Destek Zemini Kalınlığı"
  3204. #: fdmprinter.def.json
  3205. msgctxt "support_bottom_height description"
  3206. 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."
  3207. 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."
  3208. #: fdmprinter.def.json
  3209. msgctxt "support_interface_skip_height label"
  3210. msgid "Support Interface Resolution"
  3211. msgstr "Destek Arayüz Çözünürlüğü"
  3212. #: fdmprinter.def.json
  3213. msgctxt "support_interface_skip_height description"
  3214. 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."
  3215. 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."
  3216. #: fdmprinter.def.json
  3217. msgctxt "support_interface_density label"
  3218. msgid "Support Interface Density"
  3219. msgstr "Destek Arayüzü Yoğunluğu"
  3220. #: fdmprinter.def.json
  3221. msgctxt "support_interface_density description"
  3222. 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."
  3223. 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."
  3224. #: fdmprinter.def.json
  3225. msgctxt "support_roof_density label"
  3226. msgid "Support Roof Density"
  3227. msgstr "Destek Çatısı Yoğunluğu"
  3228. #: fdmprinter.def.json
  3229. msgctxt "support_roof_density description"
  3230. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3231. 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."
  3232. #: fdmprinter.def.json
  3233. msgctxt "support_roof_line_distance label"
  3234. msgid "Support Roof Line Distance"
  3235. msgstr "Destek Çatısı Çizgi Mesafesi"
  3236. #: fdmprinter.def.json
  3237. msgctxt "support_roof_line_distance description"
  3238. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  3239. 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."
  3240. #: fdmprinter.def.json
  3241. msgctxt "support_bottom_density label"
  3242. msgid "Support Floor Density"
  3243. msgstr "Destek Zemini Yoğunluğu"
  3244. #: fdmprinter.def.json
  3245. msgctxt "support_bottom_density description"
  3246. 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."
  3247. 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."
  3248. #: fdmprinter.def.json
  3249. msgctxt "support_bottom_line_distance label"
  3250. msgid "Support Floor Line Distance"
  3251. msgstr "Destek Zemini Çizgi Mesafesi"
  3252. #: fdmprinter.def.json
  3253. msgctxt "support_bottom_line_distance description"
  3254. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  3255. msgstr "Yazdırılan destek zemini çizgileri arasındaki mesafe. Bu ayar Destek Zemini Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir."
  3256. #: fdmprinter.def.json
  3257. msgctxt "support_interface_pattern label"
  3258. msgid "Support Interface Pattern"
  3259. msgstr "Destek Arayüzü Şekli"
  3260. #: fdmprinter.def.json
  3261. msgctxt "support_interface_pattern description"
  3262. msgid "The pattern with which the interface of the support with the model is printed."
  3263. msgstr "Model ile birlikte destek arayüzünün yazdırıldığı şekil."
  3264. #: fdmprinter.def.json
  3265. msgctxt "support_interface_pattern option lines"
  3266. msgid "Lines"
  3267. msgstr "Çizgiler"
  3268. #: fdmprinter.def.json
  3269. msgctxt "support_interface_pattern option grid"
  3270. msgid "Grid"
  3271. msgstr "Izgara"
  3272. #: fdmprinter.def.json
  3273. msgctxt "support_interface_pattern option triangles"
  3274. msgid "Triangles"
  3275. msgstr "Üçgenler"
  3276. #: fdmprinter.def.json
  3277. msgctxt "support_interface_pattern option concentric"
  3278. msgid "Concentric"
  3279. msgstr "Eş merkezli"
  3280. #: fdmprinter.def.json
  3281. msgctxt "support_interface_pattern option zigzag"
  3282. msgid "Zig Zag"
  3283. msgstr "Zik Zak"
  3284. #: fdmprinter.def.json
  3285. msgctxt "support_roof_pattern label"
  3286. msgid "Support Roof Pattern"
  3287. msgstr "Destek Çatısı Deseni"
  3288. #: fdmprinter.def.json
  3289. msgctxt "support_roof_pattern description"
  3290. msgid "The pattern with which the roofs of the support are printed."
  3291. msgstr "Destek çatısının yazdırıldığı desen."
  3292. #: fdmprinter.def.json
  3293. msgctxt "support_roof_pattern option lines"
  3294. msgid "Lines"
  3295. msgstr "Çizgiler"
  3296. #: fdmprinter.def.json
  3297. msgctxt "support_roof_pattern option grid"
  3298. msgid "Grid"
  3299. msgstr "Izgara"
  3300. #: fdmprinter.def.json
  3301. msgctxt "support_roof_pattern option triangles"
  3302. msgid "Triangles"
  3303. msgstr "Üçgenler"
  3304. #: fdmprinter.def.json
  3305. msgctxt "support_roof_pattern option concentric"
  3306. msgid "Concentric"
  3307. msgstr "Eş Merkezli"
  3308. #: fdmprinter.def.json
  3309. msgctxt "support_roof_pattern option zigzag"
  3310. msgid "Zig Zag"
  3311. msgstr "Zikzak"
  3312. #: fdmprinter.def.json
  3313. msgctxt "support_bottom_pattern label"
  3314. msgid "Support Floor Pattern"
  3315. msgstr "Destek Zemini Deseni"
  3316. #: fdmprinter.def.json
  3317. msgctxt "support_bottom_pattern description"
  3318. msgid "The pattern with which the floors of the support are printed."
  3319. msgstr "Destek zeminlerinin yazdırıldığı desen."
  3320. #: fdmprinter.def.json
  3321. msgctxt "support_bottom_pattern option lines"
  3322. msgid "Lines"
  3323. msgstr "Çizgiler"
  3324. #: fdmprinter.def.json
  3325. msgctxt "support_bottom_pattern option grid"
  3326. msgid "Grid"
  3327. msgstr "Izgara"
  3328. #: fdmprinter.def.json
  3329. msgctxt "support_bottom_pattern option triangles"
  3330. msgid "Triangles"
  3331. msgstr "Üçgenler"
  3332. #: fdmprinter.def.json
  3333. msgctxt "support_bottom_pattern option concentric"
  3334. msgid "Concentric"
  3335. msgstr "Eş Merkezli"
  3336. #: fdmprinter.def.json
  3337. msgctxt "support_bottom_pattern option zigzag"
  3338. msgid "Zig Zag"
  3339. msgstr "Zikzak"
  3340. #: fdmprinter.def.json
  3341. msgctxt "minimum_interface_area label"
  3342. msgid "Minimum Support Interface Area"
  3343. msgstr "Minimum Destek Arayüzü Bölgesi"
  3344. #: fdmprinter.def.json
  3345. msgctxt "minimum_interface_area description"
  3346. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  3347. msgstr "Destek arayüzü çokgenlerinin minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır."
  3348. #: fdmprinter.def.json
  3349. msgctxt "minimum_roof_area label"
  3350. msgid "Minimum Support Roof Area"
  3351. msgstr "Minimum Destek Çatısı Bölgesi"
  3352. #: fdmprinter.def.json
  3353. msgctxt "minimum_roof_area description"
  3354. 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."
  3355. msgstr "Destek çatılarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır."
  3356. #: fdmprinter.def.json
  3357. msgctxt "minimum_bottom_area label"
  3358. msgid "Minimum Support Floor Area"
  3359. msgstr "Minimum Destek Zemini Bölgesi"
  3360. #: fdmprinter.def.json
  3361. msgctxt "minimum_bottom_area description"
  3362. 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."
  3363. msgstr "Destek tabanlarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır."
  3364. #: fdmprinter.def.json
  3365. msgctxt "support_interface_offset label"
  3366. msgid "Support Interface Horizontal Expansion"
  3367. msgstr "Destek Arayüzü Yatay Büyüme"
  3368. #: fdmprinter.def.json
  3369. msgctxt "support_interface_offset description"
  3370. msgid "Amount of offset applied to the support interface polygons."
  3371. msgstr "Destek arayüzü poligonlarına uygulanan ofset miktarı."
  3372. #: fdmprinter.def.json
  3373. msgctxt "support_roof_offset label"
  3374. msgid "Support Roof Horizontal Expansion"
  3375. msgstr "Destek Çatısı Yatay Büyüme"
  3376. #: fdmprinter.def.json
  3377. msgctxt "support_roof_offset description"
  3378. msgid "Amount of offset applied to the roofs of the support."
  3379. msgstr "Destek çatılarına uygulanan ofset miktarı."
  3380. #: fdmprinter.def.json
  3381. msgctxt "support_bottom_offset label"
  3382. msgid "Support Floor Horizontal Expansion"
  3383. msgstr "Destek Zemini Yatay Büyüme"
  3384. #: fdmprinter.def.json
  3385. msgctxt "support_bottom_offset description"
  3386. msgid "Amount of offset applied to the floors of the support."
  3387. msgstr "Destek zeminlerine uygulanan ofset miktarı."
  3388. #: fdmprinter.def.json
  3389. msgctxt "support_interface_angles label"
  3390. msgid "Support Interface Line Directions"
  3391. msgstr "Destek Arabirim Hattı Yönleri"
  3392. #: fdmprinter.def.json
  3393. msgctxt "support_interface_angles description"
  3394. 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)."
  3395. 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."
  3396. #: fdmprinter.def.json
  3397. msgctxt "support_roof_angles label"
  3398. msgid "Support Roof Line Directions"
  3399. msgstr "Destek Çatı Hattı Yönleri"
  3400. #: fdmprinter.def.json
  3401. msgctxt "support_roof_angles description"
  3402. 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)."
  3403. 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."
  3404. #: fdmprinter.def.json
  3405. msgctxt "support_bottom_angles label"
  3406. msgid "Support Floor Line Directions"
  3407. msgstr "Destek Zemin Hattı Yönleri"
  3408. #: fdmprinter.def.json
  3409. msgctxt "support_bottom_angles description"
  3410. 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)."
  3411. 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."
  3412. #: fdmprinter.def.json
  3413. msgctxt "support_fan_enable label"
  3414. msgid "Fan Speed Override"
  3415. msgstr "Fan Hızı Geçersiz Kılma"
  3416. #: fdmprinter.def.json
  3417. msgctxt "support_fan_enable description"
  3418. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  3419. 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."
  3420. #: fdmprinter.def.json
  3421. msgctxt "support_supported_skin_fan_speed label"
  3422. msgid "Supported Skin Fan Speed"
  3423. msgstr "Desteklenen Yüzey Fan Hızı"
  3424. #: fdmprinter.def.json
  3425. msgctxt "support_supported_skin_fan_speed description"
  3426. 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."
  3427. 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."
  3428. #: fdmprinter.def.json
  3429. msgctxt "support_use_towers label"
  3430. msgid "Use Towers"
  3431. msgstr "Direkleri kullan"
  3432. #: fdmprinter.def.json
  3433. msgctxt "support_use_towers description"
  3434. 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."
  3435. 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."
  3436. #: fdmprinter.def.json
  3437. msgctxt "support_tower_diameter label"
  3438. msgid "Tower Diameter"
  3439. msgstr "Direk Çapı"
  3440. #: fdmprinter.def.json
  3441. msgctxt "support_tower_diameter description"
  3442. msgid "The diameter of a special tower."
  3443. msgstr "Özel bir direğin çapı."
  3444. #: fdmprinter.def.json
  3445. msgctxt "support_tower_maximum_supported_diameter label"
  3446. msgid "Maximum Tower-Supported Diameter"
  3447. msgstr "Kule Destekli Maksimum Çap"
  3448. #: fdmprinter.def.json
  3449. msgctxt "support_tower_maximum_supported_diameter description"
  3450. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  3451. msgstr "Özel bir destek kulesiyle desteklenecek küçük bir alanın X/Y yönlerindeki maksimum çapıdır."
  3452. #: fdmprinter.def.json
  3453. msgctxt "support_tower_roof_angle label"
  3454. msgid "Tower Roof Angle"
  3455. msgstr "Direk Tavanı Açısı"
  3456. #: fdmprinter.def.json
  3457. msgctxt "support_tower_roof_angle description"
  3458. 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."
  3459. 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."
  3460. #: fdmprinter.def.json
  3461. msgctxt "support_mesh_drop_down label"
  3462. msgid "Drop Down Support Mesh"
  3463. msgstr "Alçalan Destek Örgüsü"
  3464. #: fdmprinter.def.json
  3465. msgctxt "support_mesh_drop_down description"
  3466. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  3467. 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."
  3468. #: fdmprinter.def.json
  3469. msgctxt "support_meshes_present label"
  3470. msgid "Scene Has Support Meshes"
  3471. msgstr "Sahnede Destek Örgüsü Var"
  3472. #: fdmprinter.def.json
  3473. msgctxt "support_meshes_present description"
  3474. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  3475. msgstr "Bunlar sahnedeki mevcut destek örgüleridir. Bu ayar Cura tarafından kontrol edilir."
  3476. #: fdmprinter.def.json
  3477. msgctxt "platform_adhesion label"
  3478. msgid "Build Plate Adhesion"
  3479. msgstr "Yapı Levhası Yapıştırması"
  3480. #: fdmprinter.def.json
  3481. msgctxt "platform_adhesion description"
  3482. msgid "Adhesion"
  3483. msgstr "Yapıştırma"
  3484. #: fdmprinter.def.json
  3485. msgctxt "prime_blob_enable label"
  3486. msgid "Enable Prime Blob"
  3487. msgstr "İlk Damlayı Etkinleştir"
  3488. #: fdmprinter.def.json
  3489. msgctxt "prime_blob_enable description"
  3490. 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."
  3491. 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."
  3492. #: fdmprinter.def.json
  3493. msgctxt "extruder_prime_pos_x label"
  3494. msgid "Extruder Prime X Position"
  3495. msgstr "Extruder İlk X konumu"
  3496. #: fdmprinter.def.json
  3497. msgctxt "extruder_prime_pos_x description"
  3498. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  3499. msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı."
  3500. #: fdmprinter.def.json
  3501. msgctxt "extruder_prime_pos_y label"
  3502. msgid "Extruder Prime Y Position"
  3503. msgstr "Extruder İlk Y konumu"
  3504. #: fdmprinter.def.json
  3505. msgctxt "extruder_prime_pos_y description"
  3506. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  3507. msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı."
  3508. #: fdmprinter.def.json
  3509. msgctxt "adhesion_type label"
  3510. msgid "Build Plate Adhesion Type"
  3511. msgstr "Yapı Levhası Türü"
  3512. #: fdmprinter.def.json
  3513. msgctxt "adhesion_type description"
  3514. 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."
  3515. 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."
  3516. #: fdmprinter.def.json
  3517. msgctxt "adhesion_type option skirt"
  3518. msgid "Skirt"
  3519. msgstr "Etek"
  3520. #: fdmprinter.def.json
  3521. msgctxt "adhesion_type option brim"
  3522. msgid "Brim"
  3523. msgstr "Kenar"
  3524. #: fdmprinter.def.json
  3525. msgctxt "adhesion_type option raft"
  3526. msgid "Raft"
  3527. msgstr "Radye"
  3528. #: fdmprinter.def.json
  3529. msgctxt "adhesion_type option none"
  3530. msgid "None"
  3531. msgstr "Hiçbiri"
  3532. #: fdmprinter.def.json
  3533. msgctxt "adhesion_extruder_nr label"
  3534. msgid "Build Plate Adhesion Extruder"
  3535. msgstr "Yapı Levhası Yapıştırma Ekstruderi"
  3536. #: fdmprinter.def.json
  3537. msgctxt "adhesion_extruder_nr description"
  3538. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3539. msgstr "Etek/kenar/radye yazdırmak için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır."
  3540. #: fdmprinter.def.json
  3541. msgctxt "skirt_line_count label"
  3542. msgid "Skirt Line Count"
  3543. msgstr "Etek Hattı Sayısı"
  3544. #: fdmprinter.def.json
  3545. msgctxt "skirt_line_count description"
  3546. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  3547. 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."
  3548. #: fdmprinter.def.json
  3549. msgctxt "skirt_gap label"
  3550. msgid "Skirt Distance"
  3551. msgstr "Etek Mesafesi"
  3552. #: fdmprinter.def.json
  3553. msgctxt "skirt_gap description"
  3554. msgid ""
  3555. "The horizontal distance between the skirt and the first layer of the print.\n"
  3556. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3557. msgstr ""
  3558. "Baskının eteği ve ilk katmanı arasındaki yatay mesafe.\n"
  3559. "Minimum mesafedir. Bu mesafeden çok sayıda etek hattı dışarı doğru uzanır."
  3560. #: fdmprinter.def.json
  3561. msgctxt "skirt_brim_minimal_length label"
  3562. msgid "Skirt/Brim Minimum Length"
  3563. msgstr "Minimum Etek/Kenar Uzunluğu"
  3564. #: fdmprinter.def.json
  3565. msgctxt "skirt_brim_minimal_length description"
  3566. 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."
  3567. 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."
  3568. #: fdmprinter.def.json
  3569. msgctxt "brim_width label"
  3570. msgid "Brim Width"
  3571. msgstr "Kenar Genişliği"
  3572. #: fdmprinter.def.json
  3573. msgctxt "brim_width description"
  3574. 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."
  3575. 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."
  3576. #: fdmprinter.def.json
  3577. msgctxt "brim_line_count label"
  3578. msgid "Brim Line Count"
  3579. msgstr "Kenar Hattı Sayısı"
  3580. #: fdmprinter.def.json
  3581. msgctxt "brim_line_count description"
  3582. 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."
  3583. 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."
  3584. #: fdmprinter.def.json
  3585. msgctxt "brim_gap label"
  3586. msgid "Brim Distance"
  3587. msgstr "Uç Mesafesi"
  3588. #: fdmprinter.def.json
  3589. msgctxt "brim_gap description"
  3590. 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."
  3591. 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."
  3592. #: fdmprinter.def.json
  3593. msgctxt "brim_replaces_support label"
  3594. msgid "Brim Replaces Support"
  3595. msgstr "Kenar, Desteği Değiştirir"
  3596. #: fdmprinter.def.json
  3597. msgctxt "brim_replaces_support description"
  3598. 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."
  3599. 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."
  3600. #: fdmprinter.def.json
  3601. msgctxt "brim_outside_only label"
  3602. msgid "Brim Only on Outside"
  3603. msgstr "Sadece Dış Kısımdaki Kenar"
  3604. #: fdmprinter.def.json
  3605. msgctxt "brim_outside_only description"
  3606. 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."
  3607. 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."
  3608. #: fdmprinter.def.json
  3609. msgctxt "raft_margin label"
  3610. msgid "Raft Extra Margin"
  3611. msgstr "Ek Radye Boşluğu"
  3612. #: fdmprinter.def.json
  3613. msgctxt "raft_margin description"
  3614. 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."
  3615. 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."
  3616. #: fdmprinter.def.json
  3617. msgctxt "raft_smoothing label"
  3618. msgid "Raft Smoothing"
  3619. msgstr "Radye Düzeltme"
  3620. #: fdmprinter.def.json
  3621. msgctxt "raft_smoothing description"
  3622. 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."
  3623. 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."
  3624. #: fdmprinter.def.json
  3625. msgctxt "raft_airgap label"
  3626. msgid "Raft Air Gap"
  3627. msgstr "Radye Hava Boşluğu"
  3628. #: fdmprinter.def.json
  3629. msgctxt "raft_airgap description"
  3630. 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."
  3631. 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."
  3632. #: fdmprinter.def.json
  3633. msgctxt "layer_0_z_overlap label"
  3634. msgid "Initial Layer Z Overlap"
  3635. msgstr "İlk Katman Z Çakışması"
  3636. #: fdmprinter.def.json
  3637. msgctxt "layer_0_z_overlap description"
  3638. 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."
  3639. 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."
  3640. #: fdmprinter.def.json
  3641. msgctxt "raft_surface_layers label"
  3642. msgid "Raft Top Layers"
  3643. msgstr "Radyenin Üst Katmanları"
  3644. #: fdmprinter.def.json
  3645. msgctxt "raft_surface_layers description"
  3646. 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."
  3647. 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."
  3648. #: fdmprinter.def.json
  3649. msgctxt "raft_surface_thickness label"
  3650. msgid "Raft Top Layer Thickness"
  3651. msgstr "Radyenin Üst Katman Kalınlığı"
  3652. #: fdmprinter.def.json
  3653. msgctxt "raft_surface_thickness description"
  3654. msgid "Layer thickness of the top raft layers."
  3655. msgstr "Üst radye katmanlarının katman kalınlığı."
  3656. #: fdmprinter.def.json
  3657. msgctxt "raft_surface_line_width label"
  3658. msgid "Raft Top Line Width"
  3659. msgstr "Radyenin Üst Hat Genişliği"
  3660. #: fdmprinter.def.json
  3661. msgctxt "raft_surface_line_width description"
  3662. 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."
  3663. 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."
  3664. #: fdmprinter.def.json
  3665. msgctxt "raft_surface_line_spacing label"
  3666. msgid "Raft Top Spacing"
  3667. msgstr "Radyenin Üst Boşluğu"
  3668. #: fdmprinter.def.json
  3669. msgctxt "raft_surface_line_spacing description"
  3670. 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."
  3671. 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."
  3672. #: fdmprinter.def.json
  3673. msgctxt "raft_interface_thickness label"
  3674. msgid "Raft Middle Thickness"
  3675. msgstr "Radye Orta Kalınlığı"
  3676. #: fdmprinter.def.json
  3677. msgctxt "raft_interface_thickness description"
  3678. msgid "Layer thickness of the middle raft layer."
  3679. msgstr "Radyenin orta katmanının katman kalınlığı."
  3680. #: fdmprinter.def.json
  3681. msgctxt "raft_interface_line_width label"
  3682. msgid "Raft Middle Line Width"
  3683. msgstr "Radyenin Orta Hat Genişliği"
  3684. #: fdmprinter.def.json
  3685. msgctxt "raft_interface_line_width description"
  3686. 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."
  3687. 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."
  3688. #: fdmprinter.def.json
  3689. msgctxt "raft_interface_line_spacing label"
  3690. msgid "Raft Middle Spacing"
  3691. msgstr "Radye Orta Boşluğu"
  3692. #: fdmprinter.def.json
  3693. msgctxt "raft_interface_line_spacing description"
  3694. 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."
  3695. 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."
  3696. #: fdmprinter.def.json
  3697. msgctxt "raft_base_thickness label"
  3698. msgid "Raft Base Thickness"
  3699. msgstr "Radye Taban Kalınlığı"
  3700. #: fdmprinter.def.json
  3701. msgctxt "raft_base_thickness description"
  3702. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  3703. 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."
  3704. #: fdmprinter.def.json
  3705. msgctxt "raft_base_line_width label"
  3706. msgid "Raft Base Line Width"
  3707. msgstr "Radyenin Taban Hat Genişliği"
  3708. #: fdmprinter.def.json
  3709. msgctxt "raft_base_line_width description"
  3710. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3711. 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."
  3712. #: fdmprinter.def.json
  3713. msgctxt "raft_base_line_spacing label"
  3714. msgid "Raft Base Line Spacing"
  3715. msgstr "Radye Taban Hat Genişliği"
  3716. #: fdmprinter.def.json
  3717. msgctxt "raft_base_line_spacing description"
  3718. 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."
  3719. 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."
  3720. #: fdmprinter.def.json
  3721. msgctxt "raft_speed label"
  3722. msgid "Raft Print Speed"
  3723. msgstr "Radye Yazdırma Hızı"
  3724. #: fdmprinter.def.json
  3725. msgctxt "raft_speed description"
  3726. msgid "The speed at which the raft is printed."
  3727. msgstr "Radyenin yazdırıldığı hız."
  3728. #: fdmprinter.def.json
  3729. msgctxt "raft_surface_speed label"
  3730. msgid "Raft Top Print Speed"
  3731. msgstr "Radye Üst Yazdırma Hızı"
  3732. #: fdmprinter.def.json
  3733. msgctxt "raft_surface_speed description"
  3734. 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."
  3735. 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."
  3736. #: fdmprinter.def.json
  3737. msgctxt "raft_interface_speed label"
  3738. msgid "Raft Middle Print Speed"
  3739. msgstr "Radyenin Orta Yazdırma Hızı"
  3740. #: fdmprinter.def.json
  3741. msgctxt "raft_interface_speed description"
  3742. 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."
  3743. 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."
  3744. #: fdmprinter.def.json
  3745. msgctxt "raft_base_speed label"
  3746. msgid "Raft Base Print Speed"
  3747. msgstr "Radyenin Taban Yazdırma Hızı"
  3748. #: fdmprinter.def.json
  3749. msgctxt "raft_base_speed description"
  3750. 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."
  3751. 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."
  3752. #: fdmprinter.def.json
  3753. msgctxt "raft_acceleration label"
  3754. msgid "Raft Print Acceleration"
  3755. msgstr "Radye Yazdırma İvmesi"
  3756. #: fdmprinter.def.json
  3757. msgctxt "raft_acceleration description"
  3758. msgid "The acceleration with which the raft is printed."
  3759. msgstr "Radyenin yazdırıldığı ivme."
  3760. #: fdmprinter.def.json
  3761. msgctxt "raft_surface_acceleration label"
  3762. msgid "Raft Top Print Acceleration"
  3763. msgstr "Radye Üst Yazdırma İvmesi"
  3764. #: fdmprinter.def.json
  3765. msgctxt "raft_surface_acceleration description"
  3766. msgid "The acceleration with which the top raft layers are printed."
  3767. msgstr "Üst radye katmanların yazdırıldığı ivme."
  3768. #: fdmprinter.def.json
  3769. msgctxt "raft_interface_acceleration label"
  3770. msgid "Raft Middle Print Acceleration"
  3771. msgstr "Radyenin Orta Yazdırma İvmesi"
  3772. #: fdmprinter.def.json
  3773. msgctxt "raft_interface_acceleration description"
  3774. msgid "The acceleration with which the middle raft layer is printed."
  3775. msgstr "Orta radye katmanının yazdırıldığı ivme."
  3776. #: fdmprinter.def.json
  3777. msgctxt "raft_base_acceleration label"
  3778. msgid "Raft Base Print Acceleration"
  3779. msgstr "Radyenin Taban Yazdırma İvmesi"
  3780. #: fdmprinter.def.json
  3781. msgctxt "raft_base_acceleration description"
  3782. msgid "The acceleration with which the base raft layer is printed."
  3783. msgstr "Taban radye katmanının yazdırıldığı ivme."
  3784. #: fdmprinter.def.json
  3785. msgctxt "raft_jerk label"
  3786. msgid "Raft Print Jerk"
  3787. msgstr "Radye Yazdırma Salınımı"
  3788. #: fdmprinter.def.json
  3789. msgctxt "raft_jerk description"
  3790. msgid "The jerk with which the raft is printed."
  3791. msgstr "Radyenin yazdırıldığı salınım."
  3792. #: fdmprinter.def.json
  3793. msgctxt "raft_surface_jerk label"
  3794. msgid "Raft Top Print Jerk"
  3795. msgstr "Radye Üst Yazdırma Salınımı"
  3796. #: fdmprinter.def.json
  3797. msgctxt "raft_surface_jerk description"
  3798. msgid "The jerk with which the top raft layers are printed."
  3799. msgstr "Üst radye katmanların yazdırıldığı salınım."
  3800. #: fdmprinter.def.json
  3801. msgctxt "raft_interface_jerk label"
  3802. msgid "Raft Middle Print Jerk"
  3803. msgstr "Radyenin Orta Yazdırma Salınımı"
  3804. #: fdmprinter.def.json
  3805. msgctxt "raft_interface_jerk description"
  3806. msgid "The jerk with which the middle raft layer is printed."
  3807. msgstr "Orta radye katmanının yazdırıldığı salınım."
  3808. #: fdmprinter.def.json
  3809. msgctxt "raft_base_jerk label"
  3810. msgid "Raft Base Print Jerk"
  3811. msgstr "Radyenin Taban Yazdırma Salınımı"
  3812. #: fdmprinter.def.json
  3813. msgctxt "raft_base_jerk description"
  3814. msgid "The jerk with which the base raft layer is printed."
  3815. msgstr "Taban radye katmanının yazdırıldığı ivmesi değişimi."
  3816. #: fdmprinter.def.json
  3817. msgctxt "raft_fan_speed label"
  3818. msgid "Raft Fan Speed"
  3819. msgstr "Radye Fan Hızı"
  3820. #: fdmprinter.def.json
  3821. msgctxt "raft_fan_speed description"
  3822. msgid "The fan speed for the raft."
  3823. msgstr "Radye için fan hızı."
  3824. #: fdmprinter.def.json
  3825. msgctxt "raft_surface_fan_speed label"
  3826. msgid "Raft Top Fan Speed"
  3827. msgstr "Radye Üst Fan Hızı"
  3828. #: fdmprinter.def.json
  3829. msgctxt "raft_surface_fan_speed description"
  3830. msgid "The fan speed for the top raft layers."
  3831. msgstr "Üst radye katmanları için fan hızı."
  3832. #: fdmprinter.def.json
  3833. msgctxt "raft_interface_fan_speed label"
  3834. msgid "Raft Middle Fan Speed"
  3835. msgstr "Radyenin Orta Fan Hızı"
  3836. #: fdmprinter.def.json
  3837. msgctxt "raft_interface_fan_speed description"
  3838. msgid "The fan speed for the middle raft layer."
  3839. msgstr "Radyenin orta katmanı için fan hızı."
  3840. #: fdmprinter.def.json
  3841. msgctxt "raft_base_fan_speed label"
  3842. msgid "Raft Base Fan Speed"
  3843. msgstr "Radyenin Taban Fan Hızı"
  3844. #: fdmprinter.def.json
  3845. msgctxt "raft_base_fan_speed description"
  3846. msgid "The fan speed for the base raft layer."
  3847. msgstr "Radyenin taban katmanı için fan hızı."
  3848. #: fdmprinter.def.json
  3849. msgctxt "dual label"
  3850. msgid "Dual Extrusion"
  3851. msgstr "İkili ekstrüzyon"
  3852. #: fdmprinter.def.json
  3853. msgctxt "dual description"
  3854. msgid "Settings used for printing with multiple extruders."
  3855. msgstr "Çoklu ekstruderler ile yapılan yazdırmalar için kullanılan ayarlar."
  3856. #: fdmprinter.def.json
  3857. msgctxt "prime_tower_enable label"
  3858. msgid "Enable Prime Tower"
  3859. msgstr "İlk Direği Etkinleştir"
  3860. #: fdmprinter.def.json
  3861. msgctxt "prime_tower_enable description"
  3862. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  3863. 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."
  3864. #: fdmprinter.def.json
  3865. msgctxt "prime_tower_size label"
  3866. msgid "Prime Tower Size"
  3867. msgstr "İlk Direk Boyutu"
  3868. #: fdmprinter.def.json
  3869. msgctxt "prime_tower_size description"
  3870. msgid "The width of the prime tower."
  3871. msgstr "İlk Direk Genişliği."
  3872. #: fdmprinter.def.json
  3873. msgctxt "prime_tower_min_volume label"
  3874. msgid "Prime Tower Minimum Volume"
  3875. msgstr "İlk Direğin Minimum Hacmi"
  3876. #: fdmprinter.def.json
  3877. msgctxt "prime_tower_min_volume description"
  3878. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3879. msgstr "Yeterince malzeme temizlemek için ilk direğin her bir katmanı için minimum hacim."
  3880. #: fdmprinter.def.json
  3881. msgctxt "prime_tower_position_x label"
  3882. msgid "Prime Tower X Position"
  3883. msgstr "İlk Direk X Konumu"
  3884. #: fdmprinter.def.json
  3885. msgctxt "prime_tower_position_x description"
  3886. msgid "The x coordinate of the position of the prime tower."
  3887. msgstr "İlk direk konumunun x koordinatı."
  3888. #: fdmprinter.def.json
  3889. msgctxt "prime_tower_position_y label"
  3890. msgid "Prime Tower Y Position"
  3891. msgstr "İlk Direk Y Konumu"
  3892. #: fdmprinter.def.json
  3893. msgctxt "prime_tower_position_y description"
  3894. msgid "The y coordinate of the position of the prime tower."
  3895. msgstr "İlk direk konumunun y koordinatı."
  3896. #: fdmprinter.def.json
  3897. msgctxt "prime_tower_wipe_enabled label"
  3898. msgid "Wipe Inactive Nozzle on Prime Tower"
  3899. msgstr "İlk Direkteki Sürme İnaktif Nozülü"
  3900. #: fdmprinter.def.json
  3901. msgctxt "prime_tower_wipe_enabled description"
  3902. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  3903. 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."
  3904. #: fdmprinter.def.json
  3905. msgctxt "prime_tower_brim_enable label"
  3906. msgid "Prime Tower Brim"
  3907. msgstr "Astarlama Direği Kenarı"
  3908. #: fdmprinter.def.json
  3909. msgctxt "prime_tower_brim_enable description"
  3910. 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."
  3911. 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."
  3912. #: fdmprinter.def.json
  3913. msgctxt "ooze_shield_enabled label"
  3914. msgid "Enable Ooze Shield"
  3915. msgstr "Sızdırma Kalkanını Etkinleştir"
  3916. #: fdmprinter.def.json
  3917. msgctxt "ooze_shield_enabled description"
  3918. 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."
  3919. 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."
  3920. #: fdmprinter.def.json
  3921. msgctxt "ooze_shield_angle label"
  3922. msgid "Ooze Shield Angle"
  3923. msgstr "Sızdırma Kalkanı Açısı"
  3924. #: fdmprinter.def.json
  3925. msgctxt "ooze_shield_angle description"
  3926. 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."
  3927. 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."
  3928. #: fdmprinter.def.json
  3929. msgctxt "ooze_shield_dist label"
  3930. msgid "Ooze Shield Distance"
  3931. msgstr "Sızdırma Kalkanı Mesafesi"
  3932. #: fdmprinter.def.json
  3933. msgctxt "ooze_shield_dist description"
  3934. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  3935. msgstr "Sızdırma kalkanını X/Y yönlerindeki baskıya mesafesi."
  3936. #: fdmprinter.def.json
  3937. msgctxt "switch_extruder_retraction_amount label"
  3938. msgid "Nozzle Switch Retraction Distance"
  3939. msgstr "Nozül Anahtarı Geri Çekme Mesafesi"
  3940. #: fdmprinter.def.json
  3941. msgctxt "switch_extruder_retraction_amount description"
  3942. 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."
  3943. 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."
  3944. #: fdmprinter.def.json
  3945. msgctxt "switch_extruder_retraction_speeds label"
  3946. msgid "Nozzle Switch Retraction Speed"
  3947. msgstr "Nozül Anahtarı Geri Çekme Hızı"
  3948. #: fdmprinter.def.json
  3949. msgctxt "switch_extruder_retraction_speeds description"
  3950. 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."
  3951. 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."
  3952. #: fdmprinter.def.json
  3953. msgctxt "switch_extruder_retraction_speed label"
  3954. msgid "Nozzle Switch Retract Speed"
  3955. msgstr "Nozül Değişiminin Geri Çekme Hızı"
  3956. #: fdmprinter.def.json
  3957. msgctxt "switch_extruder_retraction_speed description"
  3958. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  3959. msgstr "Nozül değişiminin çekmesi sırasında filamanın geri çekildiği hız."
  3960. #: fdmprinter.def.json
  3961. msgctxt "switch_extruder_prime_speed label"
  3962. msgid "Nozzle Switch Prime Speed"
  3963. msgstr "Nozül Değişiminin İlk Hızı"
  3964. #: fdmprinter.def.json
  3965. msgctxt "switch_extruder_prime_speed description"
  3966. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  3967. msgstr "Nozül değişiminin çekmesi sonucunda filamanın geriye doğru itildiği hız."
  3968. #: fdmprinter.def.json
  3969. msgctxt "switch_extruder_extra_prime_amount label"
  3970. msgid "Nozzle Switch Extra Prime Amount"
  3971. msgstr "Nozül Değişimiyle Çalışmaya Hazırlanacak Ek Miktar"
  3972. #: fdmprinter.def.json
  3973. msgctxt "switch_extruder_extra_prime_amount description"
  3974. msgid "Extra material to prime after nozzle switching."
  3975. msgstr "Nozül değişiminin ardından çalışmaya hazırlanacak ek malzemedir."
  3976. #: fdmprinter.def.json
  3977. msgctxt "meshfix label"
  3978. msgid "Mesh Fixes"
  3979. msgstr "Ağ Onarımları"
  3980. #: fdmprinter.def.json
  3981. msgctxt "meshfix description"
  3982. msgid "Make the meshes more suited for 3D printing."
  3983. msgstr "Kafesleri 3D baskı için daha uygun hale getirir."
  3984. #: fdmprinter.def.json
  3985. msgctxt "meshfix_union_all label"
  3986. msgid "Union Overlapping Volumes"
  3987. msgstr "Bağlantı Çakışma Hacimleri"
  3988. #: fdmprinter.def.json
  3989. msgctxt "meshfix_union_all description"
  3990. 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."
  3991. 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."
  3992. #: fdmprinter.def.json
  3993. msgctxt "meshfix_union_all_remove_holes label"
  3994. msgid "Remove All Holes"
  3995. msgstr "Tüm Boşlukları Kaldır"
  3996. #: fdmprinter.def.json
  3997. msgctxt "meshfix_union_all_remove_holes description"
  3998. 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."
  3999. 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."
  4000. #: fdmprinter.def.json
  4001. msgctxt "meshfix_extensive_stitching label"
  4002. msgid "Extensive Stitching"
  4003. msgstr "Geniş Dikiş"
  4004. #: fdmprinter.def.json
  4005. msgctxt "meshfix_extensive_stitching description"
  4006. 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."
  4007. 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."
  4008. #: fdmprinter.def.json
  4009. msgctxt "meshfix_keep_open_polygons label"
  4010. msgid "Keep Disconnected Faces"
  4011. msgstr "Bağlı Olmayan Yüzleri Tut"
  4012. #: fdmprinter.def.json
  4013. msgctxt "meshfix_keep_open_polygons description"
  4014. 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."
  4015. 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."
  4016. #: fdmprinter.def.json
  4017. msgctxt "multiple_mesh_overlap label"
  4018. msgid "Merged Meshes Overlap"
  4019. msgstr "Birleştirilmiş Bileşim Çakışması"
  4020. #: fdmprinter.def.json
  4021. msgctxt "multiple_mesh_overlap description"
  4022. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  4023. msgstr "Birbirine dokunan örgülerin az oranda üst üste binmesini sağlayın. Böylelikle bunlar daha iyi birleşebilir."
  4024. #: fdmprinter.def.json
  4025. msgctxt "carve_multiple_volumes label"
  4026. msgid "Remove Mesh Intersection"
  4027. msgstr "Bileşim Kesişimini Kaldırın"
  4028. #: fdmprinter.def.json
  4029. msgctxt "carve_multiple_volumes description"
  4030. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  4031. msgstr "Birden fazla bileşimin çakıştığı alanları kaldırın. Bu, birleştirilmiş ikili malzemeler çakıştığında kullanılabilir."
  4032. #: fdmprinter.def.json
  4033. msgctxt "alternate_carve_order label"
  4034. msgid "Alternate Mesh Removal"
  4035. msgstr "Alternatif Örgü Giderimi"
  4036. #: fdmprinter.def.json
  4037. msgctxt "alternate_carve_order description"
  4038. 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."
  4039. 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."
  4040. #: fdmprinter.def.json
  4041. msgctxt "remove_empty_first_layers label"
  4042. msgid "Remove Empty First Layers"
  4043. msgstr "Boş İlk Katmanları Kaldır"
  4044. #: fdmprinter.def.json
  4045. msgctxt "remove_empty_first_layers description"
  4046. 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."
  4047. 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."
  4048. #: fdmprinter.def.json
  4049. msgctxt "meshfix_maximum_resolution label"
  4050. msgid "Maximum Resolution"
  4051. msgstr "Maksimum Çözünürlük"
  4052. #: fdmprinter.def.json
  4053. msgctxt "meshfix_maximum_resolution description"
  4054. 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."
  4055. 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."
  4056. #: fdmprinter.def.json
  4057. msgctxt "meshfix_maximum_travel_resolution label"
  4058. msgid "Maximum Travel Resolution"
  4059. msgstr "Maksimum Hareket Çözünürlüğü"
  4060. #: fdmprinter.def.json
  4061. msgctxt "meshfix_maximum_travel_resolution description"
  4062. 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."
  4063. 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."
  4064. #: fdmprinter.def.json
  4065. msgctxt "meshfix_maximum_deviation label"
  4066. msgid "Maximum Deviation"
  4067. msgstr "Maksimum Sapma"
  4068. #: fdmprinter.def.json
  4069. msgctxt "meshfix_maximum_deviation description"
  4070. 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."
  4071. 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."
  4072. #: fdmprinter.def.json
  4073. msgctxt "blackmagic label"
  4074. msgid "Special Modes"
  4075. msgstr "Özel Modlar"
  4076. #: fdmprinter.def.json
  4077. msgctxt "blackmagic description"
  4078. msgid "Non-traditional ways to print your models."
  4079. msgstr "Modellerinizi yazdırmanın geleneksel olmayan yollarıdır."
  4080. #: fdmprinter.def.json
  4081. msgctxt "print_sequence label"
  4082. msgid "Print Sequence"
  4083. msgstr "Yazdırma Dizisi"
  4084. #: fdmprinter.def.json
  4085. msgctxt "print_sequence description"
  4086. 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."
  4087. 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."
  4088. #: fdmprinter.def.json
  4089. msgctxt "print_sequence option all_at_once"
  4090. msgid "All at Once"
  4091. msgstr "Tümünü birden"
  4092. #: fdmprinter.def.json
  4093. msgctxt "print_sequence option one_at_a_time"
  4094. msgid "One at a Time"
  4095. msgstr "Birer Birer"
  4096. #: fdmprinter.def.json
  4097. msgctxt "infill_mesh label"
  4098. msgid "Infill Mesh"
  4099. msgstr "Dolgu Ağı"
  4100. #: fdmprinter.def.json
  4101. msgctxt "infill_mesh description"
  4102. 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."
  4103. 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."
  4104. #: fdmprinter.def.json
  4105. msgctxt "infill_mesh_order label"
  4106. msgid "Mesh Processing Rank"
  4107. msgstr "Örgü İşleme Sıralaması"
  4108. #: fdmprinter.def.json
  4109. msgctxt "infill_mesh_order description"
  4110. 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."
  4111. 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."
  4112. #: fdmprinter.def.json
  4113. msgctxt "cutting_mesh label"
  4114. msgid "Cutting Mesh"
  4115. msgstr "Kesme Örgüsü"
  4116. #: fdmprinter.def.json
  4117. msgctxt "cutting_mesh description"
  4118. 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."
  4119. 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."
  4120. #: fdmprinter.def.json
  4121. msgctxt "mold_enabled label"
  4122. msgid "Mold"
  4123. msgstr "Kalıp"
  4124. #: fdmprinter.def.json
  4125. msgctxt "mold_enabled description"
  4126. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  4127. msgstr "Yapı levhası üzerinde modelleri toplayan bir model elde etmek amacıyla döküm olabilecek modelleri kalıp olarak yazdırır."
  4128. #: fdmprinter.def.json
  4129. msgctxt "mold_width label"
  4130. msgid "Minimal Mold Width"
  4131. msgstr "Minimum Kalıp Genişliği"
  4132. #: fdmprinter.def.json
  4133. msgctxt "mold_width description"
  4134. msgid "The minimal distance between the ouside of the mold and the outside of the model."
  4135. msgstr "Kalıbın dış tarafı ile modelin dış tarafı arasındaki minimum mesafe."
  4136. #: fdmprinter.def.json
  4137. msgctxt "mold_roof_height label"
  4138. msgid "Mold Roof Height"
  4139. msgstr "Kalıp Çatı Yüksekliği"
  4140. #: fdmprinter.def.json
  4141. msgctxt "mold_roof_height description"
  4142. msgid "The height above horizontal parts in your model which to print mold."
  4143. msgstr "Kalıp yazdıracak modelinizin yatay kısımlarının üzerindeki yükseklik."
  4144. #: fdmprinter.def.json
  4145. msgctxt "mold_angle label"
  4146. msgid "Mold Angle"
  4147. msgstr "Kalıp Açısı"
  4148. #: fdmprinter.def.json
  4149. msgctxt "mold_angle description"
  4150. 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."
  4151. 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."
  4152. #: fdmprinter.def.json
  4153. msgctxt "support_mesh label"
  4154. msgid "Support Mesh"
  4155. msgstr "Destek Örgüsü"
  4156. #: fdmprinter.def.json
  4157. msgctxt "support_mesh description"
  4158. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  4159. msgstr "Destek alanlarını belirlemek için bu örgüyü kullanın. Bu örgü, destek yapısını oluşturmak için kullanılabilir."
  4160. #: fdmprinter.def.json
  4161. msgctxt "anti_overhang_mesh label"
  4162. msgid "Anti Overhang Mesh"
  4163. msgstr "Çıkıntı Önleme Örgüsü"
  4164. #: fdmprinter.def.json
  4165. msgctxt "anti_overhang_mesh description"
  4166. 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."
  4167. 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."
  4168. #: fdmprinter.def.json
  4169. msgctxt "magic_mesh_surface_mode label"
  4170. msgid "Surface Mode"
  4171. msgstr "Yüzey Modu"
  4172. #: fdmprinter.def.json
  4173. msgctxt "magic_mesh_surface_mode description"
  4174. 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."
  4175. 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."
  4176. #: fdmprinter.def.json
  4177. msgctxt "magic_mesh_surface_mode option normal"
  4178. msgid "Normal"
  4179. msgstr "Normal"
  4180. #: fdmprinter.def.json
  4181. msgctxt "magic_mesh_surface_mode option surface"
  4182. msgid "Surface"
  4183. msgstr "Yüzey"
  4184. #: fdmprinter.def.json
  4185. msgctxt "magic_mesh_surface_mode option both"
  4186. msgid "Both"
  4187. msgstr "Her İkisi"
  4188. #: fdmprinter.def.json
  4189. msgctxt "magic_spiralize label"
  4190. msgid "Spiralize Outer Contour"
  4191. msgstr "Spiral Dış Çevre"
  4192. #: fdmprinter.def.json
  4193. msgctxt "magic_spiralize description"
  4194. 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."
  4195. 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."
  4196. #: fdmprinter.def.json
  4197. msgctxt "smooth_spiralized_contours label"
  4198. msgid "Smooth Spiralized Contours"
  4199. msgstr "Helezon Şeklinde Düzeltme"
  4200. #: fdmprinter.def.json
  4201. msgctxt "smooth_spiralized_contours description"
  4202. 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."
  4203. 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."
  4204. #: fdmprinter.def.json
  4205. msgctxt "relative_extrusion label"
  4206. msgid "Relative Extrusion"
  4207. msgstr "Bağıl Ekstrüzyon"
  4208. #: fdmprinter.def.json
  4209. msgctxt "relative_extrusion description"
  4210. 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."
  4211. 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."
  4212. #: fdmprinter.def.json
  4213. msgctxt "experimental label"
  4214. msgid "Experimental"
  4215. msgstr "Deneysel"
  4216. #: fdmprinter.def.json
  4217. msgctxt "experimental description"
  4218. msgid "Features that haven't completely been fleshed out yet."
  4219. msgstr "Henüz tamamen detaylandırılmamış özelliklerdir."
  4220. #: fdmprinter.def.json
  4221. msgctxt "slicing_tolerance label"
  4222. msgid "Slicing Tolerance"
  4223. msgstr "Dilimleme Toleransı"
  4224. #: fdmprinter.def.json
  4225. msgctxt "slicing_tolerance description"
  4226. 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."
  4227. 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."
  4228. #: fdmprinter.def.json
  4229. msgctxt "slicing_tolerance option middle"
  4230. msgid "Middle"
  4231. msgstr "Ortalayıcı"
  4232. #: fdmprinter.def.json
  4233. msgctxt "slicing_tolerance option exclusive"
  4234. msgid "Exclusive"
  4235. msgstr "Dışlayıcı"
  4236. #: fdmprinter.def.json
  4237. msgctxt "slicing_tolerance option inclusive"
  4238. msgid "Inclusive"
  4239. msgstr "Kapsayıcı"
  4240. #: fdmprinter.def.json
  4241. msgctxt "roofing_line_width label"
  4242. msgid "Top Surface Skin Line Width"
  4243. msgstr "Üst Yüzey Hat Genişliği"
  4244. #: fdmprinter.def.json
  4245. msgctxt "roofing_line_width description"
  4246. msgid "Width of a single line of the areas at the top of the print."
  4247. msgstr "Baskının üst tarafında bulunan alanlardaki tek bir hattın genişliği."
  4248. #: fdmprinter.def.json
  4249. msgctxt "roofing_pattern label"
  4250. msgid "Top Surface Skin Pattern"
  4251. msgstr "Üst Yüzey Şekli"
  4252. #: fdmprinter.def.json
  4253. msgctxt "roofing_pattern description"
  4254. msgid "The pattern of the top most layers."
  4255. msgstr "En üst yüzeyin şekli."
  4256. #: fdmprinter.def.json
  4257. msgctxt "roofing_pattern option lines"
  4258. msgid "Lines"
  4259. msgstr "Çizgiler"
  4260. #: fdmprinter.def.json
  4261. msgctxt "roofing_pattern option concentric"
  4262. msgid "Concentric"
  4263. msgstr "Eş merkezli"
  4264. #: fdmprinter.def.json
  4265. msgctxt "roofing_pattern option zigzag"
  4266. msgid "Zig Zag"
  4267. msgstr "Zikzak"
  4268. #: fdmprinter.def.json
  4269. msgctxt "roofing_monotonic label"
  4270. msgid "Monotonic Top Surface Order"
  4271. msgstr "Monotonik Üst Yüzey Düzeni"
  4272. #: fdmprinter.def.json
  4273. msgctxt "roofing_monotonic description"
  4274. 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."
  4275. 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"
  4276. " daha tutarlı görünmesini sağlar."
  4277. #: fdmprinter.def.json
  4278. msgctxt "roofing_angles label"
  4279. msgid "Top Surface Skin Line Directions"
  4280. msgstr "Üst Yüzey Hat Yönleri"
  4281. #: fdmprinter.def.json
  4282. msgctxt "roofing_angles description"
  4283. 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)."
  4284. 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."
  4285. #: fdmprinter.def.json
  4286. msgctxt "infill_enable_travel_optimization label"
  4287. msgid "Infill Travel Optimization"
  4288. msgstr "Dolgu Hareket Optimizasyonu"
  4289. #: fdmprinter.def.json
  4290. msgctxt "infill_enable_travel_optimization description"
  4291. 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."
  4292. 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."
  4293. #: fdmprinter.def.json
  4294. msgctxt "material_flow_dependent_temperature label"
  4295. msgid "Auto Temperature"
  4296. msgstr "Otomatik Sıcaklık"
  4297. #: fdmprinter.def.json
  4298. msgctxt "material_flow_dependent_temperature description"
  4299. msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  4300. msgstr "Katmanın ortalama akış hızıyla otomatik olarak her katman için sıcaklığı değiştirir."
  4301. #: fdmprinter.def.json
  4302. msgctxt "material_flow_temp_graph label"
  4303. msgid "Flow Temperature Graph"
  4304. msgstr "Akış Sıcaklık Grafiği"
  4305. #: fdmprinter.def.json
  4306. msgctxt "material_flow_temp_graph description"
  4307. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  4308. msgstr "Malzeme akışını (saniye başına mm3 bazında) sıcaklığa (santigrat derece) bağlayan veri."
  4309. #: fdmprinter.def.json
  4310. msgctxt "minimum_polygon_circumference label"
  4311. msgid "Minimum Polygon Circumference"
  4312. msgstr "Minimum Poligon Çevre Uzunluğu"
  4313. #: fdmprinter.def.json
  4314. msgctxt "minimum_polygon_circumference description"
  4315. 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."
  4316. 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."
  4317. #: fdmprinter.def.json
  4318. msgctxt "support_skip_some_zags label"
  4319. msgid "Break Up Support In Chunks"
  4320. msgstr "Parçalarda Döküm Desteği"
  4321. #: fdmprinter.def.json
  4322. msgctxt "support_skip_some_zags description"
  4323. 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."
  4324. 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."
  4325. #: fdmprinter.def.json
  4326. msgctxt "support_skip_zag_per_mm label"
  4327. msgid "Support Chunk Size"
  4328. msgstr "Destek Parçasının Boyutu"
  4329. #: fdmprinter.def.json
  4330. msgctxt "support_skip_zag_per_mm description"
  4331. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  4332. 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."
  4333. #: fdmprinter.def.json
  4334. msgctxt "support_zag_skip_count label"
  4335. msgid "Support Chunk Line Count"
  4336. msgstr "Destek Parçası Hattı Sayısı"
  4337. #: fdmprinter.def.json
  4338. msgctxt "support_zag_skip_count description"
  4339. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  4340. msgstr "Destek yapısının daha kolay kırılması için her N bağlantı hattında bir zikzak atlayın."
  4341. #: fdmprinter.def.json
  4342. msgctxt "draft_shield_enabled label"
  4343. msgid "Enable Draft Shield"
  4344. msgstr "Cereyan Kalkanını Etkinleştir"
  4345. #: fdmprinter.def.json
  4346. msgctxt "draft_shield_enabled description"
  4347. 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."
  4348. 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."
  4349. #: fdmprinter.def.json
  4350. msgctxt "draft_shield_dist label"
  4351. msgid "Draft Shield X/Y Distance"
  4352. msgstr "Cereyan Kalkanı X/Y Mesafesi"
  4353. #: fdmprinter.def.json
  4354. msgctxt "draft_shield_dist description"
  4355. msgid "Distance of the draft shield from the print, in the X/Y directions."
  4356. msgstr "Cereyan kalkanını X/Y yönlerindeki baskıya mesafesi."
  4357. #: fdmprinter.def.json
  4358. msgctxt "draft_shield_height_limitation label"
  4359. msgid "Draft Shield Limitation"
  4360. msgstr "Cereyan Kalkanı Sınırlaması"
  4361. #: fdmprinter.def.json
  4362. msgctxt "draft_shield_height_limitation description"
  4363. 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."
  4364. 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."
  4365. #: fdmprinter.def.json
  4366. msgctxt "draft_shield_height_limitation option full"
  4367. msgid "Full"
  4368. msgstr "Tam"
  4369. #: fdmprinter.def.json
  4370. msgctxt "draft_shield_height_limitation option limited"
  4371. msgid "Limited"
  4372. msgstr "Sınırlı"
  4373. #: fdmprinter.def.json
  4374. msgctxt "draft_shield_height label"
  4375. msgid "Draft Shield Height"
  4376. msgstr "Cereyan Kalkanı Yüksekliği"
  4377. #: fdmprinter.def.json
  4378. msgctxt "draft_shield_height description"
  4379. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  4380. msgstr "Cereyan kalkanının yükseklik sınırı. Bundan daha fazla bir yükseklikte cereyan kalkanı yazdırılmayacaktır."
  4381. #: fdmprinter.def.json
  4382. msgctxt "conical_overhang_enabled label"
  4383. msgid "Make Overhang Printable"
  4384. msgstr "Çıkıntıyı Yazdırılabilir Yap"
  4385. #: fdmprinter.def.json
  4386. msgctxt "conical_overhang_enabled description"
  4387. 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."
  4388. 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."
  4389. #: fdmprinter.def.json
  4390. msgctxt "conical_overhang_angle label"
  4391. msgid "Maximum Model Angle"
  4392. msgstr "Maksimum Model Açısı"
  4393. #: fdmprinter.def.json
  4394. msgctxt "conical_overhang_angle description"
  4395. 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."
  4396. 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."
  4397. #: fdmprinter.def.json
  4398. msgctxt "conical_overhang_hole_size label"
  4399. msgid "Maximum Overhang Hole Area"
  4400. msgstr "Maksimum Çıkıntı Deliği Alanı"
  4401. #: fdmprinter.def.json
  4402. msgctxt "conical_overhang_hole_size description"
  4403. 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."
  4404. 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."
  4405. #: fdmprinter.def.json
  4406. msgctxt "coasting_enable label"
  4407. msgid "Enable Coasting"
  4408. msgstr "Taramayı Etkinleştir"
  4409. #: fdmprinter.def.json
  4410. msgctxt "coasting_enable description"
  4411. 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."
  4412. 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."
  4413. #: fdmprinter.def.json
  4414. msgctxt "coasting_volume label"
  4415. msgid "Coasting Volume"
  4416. msgstr "Tarama Hacmi"
  4417. #: fdmprinter.def.json
  4418. msgctxt "coasting_volume description"
  4419. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  4420. msgstr "Aksi takdirde hacim sızdırılır. Bu değer, genellikle nozül çapının küpüne yakındır."
  4421. #: fdmprinter.def.json
  4422. msgctxt "coasting_min_volume label"
  4423. msgid "Minimum Volume Before Coasting"
  4424. msgstr "Tarama Öncesi Minimum Hacim"
  4425. #: fdmprinter.def.json
  4426. msgctxt "coasting_min_volume description"
  4427. 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."
  4428. 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."
  4429. #: fdmprinter.def.json
  4430. msgctxt "coasting_speed label"
  4431. msgid "Coasting Speed"
  4432. msgstr "Tarama Hızı"
  4433. #: fdmprinter.def.json
  4434. msgctxt "coasting_speed description"
  4435. 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."
  4436. 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."
  4437. #: fdmprinter.def.json
  4438. msgctxt "cross_infill_pocket_size label"
  4439. msgid "Cross 3D Pocket Size"
  4440. msgstr "Çapraz 3D Cebin Boyutu"
  4441. #: fdmprinter.def.json
  4442. msgctxt "cross_infill_pocket_size description"
  4443. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  4444. msgstr "Şeklin kendisine temas ettiği yüksekliklerde, çapraz 3D şekilde dört yönlü kesişme yerlerinde bulunan ceplerin boyutudur."
  4445. #: fdmprinter.def.json
  4446. msgctxt "cross_infill_density_image label"
  4447. msgid "Cross Infill Density Image"
  4448. msgstr "Çapraz Dolgu Yoğunluğu Görüntüsü"
  4449. #: fdmprinter.def.json
  4450. msgctxt "cross_infill_density_image description"
  4451. 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."
  4452. msgstr "Parlaklık değerlerinin, yazdırma dolgusunun ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu."
  4453. #: fdmprinter.def.json
  4454. msgctxt "cross_support_density_image label"
  4455. msgid "Cross Fill Density Image for Support"
  4456. msgstr "Destek için Çapraz Dolgu Yoğunluğu Görüntüsü"
  4457. #: fdmprinter.def.json
  4458. msgctxt "cross_support_density_image description"
  4459. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  4460. msgstr "Parlaklık değerlerinin, desteğin ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu."
  4461. #: fdmprinter.def.json
  4462. msgctxt "support_conical_enabled label"
  4463. msgid "Enable Conical Support"
  4464. msgstr "Konik Desteği Etkinleştir"
  4465. #: fdmprinter.def.json
  4466. msgctxt "support_conical_enabled description"
  4467. msgid "Make support areas smaller at the bottom than at the overhang."
  4468. msgstr "Alttaki destek alanlarını çıkıntıda olanlardan daha küçük yapın."
  4469. #: fdmprinter.def.json
  4470. msgctxt "support_conical_angle label"
  4471. msgid "Conical Support Angle"
  4472. msgstr "Konik Destek Açısı"
  4473. #: fdmprinter.def.json
  4474. msgctxt "support_conical_angle description"
  4475. 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."
  4476. 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."
  4477. #: fdmprinter.def.json
  4478. msgctxt "support_conical_min_width label"
  4479. msgid "Conical Support Minimum Width"
  4480. msgstr "Koni Desteğinin Minimum Genişliği"
  4481. #: fdmprinter.def.json
  4482. msgctxt "support_conical_min_width description"
  4483. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  4484. 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."
  4485. #: fdmprinter.def.json
  4486. msgctxt "magic_fuzzy_skin_enabled label"
  4487. msgid "Fuzzy Skin"
  4488. msgstr "Belirsiz Dış Katman"
  4489. #: fdmprinter.def.json
  4490. msgctxt "magic_fuzzy_skin_enabled description"
  4491. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  4492. msgstr "Yüzeyin sert ve belirsiz bir görüntü alması için dış duvarları yazdırırken rastgele titrer."
  4493. #: fdmprinter.def.json
  4494. msgctxt "magic_fuzzy_skin_outside_only label"
  4495. msgid "Fuzzy Skin Outside Only"
  4496. msgstr "Yalnızca Belirsiz Dış Katman"
  4497. #: fdmprinter.def.json
  4498. msgctxt "magic_fuzzy_skin_outside_only description"
  4499. msgid "Jitter only the parts' outlines and not the parts' holes."
  4500. msgstr "Parçalardaki delikleri değil, yalnızca ana hatlarını titretir."
  4501. #: fdmprinter.def.json
  4502. msgctxt "magic_fuzzy_skin_thickness label"
  4503. msgid "Fuzzy Skin Thickness"
  4504. msgstr "Belirsiz Dış Katman Kalınlığı"
  4505. #: fdmprinter.def.json
  4506. msgctxt "magic_fuzzy_skin_thickness description"
  4507. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  4508. msgstr "Titremenin yapılacağı genişlik. İç duvarlar değiştirilmediği için, bunun dış duvar genişliğinin altında tutulması öneriliyor."
  4509. #: fdmprinter.def.json
  4510. msgctxt "magic_fuzzy_skin_point_density label"
  4511. msgid "Fuzzy Skin Density"
  4512. msgstr "Belirsiz Dış Katman Yoğunluğu"
  4513. #: fdmprinter.def.json
  4514. msgctxt "magic_fuzzy_skin_point_density description"
  4515. 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."
  4516. 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."
  4517. #: fdmprinter.def.json
  4518. msgctxt "magic_fuzzy_skin_point_dist label"
  4519. msgid "Fuzzy Skin Point Distance"
  4520. msgstr "Belirsiz Dış Katman Noktası Mesafesi"
  4521. #: fdmprinter.def.json
  4522. msgctxt "magic_fuzzy_skin_point_dist description"
  4523. 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."
  4524. 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."
  4525. #: fdmprinter.def.json
  4526. msgctxt "flow_rate_max_extrusion_offset label"
  4527. msgid "Flow Rate Compensation Max Extrusion Offset"
  4528. msgstr "Akış hızı dengelemesi maksimum ekstrüzyon kayması"
  4529. #: fdmprinter.def.json
  4530. msgctxt "flow_rate_max_extrusion_offset description"
  4531. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  4532. msgstr "Akış hızındaki değişiklikleri telafi etmek için filamentin hareket ettirileceği mm cinsinden maksimum mesafe."
  4533. #: fdmprinter.def.json
  4534. msgctxt "flow_rate_extrusion_offset_factor label"
  4535. msgid "Flow Rate Compensation Factor"
  4536. msgstr "Akış hızı dengeleme çarpanı"
  4537. #: fdmprinter.def.json
  4538. msgctxt "flow_rate_extrusion_offset_factor description"
  4539. 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."
  4540. 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."
  4541. #: fdmprinter.def.json
  4542. msgctxt "wireframe_enabled label"
  4543. msgid "Wire Printing"
  4544. msgstr "Kablo Yazdırma"
  4545. #: fdmprinter.def.json
  4546. msgctxt "wireframe_enabled description"
  4547. 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."
  4548. 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."
  4549. #: fdmprinter.def.json
  4550. msgctxt "wireframe_height label"
  4551. msgid "WP Connection Height"
  4552. msgstr "WP Bağlantı Yüksekliği"
  4553. #: fdmprinter.def.json
  4554. msgctxt "wireframe_height description"
  4555. 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."
  4556. 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."
  4557. #: fdmprinter.def.json
  4558. msgctxt "wireframe_roof_inset label"
  4559. msgid "WP Roof Inset Distance"
  4560. msgstr "WP Tavan İlave Mesafesi"
  4561. #: fdmprinter.def.json
  4562. msgctxt "wireframe_roof_inset description"
  4563. msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  4564. msgstr "İçerideki ana tavan hattından bağlantı yaparken kapatılan mesafe. Sadece kablo yazdırmaya uygulanır."
  4565. #: fdmprinter.def.json
  4566. msgctxt "wireframe_printspeed label"
  4567. msgid "WP Speed"
  4568. msgstr "WP Hızı"
  4569. #: fdmprinter.def.json
  4570. msgctxt "wireframe_printspeed description"
  4571. msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  4572. msgstr "Malzemeleri sıkarken nozül hareketlerinin hızı. Sadece kablo yazdırmaya uygulanır."
  4573. #: fdmprinter.def.json
  4574. msgctxt "wireframe_printspeed_bottom label"
  4575. msgid "WP Bottom Printing Speed"
  4576. msgstr "WP Alt Yazdırma Hızı"
  4577. #: fdmprinter.def.json
  4578. msgctxt "wireframe_printspeed_bottom description"
  4579. msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  4580. msgstr "Yapı platformuna değen tek katman olan ilk katmanın yazdırılma hızı. Sadece kablo yazdırmaya uygulanır."
  4581. #: fdmprinter.def.json
  4582. msgctxt "wireframe_printspeed_up label"
  4583. msgid "WP Upward Printing Speed"
  4584. msgstr "WP Yukarı Doğru Yazdırma Hızı"
  4585. #: fdmprinter.def.json
  4586. msgctxt "wireframe_printspeed_up description"
  4587. msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  4588. msgstr "“Belli belirsiz” yukarı doğru bir hat yazdırma hızı. Sadece kablo yazdırmaya uygulanır."
  4589. #: fdmprinter.def.json
  4590. msgctxt "wireframe_printspeed_down label"
  4591. msgid "WP Downward Printing Speed"
  4592. msgstr "WP Aşağı Doğru Yazdırma Hızı"
  4593. #: fdmprinter.def.json
  4594. msgctxt "wireframe_printspeed_down description"
  4595. msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  4596. msgstr "Çapraz şekilde aşağı doğru bir hat yazdırma hızı. Sadece kablo yazdırmaya uygulanır."
  4597. #: fdmprinter.def.json
  4598. msgctxt "wireframe_printspeed_flat label"
  4599. msgid "WP Horizontal Printing Speed"
  4600. msgstr "WP Yatay Yazdırma Hızı"
  4601. #: fdmprinter.def.json
  4602. msgctxt "wireframe_printspeed_flat description"
  4603. msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  4604. msgstr "Modelin yatay dış çevresini yazdırma hızı. Sadece kablo yazdırmaya uygulanır."
  4605. #: fdmprinter.def.json
  4606. msgctxt "wireframe_flow label"
  4607. msgid "WP Flow"
  4608. msgstr "WP Akışı"
  4609. #: fdmprinter.def.json
  4610. msgctxt "wireframe_flow description"
  4611. msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  4612. msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır. Sadece kablo yazdırmaya uygulanır."
  4613. #: fdmprinter.def.json
  4614. msgctxt "wireframe_flow_connection label"
  4615. msgid "WP Connection Flow"
  4616. msgstr "WP Bağlantı Akışı"
  4617. #: fdmprinter.def.json
  4618. msgctxt "wireframe_flow_connection description"
  4619. msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  4620. msgstr "Yukarı veya aşağı yönde hareket ederken akış dengelenmesi. Sadece kablo yazdırmaya uygulanır."
  4621. #: fdmprinter.def.json
  4622. msgctxt "wireframe_flow_flat label"
  4623. msgid "WP Flat Flow"
  4624. msgstr "WP Düz Akışı"
  4625. #: fdmprinter.def.json
  4626. msgctxt "wireframe_flow_flat description"
  4627. msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  4628. msgstr "Düz hatlar yazdırılırken akış dengelenmesi. Sadece kablo yazdırmaya uygulanır."
  4629. #: fdmprinter.def.json
  4630. msgctxt "wireframe_top_delay label"
  4631. msgid "WP Top Delay"
  4632. msgstr "WP Üst Gecikme"
  4633. #: fdmprinter.def.json
  4634. msgctxt "wireframe_top_delay description"
  4635. msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  4636. msgstr "Yukarı hattın sertleşmesi için, yukarıya doğru hareketten sonraki gecikme süresi. Sadece kablo yazdırmaya uygulanır."
  4637. #: fdmprinter.def.json
  4638. msgctxt "wireframe_bottom_delay label"
  4639. msgid "WP Bottom Delay"
  4640. msgstr "WP Alt Gecikme"
  4641. #: fdmprinter.def.json
  4642. msgctxt "wireframe_bottom_delay description"
  4643. msgid "Delay time after a downward move. Only applies to Wire Printing."
  4644. msgstr "Aşağı doğru hareketten sonraki bekleme süresi. Sadece kablo yazdırmaya uygulanır."
  4645. #: fdmprinter.def.json
  4646. msgctxt "wireframe_flat_delay label"
  4647. msgid "WP Flat Delay"
  4648. msgstr "WP Düz Gecikme"
  4649. #: fdmprinter.def.json
  4650. msgctxt "wireframe_flat_delay description"
  4651. 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."
  4652. 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."
  4653. #: fdmprinter.def.json
  4654. msgctxt "wireframe_up_half_speed label"
  4655. msgid "WP Ease Upward"
  4656. msgstr "WP Kolay Yukarı Çıkma"
  4657. #: fdmprinter.def.json
  4658. msgctxt "wireframe_up_half_speed description"
  4659. msgid ""
  4660. "Distance of an upward move which is extruded with half speed.\n"
  4661. "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  4662. msgstr ""
  4663. "Yarı hızda sıkıştırılmış yukarı doğru hareket mesafesi.\n"
  4664. "Bu katmanlarda malzemeyi çok fazla ısıtmayarak önceki katmanlarda daha iyi yapışma sağlayabilir. Sadece kablo yazdırmaya uygulanır."
  4665. #: fdmprinter.def.json
  4666. msgctxt "wireframe_top_jump label"
  4667. msgid "WP Knot Size"
  4668. msgstr "WP Düğüm Boyutu"
  4669. #: fdmprinter.def.json
  4670. msgctxt "wireframe_top_jump description"
  4671. 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."
  4672. 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."
  4673. #: fdmprinter.def.json
  4674. msgctxt "wireframe_fall_down label"
  4675. msgid "WP Fall Down"
  4676. msgstr "WP Aşağı İnme"
  4677. #: fdmprinter.def.json
  4678. msgctxt "wireframe_fall_down description"
  4679. msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4680. msgstr "Malzemenin yukarı doğru ekstrüzyondan sonra aşağı inme mesafesi. Mesafe telafi edilir. Sadece kablo yazdırmaya uygulanır."
  4681. #: fdmprinter.def.json
  4682. msgctxt "wireframe_drag_along label"
  4683. msgid "WP Drag Along"
  4684. msgstr "WP Sürüklenme"
  4685. #: fdmprinter.def.json
  4686. msgctxt "wireframe_drag_along description"
  4687. 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."
  4688. 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."
  4689. #: fdmprinter.def.json
  4690. msgctxt "wireframe_strategy label"
  4691. msgid "WP Strategy"
  4692. msgstr "WP Stratejisi"
  4693. #: fdmprinter.def.json
  4694. msgctxt "wireframe_strategy description"
  4695. 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."
  4696. 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."
  4697. #: fdmprinter.def.json
  4698. msgctxt "wireframe_strategy option compensate"
  4699. msgid "Compensate"
  4700. msgstr "Dengele"
  4701. #: fdmprinter.def.json
  4702. msgctxt "wireframe_strategy option knot"
  4703. msgid "Knot"
  4704. msgstr "Düğüm"
  4705. #: fdmprinter.def.json
  4706. msgctxt "wireframe_strategy option retract"
  4707. msgid "Retract"
  4708. msgstr "Geri Çek"
  4709. #: fdmprinter.def.json
  4710. msgctxt "wireframe_straight_before_down label"
  4711. msgid "WP Straighten Downward Lines"
  4712. msgstr "WP Aşağı Yöndeki Hatları Güçlendirme"
  4713. #: fdmprinter.def.json
  4714. msgctxt "wireframe_straight_before_down description"
  4715. 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."
  4716. 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."
  4717. #: fdmprinter.def.json
  4718. msgctxt "wireframe_roof_fall_down label"
  4719. msgid "WP Roof Fall Down"
  4720. msgstr "WP Tavandan Aşağı İnme"
  4721. #: fdmprinter.def.json
  4722. msgctxt "wireframe_roof_fall_down description"
  4723. 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."
  4724. 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."
  4725. #: fdmprinter.def.json
  4726. msgctxt "wireframe_roof_drag_along label"
  4727. msgid "WP Roof Drag Along"
  4728. msgstr "WP Tavandan Sürüklenme"
  4729. #: fdmprinter.def.json
  4730. msgctxt "wireframe_roof_drag_along description"
  4731. 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."
  4732. 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."
  4733. #: fdmprinter.def.json
  4734. msgctxt "wireframe_roof_outer_delay label"
  4735. msgid "WP Roof Outer Delay"
  4736. msgstr "WP Tavan Dış Gecikmesi"
  4737. #: fdmprinter.def.json
  4738. msgctxt "wireframe_roof_outer_delay description"
  4739. 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."
  4740. 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."
  4741. #: fdmprinter.def.json
  4742. msgctxt "wireframe_nozzle_clearance label"
  4743. msgid "WP Nozzle Clearance"
  4744. msgstr "WP Nozül Açıklığı"
  4745. #: fdmprinter.def.json
  4746. msgctxt "wireframe_nozzle_clearance description"
  4747. 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."
  4748. 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."
  4749. #: fdmprinter.def.json
  4750. msgctxt "adaptive_layer_height_enabled label"
  4751. msgid "Use Adaptive Layers"
  4752. msgstr "Uyarlanabilir Katmanların Kullanımı"
  4753. #: fdmprinter.def.json
  4754. msgctxt "adaptive_layer_height_enabled description"
  4755. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  4756. msgstr "Uyarlanabilir katmanlar modelin şekline bağlı olarak katman yüksekliğini hesaplar."
  4757. #: fdmprinter.def.json
  4758. msgctxt "adaptive_layer_height_variation label"
  4759. msgid "Adaptive Layers Maximum Variation"
  4760. msgstr "Uyarlanabilir Katmanların Azami Değişkenliği"
  4761. #: fdmprinter.def.json
  4762. msgctxt "adaptive_layer_height_variation description"
  4763. msgid "The maximum allowed height different from the base layer height."
  4764. msgstr "Taban katmanı yüksekliğine göre izin verilen azami yükseklik."
  4765. #: fdmprinter.def.json
  4766. msgctxt "adaptive_layer_height_variation_step label"
  4767. msgid "Adaptive Layers Variation Step Size"
  4768. msgstr "Uyarlanabilir Katmanların Değişkenlik Adım Boyu"
  4769. #: fdmprinter.def.json
  4770. msgctxt "adaptive_layer_height_variation_step description"
  4771. msgid "The difference in height of the next layer height compared to the previous one."
  4772. msgstr "Bir önceki ve bir sonraki katman yüksekliği arasındaki yükseklik farkı."
  4773. #: fdmprinter.def.json
  4774. msgctxt "adaptive_layer_height_threshold label"
  4775. msgid "Adaptive Layers Topography Size"
  4776. msgstr "Uyarlanabilir Katman Topografisi Boyutu"
  4777. #: fdmprinter.def.json
  4778. msgctxt "adaptive_layer_height_threshold description"
  4779. 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."
  4780. 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."
  4781. #: fdmprinter.def.json
  4782. msgctxt "wall_overhang_angle label"
  4783. msgid "Overhanging Wall Angle"
  4784. msgstr "Çıkıntılı Duvar Açısı"
  4785. #: fdmprinter.def.json
  4786. msgctxt "wall_overhang_angle description"
  4787. 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."
  4788. 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."
  4789. #: fdmprinter.def.json
  4790. msgctxt "wall_overhang_speed_factor label"
  4791. msgid "Overhanging Wall Speed"
  4792. msgstr "Çıkıntılı Duvar Hızı"
  4793. #: fdmprinter.def.json
  4794. msgctxt "wall_overhang_speed_factor description"
  4795. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  4796. msgstr "Çıkıntılı duvarlar, normal yazdırma hızına göre bu yüzdeye denk bir hızda yazdırılacaktır."
  4797. #: fdmprinter.def.json
  4798. msgctxt "bridge_settings_enabled label"
  4799. msgid "Enable Bridge Settings"
  4800. msgstr "Köprü Ayarlarını Etkinleştir"
  4801. #: fdmprinter.def.json
  4802. msgctxt "bridge_settings_enabled description"
  4803. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  4804. 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."
  4805. #: fdmprinter.def.json
  4806. msgctxt "bridge_wall_min_length label"
  4807. msgid "Minimum Bridge Wall Length"
  4808. msgstr "Minimum Köprü Duvarı Uzunluğu"
  4809. #: fdmprinter.def.json
  4810. msgctxt "bridge_wall_min_length description"
  4811. 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."
  4812. 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."
  4813. #: fdmprinter.def.json
  4814. msgctxt "bridge_skin_support_threshold label"
  4815. msgid "Bridge Skin Support Threshold"
  4816. msgstr "Köprü Yüzey Alanı Destek Eşiği"
  4817. #: fdmprinter.def.json
  4818. msgctxt "bridge_skin_support_threshold description"
  4819. 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."
  4820. 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."
  4821. #: fdmprinter.def.json
  4822. msgctxt "bridge_sparse_infill_max_density label"
  4823. msgid "Bridge Sparse Infill Max Density"
  4824. msgstr "Maksimum Köprü Seyrek Dolgu Yoğunluğu"
  4825. #: fdmprinter.def.json
  4826. msgctxt "bridge_sparse_infill_max_density description"
  4827. 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."
  4828. 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."
  4829. #: fdmprinter.def.json
  4830. msgctxt "bridge_wall_coast label"
  4831. msgid "Bridge Wall Coasting"
  4832. msgstr "Köprü Duvarı Tarama"
  4833. #: fdmprinter.def.json
  4834. msgctxt "bridge_wall_coast description"
  4835. 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."
  4836. 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."
  4837. #: fdmprinter.def.json
  4838. msgctxt "bridge_wall_speed label"
  4839. msgid "Bridge Wall Speed"
  4840. msgstr "Köprü Duvarı Hızı"
  4841. #: fdmprinter.def.json
  4842. msgctxt "bridge_wall_speed description"
  4843. msgid "The speed at which the bridge walls are printed."
  4844. msgstr "Köprü duvarlarının yazdırıldığı hız."
  4845. #: fdmprinter.def.json
  4846. msgctxt "bridge_wall_material_flow label"
  4847. msgid "Bridge Wall Flow"
  4848. msgstr "Köprü Duvarı Akışı"
  4849. #: fdmprinter.def.json
  4850. msgctxt "bridge_wall_material_flow description"
  4851. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4852. msgstr "Köprü duvarları yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır."
  4853. #: fdmprinter.def.json
  4854. msgctxt "bridge_skin_speed label"
  4855. msgid "Bridge Skin Speed"
  4856. msgstr "Köprü Yüzey Alanı Hızı"
  4857. #: fdmprinter.def.json
  4858. msgctxt "bridge_skin_speed description"
  4859. msgid "The speed at which bridge skin regions are printed."
  4860. msgstr "Köprü yüzey alanı bölgelerinin yazdırıldığı hız."
  4861. #: fdmprinter.def.json
  4862. msgctxt "bridge_skin_material_flow label"
  4863. msgid "Bridge Skin Flow"
  4864. msgstr "Köprü Yüzey Alanı Akışı"
  4865. #: fdmprinter.def.json
  4866. msgctxt "bridge_skin_material_flow description"
  4867. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4868. msgstr "Köprü yüzey alanı bölgeleri yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır."
  4869. #: fdmprinter.def.json
  4870. msgctxt "bridge_skin_density label"
  4871. msgid "Bridge Skin Density"
  4872. msgstr "Köprü Yüzey Alanı Yoğunluğu"
  4873. #: fdmprinter.def.json
  4874. msgctxt "bridge_skin_density description"
  4875. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4876. 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."
  4877. #: fdmprinter.def.json
  4878. msgctxt "bridge_fan_speed label"
  4879. msgid "Bridge Fan Speed"
  4880. msgstr "Köprü Fan Hızı"
  4881. #: fdmprinter.def.json
  4882. msgctxt "bridge_fan_speed description"
  4883. msgid "Percentage fan speed to use when printing bridge walls and skin."
  4884. msgstr "Köprü duvarları ve yüzey alanı yazdırılırken kullanılacak yüzde fan hızı."
  4885. #: fdmprinter.def.json
  4886. msgctxt "bridge_enable_more_layers label"
  4887. msgid "Bridge Has Multiple Layers"
  4888. msgstr "Köprüde Birden Fazla Katman Var"
  4889. #: fdmprinter.def.json
  4890. msgctxt "bridge_enable_more_layers description"
  4891. 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."
  4892. 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."
  4893. #: fdmprinter.def.json
  4894. msgctxt "bridge_skin_speed_2 label"
  4895. msgid "Bridge Second Skin Speed"
  4896. msgstr "Köprü İkinci Yüzey Alanı Hızı"
  4897. #: fdmprinter.def.json
  4898. msgctxt "bridge_skin_speed_2 description"
  4899. msgid "Print speed to use when printing the second bridge skin layer."
  4900. msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı."
  4901. #: fdmprinter.def.json
  4902. msgctxt "bridge_skin_material_flow_2 label"
  4903. msgid "Bridge Second Skin Flow"
  4904. msgstr "Köprü İkinci Yüzey Alanı Akışı"
  4905. #: fdmprinter.def.json
  4906. msgctxt "bridge_skin_material_flow_2 description"
  4907. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4908. msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır."
  4909. #: fdmprinter.def.json
  4910. msgctxt "bridge_skin_density_2 label"
  4911. msgid "Bridge Second Skin Density"
  4912. msgstr "Köprü İkinci Yüzey Alanı Yoğunluğu"
  4913. #: fdmprinter.def.json
  4914. msgctxt "bridge_skin_density_2 description"
  4915. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4916. 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."
  4917. #: fdmprinter.def.json
  4918. msgctxt "bridge_fan_speed_2 label"
  4919. msgid "Bridge Second Skin Fan Speed"
  4920. msgstr "Köprü İkinci Yüzey Alanı Fan Hızı"
  4921. #: fdmprinter.def.json
  4922. msgctxt "bridge_fan_speed_2 description"
  4923. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  4924. msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı."
  4925. #: fdmprinter.def.json
  4926. msgctxt "bridge_skin_speed_3 label"
  4927. msgid "Bridge Third Skin Speed"
  4928. msgstr "Köprü Üçüncü Yüzey Alanı Hızı"
  4929. #: fdmprinter.def.json
  4930. msgctxt "bridge_skin_speed_3 description"
  4931. msgid "Print speed to use when printing the third bridge skin layer."
  4932. msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı."
  4933. #: fdmprinter.def.json
  4934. msgctxt "bridge_skin_material_flow_3 label"
  4935. msgid "Bridge Third Skin Flow"
  4936. msgstr "Köprü Üçüncü Yüzey Alanı Akışı"
  4937. #: fdmprinter.def.json
  4938. msgctxt "bridge_skin_material_flow_3 description"
  4939. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4940. msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır."
  4941. #: fdmprinter.def.json
  4942. msgctxt "bridge_skin_density_3 label"
  4943. msgid "Bridge Third Skin Density"
  4944. msgstr "Köprü Üçüncü Yüzey Alanı Yoğunluğu"
  4945. #: fdmprinter.def.json
  4946. msgctxt "bridge_skin_density_3 description"
  4947. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4948. 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."
  4949. #: fdmprinter.def.json
  4950. msgctxt "bridge_fan_speed_3 label"
  4951. msgid "Bridge Third Skin Fan Speed"
  4952. msgstr "Köprü Üçüncü Yüzey Alanı Fan Hızı"
  4953. #: fdmprinter.def.json
  4954. msgctxt "bridge_fan_speed_3 description"
  4955. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  4956. msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı."
  4957. #: fdmprinter.def.json
  4958. msgctxt "clean_between_layers label"
  4959. msgid "Wipe Nozzle Between Layers"
  4960. msgstr "Katmanlar Arasındaki Sürme Nozülü"
  4961. #: fdmprinter.def.json
  4962. msgctxt "clean_between_layers description"
  4963. 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."
  4964. 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."
  4965. #: fdmprinter.def.json
  4966. msgctxt "max_extrusion_before_wipe label"
  4967. msgid "Material Volume Between Wipes"
  4968. msgstr "Sürme Hareketleri Arasındaki Malzeme Hacmi"
  4969. #: fdmprinter.def.json
  4970. msgctxt "max_extrusion_before_wipe description"
  4971. 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."
  4972. 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."
  4973. #: fdmprinter.def.json
  4974. msgctxt "wipe_retraction_enable label"
  4975. msgid "Wipe Retraction Enable"
  4976. msgstr "Sürme Geri Çekmenin Etkinleştirilmesi"
  4977. #: fdmprinter.def.json
  4978. msgctxt "wipe_retraction_enable description"
  4979. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  4980. msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker."
  4981. #: fdmprinter.def.json
  4982. msgctxt "wipe_retraction_amount label"
  4983. msgid "Wipe Retraction Distance"
  4984. msgstr "Sürme Geri Çekme Mesafesi"
  4985. #: fdmprinter.def.json
  4986. msgctxt "wipe_retraction_amount description"
  4987. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  4988. msgstr "Filamanın sürme dizisi sırasında sızıntı yapmaması için filanın geri çekilme miktarı."
  4989. #: fdmprinter.def.json
  4990. msgctxt "wipe_retraction_extra_prime_amount label"
  4991. msgid "Wipe Retraction Extra Prime Amount"
  4992. msgstr "Sürme Geri Çekme Sırasındaki İlave Astar Miktarı"
  4993. #: fdmprinter.def.json
  4994. msgctxt "wipe_retraction_extra_prime_amount description"
  4995. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  4996. msgstr "Sürme hareketi sırasında bazı malzemeler eksilebilir; bu malzemeler burada telafi edebilir."
  4997. #: fdmprinter.def.json
  4998. msgctxt "wipe_retraction_speed label"
  4999. msgid "Wipe Retraction Speed"
  5000. msgstr "Sürme Geri Çekme Hızı"
  5001. #: fdmprinter.def.json
  5002. msgctxt "wipe_retraction_speed description"
  5003. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  5004. msgstr "Filamanın geri çekildiği ve sürme geri çekme hareketi sırasında astarlandığı hız."
  5005. #: fdmprinter.def.json
  5006. msgctxt "wipe_retraction_retract_speed label"
  5007. msgid "Wipe Retraction Retract Speed"
  5008. msgstr "Sürme Geri Çekme Sırasındaki Çekim Hızı"
  5009. #: fdmprinter.def.json
  5010. msgctxt "wipe_retraction_retract_speed description"
  5011. msgid "The speed at which the filament is retracted during a wipe retraction move."
  5012. msgstr "Filamanın sürme geri çekme hareketi sırasında geri çekildiği hız."
  5013. #: fdmprinter.def.json
  5014. msgctxt "wipe_retraction_prime_speed label"
  5015. msgid "Wipe Retraction Prime Speed"
  5016. msgstr "Sürme Geri Çekme Sırasındaki Çalışmaya Hazırlama Hızı"
  5017. #: fdmprinter.def.json
  5018. msgctxt "wipe_retraction_prime_speed description"
  5019. msgid "The speed at which the filament is primed during a wipe retraction move."
  5020. msgstr "Filamanın sürme geri çekme hareketi sırasında astarlandığı hız."
  5021. #: fdmprinter.def.json
  5022. msgctxt "wipe_pause label"
  5023. msgid "Wipe Pause"
  5024. msgstr "Sürmeyi Durdurma"
  5025. #: fdmprinter.def.json
  5026. msgctxt "wipe_pause description"
  5027. msgid "Pause after the unretract."
  5028. msgstr "Geri çekmenin geri alınmasından sonraki duraklama."
  5029. #: fdmprinter.def.json
  5030. msgctxt "wipe_hop_enable label"
  5031. msgid "Wipe Z Hop"
  5032. msgstr "Sürme Z Sıçraması"
  5033. #: fdmprinter.def.json
  5034. msgctxt "wipe_hop_enable description"
  5035. 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."
  5036. 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."
  5037. #: fdmprinter.def.json
  5038. msgctxt "wipe_hop_amount label"
  5039. msgid "Wipe Z Hop Height"
  5040. msgstr "Sürme Z Sıçraması Yüksekliği"
  5041. #: fdmprinter.def.json
  5042. msgctxt "wipe_hop_amount description"
  5043. msgid "The height difference when performing a Z Hop."
  5044. msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı."
  5045. #: fdmprinter.def.json
  5046. msgctxt "wipe_hop_speed label"
  5047. msgid "Wipe Hop Speed"
  5048. msgstr "Sürme Sıçrama Hızı"
  5049. #: fdmprinter.def.json
  5050. msgctxt "wipe_hop_speed description"
  5051. msgid "Speed to move the z-axis during the hop."
  5052. msgstr "Sıçrama sırasında z eksenini hareket ettirmek için gerekli hız."
  5053. #: fdmprinter.def.json
  5054. msgctxt "wipe_brush_pos_x label"
  5055. msgid "Wipe Brush X Position"
  5056. msgstr "Sürme Fırçası X Konumu"
  5057. #: fdmprinter.def.json
  5058. msgctxt "wipe_brush_pos_x description"
  5059. msgid "X location where wipe script will start."
  5060. msgstr "Sürme komutunun başlatılacağı X konumu."
  5061. #: fdmprinter.def.json
  5062. msgctxt "wipe_repeat_count label"
  5063. msgid "Wipe Repeat Count"
  5064. msgstr "Sürme Tekrar Sayısı"
  5065. #: fdmprinter.def.json
  5066. msgctxt "wipe_repeat_count description"
  5067. msgid "Number of times to move the nozzle across the brush."
  5068. msgstr "Nozülün fırçadan geçirilme sayısı."
  5069. #: fdmprinter.def.json
  5070. msgctxt "wipe_move_distance label"
  5071. msgid "Wipe Move Distance"
  5072. msgstr "Sürme Hareket Mesafesi"
  5073. #: fdmprinter.def.json
  5074. msgctxt "wipe_move_distance description"
  5075. msgid "The distance to move the head back and forth across the brush."
  5076. msgstr "Başlığı fırçada ileri ve geri hareket ettirme mesafesi."
  5077. #: fdmprinter.def.json
  5078. msgctxt "small_hole_max_size label"
  5079. msgid "Small Hole Max Size"
  5080. msgstr "Maksimum Küçük Delik Boyutu"
  5081. #: fdmprinter.def.json
  5082. msgctxt "small_hole_max_size description"
  5083. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  5084. msgstr "Bu değerden daha küçük çaptaki delik ve parça ana hatları Küçük Özellik Hızı kullanılarak basılacaktır."
  5085. #: fdmprinter.def.json
  5086. msgctxt "small_feature_max_length label"
  5087. msgid "Small Feature Max Length"
  5088. msgstr "Maksimum Küçük Özellik Uzunluğu"
  5089. #: fdmprinter.def.json
  5090. msgctxt "small_feature_max_length description"
  5091. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  5092. msgstr "Bu uzunluktan kısa olan özellik ana hatları Kısa Özellik Hızı kullanılarak basılacaktır."
  5093. #: fdmprinter.def.json
  5094. msgctxt "small_feature_speed_factor label"
  5095. msgid "Small Feature Speed"
  5096. msgstr "Küçük Özellik Hızı"
  5097. #: fdmprinter.def.json
  5098. msgctxt "small_feature_speed_factor description"
  5099. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  5100. 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."
  5101. #: fdmprinter.def.json
  5102. msgctxt "small_feature_speed_factor_0 label"
  5103. msgid "Small Feature Initial Layer Speed"
  5104. msgstr "Küçük Özellik İlk Katman Hızı"
  5105. #: fdmprinter.def.json
  5106. msgctxt "small_feature_speed_factor_0 description"
  5107. 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."
  5108. 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."
  5109. #: fdmprinter.def.json
  5110. msgctxt "command_line_settings label"
  5111. msgid "Command Line Settings"
  5112. msgstr "Komut Satırı Ayarları"
  5113. #: fdmprinter.def.json
  5114. msgctxt "command_line_settings description"
  5115. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  5116. msgstr "Sadece Cura ön ucundan CuraEngine istenmediğinde kullanılan ayarlar."
  5117. #: fdmprinter.def.json
  5118. msgctxt "center_object label"
  5119. msgid "Center Object"
  5120. msgstr "Nesneyi ortalayın"
  5121. #: fdmprinter.def.json
  5122. msgctxt "center_object description"
  5123. 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."
  5124. msgstr "Nesnenin kaydedildiği koordinat sistemini kullanmak yerine nesnenin yapı platformunun (0,0) ortasına yerleştirilmesi."
  5125. #: fdmprinter.def.json
  5126. msgctxt "mesh_position_x label"
  5127. msgid "Mesh Position X"
  5128. msgstr "Bileşim konumu X"
  5129. #: fdmprinter.def.json
  5130. msgctxt "mesh_position_x description"
  5131. msgid "Offset applied to the object in the x direction."
  5132. msgstr "Nesneye x yönünde uygulanan ofset."
  5133. #: fdmprinter.def.json
  5134. msgctxt "mesh_position_y label"
  5135. msgid "Mesh Position Y"
  5136. msgstr "Bileşim konumu Y"
  5137. #: fdmprinter.def.json
  5138. msgctxt "mesh_position_y description"
  5139. msgid "Offset applied to the object in the y direction."
  5140. msgstr "Nesneye y yönünde uygulanan ofset."
  5141. #: fdmprinter.def.json
  5142. msgctxt "mesh_position_z label"
  5143. msgid "Mesh Position Z"
  5144. msgstr "Bileşim konumu Z"
  5145. #: fdmprinter.def.json
  5146. msgctxt "mesh_position_z description"
  5147. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  5148. msgstr "Nesneye z yönünde uygulanan ofset. Bununla birlikte “Nesne Havuzu” olarak adlandırılan malzemeyi de kullanabilirsiniz."
  5149. #: fdmprinter.def.json
  5150. msgctxt "mesh_rotation_matrix label"
  5151. msgid "Mesh Rotation Matrix"
  5152. msgstr "Bileşim Rotasyon Matrisi"
  5153. #: fdmprinter.def.json
  5154. msgctxt "mesh_rotation_matrix description"
  5155. msgid "Transformation matrix to be applied to the model when loading it from file."
  5156. msgstr "Modeli dosyadan indirirken modele uygulanacak olan dönüşüm matrisi."
  5157. #~ msgctxt "machine_steps_per_mm_e description"
  5158. #~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  5159. #~ msgstr "Kademeli motorun kaç adımının, bir milimetre ekstruzyon ile sonuçlanacağı."
  5160. #~ msgctxt "retraction_combing_max_distance description"
  5161. #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  5162. #~ msgstr "Sıfır olmadığında, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır."
  5163. #~ msgctxt "machine_use_extruder_offset_to_offset_coords description"
  5164. #~ msgid "Apply the extruder offset to the coordinate system."
  5165. #~ msgstr "Ekstruder ofsetini koordinat sistemine uygulayın."
  5166. #~ msgctxt "shell label"
  5167. #~ msgid "Shell"
  5168. #~ msgstr "Kovan"
  5169. #~ msgctxt "max_skin_angle_for_expansion description"
  5170. #~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical."
  5171. #~ msgstr "Nesnenizin bu ayardan daha geniş açıya sahip üst ve/veya alt zeminlerinin yüzeyleri genişletilmez. Böylece model yüzeyinin neredeyse dik açıya sahip olduğu durumlarda ortaya çıkan dar yüzey alanlarının genişletilmesi önlenmiş olur. 0°’lik bir açı yataydır; 90°’lik bir açı dikeydir."
  5172. #~ msgctxt "speed_layer_0 description"
  5173. #~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  5174. #~ msgstr "İlk katman için belirlenen hız. Yapı tahtasına yapışmayı artırmak için daha düşük bir değer önerilmektedir."
  5175. #~ msgctxt "infill_mesh_order description"
  5176. #~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  5177. #~ msgstr "Çakışan birden çok dolgu örgüsünü göz önüne alarak bu örgünün önceliğini belirler. Birden çok dolgu örgüsünün çakıştığı alanlar en düşük sıralamaya sahip örgünün ayarlarını alacaktır. Daha yüksek sıralamaya sahip dolgu örgüsü, dolgu örgülerinin dolgusunu daha düşük sıralı ve normal örgüler ile değiştirecektir."
  5178. #~ msgctxt "material_bed_temperature description"
  5179. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  5180. #~ msgstr "Isınan yapı levhası için kullanılan sıcaklık. Bu değer 0 ise yatak sıcaklığı değiştirilmez."
  5181. #~ msgctxt "material_bed_temperature_layer_0 description"
  5182. #~ msgid "The temperature used for the heated build plate at the first layer."
  5183. #~ msgstr "İlk katmanda ısınan yapı levhası için kullanılan sıcaklık."
  5184. #~ msgctxt "material_shrinkage_percentage label"
  5185. #~ msgid "Shrinkage Ratio"
  5186. #~ msgstr "Çekme Oranı"
  5187. #~ msgctxt "material_shrinkage_percentage description"
  5188. #~ msgid "Shrinkage ratio in percentage."
  5189. #~ msgstr "Yüzde cinsinden çekme oranı."
  5190. #~ msgctxt "infill_mesh_order description"
  5191. #~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  5192. #~ msgstr "Çakışan birimleri göz önüne alarak bu örgünün önceliğini belirler. Birden çok örgünün bulunduğu alanlarda düşük sıralamalı örgü öncelenir. Daha yüksek sıralamaya sahip dolgu örgüsü, dolgu örgülerin dolgusunu daha düşük sıralı ve normal örgüler ile değiştirecektir."
  5193. #~ msgctxt "print_sequence description"
  5194. #~ 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. "
  5195. #~ 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. "
  5196. #~ msgctxt "infill_mesh_order label"
  5197. #~ msgid "Infill Mesh Order"
  5198. #~ msgstr "Dolgu Birleşim Düzeni"
  5199. #~ msgctxt "infill_mesh_order description"
  5200. #~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  5201. #~ msgstr "Hangi dolgu birleşiminin diğer dolgu birleşiminin içinde olacağını belirler. Yüksek düzeyli bir dolgu birleşimi, dolgu birleşimlerinin dolgusunu daha düşük düzey ve normal birleşimler ile düzeltir."
  5202. #~ msgctxt "support_tree_enable label"
  5203. #~ msgid "Tree Support"
  5204. #~ msgstr "Ağaç Destek"
  5205. #~ msgctxt "support_tree_enable description"
  5206. #~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time."
  5207. #~ msgstr "Baskınızı desteklemesi adına dallarıyla birlikte ağaca benzeyen bir destek oluşturun. Malzeme kullanımı ve baskı süresi düşer ancak dilimleme zamanı da önemli ölçüde artar."
  5208. #~ msgctxt "slicing_tolerance description"
  5209. #~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process."
  5210. #~ msgstr "Çapraz yüzeylerle katman dilimleme yolları. Bir katmanın alanları katmanın ortasının yüzeyle kesiştiği yere (Ortalayıcı) göre oluşturulabilir. Diğer bir yol da her katmanın yüksekliği boyunca hacim içinde kalan alanları (Dışlayıcı) veya katmanın içinde herhangi bir yerde kalan alanları (Kapsayıcı) almasıdır. Dışlayıcı seçenek en çok ayrıntıyı tutar; Kapsayıcı seçenek en iyi şekilde oturur; Ortalayıcı ise en kısa sürede işlenir."
  5211. #~ msgctxt "spaghetti_infill_enabled label"
  5212. #~ msgid "Spaghetti Infill"
  5213. #~ msgstr "Spagetti Dolgu"
  5214. #~ msgctxt "spaghetti_infill_enabled description"
  5215. #~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable."
  5216. #~ msgstr "Filamanın nesnenin içinde düzensiz bir şekilde yukarı doğru kıvrılması için dolguyu arada sırada yazdırın. Böylece yazdırma süresi azalır, ancak davranış önceden kestirilemez."
  5217. #~ msgctxt "spaghetti_infill_stepped label"
  5218. #~ msgid "Spaghetti Infill Stepping"
  5219. #~ msgstr "Spagetti Dolgu Adımları"
  5220. #~ msgctxt "spaghetti_infill_stepped description"
  5221. #~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  5222. #~ msgstr "Spagetti dolgusunu adım adım yazdırma veya tüm dolgu filamanını yazdırma işleminin sonunda ekstrude etme."
  5223. #~ msgctxt "spaghetti_max_infill_angle label"
  5224. #~ msgid "Spaghetti Maximum Infill Angle"
  5225. #~ msgstr "Spagetti Maksimum Dolgu Açısı"
  5226. #~ msgctxt "spaghetti_max_infill_angle description"
  5227. #~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer."
  5228. #~ msgstr "Daha sonradan spagetti dolgu uygulanacak alanlar için yazdırmanın içindeki Z ekseninin maksimum açısı. Bu değerin düşürülmesi, modelinize yapılan her bir dolgu katmanında daha fazla açılı kısımlara neden olur."
  5229. #~ msgctxt "spaghetti_max_height label"
  5230. #~ msgid "Spaghetti Infill Maximum Height"
  5231. #~ msgstr "Spagetti Dolgu Maksimum Yüksekliği"
  5232. #~ msgctxt "spaghetti_max_height description"
  5233. #~ msgid "The maximum height of inside space which can be combined and filled from the top."
  5234. #~ msgstr "Birleştirilebilecek ve üstten dolgu yapılabilecek iç alanın maksimum yüksekliği."
  5235. #~ msgctxt "spaghetti_inset label"
  5236. #~ msgid "Spaghetti Inset"
  5237. #~ msgstr "Spagetti İç Dolgusu"
  5238. #~ msgctxt "spaghetti_inset description"
  5239. #~ msgid "The offset from the walls from where the spaghetti infill will be printed."
  5240. #~ msgstr "Spagetti dolgunun yazdırılacağı yerin duvarlardan ofset değeri."
  5241. #~ msgctxt "spaghetti_flow label"
  5242. #~ msgid "Spaghetti Flow"
  5243. #~ msgstr "Spagetti Debisi"
  5244. #~ msgctxt "spaghetti_flow description"
  5245. #~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill."
  5246. #~ msgstr "Spagetti dolgusunun yoğunluğunu ayarlar. Dolgu yoğunluğunun spagetti dolgu için ekstrüzyon miktarını değil, sadece dolgu deseni çizgi boşluğunu kontrol ettiğini unutmayın."
  5247. #~ msgctxt "spaghetti_infill_extra_volume label"
  5248. #~ msgid "Spaghetti Infill Extra Volume"
  5249. #~ msgstr "Spagetti Dolgu Ekstra Hacmi"
  5250. #~ msgctxt "spaghetti_infill_extra_volume description"
  5251. #~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  5252. #~ msgstr "Her spagetti dolumunda ekstrude edilen toplam hacmi ayarlamak için kullanılan bir düzeltme terimi."
  5253. #~ msgctxt "material_guid description"
  5254. #~ msgid "GUID of the material. This is set automatically. "
  5255. #~ msgstr "Malzemedeki GUID Otomatik olarak ayarlanır. "
  5256. #~ msgctxt "machine_filament_park_distance label"
  5257. #~ msgid "Filament Park Distance"
  5258. #~ msgstr "Filaman Bırakma Mesafesi"
  5259. #~ msgctxt "machine_filament_park_distance description"
  5260. #~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used."
  5261. #~ msgstr "Bir ekstrüder artık kullanılmadığında filamanın bırakılacağı nozül ucuna olan mesafe."
  5262. #~ msgctxt "material_flush_purge_speed description"
  5263. #~ msgid "Material Station internal value"
  5264. #~ msgstr "Material Station iç değeri"
  5265. #~ msgctxt "material_flush_purge_length description"
  5266. #~ msgid "Material Station internal value"
  5267. #~ msgstr "Material Station iç değeri"
  5268. #~ msgctxt "material_end_of_filament_purge_speed label"
  5269. #~ msgid "End Of Filament Purge Speed"
  5270. #~ msgstr "Filament Temizliği Bitiş Hızı"
  5271. #~ msgctxt "material_end_of_filament_purge_speed description"
  5272. #~ msgid "Material Station internal value"
  5273. #~ msgstr "Material Station iç değeri"
  5274. #~ msgctxt "material_end_of_filament_purge_length label"
  5275. #~ msgid "End Of Filament Purge Length"
  5276. #~ msgstr "Filament Temizliği Bitiş Uzunluğu"
  5277. #~ msgctxt "material_end_of_filament_purge_length description"
  5278. #~ msgid "Material Station internal value"
  5279. #~ msgstr "Material Station iç değeri"
  5280. #~ msgctxt "material_maximum_park_duration description"
  5281. #~ msgid "Material Station internal value"
  5282. #~ msgstr "Material Station iç değeri"
  5283. #~ msgctxt "material_no_load_move_factor description"
  5284. #~ msgid "Material Station internal value"
  5285. #~ msgstr "Material Station iç değeri"
  5286. #~ msgctxt "retraction_enable description"
  5287. #~ msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  5288. #~ msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker. "
  5289. #~ msgctxt "support_xy_distance_overhang description"
  5290. #~ msgid "Distance of the support structure from the overhang in the X/Y directions. "
  5291. #~ msgstr "Destek yapısının X/Y yönlerindeki çıkıntıya mesafesi. "
  5292. #~ msgctxt "meshfix description"
  5293. #~ msgid "category_fixes"
  5294. #~ msgstr "category_fixes"
  5295. #~ msgctxt "blackmagic description"
  5296. #~ msgid "category_blackmagic"
  5297. #~ msgstr "category_blackmagic"
  5298. #~ msgctxt "experimental description"
  5299. #~ msgid "experimental!"
  5300. #~ msgstr "deneysel!"
  5301. #~ msgctxt "machine_head_polygon label"
  5302. #~ msgid "Machine Head Polygon"
  5303. #~ msgstr "Makinenin Ana Poligonu"
  5304. #~ msgctxt "machine_head_polygon description"
  5305. #~ msgid "A 2D silhouette of the print head (fan caps excluded)."
  5306. #~ msgstr "Yazıcı başlığının 2B taslağı (fan başlıkları hariç)."
  5307. #~ msgctxt "print_sequence description"
  5308. #~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
  5309. #~ msgstr "Sıradakine geçmeden önce, tek seferde bir katmanla tüm modelleri yazdırmak veya bir modelin bitmesini beklemek. Teker teker modu sadece tüm modellerin, yazıcı başlığı aralarında hareket edecek şekilde veya aralarındaki mesafe X/Y aksları arasındaki mesafeden az olacak şekilde ayrıldığında kullanılabilir."
  5310. #~ msgctxt "support_tree_wall_thickness label"
  5311. #~ msgid "Tree Support Wall Thickness"
  5312. #~ msgstr "Ağaç Destek Duvarının Kalınlığı"
  5313. #~ msgctxt "support_tree_wall_thickness description"
  5314. #~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5315. #~ msgstr "Ağaç desteğin dallarında yer alan duvarların kalınlığı. Kalın duvarların basılması daha uzun sürer ancak kalın duvarlar kolay devrilmezler."
  5316. #~ msgctxt "support_tree_wall_count label"
  5317. #~ msgid "Tree Support Wall Line Count"
  5318. #~ msgstr "Ağaç Destek Duvarının Hat Sayısı"
  5319. #~ msgctxt "support_tree_wall_count description"
  5320. #~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5321. #~ msgstr "Ağaç desteğin dallarında yer alan duvarların sayısı. Kalın duvarların basılması daha uzun sürer ancak kalın duvarlar kolay devrilmezler."
  5322. #~ msgctxt "clean_between_layers description"
  5323. #~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  5324. #~ msgstr "Katmanlar arasına sürme nozülü G-code'unun dahil edilip edilmeyeceği. Bu ayarın etkinleştirilmesi katman değişiminde geri çekme davranışını etkileyebilir. Sürme komutunun çalıştığı katmanlarda geri çekmeyi kontrol etmek için lütfen Sürme Geri Çekme ayarlarını kullanın."
  5325. #~ msgctxt "max_extrusion_before_wipe description"
  5326. #~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
  5327. #~ msgstr "Başka bir sürme nozülü başlatılmadan önce ekstrude edilebilecek maksimum malzeme miktarı."
  5328. #~ msgctxt "wipe_retraction_prime_speed label"
  5329. #~ msgid "Retraction Prime Speed"
  5330. #~ msgstr "Geri Çekme Sırasındaki Astar Hızı"
  5331. #~ msgctxt "wipe_hop_enable label"
  5332. #~ msgid "Wipe Z Hop When Retracted"
  5333. #~ msgstr "Geri Çekildiğinde Sürme Z Sıçraması"
  5334. #~ msgctxt "wipe_hop_enable description"
  5335. #~ 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."
  5336. #~ msgstr "Bir geri çekme işlemi yapıldığında baskı tepsisi nozül ve baskı arasında açıklık oluşturmak üzere alçaltılır. Bu, hareket sırasında nozülün baskıya çarpmasını önleyerek baskının devrilip baskı tepsisinden düşmesini önler."
  5337. #~ msgctxt "minimum_interface_area description"
  5338. #~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
  5339. #~ msgstr "Destek arayüzü poligonları için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır."
  5340. #~ msgctxt "minimum_roof_area description"
  5341. #~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated."
  5342. #~ msgstr "Destek çatıları için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır."
  5343. #~ msgctxt "minimum_bottom_area description"
  5344. #~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated."
  5345. #~ msgstr "Destek zeminleri için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır."
  5346. #~ msgctxt "skin_alternate_rotation label"
  5347. #~ msgid "Alternate Skin Rotation"
  5348. #~ msgstr "Dış Katman Rotasyonunu Değiştir"
  5349. #~ msgctxt "skin_alternate_rotation description"
  5350. #~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions."
  5351. #~ msgstr "Üst/alt katmanların yazdırıldığı yönü değiştirin. Normal koşullarda sadece çapraz şekilde yazdırılırlar. Bu ayar sadece-X ve sadece-Y yönlerini ekler."
  5352. #~ msgctxt "flow_rate_max_extrusion_offset label"
  5353. #~ msgid "Flow rate compensation max extrusion offset"
  5354. #~ msgstr "Akış hızı dengelemesi maksimum ekstrüzyon kayması"
  5355. #~ msgctxt "flow_rate_max_extrusion_offset description"
  5356. #~ msgid "The maximum distance in mm to compensate."
  5357. #~ msgstr "Dengelenecek, mm cinsinden maksimum mesafe."
  5358. #~ msgctxt "flow_rate_extrusion_offset_factor label"
  5359. #~ msgid "Flow rate compensation factor"
  5360. #~ msgstr "Akış hızı dengeleme çarpanı"
  5361. #~ msgctxt "flow_rate_extrusion_offset_factor description"
  5362. #~ msgid "The multiplication factor for the flow rate -> distance translation."
  5363. #~ msgstr "Akış hızından -> mesafeye dönüştürme için çarpan."
  5364. #~ msgctxt "adaptive_layer_height_threshold label"
  5365. #~ msgid "Adaptive Layers Threshold"
  5366. #~ msgstr "Uyarlanabilir Katman Eşiği"
  5367. #~ msgctxt "adaptive_layer_height_threshold description"
  5368. #~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer."
  5369. #~ msgstr "Daha küçük bir katmanın kullanılıp kullanılmayacağını belirleyen eşik. Bu rakam bir katmandaki en dik eğimin tanjantına eşittir."
  5370. #~ msgctxt "wall_overhang_angle description"
  5371. #~ 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."
  5372. #~ msgstr "Bu açıdan daha fazla çıkıntı yapan duvarlar çıkıntılı duvar ayarları kullanılarak yazdırılacaktır. Değer 90 ise hiçbir duvar çıkıntılı kabul edilmeyecektir."
  5373. #~ msgctxt "small_feature_speed_factor description"
  5374. #~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5375. #~ 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."
  5376. #~ msgctxt "small_feature_speed_factor_0 label"
  5377. #~ msgid "First Layer Speed"
  5378. #~ msgstr "İlk Katman Hızı"
  5379. #~ msgctxt "small_feature_speed_factor_0 description"
  5380. #~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5381. #~ 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."
  5382. #~ msgctxt "ironing_enabled description"
  5383. #~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface."
  5384. #~ msgstr "Malzeme ekstrude edilmeden önce üst yüzey üzerinden bir kere daha geçilir. Bu işlem en üstte bulunan plastiği eriterek daha pürüzsüz bir yüzey elde etmek için kullanılır."
  5385. #~ msgctxt "start_layers_at_same_position label"
  5386. #~ msgid "Start Layers with the Same Part"
  5387. #~ msgstr "Katmanları Aynı Bölümle Başlatın"
  5388. #~ msgctxt "start_layers_at_same_position description"
  5389. #~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time."
  5390. #~ msgstr "Bir önceki katmanın bitirdiği bir parçayı yeni bir katmanla tekrar yazdırmamak için, her bir katmanda nesneyi yazdırmaya aynı noktanın yakınından başlayın. Bu şekilde daha iyi çıkıntılar ve küçük parçalar oluşturulur, ancak yazdırma süresi uzar."
  5391. #~ msgctxt "support_infill_angles description"
  5392. #~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane."
  5393. #~ msgstr "Destekler için dolgu şeklinin döndürülmesi. Destek dolgu şekli yatay düzlemde döndürülür."
  5394. #~ msgctxt "meshfix_maximum_deviation description"
  5395. #~ 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."
  5396. #~ msgstr "Maksimum Çözünürlük ayarı için çözünürlüğü azaltırken izin verilen maksimum sapma. Bunu arttırırsanız baskının doğruluğu azalacak fakat g-code daha küçük olacaktır."
  5397. #~ msgctxt "machine_gcode_flavor label"
  5398. #~ msgid "G-code Flavour"
  5399. #~ msgstr "G-code Türü"
  5400. #~ msgctxt "z_seam_corner description"
  5401. #~ 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."
  5402. #~ 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."
  5403. #~ msgctxt "skin_no_small_gaps_heuristic label"
  5404. #~ msgid "Ignore Small Z Gaps"
  5405. #~ msgstr "Küçük Z Açıklıklarını Yoksay"
  5406. #~ msgctxt "skin_no_small_gaps_heuristic description"
  5407. #~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting."
  5408. #~ msgstr "Modelde küçük dikey açıklıklar varsa bu dar yerlerdeki üst ve alt yüzeyleri oluşturmak için %5 oranında ek hesaplama süresi verilebilir. Bu gibi bir durumda ayarı devre dışı bırakın."
  5409. #~ msgctxt "build_volume_temperature description"
  5410. #~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted."
  5411. #~ msgstr "Yapı disk bölümü için kullanılan sıcaklık. Bu 0 olursa yapı disk bölümü sıcaklığı ayarlanmaz."
  5412. #~ msgctxt "limit_support_retractions description"
  5413. #~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure."
  5414. #~ msgstr "Düz çizgi üzerinde destekler arasında hareket ederken geri çekmeyi atla. Bu ayarın etkinleştirilmesi yazdırma süresi tasarrufu sağlar ancak destek yapısı içinde aşırı dizilime yol açabilir."
  5415. #~ msgctxt "max_feedrate_z_override label"
  5416. #~ msgid "Maximum Z Speed"
  5417. #~ msgstr "Maksimum Z Hızı"
  5418. #~ msgctxt "max_feedrate_z_override description"
  5419. #~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed."
  5420. #~ msgstr "Yapı levhasının hareket ettiği maksimum hız. Bu hızı 0’a ayarlamak yazdırmanın maksimum z hızı için aygıt yazılımı kullanmasına neden olur."
  5421. #~ msgctxt "support_join_distance description"
  5422. #~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one."
  5423. #~ msgstr "X/Y yönündeki destek yapıları arasındaki maksimum mesafe. Ayrı yapılar birbirlerine bu değerden daha yakınsa yapılar birleşip tek olur."
  5424. #~ msgctxt "support_minimal_diameter label"
  5425. #~ msgid "Minimum Diameter"
  5426. #~ msgstr "Minimum Çap"
  5427. #~ msgctxt "support_minimal_diameter description"
  5428. #~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  5429. #~ msgstr "Özel bir destek direği ile desteklenecek küçük bir alanın X/Y yönündeki minimum çapı."
  5430. #~ msgctxt "prime_tower_circular label"
  5431. #~ msgid "Circular Prime Tower"
  5432. #~ msgstr "Dairesel İlk Direk"
  5433. #~ msgctxt "prime_tower_circular description"
  5434. #~ msgid "Make the prime tower as a circular shape."
  5435. #~ msgstr "İlk direği dairesel bir şekil olarak yapın."
  5436. #~ msgctxt "prime_tower_flow description"
  5437. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  5438. #~ msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır."
  5439. #~ msgctxt "smooth_spiralized_contours description"
  5440. #~ 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."
  5441. #~ msgstr "Z dikişinin görünürlüğünü azaltmak için helezon şeklinde konturları düzeltin (Z-dikişi yazdırma durumunda çok az görünür olmalı, ancak tabaka görünümünde halen görünür olmalıdır). Düzeltme işleminin ince yüzey detaylarında bulanıklığa neden olabileceğini unutmayınız."
  5442. #~ msgctxt "support_conical_enabled description"
  5443. #~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang."
  5444. #~ msgstr "Deneysel Özellik: Destek alanlarını alt kısımlarda çıkıntılardakinden daha küçük yapar."
  5445. #~ msgctxt "extruders_enabled_count label"
  5446. #~ msgid "Number of Extruders that are enabled"
  5447. #~ msgstr "Etkinleştirilmiş Ekstruder sayısı"
  5448. #~ msgctxt "machine_nozzle_tip_outer_diameter label"
  5449. #~ msgid "Outer nozzle diameter"
  5450. #~ msgstr "Dış nozül çapı"
  5451. #~ msgctxt "machine_nozzle_head_distance label"
  5452. #~ msgid "Nozzle length"
  5453. #~ msgstr "Nozül uzunluğu"
  5454. #~ msgctxt "machine_nozzle_expansion_angle label"
  5455. #~ msgid "Nozzle angle"
  5456. #~ msgstr "Nozül açısı"
  5457. #~ msgctxt "machine_heat_zone_length label"
  5458. #~ msgid "Heat zone length"
  5459. #~ msgstr "Isı bölgesi uzunluğu"
  5460. #~ msgctxt "machine_nozzle_heat_up_speed label"
  5461. #~ msgid "Heat up speed"
  5462. #~ msgstr "Isınma hızı"
  5463. #~ msgctxt "machine_nozzle_cool_down_speed label"
  5464. #~ msgid "Cool down speed"
  5465. #~ msgstr "Soğuma hızı"
  5466. #~ msgctxt "machine_gcode_flavor label"
  5467. #~ msgid "G-code flavour"
  5468. #~ msgstr "G-code türü"
  5469. #~ msgctxt "machine_disallowed_areas label"
  5470. #~ msgid "Disallowed areas"
  5471. #~ msgstr "İzin verilmeyen alanlar"
  5472. #~ msgctxt "machine_head_polygon label"
  5473. #~ msgid "Machine head polygon"
  5474. #~ msgstr "Makinenin ana poligonu"
  5475. #~ msgctxt "machine_head_with_fans_polygon label"
  5476. #~ msgid "Machine head & Fan polygon"
  5477. #~ msgstr "Makinenin başlığı ve Fan poligonu"
  5478. #~ msgctxt "gantry_height label"
  5479. #~ msgid "Gantry height"
  5480. #~ msgstr "Portal yüksekliği"
  5481. #~ msgctxt "machine_use_extruder_offset_to_offset_coords label"
  5482. #~ msgid "Offset With Extruder"
  5483. #~ msgstr "Ekstruder Ofseti"
  5484. #~ msgctxt "adaptive_layer_height_enabled label"
  5485. #~ msgid "Use adaptive layers"
  5486. #~ msgstr "Uyarlanabilir Katmanların Kullanımı"
  5487. #~ msgctxt "adaptive_layer_height_variation label"
  5488. #~ msgid "Adaptive layers maximum variation"
  5489. #~ msgstr "Uyarlanabilir katmanların azami değişkenliği"
  5490. #~ msgctxt "adaptive_layer_height_variation_step label"
  5491. #~ msgid "Adaptive layers variation step size"
  5492. #~ msgstr "Uyarlanabilir katmanların değişkenlik adım boyu"
  5493. #~ msgctxt "adaptive_layer_height_threshold label"
  5494. #~ msgid "Adaptive layers threshold"
  5495. #~ msgstr "Uyarlanabilir katman eşiği"
  5496. #~ msgctxt "skin_overlap description"
  5497. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  5498. #~ msgstr "Yüzey hattı genişliğinin yüzdesi olarak yüzey ve duvar çakışmasının miktarı. Ufak bir çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Bu, yüzey ve en iç duvar hat eninin ortalama yüzdesidir."
  5499. #~ msgctxt "skin_overlap_mm description"
  5500. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  5501. #~ msgstr "Yüzey ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların yüzeye sıkıca bağlanmasını sağlar."
  5502. #~ msgctxt "switch_extruder_retraction_amount description"
  5503. #~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  5504. #~ msgstr "Geri çekme miktarı: Hiçbir geri çekme yapılmaması için 0’a ayarlayın. Bu genellikle ısı bölgesi uzunluğu ile aynıdır."
  5505. #~ msgctxt "retraction_combing description"
  5506. #~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases."
  5507. #~ msgstr "Tarama, hareket sırasında nozülü daha önce yazdırılmış alanlarda tutar. Bu durum hareketleri biraz uzatır ancak geri çekme ihtiyacını azaltır. Tarama kapalıysa materyal geri çekilecektir, nozül de bir sonraki noktaya düz bir çizgi üzerinden gider. Üst/alt yüzey alanlarının üzerinde tarama yapmayarak sadece dolgu içerisinde tarama yapılabilir. “Dolgu İçinde” seçeneğinin daha önceki Cura sürümlerinde bulunan “Yüzey Alanında Değil” seçeneğiyle tamamen aynı davranışı gösterdiğini unutmayın."
  5508. #~ msgctxt "connect_skin_polygons description"
  5509. #~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality."
  5510. #~ 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."
  5511. #~ msgctxt "infill_pattern description"
  5512. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5513. #~ msgstr "Baskının dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, üçlü altıgen, kübik, sekizlik, çeyrek kübik, çapraz ve eşmerkezli şekiller, her katmana tam olarak basılır. Kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir."
  5514. #~ msgctxt "infill_pattern option concentric_3d"
  5515. #~ msgid "Concentric 3D"
  5516. #~ msgstr "Eş merkezli 3D"
  5517. #~ msgctxt "retraction_combing description"
  5518. #~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only."
  5519. #~ msgstr "Tarama, hareket sırasında nozülü halihazırda yazdırılmış bölgelerde tutar. Bu şekilde biraz daha uzun hareket hamleleri sağlarken geri çekme ihtiyacını azaltır. Tarama kapatıldığında, malzeme geri çekilecek ve nozül bir sonraki noktaya kadar düz bir çizgide hareket edecektir. Sadece dolgunun taratılmasıyla üst/alt yüzey bölgelerinde taramanın engellenmesi de mümkündür."
  5520. #~ msgctxt "support_pattern option concentric_3d"
  5521. #~ msgid "Concentric 3D"
  5522. #~ msgstr "Eş merkezli 3D"
  5523. #~ msgctxt "support_interface_pattern option concentric_3d"
  5524. #~ msgid "Concentric 3D"
  5525. #~ msgstr "Eş merkezli 3D"
  5526. #~ msgctxt "support_roof_pattern option concentric_3d"
  5527. #~ msgid "Concentric 3D"
  5528. #~ msgstr "Eş Merkezli 3D"
  5529. #~ msgctxt "support_bottom_pattern option concentric_3d"
  5530. #~ msgid "Concentric 3D"
  5531. #~ msgstr "Eş Merkezli 3D"
  5532. #~ msgctxt "raft_base_line_spacing label"
  5533. #~ msgid "Raft Line Spacing"
  5534. #~ msgstr "Radye Hat Boşluğu"
  5535. #~ msgctxt "prime_tower_wall_thickness label"
  5536. #~ msgid "Prime Tower Thickness"
  5537. #~ msgstr "İlk Direğin Kalınlığı"
  5538. #~ msgctxt "prime_tower_wall_thickness description"
  5539. #~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower."
  5540. #~ msgstr "Boş olan ilk direğin kalınlığı Kalınlığın Minimum İlk Direk Hacminin yarısından fazla olması ilk direğin yoğun olmasına neden olur."
  5541. #~ msgctxt "dual_pre_wipe label"
  5542. #~ msgid "Wipe Nozzle After Switch"
  5543. #~ msgstr "Değişimden Sonra Sürme Nozülü"
  5544. #~ msgctxt "dual_pre_wipe description"
  5545. #~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print."
  5546. #~ msgstr "Ekstruderi değiştirdikten sonra ilk nesne yazdırıldığında nozülden sızan malzemeyi temizleyin. Bu, sızdırılan malzemenin yazdırmanın yüzey kalitesine en az zarar verdiği yerlerde güvenli ve yavaş bir temizleme hareketi gerçekleştirir."
  5547. #~ msgctxt "prime_tower_purge_volume label"
  5548. #~ msgid "Prime Tower Purge Volume"
  5549. #~ msgstr "İlk Direk Temizleme Hacmi"
  5550. #~ msgctxt "prime_tower_purge_volume description"
  5551. #~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle."
  5552. #~ msgstr "İlk direk silinirken temizlenecek olan filaman miktarı. Temizleme işlemi, nozül aktif değilken sızarak kaybolan filamanı dengelemeye yarar."
  5553. #~ msgctxt "bridge_wall_max_overhang label"
  5554. #~ msgid "Bridge Wall Max Overhang"
  5555. #~ msgstr "Köprü Duvarı Maksimum Çıkıntısı"
  5556. #~ msgctxt "bridge_wall_max_overhang description"
  5557. #~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings."
  5558. #~ msgstr "Bir duvar, köprü ayarları kullanılarak yazdırılmadan önce o duvar çizgisinin altındaki hava bölgesinin maksimum izin verilen genişliği. Duvar çizgisi genişliğinin bir yüzdesi olarak ifade edilir. Hava boşluğu bundan daha geniş olduğunda, duvar çizgisi köprü ayarları kullanılarak yazdırılır. Aksi halde duvar çizgisi normal ayarlar kullanılarak yazdırılır. Değer ne kadar düşük olursa, çıkıntı yapan duvar çizgilerinin köprü ayarları kullanılarak yazdırılması ihtimali o kadar yüksek olur."
  5559. #~ msgctxt "optimize_wall_printing_order description"
  5560. #~ 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."
  5561. #~ msgstr "Geri çekmelerin sayısını ve kat edilen mesafeyi azaltmak için duvarların yazdırıldığı sırayı optimize edin. Çoğu parça, bunun etkinleştirilmesinden yararlanır, ancak bazılarının yararlanması için gerçekte daha uzun bir süre gerekebilir. Bu yüzden, yazdırma süresi tahminlerini optimizasyonlu ve optimizasyonsuz olarak karşılaştırın."
  5562. #~ msgctxt "retraction_combing option noskin"
  5563. #~ msgid "No Skin"
  5564. #~ msgstr "Yüzey yok"
  5565. #~ msgctxt "cross_infill_apply_pockets_alternatingly label"
  5566. #~ msgid "Alternate Cross 3D Pockets"
  5567. #~ msgstr "Çapraz 3D Cepleri Değiştir"
  5568. #~ msgctxt "cross_infill_apply_pockets_alternatingly description"
  5569. #~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself."
  5570. #~ msgstr "Cepleri sadece çapraz 3D şekildeki dört yönlü kesişme yerlerinin yarısında uygulayın ve şeklin kendisine temas ettiği yüksekliklerin arasında ceplerin yerini değiştirin."
  5571. #~ msgctxt "infill_hollow label"
  5572. #~ msgid "Hollow Out Objects"
  5573. #~ msgstr "Nesnelerin Oyulması"
  5574. #~ msgctxt "infill_hollow description"
  5575. #~ msgid "Remove all infill and make the inside of the object eligible for support."
  5576. #~ msgstr "Tüm dolgu malzemesini kaldırın ve nesnenin içini destek için uygun hale getirin."
  5577. #~ msgctxt "adaptive_layer_height_variation description"
  5578. #~ msgid "The maximum allowed height different from the base layer height in mm."
  5579. #~ msgstr "Mm bazında taban katmanı yüksekliğine göre izin verilen azami yükseklik."
  5580. #~ msgctxt "center_object label"
  5581. #~ msgid "Center object"
  5582. #~ msgstr "Nesneyi ortalayın"
  5583. #~ msgctxt "mesh_position_x label"
  5584. #~ msgid "Mesh position x"
  5585. #~ msgstr "Bileşim konumu x"
  5586. #~ msgctxt "mesh_position_y label"
  5587. #~ msgid "Mesh position y"
  5588. #~ msgstr "Bileşim konumu y"
  5589. #~ msgctxt "mesh_position_z label"
  5590. #~ msgid "Mesh position z"
  5591. #~ msgstr "Bileşim konumu z"
  5592. #~ msgctxt "machine_start_gcode label"
  5593. #~ msgid "Start GCode"
  5594. #~ msgstr "G-Code'u başlat"
  5595. #~ msgctxt "machine_start_gcode description"
  5596. #~ msgid ""
  5597. #~ "Gcode commands to be executed at the very start - separated by \n"
  5598. #~ "."
  5599. #~ msgstr ""
  5600. #~ "​\n"
  5601. #~ " ile ayrılan, başlangıçta yürütülecek G-code komutları."
  5602. #~ msgctxt "machine_end_gcode label"
  5603. #~ msgid "End GCode"
  5604. #~ msgstr "G-Code'u sonlandır"
  5605. #~ msgctxt "machine_end_gcode description"
  5606. #~ msgid ""
  5607. #~ "Gcode commands to be executed at the very end - separated by \n"
  5608. #~ "."
  5609. #~ msgstr ""
  5610. #~ "​\n"
  5611. #~ " ile ayrılan, bitişte yürütülecek Gcode komutları."
  5612. #~ msgctxt "machine_gcode_flavor label"
  5613. #~ msgid "Gcode flavour"
  5614. #~ msgstr "GCode türü"
  5615. #~ msgctxt "machine_gcode_flavor description"
  5616. #~ msgid "The type of gcode to be generated."
  5617. #~ msgstr "Oluşturulacak gcode türü."
  5618. #~ msgctxt "meshfix_keep_open_polygons description"
  5619. #~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode."
  5620. #~ msgstr "Normal koşullarda, Cura ağdaki küçük boşlukları diker ve büyük boşluklu katman parçalarını ortadan kaldırır. Bu seçeneği etkinleştirmek, dikilemeyen parçaları muhafaza eder. Bu seçenek, hiçbir işlemin uygun bir GCode oluşturamaması durumunda başvurulacak son seçenek olarak kullanılmalıdır."
  5621. #~ msgctxt "relative_extrusion description"
  5622. #~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output."
  5623. #~ msgstr "Mutlak ekstrüzyon yerine bağıl ekstrüzyon uygulayın. Bağıl E-adımlarının uygulanması, Gcode’un sonradan işlenmesini kolaylaştırır. Ancak bu, tüm yazıcılar tarafından desteklenmemektedir ve mutlak E-adımları ile karşılaştırıldığında birikmiş malzemenin miktarında hafif farklılıklar yaratabilir. Bu ayara bakılmaksızın, herhangi bir Gcode komut dosyası çıkartılmadan önce ekstrüzyon modu her zaman mutlak değere ayarlı olacaktır."
  5624. #~ msgctxt "infill_offset_x description"
  5625. #~ msgid "The infill pattern is offset this distance along the X axis."
  5626. #~ msgstr "Dolgu şekli X ekseni boyunca bu mesafe kadar kaydırılır."
  5627. #~ msgctxt "infill_offset_y description"
  5628. #~ msgid "The infill pattern is offset this distance along the Y axis."
  5629. #~ msgstr "Dolgu şekli Y ekseni boyunca bu mesafe kadar kaydırılır."
  5630. #~ msgctxt "infill_overlap description"
  5631. #~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  5632. #~ msgstr "Dolgu ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar."
  5633. #~ msgctxt "skin_overlap description"
  5634. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  5635. #~ msgstr "Hat genişliğinin bir yüzdesi olarak yüzey ve duvarlar arasındaki çakışma miktarı. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Bu, yüzey hatlarının ve en içteki duvarın ortalama hat genişliklerinin bir yüzdesidir."
  5636. #~ msgctxt "material_bed_temperature description"
  5637. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print."
  5638. #~ msgstr "Isınan yapı levhası için kullanılan sıcaklık. Bu ayar 0 olursa bu yazdırma için yatak ısıtılmaz."
  5639. #~ msgctxt "wall_x_extruder_nr label"
  5640. #~ msgid "Inner Walls Extruder"
  5641. #~ msgstr "İç Duvar Ekstruderi"
  5642. #~ msgctxt "infill_pattern description"
  5643. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5644. #~ msgstr "Yazdırma dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, kübik, sekizlik, çeyrek kübik ve eş merkezli şekiller, her katmanda tam olarak yazdırılır. Kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir."
  5645. #~ msgctxt "zig_zaggify_infill description"
  5646. #~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  5647. #~ msgstr "İç duvarın şeklini takip eden bir hattı kullanarak, dolgu şeklinin iç duvarla buluştuğu noktada uçları bağlayın. Bu ayarın etkinleştirilmesi, dolgunun duvarlara daha iyi yapışmasını sağlayabilir ve dolgunun dikey yüzeylerin kalitesi üzerindeki etkilerini azaltır. Bu ayarın devre dışı bırakılması, kullanılan malzemenin miktarını azaltır."
  5648. #~ msgctxt "skirt_gap description"
  5649. #~ msgid ""
  5650. #~ "The horizontal distance between the skirt and the first layer of the print.\n"
  5651. #~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance."
  5652. #~ msgstr ""
  5653. #~ "Etek ve baskının ilk katmanı arasındaki yatay mesafe.\n"
  5654. #~ "Bu minimum mesafedir ve çoklu etek hatları bu mesafeden dışa doğru genişleyecektir."
  5655. #~ msgctxt "z_offset_layer_0 label"
  5656. #~ msgid "Initial Layer Z Offset"
  5657. #~ msgstr "İlk Katman Z Ofseti"
  5658. #~ msgctxt "z_offset_layer_0 description"
  5659. #~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly."
  5660. #~ msgstr "Ekstrüder, birinci katmanın normal yüksekliğinden bu miktarda mesafe bırakılır. Negatif (yükseltilmiş) veya pozitif (alçaltılmış) olabilir. Ekstrüderin hafifçe yükseltilmesi durumunda, bazı filaman türleri yapı levhasına daha iyi yapışır."
  5661. #~ msgctxt "z_offset_taper_layers label"
  5662. #~ msgid "Z Offset Taper Layers"
  5663. #~ msgstr "Z Ofseti Konik Katmanları"
  5664. #~ msgctxt "z_offset_taper_layers description"
  5665. #~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print."
  5666. #~ msgstr "Sıfır olmadığında, Z ofseti birçok katman üzerinde 0’a düşürülür. 0 değeri, Z ofsetinin yazdırmada yer alan tüm katmanlarda sabit kalması anlamına gelir."
  5667. #~ msgctxt "raft_smoothing description"
  5668. #~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  5669. #~ msgstr "Bu ayar, radye ana hattında yer alan iç köşelerin ne kadar yuvarlandığını kontrol eder. İç köşeler, burada belirtilen değere eşit yarıçapa sahip yarım daire şeklinde yuvarlanır. Ayrıca bu ayar, söz konusu daireden daha küçük olan radye ana hattındaki delikleri ortadan kaldırır."
  5670. #~ msgctxt "infill_pattern description"
  5671. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction."
  5672. #~ msgstr "Yazdırma dolgu malzemesinin şekli. Hat ve zik zak dolguları alternatif katmanlarda yön değiştirerek malzeme masrafını azaltır Izgara, üçgen, kübik, dört yüzlü ve eş merkezli desenler her katmanda tamamıyla yazdırılır. Her yönde daha eşit dayanıklılık dağılımı sağlamak için küp ve dört yüzlü dolgular her katmanda değişir."
  5673. #~ msgctxt "infill_pattern option tetrahedral"
  5674. #~ msgid "Tetrahedral"
  5675. #~ msgstr "Dört yüzlü"
  5676. #~ msgctxt "expand_skins_into_infill label"
  5677. #~ msgid "Expand Skins Into Infill"
  5678. #~ msgstr "Yüzeyleri Dolguya Genişlet"
  5679. #~ msgctxt "expand_skins_into_infill description"
  5680. #~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin."
  5681. #~ msgstr "Düz zeminlerin üst ve/veya alt yüzeylerinin yüzey alanlarını genişletin. Varsayılan olarak yüzeyler dolguyu çevreleyen duvar çizgilerinin altında sona erer. Ancak bu ayar, dolgu yoğunluğu düşük olduğunda deliklerin görünmesine neden olur. Bu ayar, yüzeyleri duvar çizgisinin ötesine genişleterek sonraki katmandaki dolgunun yüzeye dayanmasını sağlar."
  5682. #~ msgctxt "expand_upper_skins label"
  5683. #~ msgid "Expand Top Skins Into Infill"
  5684. #~ msgstr "Üst Yüzey Alanını Dolguya Genişlet"
  5685. #~ msgctxt "expand_upper_skins description"
  5686. #~ msgid "Expand the top skin areas (areas with air above) so that they support infill above."
  5687. #~ msgstr "Dolguyu yukarıdan desteklemeleri için üst yüzey alanlarını (üzerinde hava bulunan alanları) genişletin."
  5688. #~ msgctxt "expand_lower_skins label"
  5689. #~ msgid "Expand Bottom Skins Into Infill"
  5690. #~ msgstr "Alt Yüzey Alanını Dolguya Genişlet"
  5691. #~ msgctxt "expand_lower_skins description"
  5692. #~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  5693. #~ msgstr "Dolgu katmanlarını yukarıdan ve aşağıdan desteklemeleri için alt yüzey alanlarını (altında hava bulunan alanları) genişletin."
  5694. #~ msgctxt "expand_skins_expand_distance description"
  5695. #~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient."
  5696. #~ msgstr "Yüzeylerin dolguya doğru genişleyeceği mesafe. Varsayılan mesafe dolgu hatları arasındaki boşluğu kapatmaya yeterlidir ve dolgu yoğunluğu düşük olduğunda yüzeyin duvara temas ettiği kısımlarda oluşan delikleri önler. Küçük bir mesafe genellikle yeterli olur."
  5697. #~ msgctxt "support_skip_some_zags label"
  5698. #~ msgid "Skip Some ZigZags Connections"
  5699. #~ msgstr "Bazı Zikzak Bağlantılarını Atla"
  5700. #~ msgctxt "support_skip_some_zags description"
  5701. #~ msgid "Skip some ZigZags connections to make the support structure easier to break."
  5702. #~ msgstr "Destek yapısının daha kolay kırılması için bazı Zikzak bağlantılarını atlayın."
  5703. #~ msgctxt "support_zag_skip_count label"
  5704. #~ msgid "ZigZag Connection Skip Count"
  5705. #~ msgstr "Atlanan Zikzak Bağlantısı Sayısı"
  5706. #~ msgctxt "support_zag_skip_count description"
  5707. #~ msgid "Skip one in every N connection lines to make the support structure easier to break."
  5708. #~ msgstr "Destek yapısının daha kolay kırılması için her N bağlantı hattında bir zikzak atlayın."
  5709. #~ msgctxt "machine_show_variants label"
  5710. #~ msgid "Show machine variants"
  5711. #~ msgstr "Makine varyantlarını göster"
  5712. #~ msgctxt "material_bed_temp_wait label"
  5713. #~ msgid "Wait for build plate heatup"
  5714. #~ msgstr "Yapı levhasının ısınmasını bekle"
  5715. #~ msgctxt "material_print_temp_wait label"
  5716. #~ msgid "Wait for nozzle heatup"
  5717. #~ msgstr "Nozülün ısınmasını bekle"
  5718. #~ msgctxt "material_print_temp_prepend label"
  5719. #~ msgid "Include material temperatures"
  5720. #~ msgstr "Malzeme sıcaklıkları ekleme"
  5721. #~ msgctxt "material_bed_temp_prepend label"
  5722. #~ msgid "Include build plate temperature"
  5723. #~ msgstr "Yapı levhası sıcaklığı ekle"
  5724. #~ msgctxt "machine_width label"
  5725. #~ msgid "Machine width"
  5726. #~ msgstr "Makine genişliği"
  5727. #~ msgctxt "machine_depth label"
  5728. #~ msgid "Machine depth"
  5729. #~ msgstr "Makine derinliği"
  5730. #~ msgctxt "machine_shape label"
  5731. #~ msgid "Build plate shape"
  5732. #~ msgstr "Yapı levhası şekli"
  5733. #~ msgctxt "machine_height label"
  5734. #~ msgid "Machine height"
  5735. #~ msgstr "Makine yüksekliği"
  5736. #~ msgctxt "machine_heated_bed label"
  5737. #~ msgid "Has heated build plate"
  5738. #~ msgstr "Yapı levhası ısıtıldı"
  5739. #~ msgctxt "machine_center_is_zero label"
  5740. #~ msgid "Is center origin"
  5741. #~ msgstr "Merkez nokta"
  5742. #~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  5743. #~ msgid "RepRap (Marlin/Sprinter)"
  5744. #~ msgstr "RepRap (Marlin/Sprinter)"
  5745. #~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)"
  5746. #~ msgid "RepRap (Volumetric)"
  5747. #~ msgstr "RepRap (Volumetric)"
  5748. #~ msgctxt "wall_thickness description"
  5749. #~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  5750. #~ msgstr "Dış duvarların yatay istikametteki kalınlığı. Duvar hattı genişliği ile ayrılan bu değer duvar sayısını belirtir."
  5751. #~ msgctxt "skin_overlap description"
  5752. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  5753. #~ msgstr "Yüzey ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların yüzeye sıkıca bağlanmasını sağlar."
  5754. #~ msgctxt "support_interface_line_width description"
  5755. #~ msgid "Width of a single support interface line."
  5756. #~ msgstr "Tek bir destek arayüz hattının genişliği."
  5757. #~ msgctxt "sub_div_rad_mult label"
  5758. #~ msgid "Cubic Subdivision Radius"
  5759. #~ msgstr "Kübik Alt Bölüm Yarıçapı"
  5760. #~ msgctxt "sub_div_rad_mult description"
  5761. #~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes."
  5762. #~ msgstr "Bu küpün bölünüp bölünmemesine karar vermek için modelin sınırını kontrol eden ve her bir küpün merkezinden alınan yarıçaptaki çarpan. Büyük değerler, daha küçük küpler gibi daha fazla alt bölüm oluşmasına neden olur."
  5763. #~ msgctxt "expand_upper_skins label"
  5764. #~ msgid "Expand Upper Skins"
  5765. #~ msgstr "Üst Yüzeyleri Genişlet"
  5766. #~ msgctxt "expand_upper_skins description"
  5767. #~ msgid "Expand upper skin areas (areas with air above) so that they support infill above."
  5768. #~ msgstr "Üst yüzey alanlarını (üzerinde hava bulunan alanları), üstteki dolguyu destekleyecek şekilde genişletin."
  5769. #~ msgctxt "expand_lower_skins label"
  5770. #~ msgid "Expand Lower Skins"
  5771. #~ msgstr "Alt Yüzeyleri Genişlet"
  5772. #~ msgctxt "expand_lower_skins description"
  5773. #~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  5774. #~ msgstr "Alt yüzey alanlarını (altında hava bulunan alanları), üstteki ve alttaki dolgu katmanlarıyla sabitlenecek şekilde genişletin."
  5775. #~ msgctxt "speed_support_interface description"
  5776. #~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality."
  5777. #~ msgstr "Destek tavan ve tabanının yazdırıldığı hız. Bunları daha düşük hızda yazdırmak çıkıntı kalitesini artırabilir."
  5778. #~ msgctxt "acceleration_support_interface description"
  5779. #~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality."
  5780. #~ msgstr "Destek tavanı ve tabanının yazdırıldığı ivme. Bunları daha düşük ivmelerde yazdırmak çıkıntı kalitesini artırabilir."
  5781. #~ msgctxt "jerk_support_interface description"
  5782. #~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed."
  5783. #~ msgstr "Desteğin tavan ve tabanlarının yazdırıldığı maksimum anlık hız değişimi."
  5784. #~ msgctxt "support_enable label"
  5785. #~ msgid "Enable Support"
  5786. #~ msgstr "Desteği etkinleştir"
  5787. #~ msgctxt "support_enable description"
  5788. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  5789. #~ msgstr "Destek yapılarını etkinleştir. Bu yapılar sert çıkıntıları olan model parçalarını destekler."
  5790. #~ msgctxt "support_interface_extruder_nr description"
  5791. #~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion."
  5792. #~ msgstr "Destek dolgusunun tavan ve tabanları için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır."
  5793. #~ msgctxt "support_bottom_stair_step_height description"
  5794. #~ 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."
  5795. #~ msgstr "Model üzerindeki desteğin merdivene benzeyen alt kısmındaki basamakların yüksekliği. Düşük bir değer desteğin çıkarılmasını zorlaştırırken yüksek değerler destek yapılarının sağlam olmamasına neden olabilir."
  5796. #~ msgctxt "support_bottom_height label"
  5797. #~ msgid "Support Bottom Thickness"
  5798. #~ msgstr "Destek Taban Kalınlığı"
  5799. #~ msgctxt "support_bottom_height description"
  5800. #~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests."
  5801. #~ msgstr "Destek tabanlarının kalınlığı. Desteğin bulunduğu modelin üst kısımlarına yazdırılan yoğun katmanların sayısını kontrol eder."
  5802. #~ msgctxt "support_interface_skip_height description"
  5803. #~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
  5804. #~ msgstr "Destek üzerinde modelin olduğu yeri kontrol ederken belirtilen yükselin adımlarını izleyin. Daha yüksek değerler, destek arayüzü olması gereken yerlerde yazdırılacak normal destek oluştururken daha düşük değerler daha yavaş dilimler."
  5805. #~ msgctxt "support_interface_density description"
  5806. #~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  5807. #~ msgstr "Destek yapısının tavan ve tabanlarının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken desteklerin kaldırılmasını zorlaştırır."
  5808. #~ msgctxt "support_interface_line_distance label"
  5809. #~ msgid "Support Interface Line Distance"
  5810. #~ msgstr "Destek Arayüz Hattı Mesafesi"
  5811. #~ msgctxt "support_interface_line_distance description"
  5812. #~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately."
  5813. #~ msgstr "Yazdırılan destek arayüz hatları arasındaki mesafe. Bu ayar, Destek Arayüz Yoğunluğu ile hesaplanır ama ayrı ayrı ayarlanabilir."
  5814. #~ msgctxt "magic_spiralize description"
  5815. #~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions."
  5816. #~ msgstr "Dış kenarın Z hareketini pürüzsüzleştirir. Bu şekilde yazdırma boyunca sabit bir Z artışı oluşur. Bu özellik, katı bir modeli katı bir tabanı olan tek duvarlı bir modele dönüştürür. Özellik, diğer sürümlerde Joris olarak adlandırılmıştır."
  5817. #~ msgctxt "material_print_temperature description"
  5818. #~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually."
  5819. #~ msgstr "Yazdırma için kullanılan sıcaklık. Yazıcıyı elle önceden ısıtmak için 0’a ayarlayın."
  5820. #~ msgctxt "material_bed_temperature description"
  5821. #~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually."
  5822. #~ msgstr "Isınan yapı levhası için kullanılan sıcaklık. Yazıcıyı elle önceden ısıtmak için 0’a ayarlayın."
  5823. #~ msgctxt "support_z_distance description"
  5824. #~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height."
  5825. #~ msgstr "Yazdırılacak destek yapısının üstüne/altına olan mesafe Bu boşluk, model yazdırıldıktan sonra destekleri kaldırmak için açıklık sağlar. Bu değer katman yüksekliğinin üst katına yuvarlanır."
  5826. #~ msgctxt "z_seam_type option back"
  5827. #~ msgid "Back"
  5828. #~ msgstr "Arka"
  5829. #~ msgctxt "multiple_mesh_overlap label"
  5830. #~ msgid "Dual Extrusion Overlap"
  5831. #~ msgstr "İkili Ekstrüzyon Çakışması"