cura.po 232 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060
  1. # Cura
  2. # Copyright (C) 2022 UltiMaker.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ultimaker <plugins@ultimaker.com>, 2022.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2023-01-31 17:37+0100\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "Language: tr_TR\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  20. #: cura/API/Account.py:199
  21. msgctxt "@info:title"
  22. msgid "Login failed"
  23. msgstr "Giriş başarısız"
  24. #: cura/Arranging/ArrangeObjectsJob.py:25
  25. msgctxt "@info:status"
  26. msgid "Finding new location for objects"
  27. msgstr "Nesneler için yeni konum bulunuyor"
  28. #: cura/Arranging/ArrangeObjectsJob.py:29
  29. msgctxt "@info:title"
  30. msgid "Finding Location"
  31. msgstr "Konumu Buluyor"
  32. #: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99
  33. msgctxt "@info:status"
  34. msgid "Unable to find a location within the build volume for all objects"
  35. msgstr "Yapılan hacim içinde tüm nesneler için konum bulunamadı"
  36. #: cura/Arranging/ArrangeObjectsJob.py:43
  37. msgctxt "@info:title"
  38. msgid "Can't Find Location"
  39. msgstr "Konum Bulunamıyor"
  40. #: cura/Backups/Backup.py:115
  41. msgctxt "@info:backup_failed"
  42. msgid "Could not create archive from user data directory: {}"
  43. msgstr "Kullanıcı veri dizininden arşiv oluşturulamadı: {}"
  44. #: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159
  45. #: plugins/CuraDrive/src/DrivePluginExtension.py:118
  46. #: plugins/CuraDrive/src/DrivePluginExtension.py:126
  47. msgctxt "@info:title"
  48. msgid "Backup"
  49. msgstr "Yedekle"
  50. #: cura/Backups/Backup.py:134
  51. msgctxt "@info:backup_failed"
  52. msgid "Tried to restore a Cura backup without having proper data or meta data."
  53. msgstr "Uygun veri veya meta veri olmadan Cura yedeği geri yüklenmeye çalışıldı."
  54. #: cura/Backups/Backup.py:145
  55. msgctxt "@info:backup_failed"
  56. msgid "Tried to restore a Cura backup that is higher than the current version."
  57. msgstr "Geçerli sürümünüzden yüksek bir sürüme sahip bir Cura yedeği geri yüklenmeye çalışıldı."
  58. #: cura/Backups/Backup.py:158
  59. msgctxt "@info:backup_failed"
  60. msgid "The following error occurred while trying to restore a Cura backup:"
  61. msgstr "Cura yedeklemesi geri yüklenmeye çalışılırken aşağıdaki hata oluştu:"
  62. #: cura/BuildVolume.py:100
  63. msgctxt "@info:status"
  64. msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
  65. msgstr "Portalın yazdırılan modeller ile çarpışmasını önlemek için yapı hacmi yüksekliği “Sıralamayı Yazdır” ayarı nedeniyle azaltıldı."
  66. #: cura/BuildVolume.py:103
  67. msgctxt "@info:title"
  68. msgid "Build Volume"
  69. msgstr "Yapı Disk Bölümü"
  70. #: cura/CrashHandler.py:107
  71. msgctxt "@title:window"
  72. msgid "Cura can't start"
  73. msgstr "Cura başlatılamıyor"
  74. #: cura/CrashHandler.py:113
  75. #, fuzzy
  76. msgctxt "@label crash message"
  77. msgid ""
  78. "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n"
  79. " <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n"
  80. " <p>Backups can be found in the configuration folder.</p>\n"
  81. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  82. " "
  83. msgstr ""
  84. "<p><b>UltiMaker Cura doğru görünmeyen bir şeyle karşılaştı.</p></b>\n"
  85. " <p>Başlatma esnasında kurtarılamaz bir hata ile karşılaştık. Muhtemelen bazı hatalı yapılandırma dosyalarından kaynaklanıyordu. Yapılandırmanızı yedekleyip sıfırlamanızı öneriyoruz.</p>\n"
  86. " <p>Yedekler yapılandırma klasöründe bulunabilir.</p>\n"
  87. " <p>Sorunu düzeltmek için lütfen bu Çökme Raporunu bize gönderin.</p>\n"
  88. " "
  89. #: cura/CrashHandler.py:122
  90. msgctxt "@action:button"
  91. msgid "Send crash report to UltiMaker"
  92. msgstr "Çökme raporunu UltiMaker’a gönder"
  93. #: cura/CrashHandler.py:125
  94. msgctxt "@action:button"
  95. msgid "Show detailed crash report"
  96. msgstr "Ayrıntılı çökme raporu göster"
  97. #: cura/CrashHandler.py:129
  98. msgctxt "@action:button"
  99. msgid "Show configuration folder"
  100. msgstr "Yapılandırma Klasörünü Göster"
  101. #: cura/CrashHandler.py:140
  102. msgctxt "@action:button"
  103. msgid "Backup and Reset Configuration"
  104. msgstr "Yapılandırmayı Yedekle ve Sıfırla"
  105. #: cura/CrashHandler.py:171
  106. msgctxt "@title:window"
  107. msgid "Crash Report"
  108. msgstr "Çökme Raporu"
  109. #: cura/CrashHandler.py:190
  110. msgctxt "@label crash message"
  111. msgid ""
  112. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  113. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  114. " "
  115. msgstr ""
  116. "<p><b>Cura’da onarılamaz bir hata oluştu. Lütfen sorunu çözmek için bize Çökme Raporunu gönderin</p></b>\n"
  117. " <p>Sunucularımıza otomatik olarak bir hata raporu yüklemek için lütfen &quot;Rapor gönder&quot; düğmesini kullanın</p>\n"
  118. " "
  119. #: cura/CrashHandler.py:198
  120. msgctxt "@title:groupbox"
  121. msgid "System information"
  122. msgstr "Sistem bilgileri"
  123. #: cura/CrashHandler.py:207
  124. msgctxt "@label unknown version of Cura"
  125. msgid "Unknown"
  126. msgstr "Bilinmiyor"
  127. #: cura/CrashHandler.py:228
  128. msgctxt "@label Cura version number"
  129. msgid "Cura version"
  130. msgstr "Cura sürümü"
  131. #: cura/CrashHandler.py:229
  132. msgctxt "@label"
  133. msgid "Cura language"
  134. msgstr "Cura dili"
  135. #: cura/CrashHandler.py:230
  136. msgctxt "@label"
  137. msgid "OS language"
  138. msgstr "İşletim sistemi dili"
  139. #: cura/CrashHandler.py:231
  140. msgctxt "@label Type of platform"
  141. msgid "Platform"
  142. msgstr "Platform"
  143. #: cura/CrashHandler.py:232
  144. msgctxt "@label"
  145. msgid "Qt version"
  146. msgstr "Qt Sürümü"
  147. #: cura/CrashHandler.py:233
  148. msgctxt "@label"
  149. msgid "PyQt version"
  150. msgstr "PyQt Sürümü"
  151. #: cura/CrashHandler.py:234
  152. msgctxt "@label OpenGL version"
  153. msgid "OpenGL"
  154. msgstr "OpenGL"
  155. #: cura/CrashHandler.py:264
  156. msgctxt "@label"
  157. msgid "Not yet initialized"
  158. msgstr "Henüz başlatılmadı"
  159. #: cura/CrashHandler.py:267
  160. #, python-brace-format
  161. msgctxt "@label OpenGL version"
  162. msgid "<li>OpenGL Version: {version}</li>"
  163. msgstr "<li>OpenGL Sürümü: {version}</li>"
  164. #: cura/CrashHandler.py:268
  165. #, python-brace-format
  166. msgctxt "@label OpenGL vendor"
  167. msgid "<li>OpenGL Vendor: {vendor}</li>"
  168. msgstr "<li>OpenGL Satıcısı: {vendor}</li>"
  169. #: cura/CrashHandler.py:269
  170. #, python-brace-format
  171. msgctxt "@label OpenGL renderer"
  172. msgid "<li>OpenGL Renderer: {renderer}</li>"
  173. msgstr "<li>OpenGL Oluşturucusu: {renderer}</li>"
  174. #: cura/CrashHandler.py:304
  175. msgctxt "@title:groupbox"
  176. msgid "Error traceback"
  177. msgstr "Hata geri izleme"
  178. #: cura/CrashHandler.py:390
  179. msgctxt "@title:groupbox"
  180. msgid "Logs"
  181. msgstr "Günlükler"
  182. #: cura/CrashHandler.py:418
  183. msgctxt "@action:button"
  184. msgid "Send report"
  185. msgstr "Rapor gönder"
  186. #: cura/CuraApplication.py:540
  187. msgctxt "@info:progress"
  188. msgid "Loading machines..."
  189. msgstr "Makineler yükleniyor..."
  190. #: cura/CuraApplication.py:547
  191. msgctxt "@info:progress"
  192. msgid "Setting up preferences..."
  193. msgstr "Tercihler ayarlanıyor..."
  194. #: cura/CuraApplication.py:692
  195. msgctxt "@info:progress"
  196. msgid "Initializing Active Machine..."
  197. msgstr "Etkin Makine Başlatılıyor..."
  198. #: cura/CuraApplication.py:839
  199. msgctxt "@info:progress"
  200. msgid "Initializing machine manager..."
  201. msgstr "Makine yöneticisi başlatılıyor..."
  202. #: cura/CuraApplication.py:853
  203. msgctxt "@info:progress"
  204. msgid "Initializing build volume..."
  205. msgstr "Yapı hacmi başlatılıyor..."
  206. #: cura/CuraApplication.py:921
  207. msgctxt "@info:progress"
  208. msgid "Setting up scene..."
  209. msgstr "Görünüm ayarlanıyor..."
  210. #: cura/CuraApplication.py:957
  211. msgctxt "@info:progress"
  212. msgid "Loading interface..."
  213. msgstr "Arayüz yükleniyor..."
  214. #: cura/CuraApplication.py:962
  215. msgctxt "@info:progress"
  216. msgid "Initializing engine..."
  217. msgstr "Motor başlatılıyor..."
  218. #: cura/CuraApplication.py:1290
  219. #, python-format
  220. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  221. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  222. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  223. #: cura/CuraApplication.py:1816
  224. #, python-brace-format
  225. msgctxt "@info:status"
  226. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  227. msgstr "Aynı anda yalnızca bir G-code dosyası yüklenebilir. {0} içe aktarma atlandı"
  228. #: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217
  229. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189
  230. msgctxt "@info:title"
  231. msgid "Warning"
  232. msgstr "Uyarı"
  233. #: cura/CuraApplication.py:1828
  234. #, python-brace-format
  235. msgctxt "@info:status"
  236. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  237. msgstr "G-code yüklenirken başka bir dosya açılamaz. {0} içe aktarma atlandı"
  238. #: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156
  239. #: cura/Settings/CuraContainerRegistry.py:166
  240. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  241. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  242. msgctxt "@info:title"
  243. msgid "Error"
  244. msgstr "Hata"
  245. #: cura/Machines/Models/DiscoveredPrintersModel.py:83
  246. msgctxt "@label"
  247. msgid "Unknown"
  248. msgstr "Bilinmiyor"
  249. #: cura/Machines/Models/DiscoveredPrintersModel.py:113
  250. msgctxt "@label"
  251. msgid "The printer(s) below cannot be connected because they are part of a group"
  252. msgstr "Aşağıdaki yazıcı(lar) bir grubun parçası olmadıkları için bağlanamıyor"
  253. #: cura/Machines/Models/DiscoveredPrintersModel.py:115
  254. msgctxt "@label"
  255. msgid "Available networked printers"
  256. msgstr "Mevcut ağ yazıcıları"
  257. #: cura/Machines/Models/ExtrudersModel.py:219
  258. msgctxt "@menuitem"
  259. msgid "Not overridden"
  260. msgstr "Geçersiz kılınmadı"
  261. #: cura/Machines/Models/GlobalStacksModel.py:160
  262. #: resources/qml/PrinterSelector/MachineSelectorList.qml:28
  263. msgctxt "@label"
  264. msgid "Connected printers"
  265. msgstr "Bağlı yazıcılar"
  266. #: cura/Machines/Models/GlobalStacksModel.py:160
  267. msgctxt "@label"
  268. msgid "Preset printers"
  269. msgstr "Önayarlı yazıcılar"
  270. #: cura/Machines/Models/GlobalStacksModel.py:165
  271. #, python-brace-format
  272. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  273. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  274. msgstr "{0} yazıcısını kaldırmak istediğinizden emin misiniz? Bu işlem geri alınamaz!"
  275. #: cura/Machines/Models/IntentCategoryModel.py:42
  276. #: cura/Machines/Models/IntentSelectionModel.py:61
  277. #: cura/Machines/Models/IntentTranslations.py:11
  278. #: cura/Machines/Models/QualityManagementModel.py:347
  279. msgctxt "@label"
  280. msgid "Default"
  281. msgstr "Default"
  282. #: cura/Machines/Models/IntentCategoryModel.py:45
  283. #: cura/Machines/Models/IntentSelectionModel.py:65
  284. #: cura/Machines/Models/IntentTranslations.py:14
  285. msgctxt "@label"
  286. msgid "Visual"
  287. msgstr "Görsel"
  288. #: cura/Machines/Models/IntentCategoryModel.py:46
  289. #: cura/Machines/Models/IntentSelectionModel.py:66
  290. #: cura/Machines/Models/IntentTranslations.py:15
  291. msgctxt "@text"
  292. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  293. msgstr "Görsel profili, yüksek görsel ve yüzey kalitesi oluşturmak amacıyla, görsel prototipler ve modeller basılması için tasarlanmıştır."
  294. #: cura/Machines/Models/IntentCategoryModel.py:49
  295. #: cura/Machines/Models/IntentSelectionModel.py:70
  296. #: cura/Machines/Models/IntentTranslations.py:18
  297. msgctxt "@label"
  298. msgid "Engineering"
  299. msgstr "Engineering"
  300. #: cura/Machines/Models/IntentCategoryModel.py:50
  301. #: cura/Machines/Models/IntentSelectionModel.py:71
  302. #: cura/Machines/Models/IntentTranslations.py:19
  303. msgctxt "@text"
  304. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  305. msgstr "Mühendislik profili, daha yüksek doğruluk ve daha yakın toleranslar sağlamak amacıyla, işlevsel prototipler ve son kullanım parçaları basılması için tasarlanmıştır."
  306. #: cura/Machines/Models/IntentCategoryModel.py:53
  307. #: cura/Machines/Models/IntentSelectionModel.py:75
  308. #: cura/Machines/Models/IntentTranslations.py:22
  309. msgctxt "@label"
  310. msgid "Draft"
  311. msgstr "Taslak"
  312. #: cura/Machines/Models/IntentCategoryModel.py:54
  313. #: cura/Machines/Models/IntentSelectionModel.py:76
  314. #: cura/Machines/Models/IntentTranslations.py:23
  315. msgctxt "@text"
  316. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  317. msgstr "Taslak profili, baskı süresinin önemli ölçüde kısaltılması amacıyla, birincil prototipler basılması ve konsept doğrulaması yapılması için tasarlanmıştır."
  318. #: cura/Machines/Models/MaterialManagementModel.py:232
  319. msgctxt "@label"
  320. msgid "Custom Material"
  321. msgstr "Özel Malzeme"
  322. #: cura/Machines/Models/MaterialManagementModel.py:233
  323. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340
  324. msgctxt "@label"
  325. msgid "Custom"
  326. msgstr "Özel"
  327. #: cura/Machines/Models/QualityManagementModel.py:400
  328. msgctxt "@label"
  329. msgid "Custom profiles"
  330. msgstr "Özel profiller"
  331. #: cura/Machines/Models/QualityManagementModel.py:435
  332. #, python-brace-format
  333. msgctxt "@item:inlistbox"
  334. msgid "All Supported Types ({0})"
  335. msgstr "Tüm desteklenen türler ({0})"
  336. #: cura/Machines/Models/QualityManagementModel.py:436
  337. msgctxt "@item:inlistbox"
  338. msgid "All Files (*)"
  339. msgstr "Tüm Dosyalar (*)"
  340. #: cura/Machines/Models/QualitySettingsModel.py:182
  341. msgctxt "@info:status"
  342. msgid "Calculated"
  343. msgstr "Hesaplanmış"
  344. #: cura/MultiplyObjectsJob.py:30
  345. msgctxt "@info:status"
  346. msgid "Multiplying and placing objects"
  347. msgstr "Nesneler çoğaltılıyor ve yerleştiriliyor"
  348. #: cura/MultiplyObjectsJob.py:32
  349. msgctxt "@info:title"
  350. msgid "Placing Objects"
  351. msgstr "Nesneler Yerleştiriliyor"
  352. #: cura/MultiplyObjectsJob.py:100
  353. msgctxt "@info:title"
  354. msgid "Placing Object"
  355. msgstr "Nesne Yerleştiriliyor"
  356. #: cura/OAuth2/AuthorizationHelpers.py:89
  357. msgctxt "@message"
  358. msgid "Could not read response."
  359. msgstr "Yanıt okunamadı."
  360. #: cura/OAuth2/AuthorizationRequestHandler.py:75
  361. msgctxt "@message"
  362. msgid "The provided state is not correct."
  363. msgstr "Sağlanan durum doğru değil."
  364. #: cura/OAuth2/AuthorizationRequestHandler.py:80
  365. msgctxt "@message"
  366. msgid "Timeout when authenticating with the account server."
  367. msgstr "Hesap sunucusuyla kimlik doğrulaması yapılırken zaman aşımı oluştu."
  368. #: cura/OAuth2/AuthorizationRequestHandler.py:97
  369. msgctxt "@message"
  370. msgid "Please give the required permissions when authorizing this application."
  371. msgstr "Lütfen bu başvuruya yetki verirken gerekli izinleri verin."
  372. #: cura/OAuth2/AuthorizationRequestHandler.py:104
  373. msgctxt "@message"
  374. msgid "Something unexpected happened when trying to log in, please try again."
  375. msgstr "Oturum açmaya çalışırken beklenmeyen bir sorun oluştu, lütfen tekrar deneyin."
  376. #: cura/OAuth2/AuthorizationService.py:216
  377. msgctxt "@info"
  378. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  379. msgstr "Yeni bir oturum açma işlemi başlatılamıyor. Başka bir aktif oturum açma girişimi olup olmadığını kontrol edin."
  380. #: cura/OAuth2/AuthorizationService.py:277
  381. msgctxt "@info"
  382. msgid "Unable to reach the UltiMaker account server."
  383. msgstr "UltiMaker hesabı sunucusuna ulaşılamadı."
  384. #: cura/OAuth2/AuthorizationService.py:278
  385. msgctxt "@info:title"
  386. msgid "Log-in failed"
  387. msgstr "Giriş başarısız"
  388. #: cura/PrinterOutput/UploadMaterialsJob.py:104
  389. msgctxt "@text:error"
  390. msgid "Failed to create archive of materials to sync with printers."
  391. msgstr "Yazıcılarla senkronize edilecek malzeme arşivi oluşturulamadı."
  392. #: cura/PrinterOutput/UploadMaterialsJob.py:111
  393. #: cura/PrinterOutput/UploadMaterialsJob.py:165
  394. msgctxt "@text:error"
  395. msgid "Failed to load the archive of materials to sync it with printers."
  396. msgstr "Yazıcılarla senkronize etmek için malzeme arşivi oluşturulamadı."
  397. #: cura/PrinterOutput/UploadMaterialsJob.py:143
  398. msgctxt "@text:error"
  399. msgid "The response from Digital Factory appears to be corrupted."
  400. msgstr "Digital Factory'den gelen yanıt bozuk görünüyor."
  401. #: cura/PrinterOutput/UploadMaterialsJob.py:147
  402. #: cura/PrinterOutput/UploadMaterialsJob.py:151
  403. #: cura/PrinterOutput/UploadMaterialsJob.py:155
  404. msgctxt "@text:error"
  405. msgid "The response from Digital Factory is missing important information."
  406. msgstr "Digital Factory'den gelen yanıtta önemli bilgiler eksik."
  407. #: cura/PrinterOutput/UploadMaterialsJob.py:218
  408. msgctxt "@text:error"
  409. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  410. msgstr "Malzemeleri bazı yazıcılarla senkronize etmek için Digital Factory'ye bağlanılamadı."
  411. #: cura/PrinterOutput/UploadMaterialsJob.py:232
  412. msgctxt "@text:error"
  413. msgid "Failed to connect to Digital Factory."
  414. msgstr "Digital Factory'ye bağlanılamadı."
  415. #: cura/Settings/ActiveQuality.py:43
  416. msgctxt "@label"
  417. msgid "Experimental"
  418. msgstr "Deneysel"
  419. #: cura/Settings/ContainerManager.py:207
  420. #: cura/Settings/CuraContainerRegistry.py:140
  421. msgctxt "@title:window"
  422. msgid "File Already Exists"
  423. msgstr "Dosya Zaten Mevcut"
  424. #: cura/Settings/ContainerManager.py:208
  425. #: cura/Settings/CuraContainerRegistry.py:141
  426. #, python-brace-format
  427. msgctxt "@label Don't translate the XML tag <filename>!"
  428. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  429. msgstr "Dosya <filename>{0}</filename> zaten mevcut. Üstüne yazmak istediğinizden emin misiniz?"
  430. #: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462
  431. msgctxt "@info:status"
  432. msgid "Invalid file URL:"
  433. msgstr "Geçersiz dosya URL’si:"
  434. #: cura/Settings/CuraContainerRegistry.py:153
  435. #, python-brace-format
  436. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  437. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  438. msgstr "Profilin <filename>{0}</filename> dosyasına aktarımı başarısız oldu: <message>{1}</message>"
  439. #: cura/Settings/CuraContainerRegistry.py:163
  440. #, python-brace-format
  441. msgctxt "@info:status Don't translate the XML tag <filename>!"
  442. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  443. msgstr "Profilin <filename>{0}</filename> dosyasına aktarımı başarısız oldu: Yazıcı eklentisinde rapor edilen hata."
  444. #: cura/Settings/CuraContainerRegistry.py:171
  445. #, python-brace-format
  446. msgctxt "@info:status Don't translate the XML tag <filename>!"
  447. msgid "Exported profile to <filename>{0}</filename>"
  448. msgstr "Profil <filename>{0}</filename> dosyasına aktarıldı"
  449. #: cura/Settings/CuraContainerRegistry.py:173
  450. msgctxt "@info:title"
  451. msgid "Export succeeded"
  452. msgstr "Dışa aktarma başarılı"
  453. #: cura/Settings/CuraContainerRegistry.py:205
  454. #, python-brace-format
  455. msgctxt "@info:status Don't translate the XML tags <filename>!"
  456. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  457. msgstr "<filename>{0}</filename> dosyasından profil içe aktarımı başarısız oldu: {1}"
  458. #: cura/Settings/CuraContainerRegistry.py:209
  459. #, python-brace-format
  460. msgctxt "@info:status Don't translate the XML tags <filename>!"
  461. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  462. msgstr "Yazıcı eklenmeden önce profil, <filename>{0}</filename> dosyasından içe aktarılamaz."
  463. #: cura/Settings/CuraContainerRegistry.py:224
  464. #, python-brace-format
  465. msgctxt "@info:status Don't translate the XML tags <filename>!"
  466. msgid "No custom profile to import in file <filename>{0}</filename>"
  467. msgstr "<filename>{0}</filename> dosyasında içe aktarılabilecek özel profil yok"
  468. #: cura/Settings/CuraContainerRegistry.py:228
  469. #, python-brace-format
  470. msgctxt "@info:status Don't translate the XML tags <filename>!"
  471. msgid "Failed to import profile from <filename>{0}</filename>:"
  472. msgstr "<filename>{0}</filename> dosyasından profil içe aktarımı başarısız oldu:"
  473. #: cura/Settings/CuraContainerRegistry.py:252
  474. #: cura/Settings/CuraContainerRegistry.py:262
  475. #, python-brace-format
  476. msgctxt "@info:status Don't translate the XML tags <filename>!"
  477. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  478. msgstr "Bu <filename>{0}</filename> profili yanlış veri içeriyor, içeri aktarılamadı."
  479. #: cura/Settings/CuraContainerRegistry.py:355
  480. #, python-brace-format
  481. msgctxt "@info:status Don't translate the XML tag <filename>!"
  482. msgid "Failed to import profile from <filename>{0}</filename>:"
  483. msgstr "<filename>{0}</filename> dosyasından profil içe aktarımı başarısız oldu:"
  484. #: cura/Settings/CuraContainerRegistry.py:359
  485. #, python-brace-format
  486. msgctxt "@info:status"
  487. msgid "Successfully imported profile {0}."
  488. msgstr "{0} profili başarıyla içe aktarıldı."
  489. #: cura/Settings/CuraContainerRegistry.py:366
  490. #, python-brace-format
  491. msgctxt "@info:status"
  492. msgid "File {0} does not contain any valid profile."
  493. msgstr "Dosya {0} geçerli bir profil içermemekte."
  494. #: cura/Settings/CuraContainerRegistry.py:369
  495. #, python-brace-format
  496. msgctxt "@info:status"
  497. msgid "Profile {0} has an unknown file type or is corrupted."
  498. msgstr "Profil {0} öğesinde bilinmeyen bir dosya türü var veya profil bozuk."
  499. #: cura/Settings/CuraContainerRegistry.py:443
  500. msgctxt "@label"
  501. msgid "Custom profile"
  502. msgstr "Özel profil"
  503. #: cura/Settings/CuraContainerRegistry.py:459
  504. msgctxt "@info:status"
  505. msgid "Profile is missing a quality type."
  506. msgstr "Profilde eksik bir kalite tipi var."
  507. #: cura/Settings/CuraContainerRegistry.py:463
  508. msgctxt "@info:status"
  509. msgid "There is no active printer yet."
  510. msgstr "Henüz etkin bir yazıcı yok."
  511. #: cura/Settings/CuraContainerRegistry.py:469
  512. msgctxt "@info:status"
  513. msgid "Unable to add the profile."
  514. msgstr "Profil eklenemiyor."
  515. #: cura/Settings/CuraContainerRegistry.py:483
  516. #, python-brace-format
  517. msgctxt "@info:status"
  518. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  519. msgstr "'{0}' kalite tipi, mevcut aktif makine tanımı '{1}' ile uyumlu değil."
  520. #: cura/Settings/CuraContainerRegistry.py:488
  521. #, python-brace-format
  522. msgctxt "@info:status"
  523. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  524. msgstr "Uyarı: Profilin '{0}' kalite tipi, mevcut yapılandırma için kullanılabilir olmadığından profil görünür değil. Bu kalite tipini kullanabilen malzeme/nozül kombinasyonuna geçiş yapın."
  525. #: cura/Settings/MachineManager.py:746
  526. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:221
  527. msgctxt "@label"
  528. msgid "Nozzle"
  529. msgstr "Nozül"
  530. #: cura/Settings/MachineManager.py:890
  531. msgctxt "@info:message Followed by a list of settings."
  532. msgid "Settings have been changed to match the current availability of extruders:"
  533. msgstr "Ayarlar, ekstrüderlerin mevcut kullanılabilirliğine uyacak şekilde değiştirildi:"
  534. #: cura/Settings/MachineManager.py:891
  535. msgctxt "@info:title"
  536. msgid "Settings updated"
  537. msgstr "Ayarlar güncellendi"
  538. #: cura/Settings/MachineManager.py:1514
  539. msgctxt "@info:title"
  540. msgid "Extruder(s) Disabled"
  541. msgstr "Ekstrüder(ler) Devre Dışı Bırakıldı"
  542. #: cura/Settings/cura_empty_instance_containers.py:36
  543. msgctxt "@info:not supported profile"
  544. msgid "Not supported"
  545. msgstr "Desteklenmiyor"
  546. #: cura/Settings/cura_empty_instance_containers.py:55
  547. msgctxt "@info:No intent profile selected"
  548. msgid "Default"
  549. msgstr "Default"
  550. #: cura/UI/AddPrinterPagesModel.py:17
  551. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  552. msgctxt "@action:button"
  553. msgid "Add"
  554. msgstr "Ekle"
  555. #: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290
  556. msgctxt "@action:button"
  557. msgid "Finish"
  558. msgstr "Bitir"
  559. #: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386
  560. #: plugins/ImageReader/ConfigUI.qml:323
  561. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147
  562. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  563. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43
  564. #: resources/qml/ColorDialog.qml:143
  565. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  566. #: resources/qml/Dialogs/RenameDialog.qml:103
  567. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293
  568. msgctxt "@action:button"
  569. msgid "Cancel"
  570. msgstr "İptal Et"
  571. #: cura/UI/ObjectsModel.py:69
  572. #, python-brace-format
  573. msgctxt "@label"
  574. msgid "Group #{group_nr}"
  575. msgstr "Grup #{group_nr}"
  576. #: cura/UI/PrintInformation.py:87
  577. msgctxt "@tooltip"
  578. msgid "Outer Wall"
  579. msgstr "Dış Duvar"
  580. #: cura/UI/PrintInformation.py:88
  581. msgctxt "@tooltip"
  582. msgid "Inner Walls"
  583. msgstr "İç Duvarlar"
  584. #: cura/UI/PrintInformation.py:89
  585. msgctxt "@tooltip"
  586. msgid "Skin"
  587. msgstr "Yüzey Alanı"
  588. #: cura/UI/PrintInformation.py:90
  589. msgctxt "@tooltip"
  590. msgid "Infill"
  591. msgstr "Dolgu"
  592. #: cura/UI/PrintInformation.py:91
  593. msgctxt "@tooltip"
  594. msgid "Support Infill"
  595. msgstr "Destek Dolgusu"
  596. #: cura/UI/PrintInformation.py:92
  597. msgctxt "@tooltip"
  598. msgid "Support Interface"
  599. msgstr "Destek Arayüzü"
  600. #: cura/UI/PrintInformation.py:93
  601. msgctxt "@tooltip"
  602. msgid "Support"
  603. msgstr "Destek"
  604. #: cura/UI/PrintInformation.py:94
  605. msgctxt "@tooltip"
  606. msgid "Skirt"
  607. msgstr "Etek"
  608. #: cura/UI/PrintInformation.py:95
  609. msgctxt "@tooltip"
  610. msgid "Prime Tower"
  611. msgstr "Astarlama Direği"
  612. #: cura/UI/PrintInformation.py:96
  613. msgctxt "@tooltip"
  614. msgid "Travel"
  615. msgstr "Hareket"
  616. #: cura/UI/PrintInformation.py:97
  617. msgctxt "@tooltip"
  618. msgid "Retractions"
  619. msgstr "Geri Çekmeler"
  620. #: cura/UI/PrintInformation.py:98
  621. msgctxt "@tooltip"
  622. msgid "Other"
  623. msgstr "Diğer"
  624. #: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63
  625. msgctxt "@text:window"
  626. msgid "The release notes could not be opened."
  627. msgstr "Sürüm notları açılamadı."
  628. #: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277
  629. msgctxt "@action:button"
  630. msgid "Next"
  631. msgstr "Sonraki"
  632. #: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68
  633. msgctxt "@action:button"
  634. msgid "Skip"
  635. msgstr "Atla"
  636. #: cura/UI/WhatsNewPagesModel.py:76
  637. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175
  638. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135
  639. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444
  640. #: resources/qml/Dialogs/AboutDialog.qml:188
  641. msgctxt "@action:button"
  642. msgid "Close"
  643. msgstr "Kapat"
  644. #: cura/UltimakerCloud/CloudMaterialSync.py:66
  645. msgctxt "@action:button"
  646. msgid "Please sync the material profiles with your printers before starting to print."
  647. msgstr "Lütfen baskıya başlamadan önce malzeme profillerini yazıcılarınızla senkronize edin."
  648. #: cura/UltimakerCloud/CloudMaterialSync.py:67
  649. msgctxt "@action:button"
  650. msgid "New materials installed"
  651. msgstr "Yeni malzemeler yüklendi"
  652. #: cura/UltimakerCloud/CloudMaterialSync.py:74
  653. msgctxt "@action:button"
  654. msgid "Sync materials"
  655. msgstr "Malzemeleri senkronize et"
  656. #: cura/UltimakerCloud/CloudMaterialSync.py:82
  657. #: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80
  658. msgctxt "@action:button"
  659. msgid "Learn more"
  660. msgstr "Daha fazla bilgi edinin"
  661. #: cura/UltimakerCloud/CloudMaterialSync.py:135
  662. msgctxt "@message:text"
  663. msgid "Could not save material archive to {}:"
  664. msgstr "Malzeme arşivi {} konumuna kaydedilemedi:"
  665. #: cura/UltimakerCloud/CloudMaterialSync.py:136
  666. msgctxt "@message:title"
  667. msgid "Failed to save material archive"
  668. msgstr "Malzeme arşivi kaydedilemedi"
  669. #: cura/UltimakerCloud/CloudMaterialSync.py:188
  670. msgctxt "@text"
  671. msgid "Unknown error."
  672. msgstr "Bilinmeyen hata."
  673. #: plugin.json
  674. msgctxt "name"
  675. msgid "3MF Reader"
  676. msgstr "3MF Okuyucu"
  677. #: plugin.json
  678. msgctxt "name"
  679. msgid "3MF Writer"
  680. msgstr "3MF Yazıcı"
  681. #: plugin.json
  682. msgctxt "name"
  683. msgid "AMF Reader"
  684. msgstr "AMF Okuyucu"
  685. #: plugin.json
  686. msgctxt "description"
  687. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  688. msgstr "G-Code’ları kabul eder ve bir yazıcıya gönderir. Eklenti aynı zamanda üretici sürümünü güncelleyebilir."
  689. #: plugin.json
  690. msgctxt "description"
  691. msgid "Allows loading and displaying G-code files."
  692. msgstr "G-code dosyalarının yüklenmesine ve görüntülenmesine olanak tanır."
  693. #: plugin.json
  694. msgctxt "description"
  695. msgid "Backup and restore your configuration."
  696. msgstr "Yapılandırmanızı yedekleyin ve geri yükleyin."
  697. #: plugin.json
  698. msgctxt "description"
  699. msgid "Checks for firmware updates."
  700. msgstr "Bellenim güncellemelerini denetler."
  701. #: plugin.json
  702. msgctxt "description"
  703. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  704. msgstr "Olası yazdırma sorunlarına karşı modelleri ve yazdırma yapılandırmasını kontrol eder ve öneriler verir."
  705. #: plugin.json
  706. msgctxt "name"
  707. msgid "Compressed G-code Reader"
  708. msgstr "Sıkıştırılmış G-code Okuyucusu"
  709. #: plugin.json
  710. msgctxt "name"
  711. msgid "Compressed G-code Writer"
  712. msgstr "Sıkıştırılmış G-code Yazıcısı"
  713. #: plugin.json
  714. msgctxt "description"
  715. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  716. msgstr "Digital Library'ye bağlanarak Cura'nın Digital Library'deki dosyaları açmasına ve kaydetmesine olanak tanır."
  717. #: plugin.json
  718. msgctxt "description"
  719. msgid "Creates an eraser mesh to block the printing of support in certain places"
  720. msgstr "Belirli yerlerde desteğin yazdırılmasını engellemek için bir silici yüzey oluşturur"
  721. #: plugin.json
  722. msgctxt "name"
  723. msgid "Cura Backups"
  724. msgstr "Cura Yedeklemeleri"
  725. #: plugin.json
  726. msgctxt "name"
  727. msgid "Cura Profile Reader"
  728. msgstr "Cura Profil Okuyucu"
  729. #: plugin.json
  730. msgctxt "name"
  731. msgid "Cura Profile Writer"
  732. msgstr "Cura Profili Yazıcı"
  733. #: plugin.json
  734. msgctxt "name"
  735. msgid "CuraEngine Backend"
  736. msgstr "CuraEngine Arka Uç"
  737. #: plugin.json
  738. msgctxt "description"
  739. msgid "Enables ability to generate printable geometry from 2D image files."
  740. msgstr "2D resim dosyasından yazdırılabilir geometri oluşturulmasını sağlar."
  741. #: plugin.json
  742. msgctxt "description"
  743. msgid "Extension that allows for user created scripts for post processing"
  744. msgstr "Kullanıcının oluşturduğu komut dosyalarına son işleme için izin veren uzantı"
  745. #: plugin.json
  746. msgctxt "name"
  747. msgid "Firmware Update Checker"
  748. msgstr "Bellenim Güncelleme Denetleyicisi"
  749. #: plugin.json
  750. msgctxt "name"
  751. msgid "Firmware Updater"
  752. msgstr "Aygıt Yazılımı Güncelleyici"
  753. #: plugin.json
  754. msgctxt "name"
  755. msgid "G-code Profile Reader"
  756. msgstr "G-code Profil Okuyucu"
  757. #: plugin.json
  758. msgctxt "name"
  759. msgid "G-code Reader"
  760. msgstr "G-code Okuyucu"
  761. #: plugin.json
  762. msgctxt "name"
  763. msgid "G-code Writer"
  764. msgstr "G-code Yazıcı"
  765. #: plugin.json
  766. msgctxt "name"
  767. msgid "Image Reader"
  768. msgstr "Resim Okuyucu"
  769. #: plugin.json
  770. msgctxt "name"
  771. msgid "Legacy Cura Profile Reader"
  772. msgstr "Eski Cura Profil Okuyucu"
  773. #: plugin.json
  774. msgctxt "description"
  775. msgid "Logs certain events so that they can be used by the crash reporter"
  776. msgstr "Çökme raporlayıcının kullanabilmesi için belirli olayları günlüğe kaydeder"
  777. #: plugin.json
  778. msgctxt "name"
  779. msgid "Machine Settings Action"
  780. msgstr "Makine Ayarları eylemi"
  781. #: plugin.json
  782. msgctxt "description"
  783. msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website."
  784. msgstr "Uygulamanın uzantılarını yönetir ve UltiMaker web sitesinden uzantıların incelenmesini sağlar."
  785. #: plugin.json
  786. #, fuzzy
  787. msgctxt "description"
  788. msgid "Manages network connections to Ultimaker networked printers."
  789. msgstr "UltiMaker ağındaki yazıcılar için ağ bağlantılarını yönetir."
  790. #: plugin.json
  791. msgctxt "name"
  792. msgid "Marketplace"
  793. msgstr "Mağaza"
  794. #: plugin.json
  795. msgctxt "name"
  796. msgid "Material Profiles"
  797. msgstr "Malzeme Profilleri"
  798. #: plugin.json
  799. msgctxt "name"
  800. msgid "Model Checker"
  801. msgstr "Model Kontrol Edici"
  802. #: plugin.json
  803. msgctxt "name"
  804. msgid "Monitor Stage"
  805. msgstr "Görüntüleme Aşaması"
  806. #: plugin.json
  807. msgctxt "name"
  808. msgid "Per Model Settings Tool"
  809. msgstr "Model Başına Ayarlar Aracı"
  810. #: plugin.json
  811. msgctxt "name"
  812. msgid "Post Processing"
  813. msgstr "Son İşleme"
  814. #: plugin.json
  815. msgctxt "name"
  816. msgid "Prepare Stage"
  817. msgstr "Hazırlık Aşaması"
  818. #: plugin.json
  819. msgctxt "name"
  820. msgid "Preview Stage"
  821. msgstr "Öz İzleme Aşaması"
  822. #: plugin.json
  823. msgctxt "description"
  824. msgid "Provides a machine actions for updating firmware."
  825. msgstr "Aygıt yazılımını güncellemeye yönelik makine eylemleri sağlar."
  826. #: plugin.json
  827. msgctxt "description"
  828. msgid "Provides a monitor stage in Cura."
  829. msgstr "Cura’da görüntüleme aşaması sunar."
  830. #: plugin.json
  831. msgctxt "description"
  832. msgid "Provides a normal solid mesh view."
  833. msgstr "Normal gerçek bir ağ görünümü sağlar."
  834. #: plugin.json
  835. msgctxt "description"
  836. msgid "Provides a prepare stage in Cura."
  837. msgstr "Cura’da hazırlık aşaması sunar."
  838. #: plugin.json
  839. msgctxt "description"
  840. msgid "Provides a preview stage in Cura."
  841. msgstr "Cura’da ön izleme aşaması sunar."
  842. #: plugin.json
  843. msgctxt "description"
  844. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  845. msgstr "Makine ayarlarının değiştirilmesini sağlar (yapı hacmi, nozül boyutu vb.)"
  846. #: plugin.json
  847. msgctxt "description"
  848. msgid "Provides capabilities to read and write XML-based material profiles."
  849. msgstr "XML tabanlı malzeme profillerini okuma ve yazma olanağı sağlar."
  850. #: plugin.json
  851. msgctxt "description"
  852. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  853. msgstr "UltiMaker makineleri için makine eylemleri sunar (yatak dengeleme sihirbazı, yükseltme seçme vb.)"
  854. #: plugin.json
  855. msgctxt "description"
  856. msgid "Provides removable drive hotplugging and writing support."
  857. msgstr "Çıkarılabilir sürücünün takılıp çıkarılmasını ve yazma desteği sağlar."
  858. #: plugin.json
  859. msgctxt "description"
  860. msgid "Provides support for exporting Cura profiles."
  861. msgstr "Cura profillerinin dışa aktarılması için destek sağlar."
  862. #: plugin.json
  863. msgctxt "description"
  864. msgid "Provides support for importing Cura profiles."
  865. msgstr "Cura profillerinin içe aktarılması için destek sağlar."
  866. #: plugin.json
  867. msgctxt "description"
  868. msgid "Provides support for importing profiles from g-code files."
  869. msgstr "G-code dosyalarından profilleri içe aktarmak için destek sağlar."
  870. #: plugin.json
  871. msgctxt "description"
  872. msgid "Provides support for importing profiles from legacy Cura versions."
  873. msgstr "Eski Cura sürümlerinden profilleri içe aktarmak için destek sağlar."
  874. #: plugin.json
  875. msgctxt "description"
  876. msgid "Provides support for reading 3MF files."
  877. msgstr "3MF dosyalarının okunması için destek sağlar."
  878. #: plugin.json
  879. msgctxt "description"
  880. msgid "Provides support for reading AMF files."
  881. msgstr "AMF dosyalarının okunması için destek sağlar."
  882. #: plugin.json
  883. #, fuzzy
  884. msgctxt "description"
  885. msgid "Provides support for reading Ultimaker Format Packages."
  886. msgstr "UltiMaker Biçim Paketlerinin okunması için destek sağlar."
  887. #: plugin.json
  888. msgctxt "description"
  889. msgid "Provides support for reading X3D files."
  890. msgstr "X3D dosyalarının okunması için destek sağlar."
  891. #: plugin.json
  892. msgctxt "description"
  893. msgid "Provides support for reading model files."
  894. msgstr "Model dosyalarını okuma desteği sağlar."
  895. #: plugin.json
  896. msgctxt "description"
  897. msgid "Provides support for writing 3MF files."
  898. msgstr "3MF dosyalarının yazılması için destek sağlar."
  899. #: plugin.json
  900. #, fuzzy
  901. msgctxt "description"
  902. msgid "Provides support for writing Ultimaker Format Packages."
  903. msgstr "UltiMaker Biçim Paketleri yazmak için destek sağlar."
  904. #: plugin.json
  905. msgctxt "description"
  906. msgid "Provides the Per Model Settings."
  907. msgstr "Model Başına Ayarları sağlar."
  908. #: plugin.json
  909. msgctxt "description"
  910. msgid "Provides the X-Ray view."
  911. msgstr "Röntgen Görüntüsü sağlar."
  912. #: plugin.json
  913. msgctxt "description"
  914. msgid "Provides the link to the CuraEngine slicing backend."
  915. msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar."
  916. #: plugin.json
  917. msgctxt "description"
  918. msgid "Provides the preview of sliced layerdata."
  919. msgstr "Dilimlenen katman verilerinin önizlemesini sağlar."
  920. #: plugin.json
  921. msgctxt "description"
  922. msgid "Reads g-code from a compressed archive."
  923. msgstr "Bir sıkıştırılmış arşivden g-code okur."
  924. #: plugin.json
  925. msgctxt "name"
  926. msgid "Removable Drive Output Device Plugin"
  927. msgstr "Çıkarılabilir Sürücü Çıkış Cihazı Eklentisi"
  928. #: plugin.json
  929. msgctxt "name"
  930. msgid "Sentry Logger"
  931. msgstr "Nöbetçi Günlükçü"
  932. #: plugin.json
  933. msgctxt "name"
  934. msgid "Simulation View"
  935. msgstr "Simülasyon Görünümü"
  936. #: plugin.json
  937. msgctxt "name"
  938. msgid "Slice info"
  939. msgstr "Dilim bilgisi"
  940. #: plugin.json
  941. msgctxt "name"
  942. msgid "Solid View"
  943. msgstr "Gerçek Görünüm"
  944. #: plugin.json
  945. msgctxt "description"
  946. msgid "Submits anonymous slice info. Can be disabled through preferences."
  947. msgstr "Anonim dilim bilgisi gönderir. Tercihlerden devre dışı bırakılabilir."
  948. #: plugin.json
  949. msgctxt "name"
  950. msgid "Support Eraser"
  951. msgstr "Destek Silici"
  952. #: plugin.json
  953. msgctxt "name"
  954. msgid "Trimesh Reader"
  955. msgstr "Trimesh Okuyucu"
  956. #: plugin.json
  957. msgctxt "name"
  958. msgid "UFP Reader"
  959. msgstr "UFP Okuyucu"
  960. #: plugin.json
  961. msgctxt "name"
  962. msgid "UFP Writer"
  963. msgstr "UPF Yazıcı"
  964. #: plugin.json
  965. msgctxt "name"
  966. msgid "USB printing"
  967. msgstr "USB yazdırma"
  968. #: plugin.json
  969. msgctxt "name"
  970. msgid "Ultimaker Digital Library"
  971. msgstr "Ultimaker Digital Library"
  972. #: plugin.json
  973. #, fuzzy
  974. msgctxt "name"
  975. msgid "Ultimaker Network Connection"
  976. msgstr "UltiMaker Ağ Bağlantısı"
  977. #: plugin.json
  978. #, fuzzy
  979. msgctxt "name"
  980. msgid "Ultimaker machine actions"
  981. msgstr "UltiMaker makine eylemleri"
  982. #: plugin.json
  983. msgctxt "description"
  984. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  985. msgstr "Yapılandırmaları Cura 2.1’den Cura 2.2’ye yükseltir."
  986. #: plugin.json
  987. msgctxt "description"
  988. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  989. msgstr "Yapılandırmaları Cura 2.2’den Cura 2.4’e yükseltir."
  990. #: plugin.json
  991. msgctxt "description"
  992. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  993. msgstr "Yapılandırmaları Cura 2.5’ten Cura 2.6’ya yükseltir."
  994. #: plugin.json
  995. msgctxt "description"
  996. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  997. msgstr "Yapılandırmaları Cura 2.6’dan Cura 2.7’ye yükseltir."
  998. #: plugin.json
  999. msgctxt "description"
  1000. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  1001. msgstr "Yapılandırmaları Cura 2.7’den Cura 3.0’a yükseltir."
  1002. #: plugin.json
  1003. msgctxt "description"
  1004. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  1005. msgstr "Yapılandırmaları Cura 3.0'dan Cura 3.1'e yükseltir."
  1006. #: plugin.json
  1007. msgctxt "description"
  1008. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  1009. msgstr "Yapılandırmaları Cura 3.2’ten Cura 3.3’ya yükseltir."
  1010. #: plugin.json
  1011. msgctxt "description"
  1012. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  1013. msgstr "Yapılandırmaları Cura 3.3’ten Cura 3.4’ya yükseltir."
  1014. #: plugin.json
  1015. msgctxt "description"
  1016. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  1017. msgstr "Yapılandırmaları Cura 3.4’ten Cura 3.5’e yükseltir."
  1018. #: plugin.json
  1019. msgctxt "description"
  1020. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  1021. msgstr "Yapılandırmaları Cura 3.5’ten Cura 4.0’a yükseltir."
  1022. #: plugin.json
  1023. msgctxt "description"
  1024. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  1025. msgstr "Yapılandırmaları Cura 4.0’dan Cura 4.1’e yükseltir."
  1026. #: plugin.json
  1027. msgctxt "description"
  1028. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  1029. msgstr "Yapılandırmaları Cura 4.1'den Cura 4.2'ye yükseltir."
  1030. #: plugin.json
  1031. msgctxt "description"
  1032. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  1033. msgstr "Yapılandırmaları Cura 4.11'den Cura 4.12'ye yükseltir."
  1034. #: plugin.json
  1035. msgctxt "description"
  1036. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  1037. msgstr "Yapılandırmaları Cura 4.13'ten Cura 5.0'a yükseltir."
  1038. #: plugin.json
  1039. msgctxt "description"
  1040. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  1041. msgstr "Yapılandırmaları Cura 4.2'den Cura 4.3'e yükseltir."
  1042. #: plugin.json
  1043. msgctxt "description"
  1044. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  1045. msgstr "Yapılandırmaları Cura 4.3'ten Cura 4.4'e yükseltir."
  1046. #: plugin.json
  1047. msgctxt "description"
  1048. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  1049. msgstr "Yapılandırmaları Cura 4.4'ten Cura 4.5'e yükseltir."
  1050. #: plugin.json
  1051. msgctxt "description"
  1052. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  1053. msgstr "Yapılandırmaları Cura 4.5'ten Cura 4.6'ya yükseltir."
  1054. #: plugin.json
  1055. msgctxt "description"
  1056. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  1057. msgstr "Yapılandırmaları Cura 4.6.0'dan Cura 4.6.2'ye yükseltir."
  1058. #: plugin.json
  1059. msgctxt "description"
  1060. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  1061. msgstr "Yapılandırmaları Cura 4.6.2'den Cura 4.7'ye yükseltir."
  1062. #: plugin.json
  1063. msgctxt "description"
  1064. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  1065. msgstr "Yapılandırmaları Cura 4.7'den Cura 4.8'e yükseltir."
  1066. #: plugin.json
  1067. msgctxt "description"
  1068. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  1069. msgstr "Yapılandırmaları Cura 4.8'den Cura 4.9'a yükseltir."
  1070. #: plugin.json
  1071. msgctxt "description"
  1072. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  1073. msgstr "Yapılandırmaları Cura 4.9'dan Cura 4.10'a yükseltir."
  1074. #: plugin.json
  1075. #, fuzzy
  1076. msgctxt "description"
  1077. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  1078. msgstr "Yapılandırmaları Cura 3.2’ten Cura 3.3’ya yükseltir."
  1079. #: plugin.json
  1080. msgctxt "name"
  1081. msgid "Version Upgrade 2.1 to 2.2"
  1082. msgstr "2.1’den 2.2’ye Sürüm Yükseltme"
  1083. #: plugin.json
  1084. msgctxt "name"
  1085. msgid "Version Upgrade 2.2 to 2.4"
  1086. msgstr "2.2’den 2.4’e Sürüm Yükseltme"
  1087. #: plugin.json
  1088. msgctxt "name"
  1089. msgid "Version Upgrade 2.5 to 2.6"
  1090. msgstr "2.5’ten 2.6’ya Sürüm Yükseltme"
  1091. #: plugin.json
  1092. msgctxt "name"
  1093. msgid "Version Upgrade 2.6 to 2.7"
  1094. msgstr "2.6’dan 2.7’ye Sürüm Yükseltme"
  1095. #: plugin.json
  1096. msgctxt "name"
  1097. msgid "Version Upgrade 2.7 to 3.0"
  1098. msgstr "2.7’den 3.0’a Sürüm Yükseltme"
  1099. #: plugin.json
  1100. msgctxt "name"
  1101. msgid "Version Upgrade 3.0 to 3.1"
  1102. msgstr "3.0'dan 3.1'e Sürüm Yükseltme"
  1103. #: plugin.json
  1104. msgctxt "name"
  1105. msgid "Version Upgrade 3.2 to 3.3"
  1106. msgstr "3.2'dan 3.3'e Sürüm Yükseltme"
  1107. #: plugin.json
  1108. msgctxt "name"
  1109. msgid "Version Upgrade 3.3 to 3.4"
  1110. msgstr "3.3'dan 3.4'e Sürüm Yükseltme"
  1111. #: plugin.json
  1112. msgctxt "name"
  1113. msgid "Version Upgrade 3.4 to 3.5"
  1114. msgstr "3.4’ten 3.5’e Sürüm Yükseltme"
  1115. #: plugin.json
  1116. msgctxt "name"
  1117. msgid "Version Upgrade 3.5 to 4.0"
  1118. msgstr "3.5’ten 4.0’a Sürüm Yükseltme"
  1119. #: plugin.json
  1120. msgctxt "name"
  1121. msgid "Version Upgrade 4.0 to 4.1"
  1122. msgstr "4.0’dan 4.1’e Sürüm Yükseltme"
  1123. #: plugin.json
  1124. msgctxt "name"
  1125. msgid "Version Upgrade 4.1 to 4.2"
  1126. msgstr "Sürüm 4.1'den 4.2'ye Yükseltme"
  1127. #: plugin.json
  1128. msgctxt "name"
  1129. msgid "Version Upgrade 4.11 to 4.12"
  1130. msgstr "4.11'den 4.12'ye Sürüm Yükseltme"
  1131. #: plugin.json
  1132. msgctxt "name"
  1133. msgid "Version Upgrade 4.13 to 5.0"
  1134. msgstr "4.13'ten 5.0'a Sürüm Yükseltme"
  1135. #: plugin.json
  1136. msgctxt "name"
  1137. msgid "Version Upgrade 4.2 to 4.3"
  1138. msgstr "4.2'den 4.3'e Sürüm Yükseltme"
  1139. #: plugin.json
  1140. msgctxt "name"
  1141. msgid "Version Upgrade 4.3 to 4.4"
  1142. msgstr "4.3'ten 4.4'e Sürüm Yükseltme"
  1143. #: plugin.json
  1144. msgctxt "name"
  1145. msgid "Version Upgrade 4.4 to 4.5"
  1146. msgstr "4.4'ten 4.5'e Sürüm Yükseltme"
  1147. #: plugin.json
  1148. msgctxt "name"
  1149. msgid "Version Upgrade 4.5 to 4.6"
  1150. msgstr "4.5'ten 4.6'ya Sürüm Yükseltme"
  1151. #: plugin.json
  1152. msgctxt "name"
  1153. msgid "Version Upgrade 4.6.0 to 4.6.2"
  1154. msgstr "4.6.0'dan 4.6.2'ye Sürüm Yükseltme"
  1155. #: plugin.json
  1156. msgctxt "name"
  1157. msgid "Version Upgrade 4.6.2 to 4.7"
  1158. msgstr "4.6.2'den 4.7'ye Sürüm Yükseltme"
  1159. #: plugin.json
  1160. msgctxt "name"
  1161. msgid "Version Upgrade 4.7 to 4.8"
  1162. msgstr "4.7'den 4.8'e Sürüm Yükseltme"
  1163. #: plugin.json
  1164. msgctxt "name"
  1165. msgid "Version Upgrade 4.8 to 4.9"
  1166. msgstr "4.8'den 4.9'a Sürüm Yükseltme"
  1167. #: plugin.json
  1168. msgctxt "name"
  1169. msgid "Version Upgrade 4.9 to 4.10"
  1170. msgstr "4.9'dan 4.10'a Sürüm Yükseltme"
  1171. #: plugin.json
  1172. #, fuzzy
  1173. msgctxt "name"
  1174. msgid "Version Upgrade 5.2 to 5.3"
  1175. msgstr "3.2'dan 3.3'e Sürüm Yükseltme"
  1176. #: plugin.json
  1177. msgctxt "description"
  1178. msgid "Writes g-code to a compressed archive."
  1179. msgstr "G-code’u bir sıkıştırılmış arşive yazar."
  1180. #: plugin.json
  1181. msgctxt "description"
  1182. msgid "Writes g-code to a file."
  1183. msgstr "G-code’u bir dosyaya yazar."
  1184. #: plugin.json
  1185. msgctxt "name"
  1186. msgid "X-Ray View"
  1187. msgstr "Röntgen Görüntüsü"
  1188. #: plugin.json
  1189. msgctxt "name"
  1190. msgid "X3D Reader"
  1191. msgstr "X3D Okuyucu"
  1192. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
  1193. #, python-brace-format
  1194. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1195. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  1196. msgstr "Proje dosyası <filename>{0}</filename> bilinmeyen bir makine tipi içeriyor: <message>{1}</message>. Makine alınamıyor. Bunun yerine modeller alınacak."
  1197. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
  1198. msgctxt "@info:title"
  1199. msgid "Open Project File"
  1200. msgstr "Proje Dosyası Aç"
  1201. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
  1202. #: plugins/3MFReader/WorkspaceDialog.qml:99
  1203. #: plugins/3MFReader/WorkspaceDialog.qml:127
  1204. #: plugins/3MFReader/WorkspaceDialog.qml:134
  1205. #, fuzzy
  1206. msgctxt "@button"
  1207. msgid "Create new"
  1208. msgstr "Yeni oluştur"
  1209. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
  1210. #, python-brace-format
  1211. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1212. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  1213. msgstr "<filename>{0}</filename> proje dosyası aniden erişilemez oldu: <message>{1}</message>."
  1214. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
  1215. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
  1216. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
  1217. msgctxt "@info:title"
  1218. msgid "Can't Open Project File"
  1219. msgstr "Proje Dosyası Açılamıyor"
  1220. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
  1221. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
  1222. #, python-brace-format
  1223. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1224. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  1225. msgstr "Proje dosyası <filename>{0}</filename> bozuk: <message>{1}</message>."
  1226. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
  1227. #, python-brace-format
  1228. msgctxt "@info:error Don't translate the XML tag <filename>!"
  1229. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  1230. msgstr "<filename>{0}</filename> proje dosyası, UltiMaker Cura'nın bu sürümünde bilinmeyen profiller kullanılarak yapılmış."
  1231. #: plugins/3MFReader/WorkspaceDialog.py:233
  1232. msgctxt "@title:tab"
  1233. msgid "Recommended"
  1234. msgstr "Önerilen Ayarlar"
  1235. #: plugins/3MFReader/WorkspaceDialog.py:235
  1236. msgctxt "@title:tab"
  1237. msgid "Custom"
  1238. msgstr "Özel"
  1239. #: plugins/3MFReader/WorkspaceDialog.py:411
  1240. msgctxt "@info:status"
  1241. msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace."
  1242. msgstr "Bu projede kullanılan malzeme, Cura'da bulunmayan birtakım malzeme tanımlarını temel alıyor ve bu durum, istenmeyen baskı sonuçlarına sebep olabilir. Mağazadan tam malzeme paketini kurmanızı öneririz."
  1243. #: plugins/3MFReader/WorkspaceDialog.py:413
  1244. msgctxt "@info:title"
  1245. msgid "Material profiles not installed"
  1246. msgstr "Malzeme profilleri yüklü değil"
  1247. #: plugins/3MFReader/WorkspaceDialog.py:426
  1248. msgctxt "@action:button"
  1249. msgid "Install Materials"
  1250. msgstr "Malzeme Yükle"
  1251. #: plugins/3MFReader/WorkspaceDialog.qml:15
  1252. msgctxt "@title:window"
  1253. msgid "Open Project"
  1254. msgstr "Proje Aç"
  1255. #: plugins/3MFReader/WorkspaceDialog.qml:31
  1256. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61
  1257. msgctxt "@action:title"
  1258. msgid "Summary - Cura Project"
  1259. msgstr "Özet - Cura Projesi"
  1260. #: plugins/3MFReader/WorkspaceDialog.qml:65
  1261. msgctxt "@action:ComboBox Update/override existing profile"
  1262. msgid "Update existing"
  1263. msgstr "Var olanları güncelleştir"
  1264. #: plugins/3MFReader/WorkspaceDialog.qml:66
  1265. msgctxt "@action:ComboBox Save settings in a new profile"
  1266. msgid "Create new"
  1267. msgstr "Yeni oluştur"
  1268. #: plugins/3MFReader/WorkspaceDialog.qml:83
  1269. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  1270. msgctxt "@action:label"
  1271. msgid "Printer settings"
  1272. msgstr "Yazıcı ayarları"
  1273. #: plugins/3MFReader/WorkspaceDialog.qml:92
  1274. #: plugins/3MFReader/WorkspaceRow.qml:23
  1275. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106
  1276. msgctxt "@action:label"
  1277. msgid "Type"
  1278. msgstr "Tür"
  1279. #: plugins/3MFReader/WorkspaceDialog.qml:98
  1280. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  1281. msgctxt "@action:label"
  1282. msgid "Printer Group"
  1283. msgstr "Yazıcı Grubu"
  1284. #: plugins/3MFReader/WorkspaceDialog.qml:103
  1285. #, fuzzy
  1286. msgctxt "@action:label"
  1287. msgid "Open With"
  1288. msgstr "Aç"
  1289. #: plugins/3MFReader/WorkspaceDialog.qml:104
  1290. msgctxt "@info:tooltip"
  1291. msgid "Printer settings will be updated to match the settings saved with the project."
  1292. msgstr ""
  1293. #: plugins/3MFReader/WorkspaceDialog.qml:156
  1294. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222
  1295. msgctxt "@action:label"
  1296. msgid "Profile settings"
  1297. msgstr "Profil ayarları"
  1298. #: plugins/3MFReader/WorkspaceDialog.qml:166
  1299. #: plugins/3MFReader/WorkspaceDialog.qml:238
  1300. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  1301. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246
  1302. msgctxt "@action:label"
  1303. msgid "Name"
  1304. msgstr "İsim"
  1305. #: plugins/3MFReader/WorkspaceDialog.qml:172
  1306. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263
  1307. msgctxt "@action:label"
  1308. msgid "Intent"
  1309. msgstr "Intent"
  1310. #: plugins/3MFReader/WorkspaceDialog.qml:178
  1311. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230
  1312. msgctxt "@action:label"
  1313. msgid "Not in profile"
  1314. msgstr "Profilde değil"
  1315. #: plugins/3MFReader/WorkspaceDialog.qml:179
  1316. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235
  1317. msgctxt "@action:label"
  1318. msgid "%1 override"
  1319. msgid_plural "%1 overrides"
  1320. msgstr[0] "%1 geçersiz kılma"
  1321. msgstr[1] "%1 geçersiz kılmalar"
  1322. #: plugins/3MFReader/WorkspaceDialog.qml:185
  1323. msgctxt "@action:label"
  1324. msgid "Derivative from"
  1325. msgstr "Kaynağı"
  1326. #: plugins/3MFReader/WorkspaceDialog.qml:186
  1327. msgctxt "@action:label"
  1328. msgid "%1, %2 override"
  1329. msgid_plural "%1, %2 overrides"
  1330. msgstr[0] "%1, %2 geçersiz kılma"
  1331. msgstr[1] "%1, %2 geçersiz kılmalar"
  1332. #: plugins/3MFReader/WorkspaceDialog.qml:226
  1333. msgctxt "@action:label"
  1334. msgid "Material settings"
  1335. msgstr "Malzeme ayarları"
  1336. #: plugins/3MFReader/WorkspaceDialog.qml:280
  1337. msgctxt "@action:label"
  1338. msgid "Setting visibility"
  1339. msgstr "Görünürlük ayarı"
  1340. #: plugins/3MFReader/WorkspaceDialog.qml:290
  1341. msgctxt "@action:label"
  1342. msgid "Mode"
  1343. msgstr "Mod"
  1344. #: plugins/3MFReader/WorkspaceDialog.qml:296
  1345. msgctxt "@action:label"
  1346. msgid "%1 out of %2"
  1347. msgstr "%1 / %2"
  1348. #: plugins/3MFReader/WorkspaceDialog.qml:321
  1349. msgctxt "@action:warning"
  1350. msgid "Loading a project will clear all models on the build plate."
  1351. msgstr "Bir projenin yüklenmesi derleme levhasındaki tüm modelleri siler."
  1352. #: plugins/3MFReader/WorkspaceDialog.qml:367
  1353. msgctxt "@label"
  1354. msgid "The material used in this project is currently not installed in Cura.<br/>Install the material profile and reopen the project."
  1355. msgstr "Bu projede kullanılan malzeme şu anda Cura’da yüklü değil.<br/>Malzeme profilini yükleyin ve projeyi yeniden açın."
  1356. #: plugins/3MFReader/WorkspaceDialog.qml:392
  1357. msgctxt "@action:button"
  1358. msgid "Open"
  1359. msgstr "Aç"
  1360. #: plugins/3MFReader/WorkspaceDialog.qml:398
  1361. msgctxt "@action:button"
  1362. msgid "Open project anyway"
  1363. msgstr "Projeyi yine de aç"
  1364. #: plugins/3MFReader/WorkspaceDialog.qml:407
  1365. msgctxt "@action:button"
  1366. msgid "Install missing material"
  1367. msgstr "Eksik malzemeyi yükle"
  1368. #: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33
  1369. msgctxt "@item:inlistbox"
  1370. msgid "3MF File"
  1371. msgstr "3MF Dosyası"
  1372. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  1373. msgctxt "@error:zip"
  1374. msgid "3MF Writer plug-in is corrupt."
  1375. msgstr "3MF Writer eklentisi bozuk."
  1376. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  1377. msgctxt "@error"
  1378. msgid "There is no workspace yet to write. Please add a printer first."
  1379. msgstr "Henüz yazılacak bir çalışma alanı yok. Lütfen önce bir yazıcı ekleyin."
  1380. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64
  1381. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  1382. msgctxt "@error:zip"
  1383. msgid "No permission to write the workspace here."
  1384. msgstr "Burada çalışma alanını yazmak için izin yok."
  1385. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  1386. msgctxt "@error:zip"
  1387. msgid "The operating system does not allow saving a project file to this location or with this file name."
  1388. msgstr "İşletim sistemi, proje dosyalarının bu konuma veya bu dosya adıyla kaydedilmesine izin vermiyor."
  1389. #: plugins/3MFWriter/ThreeMFWriter.py:240
  1390. msgctxt "@error:zip"
  1391. msgid "Error writing 3mf file."
  1392. msgstr "3mf dosyasını yazarken hata oluştu."
  1393. #: plugins/3MFWriter/__init__.py:28
  1394. msgctxt "@item:inlistbox"
  1395. msgid "3MF file"
  1396. msgstr "3MF dosyası"
  1397. #: plugins/3MFWriter/__init__.py:36
  1398. msgctxt "@item:inlistbox"
  1399. msgid "Cura Project 3MF file"
  1400. msgstr "Cura Projesi 3MF dosyası"
  1401. #: plugins/AMFReader/__init__.py:15
  1402. msgctxt "@item:inlistbox"
  1403. msgid "AMF File"
  1404. msgstr "AMF Dosyası"
  1405. #: plugins/CuraDrive/src/CreateBackupJob.py:25
  1406. msgctxt "@info:title"
  1407. msgid "Backups"
  1408. msgstr "Yedeklemeler"
  1409. #: plugins/CuraDrive/src/CreateBackupJob.py:26
  1410. msgctxt "@info:backup_status"
  1411. msgid "There was an error while uploading your backup."
  1412. msgstr "Yedeklemeniz yüklenirken bir hata oluştu."
  1413. #: plugins/CuraDrive/src/CreateBackupJob.py:46
  1414. msgctxt "@info:backup_status"
  1415. msgid "Creating your backup..."
  1416. msgstr "Yedeklemeniz oluşturuluyor..."
  1417. #: plugins/CuraDrive/src/CreateBackupJob.py:55
  1418. msgctxt "@info:backup_status"
  1419. msgid "There was an error while creating your backup."
  1420. msgstr "Yedeklemeniz oluşturulurken bir hata oluştu."
  1421. #: plugins/CuraDrive/src/CreateBackupJob.py:59
  1422. msgctxt "@info:backup_status"
  1423. msgid "Uploading your backup..."
  1424. msgstr "Yedeklemeniz yükleniyor..."
  1425. #: plugins/CuraDrive/src/CreateBackupJob.py:69
  1426. msgctxt "@info:backup_status"
  1427. msgid "Your backup has finished uploading."
  1428. msgstr "Yedeklemenizin yüklenmesi tamamlandı."
  1429. #: plugins/CuraDrive/src/CreateBackupJob.py:103
  1430. msgctxt "@error:file_size"
  1431. msgid "The backup exceeds the maximum file size."
  1432. msgstr "Yedekleme maksimum dosya boyutunu aşıyor."
  1433. #: plugins/CuraDrive/src/DriveApiService.py:86
  1434. #: plugins/CuraDrive/src/RestoreBackupJob.py:26
  1435. msgctxt "@info:backup_status"
  1436. msgid "There was an error trying to restore your backup."
  1437. msgstr "Yedeklemeniz geri yüklenirken bir hata oluştu."
  1438. #: plugins/CuraDrive/src/DrivePluginExtension.py:69
  1439. msgctxt "@item:inmenu"
  1440. msgid "Manage backups"
  1441. msgstr "Yedeklemeleri yönet"
  1442. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  1443. msgctxt "@button"
  1444. msgid "Want more?"
  1445. msgstr "Daha fazla seçenek görüntülemek ister misiniz?"
  1446. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  1447. msgctxt "@button"
  1448. msgid "Backup Now"
  1449. msgstr "Şimdi Yedekle"
  1450. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  1451. msgctxt "@checkbox:description"
  1452. msgid "Auto Backup"
  1453. msgstr "Otomatik Yedekle"
  1454. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  1455. msgctxt "@checkbox:description"
  1456. msgid "Automatically create a backup each day that Cura is started."
  1457. msgstr "Cura’nın başlatıldığı günlerde otomatik olarak yedekleme yapar."
  1458. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  1459. msgctxt "@button"
  1460. msgid "Restore"
  1461. msgstr "Geri Yükle"
  1462. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  1463. msgctxt "@dialog:title"
  1464. msgid "Delete Backup"
  1465. msgstr "Yedeklemeyi Sil"
  1466. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  1467. msgctxt "@dialog:info"
  1468. msgid "Are you sure you want to delete this backup? This cannot be undone."
  1469. msgstr "Bu yedeklemeyi silmek istediğinizden emin misiniz? Bu eylem geri alınamaz."
  1470. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  1471. msgctxt "@dialog:title"
  1472. msgid "Restore Backup"
  1473. msgstr "Yedeklemeyi Geri Yükle"
  1474. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  1475. msgctxt "@dialog:info"
  1476. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  1477. msgstr "Yedeklemeniz geri yüklenmeden öne Cura’yı yeniden başlatmalısınız. Cura’yı şimdi kapatmak istiyor musunuz?"
  1478. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  1479. msgctxt "@backuplist:label"
  1480. msgid "Cura Version"
  1481. msgstr "Cura Sürümü"
  1482. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  1483. msgctxt "@backuplist:label"
  1484. msgid "Machines"
  1485. msgstr "Makineler"
  1486. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  1487. msgctxt "@backuplist:label"
  1488. msgid "Materials"
  1489. msgstr "Malzemeler"
  1490. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  1491. msgctxt "@backuplist:label"
  1492. msgid "Profiles"
  1493. msgstr "Profiller"
  1494. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  1495. msgctxt "@backuplist:label"
  1496. msgid "Plugins"
  1497. msgstr "Eklentiler"
  1498. #: plugins/CuraDrive/src/qml/main.qml:25
  1499. msgctxt "@title:window"
  1500. msgid "Cura Backups"
  1501. msgstr "Cura Yedeklemeleri"
  1502. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1503. msgctxt "@title"
  1504. msgid "My Backups"
  1505. msgstr "Yedeklemelerim"
  1506. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36
  1507. msgctxt "@empty_state"
  1508. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1509. msgstr "Şu anda yedeklemeniz yok. Oluşturmak için “Şimdi Yedekle” düğmesini kullanın."
  1510. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55
  1511. msgctxt "@backup_limit_info"
  1512. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1513. msgstr "Önizleme aşamasında en fazla 5 yedekleme görüntüleyebilirsiniz. Önceki yedeklemeleri görmek için mevcut yedeklemelerden birini kaldırın."
  1514. #: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1515. msgctxt "@description"
  1516. msgid "Backup and synchronize your Cura settings."
  1517. msgstr "Cura ayarlarınızı yedekleyin ve senkronize edin."
  1518. #: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47
  1519. #: resources/qml/Account/GeneralOperations.qml:49
  1520. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180
  1521. #: resources/qml/WelcomePages/CloudContent.qml:212
  1522. msgctxt "@button"
  1523. msgid "Sign in"
  1524. msgstr "Giriş yap"
  1525. #: plugins/CuraEngineBackend/CuraEngineBackend.py:162
  1526. msgctxt "@message"
  1527. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  1528. msgstr "Dilimleme işlemi beklenmeyen bir hatayla başarısız oldu. Lütfen sorun izleyicimizde hata bildirmeyi düşünün."
  1529. #: plugins/CuraEngineBackend/CuraEngineBackend.py:163
  1530. msgctxt "@message:title"
  1531. msgid "Slicing failed"
  1532. msgstr "Dilimleme başarısız"
  1533. #: plugins/CuraEngineBackend/CuraEngineBackend.py:168
  1534. msgctxt "@message:button"
  1535. msgid "Report a bug"
  1536. msgstr "Hata bildirin"
  1537. #: plugins/CuraEngineBackend/CuraEngineBackend.py:169
  1538. msgctxt "@message:description"
  1539. msgid "Report a bug on UltiMaker Cura's issue tracker."
  1540. msgstr "UltiMaker Cura'nın sorun izleyicisinde hata bildirin."
  1541. #: plugins/CuraEngineBackend/CuraEngineBackend.py:401
  1542. msgctxt "@info:status"
  1543. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  1544. msgstr "Mevcut malzeme, seçilen makine veya yapılandırma ile uyumlu olmadığından mevcut malzeme ile dilimlenemedi."
  1545. #: plugins/CuraEngineBackend/CuraEngineBackend.py:402
  1546. #: plugins/CuraEngineBackend/CuraEngineBackend.py:435
  1547. #: plugins/CuraEngineBackend/CuraEngineBackend.py:462
  1548. #: plugins/CuraEngineBackend/CuraEngineBackend.py:474
  1549. #: plugins/CuraEngineBackend/CuraEngineBackend.py:486
  1550. #: plugins/CuraEngineBackend/CuraEngineBackend.py:499
  1551. msgctxt "@info:title"
  1552. msgid "Unable to slice"
  1553. msgstr "Dilimlenemedi"
  1554. #: plugins/CuraEngineBackend/CuraEngineBackend.py:434
  1555. #, python-brace-format
  1556. msgctxt "@info:status"
  1557. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  1558. msgstr "Geçerli ayarlarla dilimlenemiyor. Şu ayarlarda hata var: {0}"
  1559. #: plugins/CuraEngineBackend/CuraEngineBackend.py:461
  1560. #, python-brace-format
  1561. msgctxt "@info:status"
  1562. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  1563. msgstr "Modele özgü ayarlar nedeniyle dilimlenemedi. Şu ayarlar bir veya daha fazla modelde hataya yol açıyor: {error_labels}"
  1564. #: plugins/CuraEngineBackend/CuraEngineBackend.py:473
  1565. msgctxt "@info:status"
  1566. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  1567. msgstr "İlk direk veya ilk konum(lar) geçersiz olduğu için dilimlenemiyor."
  1568. #: plugins/CuraEngineBackend/CuraEngineBackend.py:485
  1569. #, python-format
  1570. msgctxt "@info:status"
  1571. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  1572. msgstr "Etkisizleştirilmiş Extruder %s ile ilgili nesneler olduğundan dilimleme yapılamıyor."
  1573. #: plugins/CuraEngineBackend/CuraEngineBackend.py:495
  1574. msgctxt "@info:status"
  1575. msgid ""
  1576. "Please review settings and check if your models:\n"
  1577. "- Fit within the build volume\n"
  1578. "- Are assigned to an enabled extruder\n"
  1579. "- Are not all set as modifier meshes"
  1580. msgstr ""
  1581. "Lütfen ayarları gözden geçirin ve modellerinizi şu durumlara karşı kontrol edin:\n"
  1582. "- Yapı hacmine sığma\n"
  1583. "- Etkin bir ekstrüdere atanma\n"
  1584. "- Değiştirici kafesler olarak ayarlanmama"
  1585. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  1586. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  1587. msgctxt "@info:status"
  1588. msgid "Processing Layers"
  1589. msgstr "Katmanlar İşleniyor"
  1590. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  1591. msgctxt "@info:title"
  1592. msgid "Information"
  1593. msgstr "Bilgi"
  1594. #: plugins/CuraProfileReader/__init__.py:14
  1595. #: plugins/CuraProfileWriter/__init__.py:14
  1596. msgctxt "@item:inlistbox"
  1597. msgid "Cura Profile"
  1598. msgstr "Cura Profili"
  1599. #: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216
  1600. msgctxt "@option"
  1601. msgid "Save Cura project and print file"
  1602. msgstr "Cura projesini kaydet ve dosyayı yazdır"
  1603. #: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217
  1604. msgctxt "@option"
  1605. msgid "Save Cura project"
  1606. msgstr "Cura projesini kaydet"
  1607. #: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19
  1608. msgctxt "@text Placeholder for the username if it has been deleted"
  1609. msgid "deleted user"
  1610. msgstr "silinmiş kullanıcı"
  1611. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1612. msgctxt "@info"
  1613. msgid "Could not access update information."
  1614. msgstr "Güncelleme bilgilerine erişilemedi."
  1615. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1616. #, python-brace-format
  1617. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1618. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  1619. msgstr "{machine_name} cihazınız için yeni özellikler veya hata düzeltmeleri mevcut olabilir! Henüz son sürüme geçmediyseniz yazıcınızın donanım yazılımını {latest_version} sürümüne güncellemeniz önerilir."
  1620. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1621. #, python-format
  1622. msgctxt "@info:title The %s gets replaced with the printer name."
  1623. msgid "New %s stable firmware available"
  1624. msgstr "Yeni %s istikrarlı donanım yazılımı yayınlandı"
  1625. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1626. msgctxt "@action:button"
  1627. msgid "How to update"
  1628. msgstr "Nasıl güncellenir"
  1629. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  1630. msgctxt "@action"
  1631. msgid "Update Firmware"
  1632. msgstr "Aygıt Yazılımını Güncelle"
  1633. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1634. msgctxt "@title"
  1635. msgid "Update Firmware"
  1636. msgstr "Aygıt Yazılımını Güncelle"
  1637. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  1638. msgctxt "@label"
  1639. msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
  1640. msgstr "Aygıt yazılımı doğrudan 3B yazıcı üzerinden çalışan bir yazılım parçasıdır. Bu aygıt yazılımı adım motorlarını kontrol eder, sıcaklığı düzenler ve sonunda yazıcının çalışmasını sağlar."
  1641. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  1642. msgctxt "@label"
  1643. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1644. msgstr "Yeni yazıcıları olan aygıt yazılımı gönderimi yararlı olmaktadır, ancak yeni sürümler daha fazla özellik ve geliştirmeye eğilimlidir."
  1645. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  1646. msgctxt "@action:button"
  1647. msgid "Automatically upgrade Firmware"
  1648. msgstr "Aygıt Yazılımını otomatik olarak yükselt"
  1649. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  1650. msgctxt "@action:button"
  1651. msgid "Upload custom Firmware"
  1652. msgstr "Özel Aygıt Yazılımı Yükle"
  1653. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  1654. msgctxt "@label"
  1655. msgid "Firmware can not be updated because there is no connection with the printer."
  1656. msgstr "Yazıcı ile bağlantı kurulmadığı için aygıt yazılımı güncellenemiyor."
  1657. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  1658. msgctxt "@label"
  1659. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1660. msgstr "Yazıcı bağlantısı aygıt yazılımını yükseltmeyi desteklemediği için aygıt yazılımı güncellenemiyor."
  1661. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  1662. msgctxt "@title:window"
  1663. msgid "Select custom firmware"
  1664. msgstr "Özel aygıt yazılımı seçin"
  1665. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113
  1666. msgctxt "@title:window"
  1667. msgid "Firmware Update"
  1668. msgstr "Aygıt Yazılımı Güncellemesi"
  1669. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137
  1670. msgctxt "@label"
  1671. msgid "Updating firmware."
  1672. msgstr "Aygıt yazılımı güncelleniyor."
  1673. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139
  1674. msgctxt "@label"
  1675. msgid "Firmware update completed."
  1676. msgstr "Aygıt yazılımı güncellemesi tamamlandı."
  1677. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141
  1678. msgctxt "@label"
  1679. msgid "Firmware update failed due to an unknown error."
  1680. msgstr "Bilinmeyen bir hata nedeniyle aygıt yazılımı güncellemesi başarısız oldu."
  1681. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1682. msgctxt "@label"
  1683. msgid "Firmware update failed due to an communication error."
  1684. msgstr "Bir iletişim hatası nedeniyle aygıt yazılımı güncellemesi başarısız oldu."
  1685. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1686. msgctxt "@label"
  1687. msgid "Firmware update failed due to an input/output error."
  1688. msgstr "Bir girdi/çıktı hatası nedeniyle aygıt yazılımı güncellemesi başarısız oldu."
  1689. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1690. msgctxt "@label"
  1691. msgid "Firmware update failed due to missing firmware."
  1692. msgstr "Eksik aygıt yazılımı nedeniyle aygıt yazılımı güncellemesi başarısız oldu."
  1693. #: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17
  1694. msgctxt "@item:inlistbox"
  1695. msgid "Compressed G-code File"
  1696. msgstr "Sıkıştırılmış G-code Dosyası"
  1697. #: plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1698. msgctxt "@error:not supported"
  1699. msgid "GCodeGzWriter does not support text mode."
  1700. msgstr "GCodeGzWriter yazı modunu desteklemez."
  1701. #: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14
  1702. #: plugins/GCodeWriter/__init__.py:16
  1703. msgctxt "@item:inlistbox"
  1704. msgid "G-code File"
  1705. msgstr "G-code dosyası"
  1706. #: plugins/GCodeReader/FlavorParser.py:350
  1707. msgctxt "@info:status"
  1708. msgid "Parsing G-code"
  1709. msgstr "G-code ayrıştırma"
  1710. #: plugins/GCodeReader/FlavorParser.py:352
  1711. #: plugins/GCodeReader/FlavorParser.py:506
  1712. msgctxt "@info:title"
  1713. msgid "G-code Details"
  1714. msgstr "G-code Ayrıntıları"
  1715. #: plugins/GCodeReader/FlavorParser.py:504
  1716. msgctxt "@info:generic"
  1717. msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
  1718. msgstr "Dosya göndermeden önce g-code’un yazıcınız ve yazıcı yapılandırmanız için uygun olduğundan emin olun. G-code temsili doğru olmayabilir."
  1719. #: plugins/GCodeReader/__init__.py:18
  1720. msgctxt "@item:inlistbox"
  1721. msgid "G File"
  1722. msgstr "G Dosyası"
  1723. #: plugins/GCodeWriter/GCodeWriter.py:75
  1724. msgctxt "@error:not supported"
  1725. msgid "GCodeWriter does not support non-text mode."
  1726. msgstr "GCodeWriter metin dışı modu desteklemez."
  1727. #: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97
  1728. msgctxt "@warning:status"
  1729. msgid "Please prepare G-code before exporting."
  1730. msgstr "Lütfen dışa aktarmadan önce G-code'u hazırlayın."
  1731. #: plugins/ImageReader/ConfigUI.qml:14
  1732. msgctxt "@title:window"
  1733. msgid "Convert Image"
  1734. msgstr "Resmi Dönüştür"
  1735. #: plugins/ImageReader/ConfigUI.qml:33
  1736. msgctxt "@action:label"
  1737. msgid "Height (mm)"
  1738. msgstr "Yükseklik (mm)"
  1739. #: plugins/ImageReader/ConfigUI.qml:56
  1740. msgctxt "@info:tooltip"
  1741. msgid "The maximum distance of each pixel from \"Base.\""
  1742. msgstr "Her bir pikselin “Taban”dan en yüksek mesafesi."
  1743. #: plugins/ImageReader/ConfigUI.qml:66
  1744. msgctxt "@action:label"
  1745. msgid "Base (mm)"
  1746. msgstr "Taban (mm)"
  1747. #: plugins/ImageReader/ConfigUI.qml:90
  1748. msgctxt "@info:tooltip"
  1749. msgid "The base height from the build plate in millimeters."
  1750. msgstr "Tabanın yapı levhasından milimetre cinsinden yüksekliği."
  1751. #: plugins/ImageReader/ConfigUI.qml:100
  1752. msgctxt "@action:label"
  1753. msgid "Width (mm)"
  1754. msgstr "Genişlik (mm)"
  1755. #: plugins/ImageReader/ConfigUI.qml:124
  1756. msgctxt "@info:tooltip"
  1757. msgid "The width in millimeters on the build plate"
  1758. msgstr "Yapı plakasındaki milimetre cinsinden genişlik"
  1759. #: plugins/ImageReader/ConfigUI.qml:134
  1760. msgctxt "@action:label"
  1761. msgid "Depth (mm)"
  1762. msgstr "Derinlik (mm)"
  1763. #: plugins/ImageReader/ConfigUI.qml:158
  1764. msgctxt "@info:tooltip"
  1765. msgid "The depth in millimeters on the build plate"
  1766. msgstr "Yapı levhasındaki milimetre cinsinden derinlik"
  1767. #: plugins/ImageReader/ConfigUI.qml:187
  1768. msgctxt "@item:inlistbox"
  1769. msgid "Darker is higher"
  1770. msgstr "Daha koyu olan daha yüksek"
  1771. #: plugins/ImageReader/ConfigUI.qml:188
  1772. msgctxt "@item:inlistbox"
  1773. msgid "Lighter is higher"
  1774. msgstr "Daha açık olan daha yüksek"
  1775. #: plugins/ImageReader/ConfigUI.qml:195
  1776. msgctxt "@info:tooltip"
  1777. msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
  1778. msgstr "Litofanlar için, daha fazla ışığın girmesini engellemek amacıyla koyu renk pikseller daha kalın olan bölgelere denk gelmelidir. Yükseklik haritaları için daha açık renk pikseller daha yüksek araziyi ifade eder; bu nedenle daha açık renk piksellerin oluşturulan 3D modelde daha kalın bölgelere denk gelmesi gerekir."
  1779. #: plugins/ImageReader/ConfigUI.qml:205
  1780. msgctxt "@action:label"
  1781. msgid "Color Model"
  1782. msgstr "Renk Modeli"
  1783. #: plugins/ImageReader/ConfigUI.qml:224
  1784. msgctxt "@item:inlistbox"
  1785. msgid "Linear"
  1786. msgstr "Doğrusal"
  1787. #: plugins/ImageReader/ConfigUI.qml:225
  1788. msgctxt "@item:inlistbox"
  1789. msgid "Translucency"
  1790. msgstr "Yarı saydamlık"
  1791. #: plugins/ImageReader/ConfigUI.qml:232
  1792. msgctxt "@info:tooltip"
  1793. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1794. msgstr "Litofanlar için yarı saydamlık sağlayacak basit bir logaritmik model bulunur. Yükseklik haritaları için piksel değerleri doğrusal yüksekliklere karşılık gelir."
  1795. #: plugins/ImageReader/ConfigUI.qml:242
  1796. msgctxt "@action:label"
  1797. msgid "1mm Transmittance (%)"
  1798. msgstr "1 mm Geçirgenlik (%)"
  1799. #: plugins/ImageReader/ConfigUI.qml:263
  1800. msgctxt "@info:tooltip"
  1801. msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
  1802. msgstr "1 milimetre kalınlığında bir baskıya nüfuz eden ışığın yüzdesi. Bu değerin düşürülmesi karanlık bölgelerdeki kontrastı arttırır ve görüntünün açık bölgelerindeki kontrastı azaltır."
  1803. #: plugins/ImageReader/ConfigUI.qml:274
  1804. msgctxt "@action:label"
  1805. msgid "Smoothing"
  1806. msgstr "Düzeltme"
  1807. #: plugins/ImageReader/ConfigUI.qml:298
  1808. msgctxt "@info:tooltip"
  1809. msgid "The amount of smoothing to apply to the image."
  1810. msgstr "Resme uygulanacak düzeltme miktarı."
  1811. #: plugins/ImageReader/ConfigUI.qml:329
  1812. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136
  1813. #: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25
  1814. msgctxt "@action:button"
  1815. msgid "OK"
  1816. msgstr "Tamam"
  1817. #: plugins/ImageReader/__init__.py:14
  1818. msgctxt "@item:inlistbox"
  1819. msgid "JPG Image"
  1820. msgstr "JPG Resmi"
  1821. #: plugins/ImageReader/__init__.py:18
  1822. msgctxt "@item:inlistbox"
  1823. msgid "JPEG Image"
  1824. msgstr "JPEG Resmi"
  1825. #: plugins/ImageReader/__init__.py:22
  1826. msgctxt "@item:inlistbox"
  1827. msgid "PNG Image"
  1828. msgstr "PNG Resmi"
  1829. #: plugins/ImageReader/__init__.py:26
  1830. msgctxt "@item:inlistbox"
  1831. msgid "BMP Image"
  1832. msgstr "BMP Resmi"
  1833. #: plugins/ImageReader/__init__.py:30
  1834. msgctxt "@item:inlistbox"
  1835. msgid "GIF Image"
  1836. msgstr "GIF Resmi"
  1837. #: plugins/LegacyProfileReader/__init__.py:14
  1838. msgctxt "@item:inlistbox"
  1839. msgid "Cura 15.04 profiles"
  1840. msgstr "Cura 15.04 profilleri"
  1841. #: plugins/MachineSettingsAction/MachineSettingsAction.py:32
  1842. msgctxt "@action"
  1843. msgid "Machine Settings"
  1844. msgstr "Makine Ayarları"
  1845. #: plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1846. msgctxt "@title:tab"
  1847. msgid "Printer"
  1848. msgstr "Yazıcı"
  1849. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1850. msgctxt "@title:label"
  1851. msgid "Nozzle Settings"
  1852. msgstr "Nozül Ayarları"
  1853. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74
  1854. msgctxt "@label"
  1855. msgid "Nozzle size"
  1856. msgstr "Nozzle boyutu"
  1857. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78
  1858. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92
  1859. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108
  1860. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123
  1861. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72
  1862. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87
  1863. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102
  1864. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1865. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1866. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1867. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1868. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1869. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85
  1870. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99
  1871. msgctxt "@label"
  1872. msgid "mm"
  1873. msgstr "mm"
  1874. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88
  1875. msgctxt "@label"
  1876. msgid "Compatible material diameter"
  1877. msgstr "Uyumlu malzeme çapı"
  1878. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104
  1879. msgctxt "@label"
  1880. msgid "Nozzle offset X"
  1881. msgstr "Nozül X ofseti"
  1882. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119
  1883. msgctxt "@label"
  1884. msgid "Nozzle offset Y"
  1885. msgstr "Nozül Y ofseti"
  1886. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134
  1887. msgctxt "@label"
  1888. msgid "Cooling Fan Number"
  1889. msgstr "Soğutma Fanı Numarası"
  1890. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1891. msgctxt "@title:label"
  1892. msgid "Extruder Start G-code"
  1893. msgstr "Ekstruder G-Code'u Başlatma"
  1894. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1895. msgctxt "@title:label"
  1896. msgid "Extruder End G-code"
  1897. msgstr "Ekstruder G-Code'u Sonlandırma"
  1898. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1899. msgctxt "@title:label"
  1900. msgid "Printer Settings"
  1901. msgstr "Yazıcı Ayarları"
  1902. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68
  1903. msgctxt "@label"
  1904. msgid "X (Width)"
  1905. msgstr "X (Genişlik)"
  1906. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83
  1907. msgctxt "@label"
  1908. msgid "Y (Depth)"
  1909. msgstr "Y (Derinlik)"
  1910. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98
  1911. msgctxt "@label"
  1912. msgid "Z (Height)"
  1913. msgstr "Z (Yükseklik)"
  1914. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112
  1915. msgctxt "@label"
  1916. msgid "Build plate shape"
  1917. msgstr "Yapı levhası şekli"
  1918. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125
  1919. msgctxt "@label"
  1920. msgid "Origin at center"
  1921. msgstr "Merkez nokta"
  1922. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137
  1923. msgctxt "@label"
  1924. msgid "Heated bed"
  1925. msgstr "Isıtılmış yatak"
  1926. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149
  1927. msgctxt "@label"
  1928. msgid "Heated build volume"
  1929. msgstr "Isıtılmış yapı hacmi"
  1930. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161
  1931. msgctxt "@label"
  1932. msgid "G-code flavor"
  1933. msgstr "G-code türü"
  1934. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185
  1935. msgctxt "@title:label"
  1936. msgid "Printhead Settings"
  1937. msgstr "Yazıcı Başlığı Ayarları"
  1938. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197
  1939. msgctxt "@label"
  1940. msgid "X min"
  1941. msgstr "X min"
  1942. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217
  1943. msgctxt "@label"
  1944. msgid "Y min"
  1945. msgstr "Y min"
  1946. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237
  1947. msgctxt "@label"
  1948. msgid "X max"
  1949. msgstr "X maks"
  1950. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257
  1951. msgctxt "@label"
  1952. msgid "Y max"
  1953. msgstr "Y maks"
  1954. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275
  1955. msgctxt "@label"
  1956. msgid "Gantry Height"
  1957. msgstr "Portal Yüksekliği"
  1958. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289
  1959. msgctxt "@label"
  1960. msgid "Number of Extruders"
  1961. msgstr "Ekstrüder Sayısı"
  1962. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341
  1963. msgctxt "@label"
  1964. msgid "Apply Extruder offsets to GCode"
  1965. msgstr "Ekstrüder ofsetlerini GCode'a uygula"
  1966. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389
  1967. msgctxt "@title:label"
  1968. msgid "Start G-code"
  1969. msgstr "G-code’u Başlat"
  1970. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400
  1971. msgctxt "@title:label"
  1972. msgid "End G-code"
  1973. msgstr "G-code’u Sonlandır"
  1974. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144
  1975. msgctxt "@info:generic"
  1976. msgid "Do you want to sync material and software packages with your account?"
  1977. msgstr "Malzeme ve yazılım paketlerini hesabınızla senkronize etmek istiyor musunuz?"
  1978. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145
  1979. #: plugins/Marketplace/CloudSync/DownloadPresenter.py:95
  1980. msgctxt "@info:title"
  1981. msgid "Changes detected from your UltiMaker account"
  1982. msgstr "UltiMaker hesabınızda değişiklik tespit edildi"
  1983. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147
  1984. msgctxt "@action:button"
  1985. msgid "Sync"
  1986. msgstr "Senkronize et"
  1987. #: plugins/Marketplace/CloudSync/DownloadPresenter.py:91
  1988. msgctxt "@info:generic"
  1989. msgid "Syncing..."
  1990. msgstr "Senkronize ediliyor..."
  1991. #: plugins/Marketplace/CloudSync/LicenseModel.py:12
  1992. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:79
  1993. msgctxt "@button"
  1994. msgid "Decline"
  1995. msgstr "Reddet"
  1996. #: plugins/Marketplace/CloudSync/LicenseModel.py:13
  1997. #: resources/qml/WelcomePages/UserAgreementContent.qml:53
  1998. msgctxt "@button"
  1999. msgid "Agree"
  2000. msgstr "Kabul ediyorum"
  2001. #: plugins/Marketplace/CloudSync/LicenseModel.py:77
  2002. msgctxt "@title:window"
  2003. msgid "Plugin License Agreement"
  2004. msgstr "Eklenti Lisans Anlaşması"
  2005. #: plugins/Marketplace/CloudSync/LicensePresenter.py:42
  2006. msgctxt "@button"
  2007. msgid "Decline and remove from account"
  2008. msgstr "Reddet ve hesaptan kaldır"
  2009. #: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22
  2010. msgctxt "@info:generic"
  2011. msgid "You need to quit and restart {} before changes have effect."
  2012. msgstr "Değişikliklerin etkili olması için {} uygulamasını kapatarak yeniden başlatmalısınız."
  2013. #: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79
  2014. msgctxt "@info:generic"
  2015. msgid "{} plugins failed to download"
  2016. msgstr "{} eklenti indirilemedi"
  2017. #: plugins/Marketplace/LocalPackageList.py:28
  2018. msgctxt "@label"
  2019. msgid "Installed Plugins"
  2020. msgstr "Yüklü eklentiler"
  2021. #: plugins/Marketplace/LocalPackageList.py:29
  2022. msgctxt "@label"
  2023. msgid "Installed Materials"
  2024. msgstr "Yüklü malzemeler"
  2025. #: plugins/Marketplace/LocalPackageList.py:33
  2026. msgctxt "@label"
  2027. msgid "Bundled Plugins"
  2028. msgstr "Paketli eklentiler"
  2029. #: plugins/Marketplace/LocalPackageList.py:34
  2030. msgctxt "@label"
  2031. msgid "Bundled Materials"
  2032. msgstr "Paketli malzemeler"
  2033. #: plugins/Marketplace/PackageModel.py:43
  2034. msgctxt "@label:property"
  2035. msgid "Unknown Package"
  2036. msgstr "Bilinmeyen Paket"
  2037. #: plugins/Marketplace/PackageModel.py:66
  2038. msgctxt "@label:property"
  2039. msgid "Unknown Author"
  2040. msgstr "Bilinmeyen Yazar"
  2041. #: plugins/Marketplace/PackageModel.py:95
  2042. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  2043. msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk."
  2044. msgstr ""
  2045. #: plugins/Marketplace/RemotePackageList.py:117
  2046. msgctxt "@info:error"
  2047. msgid "Could not interpret the server's response."
  2048. msgstr "Sunucunun yanıtı yorumlanamadı."
  2049. #: plugins/Marketplace/RemotePackageList.py:148
  2050. msgctxt "@info:error"
  2051. msgid "Could not reach Marketplace."
  2052. msgstr "Pazar Yerine ulaşılamadı."
  2053. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15
  2054. msgctxt "@title"
  2055. msgid "Changes from your account"
  2056. msgstr "Hesabınızda değişiklik var"
  2057. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  2058. msgctxt "@button"
  2059. msgid "Dismiss"
  2060. msgstr "Kapat"
  2061. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  2062. #: resources/qml/WelcomePages/DataCollectionsContent.qml:118
  2063. #: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76
  2064. #: resources/qml/WelcomePages/WhatsNewContent.qml:175
  2065. msgctxt "@button"
  2066. msgid "Next"
  2067. msgstr "Sonraki"
  2068. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52
  2069. msgctxt "@label"
  2070. msgid "The following packages will be added:"
  2071. msgstr "Aşağıdaki paketler eklenecek:"
  2072. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94
  2073. msgctxt "@label"
  2074. msgid "The following packages can not be installed because of an incompatible Cura version:"
  2075. msgstr "Aşağıdaki paketler uyumsuz Cura sürümü nedeniyle yüklenemiyor:"
  2076. #: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15
  2077. msgctxt "@title"
  2078. msgid "Install missing Materials"
  2079. msgstr "Eksik Malzemeleri yükle"
  2080. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:15
  2081. msgctxt "@button"
  2082. msgid "Plugin license agreement"
  2083. msgstr "Eklenti Lisans Anlaşması"
  2084. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:47
  2085. msgctxt "@text"
  2086. msgid "Please read and agree with the plugin licence."
  2087. msgstr "Eklenti lisansını okuyun ve kabul edin."
  2088. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:70
  2089. msgctxt "@button"
  2090. msgid "Accept"
  2091. msgstr "Kabul et"
  2092. #: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  2093. msgctxt "@info:tooltip"
  2094. msgid "Manage packages"
  2095. msgstr "Paketleri yönet"
  2096. #: plugins/Marketplace/resources/qml/ManagedPackages.qml:12
  2097. msgctxt "@header"
  2098. msgid "Manage packages"
  2099. msgstr "Paketleri yönet"
  2100. #: plugins/Marketplace/resources/qml/ManagedPackages.qml:16
  2101. #, fuzzy
  2102. msgctxt "@text"
  2103. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  2104. msgstr "UltiMaker Cura eklentilerinizi ve malzeme profillerini burada yönetin. Eklentilerinizi güncel tuttuğunuzdan ve ayarınızı düzenli olarak yedeklediğinizden emin olun."
  2105. #: plugins/Marketplace/resources/qml/Marketplace.qml:87
  2106. msgctxt "@title"
  2107. msgid "Loading..."
  2108. msgstr "Yükleniyor..."
  2109. #: plugins/Marketplace/resources/qml/Marketplace.qml:148
  2110. msgctxt "@button"
  2111. msgid "Plugins"
  2112. msgstr "Eklentiler"
  2113. #: plugins/Marketplace/resources/qml/Marketplace.qml:156
  2114. msgctxt "@button"
  2115. msgid "Materials"
  2116. msgstr "Malzemeler"
  2117. #: plugins/Marketplace/resources/qml/Marketplace.qml:193
  2118. msgctxt "@info"
  2119. msgid "Search in the browser"
  2120. msgstr "Tarayıcıda ara"
  2121. #: plugins/Marketplace/resources/qml/Marketplace.qml:271
  2122. msgctxt "@button"
  2123. msgid "In order to use the package you will need to restart Cura"
  2124. msgstr "Paketi kullanmak için Cura'yı yeniden başlatmanız gerekecek"
  2125. #: plugins/Marketplace/resources/qml/Marketplace.qml:279
  2126. msgctxt "@info:button, %1 is the application name"
  2127. msgid "Quit %1"
  2128. msgstr "%1 uygulamasından çık"
  2129. #: plugins/Marketplace/resources/qml/Materials.qml:8
  2130. #: plugins/Marketplace/resources/qml/MissingPackages.qml:8
  2131. msgctxt "@header"
  2132. msgid "Install Materials"
  2133. msgstr "Malzeme Yükle"
  2134. #: plugins/Marketplace/resources/qml/Materials.qml:12
  2135. #, fuzzy
  2136. msgctxt "@text"
  2137. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  2138. msgstr "UltiMaker 3D yazıcılarınız için optimize edilmiş malzeme profillerini seçin ve yükleyin."
  2139. #: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35
  2140. msgctxt "@label"
  2141. msgid "You need to accept the license to install the package"
  2142. msgstr "Paketi yüklemek için lisansı kabul etmeniz gerekir"
  2143. #: plugins/Marketplace/resources/qml/OnboardBanner.qml:101
  2144. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205
  2145. msgctxt "@button:label"
  2146. msgid "Learn More"
  2147. msgstr "Daha Fazla Bilgi Edinin"
  2148. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170
  2149. msgctxt "@label Is followed by the name of an author"
  2150. msgid "By"
  2151. msgstr "Oluşturan"
  2152. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224
  2153. msgctxt "@button"
  2154. msgid "Disable"
  2155. msgstr "Devre dışı bırak"
  2156. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224
  2157. msgctxt "@button"
  2158. msgid "Enable"
  2159. msgstr "Etkinleştir"
  2160. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  2161. msgctxt "@button"
  2162. msgid "Downgrading..."
  2163. msgstr "Eski sürüm yükleniyor..."
  2164. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243
  2165. msgctxt "@button"
  2166. msgid "Downgrade"
  2167. msgstr "Eski Sürümü Yükle"
  2168. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247
  2169. msgctxt "@button"
  2170. msgid "Installing..."
  2171. msgstr "Yükleniyor..."
  2172. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248
  2173. msgctxt "@button"
  2174. msgid "Install"
  2175. msgstr "Yükle"
  2176. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252
  2177. msgctxt "@button"
  2178. msgid "Uninstall"
  2179. msgstr "Kaldır"
  2180. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267
  2181. msgctxt "@button"
  2182. msgid "Update"
  2183. msgstr "Güncelle"
  2184. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267
  2185. msgctxt "@button"
  2186. msgid "Updating..."
  2187. msgstr "Güncelleniyor..."
  2188. #: plugins/Marketplace/resources/qml/PackageDetails.qml:15
  2189. msgctxt "@header"
  2190. msgid "Package details"
  2191. msgstr "Paket ayrıntıları"
  2192. #: plugins/Marketplace/resources/qml/PackageDetails.qml:40
  2193. msgctxt "@button:tooltip"
  2194. msgid "Back"
  2195. msgstr "Geri"
  2196. #: plugins/Marketplace/resources/qml/PackagePage.qml:81
  2197. msgctxt "@header"
  2198. msgid "Description"
  2199. msgstr "Tanım"
  2200. #: plugins/Marketplace/resources/qml/PackagePage.qml:110
  2201. msgctxt "@header"
  2202. msgid "Compatible printers"
  2203. msgstr "Uyumlu yazıcılar"
  2204. #: plugins/Marketplace/resources/qml/PackagePage.qml:134
  2205. msgctxt "@info"
  2206. msgid "No compatibility information"
  2207. msgstr "Uyumluluk bilgisi yok"
  2208. #: plugins/Marketplace/resources/qml/PackagePage.qml:152
  2209. msgctxt "@header"
  2210. msgid "Compatible support materials"
  2211. msgstr "Uyumlu destek malzemeleri"
  2212. #: plugins/Marketplace/resources/qml/PackagePage.qml:176
  2213. msgctxt "@info No materials"
  2214. msgid "None"
  2215. msgstr "Hiçbiri"
  2216. #: plugins/Marketplace/resources/qml/PackagePage.qml:193
  2217. msgctxt "@header"
  2218. msgid "Compatible with Material Station"
  2219. msgstr "Material Station ile uyumlu"
  2220. #: plugins/Marketplace/resources/qml/PackagePage.qml:202
  2221. #: plugins/Marketplace/resources/qml/PackagePage.qml:228
  2222. msgctxt "@info"
  2223. msgid "No"
  2224. msgstr "Hayır"
  2225. #: plugins/Marketplace/resources/qml/PackagePage.qml:202
  2226. #: plugins/Marketplace/resources/qml/PackagePage.qml:228
  2227. msgctxt "@info"
  2228. msgid "Yes"
  2229. msgstr "Evet"
  2230. #: plugins/Marketplace/resources/qml/PackagePage.qml:219
  2231. msgctxt "@header"
  2232. msgid "Optimized for Air Manager"
  2233. msgstr "Air Manager için en uygun"
  2234. #: plugins/Marketplace/resources/qml/PackagePage.qml:243
  2235. msgctxt "@button"
  2236. msgid "Visit plug-in website"
  2237. msgstr "Eklenti web sitesini ziyaret edin"
  2238. #: plugins/Marketplace/resources/qml/PackagePage.qml:243
  2239. msgctxt "@button"
  2240. msgid "Website"
  2241. msgstr "Web sitesi"
  2242. #: plugins/Marketplace/resources/qml/PackagePage.qml:252
  2243. msgctxt "@button"
  2244. msgid "Buy spool"
  2245. msgstr "Makara satın al"
  2246. #: plugins/Marketplace/resources/qml/PackagePage.qml:261
  2247. msgctxt "@button"
  2248. msgid "Safety datasheet"
  2249. msgstr "Güvenlik veri sayfası"
  2250. #: plugins/Marketplace/resources/qml/PackagePage.qml:270
  2251. msgctxt "@button"
  2252. msgid "Technical datasheet"
  2253. msgstr "Teknik veri sayfası"
  2254. #: plugins/Marketplace/resources/qml/Packages.qml:151
  2255. msgctxt "@button"
  2256. msgid "Failed to load packages:"
  2257. msgstr "Paketler yüklenemedi:"
  2258. #: plugins/Marketplace/resources/qml/Packages.qml:151
  2259. msgctxt "@button"
  2260. msgid "Retry?"
  2261. msgstr "Yeniden denensin mi?"
  2262. #: plugins/Marketplace/resources/qml/Packages.qml:167
  2263. msgctxt "@button"
  2264. msgid "Loading"
  2265. msgstr "Yükleniyor"
  2266. #: plugins/Marketplace/resources/qml/Packages.qml:183
  2267. msgctxt "@message"
  2268. msgid "No more results to load"
  2269. msgstr "Yüklenecek başka sonuç yok"
  2270. #: plugins/Marketplace/resources/qml/Packages.qml:183
  2271. msgctxt "@message"
  2272. msgid "No results found with current filter"
  2273. msgstr "Mevcut filtreyle başka sonuç bulunmadı"
  2274. #: plugins/Marketplace/resources/qml/Packages.qml:226
  2275. msgctxt "@button"
  2276. msgid "Load more"
  2277. msgstr "Daha fazla yükle"
  2278. #: plugins/Marketplace/resources/qml/Plugins.qml:8
  2279. msgctxt "@header"
  2280. msgid "Install Plugins"
  2281. msgstr "Eklentileri Yükle"
  2282. #: plugins/Marketplace/resources/qml/Plugins.qml:12
  2283. #, fuzzy
  2284. msgctxt "@text"
  2285. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  2286. msgstr "Muhteşem kullanıcı topluluğumuzun katkıda bulunduğu eklentilerle iş akışınızı kolaylaştırın ve UltiMaker Cura deneyiminizi kendinize uygun hale getirin."
  2287. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  2288. msgctxt "@info"
  2289. msgid "UltiMaker Verified Plug-in"
  2290. msgstr "UltiMaker Tarafından Doğrulanmış Eklenti"
  2291. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  2292. msgctxt "@info"
  2293. msgid "UltiMaker Certified Material"
  2294. msgstr "UltiMaker Sertifikalı Malzeme"
  2295. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  2296. msgctxt "@info"
  2297. msgid "UltiMaker Verified Package"
  2298. msgstr "UltiMaker Tarafından Doğrulanmış Paket"
  2299. #: plugins/ModelChecker/ModelChecker.py:31
  2300. msgctxt "@info:title"
  2301. msgid "3D Model Assistant"
  2302. msgstr "3D Model Yardımcısı"
  2303. #: plugins/ModelChecker/ModelChecker.py:97
  2304. #, python-brace-format
  2305. msgctxt "@info:status"
  2306. msgid ""
  2307. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  2308. "<p>{model_names}</p>\n"
  2309. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  2310. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  2311. msgstr ""
  2312. "<p>Model boyutu ve model yapılandırması nedeniyle bir veya daha fazla 3D model optimum yazdırılamayabilir:</p>\n"
  2313. "<p>{model_names}</p>\n"
  2314. "<p>En iyi kalite ve güvenilirliği nasıl elde edeceğinizi öğrenin.</p>\n"
  2315. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Yazdırma kalitesi kılavuzunu görüntüleyin</a></p>"
  2316. #: plugins/MonitorStage/MonitorMain.qml:100
  2317. msgctxt "@info"
  2318. msgid ""
  2319. "Please make sure your printer has a connection:\n"
  2320. "- Check if the printer is turned on.\n"
  2321. "- Check if the printer is connected to the network.\n"
  2322. "- Check if you are signed in to discover cloud-connected printers."
  2323. msgstr ""
  2324. "Lütfen yazıcınızda bağlantı olduğundan emin olun:\n"
  2325. "- Yazıcının açık olup olmadığını kontrol edin.\n"
  2326. "- Yazıcının ağa bağlı olup olmadığını kontrol edin.\n"
  2327. "- Buluta bağlı yazıcıları keşfetmek için giriş yapıp yapmadığınızı kontrol edin."
  2328. #: plugins/MonitorStage/MonitorMain.qml:113
  2329. msgctxt "@info"
  2330. msgid "Please connect your printer to the network."
  2331. msgstr "Lütfen yazıcınızı ağa bağlayın."
  2332. #: plugins/MonitorStage/MonitorMain.qml:148
  2333. msgctxt "@label link to technical assistance"
  2334. msgid "View user manuals online"
  2335. msgstr "Kullanım kılavuzlarını çevrimiçi olarak görüntüle"
  2336. #: plugins/MonitorStage/MonitorMain.qml:164
  2337. msgctxt "@info"
  2338. msgid "In order to monitor your print from Cura, please connect the printer."
  2339. msgstr "Baskınızı Cura üzerinden izlemek için lütfen yazıcıyı bağlayın."
  2340. #: plugins/MonitorStage/__init__.py:14
  2341. msgctxt "@item:inmenu"
  2342. msgid "Monitor"
  2343. msgstr "Görüntüle"
  2344. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  2345. msgctxt "@label"
  2346. msgid "Mesh Type"
  2347. msgstr "Ağ Tipi"
  2348. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  2349. msgctxt "@label"
  2350. msgid "Normal model"
  2351. msgstr "Normal model"
  2352. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  2353. msgctxt "@label"
  2354. msgid "Print as support"
  2355. msgstr "Destek olarak yazdır"
  2356. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  2357. msgctxt "@label"
  2358. msgid "Modify settings for overlaps"
  2359. msgstr "Çakışma ayarlarını değiştir"
  2360. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  2361. msgctxt "@label"
  2362. msgid "Don't support overlaps"
  2363. msgstr "Çakışmaları destekleme"
  2364. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  2365. msgctxt "@item:inlistbox"
  2366. msgid "Infill mesh only"
  2367. msgstr "Yalnızca dolgu kafes"
  2368. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161
  2369. msgctxt "@item:inlistbox"
  2370. msgid "Cutting mesh"
  2371. msgstr "Kesme Örgüsü"
  2372. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386
  2373. msgctxt "@action:button"
  2374. msgid "Select settings"
  2375. msgstr "Ayarları seçin"
  2376. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  2377. msgctxt "@title:window"
  2378. msgid "Select Settings to Customize for this model"
  2379. msgstr "Bu modeli Özelleştirmek için Ayarları seçin"
  2380. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61
  2381. #: resources/qml/Preferences/SettingVisibilityPage.qml:102
  2382. msgctxt "@label:textbox"
  2383. msgid "Filter..."
  2384. msgstr "Filtrele..."
  2385. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  2386. msgctxt "@label:checkbox"
  2387. msgid "Show all"
  2388. msgstr "Tümünü göster"
  2389. #: plugins/PerObjectSettingsTool/__init__.py:14
  2390. msgctxt "@label"
  2391. msgid "Per Model Settings"
  2392. msgstr "Model Başına Ayarlar"
  2393. #: plugins/PerObjectSettingsTool/__init__.py:15
  2394. msgctxt "@info:tooltip"
  2395. msgid "Configure Per Model Settings"
  2396. msgstr "Model Başına Ayarları Yapılandır"
  2397. #: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  2398. msgctxt "@item:inmenu"
  2399. msgid "Post Processing"
  2400. msgstr "Son İşleme"
  2401. #: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  2402. msgctxt "@item:inmenu"
  2403. msgid "Modify G-Code"
  2404. msgstr "G-Code Öğesini Değiştir"
  2405. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  2406. msgctxt "@title:window"
  2407. msgid "Post Processing Plugin"
  2408. msgstr "Son İşleme Uzantısı"
  2409. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  2410. msgctxt "@label"
  2411. msgid "Post Processing Scripts"
  2412. msgstr "Son İşleme Dosyaları"
  2413. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215
  2414. msgctxt "@action"
  2415. msgid "Add a script"
  2416. msgstr "Dosya ekle"
  2417. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251
  2418. msgctxt "@label"
  2419. msgid "Settings"
  2420. msgstr "Ayarlar"
  2421. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460
  2422. msgctxt "@info:tooltip"
  2423. msgid "Change active post-processing scripts."
  2424. msgstr "Etkin ileri işleme komut dosyalarını değiştirin."
  2425. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464
  2426. msgctxt "@info:tooltip"
  2427. msgid "The following script is active:"
  2428. msgid_plural "The following scripts are active:"
  2429. msgstr[0] "Aşağıdaki komut dosyası etkin:"
  2430. msgstr[1] "Aşağıdaki komut dosyaları etkin:"
  2431. #: plugins/PrepareStage/PrepareMenu.qml:74
  2432. msgctxt "@button"
  2433. msgid "Add printer"
  2434. msgstr "Yazıcı ekle"
  2435. #: plugins/PrepareStage/PrepareMenu.qml:90
  2436. msgctxt "@button"
  2437. msgid "Manage printers"
  2438. msgstr "Yazıcıları yönet"
  2439. #: plugins/PrepareStage/__init__.py:12
  2440. msgctxt "@item:inmenu"
  2441. msgid "Prepare"
  2442. msgstr "Hazırla"
  2443. #: plugins/PreviewStage/__init__.py:13
  2444. msgctxt "@item:inmenu"
  2445. msgid "Preview"
  2446. msgstr "Önizleme"
  2447. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  2448. msgctxt "@action:button Preceded by 'Ready to'."
  2449. msgid "Save to Removable Drive"
  2450. msgstr "Çıkarılabilir Sürücüye Kaydet"
  2451. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  2452. #, python-brace-format
  2453. msgctxt "@item:inlistbox"
  2454. msgid "Save to Removable Drive {0}"
  2455. msgstr "Çıkarılabilir Sürücüye Kaydediliyor {0}"
  2456. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  2457. #: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  2458. msgctxt "@info:status"
  2459. msgid "There are no file formats available to write with!"
  2460. msgstr "Yazılacak dosya biçimleri mevcut değil!"
  2461. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  2462. #, python-brace-format
  2463. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2464. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2465. msgstr "Çıkarılabilir Sürücü <filename>{0}</filename> Üzerine Kaydediliyor"
  2466. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110
  2467. msgctxt "@info:title"
  2468. msgid "Saving"
  2469. msgstr "Kaydediliyor"
  2470. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120
  2471. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  2472. #, python-brace-format
  2473. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2474. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  2475. msgstr "<filename>{0}</filename> dosyasına kaydedilemedi: <message>{1}</message>"
  2476. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  2477. #, python-brace-format
  2478. msgctxt "@info:status Don't translate the tag {device}!"
  2479. msgid "Could not find a file name when trying to write to {device}."
  2480. msgstr "{device} üzerine yazmaya çalışırken dosya adı bulunamadı."
  2481. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152
  2482. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171
  2483. #, python-brace-format
  2484. msgctxt "@info:status"
  2485. msgid "Could not save to removable drive {0}: {1}"
  2486. msgstr "Çıkarılabilir aygıta {0} kaydedilemedi: {1}"
  2487. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162
  2488. #, python-brace-format
  2489. msgctxt "@info:status"
  2490. msgid "Saved to Removable Drive {0} as {1}"
  2491. msgstr "Çıkarılabilir Sürücüye {0}, {1} olarak kaydedildi"
  2492. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  2493. msgctxt "@info:title"
  2494. msgid "File Saved"
  2495. msgstr "Dosya Kaydedildi"
  2496. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  2497. msgctxt "@action:button"
  2498. msgid "Eject"
  2499. msgstr "Çıkar"
  2500. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  2501. #, python-brace-format
  2502. msgctxt "@action"
  2503. msgid "Eject removable device {0}"
  2504. msgstr "Çıkarılabilir aygıtı çıkar {0}"
  2505. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184
  2506. #, python-brace-format
  2507. msgctxt "@info:status"
  2508. msgid "Ejected {0}. You can now safely remove the drive."
  2509. msgstr "Çıkarıldı {0}. Şimdi sürücüyü güvenle kaldırabilirsiniz."
  2510. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185
  2511. msgctxt "@info:title"
  2512. msgid "Safely Remove Hardware"
  2513. msgstr "Donanımı Güvenli Bir Şekilde Kaldırın"
  2514. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188
  2515. #, python-brace-format
  2516. msgctxt "@info:status"
  2517. msgid "Failed to eject {0}. Another program may be using the drive."
  2518. msgstr "Çıkarma işlemi başarısız oldu {0}. Başka bir program sürücüyü kullanıyor olabilir."
  2519. #: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  2520. msgctxt "@item:intext"
  2521. msgid "Removable Drive"
  2522. msgstr "Çıkarılabilir Sürücü"
  2523. #: plugins/SimulationView/SimulationView.py:129
  2524. msgctxt "@info:status"
  2525. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  2526. msgstr "Kablo Yazdırma etkinleştirildiğinde Cura, katmanları doğru olarak görüntülemez."
  2527. #: plugins/SimulationView/SimulationView.py:130
  2528. msgctxt "@info:title"
  2529. msgid "Simulation View"
  2530. msgstr "Simülasyon Görünümü"
  2531. #: plugins/SimulationView/SimulationView.py:133
  2532. msgctxt "@info:status"
  2533. msgid "Nothing is shown because you need to slice first."
  2534. msgstr "Önce dilimleme yapmanız gerektiğinden hiçbir şey gösterilmez."
  2535. #: plugins/SimulationView/SimulationView.py:134
  2536. msgctxt "@info:title"
  2537. msgid "No layers to show"
  2538. msgstr "Görüntülenecek katman yok"
  2539. #: plugins/SimulationView/SimulationView.py:136
  2540. #: plugins/SolidView/SolidView.py:74
  2541. msgctxt "@info:option_text"
  2542. msgid "Do not show this message again"
  2543. msgstr "Bu mesajı bir daha gösterme"
  2544. #: plugins/SimulationView/SimulationViewMenuComponent.qml:18
  2545. #: plugins/SimulationView/SimulationViewMenuComponent.qml:47
  2546. msgctxt "@label"
  2547. msgid "Color scheme"
  2548. msgstr "Renk şeması"
  2549. #: plugins/SimulationView/SimulationViewMenuComponent.qml:104
  2550. msgctxt "@label:listbox"
  2551. msgid "Material Color"
  2552. msgstr "Malzeme Rengi"
  2553. #: plugins/SimulationView/SimulationViewMenuComponent.qml:108
  2554. msgctxt "@label:listbox"
  2555. msgid "Line Type"
  2556. msgstr "Çizgi Tipi"
  2557. #: plugins/SimulationView/SimulationViewMenuComponent.qml:112
  2558. msgctxt "@label:listbox"
  2559. msgid "Speed"
  2560. msgstr "Hız"
  2561. #: plugins/SimulationView/SimulationViewMenuComponent.qml:116
  2562. msgctxt "@label:listbox"
  2563. msgid "Layer Thickness"
  2564. msgstr "Katman kalınlığı"
  2565. #: plugins/SimulationView/SimulationViewMenuComponent.qml:120
  2566. msgctxt "@label:listbox"
  2567. msgid "Line Width"
  2568. msgstr "Hat Genişliği"
  2569. #: plugins/SimulationView/SimulationViewMenuComponent.qml:124
  2570. msgctxt "@label:listbox"
  2571. msgid "Flow"
  2572. msgstr "Akış"
  2573. #: plugins/SimulationView/SimulationViewMenuComponent.qml:164
  2574. msgctxt "@label"
  2575. msgid "Compatibility Mode"
  2576. msgstr "Uyumluluk Modu"
  2577. #: plugins/SimulationView/SimulationViewMenuComponent.qml:231
  2578. msgctxt "@label"
  2579. msgid "Travels"
  2580. msgstr "Geçişler"
  2581. #: plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2582. msgctxt "@label"
  2583. msgid "Helpers"
  2584. msgstr "Yardımcılar"
  2585. #: plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2586. msgctxt "@label"
  2587. msgid "Shell"
  2588. msgstr "Kabuk"
  2589. #: plugins/SimulationView/SimulationViewMenuComponent.qml:249
  2590. msgctxt "@label"
  2591. msgid "Infill"
  2592. msgstr "Dolgu"
  2593. #: plugins/SimulationView/SimulationViewMenuComponent.qml:257
  2594. msgctxt "@label"
  2595. msgid "Starts"
  2596. msgstr "Başlangıçlar"
  2597. #: plugins/SimulationView/SimulationViewMenuComponent.qml:304
  2598. msgctxt "@label"
  2599. msgid "Only Show Top Layers"
  2600. msgstr "Yalnızca Üst Katmanları Göster"
  2601. #: plugins/SimulationView/SimulationViewMenuComponent.qml:313
  2602. msgctxt "@label"
  2603. msgid "Show 5 Detailed Layers On Top"
  2604. msgstr "En Üstteki 5 Ayrıntılı Katmanı Göster"
  2605. #: plugins/SimulationView/SimulationViewMenuComponent.qml:326
  2606. msgctxt "@label"
  2607. msgid "Top / Bottom"
  2608. msgstr "Üst / Alt"
  2609. #: plugins/SimulationView/SimulationViewMenuComponent.qml:330
  2610. msgctxt "@label"
  2611. msgid "Inner Wall"
  2612. msgstr "İç Duvar"
  2613. #: plugins/SimulationView/SimulationViewMenuComponent.qml:397
  2614. msgctxt "@label"
  2615. msgid "min"
  2616. msgstr "min"
  2617. #: plugins/SimulationView/SimulationViewMenuComponent.qml:462
  2618. msgctxt "@label"
  2619. msgid "max"
  2620. msgstr "maks"
  2621. #: plugins/SimulationView/__init__.py:15
  2622. msgctxt "@item:inlistbox"
  2623. msgid "Layer view"
  2624. msgstr "Katman görünümü"
  2625. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16
  2626. msgctxt "@title:window"
  2627. msgid "More information on anonymous data collection"
  2628. msgstr "Anonim veri toplama hakkında daha fazla bilgi"
  2629. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73
  2630. #, fuzzy
  2631. msgctxt "@text:window"
  2632. msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
  2633. msgstr "UltiMaker Cura, yazdırma kalitesini ve kullanıcı deneyimini iyileştirmek için anonim veri toplar. Aşağıda, paylaşılan tüm verilerin bir örneği verilmiştir:"
  2634. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107
  2635. msgctxt "@text:window"
  2636. msgid "I don't want to send anonymous data"
  2637. msgstr "Anonim veri göndermek istemiyorum"
  2638. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116
  2639. msgctxt "@text:window"
  2640. msgid "Allow sending anonymous data"
  2641. msgstr "Anonim veri gönderilmesine izin ver"
  2642. #: plugins/SliceInfoPlugin/SliceInfo.py:95
  2643. msgctxt "@text"
  2644. msgid "Unable to read example data file."
  2645. msgstr "Örnek veri dosyası okunamıyor."
  2646. #: plugins/SolidView/SolidView.py:71
  2647. msgctxt "@info:status"
  2648. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  2649. msgstr "Vurgulanan alanlar, eksik ya da ikincil yüzeyleri gösterir. Modelinizi düzeltin ve Cura'da tekrar açın."
  2650. #: plugins/SolidView/SolidView.py:73
  2651. msgctxt "@info:title"
  2652. msgid "Model Errors"
  2653. msgstr "Model hataları"
  2654. #: plugins/SolidView/__init__.py:12
  2655. msgctxt "@item:inmenu"
  2656. msgid "Solid view"
  2657. msgstr "Gerçek görünüm"
  2658. #: plugins/SupportEraser/__init__.py:12
  2659. msgctxt "@label"
  2660. msgid "Support Blocker"
  2661. msgstr "Destek Engelleyici"
  2662. #: plugins/SupportEraser/__init__.py:13
  2663. msgctxt "@info:tooltip"
  2664. msgid "Create a volume in which supports are not printed."
  2665. msgstr "Desteklerin yazdırılmadığı bir hacim oluşturun."
  2666. #: plugins/TrimeshReader/__init__.py:15
  2667. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2668. msgid "Open Compressed Triangle Mesh"
  2669. msgstr "Open Compressed Triangle Mesh"
  2670. #: plugins/TrimeshReader/__init__.py:19
  2671. msgctxt "@item:inlistbox"
  2672. msgid "COLLADA Digital Asset Exchange"
  2673. msgstr "COLLADA Digital Asset Exchange"
  2674. #: plugins/TrimeshReader/__init__.py:23
  2675. msgctxt "@item:inlistbox"
  2676. msgid "glTF Binary"
  2677. msgstr "glTF Binary"
  2678. #: plugins/TrimeshReader/__init__.py:27
  2679. msgctxt "@item:inlistbox"
  2680. msgid "glTF Embedded JSON"
  2681. msgstr "glTF Embedded JSON"
  2682. #: plugins/TrimeshReader/__init__.py:36
  2683. msgctxt "@item:inlistbox"
  2684. msgid "Stanford Triangle Format"
  2685. msgstr "Stanford Triangle Format"
  2686. #: plugins/TrimeshReader/__init__.py:40
  2687. msgctxt "@item:inlistbox"
  2688. msgid "Compressed COLLADA Digital Asset Exchange"
  2689. msgstr "Compressed COLLADA Digital Asset Exchange"
  2690. #: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28
  2691. msgctxt "@item:inlistbox"
  2692. msgid "UltiMaker Format Package"
  2693. msgstr "UltiMaker Biçim Paketi"
  2694. #: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80
  2695. #: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115
  2696. #: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180
  2697. msgctxt "@info:error"
  2698. msgid "Can't write to UFP file:"
  2699. msgstr "UFP dosyasına yazamıyor:"
  2700. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  2701. msgctxt "@title:window"
  2702. msgid "Connect to Networked Printer"
  2703. msgstr "Ağ Yazıcısına Bağlan"
  2704. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2705. msgctxt "@label"
  2706. msgid "Select your printer from the list below:"
  2707. msgstr "Aşağıdaki listeden yazıcınızı seçin:"
  2708. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2709. msgctxt "@label"
  2710. msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
  2711. msgstr "Yazıcınıza ağ üzerinden doğrudan baskı göndermek için lütfen yazıcınızın ağ kablosuyla ağa bağlı olduğundan veya yazıcınızı WiFi ağınıza bağladığınızdan emin olun. Yazıcınız ile Cura'ya bağlanamıyorsanız g-code dosyalarını yazıcınıza aktarmak için USB sürücüsü kullanabilirsiniz."
  2712. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  2713. msgctxt "@action:button"
  2714. msgid "Edit"
  2715. msgstr "Düzenle"
  2716. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82
  2717. #: resources/qml/Preferences/MachinesPage.qml:153
  2718. #: resources/qml/Preferences/Materials/MaterialsPage.qml:186
  2719. #: resources/qml/Preferences/ProfilesPage.qml:321
  2720. msgctxt "@action:button"
  2721. msgid "Remove"
  2722. msgstr "Kaldır"
  2723. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  2724. msgctxt "@action:button"
  2725. msgid "Refresh"
  2726. msgstr "Yenile"
  2727. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  2728. msgctxt "@label"
  2729. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2730. msgstr "Yazıcınız listede yoksa <a href='%1'>ağ yazdırma sorun giderme kılavuzunu</a> okuyun"
  2731. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186
  2732. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247
  2733. msgctxt "@label"
  2734. msgid "Type"
  2735. msgstr "Tür"
  2736. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202
  2737. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256
  2738. msgctxt "@label"
  2739. msgid "Firmware version"
  2740. msgstr "Üretici yazılımı sürümü"
  2741. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212
  2742. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266
  2743. msgctxt "@label"
  2744. msgid "Address"
  2745. msgstr "Adres"
  2746. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  2747. msgctxt "@label"
  2748. msgid "This printer is not set up to host a group of printers."
  2749. msgstr "Bu yazıcı, bir yazıcı grubunu barındırmak için ayarlı değildir."
  2750. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  2751. msgctxt "@label"
  2752. msgid "This printer is the host for a group of %1 printers."
  2753. msgstr "Bu yazıcı, %1 yazıcı grubunun ana makinesidir."
  2754. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  2755. msgctxt "@label"
  2756. msgid "The printer at this address has not yet responded."
  2757. msgstr "Bu adresteki yazıcı henüz yanıt vermedi."
  2758. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  2759. msgctxt "@action:button"
  2760. msgid "Connect"
  2761. msgstr "Bağlan"
  2762. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  2763. msgctxt "@title:window"
  2764. msgid "Invalid IP address"
  2765. msgstr "Geçersiz IP adresi"
  2766. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262
  2767. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141
  2768. msgctxt "@text"
  2769. msgid "Please enter a valid IP address."
  2770. msgstr "Lütfen geçerli bir IP adresi girin."
  2771. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  2772. msgctxt "@title:window"
  2773. msgid "Printer Address"
  2774. msgstr "Yazıcı Adresi"
  2775. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2776. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97
  2777. msgctxt "@label"
  2778. msgid "Enter the IP address of your printer on the network."
  2779. msgstr "Ağdaki yazıcınızın IP adresini girin."
  2780. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2781. msgctxt "@title:window"
  2782. msgid "Configuration Changes"
  2783. msgstr "Yapılandırma Değişiklikleri"
  2784. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  2785. msgctxt "@action:button"
  2786. msgid "Override"
  2787. msgstr "Geçersiz kıl"
  2788. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  2789. msgctxt "@label"
  2790. msgid "The assigned printer, %1, requires the following configuration change:"
  2791. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2792. msgstr[0] "Atanan yazıcı %1, şu yapılandırma değişikliğini gerektiriyor:"
  2793. msgstr[1] "Atanan yazıcı %1, şu yapılandırma değişikliklerini gerektiriyor:"
  2794. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  2795. msgctxt "@label"
  2796. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2797. msgstr "Yazıcı %1 atandı, fakat iş bilinmeyen bir malzeme yapılandırması içeriyor."
  2798. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  2799. msgctxt "@label"
  2800. msgid "Change material %1 from %2 to %3."
  2801. msgstr "%2 olan %1 malzemesini %3 yapın."
  2802. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  2803. msgctxt "@label"
  2804. msgid "Load %3 as material %1 (This cannot be overridden)."
  2805. msgstr "%3 malzemesini %1 malzemesi olarak yükleyin (Bu işlem geçersiz kılınamaz)."
  2806. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  2807. msgctxt "@label"
  2808. msgid "Change print core %1 from %2 to %3."
  2809. msgstr "%2 olan %1 print core'u %3 yapın."
  2810. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110
  2811. msgctxt "@label"
  2812. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2813. msgstr "Geçersiz kıl seçeneği mevcut yazıcı yapılandırmasındaki ayarları kullanacaktır. Yazdırma işlemi başarısız olabilir."
  2814. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2815. msgctxt "@label"
  2816. msgid "Move to top"
  2817. msgstr "En üste taşı"
  2818. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155
  2819. msgctxt "@label"
  2820. msgid "Delete"
  2821. msgstr "Sil"
  2822. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186
  2823. #: resources/qml/MonitorButton.qml:284
  2824. msgctxt "@label"
  2825. msgid "Resume"
  2826. msgstr "Devam et"
  2827. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188
  2828. msgctxt "@label"
  2829. msgid "Pausing..."
  2830. msgstr "Duraklatılıyor..."
  2831. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190
  2832. msgctxt "@label"
  2833. msgid "Resuming..."
  2834. msgstr "Devam ediliyor..."
  2835. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192
  2836. #: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288
  2837. msgctxt "@label"
  2838. msgid "Pause"
  2839. msgstr "Duraklat"
  2840. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  2841. msgctxt "@label"
  2842. msgid "Abort"
  2843. msgstr "Durdur"
  2844. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  2845. msgctxt "@label"
  2846. msgid "Aborting..."
  2847. msgstr "İptal ediliyor..."
  2848. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218
  2849. msgctxt "@label %1 is the name of a print job."
  2850. msgid "Are you sure you want to move %1 to the top of the queue?"
  2851. msgstr "%1 öğesini kuyruğun en üstüne taşımak ister misiniz?"
  2852. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219
  2853. msgctxt "@window:title"
  2854. msgid "Move print job to top"
  2855. msgstr "Yazdırma işini en üste taşı"
  2856. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227
  2857. msgctxt "@label %1 is the name of a print job."
  2858. msgid "Are you sure you want to delete %1?"
  2859. msgstr "%1 öğesini silmek istediğinizden emin misiniz?"
  2860. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228
  2861. msgctxt "@window:title"
  2862. msgid "Delete print job"
  2863. msgstr "Yazdırma işini sil"
  2864. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236
  2865. msgctxt "@label %1 is the name of a print job."
  2866. msgid "Are you sure you want to abort %1?"
  2867. msgstr "%1 öğesini durdurmak istediğinizden emin misiniz?"
  2868. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237
  2869. #: resources/qml/MonitorButton.qml:326
  2870. msgctxt "@window:title"
  2871. msgid "Abort print"
  2872. msgstr "Yazdırmayı durdur"
  2873. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  2874. msgctxt "@label"
  2875. msgid "Unavailable printer"
  2876. msgstr "Kullanım dışı yazıcı"
  2877. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  2878. msgctxt "@label"
  2879. msgid "First available"
  2880. msgstr "İlk kullanılabilen"
  2881. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242
  2882. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246
  2883. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472
  2884. msgctxt "@info"
  2885. msgid "Please update your printer's firmware to manage the queue remotely."
  2886. msgstr "Kuyruğu uzaktan yönetmek için lütfen yazıcının donanım yazılımını güncelleyin."
  2887. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70
  2888. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2889. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2890. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2891. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2892. msgctxt "@label:status"
  2893. msgid "Aborted"
  2894. msgstr "Durduruldu"
  2895. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72
  2896. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  2897. msgctxt "@label:status"
  2898. msgid "Finished"
  2899. msgstr "Tamamlandı"
  2900. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  2901. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2902. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2903. msgctxt "@label:status"
  2904. msgid "Preparing..."
  2905. msgstr "Hazırlanıyor..."
  2906. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2907. msgctxt "@label:status"
  2908. msgid "Aborting..."
  2909. msgstr "İptal ediliyor..."
  2910. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2911. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2912. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2913. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2914. msgctxt "@label:status"
  2915. msgid "Failed"
  2916. msgstr "Başarısız"
  2917. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2918. msgctxt "@label:status"
  2919. msgid "Pausing..."
  2920. msgstr "Duraklatılıyor..."
  2921. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2922. msgctxt "@label:status"
  2923. msgid "Paused"
  2924. msgstr "Duraklatıldı"
  2925. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  2926. msgctxt "@label:status"
  2927. msgid "Resuming..."
  2928. msgstr "Devam ediliyor..."
  2929. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  2930. msgctxt "@label:status"
  2931. msgid "Action required"
  2932. msgstr "Eylem gerekli"
  2933. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  2934. msgctxt "@label:status"
  2935. msgid "Finishes %1 at %2"
  2936. msgstr "%1 bitiş tarihi: %2"
  2937. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  2938. msgctxt "@label link to Connect and Cloud interfaces"
  2939. msgid "Manage printer"
  2940. msgstr "Yazıcıyı yönet"
  2941. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280
  2942. msgctxt "@info"
  2943. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  2944. msgstr "Bulut yazıcıları için web kamerası akışları UltiMaker Cura'dan görüntülenemez. Ultimaker Digital Factory'i ziyaret etmek ve bu web kamerasını görüntülemek için \"Yazıcıyı Yönet\"i tıklayın."
  2945. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340
  2946. msgctxt "@label:status"
  2947. msgid "Loading..."
  2948. msgstr "Yükleniyor..."
  2949. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344
  2950. msgctxt "@label:status"
  2951. msgid "Unavailable"
  2952. msgstr "Mevcut değil"
  2953. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2954. msgctxt "@label:status"
  2955. msgid "Unreachable"
  2956. msgstr "Ulaşılamıyor"
  2957. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2958. msgctxt "@label:status"
  2959. msgid "Idle"
  2960. msgstr "Boşta"
  2961. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361
  2962. msgctxt "@label:status"
  2963. msgid "Printing"
  2964. msgstr "Yazdırma"
  2965. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402
  2966. msgctxt "@label"
  2967. msgid "Untitled"
  2968. msgstr "Başlıksız"
  2969. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417
  2970. msgctxt "@label"
  2971. msgid "Anonymous"
  2972. msgstr "Anonim"
  2973. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438
  2974. msgctxt "@label:status"
  2975. msgid "Requires configuration changes"
  2976. msgstr "Yapılandırma değişiklikleri gerekiyor"
  2977. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452
  2978. msgctxt "@action:button"
  2979. msgid "Details"
  2980. msgstr "Detaylar"
  2981. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  2982. msgctxt "@label"
  2983. msgid "Queued"
  2984. msgstr "Kuyrukta"
  2985. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64
  2986. msgctxt "@label link to connect manager"
  2987. msgid "Manage in browser"
  2988. msgstr "Tarayıcıda yönet"
  2989. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91
  2990. msgctxt "@label"
  2991. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2992. msgstr "Kuyrukta baskı işi yok. Bir iş eklemek için dilimleme yapın ve gönderin."
  2993. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2994. msgctxt "@label"
  2995. msgid "Print jobs"
  2996. msgstr "Yazdırma görevleri"
  2997. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108
  2998. msgctxt "@label"
  2999. msgid "Total print time"
  3000. msgstr "Toplam yazdırma süresi"
  3001. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117
  3002. msgctxt "@label"
  3003. msgid "Waiting for"
  3004. msgstr "Bekleniyor"
  3005. #: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117
  3006. msgctxt "@info"
  3007. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  3008. msgstr "Ultimaker Digital Factory'yi kullanarak yazıcılarınızı her yerden izleyin"
  3009. #: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129
  3010. msgctxt "@button"
  3011. msgid "View printers in Digital Factory"
  3012. msgstr "Digital Factory’deki yazıcıları görüntüle"
  3013. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  3014. msgctxt "@title:window"
  3015. msgid "Print over network"
  3016. msgstr "Ağ üzerinden yazdır"
  3017. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  3018. msgctxt "@action:button"
  3019. msgid "Print"
  3020. msgstr "Yazdır"
  3021. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  3022. msgctxt "@label"
  3023. msgid "Printer selection"
  3024. msgstr "Yazıcı seçimi"
  3025. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80
  3026. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162
  3027. msgctxt "@action:button"
  3028. msgid "Print via cloud"
  3029. msgstr "Bulut üzerinden yazdır"
  3030. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81
  3031. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163
  3032. msgctxt "@properties:tooltip"
  3033. msgid "Print via cloud"
  3034. msgstr "Bulut üzerinden yazdır"
  3035. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82
  3036. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164
  3037. msgctxt "@info:status"
  3038. msgid "Connected via cloud"
  3039. msgstr "Bulut üzerinden bağlı"
  3040. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276
  3041. msgctxt "@action:button"
  3042. msgid "Monitor print"
  3043. msgstr "Baskı izleme"
  3044. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278
  3045. msgctxt "@action:tooltip"
  3046. msgid "Track the print in Ultimaker Digital Factory"
  3047. msgstr "Ultimaker Digital Factory'de baskıyı izleyin"
  3048. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298
  3049. #, python-brace-format
  3050. msgctxt "@error:send"
  3051. msgid "Unknown error code when uploading print job: {0}"
  3052. msgstr "Baskı işi yüklenirken bilinmeyen hata kodu: {0}"
  3053. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  3054. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23
  3055. msgctxt "info:name"
  3056. msgid "Ultimaker Digital Factory"
  3057. msgstr "Ultimaker Digital Factory"
  3058. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425
  3059. #, python-brace-format
  3060. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3061. msgid "{printer_name} will be removed until the next account sync."
  3062. msgstr "{printer_name} yazıcısı bir sonraki hesap senkronizasyonuna kadar kaldırılacak."
  3063. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426
  3064. #, python-brace-format
  3065. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3066. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  3067. msgstr "{printer_name} yazıcısını kalıcı olarak kaldırmak için {digital_factory_link} adresini ziyaret edin"
  3068. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427
  3069. #, python-brace-format
  3070. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3071. msgid "Are you sure you want to remove {printer_name} temporarily?"
  3072. msgstr "{printer_name} yazıcısını geçici olarak kaldırmak istediğinizden emin misiniz?"
  3073. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474
  3074. msgctxt "@title:window"
  3075. msgid "Remove printers?"
  3076. msgstr "Yazıcılar kaldırılsın mı?"
  3077. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477
  3078. #, python-brace-format
  3079. msgctxt "@label"
  3080. msgid ""
  3081. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  3082. "Are you sure you want to continue?"
  3083. msgid_plural ""
  3084. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  3085. "Are you sure you want to continue?"
  3086. msgstr[0] ""
  3087. "{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\n"
  3088. "Devam etmek istediğinizden emin misiniz?"
  3089. msgstr[1] ""
  3090. "{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\n"
  3091. "Devam etmek istediğinizden emin misiniz?"
  3092. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484
  3093. msgctxt "@label"
  3094. msgid ""
  3095. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  3096. "Are you sure you want to continue?"
  3097. msgstr ""
  3098. "Tüm yazıcıları Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\n"
  3099. "Devam etmek istediğinizden emin misiniz?"
  3100. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  3101. #, python-brace-format
  3102. msgctxt "@info:status"
  3103. msgid ""
  3104. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  3105. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  3106. msgstr ""
  3107. "<b>{printer_name}</b> adlı yazıcınız bulut aracılığıyla bağlanamadı.\n"
  3108. " Baskı kuyruğunuzu yönetin ve yazıcınızı Digital Factory'ye bağlayarak baskılarınızı dilediğiniz yerden takip edin"
  3109. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  3110. msgctxt "@info:title"
  3111. msgid "Are you ready for cloud printing?"
  3112. msgstr "Buluttan yazdırma için hazır mısınız?"
  3113. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  3114. msgctxt "@action"
  3115. msgid "Get started"
  3116. msgstr "Başlayın"
  3117. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  3118. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24
  3119. msgctxt "@action"
  3120. msgid "Learn more"
  3121. msgstr "Daha fazla bilgi edinin"
  3122. #: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  3123. msgctxt "@info:status"
  3124. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  3125. msgstr "UltiMaker Connect çalıştırmayan bir yazıcıya bağlanmaya çalışıyorsunuz. Lütfen yazıcının donanım yazılımını son sürüme güncelleyin."
  3126. #: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  3127. msgctxt "@info:title"
  3128. msgid "Update your printer"
  3129. msgstr "Yazıcınızı güncelleyin"
  3130. #: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  3131. #, python-brace-format
  3132. msgctxt "@info:status"
  3133. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  3134. msgstr "Cura, henüz {0} grubunun ana yazıcısına yüklenmemiş malzeme profilleri tespit etti."
  3135. #: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  3136. msgctxt "@info:title"
  3137. msgid "Sending materials to printer"
  3138. msgstr "Malzemeler yazıcıya gönderiliyor"
  3139. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13
  3140. #, fuzzy
  3141. msgctxt "info:status"
  3142. msgid "New printer detected from your Ultimaker account"
  3143. msgid_plural "New printers detected from your Ultimaker account"
  3144. msgstr[0] "Ultimaker hesabınızdan yeni yazıcı tespit edildi"
  3145. msgstr[1] "Ultimaker hesabınızdan yeni yazıcılar tespit edildi"
  3146. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29
  3147. #, python-brace-format
  3148. msgctxt "info:status Filled in with printer name and printer model."
  3149. msgid "Adding printer {name} ({model}) from your account"
  3150. msgstr "{name} yazıcısı ({model}) hesabınızdan ekleniyor"
  3151. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48
  3152. #, python-brace-format
  3153. msgctxt "info:{0} gets replaced by a number of printers"
  3154. msgid "... and {0} other"
  3155. msgid_plural "... and {0} others"
  3156. msgstr[0] "... ve {0} diğeri"
  3157. msgstr[1] "... ve {0} diğeri"
  3158. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57
  3159. msgctxt "info:status"
  3160. msgid "Printers added from Digital Factory:"
  3161. msgstr "Digital Factory'den eklenen yazıcılar:"
  3162. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  3163. #, python-brace-format
  3164. msgctxt "@info:status"
  3165. msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
  3166. msgstr "{0} ile bağlantı kurmayı deniyorsunuz ancak cihaz bir grubun ana makinesi değil. Bu cihazı grup ana makinesi olarak yapılandırmak için web sayfasını ziyaret edebilirsiniz."
  3167. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  3168. msgctxt "@info:title"
  3169. msgid "Not a group host"
  3170. msgstr "Grup ana makinesi değil"
  3171. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  3172. msgctxt "@action"
  3173. msgid "Configure group"
  3174. msgstr "Grubu yapılandır"
  3175. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18
  3176. msgctxt "@info:status"
  3177. msgid "You will receive a confirmation via email when the print job is approved"
  3178. msgstr "Baskı işi onaylandığında e-posta yoluyla bir onay alacaksınız"
  3179. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19
  3180. msgctxt "@info:title"
  3181. msgid "The print job was successfully submitted"
  3182. msgstr "Baskı işi başarıyla gönderildi"
  3183. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22
  3184. msgctxt "@action"
  3185. msgid "Manage print jobs"
  3186. msgstr "Baskı işlerini yönet"
  3187. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  3188. msgctxt "@info:status"
  3189. msgid "Please wait until the current job has been sent."
  3190. msgstr "Mevcut iş gönderilene kadar bekleyin."
  3191. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  3192. msgctxt "@info:title"
  3193. msgid "Print error"
  3194. msgstr "Baskı hatası"
  3195. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  3196. msgctxt "@info:text"
  3197. msgid "Could not upload the data to the printer."
  3198. msgstr "Veri yazıcıya yüklenemedi."
  3199. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  3200. msgctxt "@info:title"
  3201. msgid "Network error"
  3202. msgstr "Ağ hatası"
  3203. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  3204. msgctxt "@info:status"
  3205. msgid "Sending Print Job"
  3206. msgstr "Yazdırma İşi Gönderiliyor"
  3207. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  3208. msgctxt "@info:status"
  3209. msgid "Uploading print job to printer."
  3210. msgstr "Baskı işi yazıcıya yükleniyor."
  3211. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  3212. msgctxt "@info:status"
  3213. msgid "Print job queue is full. The printer can't accept a new job."
  3214. msgstr "Baskı işi kuyruğu dolu. Yazıcı yeni iş kabul edemez."
  3215. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  3216. msgctxt "@info:title"
  3217. msgid "Queue Full"
  3218. msgstr "Kuyruk Dolu"
  3219. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  3220. msgctxt "@info:status"
  3221. msgid "Print job was successfully sent to the printer."
  3222. msgstr "Yazdırma işi yazıcıya başarıyla gönderildi."
  3223. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  3224. msgctxt "@info:title"
  3225. msgid "Data Sent"
  3226. msgstr "Veri Gönderildi"
  3227. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17
  3228. msgctxt "info:status"
  3229. msgid "This printer is not linked to the Digital Factory:"
  3230. msgid_plural "These printers are not linked to the Digital Factory:"
  3231. msgstr[0] "Bu yazıcı Digital Factory ile bağlantılandırılmamış:"
  3232. msgstr[1] "Bu yazıcılar Digital Factory ile bağlantılandırılmamış:"
  3233. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29
  3234. #, python-brace-format
  3235. msgctxt "info:status"
  3236. msgid "To establish a connection, please visit the {website_link}"
  3237. msgstr "Bağlantı kurmak için lütfen {website_link} adresini ziyaret edin"
  3238. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33
  3239. msgctxt "info:status"
  3240. msgid "A cloud connection is not available for a printer"
  3241. msgid_plural "A cloud connection is not available for some printers"
  3242. msgstr[0] "Yazıcı için kullanılabilir bulut bağlantısı yok"
  3243. msgstr[1] "Bazı yazıcılar için kullanılabilir bulut bağlantısı yok"
  3244. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41
  3245. msgctxt "@action:button"
  3246. msgid "Keep printer configurations"
  3247. msgstr "Yazıcı yapılandırmalarını koru"
  3248. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46
  3249. msgctxt "@action:button"
  3250. msgid "Remove printers"
  3251. msgstr "Yazıcıları kaldır"
  3252. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
  3253. msgctxt "@action:button Preceded by 'Ready to'."
  3254. msgid "Print over network"
  3255. msgstr "Ağ üzerinden yazdır"
  3256. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
  3257. msgctxt "@properties:tooltip"
  3258. msgid "Print over network"
  3259. msgstr "Ağ üzerinden yazdır"
  3260. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
  3261. msgctxt "@info:status"
  3262. msgid "Connected over the network"
  3263. msgstr "Ağ üzerinden bağlandı"
  3264. #: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  3265. msgctxt "@action"
  3266. msgid "Connect via Network"
  3267. msgstr "Ağ ile Bağlan"
  3268. #: plugins/UM3NetworkPrinting/src/Utils.py:27
  3269. msgctxt "@info:status"
  3270. msgid "tomorrow"
  3271. msgstr "yarın"
  3272. #: plugins/UM3NetworkPrinting/src/Utils.py:30
  3273. msgctxt "@info:status"
  3274. msgid "today"
  3275. msgstr "bugün"
  3276. #: plugins/USBPrinting/USBPrinterOutputDevice.py:42
  3277. msgctxt "@item:inmenu"
  3278. msgid "USB printing"
  3279. msgstr "USB yazdırma"
  3280. #: plugins/USBPrinting/USBPrinterOutputDevice.py:43
  3281. msgctxt "@action:button Preceded by 'Ready to'."
  3282. msgid "Print via USB"
  3283. msgstr "USB ile yazdır"
  3284. #: plugins/USBPrinting/USBPrinterOutputDevice.py:44
  3285. msgctxt "@info:tooltip"
  3286. msgid "Print via USB"
  3287. msgstr "USB ile yazdır"
  3288. #: plugins/USBPrinting/USBPrinterOutputDevice.py:80
  3289. msgctxt "@info:status"
  3290. msgid "Connected via USB"
  3291. msgstr "USB ile bağlı"
  3292. #: plugins/USBPrinting/USBPrinterOutputDevice.py:110
  3293. msgctxt "@label"
  3294. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  3295. msgstr "USB’den yazdırma devam ediyor, Cura’yı kapatmanız bu yazdırma işlemini durduracak. Emin misiniz?"
  3296. #: plugins/USBPrinting/USBPrinterOutputDevice.py:135
  3297. msgctxt "@message"
  3298. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  3299. msgstr "Devam eden bir baskı var. Cura, önceki baskı tamamlanmadan USB aracılığıyla başka bir baskı işi başlatamaz."
  3300. #: plugins/USBPrinting/USBPrinterOutputDevice.py:136
  3301. msgctxt "@message"
  3302. msgid "Print in Progress"
  3303. msgstr "Baskı Sürüyor"
  3304. #: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  3305. msgctxt "@action"
  3306. msgid "Level build plate"
  3307. msgstr "Yapı levhasını dengele"
  3308. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  3309. msgctxt "@title"
  3310. msgid "Build Plate Leveling"
  3311. msgstr "Yapı Levhası Dengeleme"
  3312. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42
  3313. msgctxt "@label"
  3314. msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
  3315. msgstr "Baskılarınızın düzgün çıktığından emin olmak için yapı levhanızı ayarlayabilirsiniz. “Sonraki Konuma Taşı” seçeneğine tıkladığınızda, nozül ayarlanabilen farklı konumlara taşınacak."
  3316. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52
  3317. msgctxt "@label"
  3318. msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
  3319. msgstr "Her konum için nozülün altına bir kağıt yerleştirin ve yazdırma yapı levhasının yüksekliğini ayarlayın. Kağıt nozülün ucundan yavaşça geçerse yazdırma yapı levhasının yüksekliği doğrudur."
  3320. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67
  3321. msgctxt "@action:button"
  3322. msgid "Start Build Plate Leveling"
  3323. msgstr "Yapı Levhasını Dengelemeyi Başlat"
  3324. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79
  3325. msgctxt "@action:button"
  3326. msgid "Move to Next Position"
  3327. msgstr "Sonraki Konuma Taşı"
  3328. #: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  3329. msgctxt "@action"
  3330. msgid "Select upgrades"
  3331. msgstr "Yükseltmeleri seçin"
  3332. #: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  3333. msgctxt "@label"
  3334. msgid "Please select any upgrades made to this UltiMaker Original"
  3335. msgstr "Lütfen UltiMaker Original’e yapılan herhangi bir yükseltmeyi seçin"
  3336. #: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39
  3337. msgctxt "@label"
  3338. msgid "Heated Build Plate (official kit or self-built)"
  3339. msgstr "Isıtılmış Yapı Levhası (orijinal donanım veya şahsen yapılan)"
  3340. #: plugins/X3DReader/__init__.py:13
  3341. msgctxt "@item:inlistbox"
  3342. msgid "X3D File"
  3343. msgstr "X3D Dosyası"
  3344. #: plugins/XRayView/__init__.py:12
  3345. msgctxt "@item:inlistbox"
  3346. msgid "X-Ray view"
  3347. msgstr "Röntgen Görüntüsü"
  3348. #: resources/qml/Account/AccountWidget.qml:24
  3349. msgctxt "@action:button"
  3350. msgid "Sign in"
  3351. msgstr "Giriş yap"
  3352. #: resources/qml/Account/GeneralOperations.qml:19
  3353. #: resources/qml/WelcomePages/CloudContent.qml:64
  3354. msgctxt "@label"
  3355. msgid "Sign in to the UltiMaker platform"
  3356. msgstr "UltiMaker platformuna giriş yapın"
  3357. #: resources/qml/Account/GeneralOperations.qml:39
  3358. #, fuzzy
  3359. msgctxt "@text"
  3360. msgid ""
  3361. "- Add material profiles and plug-ins from the Marketplace\n"
  3362. "- Back-up and sync your material profiles and plug-ins\n"
  3363. "- Share ideas and get help from 48,000+ users in the UltiMaker community"
  3364. msgstr ""
  3365. "- Marketplace'den malzeme profilleri ve eklentiler ekleyin\n"
  3366. "- Malzeme profillerinizi ve eklentilerinizi yedekleyin ve senkronize edin\n"
  3367. "- UltiMaker topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın"
  3368. #: resources/qml/Account/GeneralOperations.qml:58
  3369. msgctxt "@button"
  3370. msgid "Create a free UltiMaker account"
  3371. msgstr "Ücretsiz UltiMaker hesabı oluşturun"
  3372. #: resources/qml/Account/SyncState.qml:35
  3373. msgctxt "@label"
  3374. msgid "Checking..."
  3375. msgstr "Kontrol ediliyor..."
  3376. #: resources/qml/Account/SyncState.qml:42
  3377. msgctxt "@label"
  3378. msgid "Account synced"
  3379. msgstr "Hesap senkronize edildi"
  3380. #: resources/qml/Account/SyncState.qml:49
  3381. msgctxt "@label"
  3382. msgid "Something went wrong..."
  3383. msgstr "Bir sorun oluştu..."
  3384. #: resources/qml/Account/SyncState.qml:102
  3385. msgctxt "@button"
  3386. msgid "Install pending updates"
  3387. msgstr "Bekleyen güncellemeleri yükle"
  3388. #: resources/qml/Account/SyncState.qml:123
  3389. msgctxt "@button"
  3390. msgid "Check for account updates"
  3391. msgstr "Hesap güncellemelerini kontrol et"
  3392. #: resources/qml/Account/UserOperations.qml:78
  3393. msgctxt "@label The argument is a timestamp"
  3394. msgid "Last update: %1"
  3395. msgstr "Son güncelleme: %1"
  3396. #: resources/qml/Account/UserOperations.qml:107
  3397. msgctxt "@button"
  3398. msgid "UltiMaker Account"
  3399. msgstr "UltiMaker hesabı"
  3400. #: resources/qml/Account/UserOperations.qml:126
  3401. msgctxt "@button"
  3402. msgid "Sign Out"
  3403. msgstr "Çıkış yap"
  3404. #: resources/qml/ActionPanel/OutputProcessWidget.qml:59
  3405. msgctxt "@label"
  3406. msgid "No time estimation available"
  3407. msgstr "Süre tahmini yok"
  3408. #: resources/qml/ActionPanel/OutputProcessWidget.qml:77
  3409. msgctxt "@label"
  3410. msgid "No cost estimation available"
  3411. msgstr "Maliyet tahmini yok"
  3412. #: resources/qml/ActionPanel/OutputProcessWidget.qml:127
  3413. msgctxt "@button"
  3414. msgid "Preview"
  3415. msgstr "Önizleme"
  3416. #: resources/qml/ActionPanel/PrintJobInformation.qml:31
  3417. msgctxt "@label"
  3418. msgid "Time estimation"
  3419. msgstr "Süre tahmini"
  3420. #: resources/qml/ActionPanel/PrintJobInformation.qml:107
  3421. msgctxt "@label"
  3422. msgid "Material estimation"
  3423. msgstr "Malzeme tahmini"
  3424. #: resources/qml/ActionPanel/PrintJobInformation.qml:156
  3425. msgctxt "@label m for meter"
  3426. msgid "%1m"
  3427. msgstr "%1 m"
  3428. #: resources/qml/ActionPanel/PrintJobInformation.qml:157
  3429. msgctxt "@label g for grams"
  3430. msgid "%1g"
  3431. msgstr "%1 g"
  3432. #: resources/qml/ActionPanel/SliceProcessWidget.qml:54
  3433. msgctxt "@label:PrintjobStatus"
  3434. msgid "Slicing..."
  3435. msgstr "Dilimleniyor..."
  3436. #: resources/qml/ActionPanel/SliceProcessWidget.qml:78
  3437. msgctxt "@label:PrintjobStatus"
  3438. msgid "Unable to slice"
  3439. msgstr "Dilimlenemedi"
  3440. #: resources/qml/ActionPanel/SliceProcessWidget.qml:114
  3441. msgctxt "@button"
  3442. msgid "Processing"
  3443. msgstr "İşleme"
  3444. #: resources/qml/ActionPanel/SliceProcessWidget.qml:114
  3445. msgctxt "@button"
  3446. msgid "Slice"
  3447. msgstr "Dilimle"
  3448. #: resources/qml/ActionPanel/SliceProcessWidget.qml:115
  3449. msgctxt "@label"
  3450. msgid "Start the slicing process"
  3451. msgstr "Dilimleme sürecini başlat"
  3452. #: resources/qml/ActionPanel/SliceProcessWidget.qml:132
  3453. msgctxt "@button"
  3454. msgid "Cancel"
  3455. msgstr "İptal"
  3456. #: resources/qml/Actions.qml:81
  3457. msgctxt "@action:inmenu"
  3458. msgid "Show Online Troubleshooting"
  3459. msgstr "Çevrimiçi Sorun Giderme Kılavuzunu Göster"
  3460. #: resources/qml/Actions.qml:88
  3461. msgctxt "@action:inmenu"
  3462. msgid "Toggle Full Screen"
  3463. msgstr "Tam Ekrana Geç"
  3464. #: resources/qml/Actions.qml:96
  3465. msgctxt "@action:inmenu"
  3466. msgid "Exit Full Screen"
  3467. msgstr "Tam Ekrandan Çık"
  3468. #: resources/qml/Actions.qml:103
  3469. msgctxt "@action:inmenu menubar:edit"
  3470. msgid "&Undo"
  3471. msgstr "&Geri Al"
  3472. #: resources/qml/Actions.qml:113
  3473. msgctxt "@action:inmenu menubar:edit"
  3474. msgid "&Redo"
  3475. msgstr "&Yinele"
  3476. #: resources/qml/Actions.qml:131
  3477. msgctxt "@action:inmenu menubar:file"
  3478. msgid "&Quit"
  3479. msgstr "&Çıkış"
  3480. #: resources/qml/Actions.qml:139
  3481. msgctxt "@action:inmenu menubar:view"
  3482. msgid "3D View"
  3483. msgstr "3 Boyutlu Görünüm"
  3484. #: resources/qml/Actions.qml:146
  3485. msgctxt "@action:inmenu menubar:view"
  3486. msgid "Front View"
  3487. msgstr "Önden Görünüm"
  3488. #: resources/qml/Actions.qml:153
  3489. msgctxt "@action:inmenu menubar:view"
  3490. msgid "Top View"
  3491. msgstr "Yukarıdan Görünüm"
  3492. #: resources/qml/Actions.qml:160
  3493. msgctxt "@action:inmenu menubar:view"
  3494. msgid "Bottom View"
  3495. msgstr "Alttan Görünüm"
  3496. #: resources/qml/Actions.qml:167
  3497. msgctxt "@action:inmenu menubar:view"
  3498. msgid "Left Side View"
  3499. msgstr "Sol Taraftan Görünüm"
  3500. #: resources/qml/Actions.qml:174
  3501. msgctxt "@action:inmenu menubar:view"
  3502. msgid "Right Side View"
  3503. msgstr "Sağ Taraftan Görünüm"
  3504. #: resources/qml/Actions.qml:188
  3505. msgctxt "@action:inmenu"
  3506. msgid "Configure Cura..."
  3507. msgstr "Cura’yı yapılandır..."
  3508. #: resources/qml/Actions.qml:197
  3509. msgctxt "@action:inmenu menubar:printer"
  3510. msgid "&Add Printer..."
  3511. msgstr "&Yazıcı Ekle..."
  3512. #: resources/qml/Actions.qml:203
  3513. msgctxt "@action:inmenu menubar:printer"
  3514. msgid "Manage Pr&inters..."
  3515. msgstr "Yazıcıları Yönet..."
  3516. #: resources/qml/Actions.qml:210
  3517. msgctxt "@action:inmenu"
  3518. msgid "Manage Materials..."
  3519. msgstr "Malzemeleri Yönet..."
  3520. #: resources/qml/Actions.qml:218
  3521. #, fuzzy
  3522. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  3523. msgid "Add more materials from Marketplace"
  3524. msgstr "Mağazadan daha fazla malzeme ekle"
  3525. #: resources/qml/Actions.qml:225
  3526. msgctxt "@action:inmenu menubar:profile"
  3527. msgid "&Update profile with current settings/overrides"
  3528. msgstr "&Profili geçerli ayarlar/geçersiz kılmalar ile güncelle"
  3529. #: resources/qml/Actions.qml:233
  3530. msgctxt "@action:inmenu menubar:profile"
  3531. msgid "&Discard current changes"
  3532. msgstr "&Geçerli değişiklikleri iptal et"
  3533. #: resources/qml/Actions.qml:245
  3534. msgctxt "@action:inmenu menubar:profile"
  3535. msgid "&Create profile from current settings/overrides..."
  3536. msgstr "G&eçerli ayarlardan/geçersiz kılmalardan profil oluştur..."
  3537. #: resources/qml/Actions.qml:251
  3538. msgctxt "@action:inmenu menubar:profile"
  3539. msgid "Manage Profiles..."
  3540. msgstr "Profilleri Yönet..."
  3541. #: resources/qml/Actions.qml:259
  3542. msgctxt "@action:inmenu menubar:help"
  3543. msgid "Show Online &Documentation"
  3544. msgstr "Çevrimiçi Belgeleri Göster"
  3545. #: resources/qml/Actions.qml:267
  3546. msgctxt "@action:inmenu menubar:help"
  3547. msgid "Report a &Bug"
  3548. msgstr "Hata Bildir"
  3549. #: resources/qml/Actions.qml:275
  3550. msgctxt "@action:inmenu menubar:help"
  3551. msgid "What's New"
  3552. msgstr "Yenilikler"
  3553. #: resources/qml/Actions.qml:289
  3554. msgctxt "@action:inmenu menubar:help"
  3555. msgid "About..."
  3556. msgstr "Hakkında..."
  3557. #: resources/qml/Actions.qml:296
  3558. msgctxt "@action:inmenu menubar:edit"
  3559. msgid "Delete Selected"
  3560. msgstr "Seçileni Sil"
  3561. #: resources/qml/Actions.qml:306
  3562. msgctxt "@action:inmenu menubar:edit"
  3563. msgid "Center Selected"
  3564. msgstr "Seçileni Ortala"
  3565. #: resources/qml/Actions.qml:315
  3566. msgctxt "@action:inmenu menubar:edit"
  3567. msgid "Multiply Selected"
  3568. msgstr "Seçileni Çoğalt"
  3569. #: resources/qml/Actions.qml:324
  3570. msgctxt "@action:inmenu"
  3571. msgid "Delete Model"
  3572. msgstr "Modeli Sil"
  3573. #: resources/qml/Actions.qml:332
  3574. msgctxt "@action:inmenu"
  3575. msgid "Ce&nter Model on Platform"
  3576. msgstr "Modeli Platformda Ortala"
  3577. #: resources/qml/Actions.qml:338
  3578. msgctxt "@action:inmenu menubar:edit"
  3579. msgid "&Group Models"
  3580. msgstr "Modelleri Gruplandır"
  3581. #: resources/qml/Actions.qml:358
  3582. msgctxt "@action:inmenu menubar:edit"
  3583. msgid "Ungroup Models"
  3584. msgstr "Model Grubunu Çöz"
  3585. #: resources/qml/Actions.qml:368
  3586. msgctxt "@action:inmenu menubar:edit"
  3587. msgid "&Merge Models"
  3588. msgstr "&Modelleri Birleştir"
  3589. #: resources/qml/Actions.qml:378
  3590. msgctxt "@action:inmenu"
  3591. msgid "&Multiply Model..."
  3592. msgstr "&Modeli Çoğalt..."
  3593. #: resources/qml/Actions.qml:385
  3594. msgctxt "@action:inmenu menubar:edit"
  3595. msgid "Select All Models"
  3596. msgstr "Tüm modelleri Seç"
  3597. #: resources/qml/Actions.qml:395
  3598. msgctxt "@action:inmenu menubar:edit"
  3599. msgid "Clear Build Plate"
  3600. msgstr "Yapı Levhasını Temizle"
  3601. #: resources/qml/Actions.qml:405
  3602. msgctxt "@action:inmenu menubar:file"
  3603. msgid "Reload All Models"
  3604. msgstr "Tüm Modelleri Yeniden Yükle"
  3605. #: resources/qml/Actions.qml:414
  3606. msgctxt "@action:inmenu menubar:edit"
  3607. msgid "Arrange All Models"
  3608. msgstr "Tüm Modelleri Düzenle"
  3609. #: resources/qml/Actions.qml:422
  3610. msgctxt "@action:inmenu menubar:edit"
  3611. msgid "Arrange Selection"
  3612. msgstr "Seçimi Düzenle"
  3613. #: resources/qml/Actions.qml:429
  3614. msgctxt "@action:inmenu menubar:edit"
  3615. msgid "Reset All Model Positions"
  3616. msgstr "Tüm Model Konumlarını Sıfırla"
  3617. #: resources/qml/Actions.qml:436
  3618. msgctxt "@action:inmenu menubar:edit"
  3619. msgid "Reset All Model Transformations"
  3620. msgstr "Tüm Model ve Dönüşümleri Sıfırla"
  3621. #: resources/qml/Actions.qml:445
  3622. msgctxt "@action:inmenu menubar:file"
  3623. msgid "&Open File(s)..."
  3624. msgstr "&Dosya Aç..."
  3625. #: resources/qml/Actions.qml:455
  3626. msgctxt "@action:inmenu menubar:file"
  3627. msgid "&New Project..."
  3628. msgstr "&Yeni Proje..."
  3629. #: resources/qml/Actions.qml:462
  3630. msgctxt "@action:inmenu menubar:help"
  3631. msgid "Show Configuration Folder"
  3632. msgstr "Yapılandırma Klasörünü Göster"
  3633. #: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476
  3634. msgctxt "@action:menu"
  3635. msgid "Configure setting visibility..."
  3636. msgstr "Görünürlük ayarını yapılandır..."
  3637. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  3638. msgctxt "@label:button"
  3639. msgid "My printers"
  3640. msgstr "Yazıcılarım"
  3641. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  3642. msgctxt "@tooltip:button"
  3643. msgid "Monitor printers in Ultimaker Digital Factory."
  3644. msgstr "Ultimaker Digital Factory'de yazıcıları izleyin."
  3645. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  3646. msgctxt "@tooltip:button"
  3647. msgid "Create print projects in Digital Library."
  3648. msgstr "Digital Library'de baskı projeleri oluşturun."
  3649. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  3650. msgctxt "@label:button"
  3651. msgid "Print jobs"
  3652. msgstr "Yazdırma görevleri"
  3653. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  3654. msgctxt "@tooltip:button"
  3655. msgid "Monitor print jobs and reprint from your print history."
  3656. msgstr "Baskı işlerini takip edin ve baskı geçmişinizden yeniden baskı işlemi yapın."
  3657. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  3658. msgctxt "@tooltip:button"
  3659. msgid "Extend UltiMaker Cura with plugins and material profiles."
  3660. msgstr "UltiMaker Cura'yı eklentilerle ve malzeme profilleriyle genişletin."
  3661. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  3662. msgctxt "@tooltip:button"
  3663. msgid "Become a 3D printing expert with UltiMaker e-learning."
  3664. msgstr "UltiMaker e-öğrenme ile 3D baskı uzmanı olun."
  3665. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  3666. msgctxt "@label:button"
  3667. msgid "UltiMaker support"
  3668. msgstr "UltiMaker desteği"
  3669. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  3670. msgctxt "@tooltip:button"
  3671. msgid "Learn how to get started with UltiMaker Cura."
  3672. msgstr "UltiMaker Cura ile işe nasıl başlayacağınızı öğrenin."
  3673. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  3674. msgctxt "@label:button"
  3675. msgid "Ask a question"
  3676. msgstr "Soru gönder"
  3677. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  3678. msgctxt "@tooltip:button"
  3679. msgid "Consult the UltiMaker Community."
  3680. msgstr "UltiMaker Topluluğundan yardım alın."
  3681. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  3682. msgctxt "@label:button"
  3683. msgid "Report a bug"
  3684. msgstr "Hata bildirin"
  3685. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  3686. msgctxt "@tooltip:button"
  3687. msgid "Let developers know that something is going wrong."
  3688. msgstr "Geliştiricileri sorunlarla ilgili bilgilendirin."
  3689. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  3690. msgctxt "@tooltip:button"
  3691. msgid "Visit the UltiMaker website."
  3692. msgstr "UltiMaker web sitesini ziyaret edin."
  3693. #: resources/qml/ColorDialog.qml:110
  3694. msgctxt "@label"
  3695. msgid "Hex"
  3696. msgstr "Altıgen"
  3697. #: resources/qml/Cura.qml:256
  3698. msgctxt "@label"
  3699. msgid "This package will be installed after restarting."
  3700. msgstr "Bu paket yeniden başlatmanın ardından kurulacak."
  3701. #: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14
  3702. msgctxt "@title:tab"
  3703. msgid "General"
  3704. msgstr "Genel"
  3705. #: resources/qml/Cura.qml:470
  3706. msgctxt "@title:tab"
  3707. msgid "Settings"
  3708. msgstr "Ayarlar"
  3709. #: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17
  3710. msgctxt "@title:tab"
  3711. msgid "Printers"
  3712. msgstr "Yazıcılar"
  3713. #: resources/qml/Cura.qml:474
  3714. #: resources/qml/Preferences/Materials/MaterialsPage.qml:70
  3715. msgctxt "@title:tab"
  3716. msgid "Materials"
  3717. msgstr "Malzemeler"
  3718. #: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57
  3719. msgctxt "@title:tab"
  3720. msgid "Profiles"
  3721. msgstr "Profiller"
  3722. #: resources/qml/Cura.qml:581
  3723. msgctxt "@title:window %1 is the application name"
  3724. msgid "Closing %1"
  3725. msgstr "%1 kapatılıyor"
  3726. #: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591
  3727. msgctxt "@label %1 is the application name"
  3728. msgid "Are you sure you want to exit %1?"
  3729. msgstr "%1 uygulamasından çıkmak istediğinizden emin misiniz?"
  3730. #: resources/qml/Cura.qml:629
  3731. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16
  3732. msgctxt "@title:window"
  3733. msgid "Open file(s)"
  3734. msgstr "Dosya aç"
  3735. #: resources/qml/Cura.qml:734
  3736. msgctxt "@window:title"
  3737. msgid "Install Package"
  3738. msgstr "Paketi Kur"
  3739. #: resources/qml/Cura.qml:741
  3740. msgctxt "@title:window"
  3741. msgid "Open File(s)"
  3742. msgstr "Dosya Aç"
  3743. #: resources/qml/Cura.qml:743
  3744. msgctxt "@text:window"
  3745. msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
  3746. msgstr "Seçtiğiniz dosyalar arasında bir veya daha fazla G-code dosyası bulduk. Tek seferde sadece bir G-code dosyası açabilirsiniz. Bir G-code dosyası açmak istiyorsanız, sadece birini seçiniz."
  3747. #: resources/qml/Cura.qml:828
  3748. msgctxt "@title:window"
  3749. msgid "Add Printer"
  3750. msgstr "Yazıcı Ekle"
  3751. #: resources/qml/Cura.qml:836
  3752. msgctxt "@title:window"
  3753. msgid "What's New"
  3754. msgstr "Yenilikler"
  3755. #: resources/qml/Cura.qml:890
  3756. #, fuzzy
  3757. msgctxt "@title:window"
  3758. msgid "Save Custom Profile"
  3759. msgstr "Özel profil"
  3760. #: resources/qml/Cura.qml:891
  3761. #, fuzzy
  3762. msgctxt "@textfield:placeholder"
  3763. msgid "New Custom Profile"
  3764. msgstr "Özel profil"
  3765. #: resources/qml/Cura.qml:892
  3766. #, fuzzy
  3767. msgctxt "@info"
  3768. msgid "Custom profile name:"
  3769. msgstr "Özel profil"
  3770. #: resources/qml/Cura.qml:909
  3771. msgctxt "@label %i will be replaced with a profile name"
  3772. msgid "<b>Only user changed settings will be saved in the custom profile.</b><br/>For materials that support it, the new custom profile will inherit properties from <b>%1</b>."
  3773. msgstr ""
  3774. #: resources/qml/Cura.qml:917
  3775. msgctxt "@action:button"
  3776. msgid "Learn more about Cura print profiles"
  3777. msgstr ""
  3778. #: resources/qml/Cura.qml:926
  3779. #, fuzzy
  3780. msgctxt "@button"
  3781. msgid "Save new profile"
  3782. msgstr "Profilde değil"
  3783. #: resources/qml/Dialogs/AboutDialog.qml:15
  3784. msgctxt "@title:window The argument is the application name."
  3785. msgid "About %1"
  3786. msgstr "%1 hakkında"
  3787. #: resources/qml/Dialogs/AboutDialog.qml:59
  3788. msgctxt "@label"
  3789. msgid "version: %1"
  3790. msgstr "sürüm: %1"
  3791. #: resources/qml/Dialogs/AboutDialog.qml:74
  3792. msgctxt "@label"
  3793. msgid "End-to-end solution for fused filament 3D printing."
  3794. msgstr "Kaynaşık filaman 3B yazdırma için kalıcı çözüm."
  3795. #: resources/qml/Dialogs/AboutDialog.qml:87
  3796. msgctxt "@info:credit"
  3797. msgid ""
  3798. "Cura is developed by UltiMaker in cooperation with the community.\n"
  3799. "Cura proudly uses the following open source projects:"
  3800. msgstr ""
  3801. "Cura, topluluk iş birliği ile UltiMaker B.V. tarafından geliştirilmiştir.\n"
  3802. "Cura aşağıdaki açık kaynak projelerini gururla kullanmaktadır:"
  3803. #: resources/qml/Dialogs/AboutDialog.qml:138
  3804. msgctxt "@label Description for application component"
  3805. msgid "Graphical user interface"
  3806. msgstr "Grafik kullanıcı arayüzü"
  3807. #: resources/qml/Dialogs/AboutDialog.qml:139
  3808. msgctxt "@label Description for application component"
  3809. msgid "Application framework"
  3810. msgstr "Uygulama çerçevesi"
  3811. #: resources/qml/Dialogs/AboutDialog.qml:140
  3812. msgctxt "@label Description for application component"
  3813. msgid "G-code generator"
  3814. msgstr "G-code oluşturucu"
  3815. #: resources/qml/Dialogs/AboutDialog.qml:141
  3816. msgctxt "@label Description for application component"
  3817. msgid "Interprocess communication library"
  3818. msgstr "İşlemler arası iletişim kitaplığı"
  3819. #: resources/qml/Dialogs/AboutDialog.qml:142
  3820. msgctxt "@label Description for application component"
  3821. msgid "Python bindings for libnest2d"
  3822. msgstr "libnest2d için Python bağlamaları"
  3823. #: resources/qml/Dialogs/AboutDialog.qml:143
  3824. msgctxt "@label Description for application component"
  3825. msgid "Polygon packing library, developed by Prusa Research"
  3826. msgstr "Prusa Research tarafından geliştirilen Poligon paketleme kitaplığı"
  3827. #: resources/qml/Dialogs/AboutDialog.qml:144
  3828. msgctxt "@label Description for application component"
  3829. msgid "Support library for handling 3MF files"
  3830. msgstr "3MF dosyalarının işlenmesi için destek kitaplığı"
  3831. #: resources/qml/Dialogs/AboutDialog.qml:145
  3832. msgctxt "@label Description for application component"
  3833. msgid "Support library for file metadata and streaming"
  3834. msgstr "Dosya meta verileri ve akış için destek kitaplığı"
  3835. #: resources/qml/Dialogs/AboutDialog.qml:148
  3836. msgctxt "@label Description for application dependency"
  3837. msgid "Programming language"
  3838. msgstr "Programlama dili"
  3839. #: resources/qml/Dialogs/AboutDialog.qml:149
  3840. msgctxt "@label Description for application dependency"
  3841. msgid "GUI framework"
  3842. msgstr "GUI çerçevesi"
  3843. #: resources/qml/Dialogs/AboutDialog.qml:150
  3844. msgctxt "@label Description for application dependency"
  3845. msgid "GUI framework bindings"
  3846. msgstr "GUI çerçeve bağlantıları"
  3847. #: resources/qml/Dialogs/AboutDialog.qml:151
  3848. msgctxt "@label Description for application dependency"
  3849. msgid "C/C++ Binding library"
  3850. msgstr "C/C++ Bağlantı kitaplığı"
  3851. #: resources/qml/Dialogs/AboutDialog.qml:152
  3852. msgctxt "@label Description for application dependency"
  3853. msgid "Data interchange format"
  3854. msgstr "Veri değişim biçimi"
  3855. #: resources/qml/Dialogs/AboutDialog.qml:153
  3856. msgctxt "@label"
  3857. msgid "Font"
  3858. msgstr "Yazı tipi"
  3859. #: resources/qml/Dialogs/AboutDialog.qml:156
  3860. msgctxt "@label Description for application dependency"
  3861. msgid "Polygon clipping library"
  3862. msgstr "Poligon kırpma kitaplığı"
  3863. #: resources/qml/Dialogs/AboutDialog.qml:157
  3864. msgctxt "@label Description for application dependency"
  3865. msgid "JSON parser"
  3866. msgstr "JSON ayrıştırıcı"
  3867. #: resources/qml/Dialogs/AboutDialog.qml:158
  3868. msgctxt "@label Description for application dependency"
  3869. msgid "Utility functions, including an image loader"
  3870. msgstr "Kullanım işlevleri, bir resim yükleyici dâhil"
  3871. #: resources/qml/Dialogs/AboutDialog.qml:159
  3872. msgctxt "@label Description for application dependency"
  3873. msgid "Utility library, including Voronoi generation"
  3874. msgstr "Kullanım kütüphanesi, Voronoi oluşturma dâhil"
  3875. #: resources/qml/Dialogs/AboutDialog.qml:162
  3876. #: resources/qml/Dialogs/AboutDialog.qml:163
  3877. msgctxt "@label Description for application dependency"
  3878. msgid "Root Certificates for validating SSL trustworthiness"
  3879. msgstr "SSL güvenilirliğini doğrulamak için kök sertifikalar"
  3880. #: resources/qml/Dialogs/AboutDialog.qml:164
  3881. msgctxt "@label Description for application dependency"
  3882. msgid "Compatibility between Python 2 and 3"
  3883. msgstr "Python 2 ve 3 arasında uyumluluk"
  3884. #: resources/qml/Dialogs/AboutDialog.qml:165
  3885. msgctxt "@label Description for application dependency"
  3886. msgid "Support library for system keyring access"
  3887. msgstr "Sistem anahtarlık erişimi için destek kitaplığı"
  3888. #: resources/qml/Dialogs/AboutDialog.qml:166
  3889. msgctxt "@label Description for application dependency"
  3890. msgid "Support library for faster math"
  3891. msgstr "Daha hızlı matematik için destek kitaplığı"
  3892. #: resources/qml/Dialogs/AboutDialog.qml:167
  3893. msgctxt "@label Description for application dependency"
  3894. msgid "Support library for handling STL files"
  3895. msgstr "STL dosyalarının işlenmesi için destek kitaplığı"
  3896. #: resources/qml/Dialogs/AboutDialog.qml:168
  3897. msgctxt "@label Description for application dependency"
  3898. msgid "Python bindings for Clipper"
  3899. msgstr "Clipper için Python bağlamaları"
  3900. #: resources/qml/Dialogs/AboutDialog.qml:169
  3901. msgctxt "@label Description for application dependency"
  3902. msgid "Serial communication library"
  3903. msgstr "Seri iletişim kitaplığı"
  3904. #: resources/qml/Dialogs/AboutDialog.qml:170
  3905. msgctxt "@label Description for application dependency"
  3906. msgid "Support library for scientific computing"
  3907. msgstr "Bilimsel bilgi işlem için destek kitaplığı"
  3908. #: resources/qml/Dialogs/AboutDialog.qml:171
  3909. msgctxt "@Label Description for application dependency"
  3910. msgid "Python Error tracking library"
  3911. msgstr "Python Hata takip kitaplığı"
  3912. #: resources/qml/Dialogs/AboutDialog.qml:172
  3913. msgctxt "@label Description for application dependency"
  3914. msgid "Support library for handling triangular meshes"
  3915. msgstr "Üçgen birleşimlerin işlenmesi için destek kitaplığı"
  3916. #: resources/qml/Dialogs/AboutDialog.qml:173
  3917. msgctxt "@label Description for application dependency"
  3918. msgid "ZeroConf discovery library"
  3919. msgstr "ZeroConf keşif kitaplığı"
  3920. #: resources/qml/Dialogs/AboutDialog.qml:176
  3921. msgctxt "@label Description for development tool"
  3922. msgid "Universal build system configuration"
  3923. msgstr "Evrensel yapı sistemi yapılandırması"
  3924. #: resources/qml/Dialogs/AboutDialog.qml:177
  3925. msgctxt "@label Description for development tool"
  3926. msgid "Dependency and package manager"
  3927. msgstr "Bağımlılık ve paket yöneticisi"
  3928. #: resources/qml/Dialogs/AboutDialog.qml:178
  3929. msgctxt "@label Description for development tool"
  3930. msgid "Packaging Python-applications"
  3931. msgstr "Python uygulamalarını paketleme"
  3932. #: resources/qml/Dialogs/AboutDialog.qml:179
  3933. msgctxt "@label Description for development tool"
  3934. msgid "Linux cross-distribution application deployment"
  3935. msgstr "Linux çapraz-dağıtım uygulama dağıtımı"
  3936. #: resources/qml/Dialogs/AboutDialog.qml:180
  3937. msgctxt "@label Description for development tool"
  3938. msgid "Generating Windows installers"
  3939. msgstr "Windows yükleyicileri oluşturma"
  3940. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  3941. msgctxt "@title:window"
  3942. msgid "Open project file"
  3943. msgstr "Proje dosyası aç"
  3944. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84
  3945. msgctxt "@text:window"
  3946. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3947. msgstr "Bu bir Cura proje dosyasıdır. Bir proje olarak açmak mı yoksa içindeki modelleri içe aktarmak mı istiyorsunuz?"
  3948. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  3949. msgctxt "@text:window"
  3950. msgid "Remember my choice"
  3951. msgstr "Seçimimi hatırla"
  3952. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  3953. msgctxt "@action:button"
  3954. msgid "Open as project"
  3955. msgstr "Proje olarak aç"
  3956. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  3957. msgctxt "@action:button"
  3958. msgid "Import models"
  3959. msgstr "Modelleri içe aktar"
  3960. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:17
  3961. msgctxt "@title:window"
  3962. msgid "Select Printer"
  3963. msgstr "Yazıcı Seç"
  3964. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:54
  3965. msgctxt "@title:label"
  3966. msgid "Compatible Printers"
  3967. msgstr "Uyumlu yazıcılar"
  3968. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:110
  3969. msgctxt "@description"
  3970. msgid "No compatible printers, that are currently online, where found."
  3971. msgstr "Şu anda çevrimiçi olan hiçbir uyumlu yazıcı bulunamadı."
  3972. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13
  3973. msgctxt "@title:window"
  3974. msgid "Discard or Keep changes"
  3975. msgstr "Değişiklikleri iptal et veya kaydet"
  3976. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64
  3977. msgctxt "@text:window, %1 is a profile name"
  3978. msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'."
  3979. msgstr ""
  3980. "Bazı profil ayarlarını özelleştirdiniz.\n"
  3981. "Profiller arasında geçiş yapıldıktan sonra bu değişiklikleri tutmak ister misiniz?\n"
  3982. "Alternatif olarak, '%1' üzerinden varsayılanları yüklemek için değişiklikleri silebilirsiniz."
  3983. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90
  3984. msgctxt "@title:column"
  3985. msgid "Profile settings"
  3986. msgstr "Profil ayarları"
  3987. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92
  3988. msgctxt "@title:column"
  3989. msgid "Current changes"
  3990. msgstr "Mevcut değişiklikler"
  3991. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123
  3992. #: resources/qml/Preferences/GeneralPage.qml:820
  3993. msgctxt "@option:discardOrKeep"
  3994. msgid "Always ask me this"
  3995. msgstr "Her zaman sor"
  3996. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124
  3997. msgctxt "@option:discardOrKeep"
  3998. msgid "Discard and never ask again"
  3999. msgstr "İptal et ve bir daha sorma"
  4000. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  4001. msgctxt "@option:discardOrKeep"
  4002. msgid "Keep and never ask again"
  4003. msgstr "Kaydet ve bir daha sorma"
  4004. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157
  4005. msgctxt "@action:button"
  4006. msgid "Discard changes"
  4007. msgstr "Değişiklikleri sil"
  4008. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164
  4009. msgctxt "@action:button"
  4010. msgid "Keep changes"
  4011. msgstr "Değişiklikleri tut"
  4012. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171
  4013. #, fuzzy
  4014. msgctxt "@action:button"
  4015. msgid "Save as new custom profile"
  4016. msgstr "Özel profil"
  4017. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178
  4018. #, fuzzy
  4019. msgctxt "@action:button"
  4020. msgid "Save changes"
  4021. msgstr "Değişiklikleri tut"
  4022. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  4023. msgctxt "@text:window"
  4024. msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
  4025. msgstr "Seçtiğiniz dosyalar arasında bir veya daha fazla proje dosyası bulduk. Tek seferde sadece bir proje dosyası açabilirsiniz. Sadece bu dosyalarda bulunan modelleri içe aktarmanızı öneririz. Devam etmek istiyor musunuz?"
  4026. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  4027. msgctxt "@action:button"
  4028. msgid "Import all as models"
  4029. msgstr "Tümünü model olarak içe aktar"
  4030. #: resources/qml/Dialogs/RenameDialog.qml:23
  4031. msgctxt "@title:window"
  4032. msgid "Rename"
  4033. msgstr "Yeniden adlandır"
  4034. #: resources/qml/Dialogs/RenameDialog.qml:24
  4035. msgctxt "@info"
  4036. msgid "Please provide a new name."
  4037. msgstr "Lütfen yeni bir ad girin."
  4038. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  4039. msgctxt "@title:window"
  4040. msgid "Save Project"
  4041. msgstr "Projeyi Kaydet"
  4042. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177
  4043. msgctxt "@action:label"
  4044. msgid "Extruder %1"
  4045. msgstr "Ekstruder %1"
  4046. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193
  4047. msgctxt "@action:label"
  4048. msgid "%1 & material"
  4049. msgstr "%1 & malzeme"
  4050. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195
  4051. msgctxt "@action:label"
  4052. msgid "Material"
  4053. msgstr "Malzeme"
  4054. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284
  4055. msgctxt "@action:label"
  4056. msgid "Don't show project summary on save again"
  4057. msgstr "Kaydederken proje özetini bir daha gösterme"
  4058. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298
  4059. msgctxt "@action:button"
  4060. msgid "Save"
  4061. msgstr "Kaydet"
  4062. #: resources/qml/JobSpecs.qml:93
  4063. msgctxt "@text Print job name"
  4064. msgid "Untitled"
  4065. msgstr "Başlıksız"
  4066. #: resources/qml/MainWindow/ApplicationMenu.qml:63
  4067. #: resources/qml/Menus/SettingsMenu.qml:13
  4068. msgctxt "@title:menu menubar:toplevel"
  4069. msgid "&Settings"
  4070. msgstr "&Ayarlar"
  4071. #: resources/qml/MainWindow/ApplicationMenu.qml:87
  4072. msgctxt "@title:window"
  4073. msgid "New project"
  4074. msgstr "Yeni proje"
  4075. #: resources/qml/MainWindow/ApplicationMenu.qml:88
  4076. msgctxt "@info:question"
  4077. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  4078. msgstr "Yeni bir proje başlatmak istediğinizden emin misiniz? Bu işlem yapı levhasını ve kaydedilmemiş tüm ayarları silecektir."
  4079. #: resources/qml/MainWindow/MainWindowHeader.qml:135
  4080. msgctxt "@action:button"
  4081. msgid "Marketplace"
  4082. msgstr "Mağaza"
  4083. #: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  4084. msgctxt "@header"
  4085. msgid "Configurations"
  4086. msgstr "Yapılandırmalar"
  4087. #: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  4088. msgctxt "@label"
  4089. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  4090. msgstr "%1 tanınmadığından bu yapılandırma kullanılamaz. Doğru malzeme profilini indirmek için lütfen %2 bölümünü ziyaret edin."
  4091. #: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  4092. msgctxt "@label"
  4093. msgid "Marketplace"
  4094. msgstr "Mağaza"
  4095. #: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  4096. msgctxt "@label"
  4097. msgid "Loading available configurations from the printer..."
  4098. msgstr "Kullanılabilir yapılandırmalar yazıcıdan yükleniyor..."
  4099. #: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  4100. msgctxt "@label"
  4101. msgid "The configurations are not available because the printer is disconnected."
  4102. msgstr "Yazıcı bağlı olmadığından yapılandırmalar kullanılamıyor."
  4103. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106
  4104. msgctxt "@tooltip"
  4105. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  4106. msgstr "Bu ekstrüderin yapılandırılmasına izin verilmiyor ve dilimleme yapılamaz."
  4107. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110
  4108. msgctxt "@tooltip"
  4109. msgid "There are no profiles matching the configuration of this extruder."
  4110. msgstr "Bu ekstrüderin yapılandırmasıyla eşleşen profil yok."
  4111. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250
  4112. msgctxt "@label"
  4113. msgid "Select configuration"
  4114. msgstr "Yapılandırma seç"
  4115. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358
  4116. msgctxt "@label"
  4117. msgid "Configurations"
  4118. msgstr "Yapılandırmalar"
  4119. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  4120. msgctxt "@header"
  4121. msgid "Custom"
  4122. msgstr "Özel"
  4123. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173
  4124. msgctxt "@label"
  4125. msgid "Enabled"
  4126. msgstr "Etkin"
  4127. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222
  4128. msgctxt "@label"
  4129. msgid "Material"
  4130. msgstr "Malzeme"
  4131. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348
  4132. msgctxt "@label"
  4133. msgid "Use glue for better adhesion with this material combination."
  4134. msgstr "Bu malzeme kombinasyonuyla daha iyi yapıştırma için yapıştırıcı kullanın."
  4135. #: resources/qml/Menus/ContextMenu.qml:29
  4136. msgctxt "@label"
  4137. msgid "Print Selected Model With:"
  4138. msgid_plural "Print Selected Models With:"
  4139. msgstr[0] "Seçili Modeli Şununla Yazdır:"
  4140. msgstr[1] "Seçili Modelleri Şununla Yazdır:"
  4141. #: resources/qml/Menus/ContextMenu.qml:92
  4142. msgctxt "@title:window"
  4143. msgid "Multiply Selected Model"
  4144. msgid_plural "Multiply Selected Models"
  4145. msgstr[0] "Seçili Modeli Çoğalt"
  4146. msgstr[1] "Seçili Modelleri Çoğalt"
  4147. #: resources/qml/Menus/ContextMenu.qml:123
  4148. msgctxt "@label"
  4149. msgid "Number of Copies"
  4150. msgstr "Kopya Sayısı"
  4151. #: resources/qml/Menus/EditMenu.qml:12
  4152. msgctxt "@title:menu menubar:toplevel"
  4153. msgid "&Edit"
  4154. msgstr "Düz&enle"
  4155. #: resources/qml/Menus/ExtensionMenu.qml:13
  4156. msgctxt "@title:menu menubar:toplevel"
  4157. msgid "E&xtensions"
  4158. msgstr "Uzantılar"
  4159. #: resources/qml/Menus/FileMenu.qml:13
  4160. msgctxt "@title:menu menubar:toplevel"
  4161. msgid "&File"
  4162. msgstr "&Dosya"
  4163. #: resources/qml/Menus/FileMenu.qml:45
  4164. msgctxt "@title:menu menubar:file"
  4165. msgid "&Save Project..."
  4166. msgstr "&Projeyi Kaydet..."
  4167. #: resources/qml/Menus/FileMenu.qml:78
  4168. msgctxt "@title:menu menubar:file"
  4169. msgid "&Export..."
  4170. msgstr "&Dışa Aktar..."
  4171. #: resources/qml/Menus/FileMenu.qml:89
  4172. msgctxt "@action:inmenu menubar:file"
  4173. msgid "Export Selection..."
  4174. msgstr "Seçimi Dışa Aktar..."
  4175. #: resources/qml/Menus/HelpMenu.qml:14
  4176. msgctxt "@title:menu menubar:toplevel"
  4177. msgid "&Help"
  4178. msgstr "&Yardım"
  4179. #: resources/qml/Menus/MaterialMenu.qml:13
  4180. msgctxt "@label:category menu label"
  4181. msgid "Material"
  4182. msgstr "Malzeme"
  4183. #: resources/qml/Menus/MaterialMenu.qml:53
  4184. msgctxt "@label:category menu label"
  4185. msgid "Favorites"
  4186. msgstr "Favoriler"
  4187. #: resources/qml/Menus/MaterialMenu.qml:78
  4188. msgctxt "@label:category menu label"
  4189. msgid "Generic"
  4190. msgstr "Genel"
  4191. #: resources/qml/Menus/OpenFilesMenu.qml:15
  4192. msgctxt "@title:menu menubar:file"
  4193. msgid "Open File(s)..."
  4194. msgstr "Dosya Aç..."
  4195. #: resources/qml/Menus/PreferencesMenu.qml:21
  4196. msgctxt "@title:menu menubar:toplevel"
  4197. msgid "P&references"
  4198. msgstr "Tercihler"
  4199. #: resources/qml/Menus/PrinterMenu.qml:13
  4200. msgctxt "@title:menu menubar:settings"
  4201. msgid "&Printer"
  4202. msgstr "&Yazıcı"
  4203. #: resources/qml/Menus/PrinterMenu.qml:17
  4204. msgctxt "@label:category menu label"
  4205. msgid "Network enabled printers"
  4206. msgstr "Ağ etkin yazıcılar"
  4207. #: resources/qml/Menus/PrinterMenu.qml:50
  4208. msgctxt "@label:category menu label"
  4209. msgid "Local printers"
  4210. msgstr "Yerel yazıcılar"
  4211. #: resources/qml/Menus/RecentFilesMenu.qml:15
  4212. msgctxt "@title:menu menubar:file"
  4213. msgid "Open &Recent"
  4214. msgstr "En Son Öğeyi Aç"
  4215. #: resources/qml/Menus/SaveProjectMenu.qml:15
  4216. msgctxt "@title:menu menubar:file"
  4217. msgid "Save Project..."
  4218. msgstr "Projeyi Kaydet..."
  4219. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  4220. msgctxt "@action:inmenu"
  4221. msgid "Visible Settings"
  4222. msgstr "Görünür ayarlar"
  4223. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  4224. msgctxt "@action:inmenu"
  4225. msgid "Collapse All Categories"
  4226. msgstr "Tüm Kategorileri Daralt"
  4227. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  4228. msgctxt "@action:inmenu"
  4229. msgid "Manage Setting Visibility..."
  4230. msgstr "Ayar Görünürlüğünü Yönet..."
  4231. #: resources/qml/Menus/SettingsMenu.qml:34
  4232. msgctxt "@title:menu"
  4233. msgid "&Material"
  4234. msgstr "&Malzeme"
  4235. #: resources/qml/Menus/SettingsMenu.qml:49
  4236. msgctxt "@action:inmenu"
  4237. msgid "Set as Active Extruder"
  4238. msgstr "Etkin Ekstruder olarak ayarla"
  4239. #: resources/qml/Menus/SettingsMenu.qml:55
  4240. msgctxt "@action:inmenu"
  4241. msgid "Enable Extruder"
  4242. msgstr "Ekstruderi Etkinleştir"
  4243. #: resources/qml/Menus/SettingsMenu.qml:63
  4244. msgctxt "@action:inmenu"
  4245. msgid "Disable Extruder"
  4246. msgstr "Ekstruderi Devre Dışı Bırak"
  4247. #: resources/qml/Menus/ViewMenu.qml:13
  4248. msgctxt "@title:menu menubar:toplevel"
  4249. msgid "&View"
  4250. msgstr "&Görünüm"
  4251. #: resources/qml/Menus/ViewMenu.qml:17
  4252. msgctxt "@action:inmenu menubar:view"
  4253. msgid "&Camera position"
  4254. msgstr "&Kamera konumu"
  4255. #: resources/qml/Menus/ViewMenu.qml:30
  4256. msgctxt "@action:inmenu menubar:view"
  4257. msgid "Camera view"
  4258. msgstr "Kamera görüşü"
  4259. #: resources/qml/Menus/ViewMenu.qml:48
  4260. msgctxt "@action:inmenu menubar:view"
  4261. msgid "Perspective"
  4262. msgstr "Perspektif"
  4263. #: resources/qml/Menus/ViewMenu.qml:59
  4264. msgctxt "@action:inmenu menubar:view"
  4265. msgid "Orthographic"
  4266. msgstr "Ortografik"
  4267. #: resources/qml/MonitorButton.qml:115
  4268. msgctxt "@label:MonitorStatus"
  4269. msgid "Not connected to a printer"
  4270. msgstr "Yazıcıya bağlı değil"
  4271. #: resources/qml/MonitorButton.qml:119
  4272. msgctxt "@label:MonitorStatus"
  4273. msgid "Printer does not accept commands"
  4274. msgstr "Yazıcı komutları kabul etmiyor"
  4275. #: resources/qml/MonitorButton.qml:129
  4276. msgctxt "@label:MonitorStatus"
  4277. msgid "In maintenance. Please check the printer"
  4278. msgstr "Bakımda. Lütfen yazıcıyı kontrol edin"
  4279. #: resources/qml/MonitorButton.qml:140
  4280. msgctxt "@label:MonitorStatus"
  4281. msgid "Lost connection with the printer"
  4282. msgstr "Yazıcı bağlantısı koptu"
  4283. #: resources/qml/MonitorButton.qml:142
  4284. msgctxt "@label:MonitorStatus"
  4285. msgid "Printing..."
  4286. msgstr "Yazdırılıyor..."
  4287. #: resources/qml/MonitorButton.qml:145
  4288. msgctxt "@label:MonitorStatus"
  4289. msgid "Paused"
  4290. msgstr "Duraklatıldı"
  4291. #: resources/qml/MonitorButton.qml:148
  4292. msgctxt "@label:MonitorStatus"
  4293. msgid "Preparing..."
  4294. msgstr "Hazırlanıyor..."
  4295. #: resources/qml/MonitorButton.qml:150
  4296. msgctxt "@label:MonitorStatus"
  4297. msgid "Please remove the print"
  4298. msgstr "Lütfen yazıcıyı çıkarın"
  4299. #: resources/qml/MonitorButton.qml:318
  4300. msgctxt "@label"
  4301. msgid "Abort Print"
  4302. msgstr "Yazdırmayı Durdur"
  4303. #: resources/qml/MonitorButton.qml:327
  4304. msgctxt "@label"
  4305. msgid "Are you sure you want to abort the print?"
  4306. msgstr "Yazdırmayı iptal etmek istediğinizden emin misiniz?"
  4307. #: resources/qml/ObjectItemButton.qml:109
  4308. msgctxt "@label"
  4309. msgid "Is printed as support."
  4310. msgstr "Destek olarak basıldı."
  4311. #: resources/qml/ObjectItemButton.qml:112
  4312. msgctxt "@label"
  4313. msgid "Other models overlapping with this model are modified."
  4314. msgstr "Bu model ile çakışan diğer modeller değiştirilir."
  4315. #: resources/qml/ObjectItemButton.qml:115
  4316. msgctxt "@label"
  4317. msgid "Infill overlapping with this model is modified."
  4318. msgstr "Bu model ile çakışan dolgu değiştirilir."
  4319. #: resources/qml/ObjectItemButton.qml:118
  4320. msgctxt "@label"
  4321. msgid "Overlaps with this model are not supported."
  4322. msgstr "Bu model ile çakışmalar desteklenmez."
  4323. #: resources/qml/ObjectItemButton.qml:125
  4324. msgctxt "@label %1 is the number of settings it overrides."
  4325. msgid "Overrides %1 setting."
  4326. msgid_plural "Overrides %1 settings."
  4327. msgstr[0] "%1 ayarı geçersiz kılar."
  4328. msgstr[1] "%1 ayarı geçersiz kılar."
  4329. #: resources/qml/ObjectSelector.qml:59
  4330. msgctxt "@label"
  4331. msgid "Object list"
  4332. msgstr "Nesne listesi"
  4333. #: resources/qml/Preferences/GeneralPage.qml:134
  4334. #: resources/qml/Preferences/SettingVisibilityPage.qml:24
  4335. msgctxt "@action:button"
  4336. msgid "Defaults"
  4337. msgstr "Varsayılanlar"
  4338. #: resources/qml/Preferences/GeneralPage.qml:172
  4339. msgctxt "@label"
  4340. msgid "Interface"
  4341. msgstr "Arayüz"
  4342. #: resources/qml/Preferences/GeneralPage.qml:215
  4343. msgctxt "@heading"
  4344. msgid "-- incomplete --"
  4345. msgstr "-- eksik --"
  4346. #: resources/qml/Preferences/GeneralPage.qml:261
  4347. msgctxt "@label"
  4348. msgid "Currency:"
  4349. msgstr "Para Birimi:"
  4350. #: resources/qml/Preferences/GeneralPage.qml:277
  4351. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  4352. msgid "Theme*:"
  4353. msgstr "Tema*:"
  4354. #: resources/qml/Preferences/GeneralPage.qml:323
  4355. msgctxt "@info:tooltip"
  4356. msgid "Slice automatically when changing settings."
  4357. msgstr "Ayarlar değiştirilirken otomatik olarak dilimle."
  4358. #: resources/qml/Preferences/GeneralPage.qml:331
  4359. msgctxt "@option:check"
  4360. msgid "Slice automatically"
  4361. msgstr "Otomatik olarak dilimle"
  4362. #: resources/qml/Preferences/GeneralPage.qml:340
  4363. msgctxt "@info:tooltip"
  4364. msgid "Show an icon and notifications in the system notification area."
  4365. msgstr "Sistem bildirim alanında bir simge ve bildirim göster."
  4366. #: resources/qml/Preferences/GeneralPage.qml:348
  4367. msgctxt "@option:check"
  4368. msgid "Add icon to system tray *"
  4369. msgstr "Sistem tepsisine simge ekle *"
  4370. #: resources/qml/Preferences/GeneralPage.qml:357
  4371. msgctxt "@label"
  4372. msgid "*You will need to restart the application for these changes to have effect."
  4373. msgstr "*Bu değişikliklerin etkili olması için uygulamayı yeniden başlatmanız gerekecektir."
  4374. #: resources/qml/Preferences/GeneralPage.qml:373
  4375. msgctxt "@label"
  4376. msgid "Viewport behavior"
  4377. msgstr "Görünüm şekli"
  4378. #: resources/qml/Preferences/GeneralPage.qml:381
  4379. msgctxt "@info:tooltip"
  4380. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  4381. msgstr "Modelin desteklenmeyen alanlarını kırmızı ile gösterin. Destek alınmadan bu alanlar düzgün bir şekilde yazdırılmayacaktır."
  4382. #: resources/qml/Preferences/GeneralPage.qml:390
  4383. msgctxt "@option:check"
  4384. msgid "Display overhang"
  4385. msgstr "Dışarıda kalan alanı göster"
  4386. #: resources/qml/Preferences/GeneralPage.qml:400
  4387. msgctxt "@info:tooltip"
  4388. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  4389. msgstr "Modelin eksik veya ikincil yüzeylerini uyarı işaretleri kullanarak vurgulayın. Amaçlanan geometrinin eksik parçaları genellikle takım yolları olacaktır."
  4390. #: resources/qml/Preferences/GeneralPage.qml:409
  4391. msgctxt "@option:check"
  4392. msgid "Display model errors"
  4393. msgstr "Model hatalarını görüntüle"
  4394. #: resources/qml/Preferences/GeneralPage.qml:417
  4395. msgctxt "@info:tooltip"
  4396. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  4397. msgstr "Bir model seçildiğinde bu model görüntünün ortasında kalacak şekilde kamera hareket eder"
  4398. #: resources/qml/Preferences/GeneralPage.qml:422
  4399. msgctxt "@action:button"
  4400. msgid "Center camera when item is selected"
  4401. msgstr "Öğeyi seçince kamerayı ortalayın"
  4402. #: resources/qml/Preferences/GeneralPage.qml:432
  4403. msgctxt "@info:tooltip"
  4404. msgid "Should the default zoom behavior of cura be inverted?"
  4405. msgstr "Cura’nın varsayılan yakınlaştırma davranışı tersine çevrilsin mi?"
  4406. #: resources/qml/Preferences/GeneralPage.qml:437
  4407. msgctxt "@action:button"
  4408. msgid "Invert the direction of camera zoom."
  4409. msgstr "Kamera yakınlaştırma yönünü ters çevir."
  4410. #: resources/qml/Preferences/GeneralPage.qml:453
  4411. msgctxt "@info:tooltip"
  4412. msgid "Should zooming move in the direction of the mouse?"
  4413. msgstr "Yakınlaştırma farenin hareket yönüne uygun olsun mu?"
  4414. #: resources/qml/Preferences/GeneralPage.qml:453
  4415. msgctxt "@info:tooltip"
  4416. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  4417. msgstr "Fareye doğru yakınlaştırma yapılması ortografik perspektifte desteklenmez."
  4418. #: resources/qml/Preferences/GeneralPage.qml:458
  4419. msgctxt "@action:button"
  4420. msgid "Zoom toward mouse direction"
  4421. msgstr "Farenin hareket yönüne göre yakınlaştır"
  4422. #: resources/qml/Preferences/GeneralPage.qml:484
  4423. msgctxt "@info:tooltip"
  4424. msgid "Should models on the platform be moved so that they no longer intersect?"
  4425. msgstr "Platformun üzerindeki öğeler kesişmemeleri için hareket ettirilmeli mi?"
  4426. #: resources/qml/Preferences/GeneralPage.qml:489
  4427. msgctxt "@option:check"
  4428. msgid "Ensure models are kept apart"
  4429. msgstr "Modellerin birbirinden ayrı olduğundan emin olduğundan emin olun"
  4430. #: resources/qml/Preferences/GeneralPage.qml:498
  4431. msgctxt "@info:tooltip"
  4432. msgid "Should models on the platform be moved down to touch the build plate?"
  4433. msgstr "Platformun üzerindeki modeller yapı levhasına değmeleri için indirilmeli mi?"
  4434. #: resources/qml/Preferences/GeneralPage.qml:503
  4435. msgctxt "@option:check"
  4436. msgid "Automatically drop models to the build plate"
  4437. msgstr "Modelleri otomatik olarak yapı tahtasına indirin"
  4438. #: resources/qml/Preferences/GeneralPage.qml:515
  4439. msgctxt "@info:tooltip"
  4440. msgid "Show caution message in g-code reader."
  4441. msgstr "G-code okuyucuda uyarı mesajı göster."
  4442. #: resources/qml/Preferences/GeneralPage.qml:524
  4443. msgctxt "@option:check"
  4444. msgid "Caution message in g-code reader"
  4445. msgstr "G-code okuyucuda uyarı mesajı"
  4446. #: resources/qml/Preferences/GeneralPage.qml:532
  4447. msgctxt "@info:tooltip"
  4448. msgid "Should layer be forced into compatibility mode?"
  4449. msgstr "Katman, uyumluluk moduna zorlansın mı?"
  4450. #: resources/qml/Preferences/GeneralPage.qml:537
  4451. msgctxt "@option:check"
  4452. msgid "Force layer view compatibility mode (restart required)"
  4453. msgstr "Katman görünümünü uyumluluk moduna zorla (yeniden başlatma gerekir)"
  4454. #: resources/qml/Preferences/GeneralPage.qml:547
  4455. msgctxt "@info:tooltip"
  4456. msgid "Should Cura open at the location it was closed?"
  4457. msgstr "Cura kapatıldığı yerden mi başlatılsın?"
  4458. #: resources/qml/Preferences/GeneralPage.qml:552
  4459. msgctxt "@option:check"
  4460. msgid "Restore window position on start"
  4461. msgstr "Başlangıçtaki pencere konumuna dönülsün"
  4462. #: resources/qml/Preferences/GeneralPage.qml:562
  4463. msgctxt "@info:tooltip"
  4464. msgid "What type of camera rendering should be used?"
  4465. msgstr "Ne tür bir kamera oluşturma işlemi kullanılmalıdır?"
  4466. #: resources/qml/Preferences/GeneralPage.qml:569
  4467. msgctxt "@window:text"
  4468. msgid "Camera rendering:"
  4469. msgstr "Kamera oluşturma:"
  4470. #: resources/qml/Preferences/GeneralPage.qml:576
  4471. msgid "Perspective"
  4472. msgstr "Perspektif"
  4473. #: resources/qml/Preferences/GeneralPage.qml:577
  4474. msgid "Orthographic"
  4475. msgstr "Ortografik"
  4476. #: resources/qml/Preferences/GeneralPage.qml:617
  4477. msgctxt "@label"
  4478. msgid "Opening and saving files"
  4479. msgstr "Dosyaların açılması ve kaydedilmesi"
  4480. #: resources/qml/Preferences/GeneralPage.qml:624
  4481. msgctxt "@info:tooltip"
  4482. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  4483. msgstr "Masaüstünden veya harici uygulamalardan açılan dosyalar aynı Cura örneğinde mi açılacak?"
  4484. #: resources/qml/Preferences/GeneralPage.qml:629
  4485. msgctxt "@option:check"
  4486. msgid "Use a single instance of Cura"
  4487. msgstr "Tek bir Cura örneği kullan"
  4488. #: resources/qml/Preferences/GeneralPage.qml:640
  4489. msgctxt "@info:tooltip"
  4490. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  4491. msgstr "Cura'nın tek örneğinde yeni bir model yüklenmeden önce yapı plakası temizlensin mi?"
  4492. #: resources/qml/Preferences/GeneralPage.qml:646
  4493. msgctxt "@option:check"
  4494. msgid "Clear buildplate before loading model into the single instance"
  4495. msgstr "Modeli tek örneğe yüklemeden önce yapı plakasını temizleyin"
  4496. #: resources/qml/Preferences/GeneralPage.qml:656
  4497. msgctxt "@info:tooltip"
  4498. msgid "Should models be scaled to the build volume if they are too large?"
  4499. msgstr "Modeller çok büyükse yapı hacmine göre ölçeklendirilmeli mi?"
  4500. #: resources/qml/Preferences/GeneralPage.qml:661
  4501. msgctxt "@option:check"
  4502. msgid "Scale large models"
  4503. msgstr "Büyük modelleri ölçeklendirin"
  4504. #: resources/qml/Preferences/GeneralPage.qml:671
  4505. msgctxt "@info:tooltip"
  4506. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  4507. msgstr "Bir modelin birimi milimetre değil de metre ise oldukça küçük görünebilir. Bu modeller ölçeklendirilmeli mi?"
  4508. #: resources/qml/Preferences/GeneralPage.qml:676
  4509. msgctxt "@option:check"
  4510. msgid "Scale extremely small models"
  4511. msgstr "Çok küçük modelleri ölçeklendirin"
  4512. #: resources/qml/Preferences/GeneralPage.qml:686
  4513. msgctxt "@info:tooltip"
  4514. msgid "Should models be selected after they are loaded?"
  4515. msgstr "Yüklendikten sonra modeller seçilsin mi?"
  4516. #: resources/qml/Preferences/GeneralPage.qml:691
  4517. msgctxt "@option:check"
  4518. msgid "Select models when loaded"
  4519. msgstr "Yüklendiğinde modelleri seç"
  4520. #: resources/qml/Preferences/GeneralPage.qml:701
  4521. msgctxt "@info:tooltip"
  4522. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  4523. msgstr "Yazıcı adına bağlı bir ön ek otomatik olarak yazdırma işinin adına eklenmeli mi?"
  4524. #: resources/qml/Preferences/GeneralPage.qml:706
  4525. msgctxt "@option:check"
  4526. msgid "Add machine prefix to job name"
  4527. msgstr "Makine ön ekini iş adına ekleyin"
  4528. #: resources/qml/Preferences/GeneralPage.qml:716
  4529. msgctxt "@info:tooltip"
  4530. msgid "Should a summary be shown when saving a project file?"
  4531. msgstr "Bir proje dosyasını kaydederken özet gösterilmeli mi?"
  4532. #: resources/qml/Preferences/GeneralPage.qml:720
  4533. msgctxt "@option:check"
  4534. msgid "Show summary dialog when saving project"
  4535. msgstr "Projeyi kaydederken özet iletişim kutusunu göster"
  4536. #: resources/qml/Preferences/GeneralPage.qml:730
  4537. msgctxt "@info:tooltip"
  4538. msgid "Default behavior when opening a project file"
  4539. msgstr "Bir proje dosyası açıldığında varsayılan davranış"
  4540. #: resources/qml/Preferences/GeneralPage.qml:738
  4541. msgctxt "@window:text"
  4542. msgid "Default behavior when opening a project file: "
  4543. msgstr "Bir proje dosyası açıldığında varsayılan davranış: "
  4544. #: resources/qml/Preferences/GeneralPage.qml:753
  4545. msgctxt "@option:openProject"
  4546. msgid "Always ask me this"
  4547. msgstr "Her zaman sor"
  4548. #: resources/qml/Preferences/GeneralPage.qml:754
  4549. msgctxt "@option:openProject"
  4550. msgid "Always open as a project"
  4551. msgstr "Her zaman proje olarak aç"
  4552. #: resources/qml/Preferences/GeneralPage.qml:755
  4553. msgctxt "@option:openProject"
  4554. msgid "Always import models"
  4555. msgstr "Her zaman modelleri içe aktar"
  4556. #: resources/qml/Preferences/GeneralPage.qml:792
  4557. msgctxt "@info:tooltip"
  4558. msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
  4559. msgstr "Bir profil üzerinde değişiklik yapıp farklı bir profile geçtiğinizde, değişikliklerin kaydedilmesini isteyip istemediğinizi soran bir iletişim kutusu açılır. Alternatif olarak bu işleve yönelik varsayılan bir davranış seçebilir ve bu iletişim kutusunun bir daha görüntülenmemesini tercih edebilirsiniz."
  4560. #: resources/qml/Preferences/GeneralPage.qml:801
  4561. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46
  4562. msgctxt "@label"
  4563. msgid "Profiles"
  4564. msgstr "Profiller"
  4565. #: resources/qml/Preferences/GeneralPage.qml:806
  4566. msgctxt "@window:text"
  4567. msgid "Default behavior for changed setting values when switching to a different profile: "
  4568. msgstr "Farklı bir profile geçerken değişen ayar değerleriyle ilgili varsayılan davranış: "
  4569. #: resources/qml/Preferences/GeneralPage.qml:821
  4570. msgctxt "@option:discardOrKeep"
  4571. msgid "Always discard changed settings"
  4572. msgstr "Değiştirilen ayarları her zaman at"
  4573. #: resources/qml/Preferences/GeneralPage.qml:822
  4574. msgctxt "@option:discardOrKeep"
  4575. msgid "Always transfer changed settings to new profile"
  4576. msgstr "Değiştirilen ayarları her zaman yeni profile taşı"
  4577. #: resources/qml/Preferences/GeneralPage.qml:856
  4578. msgctxt "@label"
  4579. msgid "Privacy"
  4580. msgstr "Gizlilik"
  4581. #: resources/qml/Preferences/GeneralPage.qml:862
  4582. #, fuzzy
  4583. msgctxt "@info:tooltip"
  4584. msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
  4585. msgstr "Yazdırmanızdaki anonim veriler UltiMaker’a gönderilmeli mi? Unutmayın; hiçbir model, IP adresi veya diğer kişiye özgü bilgiler gönderilmez veya saklanmaz."
  4586. #: resources/qml/Preferences/GeneralPage.qml:867
  4587. msgctxt "@option:check"
  4588. msgid "Send (anonymous) print information"
  4589. msgstr "(Anonim) yazdırma bilgisi gönder"
  4590. #: resources/qml/Preferences/GeneralPage.qml:897
  4591. msgctxt "@label"
  4592. msgid "Updates"
  4593. msgstr "Güncellemeler"
  4594. #: resources/qml/Preferences/GeneralPage.qml:904
  4595. msgctxt "@info:tooltip"
  4596. msgid "Should Cura check for updates when the program is started?"
  4597. msgstr "Cura, program başladığında güncellemeleri kontrol etmeli mi?"
  4598. #: resources/qml/Preferences/GeneralPage.qml:909
  4599. msgctxt "@option:check"
  4600. msgid "Check for updates on start"
  4601. msgstr "Başlangıçta güncellemeleri kontrol edin"
  4602. #: resources/qml/Preferences/GeneralPage.qml:925
  4603. msgctxt "@info:tooltip"
  4604. msgid "When checking for updates, only check for stable releases."
  4605. msgstr "Güncellemeleri kontrol ederken yalnızca istikrarlı sürümleri kontrol edin."
  4606. #: resources/qml/Preferences/GeneralPage.qml:931
  4607. msgctxt "@option:radio"
  4608. msgid "Stable releases only"
  4609. msgstr "Yalnızca istikrarlı sürümler"
  4610. #: resources/qml/Preferences/GeneralPage.qml:941
  4611. msgctxt "@info:tooltip"
  4612. msgid "When checking for updates, check for both stable and for beta releases."
  4613. msgstr "Güncellemeleri kontrol ederken hem istikrarlı hem de beta sürümleri kontrol edin."
  4614. #: resources/qml/Preferences/GeneralPage.qml:947
  4615. msgctxt "@option:radio"
  4616. msgid "Stable and Beta releases"
  4617. msgstr "İstikrarlı ve Beta sürümler"
  4618. #: resources/qml/Preferences/GeneralPage.qml:957
  4619. msgctxt "@info:tooltip"
  4620. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  4621. msgstr "Cura her başlatıldığında yeni eklentiler için otomatik kontrol yapılsın mı? Bu seçeneği devre dışı bırakmanız kesinlikle önerilmez!"
  4622. #: resources/qml/Preferences/GeneralPage.qml:962
  4623. msgctxt "@option:check"
  4624. msgid "Get notifications for plugin updates"
  4625. msgstr "Eklenti güncellemeleri için bildirim alın"
  4626. #: resources/qml/Preferences/MachinesPage.qml:50
  4627. msgctxt "@action:button"
  4628. msgid "Add New"
  4629. msgstr "Yeni Ekle"
  4630. #: resources/qml/Preferences/MachinesPage.qml:147
  4631. #: resources/qml/Preferences/Materials/MaterialsPage.qml:160
  4632. #: resources/qml/Preferences/ProfilesPage.qml:294
  4633. msgctxt "@action:button"
  4634. msgid "Activate"
  4635. msgstr "Etkinleştir"
  4636. #: resources/qml/Preferences/MachinesPage.qml:159
  4637. #: resources/qml/Preferences/ProfilesPage.qml:331
  4638. msgctxt "@action:button"
  4639. msgid "Rename"
  4640. msgstr "Yeniden adlandır"
  4641. #: resources/qml/Preferences/Materials/MaterialsPage.qml:72
  4642. msgctxt "@label"
  4643. msgid "Materials compatible with active printer:"
  4644. msgstr "Etkin yazıcı ile uyumlu malzemeler:"
  4645. #: resources/qml/Preferences/Materials/MaterialsPage.qml:78
  4646. #: resources/qml/Preferences/ProfilesPage.qml:94
  4647. msgctxt "@action:button"
  4648. msgid "Create new"
  4649. msgstr "Yeni oluştur"
  4650. #: resources/qml/Preferences/Materials/MaterialsPage.qml:90
  4651. #: resources/qml/Preferences/ProfilesPage.qml:88
  4652. msgctxt "@action:button"
  4653. msgid "Import"
  4654. msgstr "İçe Aktar"
  4655. #: resources/qml/Preferences/Materials/MaterialsPage.qml:101
  4656. msgctxt "@action:button"
  4657. msgid "Sync with Printers"
  4658. msgstr "Yazıcılarla Senkronize Et"
  4659. #: resources/qml/Preferences/Materials/MaterialsPage.qml:174
  4660. #: resources/qml/Preferences/ProfilesPage.qml:311
  4661. msgctxt "@action:button"
  4662. msgid "Duplicate"
  4663. msgstr "Çoğalt"
  4664. #: resources/qml/Preferences/Materials/MaterialsPage.qml:198
  4665. #: resources/qml/Preferences/ProfilesPage.qml:342
  4666. msgctxt "@action:button"
  4667. msgid "Export"
  4668. msgstr "Dışa Aktar"
  4669. #: resources/qml/Preferences/Materials/MaterialsPage.qml:212
  4670. #: resources/qml/Preferences/ProfilesPage.qml:392
  4671. msgctxt "@title:window"
  4672. msgid "Confirm Remove"
  4673. msgstr "Kaldırmayı Onayla"
  4674. #: resources/qml/Preferences/Materials/MaterialsPage.qml:215
  4675. #: resources/qml/Preferences/ProfilesPage.qml:393
  4676. msgctxt "@label (%1 is object name)"
  4677. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  4678. msgstr "%1’i kaldırmak istediğinizden emin misiniz? Bu eylem geri alınamaz!"
  4679. #: resources/qml/Preferences/Materials/MaterialsPage.qml:228
  4680. #: resources/qml/Preferences/Materials/MaterialsPage.qml:238
  4681. msgctxt "@title:window"
  4682. msgid "Import Material"
  4683. msgstr "Malzemeyi İçe Aktar"
  4684. #: resources/qml/Preferences/Materials/MaterialsPage.qml:242
  4685. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4686. msgid "Successfully imported material <filename>%1</filename>"
  4687. msgstr "Malzeme <filename>%1</filename> dosyasına başarıyla içe aktarıldı"
  4688. #: resources/qml/Preferences/Materials/MaterialsPage.qml:245
  4689. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4690. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  4691. msgstr "Malzeme <filename>%1</filename> dosyasına içe aktarılamadı: <message>%2</message>"
  4692. #: resources/qml/Preferences/Materials/MaterialsPage.qml:256
  4693. #: resources/qml/Preferences/Materials/MaterialsPage.qml:267
  4694. msgctxt "@title:window"
  4695. msgid "Export Material"
  4696. msgstr "Malzemeyi Dışa Aktar"
  4697. #: resources/qml/Preferences/Materials/MaterialsPage.qml:272
  4698. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  4699. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  4700. msgstr "Malzemenin <filename>%1</filename> dosyasına dışa aktarımı başarısız oldu: <message>%2</message>"
  4701. #: resources/qml/Preferences/Materials/MaterialsPage.qml:275
  4702. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4703. msgid "Successfully exported material to <filename>%1</filename>"
  4704. msgstr "Malzeme <filename>%1</filename> dosyasına başarıyla dışa aktarıldı"
  4705. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18
  4706. msgctxt "@title:window"
  4707. msgid "Sync materials with printers"
  4708. msgstr "Malzemeleri yazıcılarla senkronize et"
  4709. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49
  4710. msgctxt "@title:header"
  4711. msgid "Sync materials with printers"
  4712. msgstr "Malzemeleri yazıcılarla senkronize et"
  4713. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55
  4714. msgctxt "@text"
  4715. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  4716. msgstr "Birkaç basit adımı izleyerek tüm malzeme profillerinizi yazıcılarınızla senkronize edebileceksiniz."
  4717. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77
  4718. msgctxt "@button"
  4719. msgid "Why do I need to sync material profiles?"
  4720. msgstr "Malzeme profillerini neden senkronize etmem gerekiyor?"
  4721. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86
  4722. msgctxt "@button"
  4723. msgid "Start"
  4724. msgstr "Başlat"
  4725. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144
  4726. msgctxt "@title:header"
  4727. msgid "Sign in"
  4728. msgstr "Giriş yap"
  4729. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150
  4730. msgctxt "@text"
  4731. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  4732. msgstr "Malzeme profillerini Digital Factory'ye bağlı tüm yazıcılarınızla otomatik olarak senkronize etmek için Cura'da oturum açmanız gerekir."
  4733. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174
  4734. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462
  4735. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602
  4736. msgctxt "@button"
  4737. msgid "Sync materials with USB"
  4738. msgstr "Malzemeleri USB ile senkronize et"
  4739. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207
  4740. msgctxt "@title:header"
  4741. msgid "The following printers will receive the new material profiles:"
  4742. msgstr "Aşağıdaki yazıcılar yeni malzeme profillerini alacak:"
  4743. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214
  4744. msgctxt "@title:header"
  4745. msgid "Something went wrong when sending the materials to the printers."
  4746. msgstr "Malzemeler yazıcılara gönderilirken bir sorun oluştu."
  4747. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221
  4748. msgctxt "@title:header"
  4749. msgid "Material profiles successfully synced with the following printers:"
  4750. msgstr "Malzeme profilleri aşağıdaki yazıcılarla başarıyla senkronize edildi:"
  4751. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258
  4752. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445
  4753. msgctxt "@button"
  4754. msgid "Troubleshooting"
  4755. msgstr "Sorun giderme"
  4756. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422
  4757. msgctxt "@text Asking the user whether printers are missing in a list."
  4758. msgid "Printers missing?"
  4759. msgstr "Yazıcı eksik mi?"
  4760. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424
  4761. msgctxt "@text"
  4762. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  4763. msgstr "Tüm yazıcılarınızın AÇIK ve Digitial Factory'ye bağlı olduğundan emin olun."
  4764. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433
  4765. msgctxt "@button"
  4766. msgid "Refresh List"
  4767. msgstr "Listeyi Yenile"
  4768. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473
  4769. msgctxt "@button"
  4770. msgid "Try again"
  4771. msgstr "Yeniden dene"
  4772. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477
  4773. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  4774. msgctxt "@button"
  4775. msgid "Done"
  4776. msgstr "Bitti"
  4777. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479
  4778. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622
  4779. msgctxt "@button"
  4780. msgid "Sync"
  4781. msgstr "Senkronize et"
  4782. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535
  4783. msgctxt "@button"
  4784. msgid "Syncing"
  4785. msgstr "Senkronize ediliyor"
  4786. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553
  4787. msgctxt "@title:header"
  4788. msgid "No printers found"
  4789. msgstr "Yazıcı bulunamadı"
  4790. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574
  4791. msgctxt "@text"
  4792. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  4793. msgstr "Digital Factory'ye bağlı uyumlu yazıcınız yok gibi görünüyor. Yazıcınızın bağlı olduğundan ve en son donanım yazılımını çalıştırdığından emin olun."
  4794. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585
  4795. msgctxt "@button"
  4796. msgid "Learn how to connect your printer to Digital Factory"
  4797. msgstr "Yazıcınızı Digital Factory'ye nasıl bağlayacağınızı öğrenin"
  4798. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613
  4799. msgctxt "@button"
  4800. msgid "Refresh"
  4801. msgstr "Yenile"
  4802. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642
  4803. msgctxt "@title:header"
  4804. msgid "Sync material profiles via USB"
  4805. msgstr "Malzeme profillerini USB üzerinden senkronize edin"
  4806. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648
  4807. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  4808. msgid "Follow the following steps to load the new material profiles to your printer."
  4809. msgstr "Yeni malzeme profillerini yazıcınıza yüklemek için aşağıdaki adımları izleyin."
  4810. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679
  4811. msgctxt "@text"
  4812. msgid "Click the export material archive button."
  4813. msgstr "Malzeme arşivini dışa aktar düğmesine tıklayın."
  4814. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680
  4815. msgctxt "@text"
  4816. msgid "Save the .umm file on a USB stick."
  4817. msgstr ".umm dosyasını bir USB çubuğa kaydedin."
  4818. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681
  4819. msgctxt "@text"
  4820. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  4821. msgstr "USB çubuğunu yazıcınıza takın ve yeni malzeme profillerini yükleme işlemini başlatın."
  4822. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689
  4823. msgctxt "@button"
  4824. msgid "How to load new material profiles to my printer"
  4825. msgstr "How to load new material profiles to my printer"
  4826. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703
  4827. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299
  4828. msgctxt "@button"
  4829. msgid "Back"
  4830. msgstr "Geri"
  4831. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  4832. msgctxt "@button"
  4833. msgid "Export material archive"
  4834. msgstr "Malzeme arşivini dışa aktar"
  4835. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747
  4836. msgctxt "@title:window"
  4837. msgid "Export All Materials"
  4838. msgstr "Tüm Malzemeleri Dışa Aktar"
  4839. #: resources/qml/Preferences/Materials/MaterialsView.qml:121
  4840. msgctxt "@title:window"
  4841. msgid "Confirm Diameter Change"
  4842. msgstr "Çap Değişikliğini Onayla"
  4843. #: resources/qml/Preferences/Materials/MaterialsView.qml:122
  4844. msgctxt "@label (%1 is a number)"
  4845. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  4846. msgstr "Yeni filaman çapı %1 mm olarak ayarlandı ve bu değer, geçerli ekstrüder ile uyumlu değil. Devam etmek istiyor musunuz?"
  4847. #: resources/qml/Preferences/Materials/MaterialsView.qml:152
  4848. msgctxt "@label"
  4849. msgid "Display Name"
  4850. msgstr "Görünen Ad"
  4851. #: resources/qml/Preferences/Materials/MaterialsView.qml:171
  4852. msgctxt "@label"
  4853. msgid "Brand"
  4854. msgstr "Marka"
  4855. #: resources/qml/Preferences/Materials/MaterialsView.qml:190
  4856. msgctxt "@label"
  4857. msgid "Material Type"
  4858. msgstr "Malzeme Türü"
  4859. #: resources/qml/Preferences/Materials/MaterialsView.qml:210
  4860. msgctxt "@label"
  4861. msgid "Color"
  4862. msgstr "Renk"
  4863. #: resources/qml/Preferences/Materials/MaterialsView.qml:262
  4864. msgctxt "@title"
  4865. msgid "Material color picker"
  4866. msgstr "Malzeme rengi seçici"
  4867. #: resources/qml/Preferences/Materials/MaterialsView.qml:275
  4868. msgctxt "@label"
  4869. msgid "Properties"
  4870. msgstr "Özellikler"
  4871. #: resources/qml/Preferences/Materials/MaterialsView.qml:286
  4872. msgctxt "@label"
  4873. msgid "Density"
  4874. msgstr "Yoğunluk"
  4875. #: resources/qml/Preferences/Materials/MaterialsView.qml:319
  4876. msgctxt "@label"
  4877. msgid "Diameter"
  4878. msgstr "Çap"
  4879. #: resources/qml/Preferences/Materials/MaterialsView.qml:369
  4880. msgctxt "@label"
  4881. msgid "Filament Cost"
  4882. msgstr "Filaman masrafı"
  4883. #: resources/qml/Preferences/Materials/MaterialsView.qml:401
  4884. msgctxt "@label"
  4885. msgid "Filament weight"
  4886. msgstr "Filaman ağırlığı"
  4887. #: resources/qml/Preferences/Materials/MaterialsView.qml:433
  4888. msgctxt "@label"
  4889. msgid "Filament length"
  4890. msgstr "Filaman uzunluğu"
  4891. #: resources/qml/Preferences/Materials/MaterialsView.qml:451
  4892. msgctxt "@label"
  4893. msgid "Cost per Meter"
  4894. msgstr "Metre başına maliyet"
  4895. #: resources/qml/Preferences/Materials/MaterialsView.qml:465
  4896. msgctxt "@label"
  4897. msgid "This material is linked to %1 and shares some of its properties."
  4898. msgstr "Bu malzeme %1’e bağlıdır ve özelliklerinden bazılarını paylaşır."
  4899. #: resources/qml/Preferences/Materials/MaterialsView.qml:472
  4900. msgctxt "@label"
  4901. msgid "Unlink Material"
  4902. msgstr "Malzemeyi Ayır"
  4903. #: resources/qml/Preferences/Materials/MaterialsView.qml:485
  4904. msgctxt "@label"
  4905. msgid "Description"
  4906. msgstr "Tanım"
  4907. #: resources/qml/Preferences/Materials/MaterialsView.qml:503
  4908. msgctxt "@label"
  4909. msgid "Adhesion Information"
  4910. msgstr "Yapışma Bilgileri"
  4911. #: resources/qml/Preferences/Materials/MaterialsView.qml:642
  4912. msgctxt "@title"
  4913. msgid "Information"
  4914. msgstr "Bilgi"
  4915. #: resources/qml/Preferences/Materials/MaterialsView.qml:647
  4916. #: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18
  4917. msgctxt "@label"
  4918. msgid "Print settings"
  4919. msgstr "Yazdırma ayarları"
  4920. #: resources/qml/Preferences/ProfilesPage.qml:59
  4921. msgctxt "@label"
  4922. msgid "Profiles compatible with active printer:"
  4923. msgstr "Etkin yazıcı ile uyumlu profiller:"
  4924. #: resources/qml/Preferences/ProfilesPage.qml:98
  4925. msgctxt "@action:tooltip"
  4926. msgid "Create new profile from current settings/overrides"
  4927. msgstr "Mevcut ayarlardan/geçersiz kılmalardan yeni profil oluştur"
  4928. #: resources/qml/Preferences/ProfilesPage.qml:125
  4929. msgctxt "@action:label"
  4930. msgid "Some settings from current profile were overwritten."
  4931. msgstr "Mevcut profilin bazı ayarlarının üzerine yazılmış."
  4932. #: resources/qml/Preferences/ProfilesPage.qml:140
  4933. msgctxt "@action:button"
  4934. msgid "Update profile."
  4935. msgstr "Profili güncelleyin."
  4936. #: resources/qml/Preferences/ProfilesPage.qml:143
  4937. msgctxt "@action:tooltip"
  4938. msgid "Update profile with current settings/overrides"
  4939. msgstr "Profili geçerli ayarlar/geçersiz kılmalar ile güncelle"
  4940. #: resources/qml/Preferences/ProfilesPage.qml:148
  4941. msgctxt "@action:button"
  4942. msgid "Discard current changes"
  4943. msgstr "Geçerli değişiklikleri iptal et"
  4944. #: resources/qml/Preferences/ProfilesPage.qml:158
  4945. msgctxt "@action:label"
  4946. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  4947. msgstr "Bu profil yazıcının belirlediği varsayılan ayarları kullanır; dolayısıyla aşağıdaki listede bulunan ayarları/geçersiz kılmaları içermez."
  4948. #: resources/qml/Preferences/ProfilesPage.qml:165
  4949. msgctxt "@action:label"
  4950. msgid "Your current settings match the selected profile."
  4951. msgstr "Geçerli ayarlarınız seçilen profille uyumlu."
  4952. #: resources/qml/Preferences/ProfilesPage.qml:175
  4953. msgctxt "@title:tab"
  4954. msgid "Global Settings"
  4955. msgstr "Küresel Ayarlar"
  4956. #: resources/qml/Preferences/ProfilesPage.qml:278
  4957. msgctxt "@title:window"
  4958. msgid "Create Profile"
  4959. msgstr "Profil Oluştur"
  4960. #: resources/qml/Preferences/ProfilesPage.qml:280
  4961. msgctxt "@info"
  4962. msgid "Please provide a name for this profile."
  4963. msgstr "Bu profil için lütfen bir ad girin."
  4964. #: resources/qml/Preferences/ProfilesPage.qml:352
  4965. #: resources/qml/Preferences/ProfilesPage.qml:368
  4966. msgctxt "@title:window"
  4967. msgid "Export Profile"
  4968. msgstr "Profili Dışa Aktar"
  4969. #: resources/qml/Preferences/ProfilesPage.qml:382
  4970. msgctxt "@title:window"
  4971. msgid "Duplicate Profile"
  4972. msgstr "Profili Çoğalt"
  4973. #: resources/qml/Preferences/ProfilesPage.qml:409
  4974. msgctxt "@title:window"
  4975. msgid "Rename Profile"
  4976. msgstr "Profili Yeniden Adlandır"
  4977. #: resources/qml/Preferences/ProfilesPage.qml:422
  4978. #: resources/qml/Preferences/ProfilesPage.qml:429
  4979. msgctxt "@title:window"
  4980. msgid "Import Profile"
  4981. msgstr "Profili İçe Aktar"
  4982. #: resources/qml/Preferences/SettingVisibilityItem.qml:56
  4983. msgctxt "@item:tooltip"
  4984. msgid "This setting has been hidden by the active machine and will not be visible."
  4985. msgstr "Bu ayar etkin makine tarafından saklanmış ve görünür olmayacak."
  4986. #: resources/qml/Preferences/SettingVisibilityItem.qml:73
  4987. msgctxt "@item:tooltip %1 is list of setting names"
  4988. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  4989. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  4990. msgstr[0] "Bu ayar %1 değerle saklanmış. Ayarı görünür yapmak için ayar değerini değiştirin."
  4991. msgstr[1] "Bu ayar %1 değerle saklanmış. Ayarı görünür yapmak için bu ayarların değerini değiştirin."
  4992. #: resources/qml/Preferences/SettingVisibilityPage.qml:13
  4993. msgctxt "@title:tab"
  4994. msgid "Setting Visibility"
  4995. msgstr "Görünürlüğü Ayarlama"
  4996. #: resources/qml/Preferences/SettingVisibilityPage.qml:55
  4997. msgctxt "@label:textbox"
  4998. msgid "Check all"
  4999. msgstr "Tümünü denetle"
  5000. #: resources/qml/PrintMonitor.qml:156
  5001. msgctxt "@label"
  5002. msgid "Active print"
  5003. msgstr "Geçerli yazdırma"
  5004. #: resources/qml/PrintMonitor.qml:164
  5005. msgctxt "@label"
  5006. msgid "Job Name"
  5007. msgstr "İşin Adı"
  5008. #: resources/qml/PrintMonitor.qml:172
  5009. msgctxt "@label"
  5010. msgid "Printing Time"
  5011. msgstr "Yazdırma süresi"
  5012. #: resources/qml/PrintMonitor.qml:180
  5013. msgctxt "@label"
  5014. msgid "Estimated time left"
  5015. msgstr "Kalan tahmini süre"
  5016. #: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  5017. msgctxt "@label"
  5018. msgid "Profile"
  5019. msgstr "Profil"
  5020. #: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136
  5021. msgctxt "@tooltip"
  5022. msgid ""
  5023. "Some setting/override values are different from the values stored in the profile.\n"
  5024. "\n"
  5025. "Click to open the profile manager."
  5026. msgstr ""
  5027. "Bazı ayar/geçersiz kılma değerleri profilinizde saklanan değerlerden farklıdır.\n"
  5028. "\n"
  5029. "Profil yöneticisini açmak için tıklayın."
  5030. #: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  5031. msgctxt "@label:header"
  5032. msgid "Custom profiles"
  5033. msgstr "Özel profiller"
  5034. #: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20
  5035. msgctxt "@label shown when we load a Gcode file"
  5036. msgid "Print setup disabled. G-code file can not be modified."
  5037. msgstr "Yazıcı kurulumu devre dışı bırakıldı. G-code dosyası düzenlenemez."
  5038. #: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:160
  5039. msgctxt "@button"
  5040. msgid "Recommended"
  5041. msgstr "Önerilen"
  5042. #: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  5043. msgctxt "@label:Should be short"
  5044. msgid "On"
  5045. msgstr "Açık"
  5046. #: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  5047. msgctxt "@label:Should be short"
  5048. msgid "Off"
  5049. msgstr "Kapalı"
  5050. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65
  5051. msgctxt "@info, %1 is the name of the custom profile"
  5052. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  5053. msgstr "<b>%1</b> özel profili etkin ve bazı ayarların üzerine yazdınız."
  5054. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78
  5055. msgctxt "@info, %1 is the name of the custom profile"
  5056. msgid "<b>%1</b> custom profile is overriding some settings."
  5057. msgstr "<b>%1</b> özel profili bazı ayarları geçersiz kılıyor."
  5058. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92
  5059. msgctxt "@info %1 is the name of a profile"
  5060. msgid "Recommended settings (for <b>%1</b>) were altered."
  5061. msgstr ""
  5062. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106
  5063. #, fuzzy
  5064. msgctxt "@info %1 is the name of a profile"
  5065. msgid "Some setting-values defined in <b>%1</b> were overridden."
  5066. msgstr "Mevcut profilin bazı ayarlarının üzerine yazılmış."
  5067. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137
  5068. msgctxt "@info"
  5069. msgid "Reset to defaults."
  5070. msgstr ""
  5071. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178
  5072. msgctxt "@info"
  5073. msgid "Compare and save."
  5074. msgstr ""
  5075. #: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15
  5076. msgctxt "@label"
  5077. msgid "Adhesion"
  5078. msgstr "Yapıştırma"
  5079. #: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20
  5080. msgctxt "@label"
  5081. msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
  5082. msgstr "Bir kenar veya radye yazdırın. Bu nesnenizin etrafına veya altına daha sonra kesilmesi kolay olan düz bir alan sağlayacak."
  5083. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102
  5084. #, fuzzy
  5085. msgctxt "@label"
  5086. msgid "Recommended print settings"
  5087. msgstr "Yazdırma ayarları"
  5088. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111
  5089. #, fuzzy
  5090. msgctxt "@button"
  5091. msgid "Show Custom"
  5092. msgstr "Özel"
  5093. #: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27
  5094. msgctxt "@label"
  5095. msgid "Resolution"
  5096. msgstr "Çözünürlük"
  5097. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16
  5098. msgctxt "@label"
  5099. msgid "Strength"
  5100. msgstr ""
  5101. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20
  5102. msgctxt "@label"
  5103. msgid "The following settings define the strength of your part."
  5104. msgstr ""
  5105. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34
  5106. #, fuzzy
  5107. msgctxt "infill_sparse_density description"
  5108. msgid "Infill Density"
  5109. msgstr "Yalnızca dolgu kafes"
  5110. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35
  5111. msgctxt "@label"
  5112. msgid "Adjusts the density of infill of the print."
  5113. msgstr ""
  5114. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54
  5115. msgctxt "@action:label"
  5116. msgid "Infill Pattern"
  5117. msgstr ""
  5118. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56
  5119. msgctxt "@label"
  5120. msgid ""
  5121. "The pattern of the infill material of the print:\n"
  5122. "\n"
  5123. "For quick prints of non functional model choose line, zig zag or lighting infill.\n"
  5124. "\n"
  5125. "For functional part not subjected to a lot of stress we reccomend grid or triangle or tri hexagon.\n"
  5126. "\n"
  5127. "For functional 3D prints which require high strenght in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  5128. msgstr ""
  5129. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67
  5130. #, fuzzy
  5131. msgctxt "@action:label"
  5132. msgid "Shell Thickness"
  5133. msgstr "Katman kalınlığı"
  5134. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68
  5135. msgctxt "@label"
  5136. msgid "Defines the tickness of your part side walls, roof and floor."
  5137. msgstr ""
  5138. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16
  5139. msgctxt "@label"
  5140. msgid "Support"
  5141. msgstr "Destek"
  5142. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21
  5143. #, fuzzy
  5144. msgctxt "@label"
  5145. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  5146. 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."
  5147. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40
  5148. #, fuzzy
  5149. msgctxt "@action:label"
  5150. msgid "Support Type"
  5151. msgstr "Destek"
  5152. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41
  5153. msgctxt "@label"
  5154. msgid ""
  5155. "Chooses between the techniques available to generate support. \n"
  5156. "\n"
  5157. "\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n"
  5158. "\n"
  5159. "\"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."
  5160. msgstr ""
  5161. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53
  5162. #, fuzzy
  5163. msgctxt "@action:label"
  5164. msgid "Print with"
  5165. msgstr "Yazdırma"
  5166. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54
  5167. msgctxt "@label"
  5168. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  5169. msgstr ""
  5170. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67
  5171. msgctxt "@action:label"
  5172. msgid "Placement"
  5173. msgstr ""
  5174. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68
  5175. msgctxt "support_type description"
  5176. 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."
  5177. msgstr ""
  5178. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31
  5179. msgctxt "@error"
  5180. msgid "Configuration not supported"
  5181. msgstr "Yapılandırma desteklenmiyor"
  5182. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39
  5183. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  5184. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  5185. msgstr "Seçilen malzeme/%1 yapılandırması için kullanılabilecek profil yok. Lütfen yapılandırmanızı değiştirin."
  5186. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47
  5187. msgctxt "@button:label"
  5188. msgid "Learn more"
  5189. msgstr "Daha fazla bilgi edinin"
  5190. #: resources/qml/PrinterOutput/ExtruderBox.qml:40
  5191. msgctxt "@label"
  5192. msgid "Extruder"
  5193. msgstr "Ekstrüder"
  5194. #: resources/qml/PrinterOutput/ExtruderBox.qml:70
  5195. msgctxt "@tooltip"
  5196. msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
  5197. msgstr "Sıcak ucun hedef sıcaklığı. Sıcak uç, bu sıcaklığa doğru ısıtılır veya soğutulur. Bu ayar 0 olarak belirlenirse sıcak uç ısıtma kapatılır."
  5198. #: resources/qml/PrinterOutput/ExtruderBox.qml:105
  5199. msgctxt "@tooltip"
  5200. msgid "The current temperature of this hotend."
  5201. msgstr "Bu sıcak ucun geçerli sıcaklığı."
  5202. #: resources/qml/PrinterOutput/ExtruderBox.qml:182
  5203. msgctxt "@tooltip of temperature input"
  5204. msgid "The temperature to pre-heat the hotend to."
  5205. msgstr "Sıcak ucun ön ısıtma sıcaklığı."
  5206. #: resources/qml/PrinterOutput/ExtruderBox.qml:271
  5207. #: resources/qml/PrinterOutput/HeatedBedBox.qml:259
  5208. msgctxt "@button Cancel pre-heating"
  5209. msgid "Cancel"
  5210. msgstr "İptal Et"
  5211. #: resources/qml/PrinterOutput/ExtruderBox.qml:274
  5212. #: resources/qml/PrinterOutput/HeatedBedBox.qml:263
  5213. msgctxt "@button"
  5214. msgid "Pre-heat"
  5215. msgstr "Ön ısıtma"
  5216. #: resources/qml/PrinterOutput/ExtruderBox.qml:297
  5217. msgctxt "@tooltip of pre-heat"
  5218. msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
  5219. msgstr "Yazdırma öncesinde sıcak ucu ısıt. Isıtma sırasında yazdırma işinizi ayarlamaya devam edebilirsiniz. Böylece yazdırmaya hazır olduğunuzda sıcak ucun ısınmasını beklemeniz gerekmez."
  5220. #: resources/qml/PrinterOutput/ExtruderBox.qml:335
  5221. msgctxt "@tooltip"
  5222. msgid "The colour of the material in this extruder."
  5223. msgstr "Bu ekstruderdeki malzemenin rengi."
  5224. #: resources/qml/PrinterOutput/ExtruderBox.qml:367
  5225. msgctxt "@tooltip"
  5226. msgid "The material in this extruder."
  5227. msgstr "Bu ekstruderdeki malzeme."
  5228. #: resources/qml/PrinterOutput/ExtruderBox.qml:400
  5229. msgctxt "@tooltip"
  5230. msgid "The nozzle inserted in this extruder."
  5231. msgstr "Bu ekstrudere takılan nozül."
  5232. #: resources/qml/PrinterOutput/HeatedBedBox.qml:25
  5233. msgctxt "@label"
  5234. msgid "Build plate"
  5235. msgstr "Yapı levhası"
  5236. #: resources/qml/PrinterOutput/HeatedBedBox.qml:55
  5237. msgctxt "@tooltip"
  5238. msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
  5239. msgstr "Isıtılmış yatağın hedef sıcaklığı. Yatak, bu sıcaklığa doğru ısıtılır veya soğutulur. Bu ayar 0 olarak belirlenirse yatak ısıtma kapatılır."
  5240. #: resources/qml/PrinterOutput/HeatedBedBox.qml:88
  5241. msgctxt "@tooltip"
  5242. msgid "The current temperature of the heated bed."
  5243. msgstr "Isıtılmış yatağın geçerli sıcaklığı."
  5244. #: resources/qml/PrinterOutput/HeatedBedBox.qml:162
  5245. msgctxt "@tooltip of temperature input"
  5246. msgid "The temperature to pre-heat the bed to."
  5247. msgstr "Yatağın ön ısıtma sıcaklığı."
  5248. #: resources/qml/PrinterOutput/HeatedBedBox.qml:286
  5249. msgctxt "@tooltip of pre-heat"
  5250. msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
  5251. msgstr "Yazdırma öncesinde yatağı ısıt. Isıtma sırasında yazdırma işinizi ayarlamaya devam edebilirsiniz. Böylece yazdırmaya hazır olduğunuzda yatağın ısınmasını beklemeniz gerekmez."
  5252. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  5253. msgctxt "@label"
  5254. msgid "Printer control"
  5255. msgstr "Yazıcı kontrolü"
  5256. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  5257. msgctxt "@label"
  5258. msgid "Jog Position"
  5259. msgstr "Jog Konumu"
  5260. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  5261. msgctxt "@label"
  5262. msgid "X/Y"
  5263. msgstr "X/Y"
  5264. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  5265. msgctxt "@label"
  5266. msgid "Z"
  5267. msgstr "Z"
  5268. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  5269. msgctxt "@label"
  5270. msgid "Jog Distance"
  5271. msgstr "Jog Mesafesi"
  5272. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  5273. msgctxt "@label"
  5274. msgid "Send G-code"
  5275. msgstr "G-code Gönder"
  5276. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  5277. msgctxt "@tooltip of G-code command input"
  5278. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  5279. msgstr "Bağlı yazıcıya özel bir G-code komutu gönderin. Komutu göndermek için 'enter' tuşuna basın."
  5280. #: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  5281. msgctxt "@info:status"
  5282. msgid "The printer is not connected."
  5283. msgstr "Yazıcı bağlı değil."
  5284. #: resources/qml/PrinterSelector/MachineListButton.qml:34
  5285. msgctxt "@label"
  5286. msgid "Hide all connected printers"
  5287. msgstr "Bağlı tüm yazıcıları gizle"
  5288. #: resources/qml/PrinterSelector/MachineListButton.qml:47
  5289. msgctxt "@label"
  5290. msgid "Show all connected printers"
  5291. msgstr "Bağlı tüm yazıcıları göster"
  5292. #: resources/qml/PrinterSelector/MachineSelector.qml:64
  5293. msgctxt "@status"
  5294. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  5295. msgstr "Bulut yazıcısı çevrimdışı. Yazıcının açık ve internete bağlı olup olmadığını kontrol edin."
  5296. #: resources/qml/PrinterSelector/MachineSelector.qml:68
  5297. msgctxt "@status"
  5298. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  5299. msgstr "Yazıcı hesabınızla bağlanmamış. Bağlantı kurmak için lütfen Ultimaker Digital Factory bölümünü ziyaret edin."
  5300. #: resources/qml/PrinterSelector/MachineSelector.qml:73
  5301. msgctxt "@status"
  5302. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  5303. msgstr "Bulut bağlantısı şu anda kullanılamıyor. Bulut yazıcısına bağlanmak için lütfen oturum açın."
  5304. #: resources/qml/PrinterSelector/MachineSelector.qml:78
  5305. msgctxt "@status"
  5306. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  5307. msgstr "Bulut bağlantısı şu anda kullanılamıyor. Lütfen internet bağlantınızı kontrol edin."
  5308. #: resources/qml/PrinterSelector/MachineSelectorList.qml:30
  5309. #: resources/qml/PrinterSelector/MachineSelectorList.qml:32
  5310. msgctxt "@label"
  5311. msgid "Other printers"
  5312. msgstr "Diğer yazıcılar"
  5313. #: resources/qml/ProfileOverview.qml:36
  5314. msgctxt "@title:column"
  5315. msgid "Setting"
  5316. msgstr "Ayar"
  5317. #: resources/qml/ProfileOverview.qml:37
  5318. msgctxt "@title:column"
  5319. msgid "Profile"
  5320. msgstr "Profil"
  5321. #: resources/qml/ProfileOverview.qml:38
  5322. msgctxt "@title:column"
  5323. msgid "Current"
  5324. msgstr "Geçerli"
  5325. #: resources/qml/ProfileOverview.qml:39
  5326. msgctxt "@title:column Unit of measurement"
  5327. msgid "Unit"
  5328. msgstr "Birim"
  5329. #: resources/qml/SearchBar.qml:17
  5330. msgctxt "@placeholder"
  5331. msgid "Search"
  5332. msgstr "Ara"
  5333. #: resources/qml/Settings/SettingCategory.qml:115
  5334. msgctxt "@label"
  5335. msgid ""
  5336. "Some hidden settings use values different from their normal calculated value.\n"
  5337. "\n"
  5338. "Click to make these settings visible."
  5339. msgstr ""
  5340. "Gizlenen bazı ayarlar normal hesaplanan değerden farklı değerler kullanır.\n"
  5341. "\n"
  5342. "Bu ayarları görmek için tıklayın."
  5343. #: resources/qml/Settings/SettingItem.qml:84
  5344. msgctxt "@label"
  5345. msgid "This setting is not used because all the settings that it influences are overridden."
  5346. msgstr "Etkilediği tüm ayarlar geçersiz kılındığı için bu ayar kullanılmamaktadır."
  5347. #: resources/qml/Settings/SettingItem.qml:89
  5348. msgctxt "@label Header for list of settings."
  5349. msgid "Affects"
  5350. msgstr "Etkileri"
  5351. #: resources/qml/Settings/SettingItem.qml:94
  5352. msgctxt "@label Header for list of settings."
  5353. msgid "Affected By"
  5354. msgstr ".........den etkilenir"
  5355. #: resources/qml/Settings/SettingItem.qml:190
  5356. msgctxt "@label"
  5357. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  5358. msgstr "Bu ayar her zaman, tüm ekstrüderler arasında paylaşılır. Buradan değiştirildiğinde tüm ekstrüderler için değer değiştirir."
  5359. #: resources/qml/Settings/SettingItem.qml:194
  5360. msgctxt "@label"
  5361. msgid "This setting is resolved from conflicting extruder-specific values:"
  5362. msgstr "Bu ayar, çakışan ekstrüdere özgü değerlerden çözümlenir:"
  5363. #: resources/qml/Settings/SettingItem.qml:234
  5364. msgctxt "@label"
  5365. msgid ""
  5366. "This setting has a value that is different from the profile.\n"
  5367. "\n"
  5368. "Click to restore the value of the profile."
  5369. msgstr ""
  5370. "Bu ayarın değeri profilden farklıdır.\n"
  5371. "\n"
  5372. "Profil değerini yenilemek için tıklayın."
  5373. #: resources/qml/Settings/SettingItem.qml:334
  5374. msgctxt "@label"
  5375. msgid ""
  5376. "This setting is normally calculated, but it currently has an absolute value set.\n"
  5377. "\n"
  5378. "Click to restore the calculated value."
  5379. msgstr ""
  5380. "Bu ayar normal olarak yapılır ama şu anda mutlak değer ayarı var.\n"
  5381. "\n"
  5382. "Hesaplanan değeri yenilemek için tıklayın."
  5383. #: resources/qml/Settings/SettingView.qml:48
  5384. msgctxt "@label:textbox"
  5385. msgid "Search settings"
  5386. msgstr "Arama ayarları"
  5387. #: resources/qml/Settings/SettingView.qml:395
  5388. msgctxt "@action:menu"
  5389. msgid "Copy value to all extruders"
  5390. msgstr "Değeri tüm ekstruderlere kopyala"
  5391. #: resources/qml/Settings/SettingView.qml:404
  5392. msgctxt "@action:menu"
  5393. msgid "Copy all changed values to all extruders"
  5394. msgstr "Tüm değiştirilmiş değerleri tüm ekstruderlere kopyala"
  5395. #: resources/qml/Settings/SettingView.qml:440
  5396. msgctxt "@action:menu"
  5397. msgid "Hide this setting"
  5398. msgstr "Bu ayarı gizle"
  5399. #: resources/qml/Settings/SettingView.qml:453
  5400. msgctxt "@action:menu"
  5401. msgid "Don't show this setting"
  5402. msgstr "Bu ayarı gösterme"
  5403. #: resources/qml/Settings/SettingView.qml:457
  5404. msgctxt "@action:menu"
  5405. msgid "Keep this setting visible"
  5406. msgstr "Bu ayarı görünür yap"
  5407. #: resources/qml/Toolbar.qml:142
  5408. msgctxt "@label %1 is filled in with the name of an extruder"
  5409. msgid "Print Selected Model with %1"
  5410. msgid_plural "Print Selected Models with %1"
  5411. msgstr[0] "Seçili Modeli %1 ile Yazdır"
  5412. msgstr[1] "Seçili Modelleri %1 ile Yazdır"
  5413. #: resources/qml/ViewOrientationControls.qml:25
  5414. msgctxt "@info:tooltip"
  5415. msgid "3D View"
  5416. msgstr "3 Boyutlu Görünüm"
  5417. #: resources/qml/ViewOrientationControls.qml:38
  5418. msgctxt "@info:tooltip"
  5419. msgid "Front View"
  5420. msgstr "Önden Görünüm"
  5421. #: resources/qml/ViewOrientationControls.qml:51
  5422. msgctxt "@info:tooltip"
  5423. msgid "Top View"
  5424. msgstr "Yukarıdan Görünüm"
  5425. #: resources/qml/ViewOrientationControls.qml:64
  5426. msgctxt "@info:tooltip"
  5427. msgid "Left View"
  5428. msgstr "Sol görünüm"
  5429. #: resources/qml/ViewOrientationControls.qml:77
  5430. msgctxt "@info:tooltip"
  5431. msgid "Right View"
  5432. msgstr "Sağ görünüm"
  5433. #: resources/qml/ViewsSelector.qml:50
  5434. msgctxt "@label"
  5435. msgid "View type"
  5436. msgstr "Görüntüleme tipi"
  5437. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  5438. msgctxt "@label"
  5439. msgid "Add a Cloud printer"
  5440. msgstr "Bulut yazıcısı ekle"
  5441. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:73
  5442. msgctxt "@label"
  5443. msgid "Waiting for Cloud response"
  5444. msgstr "Bulut yanıtı bekleniyor"
  5445. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:83
  5446. msgctxt "@label"
  5447. msgid "No printers found in your account?"
  5448. msgstr "Hesabınızda hiç yazıcı bulunamıyor mu?"
  5449. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:117
  5450. msgctxt "@label"
  5451. msgid "The following printers in your account have been added in Cura:"
  5452. msgstr "Hesabınızdaki şu yazıcılar Cura'ya eklendi:"
  5453. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:186
  5454. msgctxt "@button"
  5455. msgid "Add printer manually"
  5456. msgstr "Yazıcıyı manuel olarak ekle"
  5457. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203
  5458. msgctxt "@label"
  5459. msgid "Manufacturer"
  5460. msgstr "Üretici"
  5461. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
  5462. msgctxt "@label"
  5463. msgid "Profile author"
  5464. msgstr "Profil sahibi"
  5465. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226
  5466. msgctxt "@label"
  5467. msgid "Printer name"
  5468. msgstr "Yazıcı adı"
  5469. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232
  5470. msgctxt "@text"
  5471. msgid "Please name your printer"
  5472. msgstr "Lütfen yazıcınızı adlandırın"
  5473. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  5474. msgctxt "@label"
  5475. msgid "There is no printer found over your network."
  5476. msgstr "Ağınızda yazıcı bulunamadı."
  5477. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  5478. msgctxt "@label"
  5479. msgid "Refresh"
  5480. msgstr "Yenile"
  5481. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  5482. msgctxt "@label"
  5483. msgid "Add printer by IP"
  5484. msgstr "IP'ye göre bir yazıcı ekleyin"
  5485. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205
  5486. msgctxt "@label"
  5487. msgid "Troubleshooting"
  5488. msgstr "Sorun giderme"
  5489. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  5490. msgctxt "@label"
  5491. msgid "Add printer by IP address"
  5492. msgstr "IP adresine göre bir yazıcı ekleyin"
  5493. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128
  5494. msgctxt "@text"
  5495. msgid "Enter your printer's IP address."
  5496. msgstr "Yazıcınızın IP adresini girin."
  5497. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150
  5498. msgctxt "@button"
  5499. msgid "Add"
  5500. msgstr "Ekle"
  5501. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195
  5502. msgctxt "@label"
  5503. msgid "Could not connect to device."
  5504. msgstr "Cihaza bağlanılamadı."
  5505. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196
  5506. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201
  5507. msgctxt "@label"
  5508. msgid "Can't connect to your UltiMaker printer?"
  5509. msgstr "UltiMaker yazıcınıza bağlanamıyor musunuz?"
  5510. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200
  5511. msgctxt "@label"
  5512. msgid "The printer at this address has not responded yet."
  5513. msgstr "Bu adresteki yazıcı henüz yanıt vermedi."
  5514. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231
  5515. msgctxt "@label"
  5516. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  5517. msgstr "Bu yazıcı bilinmeyen bir yazıcı olduğu veya bir grubun ana makinesi olmadığı için eklenemiyor."
  5518. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312
  5519. msgctxt "@button"
  5520. msgid "Connect"
  5521. msgstr "Bağlan"
  5522. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29
  5523. msgctxt "@label"
  5524. msgid "Add a networked printer"
  5525. msgstr "Bir ağ yazıcısı ekleyin"
  5526. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78
  5527. msgctxt "@label"
  5528. msgid "Add a non-networked printer"
  5529. msgstr "Ağ dışı bir yazıcı ekleyin"
  5530. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102
  5531. #, fuzzy
  5532. msgctxt "@button"
  5533. msgid "Add UltiMaker printer via Digital Factory"
  5534. msgstr "Digital Factory’deki yazıcıları görüntüle"
  5535. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29
  5536. #, fuzzy
  5537. msgctxt "@label"
  5538. msgid "In order to start using Cura you will need to configure a printer."
  5539. msgstr "Paketi kullanmak için Cura'yı yeniden başlatmanız gerekecek"
  5540. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36
  5541. msgctxt "@label"
  5542. msgid "What printer would you like to setup?"
  5543. msgstr ""
  5544. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55
  5545. #, fuzzy
  5546. msgctxt "@button"
  5547. msgid "UltiMaker printer"
  5548. msgstr "UltiMaker desteği"
  5549. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64
  5550. #, fuzzy
  5551. msgctxt "@button"
  5552. msgid "Non UltiMaker printer"
  5553. msgstr "UltiMaker desteği"
  5554. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73
  5555. msgctxt "@button"
  5556. msgid "Learn more about adding printers to Cura"
  5557. msgstr ""
  5558. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29
  5559. #, fuzzy
  5560. msgctxt "@label"
  5561. msgid "Add printer"
  5562. msgstr "Yazıcı ekle"
  5563. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33
  5564. #, fuzzy
  5565. msgctxt "@label"
  5566. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  5567. msgstr "Tüm yazıcılarınızın AÇIK ve Digitial Factory'ye bağlı olduğundan emin olun."
  5568. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70
  5569. msgctxt "@label"
  5570. msgid "If you are trying to add a new UltiMaker printer to Cura"
  5571. msgstr ""
  5572. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80
  5573. #, fuzzy
  5574. msgctxt "@info"
  5575. msgid "Sign in into UltiMaker Digilal Factory"
  5576. msgstr "Ultimaker Digital Factory'de yazıcıları izleyin."
  5577. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81
  5578. msgctxt "@info"
  5579. msgid "Follow the procedure to add a new printer"
  5580. msgstr ""
  5581. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82
  5582. msgctxt "@info"
  5583. msgid "Your new printer will automatically appear in Cura"
  5584. msgstr ""
  5585. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100
  5586. #, fuzzy
  5587. msgctxt "@button"
  5588. msgid "Learn more"
  5589. msgstr "Daha fazla bilgi edinin"
  5590. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121
  5591. #, fuzzy
  5592. msgctxt "@button"
  5593. msgid "Add local printer"
  5594. msgstr "Bir yazıcı ekleyin"
  5595. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129
  5596. #, fuzzy
  5597. msgctxt "@button"
  5598. msgid "Sign in to Digital Factory"
  5599. msgstr "Digital Factory’deki yazıcıları görüntüle"
  5600. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133
  5601. #, fuzzy
  5602. msgctxt "@button"
  5603. msgid "Waiting for new printers"
  5604. msgstr "Yazıcıları yönet"
  5605. #: resources/qml/WelcomePages/ChangelogContent.qml:24
  5606. msgctxt "@label"
  5607. msgid "Release Notes"
  5608. msgstr "Sürüm notları"
  5609. #: resources/qml/WelcomePages/CloudContent.qml:123
  5610. msgctxt "@text"
  5611. msgid "Add material settings and plugins from the Marketplace"
  5612. msgstr "Marketplace'den malzeme ayarlarını ve eklentileri ekleyin"
  5613. #: resources/qml/WelcomePages/CloudContent.qml:149
  5614. msgctxt "@text"
  5615. msgid "Backup and sync your material settings and plugins"
  5616. msgstr "Malzeme ayarlarınızı ve eklentilerinizi yedekleyin ve senkronize edin"
  5617. #: resources/qml/WelcomePages/CloudContent.qml:175
  5618. msgctxt "@text"
  5619. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  5620. msgstr "UltiMaker Topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın"
  5621. #: resources/qml/WelcomePages/CloudContent.qml:189
  5622. msgctxt "@button"
  5623. msgid "Skip"
  5624. msgstr "Atla"
  5625. #: resources/qml/WelcomePages/CloudContent.qml:201
  5626. msgctxt "@text"
  5627. msgid "Create a free UltiMaker Account"
  5628. msgstr "Ücretsiz UltiMaker Hesabı oluşturun"
  5629. #: resources/qml/WelcomePages/DataCollectionsContent.qml:24
  5630. msgctxt "@label"
  5631. msgid "Help us to improve UltiMaker Cura"
  5632. msgstr "UltiMaker Cura'yı geliştirmemiz yardım edin"
  5633. #: resources/qml/WelcomePages/DataCollectionsContent.qml:56
  5634. #, fuzzy
  5635. msgctxt "@text"
  5636. msgid "UltiMaker Cura collects anonymous data to improve print quality and user experience, including:"
  5637. msgstr "UltiMaker Cura, yazdırma kalitesini ve kullanıcı deneyimini iyileştirmek için anonim veri toplar. Bu veriler aşağıdakileri içerir:"
  5638. #: resources/qml/WelcomePages/DataCollectionsContent.qml:68
  5639. msgctxt "@text"
  5640. msgid "Machine types"
  5641. msgstr "Makine türleri"
  5642. #: resources/qml/WelcomePages/DataCollectionsContent.qml:74
  5643. msgctxt "@text"
  5644. msgid "Material usage"
  5645. msgstr "Malzeme kullanımı"
  5646. #: resources/qml/WelcomePages/DataCollectionsContent.qml:80
  5647. msgctxt "@text"
  5648. msgid "Number of slices"
  5649. msgstr "Dilim sayısı"
  5650. #: resources/qml/WelcomePages/DataCollectionsContent.qml:86
  5651. msgctxt "@text"
  5652. msgid "Print settings"
  5653. msgstr "Yazdırma ayarları"
  5654. #: resources/qml/WelcomePages/DataCollectionsContent.qml:99
  5655. #, fuzzy
  5656. msgctxt "@text"
  5657. msgid "Data collected by UltiMaker Cura will not contain any personal information."
  5658. msgstr "UltiMaker Cura tarafından toplanan veriler herhangi bir kişisel bilgi içermeyecektir."
  5659. #: resources/qml/WelcomePages/DataCollectionsContent.qml:100
  5660. msgctxt "@text"
  5661. msgid "More information"
  5662. msgstr "Daha fazla bilgi"
  5663. #: resources/qml/WelcomePages/DropDownWidget.qml:93
  5664. msgctxt "@label"
  5665. msgid "Empty"
  5666. msgstr "Boş"
  5667. #: resources/qml/WelcomePages/UserAgreementContent.qml:23
  5668. msgctxt "@label"
  5669. msgid "User Agreement"
  5670. msgstr "Kullanıcı Anlaşması"
  5671. #: resources/qml/WelcomePages/UserAgreementContent.qml:67
  5672. msgctxt "@button"
  5673. msgid "Decline and close"
  5674. msgstr "Reddet ve kapat"
  5675. #: resources/qml/WelcomePages/WelcomeContent.qml:56
  5676. msgctxt "@label"
  5677. msgid "Welcome to UltiMaker Cura"
  5678. msgstr "UltiMaker Cura'ya hoş geldiniz"
  5679. #: resources/qml/WelcomePages/WelcomeContent.qml:67
  5680. #, fuzzy
  5681. msgctxt "@text"
  5682. msgid "Please follow these steps to set up UltiMaker Cura. This will only take a few moments."
  5683. msgstr ""
  5684. "UltiMaker Cura'yı kurmak\n"
  5685. " için lütfen aşağıdaki adımları izleyin. Bu sadece birkaç saniye sürecektir."
  5686. #: resources/qml/WelcomePages/WelcomeContent.qml:82
  5687. msgctxt "@button"
  5688. msgid "Get started"
  5689. msgstr "Başlayın"
  5690. #: resources/qml/WelcomePages/WhatsNewContent.qml:28
  5691. msgctxt "@label"
  5692. msgid "What's New"
  5693. msgstr "Yenilikler"
  5694. #: resources/qml/Widgets/ComboBox.qml:18
  5695. msgctxt "@label"
  5696. msgid "No items to select from"
  5697. msgstr "Seçilecek öğe yok"
  5698. #~ msgctxt "@label"
  5699. #~ msgid "Add cloud printer"
  5700. #~ msgstr "Bulut yazıcısı ekle"
  5701. #~ msgctxt "@label"
  5702. #~ msgid "Aluminum"
  5703. #~ msgstr "Alüminyum"
  5704. #~ msgctxt "@label"
  5705. #~ msgid "Change build plate to %1 (This cannot be overridden)."
  5706. #~ msgstr "Baskı tablasını %1 olarak değiştirin (Bu işlem geçersiz kılınamaz)."
  5707. #~ msgctxt "@label"
  5708. #~ msgid "Glass"
  5709. #~ msgstr "Cam"
  5710. #~ msgctxt "@label"
  5711. #~ msgid "Gradual infill"
  5712. #~ msgstr "Aşamalı dolgu"
  5713. #~ msgctxt "@label"
  5714. #~ msgid "Gradual infill will gradually increase the amount of infill towards the top."
  5715. #~ msgstr "Kademeli dolgu, yukarıya doğru dolgu miktarını kademeli olarak yükselecektir."
  5716. #~ msgctxt "@info:tooltip"
  5717. #~ msgid "How should the conflict in the machine be resolved?"
  5718. #~ msgstr "Makinedeki çakışma nasıl çözülmelidir?"
  5719. #~ msgctxt "@info:tooltip"
  5720. #~ msgid "How should the conflict in the material be resolved?"
  5721. #~ msgstr "Malzemedeki çakışma nasıl çözülmelidir?"
  5722. #~ msgctxt "@info:tooltip"
  5723. #~ msgid "How should the conflict in the profile be resolved?"
  5724. #~ msgstr "Profildeki çakışma nasıl çözülmelidir?"
  5725. #~ msgctxt "@info"
  5726. #~ msgid "Some settings were changed."
  5727. #~ msgstr "Bazı ayarlar değiştirildi."
  5728. #~ msgctxt "@action:label"
  5729. #~ msgid "Visible settings:"
  5730. #~ msgstr "Görünür ayarlar:"