cura.po 168 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2024-03-13 09:02+0100\n"
  6. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  7. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  8. "Language-Team: LANGUAGE <LL@li.org>\n"
  9. "Language: tr_TR\n"
  10. "MIME-Version: 1.0\n"
  11. "Content-Type: text/plain; charset=UTF-8\n"
  12. "Content-Transfer-Encoding: 8bit\n"
  13. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  14. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  15. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  16. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  17. msgctxt "@action:label"
  18. msgid "%1 & material"
  19. msgstr "%1 & malzeme"
  20. msgctxt "@action:label"
  21. msgid "%1 out of %2"
  22. msgstr "%1 / %2"
  23. msgctxt "@action:label"
  24. msgid "%1 override"
  25. msgid_plural "%1 overrides"
  26. msgstr[0] "%1 geçersiz kılma"
  27. msgstr[1] "%1 geçersiz kılmalar"
  28. msgctxt "@action:label"
  29. msgid "%1, %2 override"
  30. msgid_plural "%1, %2 overrides"
  31. msgstr[0] "%1, %2 geçersiz kılma"
  32. msgstr[1] "%1, %2 geçersiz kılmalar"
  33. msgctxt "@label g for grams"
  34. msgid "%1g"
  35. msgstr "%1 g"
  36. msgctxt "@label m for meter"
  37. msgid "%1m"
  38. msgstr "%1 m"
  39. msgctxt "@action:inmenu menubar:printer"
  40. msgid "&Add Printer..."
  41. msgstr "&Yazıcı Ekle..."
  42. msgctxt "@action:inmenu menubar:view"
  43. msgid "&Camera position"
  44. msgstr "&Kamera konumu"
  45. msgctxt "@action:inmenu menubar:profile"
  46. msgid "&Create profile from current settings/overrides..."
  47. msgstr "G&eçerli ayarlardan/geçersiz kılmalardan profil oluştur..."
  48. msgctxt "@action:inmenu menubar:profile"
  49. msgid "&Discard current changes"
  50. msgstr "&Geçerli değişiklikleri iptal et"
  51. msgctxt "@title:menu menubar:toplevel"
  52. msgid "&Edit"
  53. msgstr "Düz&enle"
  54. msgctxt "@title:menu menubar:file"
  55. msgid "&Export..."
  56. msgstr "&Dışa Aktar..."
  57. msgctxt "@title:menu menubar:toplevel"
  58. msgid "&File"
  59. msgstr "&Dosya"
  60. msgctxt "@action:inmenu menubar:edit"
  61. msgid "&Group Models"
  62. msgstr "Modelleri Gruplandır"
  63. msgctxt "@title:menu menubar:toplevel"
  64. msgid "&Help"
  65. msgstr "&Yardım"
  66. msgctxt "@title:menu"
  67. msgid "&Material"
  68. msgstr "&Malzeme"
  69. msgctxt "@action:inmenu menubar:edit"
  70. msgid "&Merge Models"
  71. msgstr "&Modelleri Birleştir"
  72. msgctxt "@action:inmenu"
  73. msgid "&Multiply Model..."
  74. msgstr "&Modeli Çoğalt..."
  75. msgctxt "@action:inmenu menubar:file"
  76. msgid "&New Project..."
  77. msgstr "&Yeni Proje..."
  78. msgctxt "@action:inmenu menubar:file"
  79. msgid "&Open File(s)..."
  80. msgstr "&Dosya Aç..."
  81. msgctxt "@title:menu menubar:settings"
  82. msgid "&Printer"
  83. msgstr "&Yazıcı"
  84. msgctxt "@action:inmenu menubar:file"
  85. msgid "&Quit"
  86. msgstr "&Çıkış"
  87. msgctxt "@action:inmenu menubar:edit"
  88. msgid "&Redo"
  89. msgstr "&Yinele"
  90. msgctxt "@title:menu menubar:file"
  91. msgid "&Save Project..."
  92. msgstr "&Projeyi Kaydet..."
  93. msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'"
  94. msgid "&Save Universal Cura Project..."
  95. msgstr "&Universal Cura Project'i Kaydet..."
  96. msgctxt "@title:menu menubar:toplevel"
  97. msgid "&Settings"
  98. msgstr "&Ayarlar"
  99. msgctxt "@action:inmenu menubar:edit"
  100. msgid "&Undo"
  101. msgstr "&Geri Al"
  102. msgctxt "@action:inmenu menubar:profile"
  103. msgid "&Update profile with current settings/overrides"
  104. msgstr "&Profili geçerli ayarlar/geçersiz kılmalar ile güncelle"
  105. msgctxt "@title:menu menubar:toplevel"
  106. msgid "&View"
  107. msgstr "&Görünüm"
  108. msgctxt "@label"
  109. msgid "*You will need to restart the application for these changes to have effect."
  110. msgstr "*Bu değişikliklerin etkili olması için uygulamayı yeniden başlatmanız gerekecektir."
  111. msgctxt "@text"
  112. msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community"
  113. msgstr "- Marketplace'den malzeme profilleri ve eklentiler ekleyin"
  114. "- Malzeme profillerinizi ve eklentilerinizi yedekleyin ve senkronize edin"
  115. "- UltiMaker topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın"
  116. msgctxt "@heading"
  117. msgid "-- incomplete --"
  118. msgstr "-- eksik --"
  119. msgctxt "@action:label"
  120. msgid "1mm Transmittance (%)"
  121. msgstr "1 mm Geçirgenlik (%)"
  122. msgctxt "@info:title"
  123. msgid "3D Model Assistant"
  124. msgstr "3D Model Yardımcısı"
  125. msgctxt "@action:inmenu menubar:view"
  126. msgid "3D View"
  127. msgstr "3 Boyutlu Görünüm"
  128. msgctxt "@info:tooltip"
  129. msgid "3D View"
  130. msgstr "3 Boyutlu Görünüm"
  131. msgctxt "@item:inlistbox"
  132. msgid "3MF File"
  133. msgstr "3MF Dosyası"
  134. msgctxt "@error:zip"
  135. msgid "3MF Writer plug-in is corrupt."
  136. msgstr "3MF Writer eklentisi bozuk."
  137. msgctxt "@item:inlistbox"
  138. msgid "3MF file"
  139. msgstr "3MF dosyası"
  140. msgctxt "@info, %1 is the name of the custom profile"
  141. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  142. msgstr "<b>%1</b> özel profil etkin ve bazı ayarların üzerine yazdınız."
  143. msgctxt "@info, %1 is the name of the custom profile"
  144. msgid "<b>%1</b> custom profile is overriding some settings."
  145. msgstr "<b>%1</b> özel profil, bazı ayarları geçersiz kılıyor."
  146. msgctxt "@label %i will be replaced with a profile name"
  147. 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>."
  148. msgstr "<b>Özel profilde yalnızca kullanıcı tarafından değiştirilen ayarlar kaydedilir.</b><br/>Yeni özel profil, bunu destekleyen malzemeler için <b>%1</b>adresindeki özellikleri devralır."
  149. msgctxt "@label OpenGL renderer"
  150. msgid "<li>OpenGL Renderer: {renderer}</li>"
  151. msgstr "<li>OpenGL Oluşturucusu: {renderer}</li>"
  152. msgctxt "@label OpenGL vendor"
  153. msgid "<li>OpenGL Vendor: {vendor}</li>"
  154. msgstr "<li>OpenGL Satıcısı: {vendor}</li>"
  155. msgctxt "@label OpenGL version"
  156. msgid "<li>OpenGL Version: {version}</li>"
  157. msgstr "<li>OpenGL Sürümü: {version}</li>"
  158. msgctxt "@label crash message"
  159. msgid "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n "
  160. msgstr "<p><b>Cura’da onarılamaz bir hata oluştu. Lütfen sorunu çözmek için bize Çökme Raporunu gönderin</p></b>"
  161. " <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>"
  162. " "
  163. msgctxt "@label crash message"
  164. msgid "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n <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 <p>Backups can be found in the configuration folder.</p>\n <p>Please send us this Crash Report to fix the problem.</p>\n "
  165. msgstr "<p><b>Ultimaker Cura doğru görünmeyen bir şeyle karşılaştı.</p></b>"
  166. " <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>"
  167. " <p>Yedekler yapılandırma klasöründe bulunabilir.</p>"
  168. " <p>Sorunu düzeltmek için lütfen bu Çökme Raporunu bize gönderin.</p>"
  169. " "
  170. msgctxt "@info:status"
  171. msgid "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n<p>{model_names}</p>\n<p>Find out how to ensure the best possible print quality and reliability.</p>\n<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  172. msgstr "<p>Model boyutu ve model yapılandırması nedeniyle bir veya daha fazla 3D model optimum yazdırılamayabilir:</p>"
  173. "<p>{model_names}</p>"
  174. "<p>En iyi kalite ve güvenilirliği nasıl elde edeceğinizi öğrenin.</p>"
  175. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Yazdırma kalitesi kılavuzunu görüntüleyin</a></p>"
  176. msgctxt "@label"
  177. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  178. msgstr "USB’den yazdırma devam ediyor, Cura’yı kapatmanız bu yazdırma işlemini durduracak. Emin misiniz?"
  179. msgctxt "info:status"
  180. msgid "A cloud connection is not available for a printer"
  181. msgid_plural "A cloud connection is not available for some printers"
  182. msgstr[0] "Yazıcı için kullanılabilir bulut bağlantısı yok"
  183. msgstr[1] "Bazı yazıcılar için kullanılabilir bulut bağlantısı yok"
  184. msgctxt "@text"
  185. msgid "A highly dense and strong part but at a slower print time. Great for functional parts."
  186. msgstr "Oldukça yoğun ve güçlü bir parça ama daha yavaş bir yazdırma süresine sahip. Fonksiyonel parçalar için idealdir."
  187. msgctxt "@message"
  188. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  189. msgstr "Devam eden bir baskı var. Cura, önceki baskı tamamlanmadan USB aracılığıyla başka bir baskı işi başlatamaz."
  190. msgctxt "@item:inlistbox"
  191. msgid "AMF File"
  192. msgstr "AMF Dosyası"
  193. msgctxt "@label"
  194. msgid "Abort"
  195. msgstr "Durdur"
  196. msgctxt "@label"
  197. msgid "Abort Print"
  198. msgstr "Yazdırmayı Durdur"
  199. msgctxt "@window:title"
  200. msgid "Abort print"
  201. msgstr "Yazdırmayı durdur"
  202. msgctxt "@label:status"
  203. msgid "Aborted"
  204. msgstr "Durduruldu"
  205. msgctxt "@label"
  206. msgid "Aborting..."
  207. msgstr "İptal ediliyor..."
  208. msgctxt "@label:status"
  209. msgid "Aborting..."
  210. msgstr "İptal ediliyor..."
  211. msgctxt "@title:window The argument is the application name."
  212. msgid "About %1"
  213. msgstr "%1 hakkında"
  214. msgctxt "@action:inmenu menubar:help"
  215. msgid "About..."
  216. msgstr "Hakkında..."
  217. msgctxt "@button"
  218. msgid "Accept"
  219. msgstr "Kabul et"
  220. msgctxt "@label"
  221. msgid "Account synced"
  222. msgstr "Hesap senkronize edildi"
  223. msgctxt "@label:status"
  224. msgid "Action required"
  225. msgstr "Eylem gerekli"
  226. msgctxt "@action:button"
  227. msgid "Activate"
  228. msgstr "Etkinleştir"
  229. msgctxt "@label"
  230. msgid "Active print"
  231. msgstr "Geçerli yazdırma"
  232. msgctxt "@action:button"
  233. msgid "Add"
  234. msgstr "Ekle"
  235. msgctxt "@button"
  236. msgid "Add"
  237. msgstr "Ekle"
  238. msgctxt "@action:button"
  239. msgid "Add New"
  240. msgstr "Yeni Ekle"
  241. msgctxt "@title:window"
  242. msgid "Add Printer"
  243. msgstr "Yazıcı Ekle"
  244. msgctxt "@button"
  245. msgid "Add UltiMaker printer via Digital Factory"
  246. msgstr "Digital Factory üzerinden UltiMaker yazıcı ekle"
  247. msgctxt "@label"
  248. msgid "Add a Cloud printer"
  249. msgstr "Bulut yazıcısı ekle"
  250. msgctxt "@label"
  251. msgid "Add a networked printer"
  252. msgstr "Bir ağ yazıcısı ekleyin"
  253. msgctxt "@label"
  254. msgid "Add a non-networked printer"
  255. msgstr "Ağ dışı bir yazıcı ekleyin"
  256. msgctxt "@action"
  257. msgid "Add a script"
  258. msgstr "Dosya ekle"
  259. msgctxt "@option:check"
  260. msgid "Add icon to system tray *"
  261. msgstr "Sistem tepsisine simge ekle *"
  262. msgctxt "@button"
  263. msgid "Add local printer"
  264. msgstr "Yerel yazıcı ekleyin"
  265. msgctxt "@option:check"
  266. msgid "Add machine prefix to job name"
  267. msgstr "Makine ön ekini iş adına ekleyin"
  268. msgctxt "@text"
  269. msgid "Add material settings and plugins from the Marketplace"
  270. msgstr "Marketplace'den malzeme ayarlarını ve eklentileri ekleyin"
  271. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  272. msgid "Add more materials from Marketplace"
  273. msgstr "Mağazadan daha fazla malzeme ekle"
  274. msgctxt "@button"
  275. msgid "Add printer"
  276. msgstr "Yazıcı ekle"
  277. msgctxt "@label"
  278. msgid "Add printer"
  279. msgstr "Yazıcı Ekle"
  280. msgctxt "@label"
  281. msgid "Add printer by IP"
  282. msgstr "IP'ye göre bir yazıcı ekleyin"
  283. msgctxt "@label"
  284. msgid "Add printer by IP address"
  285. msgstr "IP adresine göre bir yazıcı ekleyin"
  286. msgctxt "@button"
  287. msgid "Add printer manually"
  288. msgstr "Yazıcıyı manuel olarak ekle"
  289. msgctxt "info:status Filled in with printer name and printer model."
  290. msgid "Adding printer {name} ({model}) from your account"
  291. msgstr "{name} yazıcısı ({model}) hesabınızdan ekleniyor"
  292. msgctxt "@label"
  293. msgid "Address"
  294. msgstr "Adres"
  295. msgctxt "@label"
  296. msgid "Adhesion"
  297. msgstr "Yapıştırma"
  298. msgctxt "@label"
  299. msgid "Adhesion Information"
  300. msgstr "Yapışma Bilgileri"
  301. msgctxt "@label"
  302. msgid "Adjusts the density of infill of the print."
  303. msgstr "Yazdırma dolgusunun yoğunluğunu ayarlar."
  304. msgctxt "support_type description"
  305. 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."
  306. msgstr "Destek yapılarının yerleştirilmesini ayarlar. Yerleştirme, temas eden yapı levhasına veya her bölüme ayarlanabilir. Her bölüme ayarlandığında, destek yapıları da modelde yazdırılacaktır."
  307. msgctxt "@label Header for list of settings."
  308. msgid "Affected By"
  309. msgstr ".........den etkilenir"
  310. msgctxt "@label Header for list of settings."
  311. msgid "Affects"
  312. msgstr "Etkileri"
  313. msgctxt "@button"
  314. msgid "Agree"
  315. msgstr "Kabul ediyorum"
  316. msgctxt "@item:inlistbox"
  317. msgid "All Files (*)"
  318. msgstr "Tüm Dosyalar (*)"
  319. msgctxt "@item:inlistbox"
  320. msgid "All Supported Types ({0})"
  321. msgstr "Tüm desteklenen türler ({0})"
  322. msgctxt "@text:window"
  323. msgid "Allow sending anonymous data"
  324. msgstr "Anonim veri gönderilmesine izin ver"
  325. msgctxt "@option:discardOrKeep"
  326. msgid "Always ask me this"
  327. msgstr "Her zaman sor"
  328. msgctxt "@option:openProject"
  329. msgid "Always ask me this"
  330. msgstr "Her zaman sor"
  331. msgctxt "@option:discardOrKeep"
  332. msgid "Always discard changed settings"
  333. msgstr "Değiştirilen ayarları her zaman at"
  334. msgctxt "@option:openProject"
  335. msgid "Always import models"
  336. msgstr "Her zaman modelleri içe aktar"
  337. msgctxt "@option:openProject"
  338. msgid "Always open as a project"
  339. msgstr "Her zaman proje olarak aç"
  340. msgctxt "@option:discardOrKeep"
  341. msgid "Always transfer changed settings to new profile"
  342. msgstr "Değiştirilen ayarları her zaman yeni profile taşı"
  343. msgctxt "@info:tooltip"
  344. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  345. msgstr "Bir modelin birimi milimetre değil de metre ise oldukça küçük görünebilir. Bu modeller ölçeklendirilmeli mi?"
  346. msgctxt "@label"
  347. msgid "Annealing"
  348. msgstr "Tavlama"
  349. msgctxt "@label"
  350. msgid "Anonymous"
  351. msgstr "Anonim"
  352. msgctxt "@option:radio"
  353. msgid "Anonymous crash reports"
  354. msgstr "Anonim çökme raporları"
  355. msgctxt "@label Description for application component"
  356. msgid "Application framework"
  357. msgstr "Uygulama çerçevesi"
  358. msgctxt "@title:column"
  359. msgid "Applies on"
  360. msgstr "Geçerli:"
  361. msgctxt "@label"
  362. msgid "Apply Extruder offsets to GCode"
  363. msgstr "Ekstrüder ofsetlerini GCode'a uygula"
  364. msgctxt "@info:title"
  365. msgid "Are you ready for cloud printing?"
  366. msgstr "Buluttan yazdırma için hazır mısınız?"
  367. msgctxt "@label %1 is the name of a print job."
  368. msgid "Are you sure you want to abort %1?"
  369. msgstr "%1 öğesini durdurmak istediğinizden emin misiniz?"
  370. msgctxt "@label"
  371. msgid "Are you sure you want to abort the print?"
  372. msgstr "Yazdırmayı iptal etmek istediğinizden emin misiniz?"
  373. msgctxt "@label %1 is the name of a print job."
  374. msgid "Are you sure you want to delete %1?"
  375. msgstr "%1 öğesini silmek istediğinizden emin misiniz?"
  376. msgctxt "@dialog:info"
  377. msgid "Are you sure you want to delete this backup? This cannot be undone."
  378. msgstr "Bu yedeklemeyi silmek istediğinizden emin misiniz? Bu eylem geri alınamaz."
  379. msgctxt "@label %1 is the application name"
  380. msgid "Are you sure you want to exit %1?"
  381. msgstr "%1 uygulamasından çıkmak istediğinizden emin misiniz?"
  382. msgctxt "@label %1 is the name of a print job."
  383. msgid "Are you sure you want to move %1 to the top of the queue?"
  384. msgstr "%1 öğesini kuyruğun en üstüne taşımak ister misiniz?"
  385. msgctxt "@message {printer_name} is replaced with the name of the printer"
  386. msgid "Are you sure you want to remove {printer_name} temporarily?"
  387. msgstr "{printer_name} yazıcısını geçici olarak kaldırmak istediğinizden emin misiniz?"
  388. msgctxt "@info:question"
  389. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  390. msgstr "Yeni bir proje başlatmak istediğinizden emin misiniz? Bu işlem yapı levhasını ve kaydedilmemiş tüm ayarları silecektir."
  391. msgctxt "@label (%1 is object name)"
  392. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  393. msgstr "%1’i kaldırmak istediğinizden emin misiniz? Bu eylem geri alınamaz!"
  394. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  395. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  396. msgstr "{0} yazıcısını kaldırmak istediğinizden emin misiniz? Bu işlem geri alınamaz!"
  397. msgctxt "@action:inmenu menubar:edit"
  398. msgid "Arrange All Models"
  399. msgstr "Tüm Modelleri Düzenle"
  400. msgctxt "@action:inmenu menubar:edit"
  401. msgid "Arrange All Models in a grid"
  402. msgstr "Tüm Modelleri bir ızgarada düzenleyin"
  403. msgctxt "@action:inmenu menubar:edit"
  404. msgid "Arrange Selection"
  405. msgstr "Düzenleme Seçimi"
  406. msgctxt "@label:button"
  407. msgid "Ask a question"
  408. msgstr "Soru gönder"
  409. msgctxt "@checkbox:description"
  410. msgid "Auto Backup"
  411. msgstr "Otomatik Yedekle"
  412. msgctxt "@checkbox:description"
  413. msgid "Automatically create a backup each day that Cura is started."
  414. msgstr "Cura’nın başlatıldığı günlerde otomatik olarak yedekleme yapar."
  415. msgctxt "@option:check"
  416. msgid "Automatically drop models to the build plate"
  417. msgstr "Modelleri otomatik olarak yapı tahtasına indirin"
  418. msgctxt "@action:button"
  419. msgid "Automatically upgrade Firmware"
  420. msgstr "Aygıt Yazılımını otomatik olarak yükselt"
  421. msgctxt "@label"
  422. msgid "Available networked printers"
  423. msgstr "Mevcut ağ yazıcıları"
  424. msgctxt "@item:inlistbox"
  425. msgid "BMP Image"
  426. msgstr "BMP Resmi"
  427. msgctxt "@button"
  428. msgid "Back"
  429. msgstr "Geri"
  430. msgctxt "@button:tooltip"
  431. msgid "Back"
  432. msgstr "Geri"
  433. msgctxt "@info:title"
  434. msgid "Backup"
  435. msgstr "Yedekle"
  436. msgctxt "@button"
  437. msgid "Backup Now"
  438. msgstr "Şimdi Yedekle"
  439. msgctxt "@action:button"
  440. msgid "Backup and Reset Configuration"
  441. msgstr "Yapılandırmayı Yedekle ve Sıfırla"
  442. msgctxt "@text"
  443. msgid "Backup and sync your material settings and plugins"
  444. msgstr "Malzeme ayarlarınızı ve eklentilerinizi yedekleyin ve senkronize edin"
  445. msgctxt "@description"
  446. msgid "Backup and synchronize your Cura settings."
  447. msgstr "Cura ayarlarınızı yedekleyin ve senkronize edin."
  448. msgctxt "@info:title"
  449. msgid "Backups"
  450. msgstr "Yedeklemeler"
  451. msgctxt "@label"
  452. msgid "Balanced"
  453. msgstr "Dengeli"
  454. msgctxt "@action:label"
  455. msgid "Base (mm)"
  456. msgstr "Taban (mm)"
  457. msgctxt "@action:inmenu menubar:view"
  458. msgid "Bottom View"
  459. msgstr "Alttan Görünüm"
  460. msgctxt "@label"
  461. msgid "Brand"
  462. msgstr "Marka"
  463. msgctxt "@title"
  464. msgid "Build Plate Leveling"
  465. msgstr "Yapı Levhası Dengeleme"
  466. msgctxt "@info:title"
  467. msgid "Build Volume"
  468. msgstr "Yapı Disk Bölümü"
  469. msgctxt "@label"
  470. msgid "Build plate"
  471. msgstr "Yapı levhası"
  472. msgctxt "@label"
  473. msgid "Build plate shape"
  474. msgstr "Yapı levhası şekli"
  475. msgctxt "@label"
  476. msgid "Bundled Materials"
  477. msgstr "Paketli malzemeler"
  478. msgctxt "@label"
  479. msgid "Bundled Plugins"
  480. msgstr "Paketli eklentiler"
  481. msgctxt "@button"
  482. msgid "Buy spool"
  483. msgstr "Makara satın al"
  484. msgctxt "@label Is followed by the name of an author"
  485. msgid "By"
  486. msgstr "Oluşturan"
  487. msgctxt "@label Description for application dependency"
  488. msgid "C/C++ Binding library"
  489. msgstr "C/C++ Bağlantı kitaplığı"
  490. msgctxt "@item:inlistbox"
  491. msgid "COLLADA Digital Asset Exchange"
  492. msgstr "COLLADA Digital Asset Exchange"
  493. msgctxt "@info:status"
  494. msgid "Calculated"
  495. msgstr "Hesaplanmış"
  496. msgctxt "@window:text"
  497. msgid "Camera navigation:"
  498. msgstr "Kamera navigasyonu:"
  499. msgctxt "@window:text"
  500. msgid "Camera rendering:"
  501. msgstr "Kamera oluşturma:"
  502. msgctxt "@action:inmenu menubar:view"
  503. msgid "Camera view"
  504. msgstr "Kamera görüşü"
  505. msgctxt "@info:title"
  506. msgid "Can't Find Location"
  507. msgstr "Konum Bulunamıyor"
  508. msgctxt "@info:title"
  509. msgid "Can't Open Project File"
  510. msgstr "Proje Dosyası Açılamıyor"
  511. msgctxt "@label"
  512. msgid "Can't connect to your UltiMaker printer?"
  513. msgstr "UltiMaker yazıcınıza bağlanamıyor musunuz?"
  514. msgctxt "@info:status Don't translate the XML tags <filename>!"
  515. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  516. msgstr "Yazıcı eklenmeden önce profil, <filename>{0}</filename> dosyasından içe aktarılamaz."
  517. msgctxt "@info:status"
  518. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  519. msgstr "G-code yüklenirken başka bir dosya açılamaz. {0} içe aktarma atlandı"
  520. msgctxt "@info:error"
  521. msgid "Can't write to UFP file:"
  522. msgstr "UFP dosyasına yazamıyor:"
  523. msgctxt "@action:button"
  524. msgid "Cancel"
  525. msgstr "İptal Et"
  526. msgctxt "@button"
  527. msgid "Cancel"
  528. msgstr "İptal"
  529. msgctxt "@button Cancel pre-heating"
  530. msgid "Cancel"
  531. msgstr "İptal Et"
  532. msgctxt "@option:check"
  533. msgid "Caution message in g-code reader"
  534. msgstr "G-code okuyucuda uyarı mesajı"
  535. msgctxt "@action:inmenu"
  536. msgid "Ce&nter Model on Platform"
  537. msgstr "Modeli Platformda Ortala"
  538. msgctxt "@action:inmenu menubar:edit"
  539. msgid "Center Selected"
  540. msgstr "Seçileni Ortala"
  541. msgctxt "@action:button"
  542. msgid "Center camera when item is selected"
  543. msgstr "Öğeyi seçince kamerayı ortalayın"
  544. msgctxt "@info:tooltip"
  545. msgid "Change active post-processing scripts."
  546. msgstr "Etkin ileri işleme komut dosyalarını değiştirin."
  547. msgctxt "@label"
  548. msgid "Change material %1 from %2 to %3."
  549. msgstr "%2 olan %1 malzemesini %3 yapın."
  550. msgctxt "@label"
  551. msgid "Change print core %1 from %2 to %3."
  552. msgstr "%2 olan %1 print core'u %3 yapın."
  553. msgctxt "@info:title"
  554. msgid "Changes detected from your UltiMaker account"
  555. msgstr "UltiMaker hesabınızda değişiklik tespit edildi"
  556. msgctxt "@title"
  557. msgid "Changes from your account"
  558. msgstr "Hesabınızda değişiklik var"
  559. msgctxt "@label:textbox"
  560. msgid "Check all"
  561. msgstr "Tümünü denetle"
  562. msgctxt "@button"
  563. msgid "Check for account updates"
  564. msgstr "Hesap güncellemelerini kontrol et"
  565. msgctxt "@option:check"
  566. msgid "Check for updates on start"
  567. msgstr "Başlangıçta güncellemeleri kontrol edin"
  568. msgctxt "@label"
  569. msgid "Checking..."
  570. msgstr "Kontrol ediliyor..."
  571. msgctxt "@label"
  572. msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"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."
  573. msgstr "Destek oluşturmak için kullanılabilir teknikler arasından seçim yapar. \"Normal\" destek, çıkıntılı parçaların hemen altında bir destek yapısı oluşturur ve bu alanları dümdüz aşağı indirir. \"Ağaç\"destek, çıkıntılı alanlara doğru dallar oluşturur ve bu dalların uçlarıyla model desteklenir; dallar modelin etrafına sarılarak yapı plakasından olabildiğince destek alır."
  574. msgctxt "@action:inmenu menubar:edit"
  575. msgid "Clear Build Plate"
  576. msgstr "Yapı Levhasını Temizle"
  577. msgctxt "@option:check"
  578. msgid "Clear buildplate before loading model into the single instance"
  579. msgstr "Modeli tek örneğe yüklemeden önce yapı plakasını temizleyin"
  580. msgctxt "@text"
  581. msgid "Click the export material archive button."
  582. msgstr "Malzeme arşivini dışa aktar düğmesine tıklayın."
  583. msgctxt "@action:button"
  584. msgid "Close"
  585. msgstr "Kapat"
  586. msgctxt "@title:window %1 is the application name"
  587. msgid "Closing %1"
  588. msgstr "%1 kapatılıyor"
  589. msgctxt "@action:inmenu"
  590. msgid "Collapse All Categories"
  591. msgstr "Tüm Kategorileri Daralt"
  592. msgctxt "@label"
  593. msgid "Color"
  594. msgstr "Renk"
  595. msgctxt "@action:label"
  596. msgid "Color Model"
  597. msgstr "Renk Modeli"
  598. msgctxt "@label"
  599. msgid "Color scheme"
  600. msgstr "Renk şeması"
  601. msgctxt "@info"
  602. msgid "Compare and save."
  603. msgstr "Karşılaştırın ve tasarruf edin."
  604. msgctxt "@label"
  605. msgid "Compatibility Mode"
  606. msgstr "Uyumluluk Modu"
  607. msgctxt "@label Description for application dependency"
  608. msgid "Compatibility between Python 2 and 3"
  609. msgstr "Python 2 ve 3 arasında uyumluluk"
  610. msgctxt "@title:label"
  611. msgid "Compatible Printers"
  612. msgstr "Uyumlu yazıcılar"
  613. msgctxt "@label"
  614. msgid "Compatible material diameter"
  615. msgstr "Uyumlu malzeme çapı"
  616. msgctxt "@header"
  617. msgid "Compatible printers"
  618. msgstr "Uyumlu yazıcılar"
  619. msgctxt "@header"
  620. msgid "Compatible support materials"
  621. msgstr "Uyumlu destek malzemeleri"
  622. msgctxt "@header"
  623. msgid "Compatible with Material Station"
  624. msgstr "Material Station ile uyumlu"
  625. msgctxt "@item:inlistbox"
  626. msgid "Compressed COLLADA Digital Asset Exchange"
  627. msgstr "Compressed COLLADA Digital Asset Exchange"
  628. msgctxt "@item:inlistbox"
  629. msgid "Compressed G-code File"
  630. msgstr "Sıkıştırılmış G-code Dosyası"
  631. msgctxt "@title:window"
  632. msgid "Configuration Changes"
  633. msgstr "Yapılandırma Değişiklikleri"
  634. msgctxt "@error"
  635. msgid "Configuration not supported"
  636. msgstr "Yapılandırma desteklenmiyor"
  637. msgctxt "@header"
  638. msgid "Configurations"
  639. msgstr "Yapılandırmalar"
  640. msgctxt "@label"
  641. msgid "Configurations"
  642. msgstr "Yapılandırmalar"
  643. msgctxt "@action:inmenu"
  644. msgid "Configure Cura..."
  645. msgstr "Cura’yı yapılandır..."
  646. msgctxt "@info:tooltip"
  647. msgid "Configure Per Model Settings"
  648. msgstr "Model Başına Ayarları Yapılandır"
  649. msgctxt "@action"
  650. msgid "Configure group"
  651. msgstr "Grubu yapılandır"
  652. msgctxt "@action:menu"
  653. msgid "Configure setting visibility..."
  654. msgstr "Görünürlük ayarını yapılandır..."
  655. msgctxt "@title:window"
  656. msgid "Confirm Diameter Change"
  657. msgstr "Çap Değişikliğini Onayla"
  658. msgctxt "@title:window"
  659. msgid "Confirm Remove"
  660. msgstr "Kaldırmayı Onayla"
  661. msgctxt "@action:button"
  662. msgid "Connect"
  663. msgstr "Bağlan"
  664. msgctxt "@button"
  665. msgid "Connect"
  666. msgstr "Bağlan"
  667. msgctxt "@title:window"
  668. msgid "Connect to Networked Printer"
  669. msgstr "Ağ Yazıcısına Bağlan"
  670. msgctxt "@action"
  671. msgid "Connect via Network"
  672. msgstr "Ağ ile Bağlan"
  673. msgctxt "@info:status"
  674. msgid "Connected over the network"
  675. msgstr "Ağ üzerinden bağlandı"
  676. msgctxt "@label"
  677. msgid "Connected printers"
  678. msgstr "Bağlı yazıcılar"
  679. msgctxt "@info:status"
  680. msgid "Connected via USB"
  681. msgstr "USB ile bağlı"
  682. msgctxt "@info:status"
  683. msgid "Connected via cloud"
  684. msgstr "Bulut üzerinden bağlı"
  685. msgctxt "@tooltip:button"
  686. msgid "Consult the UltiMaker Community."
  687. msgstr "UltiMaker Topluluğundan yardım alın."
  688. msgctxt "@title:window"
  689. msgid "Convert Image"
  690. msgstr "Resmi Dönüştür"
  691. msgctxt "@label"
  692. msgid "Cooling Fan Number"
  693. msgstr "Soğutma Fanı Numarası"
  694. msgctxt "@action:menu"
  695. msgid "Copy all changed values to all extruders"
  696. msgstr "Tüm değiştirilmiş değerleri tüm ekstruderlere kopyala"
  697. msgctxt "@action:inmenu menubar:edit"
  698. msgid "Copy to clipboard"
  699. msgstr "Panoya kopyala"
  700. msgctxt "@action:menu"
  701. msgid "Copy value to all extruders"
  702. msgstr "Değeri tüm ekstruderlere kopyala"
  703. msgctxt "@label"
  704. msgid "Cost per Meter"
  705. msgstr "Metre başına maliyet"
  706. msgctxt "@info"
  707. msgid "Could not access update information."
  708. msgstr "Güncelleme bilgilerine erişilemedi."
  709. msgctxt "@label"
  710. msgid "Could not connect to device."
  711. msgstr "Cihaza bağlanılamadı."
  712. msgctxt "@info:backup_failed"
  713. msgid "Could not create archive from user data directory: {}"
  714. msgstr "Kullanıcı veri dizininden arşiv oluşturulamadı: {}"
  715. msgctxt "@info:status Don't translate the tag {device}!"
  716. msgid "Could not find a file name when trying to write to {device}."
  717. msgstr "{device} üzerine yazmaya çalışırken dosya adı bulunamadı."
  718. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  719. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  720. msgstr "Malzeme <filename>%1</filename> dosyasına içe aktarılamadı: <message>%2</message>"
  721. msgctxt "@info:error"
  722. msgid "Could not interpret the server's response."
  723. msgstr "Sunucunun yanıtı yorumlanamadı."
  724. msgctxt "@error:load"
  725. msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin."
  726. msgstr "GCodeWriter eklentisi yüklenemedi. Eklentiyi yeniden etkinleştirmeyi deneyin."
  727. msgctxt "@info:error"
  728. msgid "Could not reach Marketplace."
  729. msgstr "Pazar Yerine ulaşılamadı."
  730. msgctxt "@message"
  731. msgid "Could not read response."
  732. msgstr "Yanıt okunamadı."
  733. msgctxt "@message:text"
  734. msgid "Could not save material archive to {}:"
  735. msgstr "Malzeme arşivi {} konumuna kaydedilemedi:"
  736. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  737. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  738. msgstr "<filename>{0}</filename> dosyasına kaydedilemedi: <message>{1}</message>"
  739. msgctxt "@info:status"
  740. msgid "Could not save to removable drive {0}: {1}"
  741. msgstr "Çıkarılabilir aygıta {0} kaydedilemedi: {1}"
  742. msgctxt "@info:text"
  743. msgid "Could not upload the data to the printer."
  744. msgstr "Veri yazıcıya yüklenemedi."
  745. msgctxt "@info:plugin_failed"
  746. msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process."
  747. msgstr "EnginePlugin başlatılamadı: {self._plugin_id}"
  748. "İşlem yürütme izni yok."
  749. msgctxt "@info:plugin_failed"
  750. msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)"
  751. msgstr "EnginePlugin başlatılamadı: {self._plugin_id}"
  752. "İşletim sistemi tarafından engelleniyor (antivirüs?)"
  753. msgctxt "@info:plugin_failed"
  754. msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable"
  755. msgstr "EnginePlugin başlatılamadı: {self._plugin_id}"
  756. "Kaynak geçici olarak kullanılamıyor"
  757. msgctxt "@title:window"
  758. msgid "Crash Report"
  759. msgstr "Çökme Raporu"
  760. msgctxt "@title:window"
  761. msgid "Create Profile"
  762. msgstr "Profil Oluştur"
  763. msgctxt "@text"
  764. msgid "Create a free UltiMaker Account"
  765. msgstr "Ücretsiz UltiMaker Hesabı oluşturun"
  766. msgctxt "@button"
  767. msgid "Create a free UltiMaker account"
  768. msgstr "Ücretsiz UltiMaker hesabı oluşturun"
  769. msgctxt "@info:tooltip"
  770. msgid "Create a volume in which supports are not printed."
  771. msgstr "Desteklerin yazdırılmadığı bir hacim oluşturun."
  772. msgctxt "@action:ComboBox Save settings in a new profile"
  773. msgid "Create new"
  774. msgstr "Yeni oluştur"
  775. msgctxt "@action:button"
  776. msgid "Create new"
  777. msgstr "Yeni oluştur"
  778. msgctxt "@button"
  779. msgid "Create new"
  780. msgstr "Yeni oluştur"
  781. msgctxt "@action:tooltip"
  782. msgid "Create new profile from current settings/overrides"
  783. msgstr "Mevcut ayarlardan/geçersiz kılmalardan yeni profil oluştur"
  784. msgctxt "@tooltip:button"
  785. msgid "Create print projects in Digital Library."
  786. msgstr "Digital Library'de baskı projeleri oluşturun."
  787. msgctxt "@info:backup_status"
  788. msgid "Creating your backup..."
  789. msgstr "Yedeklemeniz oluşturuluyor..."
  790. msgctxt "@item:inlistbox"
  791. msgid "Cura 15.04 profiles"
  792. msgstr "Cura 15.04 profilleri"
  793. msgctxt "@title:window"
  794. msgid "Cura Backups"
  795. msgstr "Cura Yedeklemeleri"
  796. msgctxt "@item:inlistbox"
  797. msgid "Cura Profile"
  798. msgstr "Cura Profili"
  799. msgctxt "@item:inlistbox"
  800. msgid "Cura Project 3MF file"
  801. msgstr "Cura Projesi 3MF dosyası"
  802. msgctxt "@backuplist:label"
  803. msgid "Cura Version"
  804. msgstr "Cura Sürümü"
  805. msgctxt "@title:window"
  806. msgid "Cura can't start"
  807. msgstr "Cura başlatılamıyor"
  808. msgctxt "@info:status"
  809. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  810. msgstr "Cura, henüz {0} grubunun ana yazıcısına yüklenmemiş malzeme profilleri tespit etti."
  811. msgctxt "@info:credit"
  812. msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:"
  813. msgstr "Cura, topluluk iş birliği ile UltiMaker tarafından geliştirilmiştir."
  814. "Cura aşağıdaki açık kaynak projelerini gururla kullanmaktadır:"
  815. msgctxt "@label"
  816. msgid "Cura language"
  817. msgstr "Cura dili"
  818. msgctxt "@label Cura version number"
  819. msgid "Cura version"
  820. msgstr "Cura sürümü"
  821. msgctxt "@label"
  822. msgid "Currency:"
  823. msgstr "Para Birimi:"
  824. msgctxt "@title:column"
  825. msgid "Current"
  826. msgstr "Geçerli"
  827. msgctxt "@title:column"
  828. msgid "Current changes"
  829. msgstr "Mevcut değişiklikler"
  830. msgctxt "@header"
  831. msgid "Custom"
  832. msgstr "Özel"
  833. msgctxt "@label"
  834. msgid "Custom"
  835. msgstr "Özel"
  836. msgctxt "@title:tab"
  837. msgid "Custom"
  838. msgstr "Özel"
  839. msgctxt "@label"
  840. msgid "Custom Material"
  841. msgstr "Özel Malzeme"
  842. msgctxt "@label"
  843. msgid "Custom profile"
  844. msgstr "Özel profil"
  845. msgctxt "@info"
  846. msgid "Custom profile name:"
  847. msgstr "Özel profil adı:"
  848. msgctxt "@label"
  849. msgid "Custom profiles"
  850. msgstr "Özel profiller"
  851. msgctxt "@label:header"
  852. msgid "Custom profiles"
  853. msgstr "Özel profiller"
  854. msgctxt "@action:inmenu menubar:edit"
  855. msgid "Cut"
  856. msgstr "Kes"
  857. msgctxt "@item:inlistbox"
  858. msgid "Cutting mesh"
  859. msgstr "Kesme Örgüsü"
  860. msgctxt "@item:inlistbox"
  861. msgid "Darker is higher"
  862. msgstr "Daha koyu olan daha yüksek"
  863. msgctxt "@info:title"
  864. msgid "Data Sent"
  865. msgstr "Veri Gönderildi"
  866. msgctxt "@label Description for application dependency"
  867. msgid "Data interchange format"
  868. msgstr "Veri değişim biçimi"
  869. msgctxt "@button"
  870. msgid "Decline"
  871. msgstr "Reddet"
  872. msgctxt "@button"
  873. msgid "Decline and close"
  874. msgstr "Reddet ve kapat"
  875. msgctxt "@button"
  876. msgid "Decline and remove from account"
  877. msgstr "Reddet ve hesaptan kaldır"
  878. msgctxt "@info:No intent profile selected"
  879. msgid "Default"
  880. msgstr "Varsayılan"
  881. msgctxt "@window:text"
  882. msgid "Default behavior for changed setting values when switching to a different profile: "
  883. msgstr "Farklı bir profile geçerken değişen ayar değerleriyle ilgili varsayılan davranış: "
  884. msgctxt "@info:tooltip"
  885. msgid "Default behavior when opening a project file"
  886. msgstr "Bir proje dosyası açıldığında varsayılan davranış"
  887. msgctxt "@window:text"
  888. msgid "Default behavior when opening a project file: "
  889. msgstr "Bir proje dosyası açıldığında varsayılan davranış: "
  890. msgctxt "@action:button"
  891. msgid "Defaults"
  892. msgstr "Varsayılanlar"
  893. msgctxt "@label"
  894. msgid "Defines the thickness of your part side walls, roof and floor."
  895. msgstr "Parçanızın yan duvarlarının, tavanının ve tabanının kalınlığını tanımlar."
  896. msgctxt "@label"
  897. msgid "Delete"
  898. msgstr "Sil"
  899. msgctxt "@dialog:title"
  900. msgid "Delete Backup"
  901. msgstr "Yedeklemeyi Sil"
  902. msgctxt "@action:inmenu"
  903. msgid "Delete Model"
  904. msgstr "Modeli Sil"
  905. msgctxt "@action:inmenu menubar:edit"
  906. msgid "Delete Selected"
  907. msgstr "Seçileni Sil"
  908. msgctxt "@window:title"
  909. msgid "Delete print job"
  910. msgstr "Yazdırma işini sil"
  911. msgctxt "@label"
  912. msgid "Density"
  913. msgstr "Yoğunluk"
  914. msgctxt "@label Description for development tool"
  915. msgid "Dependency and package manager"
  916. msgstr "Bağımlılık ve paket yöneticisi"
  917. msgctxt "@action:label"
  918. msgid "Depth (mm)"
  919. msgstr "Derinlik (mm)"
  920. msgctxt "@action:label"
  921. msgid "Derivative from"
  922. msgstr "Kaynağı"
  923. msgctxt "@header"
  924. msgid "Description"
  925. msgstr "Tanım"
  926. msgctxt "@label"
  927. msgid "Description"
  928. msgstr "Tanım"
  929. msgctxt "@action:button"
  930. msgid "Details"
  931. msgstr "Detaylar"
  932. msgctxt "@label"
  933. msgid "Diameter"
  934. msgstr "Çap"
  935. msgctxt "@button"
  936. msgid "Disable"
  937. msgstr "Devre dışı bırak"
  938. msgctxt "@action:inmenu"
  939. msgid "Disable Extruder"
  940. msgstr "Ekstruderi Devre Dışı Bırak"
  941. msgctxt "@option:discardOrKeep"
  942. msgid "Discard and never ask again"
  943. msgstr "İptal et ve bir daha sorma"
  944. msgctxt "@action:button"
  945. msgid "Discard changes"
  946. msgstr "Değişiklikleri sil"
  947. msgctxt "@action:button"
  948. msgid "Discard current changes"
  949. msgstr "Geçerli değişiklikleri iptal et"
  950. msgctxt "@title:window"
  951. msgid "Discard or Keep changes"
  952. msgstr "Değişiklikleri iptal et veya kaydet"
  953. msgctxt "@button"
  954. msgid "Dismiss"
  955. msgstr "Kapat"
  956. msgctxt "@label"
  957. msgid "Display Name"
  958. msgstr "Görünen Ad"
  959. msgctxt "@option:check"
  960. msgid "Display model errors"
  961. msgstr "Model hatalarını görüntüle"
  962. msgctxt "@option:check"
  963. msgid "Display overhang"
  964. msgstr "Dışarıda kalan alanı göster"
  965. msgctxt "@info:option_text"
  966. msgid "Do not show this message again"
  967. msgstr "Bu mesajı bir daha gösterme"
  968. msgctxt "@info:generic"
  969. msgid "Do you want to sync material and software packages with your account?"
  970. msgstr "Malzeme ve yazılım paketlerini hesabınızla senkronize etmek istiyor musunuz?"
  971. msgctxt "@action:label"
  972. msgid "Don't show project summary on save again"
  973. msgstr "Kaydederken proje özetini bir daha gösterme"
  974. msgctxt "@action:menu"
  975. msgid "Don't show this setting"
  976. msgstr "Bu ayarı gösterme"
  977. msgctxt "@label"
  978. msgid "Don't support overlaps"
  979. msgstr "Çakışmaları destekleme"
  980. msgctxt "@button"
  981. msgid "Done"
  982. msgstr "Bitti"
  983. msgctxt "@button"
  984. msgid "Downgrade"
  985. msgstr "Eski Sürümü Yükle"
  986. msgctxt "@button"
  987. msgid "Downgrading..."
  988. msgstr "Eski sürüm yükleniyor..."
  989. msgctxt "@label"
  990. msgid "Draft"
  991. msgstr "Taslak"
  992. msgctxt "@action:inmenu menubar:edit"
  993. msgid "Drop All Models to buildplate"
  994. msgstr "Tüm Modelleri baskı tablasına bırak"
  995. msgctxt "@action:button"
  996. msgid "Duplicate"
  997. msgstr "Çoğalt"
  998. msgctxt "@title:window"
  999. msgid "Duplicate Profile"
  1000. msgstr "Profili Çoğalt"
  1001. msgctxt "@backup_limit_info"
  1002. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1003. 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."
  1004. msgctxt "@title:menu menubar:toplevel"
  1005. msgid "E&xtensions"
  1006. msgstr "Uzantılar"
  1007. msgctxt "@action:button"
  1008. msgid "Edit"
  1009. msgstr "Düzenle"
  1010. msgctxt "@action:button"
  1011. msgid "Eject"
  1012. msgstr "Çıkar"
  1013. msgctxt "@action"
  1014. msgid "Eject removable device {0}"
  1015. msgstr "Çıkarılabilir aygıtı çıkar {0}"
  1016. msgctxt "@info:status"
  1017. msgid "Ejected {0}. You can now safely remove the drive."
  1018. msgstr "Çıkarıldı {0}. Şimdi sürücüyü güvenle kaldırabilirsiniz."
  1019. msgctxt "@label"
  1020. msgid "Empty"
  1021. msgstr "Boş"
  1022. msgctxt "@button"
  1023. msgid "Enable"
  1024. msgstr "Etkinleştir"
  1025. msgctxt "@action:inmenu"
  1026. msgid "Enable Extruder"
  1027. msgstr "Ekstruderi Etkinleştir"
  1028. msgctxt "@label"
  1029. 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. Disabling it results in a skirt around object by default."
  1030. msgstr "Kenarlık veya radye yazdırmayı etkinleştirin. Bu, nesnenizin etrafına veya altına daha sonradan kolayca kesebileceğiniz düz bir alan ekleyecektir. Bu ayarı devre dışı bıraktığınızda ise nesnenin etrafında bir etek oluşur."
  1031. msgctxt "@label"
  1032. msgid "Enabled"
  1033. msgstr "Etkin"
  1034. msgctxt "@title:label"
  1035. msgid "End G-code"
  1036. msgstr "G-code’u Sonlandır"
  1037. msgctxt "@label"
  1038. msgid "End-to-end solution for fused filament 3D printing."
  1039. msgstr "Kaynaşık filaman 3B yazdırma için kalıcı çözüm."
  1040. msgctxt "@info:title"
  1041. msgid "EnginePlugin"
  1042. msgstr "EnginePlugin"
  1043. msgctxt "@label"
  1044. msgid "Engineering"
  1045. msgstr "Mühendislik"
  1046. msgctxt "@option:check"
  1047. msgid "Ensure models are kept apart"
  1048. msgstr "Modellerin birbirinden ayrı olduğundan emin olduğundan emin olun"
  1049. msgctxt "@label"
  1050. msgid "Enter the IP address of your printer on the network."
  1051. msgstr "Ağdaki yazıcınızın IP adresini girin."
  1052. msgctxt "@text"
  1053. msgid "Enter your printer's IP address."
  1054. msgstr "Yazıcınızın IP adresini girin."
  1055. msgctxt "@info:title"
  1056. msgid "Error"
  1057. msgstr "Hata"
  1058. msgctxt "@title:groupbox"
  1059. msgid "Error traceback"
  1060. msgstr "Hata geri izleme"
  1061. msgctxt "@label"
  1062. msgid "Estimated time left"
  1063. msgstr "Kalan tahmini süre"
  1064. msgctxt "@action:inmenu"
  1065. msgid "Exit Full Screen"
  1066. msgstr "Tam Ekrandan Çık"
  1067. msgctxt "@label"
  1068. msgid "Experimental"
  1069. msgstr "Deneysel"
  1070. msgctxt "@action:button"
  1071. msgid "Export"
  1072. msgstr "Dışa Aktar"
  1073. msgctxt "@title:window"
  1074. msgid "Export All Materials"
  1075. msgstr "Tüm Malzemeleri Dışa Aktar"
  1076. msgctxt "@title:window"
  1077. msgid "Export Material"
  1078. msgstr "Malzemeyi Dışa Aktar"
  1079. msgctxt "@title:window"
  1080. msgid "Export Profile"
  1081. msgstr "Profili Dışa Aktar"
  1082. msgctxt "@action:inmenu menubar:file"
  1083. msgid "Export Selection..."
  1084. msgstr "Seçimi Dışa Aktar..."
  1085. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  1086. msgid "Export Universal Cura Project"
  1087. msgstr "Universal Cura Project'i Dışa Aktar"
  1088. msgctxt "@button"
  1089. msgid "Export material archive"
  1090. msgstr "Malzeme arşivini dışa aktar"
  1091. msgctxt "@info:title"
  1092. msgid "Export succeeded"
  1093. msgstr "Dışa aktarma başarılı"
  1094. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1095. msgid "Exported profile to <filename>{0}</filename>"
  1096. msgstr "Profil <filename>{0}</filename> dosyasına aktarıldı"
  1097. msgctxt "@tooltip:button"
  1098. msgid "Extend UltiMaker Cura with plugins and material profiles."
  1099. msgstr "UltiMaker Cura'yı eklentilerle ve malzeme profilleriyle genişletin."
  1100. msgctxt "@label"
  1101. msgid "Extruder"
  1102. msgstr "Ekstrüder"
  1103. msgctxt "@action:label"
  1104. msgid "Extruder %1"
  1105. msgstr "Ekstruder %1"
  1106. msgctxt "@title:label"
  1107. msgid "Extruder End G-code"
  1108. msgstr "Ekstruder G-Code'u Sonlandırma"
  1109. msgctxt "@label"
  1110. msgid "Extruder End G-code duration"
  1111. msgstr "Ekstruder Bitiş G kodu süresi"
  1112. msgctxt "@title:label"
  1113. msgid "Extruder Start G-code"
  1114. msgstr "Ekstruder G-Code'u Başlatma"
  1115. msgctxt "@label"
  1116. msgid "Extruder Start G-code duration"
  1117. msgstr "Ekstruder Başlangıç G kodu süresi"
  1118. msgctxt "@label"
  1119. msgid "Extruder {0}"
  1120. msgstr "Ekstruder {0}"
  1121. msgctxt "@info:title"
  1122. msgid "Extruder(s) Disabled"
  1123. msgstr "Ekstrüder(ler) Devre Dışı Bırakıldı"
  1124. msgctxt "@label:status"
  1125. msgid "Failed"
  1126. msgstr "Başarısız"
  1127. msgctxt "@text:error"
  1128. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  1129. msgstr "Malzemeleri bazı yazıcılarla senkronize etmek için Digital Factory'ye bağlanılamadı."
  1130. msgctxt "@text:error"
  1131. msgid "Failed to connect to Digital Factory."
  1132. msgstr "Digital Factory'ye bağlanılamadı."
  1133. msgctxt "@text:error"
  1134. msgid "Failed to create archive of materials to sync with printers."
  1135. msgstr "Yazıcılarla senkronize edilecek malzeme arşivi oluşturulamadı."
  1136. msgctxt "@info:status"
  1137. msgid "Failed to eject {0}. Another program may be using the drive."
  1138. msgstr "Çıkarma işlemi başarısız oldu {0}. Başka bir program sürücüyü kullanıyor olabilir."
  1139. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  1140. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  1141. msgstr "Malzemenin <filename>%1</filename> dosyasına dışa aktarımı başarısız oldu: <message>%2</message>"
  1142. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1143. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  1144. msgstr "Profilin <filename>{0}</filename> dosyasına aktarımı başarısız oldu: <message>{1}</message>"
  1145. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1146. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  1147. msgstr "Profilin <filename>{0}</filename> dosyasına aktarımı başarısız oldu: Yazıcı eklentisinde rapor edilen hata."
  1148. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1149. msgid "Failed to import profile from <filename>{0}</filename>:"
  1150. msgstr "<filename>{0}</filename> dosyasından profil içe aktarımı başarısız oldu:"
  1151. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1152. msgid "Failed to import profile from <filename>{0}</filename>:"
  1153. msgstr "<filename>{0}</filename> dosyasından profil içe aktarımı başarısız oldu:"
  1154. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1155. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  1156. msgstr "<filename>{0}</filename> dosyasından profil içe aktarımı başarısız oldu: {1}"
  1157. msgctxt "@button"
  1158. msgid "Failed to load packages:"
  1159. msgstr "Paketler yüklenemedi:"
  1160. msgctxt "@text:error"
  1161. msgid "Failed to load the archive of materials to sync it with printers."
  1162. msgstr "Yazıcılarla senkronize etmek için malzeme arşivi oluşturulamadı."
  1163. msgctxt "@message:title"
  1164. msgid "Failed to save material archive"
  1165. msgstr "Malzeme arşivi kaydedilemedi"
  1166. msgctxt "@info:status"
  1167. msgid "Failed writing to specific cloud printer: {0} not in remote clusters."
  1168. msgstr "Belirli bir bulut yazıcısına yazma işlemi başarısız oldu: {0} uzak saklama biriminde değil."
  1169. msgctxt "@label:category menu label"
  1170. msgid "Favorites"
  1171. msgstr "Favoriler"
  1172. msgctxt "@label"
  1173. msgid "Filament Cost"
  1174. msgstr "Filaman masrafı"
  1175. msgctxt "@label"
  1176. msgid "Filament length"
  1177. msgstr "Filaman uzunluğu"
  1178. msgctxt "@label"
  1179. msgid "Filament weight"
  1180. msgstr "Filaman ağırlığı"
  1181. msgctxt "@title:window"
  1182. msgid "File Already Exists"
  1183. msgstr "Dosya Zaten Mevcut"
  1184. msgctxt "@info:title"
  1185. msgid "File Saved"
  1186. msgstr "Dosya Kaydedildi"
  1187. msgctxt "@info:status"
  1188. msgid "File {0} does not contain any valid profile."
  1189. msgstr "Dosya {0} geçerli bir profil içermemekte."
  1190. msgctxt "@label:textbox"
  1191. msgid "Filter..."
  1192. msgstr "Filtrele..."
  1193. msgctxt "@info:title"
  1194. msgid "Finding Location"
  1195. msgstr "Konumu Buluyor"
  1196. msgctxt "@info:status"
  1197. msgid "Finding new location for objects"
  1198. msgstr "Nesneler için yeni konum bulunuyor"
  1199. msgctxt "@action:button"
  1200. msgid "Finish"
  1201. msgstr "Bitir"
  1202. msgctxt "@label:status"
  1203. msgid "Finished"
  1204. msgstr "Tamamlandı"
  1205. msgctxt "@label:status"
  1206. msgid "Finishes %1 at %2"
  1207. msgstr "%1 bitiş tarihi: %2"
  1208. msgctxt "@title:window"
  1209. msgid "Firmware Update"
  1210. msgstr "Aygıt Yazılımı Güncellemesi"
  1211. msgctxt "@label"
  1212. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1213. 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."
  1214. msgctxt "@label"
  1215. msgid "Firmware can not be updated because there is no connection with the printer."
  1216. msgstr "Yazıcı ile bağlantı kurulmadığı için aygıt yazılımı güncellenemiyor."
  1217. msgctxt "@label"
  1218. 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."
  1219. 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."
  1220. msgctxt "@label"
  1221. msgid "Firmware update completed."
  1222. msgstr "Aygıt yazılımı güncellemesi tamamlandı."
  1223. msgctxt "@label"
  1224. msgid "Firmware update failed due to an communication error."
  1225. msgstr "Bir iletişim hatası nedeniyle aygıt yazılımı güncellemesi başarısız oldu."
  1226. msgctxt "@label"
  1227. msgid "Firmware update failed due to an input/output error."
  1228. msgstr "Bir girdi/çıktı hatası nedeniyle aygıt yazılımı güncellemesi başarısız oldu."
  1229. msgctxt "@label"
  1230. msgid "Firmware update failed due to an unknown error."
  1231. msgstr "Bilinmeyen bir hata nedeniyle aygıt yazılımı güncellemesi başarısız oldu."
  1232. msgctxt "@label"
  1233. msgid "Firmware update failed due to missing firmware."
  1234. msgstr "Eksik aygıt yazılımı nedeniyle aygıt yazılımı güncellemesi başarısız oldu."
  1235. msgctxt "@label"
  1236. msgid "Firmware version"
  1237. msgstr "Üretici yazılımı sürümü"
  1238. msgctxt "@label"
  1239. msgid "First available"
  1240. msgstr "İlk kullanılabilen"
  1241. msgctxt "@label:listbox"
  1242. msgid "Flow"
  1243. msgstr "Akış"
  1244. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  1245. msgid "Follow the following steps to load the new material profiles to your printer."
  1246. msgstr "Yeni malzeme profillerini yazıcınıza yüklemek için aşağıdaki adımları izleyin."
  1247. msgctxt "@info"
  1248. msgid "Follow the procedure to add a new printer"
  1249. msgstr "Yeni bir yazıcı eklemek için prosedürü takip edin"
  1250. msgctxt "@text"
  1251. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  1252. msgstr "Birkaç basit adımı izleyerek tüm malzeme profillerinizi yazıcılarınızla senkronize edebileceksiniz."
  1253. msgctxt "@label"
  1254. msgid "Font"
  1255. msgstr "Yazı tipi"
  1256. msgctxt "@label"
  1257. 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."
  1258. 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."
  1259. msgctxt "@info:tooltip"
  1260. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1261. 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."
  1262. msgctxt "@info:tooltip"
  1263. 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."
  1264. 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."
  1265. msgctxt "@option:check"
  1266. msgid "Force layer view compatibility mode (restart required)"
  1267. msgstr "Katman görünümünü uyumluluk moduna zorla (yeniden başlatma gerekir)"
  1268. msgid "FreeCAD trackpad"
  1269. msgstr "FreeCAD dokunmatik fare"
  1270. msgctxt "@action:inmenu menubar:view"
  1271. msgid "Front View"
  1272. msgstr "Önden Görünüm"
  1273. msgctxt "@info:tooltip"
  1274. msgid "Front View"
  1275. msgstr "Önden Görünüm"
  1276. msgctxt "@item:inlistbox"
  1277. msgid "G File"
  1278. msgstr "G Dosyası"
  1279. msgctxt "@info:title"
  1280. msgid "G-code Details"
  1281. msgstr "G-code Ayrıntıları"
  1282. msgctxt "@item:inlistbox"
  1283. msgid "G-code File"
  1284. msgstr "G-code dosyası"
  1285. msgctxt "@label"
  1286. msgid "G-code flavor"
  1287. msgstr "G-code türü"
  1288. msgctxt "@label Description for application component"
  1289. msgid "G-code generator"
  1290. msgstr "G-code oluşturucu"
  1291. msgctxt "@error:not supported"
  1292. msgid "GCodeGzWriter does not support text mode."
  1293. msgstr "GCodeGzWriter yazı modunu desteklemez."
  1294. msgctxt "@error:not supported"
  1295. msgid "GCodeWriter does not support non-text mode."
  1296. msgstr "GCodeWriter metin dışı modu desteklemez."
  1297. msgctxt "@item:inlistbox"
  1298. msgid "GIF Image"
  1299. msgstr "GIF Resmi"
  1300. msgctxt "@label Description for application dependency"
  1301. msgid "GUI framework"
  1302. msgstr "GUI çerçevesi"
  1303. msgctxt "@label Description for application dependency"
  1304. msgid "GUI framework bindings"
  1305. msgstr "GUI çerçeve bağlantıları"
  1306. msgctxt "@label"
  1307. msgid "Gantry Height"
  1308. msgstr "Portal Yüksekliği"
  1309. msgctxt "@title:tab"
  1310. msgid "General"
  1311. msgstr "Genel"
  1312. msgctxt "@label"
  1313. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  1314. msgstr "Modelde çıkıntılı olan kısımlarını desteklemek için yapılar oluşturun. Bu yapılar olmadan, bu parçalar baskı sırasında çökecektir."
  1315. msgctxt "@label Description for development tool"
  1316. msgid "Generating Windows installers"
  1317. msgstr "Windows yükleyicileri oluşturma"
  1318. msgctxt "@label:category menu label"
  1319. msgid "Generic"
  1320. msgstr "Genel"
  1321. msgctxt "@option:check"
  1322. msgid "Get notifications for plugin updates"
  1323. msgstr "Eklenti güncellemeleri için bildirim alın"
  1324. msgctxt "@action"
  1325. msgid "Get started"
  1326. msgstr "Başlayın"
  1327. msgctxt "@label"
  1328. msgid "Global"
  1329. msgstr "Küresel"
  1330. msgctxt "@title:tab"
  1331. msgid "Global Settings"
  1332. msgstr "Küresel Ayarlar"
  1333. msgctxt "@label Description for application component"
  1334. msgid "Graphical user interface"
  1335. msgstr "Grafik kullanıcı arayüzü"
  1336. msgctxt "@label"
  1337. msgid "Grid Placement"
  1338. msgstr "Izgara Yerleşimi"
  1339. msgctxt "@label"
  1340. msgid "Group #{group_nr}"
  1341. msgstr "Grup #{group_nr}"
  1342. msgctxt "@tooltip of pre-heat"
  1343. 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."
  1344. 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."
  1345. msgctxt "@tooltip of pre-heat"
  1346. 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."
  1347. 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."
  1348. msgctxt "@label"
  1349. msgid "Heated Build Plate (official kit or self-built)"
  1350. msgstr "Isıtılmış Yapı Levhası (orijinal donanım veya şahsen yapılan)"
  1351. msgctxt "@label"
  1352. msgid "Heated bed"
  1353. msgstr "Isıtılmış yatak"
  1354. msgctxt "@label"
  1355. msgid "Heated build volume"
  1356. msgstr "Isıtılmış yapı hacmi"
  1357. msgctxt "@action:label"
  1358. msgid "Height (mm)"
  1359. msgstr "Yükseklik (mm)"
  1360. msgctxt "@label"
  1361. msgid "Helpers"
  1362. msgstr "Yardımcılar"
  1363. msgctxt "@label"
  1364. msgid "Hide all connected printers"
  1365. msgstr "Bağlı tüm yazıcıları gizle"
  1366. msgctxt "@action:button"
  1367. msgid "Hide settings"
  1368. msgstr "Ayarları gizle"
  1369. msgctxt "@action:menu"
  1370. msgid "Hide this setting"
  1371. msgstr "Bu ayarı gizle"
  1372. msgctxt "@info:tooltip"
  1373. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  1374. 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."
  1375. msgctxt "@info:tooltip"
  1376. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  1377. 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."
  1378. msgctxt "@button"
  1379. msgid "How to load new material profiles to my printer"
  1380. msgstr "Yazıcıma yeni malzeme profillerini nasıl yüklerim"
  1381. msgctxt "@action:button"
  1382. msgid "How to update"
  1383. msgstr "Nasıl güncellenir"
  1384. msgctxt "@text:window"
  1385. msgid "I don't want to send anonymous data"
  1386. msgstr "Anonim veri göndermek istemiyorum"
  1387. msgctxt "@label:status"
  1388. msgid "Idle"
  1389. msgstr "Boşta"
  1390. msgctxt "@label"
  1391. msgid "If you are trying to add a new UltiMaker printer to Cura"
  1392. msgstr "Cura’ya yeni bir UltiMaker yazıcı eklemeye çalışıyorsanız"
  1393. msgctxt "@label"
  1394. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1395. msgstr "Yazıcınız listede yoksa <a href='%1'>ağ yazdırma sorun giderme kılavuzunu</a> okuyun"
  1396. msgctxt "@action:button"
  1397. msgid "Import"
  1398. msgstr "İçe Aktar"
  1399. msgctxt "@title:window"
  1400. msgid "Import Material"
  1401. msgstr "Malzemeyi İçe Aktar"
  1402. msgctxt "@title:window"
  1403. msgid "Import Profile"
  1404. msgstr "Profili İçe Aktar"
  1405. msgctxt "@action:button"
  1406. msgid "Import all as models"
  1407. msgstr "Tümünü model olarak içe aktar"
  1408. msgctxt "@action:button"
  1409. msgid "Import models"
  1410. msgstr "Modelleri içe aktar"
  1411. msgctxt "@label:MonitorStatus"
  1412. msgid "In maintenance. Please check the printer"
  1413. msgstr "Bakımda. Lütfen yazıcıyı kontrol edin"
  1414. msgctxt "@info"
  1415. msgid "In order to monitor your print from Cura, please connect the printer."
  1416. msgstr "Baskınızı Cura üzerinden izlemek için lütfen yazıcıyı bağlayın."
  1417. msgctxt "@label"
  1418. msgid "In order to start using Cura you will need to configure a printer."
  1419. msgstr "Cura’yı kullanmaya başlamak için bir yazıcı yapılandırmanız gerekir."
  1420. msgctxt "@button"
  1421. msgid "In order to use the package you will need to restart Cura"
  1422. msgstr "Paketi kullanmak için Cura'yı yeniden başlatmanız gerekecek"
  1423. msgctxt "@option:radio"
  1424. msgid "Include UltiMaker account name"
  1425. msgstr "UltiMaker hesap adını ekle"
  1426. msgctxt "@label"
  1427. msgid "Infill"
  1428. msgstr "Dolgu"
  1429. msgctxt "@tooltip"
  1430. msgid "Infill"
  1431. msgstr "Dolgu"
  1432. msgctxt "infill_sparse_density description"
  1433. msgid "Infill Density"
  1434. msgstr "Dolgu Yoğunluğu"
  1435. msgctxt "@action:label"
  1436. msgid "Infill Pattern"
  1437. msgstr "Dolgu Şekli"
  1438. msgctxt "@item:inlistbox"
  1439. msgid "Infill mesh only"
  1440. msgstr "Yalnızca dolgu kafes"
  1441. msgctxt "@label"
  1442. msgid "Infill overlapping with this model is modified."
  1443. msgstr "Bu model ile çakışan dolgu değiştirilir."
  1444. msgctxt "@info:title"
  1445. msgid "Information"
  1446. msgstr "Bilgi"
  1447. msgctxt "@title"
  1448. msgid "Information"
  1449. msgstr "Bilgi"
  1450. msgctxt "@info:progress"
  1451. msgid "Initializing Active Machine..."
  1452. msgstr "Etkin Makine Başlatılıyor..."
  1453. msgctxt "@info:progress"
  1454. msgid "Initializing build volume..."
  1455. msgstr "Yapı hacmi başlatılıyor..."
  1456. msgctxt "@info:progress"
  1457. msgid "Initializing engine..."
  1458. msgstr "Motor başlatılıyor..."
  1459. msgctxt "@info:progress"
  1460. msgid "Initializing machine manager..."
  1461. msgstr "Makine yöneticisi başlatılıyor..."
  1462. msgctxt "@label"
  1463. msgid "Inner Wall"
  1464. msgstr "İç Duvar"
  1465. msgctxt "@tooltip"
  1466. msgid "Inner Walls"
  1467. msgstr "İç Duvarlar"
  1468. msgctxt "@text"
  1469. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  1470. msgstr "USB çubuğunu yazıcınıza takın ve yeni malzeme profillerini yükleme işlemini başlatın."
  1471. msgctxt "@button"
  1472. msgid "Install"
  1473. msgstr "Yükle"
  1474. msgctxt "@header"
  1475. msgid "Install Materials"
  1476. msgstr "Malzeme Yükle"
  1477. msgctxt "@window:title"
  1478. msgid "Install Package"
  1479. msgstr "Paketi Kur"
  1480. msgctxt "@action:button"
  1481. msgid "Install Packages"
  1482. msgstr "Paketleri Yükle"
  1483. msgctxt "@header"
  1484. msgid "Install Packages"
  1485. msgstr "Paketleri Yükle"
  1486. msgctxt "@header"
  1487. msgid "Install Plugins"
  1488. msgstr "Eklentileri Yükle"
  1489. msgctxt "@action:button"
  1490. msgid "Install missing packages"
  1491. msgstr "Eksik paketleri yükle"
  1492. msgctxt "@title"
  1493. msgid "Install missing packages"
  1494. msgstr "Eksik paketleri yükleyin"
  1495. msgctxt "@label"
  1496. msgid "Install missing packages from project file."
  1497. msgstr "Eksik paketleri proje dosyasından yükleyin."
  1498. msgctxt "@button"
  1499. msgid "Install pending updates"
  1500. msgstr "Bekleyen güncellemeleri yükle"
  1501. msgctxt "@label"
  1502. msgid "Installed Materials"
  1503. msgstr "Yüklü malzemeler"
  1504. msgctxt "@label"
  1505. msgid "Installed Plugins"
  1506. msgstr "Yüklü eklentiler"
  1507. msgctxt "@button"
  1508. msgid "Installing..."
  1509. msgstr "Yükleniyor..."
  1510. msgctxt "@action:label"
  1511. msgid "Intent"
  1512. msgstr "Amaç"
  1513. msgctxt "@label"
  1514. msgid "Interface"
  1515. msgstr "Arayüz"
  1516. msgctxt "@label Description for application component"
  1517. msgid "Interprocess communication library"
  1518. msgstr "İşlemler arası iletişim kitaplığı"
  1519. msgctxt "@title:window"
  1520. msgid "Invalid IP address"
  1521. msgstr "Geçersiz IP adresi"
  1522. msgctxt "@info:status"
  1523. msgid "Invalid file URL:"
  1524. msgstr "Geçersiz dosya URL’si:"
  1525. msgctxt "@action:button"
  1526. msgid "Invert the direction of camera zoom."
  1527. msgstr "Kamera yakınlaştırma yönünü ters çevir."
  1528. msgctxt "@label"
  1529. msgid "Is printed as support."
  1530. msgstr "Destek olarak basıldı."
  1531. msgctxt "@text"
  1532. 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."
  1533. 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."
  1534. msgctxt "@item:inlistbox"
  1535. msgid "JPEG Image"
  1536. msgstr "JPEG Resmi"
  1537. msgctxt "@item:inlistbox"
  1538. msgid "JPG Image"
  1539. msgstr "JPG Resmi"
  1540. msgctxt "@label Description for application dependency"
  1541. msgid "JSON parser"
  1542. msgstr "JSON ayrıştırıcı"
  1543. msgctxt "@label"
  1544. msgid "Job Name"
  1545. msgstr "İşin Adı"
  1546. msgctxt "@label"
  1547. msgid "Jog Distance"
  1548. msgstr "Jog Mesafesi"
  1549. msgctxt "@label"
  1550. msgid "Jog Position"
  1551. msgstr "Jog Konumu"
  1552. msgctxt "@option:discardOrKeep"
  1553. msgid "Keep and never ask again"
  1554. msgstr "Kaydet ve bir daha sorma"
  1555. msgctxt "@action:button"
  1556. msgid "Keep changes"
  1557. msgstr "Değişiklikleri tut"
  1558. msgctxt "@action:button"
  1559. msgid "Keep printer configurations"
  1560. msgstr "Yazıcı yapılandırmalarını koru"
  1561. msgctxt "@action:menu"
  1562. msgid "Keep this setting visible"
  1563. msgstr "Bu ayarı görünür yap"
  1564. msgctxt "@label The argument is a timestamp"
  1565. msgid "Last update: %1"
  1566. msgstr "Son güncelleme: %1"
  1567. msgctxt "@label:listbox"
  1568. msgid "Layer Thickness"
  1569. msgstr "Katman kalınlığı"
  1570. msgctxt "@item:inlistbox"
  1571. msgid "Layer view"
  1572. msgstr "Katman görünümü"
  1573. msgctxt "@button:label"
  1574. msgid "Learn More"
  1575. msgstr "Daha Fazla Bilgi Edinin"
  1576. msgctxt "@button"
  1577. msgid "Learn how to connect your printer to Digital Factory"
  1578. msgstr "Yazıcınızı Digital Factory'ye nasıl bağlayacağınızı öğrenin"
  1579. msgctxt "@tooltip:button"
  1580. msgid "Learn how to get started with UltiMaker Cura."
  1581. msgstr "UltiMaker Cura ile işe nasıl başlayacağınızı öğrenin."
  1582. msgctxt "@action"
  1583. msgid "Learn more"
  1584. msgstr "Daha fazla bilgi edinin"
  1585. msgctxt "@action:button"
  1586. msgid "Learn more"
  1587. msgstr "Daha fazla bilgi edinin"
  1588. msgctxt "@button"
  1589. msgid "Learn more"
  1590. msgstr "Daha fazla bilgi edinin"
  1591. msgctxt "@button:label"
  1592. msgid "Learn more"
  1593. msgstr "Daha fazla bilgi edinin"
  1594. msgctxt "@action:button"
  1595. msgid "Learn more about Cura print profiles"
  1596. msgstr "Cura baskı profilleri hakkında daha fazla bilgi edinin"
  1597. msgctxt "@button"
  1598. msgid "Learn more about adding printers to Cura"
  1599. msgstr "Cura’ya yazıcı ekleme hakkında daha fazla bilgi edinin"
  1600. msgctxt "@label"
  1601. msgid "Learn more about project packages."
  1602. msgstr "Proje paketleri hakkında daha fazla bilgi edinin."
  1603. msgctxt "@action:inmenu menubar:view"
  1604. msgid "Left Side View"
  1605. msgstr "Sol Taraftan Görünüm"
  1606. msgctxt "@info:tooltip"
  1607. msgid "Left View"
  1608. msgstr "Sol görünüm"
  1609. msgctxt "@tooltip:button"
  1610. msgid "Let developers know that something is going wrong."
  1611. msgstr "Geliştiricileri sorunlarla ilgili bilgilendirin."
  1612. msgctxt "@action"
  1613. msgid "Level build plate"
  1614. msgstr "Yapı levhasını dengele"
  1615. msgctxt "@item:inlistbox"
  1616. msgid "Lighter is higher"
  1617. msgstr "Daha açık olan daha yüksek"
  1618. msgctxt "@label:listbox"
  1619. msgid "Line Type"
  1620. msgstr "Çizgi Tipi"
  1621. msgctxt "@label:listbox"
  1622. msgid "Line Width"
  1623. msgstr "Hat Genişliği"
  1624. msgctxt "@item:inlistbox"
  1625. msgid "Linear"
  1626. msgstr "Doğrusal"
  1627. msgctxt "@label Description for development tool"
  1628. msgid "Linux cross-distribution application deployment"
  1629. msgstr "Linux çapraz-dağıtım uygulama dağıtımı"
  1630. msgctxt "@label"
  1631. msgid "Load %3 as material %1 (This cannot be overridden)."
  1632. msgstr "%3 malzemesini %1 malzemesi olarak yükleyin (Bu işlem geçersiz kılınamaz)."
  1633. msgctxt "@button"
  1634. msgid "Load more"
  1635. msgstr "Daha fazla yükle"
  1636. msgctxt "@button"
  1637. msgid "Loading"
  1638. msgstr "Yükleniyor"
  1639. msgctxt "@action:warning"
  1640. msgid "Loading a project will clear all models on the build plate."
  1641. msgstr "Bir projenin yüklenmesi derleme levhasındaki tüm modelleri siler."
  1642. msgctxt "@label"
  1643. msgid "Loading available configurations from the printer..."
  1644. msgstr "Kullanılabilir yapılandırmalar yazıcıdan yükleniyor..."
  1645. msgctxt "@info:progress"
  1646. msgid "Loading interface..."
  1647. msgstr "Arayüz yükleniyor..."
  1648. msgctxt "@info:progress"
  1649. msgid "Loading machines..."
  1650. msgstr "Makineler yükleniyor..."
  1651. msgctxt "@label:status"
  1652. msgid "Loading..."
  1653. msgstr "Yükleniyor..."
  1654. msgctxt "@title"
  1655. msgid "Loading..."
  1656. msgstr "Yükleniyor..."
  1657. msgctxt "@label:category menu label"
  1658. msgid "Local printers"
  1659. msgstr "Yerel yazıcılar"
  1660. msgctxt "@info:title"
  1661. msgid "Log-in failed"
  1662. msgstr "Giriş başarısız"
  1663. msgctxt "@info:title"
  1664. msgid "Login failed"
  1665. msgstr "Giriş başarısız"
  1666. msgctxt "@title:groupbox"
  1667. msgid "Logs"
  1668. msgstr "Günlükler"
  1669. msgctxt "@label:MonitorStatus"
  1670. msgid "Lost connection with the printer"
  1671. msgstr "Yazıcı bağlantısı koptu"
  1672. msgctxt "@action"
  1673. msgid "Machine Settings"
  1674. msgstr "Makine Ayarları"
  1675. msgctxt "@backuplist:label"
  1676. msgid "Machines"
  1677. msgstr "Makineler"
  1678. msgctxt "@text"
  1679. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  1680. msgstr "Tüm yazıcılarınızın AÇIK ve Digitial Factory'ye bağlı olduğundan emin olun."
  1681. msgctxt "@info:generic"
  1682. 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."
  1683. 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."
  1684. msgctxt "@item:inlistbox"
  1685. msgid "Makerbot Printfile"
  1686. msgstr "Makerbot Baskı Dosyası"
  1687. msgctxt "@error"
  1688. msgid "MakerbotWriter could not save to the designated path."
  1689. msgstr "MakerbotWriter belirlenen yola kaydedemedi."
  1690. msgctxt "@error:not supported"
  1691. msgid "MakerbotWriter does not support text mode."
  1692. msgstr "MakerbotWriter metin modunu desteklemiyor."
  1693. msgctxt "@action:inmenu"
  1694. msgid "Manage Materials..."
  1695. msgstr "Malzemeleri Yönet..."
  1696. msgctxt "@action:inmenu menubar:printer"
  1697. msgid "Manage Pr&inters..."
  1698. msgstr "Yazıcıları Yönet..."
  1699. msgctxt "@action:inmenu menubar:profile"
  1700. msgid "Manage Profiles..."
  1701. msgstr "Profilleri Yönet..."
  1702. msgctxt "@action:inmenu"
  1703. msgid "Manage Setting Visibility..."
  1704. msgstr "Ayar Görünürlüğünü Yönet..."
  1705. msgctxt "@item:inmenu"
  1706. msgid "Manage backups"
  1707. msgstr "Yedeklemeleri yönet"
  1708. msgctxt "@label link to connect manager"
  1709. msgid "Manage in browser"
  1710. msgstr "Tarayıcıda yönet"
  1711. msgctxt "@header"
  1712. msgid "Manage packages"
  1713. msgstr "Paketleri yönet"
  1714. msgctxt "@info:tooltip"
  1715. msgid "Manage packages"
  1716. msgstr "Paketleri yönet"
  1717. msgctxt "@action"
  1718. msgid "Manage print jobs"
  1719. msgstr "Baskı işlerini yönetin"
  1720. msgctxt "@label link to Connect and Cloud interfaces"
  1721. msgid "Manage printer"
  1722. msgstr "Yazıcıyı yönet"
  1723. msgctxt "@button"
  1724. msgid "Manage printers"
  1725. msgstr "Yazıcıları yönet"
  1726. msgctxt "@text"
  1727. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  1728. 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."
  1729. msgctxt "@label"
  1730. msgid "Manufacturer"
  1731. msgstr "Üretici"
  1732. msgctxt "@action:button"
  1733. msgid "Marketplace"
  1734. msgstr "Mağaza"
  1735. msgctxt "@label"
  1736. msgid "Marketplace"
  1737. msgstr "Mağaza"
  1738. msgctxt "@action:label"
  1739. msgid "Material"
  1740. msgstr "Malzeme"
  1741. msgctxt "@label"
  1742. msgid "Material"
  1743. msgstr "Malzeme"
  1744. msgctxt "@label:category menu label"
  1745. msgid "Material"
  1746. msgstr "Malzeme"
  1747. msgctxt "@label:listbox"
  1748. msgid "Material Color"
  1749. msgstr "Malzeme Rengi"
  1750. msgctxt "@label"
  1751. msgid "Material Type"
  1752. msgstr "Malzeme Türü"
  1753. msgctxt "@title"
  1754. msgid "Material color picker"
  1755. msgstr "Malzeme rengi seçici"
  1756. msgctxt "@label"
  1757. msgid "Material estimation"
  1758. msgstr "Malzeme tahmini"
  1759. msgctxt "@title:header"
  1760. msgid "Material profiles successfully synced with the following printers:"
  1761. msgstr "Malzeme profilleri aşağıdaki yazıcılarla başarıyla senkronize edildi:"
  1762. msgctxt "@action:label"
  1763. msgid "Material settings"
  1764. msgstr "Malzeme ayarları"
  1765. msgctxt "@backuplist:label"
  1766. msgid "Materials"
  1767. msgstr "Malzemeler"
  1768. msgctxt "@button"
  1769. msgid "Materials"
  1770. msgstr "Malzemeler"
  1771. msgctxt "@title:tab"
  1772. msgid "Materials"
  1773. msgstr "Malzemeler"
  1774. msgctxt "@label"
  1775. msgid "Materials compatible with active printer:"
  1776. msgstr "Etkin yazıcı ile uyumlu malzemeler:"
  1777. msgctxt "@label"
  1778. msgid "Mesh Type"
  1779. msgstr "Ağ Tipi"
  1780. msgctxt "@action:label"
  1781. msgid "Mode"
  1782. msgstr "Mod"
  1783. msgctxt "@info:title"
  1784. msgid "Model Errors"
  1785. msgstr "Model hataları"
  1786. msgctxt "@item:inmenu"
  1787. msgid "Modify G-Code"
  1788. msgstr "G-Code Öğesini Değiştir"
  1789. msgctxt "@label"
  1790. msgid "Modify settings for overlaps"
  1791. msgstr "Çakışma ayarlarını değiştir"
  1792. msgctxt "@item:inmenu"
  1793. msgid "Monitor"
  1794. msgstr "Görüntüle"
  1795. msgctxt "@action:button"
  1796. msgid "Monitor print"
  1797. msgstr "Baskı izleme"
  1798. msgctxt "@tooltip:button"
  1799. msgid "Monitor print jobs and reprint from your print history."
  1800. msgstr "Baskı işlerini takip edin ve baskı geçmişinizden yeniden baskı işlemi yapın."
  1801. msgctxt "@tooltip:button"
  1802. msgid "Monitor printers in Ultimaker Digital Factory."
  1803. msgstr "Ultimaker Digital Factory'de yazıcıları izleyin."
  1804. msgctxt "@info"
  1805. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  1806. msgstr "Ultimaker Digital Factory’yi kullanarak yazıcılarınızı her yerden takip edin"
  1807. msgctxt "@title:window"
  1808. msgid "More information on anonymous data collection"
  1809. msgstr "Anonim veri toplama hakkında daha fazla bilgi"
  1810. msgctxt "@window:title"
  1811. msgid "Move print job to top"
  1812. msgstr "Yazdırma işini en üste taşı"
  1813. msgctxt "@action:button"
  1814. msgid "Move to Next Position"
  1815. msgstr "Sonraki Konuma Taşı"
  1816. msgctxt "@label"
  1817. msgid "Move to top"
  1818. msgstr "En üste taşı"
  1819. msgctxt "@info:tooltip"
  1820. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  1821. msgstr "Bir model seçildiğinde bu model görüntünün ortasında kalacak şekilde kamera hareket eder"
  1822. msgctxt "@action:inmenu menubar:edit"
  1823. msgid "Multiply Selected"
  1824. msgstr "Seçileni Çoğalt"
  1825. msgctxt "@title:window"
  1826. msgid "Multiply Selected Model"
  1827. msgid_plural "Multiply Selected Models"
  1828. msgstr[0] "Seçili Modeli Çoğalt"
  1829. msgstr[1] "Seçili Modelleri Çoğalt"
  1830. msgctxt "@info"
  1831. msgid "Multiply selected item and place them in a grid of build plate."
  1832. msgstr "Seçili öğeyi çoğaltıp yapı levhası ızgarasına yerleştirin."
  1833. msgctxt "@info:status"
  1834. msgid "Multiplying and placing objects"
  1835. msgstr "Nesneler çoğaltılıyor ve yerleştiriliyor"
  1836. msgctxt "@title"
  1837. msgid "My Backups"
  1838. msgstr "Yedeklemelerim"
  1839. msgctxt "@label:button"
  1840. msgid "My printers"
  1841. msgstr "Yazıcılarım"
  1842. msgctxt "@action:label"
  1843. msgid "Name"
  1844. msgstr "İsim"
  1845. msgctxt "@label:category menu label"
  1846. msgid "Network enabled printers"
  1847. msgstr "Ağ etkin yazıcılar"
  1848. msgctxt "@info:title"
  1849. msgid "Network error"
  1850. msgstr "Ağ hatası"
  1851. msgctxt "@info:title The %s gets replaced with the printer name."
  1852. msgid "New %s stable firmware available"
  1853. msgstr "Yeni %s istikrarlı donanım yazılımı yayınlandı"
  1854. msgctxt "@textfield:placeholder"
  1855. msgid "New Custom Profile"
  1856. msgstr "Yeni Özel Profil"
  1857. msgctxt "@label"
  1858. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  1859. msgstr "Yeni UltiMaker yazıcılar Digital Factory’ye bağlanabilir ve uzaktan izlenebilir."
  1860. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1861. 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}."
  1862. 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."
  1863. msgctxt "@action:button"
  1864. msgid "New materials installed"
  1865. msgstr "Yeni malzemeler yüklendi"
  1866. msgctxt "info:status"
  1867. msgid "New printer detected from your Ultimaker account"
  1868. msgid_plural "New printers detected from your Ultimaker account"
  1869. msgstr[0] "Ultimaker hesabınızdan yeni yazıcı tespit edildi"
  1870. msgstr[1] "Ultimaker hesabınızdan yeni yazıcılar tespit edildi"
  1871. msgctxt "@title:window"
  1872. msgid "New project"
  1873. msgstr "Yeni proje"
  1874. msgctxt "@action:button"
  1875. msgid "Next"
  1876. msgstr "Sonraki"
  1877. msgctxt "@button"
  1878. msgid "Next"
  1879. msgstr "Sonraki"
  1880. msgctxt "@info:title"
  1881. msgid "Nightly build"
  1882. msgstr "Gecelik sürüm"
  1883. msgctxt "@info"
  1884. msgid "No"
  1885. msgstr "Hayır"
  1886. msgctxt "@info"
  1887. msgid "No compatibility information"
  1888. msgstr "Uyumluluk bilgisi yok"
  1889. msgctxt "@description"
  1890. msgid "No compatible printers, that are currently online, were found."
  1891. msgstr "Şu anda çevrimiçi olan hiçbir uyumlu yazıcı bulunamadı."
  1892. msgctxt "@label"
  1893. msgid "No cost estimation available"
  1894. msgstr "Maliyet tahmini yok"
  1895. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1896. msgid "No custom profile to import in file <filename>{0}</filename>"
  1897. msgstr "<filename>{0}</filename> dosyasında içe aktarılabilecek özel profil yok"
  1898. msgctxt "@label"
  1899. msgid "No items to select from"
  1900. msgstr "Seçilecek öğe yok"
  1901. msgctxt "@info:title"
  1902. msgid "No layers to show"
  1903. msgstr "Görüntülenecek katman yok"
  1904. msgctxt "@message"
  1905. msgid "No more results to load"
  1906. msgstr "Yüklenecek başka sonuç yok"
  1907. msgctxt "@error:zip"
  1908. msgid "No permission to write the workspace here."
  1909. msgstr "Burada çalışma alanını yazmak için izin yok."
  1910. msgctxt "@title:header"
  1911. msgid "No printers found"
  1912. msgstr "Yazıcı bulunamadı"
  1913. msgctxt "@label"
  1914. msgid "No printers found in your account?"
  1915. msgstr "Hesabınızda hiç yazıcı bulunamıyor mu?"
  1916. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  1917. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  1918. msgstr "Seçilen malzeme/%1 yapılandırması için kullanılabilecek profil yok. Lütfen yapılandırmanızı değiştirin."
  1919. msgctxt "@message"
  1920. msgid "No results found with current filter"
  1921. msgstr "Mevcut filtreyle başka sonuç bulunmadı"
  1922. msgctxt "@label"
  1923. msgid "No specific value has been set"
  1924. msgstr "Belirli bir değer ayarlanmadı"
  1925. msgctxt "@label"
  1926. msgid "No time estimation available"
  1927. msgstr "Süre tahmini yok"
  1928. msgctxt "@button"
  1929. msgid "Non UltiMaker printer"
  1930. msgstr "UltiMaker olmayan yazıcı"
  1931. msgctxt "@info No materials"
  1932. msgid "None"
  1933. msgstr "Hiçbiri"
  1934. msgctxt "@label"
  1935. msgid "Normal model"
  1936. msgstr "Normal model"
  1937. msgctxt "@info:title"
  1938. msgid "Not a group host"
  1939. msgstr "Grup ana makinesi değil"
  1940. msgctxt "@label:MonitorStatus"
  1941. msgid "Not connected to a printer"
  1942. msgstr "Yazıcıya bağlı değil"
  1943. msgctxt "@action:label"
  1944. msgid "Not in profile"
  1945. msgstr "Profilde değil"
  1946. msgctxt "@menuitem"
  1947. msgid "Not overridden"
  1948. msgstr "Geçersiz kılınmadı"
  1949. msgctxt "@info:not supported profile"
  1950. msgid "Not supported"
  1951. msgstr "Desteklenmiyor"
  1952. msgctxt "@label"
  1953. msgid "Not yet initialized"
  1954. msgstr "Henüz başlatılmadı"
  1955. msgctxt "@info:status"
  1956. msgid "Nothing is shown because you need to slice first."
  1957. msgstr "Önce dilimleme yapmanız gerektiğinden hiçbir şey gösterilmez."
  1958. msgctxt "@label"
  1959. msgid "Nozzle"
  1960. msgstr "Nozül"
  1961. msgctxt "@title:label"
  1962. msgid "Nozzle Settings"
  1963. msgstr "Nozül Ayarları"
  1964. msgctxt "@label"
  1965. msgid "Nozzle offset X"
  1966. msgstr "Nozül X ofseti"
  1967. msgctxt "@label"
  1968. msgid "Nozzle offset Y"
  1969. msgstr "Nozül Y ofseti"
  1970. msgctxt "@label"
  1971. msgid "Nozzle size"
  1972. msgstr "Nozzle boyutu"
  1973. msgctxt "@label"
  1974. msgid "Number of Copies"
  1975. msgstr "Kopya Sayısı"
  1976. msgctxt "@label"
  1977. msgid "Number of Extruders"
  1978. msgstr "Ekstrüder Sayısı"
  1979. msgctxt "@action:button"
  1980. msgid "OK"
  1981. msgstr "Tamam"
  1982. msgctxt "@label"
  1983. msgid "OS language"
  1984. msgstr "İşletim sistemi dili"
  1985. msgctxt "@label"
  1986. msgid "Object list"
  1987. msgstr "Nesne listesi"
  1988. msgctxt "@label:Should be short"
  1989. msgid "Off"
  1990. msgstr "Kapalı"
  1991. msgctxt "@label:Should be short"
  1992. msgid "On"
  1993. msgstr "Açık"
  1994. msgctxt "@label"
  1995. msgid "Only Show Top Layers"
  1996. msgstr "Yalnızca Üst Katmanları Göster"
  1997. msgctxt "@info:status"
  1998. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  1999. msgstr "Aynı anda yalnızca bir G-code dosyası yüklenebilir. {0} içe aktarma atlandı"
  2000. msgctxt "@message"
  2001. msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker."
  2002. msgstr "Hata! Dilimleme işleminiz sırasında beklenmeyen bir hatayla karşılaştık. Tercihlerinizde veri paylaşımını devre dışı bırakmadıysanız, analiz için çökme kayıtlarını otomatik olarak aldığımıza emin olabilirsiniz. Bize daha fazla yardımcı olmak için proje ayrıntılarınızı sorun takipçimizde paylaşmayı düşünebilirsiniz."
  2003. msgctxt "@action:button"
  2004. msgid "Open"
  2005. msgstr "Aç"
  2006. msgctxt "@title:menu menubar:file"
  2007. msgid "Open &Recent"
  2008. msgstr "En Son Öğeyi Aç"
  2009. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2010. msgid "Open Compressed Triangle Mesh"
  2011. msgstr "Open Compressed Triangle Mesh"
  2012. msgctxt "@title:window"
  2013. msgid "Open File(s)"
  2014. msgstr "Dosya Aç"
  2015. msgctxt "@title:menu menubar:file"
  2016. msgid "Open File(s)..."
  2017. msgstr "Dosya Aç..."
  2018. msgctxt "@title:window"
  2019. msgid "Open Project"
  2020. msgstr "Proje Aç"
  2021. msgctxt "@info:title"
  2022. msgid "Open Project File"
  2023. msgstr "Proje Dosyası Aç"
  2024. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  2025. msgid "Open Universal Cura Project (UCP)"
  2026. msgstr "Universal Cura Project (UCP)'i aç"
  2027. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  2028. msgid "Open Universal Cura Project (UCP) file"
  2029. msgstr "Universal Cura Project (UCP) dosyasını aç"
  2030. msgctxt "@action:label"
  2031. msgid "Open With"
  2032. msgstr "Birlikte Aç"
  2033. msgctxt "@action:button"
  2034. msgid "Open as UCP"
  2035. msgstr "UCP olarak aç"
  2036. msgctxt "@action:button"
  2037. msgid "Open as project"
  2038. msgstr "Proje olarak aç"
  2039. msgctxt "@title:window"
  2040. msgid "Open file(s)"
  2041. msgstr "Dosya aç"
  2042. msgctxt "@action:button"
  2043. msgid "Open project anyway"
  2044. msgstr "Projeyi yine de aç"
  2045. msgctxt "@title:window"
  2046. msgid "Open project file"
  2047. msgstr "Proje dosyası aç"
  2048. msgctxt "@label OpenGL version"
  2049. msgid "OpenGL"
  2050. msgstr "OpenGL"
  2051. msgctxt "@label"
  2052. msgid "Opening and saving files"
  2053. msgstr "Dosyaların açılması ve kaydedilmesi"
  2054. msgctxt "@header"
  2055. msgid "Optimized for Air Manager"
  2056. msgstr "Air Manager için en uygun"
  2057. msgctxt "@label"
  2058. msgid "Origin at center"
  2059. msgstr "Merkez nokta"
  2060. msgid "Orthographic"
  2061. msgstr "Ortografik"
  2062. msgctxt "@action:inmenu menubar:view"
  2063. msgid "Orthographic"
  2064. msgstr "Ortografik"
  2065. msgctxt "@tooltip"
  2066. msgid "Other"
  2067. msgstr "Diğer"
  2068. msgctxt "@label"
  2069. msgid "Other models overlapping with this model are modified."
  2070. msgstr "Bu model ile çakışan diğer modeller değiştirilir."
  2071. msgctxt "@label"
  2072. msgid "Other printers"
  2073. msgstr "Diğer yazıcılar"
  2074. msgctxt "@tooltip"
  2075. msgid "Outer Wall"
  2076. msgstr "Dış Duvar"
  2077. msgctxt "@label"
  2078. msgid "Overlaps with this model are not supported."
  2079. msgstr "Bu model ile çakışmalar desteklenmez."
  2080. msgctxt "@action:button"
  2081. msgid "Override"
  2082. msgstr "Geçersiz kıl"
  2083. msgctxt "@label"
  2084. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2085. 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."
  2086. msgctxt "@label %1 is the number of settings it overrides."
  2087. msgid "Overrides %1 setting."
  2088. msgid_plural "Overrides %1 settings."
  2089. msgstr[0] "%1 ayarı geçersiz kılar."
  2090. msgstr[1] "%1 ayarı geçersiz kılar."
  2091. msgctxt "@title:menu menubar:toplevel"
  2092. msgid "P&references"
  2093. msgstr "Tercihler"
  2094. msgctxt "@item:inlistbox"
  2095. msgid "PNG Image"
  2096. msgstr "PNG Resmi"
  2097. msgctxt "@header"
  2098. msgid "Package details"
  2099. msgstr "Paket ayrıntıları"
  2100. msgctxt "@label Description for development tool"
  2101. msgid "Packaging Python-applications"
  2102. msgstr "Python uygulamalarını paketleme"
  2103. msgctxt "@info:status"
  2104. msgid "Parsing G-code"
  2105. msgstr "G-code ayrıştırma"
  2106. msgctxt "@action:inmenu menubar:edit"
  2107. msgid "Paste from clipboard"
  2108. msgstr "Panodan yapıştır"
  2109. msgctxt "@label"
  2110. msgid "Pause"
  2111. msgstr "Duraklat"
  2112. msgctxt "@label:MonitorStatus"
  2113. msgid "Paused"
  2114. msgstr "Duraklatıldı"
  2115. msgctxt "@label:status"
  2116. msgid "Paused"
  2117. msgstr "Duraklatıldı"
  2118. msgctxt "@label"
  2119. msgid "Pausing..."
  2120. msgstr "Duraklatılıyor..."
  2121. msgctxt "@label:status"
  2122. msgid "Pausing..."
  2123. msgstr "Duraklatılıyor..."
  2124. msgctxt "@label"
  2125. msgid "Per Model Settings"
  2126. msgstr "Model Başına Ayarlar"
  2127. msgid "Perspective"
  2128. msgstr "Perspektif"
  2129. msgctxt "@action:inmenu menubar:view"
  2130. msgid "Perspective"
  2131. msgstr "Perspektif"
  2132. msgctxt "@action:label"
  2133. msgid "Placement"
  2134. msgstr "Yerleştirme"
  2135. msgctxt "@info:title"
  2136. msgid "Placing Object"
  2137. msgstr "Nesne Yerleştiriliyor"
  2138. msgctxt "@info:title"
  2139. msgid "Placing Objects"
  2140. msgstr "Nesneler Yerleştiriliyor"
  2141. msgctxt "@label Type of platform"
  2142. msgid "Platform"
  2143. msgstr "Platform"
  2144. msgctxt "@info"
  2145. msgid "Please connect your printer to the network."
  2146. msgstr "Lütfen yazıcınızı ağa bağlayın."
  2147. msgctxt "@text"
  2148. msgid "Please enter a valid IP address."
  2149. msgstr "Lütfen geçerli bir IP adresi girin."
  2150. msgctxt "@message"
  2151. msgid "Please give the required permissions when authorizing this application."
  2152. msgstr "Lütfen bu başvuruya yetki verirken gerekli izinleri verin."
  2153. msgctxt "@info"
  2154. msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers."
  2155. msgstr "Lütfen yazıcınızda bağlantı olduğundan emin olun:"
  2156. "- Yazıcının açık olup olmadığını kontrol edin."
  2157. "- Yazıcının ağa bağlı olup olmadığını kontrol edin."
  2158. "- Buluta bağlı yazıcıları keşfetmek için giriş yapıp yapmadığınızı kontrol edin."
  2159. msgctxt "@text"
  2160. msgid "Please name your printer"
  2161. msgstr "Lütfen yazıcınızı adlandırın"
  2162. msgctxt "@warning:status"
  2163. msgid "Please prepare G-code before exporting."
  2164. msgstr "Lütfen dışa aktarmadan önce G-code'u hazırlayın."
  2165. msgctxt "@info"
  2166. msgid "Please provide a name for this profile."
  2167. msgstr "Bu profil için lütfen bir ad girin."
  2168. msgctxt "@info"
  2169. msgid "Please provide a new name."
  2170. msgstr "Lütfen yeni bir isim belirtin."
  2171. msgctxt "@text"
  2172. msgid "Please read and agree with the plugin licence."
  2173. msgstr "Eklenti lisansını okuyun ve kabul edin."
  2174. msgctxt "@label:MonitorStatus"
  2175. msgid "Please remove the print"
  2176. msgstr "Lütfen yazıcıyı çıkarın"
  2177. msgctxt "@info:status"
  2178. msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes"
  2179. msgstr "Lütfen ayarları gözden geçirin ve modellerinizi şu durumlara karşı kontrol edin:"
  2180. "- Yapı hacmine sığma"
  2181. "- Etkin bir ekstrüdere atanma"
  2182. "- Değiştirici kafesler olarak ayarlanmama"
  2183. msgctxt "@label"
  2184. msgid "Please select any upgrades made to this UltiMaker Original"
  2185. msgstr "Lütfen UltiMaker Original’e yapılan herhangi bir yükseltmeyi seçin"
  2186. msgctxt "@description"
  2187. msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise"
  2188. msgstr "UltiMaker Cura Enterprise için onaylı eklenti ve malzemeleri almak için lütfen oturum açın"
  2189. msgctxt "@info:tooltip"
  2190. msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data."
  2191. msgstr "Anonim olmayan verilerin gönderilmesine izin vermek için lütfen UltiMaker hesabınızda oturum açın."
  2192. msgctxt "@action:button"
  2193. msgid "Please sync the material profiles with your printers before starting to print."
  2194. msgstr "Lütfen baskıya başlamadan önce malzeme profillerini yazıcılarınızla senkronize edin."
  2195. msgctxt "@info"
  2196. msgid "Please update your printer's firmware to manage the queue remotely."
  2197. msgstr "Kuyruğu uzaktan yönetmek için lütfen yazıcının donanım yazılımını güncelleyin."
  2198. msgctxt "@info:status"
  2199. msgid "Please wait until the current job has been sent."
  2200. msgstr "Mevcut iş gönderilene kadar bekleyin."
  2201. msgctxt "@title:window"
  2202. msgid "Plugin License Agreement"
  2203. msgstr "Eklenti Lisans Anlaşması"
  2204. msgctxt "@button"
  2205. msgid "Plugin license agreement"
  2206. msgstr "Eklenti Lisans Anlaşması"
  2207. msgctxt "@backuplist:label"
  2208. msgid "Plugins"
  2209. msgstr "Eklentiler"
  2210. msgctxt "@button"
  2211. msgid "Plugins"
  2212. msgstr "Eklentiler"
  2213. msgctxt "@label Description for application dependency"
  2214. msgid "Polygon clipping library"
  2215. msgstr "Poligon kırpma kitaplığı"
  2216. msgctxt "@label Description for application component"
  2217. msgid "Polygon packing library, developed by Prusa Research"
  2218. msgstr "Prusa Research tarafından geliştirilen Poligon paketleme kitaplığı"
  2219. msgctxt "@item:inmenu"
  2220. msgid "Post Processing"
  2221. msgstr "Son İşleme"
  2222. msgctxt "@title:window"
  2223. msgid "Post Processing Plugin"
  2224. msgstr "Son İşleme Uzantısı"
  2225. msgctxt "@label"
  2226. msgid "Post Processing Scripts"
  2227. msgstr "Son İşleme Dosyaları"
  2228. msgctxt "@button"
  2229. msgid "Pre-heat"
  2230. msgstr "Ön ısıtma"
  2231. msgctxt "@item:inmenu"
  2232. msgid "Prepare"
  2233. msgstr "Hazırla"
  2234. msgctxt "@label:MonitorStatus"
  2235. msgid "Preparing..."
  2236. msgstr "Hazırlanıyor..."
  2237. msgctxt "@label:status"
  2238. msgid "Preparing..."
  2239. msgstr "Hazırlanıyor..."
  2240. msgctxt "@label"
  2241. msgid "Preset printers"
  2242. msgstr "Önayarlı yazıcılar"
  2243. msgctxt "@button"
  2244. msgid "Preview"
  2245. msgstr "Önizleme"
  2246. msgctxt "@item:inmenu"
  2247. msgid "Preview"
  2248. msgstr "Önizleme"
  2249. msgctxt "@tooltip"
  2250. msgid "Prime Tower"
  2251. msgstr "Astarlama Direği"
  2252. msgctxt "@action:button"
  2253. msgid "Print"
  2254. msgstr "Yazdır"
  2255. msgctxt "@action:inmenu menubar:edit"
  2256. msgid "Print After"
  2257. msgstr "Sonra Yazdır"
  2258. msgctxt "@action:inmenu menubar:edit"
  2259. msgid "Print Before"
  2260. msgstr "Önce Yazdır"
  2261. msgctxt "@label"
  2262. msgid "Print Selected Model With:"
  2263. msgid_plural "Print Selected Models With:"
  2264. msgstr[0] "Seçili Modeli Şununla Yazdır:"
  2265. msgstr[1] "Seçili Modelleri Şununla Yazdır:"
  2266. msgctxt "@label %1 is filled in with the name of an extruder"
  2267. msgid "Print Selected Model with %1"
  2268. msgid_plural "Print Selected Models with %1"
  2269. msgstr[0] "Seçili Modeli %1 ile Yazdır"
  2270. msgstr[1] "Seçili Modelleri %1 ile Yazdır"
  2271. msgctxt "@label"
  2272. msgid "Print as support"
  2273. msgstr "Destek olarak yazdır"
  2274. msgctxt "@info:title"
  2275. msgid "Print error"
  2276. msgstr "Baskı hatası"
  2277. msgctxt "@message"
  2278. msgid "Print in Progress"
  2279. msgstr "Baskı Sürüyor"
  2280. msgctxt "@info:status"
  2281. msgid "Print job queue is full. The printer can't accept a new job."
  2282. msgstr "Baskı işi kuyruğu dolu. Yazıcı yeni iş kabul edemez."
  2283. msgctxt "@info:status"
  2284. msgid "Print job was successfully sent to the printer."
  2285. msgstr "Yazdırma işi yazıcıya başarıyla gönderildi."
  2286. msgctxt "@label"
  2287. msgid "Print jobs"
  2288. msgstr "Yazdırma görevleri"
  2289. msgctxt "@label:button"
  2290. msgid "Print jobs"
  2291. msgstr "Yazdırma görevleri"
  2292. msgctxt "@action:button Preceded by 'Ready to'."
  2293. msgid "Print over network"
  2294. msgstr "Ağ üzerinden yazdır"
  2295. msgctxt "@properties:tooltip"
  2296. msgid "Print over network"
  2297. msgstr "Ağ üzerinden yazdır"
  2298. msgctxt "@title:window"
  2299. msgid "Print over network"
  2300. msgstr "Ağ üzerinden yazdır"
  2301. msgctxt "@label"
  2302. msgid "Print settings"
  2303. msgstr "Yazdırma ayarları"
  2304. msgctxt "@label shown when we load a Gcode file"
  2305. msgid "Print setup disabled. G-code file can not be modified."
  2306. msgstr "Yazıcı kurulumu devre dışı bırakıldı. G-code dosyası düzenlenemez."
  2307. msgctxt "@action:button Preceded by 'Ready to'."
  2308. msgid "Print via USB"
  2309. msgstr "USB ile yazdır"
  2310. msgctxt "@info:tooltip"
  2311. msgid "Print via USB"
  2312. msgstr "USB ile yazdır"
  2313. msgctxt "@action:button"
  2314. msgid "Print via cloud"
  2315. msgstr "Bulut üzerinden yazdır"
  2316. msgctxt "@properties:tooltip"
  2317. msgid "Print via cloud"
  2318. msgstr "Bulut üzerinden yazdır"
  2319. msgctxt "@action:label"
  2320. msgid "Print with"
  2321. msgstr "Şununla yazdır:"
  2322. msgctxt "@title:tab"
  2323. msgid "Printer"
  2324. msgstr "Yazıcı"
  2325. msgctxt "@title:window"
  2326. msgid "Printer Address"
  2327. msgstr "Yazıcı Adresi"
  2328. msgctxt "@action:label"
  2329. msgid "Printer Group"
  2330. msgstr "Yazıcı Grubu"
  2331. msgctxt "@title:label"
  2332. msgid "Printer Settings"
  2333. msgstr "Yazıcı Ayarları"
  2334. msgctxt "@label"
  2335. msgid "Printer control"
  2336. msgstr "Yazıcı kontrolü"
  2337. msgctxt "@label:MonitorStatus"
  2338. msgid "Printer does not accept commands"
  2339. msgstr "Yazıcı komutları kabul etmiyor"
  2340. msgctxt "@label"
  2341. msgid "Printer name"
  2342. msgstr "Yazıcı adı"
  2343. msgctxt "@label"
  2344. msgid "Printer selection"
  2345. msgstr "Yazıcı seçimi"
  2346. msgctxt "@action:label"
  2347. msgid "Printer settings"
  2348. msgstr "Yazıcı ayarları"
  2349. msgctxt "@info:tooltip"
  2350. msgid "Printer settings will be updated to match the settings saved with the project."
  2351. msgstr "Yazıcı ayarları, projeyle birlikte kaydedilen ayarlarla eşleşecek şekilde güncellenir."
  2352. msgctxt "@title:tab"
  2353. msgid "Printers"
  2354. msgstr "Yazıcılar"
  2355. msgctxt "info:status"
  2356. msgid "Printers added from Digital Factory:"
  2357. msgstr "Digital Factory'den eklenen yazıcılar:"
  2358. msgctxt "@text Asking the user whether printers are missing in a list."
  2359. msgid "Printers missing?"
  2360. msgstr "Yazıcı eksik mi?"
  2361. msgctxt "@title:label"
  2362. msgid "Printhead Settings"
  2363. msgstr "Yazıcı Başlığı Ayarları"
  2364. msgctxt "@label:status"
  2365. msgid "Printing"
  2366. msgstr "Yazdırma"
  2367. msgctxt "@label"
  2368. msgid "Printing Time"
  2369. msgstr "Yazdırma süresi"
  2370. msgctxt "@label:MonitorStatus"
  2371. msgid "Printing..."
  2372. msgstr "Yazdırılıyor..."
  2373. msgctxt "@label"
  2374. msgid "Privacy"
  2375. msgstr "Gizlilik"
  2376. msgctxt "@button"
  2377. msgid "Processing"
  2378. msgstr "İşleme"
  2379. msgctxt "@info:status"
  2380. msgid "Processing Layers"
  2381. msgstr "Katmanlar İşleniyor"
  2382. msgctxt "@label"
  2383. msgid "Profile"
  2384. msgstr "Profil"
  2385. msgctxt "@title:column"
  2386. msgid "Profile"
  2387. msgstr "Profil"
  2388. msgctxt "@label"
  2389. msgid "Profile author"
  2390. msgstr "Profil sahibi"
  2391. msgctxt "@info:status"
  2392. msgid "Profile is missing a quality type."
  2393. msgstr "Profilde eksik bir kalite tipi var."
  2394. msgctxt "@action:label"
  2395. msgid "Profile settings"
  2396. msgstr "Profil ayarları"
  2397. msgctxt "@title:column"
  2398. msgid "Profile settings"
  2399. msgstr "Profil ayarları"
  2400. msgctxt "@info:status"
  2401. msgid "Profile {0} has an unknown file type or is corrupted."
  2402. msgstr "Profil {0} öğesinde bilinmeyen bir dosya türü var veya profil bozuk."
  2403. msgctxt "@backuplist:label"
  2404. msgid "Profiles"
  2405. msgstr "Profiller"
  2406. msgctxt "@label"
  2407. msgid "Profiles"
  2408. msgstr "Profiller"
  2409. msgctxt "@title:tab"
  2410. msgid "Profiles"
  2411. msgstr "Profiller"
  2412. msgctxt "@label"
  2413. msgid "Profiles compatible with active printer:"
  2414. msgstr "Etkin yazıcı ile uyumlu profiller:"
  2415. msgctxt "@label Description for application dependency"
  2416. msgid "Programming language"
  2417. msgstr "Programlama dili"
  2418. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2419. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  2420. msgstr "Proje dosyası <filename>{0}</filename> bilinmeyen bir makine tipi içeriyor: <message>{1}</message>. Makine alınamıyor. Bunun yerine modeller alınacak."
  2421. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2422. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  2423. msgstr "Proje dosyası <filename>{0}</filename> bozuk: <message>{1}</message>."
  2424. msgctxt "@info:error Don't translate the XML tag <filename>!"
  2425. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
  2426. msgstr "<filename>{0}</filename> proje dosyası, Ultimaker Cura'nın bu sürümünde bilinmeyen profiller kullanılarak yapılmış."
  2427. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2428. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  2429. msgstr "<filename>{0}</filename> proje dosyası aniden erişilemez oldu: <message>{1}</message>."
  2430. msgctxt "@label"
  2431. msgid "Properties"
  2432. msgstr "Özellikler"
  2433. msgctxt "@label"
  2434. msgid "PyQt version"
  2435. msgstr "PyQt Sürümü"
  2436. msgctxt "@Label Description for application dependency"
  2437. msgid "Python Error tracking library"
  2438. msgstr "Python Hata takip kitaplığı"
  2439. msgctxt "@label Description for application dependency"
  2440. msgid "Python bindings for Clipper"
  2441. msgstr "Clipper için Python bağlamaları"
  2442. msgctxt "@label Description for application component"
  2443. msgid "Python bindings for libnest2d"
  2444. msgstr "libnest2d için Python bağlamaları"
  2445. msgctxt "@label"
  2446. msgid "Qt version"
  2447. msgstr "Qt Sürümü"
  2448. msgctxt "@info:status"
  2449. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  2450. msgstr "'{0}' kalite tipi, mevcut aktif makine tanımı '{1}' ile uyumlu değil."
  2451. msgctxt "@info:title"
  2452. msgid "Queue Full"
  2453. msgstr "Kuyruk Dolu"
  2454. msgctxt "@label"
  2455. msgid "Queued"
  2456. msgstr "Kuyrukta"
  2457. msgctxt "@info:button, %1 is the application name"
  2458. msgid "Quit %1"
  2459. msgstr "%1 uygulamasından çık"
  2460. msgctxt "@button"
  2461. msgid "Recommended"
  2462. msgstr "Önerilen"
  2463. msgctxt "@title:tab"
  2464. msgid "Recommended"
  2465. msgstr "Önerilen Ayarlar"
  2466. msgctxt "@label"
  2467. msgid "Recommended print settings"
  2468. msgstr "Tavsiye edilen baskı ayarları"
  2469. msgctxt "@info %1 is the name of a profile"
  2470. msgid "Recommended settings (for <b>%1</b>) were altered."
  2471. msgstr "Önerilen ayarlar (<b>%1</b> için) değiştirildi."
  2472. msgctxt "@action:button"
  2473. msgid "Refresh"
  2474. msgstr "Yenile"
  2475. msgctxt "@button"
  2476. msgid "Refresh"
  2477. msgstr "Yenile"
  2478. msgctxt "@label"
  2479. msgid "Refresh"
  2480. msgstr "Yenile"
  2481. msgctxt "@button"
  2482. msgid "Refresh List"
  2483. msgstr "Listeyi Yenile"
  2484. msgctxt "@button"
  2485. msgid "Refreshing..."
  2486. msgstr "Yenileniyor..."
  2487. msgctxt "@label"
  2488. msgid "Release Notes"
  2489. msgstr "Sürüm notları"
  2490. msgctxt "@action:inmenu menubar:file"
  2491. msgid "Reload All Models"
  2492. msgstr "Tüm Modelleri Yeniden Yükle"
  2493. msgctxt "@text:window"
  2494. msgid "Remember my choice"
  2495. msgstr "Seçimimi hatırla"
  2496. msgctxt "@item:intext"
  2497. msgid "Removable Drive"
  2498. msgstr "Çıkarılabilir Sürücü"
  2499. msgctxt "@action:button"
  2500. msgid "Remove"
  2501. msgstr "Kaldır"
  2502. msgctxt "@action:button"
  2503. msgid "Remove printers"
  2504. msgstr "Yazıcıları kaldır"
  2505. msgctxt "@title:window"
  2506. msgid "Remove printers?"
  2507. msgstr "Yazıcılar kaldırılsın mı?"
  2508. msgctxt "@action:button"
  2509. msgid "Rename"
  2510. msgstr "Yeniden adlandır"
  2511. msgctxt "@title:window"
  2512. msgid "Rename"
  2513. msgstr "Yeniden Adlandır"
  2514. msgctxt "@title:window"
  2515. msgid "Rename Profile"
  2516. msgstr "Profili Yeniden Adlandır"
  2517. msgctxt "@action:inmenu menubar:help"
  2518. msgid "Report a &Bug"
  2519. msgstr "Hata Bildir"
  2520. msgctxt "@label:button"
  2521. msgid "Report a bug"
  2522. msgstr "Hata bildirin"
  2523. msgctxt "@message:button"
  2524. msgid "Report a bug"
  2525. msgstr "Hata bildirin"
  2526. msgctxt "@message:description"
  2527. msgid "Report a bug on UltiMaker Cura's issue tracker."
  2528. msgstr "UltiMaker Cura'nın sorun izleyicisinde hata bildirin."
  2529. msgctxt "@label:status"
  2530. msgid "Requires configuration changes"
  2531. msgstr "Yapılandırma değişiklikleri gerekiyor"
  2532. msgctxt "@action:inmenu menubar:edit"
  2533. msgid "Reset All Model Positions"
  2534. msgstr "Tüm Model Konumlarını Sıfırla"
  2535. msgctxt "@action:inmenu menubar:edit"
  2536. msgid "Reset All Model Transformations"
  2537. msgstr "Tüm Model ve Dönüşümleri Sıfırla"
  2538. msgctxt "@info"
  2539. msgid "Reset to defaults."
  2540. msgstr "Varsayılanlara sıfırla."
  2541. msgctxt "@label"
  2542. msgid "Resolution"
  2543. msgstr "Çözünürlük"
  2544. msgctxt "@button"
  2545. msgid "Restore"
  2546. msgstr "Geri Yükle"
  2547. msgctxt "@dialog:title"
  2548. msgid "Restore Backup"
  2549. msgstr "Yedeklemeyi Geri Yükle"
  2550. msgctxt "@option:check"
  2551. msgid "Restore window position on start"
  2552. msgstr "Başlangıçtaki pencere konumuna dönülsün"
  2553. msgctxt "@label"
  2554. msgid "Resume"
  2555. msgstr "Devam et"
  2556. msgctxt "@label"
  2557. msgid "Resuming..."
  2558. msgstr "Devam ediliyor..."
  2559. msgctxt "@label:status"
  2560. msgid "Resuming..."
  2561. msgstr "Devam ediliyor..."
  2562. msgctxt "@tooltip"
  2563. msgid "Retractions"
  2564. msgstr "Geri Çekmeler"
  2565. msgctxt "@button"
  2566. msgid "Retry?"
  2567. msgstr "Yeniden denensin mi?"
  2568. msgctxt "@action:inmenu menubar:view"
  2569. msgid "Right Side View"
  2570. msgstr "Sağ Taraftan Görünüm"
  2571. msgctxt "@info:tooltip"
  2572. msgid "Right View"
  2573. msgstr "Sağ görünüm"
  2574. msgctxt "@label Description for application dependency"
  2575. msgid "Root Certificates for validating SSL trustworthiness"
  2576. msgstr "SSL güvenilirliğini doğrulamak için kök sertifikalar"
  2577. msgctxt "@info:title"
  2578. msgid "Safely Remove Hardware"
  2579. msgstr "Donanımı Güvenli Bir Şekilde Kaldırın"
  2580. msgctxt "@button"
  2581. msgid "Safety datasheet"
  2582. msgstr "Güvenlik veri sayfası"
  2583. msgctxt "@action:button"
  2584. msgid "Save"
  2585. msgstr "Kaydet"
  2586. msgctxt "@option"
  2587. msgid "Save Cura project"
  2588. msgstr "Cura projesini kaydet"
  2589. msgctxt "@option"
  2590. msgid "Save Cura project and .makerbot print file"
  2591. msgstr "Cura projesini ve .makerbot yazdırma dosyasını kaydet"
  2592. msgctxt "@option"
  2593. msgid "Save Cura project and .ufp print file"
  2594. msgstr "Cura projesini ve .ufp yazdırma dosyasını kaydet"
  2595. msgctxt "@title:window"
  2596. msgid "Save Custom Profile"
  2597. msgstr "Özel Profili Kaydet"
  2598. msgctxt "@title:window"
  2599. msgid "Save Project"
  2600. msgstr "Projeyi Kaydet"
  2601. msgctxt "@title:menu menubar:file"
  2602. msgid "Save Project..."
  2603. msgstr "Projeyi Kaydet..."
  2604. msgctxt "@action:button"
  2605. msgid "Save as new custom profile"
  2606. msgstr "Yeni özel profil olarak kaydet"
  2607. msgctxt "@action:button"
  2608. msgid "Save changes"
  2609. msgstr "Değişiklikleri kaydet"
  2610. msgctxt "@button"
  2611. msgid "Save new profile"
  2612. msgstr "Yeni profil kaydet"
  2613. msgctxt "@action:button"
  2614. msgid "Save project"
  2615. msgstr "Projeyi kaydet"
  2616. msgctxt "@text"
  2617. msgid "Save the .umm file on a USB stick."
  2618. msgstr ".umm dosyasını bir USB çubuğa kaydedin."
  2619. msgctxt "@action:button Preceded by 'Ready to'."
  2620. msgid "Save to Removable Drive"
  2621. msgstr "Çıkarılabilir Sürücüye Kaydet"
  2622. msgctxt "@item:inlistbox"
  2623. msgid "Save to Removable Drive {0}"
  2624. msgstr "Çıkarılabilir Sürücüye Kaydediliyor {0}"
  2625. msgctxt "@info:status"
  2626. msgid "Saved to Removable Drive {0} as {1}"
  2627. msgstr "Çıkarılabilir Sürücüye {0}, {1} olarak kaydedildi"
  2628. msgctxt "@info:title"
  2629. msgid "Saving"
  2630. msgstr "Kaydediliyor"
  2631. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2632. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2633. msgstr "Çıkarılabilir Sürücü <filename>{0}</filename> Üzerine Kaydediliyor"
  2634. msgctxt "@option:check"
  2635. msgid "Scale extremely small models"
  2636. msgstr "Çok küçük modelleri ölçeklendirin"
  2637. msgctxt "@option:check"
  2638. msgid "Scale large models"
  2639. msgstr "Büyük modelleri ölçeklendirin"
  2640. msgctxt "@placeholder"
  2641. msgid "Search"
  2642. msgstr "Ara"
  2643. msgctxt "@info"
  2644. msgid "Search in the browser"
  2645. msgstr "Tarayıcıda ara"
  2646. msgctxt "@label:textbox"
  2647. msgid "Search settings"
  2648. msgstr "Arama ayarları"
  2649. msgctxt "@action:inmenu menubar:edit"
  2650. msgid "Select All Models"
  2651. msgstr "Tüm modelleri Seç"
  2652. msgctxt "@title:window"
  2653. msgid "Select Printer"
  2654. msgstr "Yazıcı seçin"
  2655. msgctxt "@title:window"
  2656. msgid "Select Settings to Customize for this model"
  2657. msgstr "Bu modeli Özelleştirmek için Ayarları seçin"
  2658. msgctxt "@text"
  2659. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  2660. msgstr "UltiMaker 3D yazıcılarınız için optimize edilmiş malzeme profillerini seçin ve yükleyin."
  2661. msgctxt "@label"
  2662. msgid "Select configuration"
  2663. msgstr "Yapılandırma seç"
  2664. msgctxt "@title:window"
  2665. msgid "Select custom firmware"
  2666. msgstr "Özel aygıt yazılımı seçin"
  2667. msgctxt "@option:check"
  2668. msgid "Select models when loaded"
  2669. msgstr "Yüklendiğinde modelleri seç"
  2670. msgctxt "@action:button"
  2671. msgid "Select settings"
  2672. msgstr "Ayarları seçin"
  2673. msgctxt "@action"
  2674. msgid "Select upgrades"
  2675. msgstr "Yükseltmeleri seçin"
  2676. msgctxt "@label"
  2677. msgid "Select your printer from the list below:"
  2678. msgstr "Aşağıdaki listeden yazıcınızı seçin:"
  2679. msgctxt "@option:check"
  2680. msgid "Send (anonymous) print information"
  2681. msgstr "(Anonim) yazdırma bilgisi gönder"
  2682. msgctxt "@label"
  2683. msgid "Send G-code"
  2684. msgstr "G-code Gönder"
  2685. msgctxt "@tooltip of G-code command input"
  2686. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  2687. msgstr "Bağlı yazıcıya özel bir G-code komutu gönderin. Komutu göndermek için 'enter' tuşuna basın."
  2688. msgctxt "@action:button"
  2689. msgid "Send crash report to UltiMaker"
  2690. msgstr "Çökme raporunu UltiMaker’a gönder"
  2691. msgctxt "@info:tooltip"
  2692. msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send."
  2693. msgstr "Kayıtlı UltiMaker hesap adınız ve proje adınızla birlikte çökme raporlarını UltiMaker Sentry'ye gönderin. Hiçbir gerçek model verisi gönderilmez."
  2694. msgctxt "@info:tooltip"
  2695. msgid "Send crash reports without any personally identifiable information or models data to UltiMaker."
  2696. msgstr "Çökme raporlarını kişisel olarak tanımlanabilecek herhangi bir bilgi veya model verisi olmadan UltiMaker'a gönderin."
  2697. msgctxt "@option:check"
  2698. msgid "Send engine crash reports"
  2699. msgstr "Motor çökmesi raporlarını gönder"
  2700. msgctxt "@action:button"
  2701. msgid "Send report"
  2702. msgstr "Rapor gönder"
  2703. msgctxt "@info:status"
  2704. msgid "Sending Print Job"
  2705. msgstr "Yazdırma İşi Gönderiliyor"
  2706. msgctxt "@info:title"
  2707. msgid "Sending materials to printer"
  2708. msgstr "Malzemeler yazıcıya gönderiliyor"
  2709. msgctxt "@label Description for application dependency"
  2710. msgid "Serial communication library"
  2711. msgstr "Seri iletişim kitaplığı"
  2712. msgctxt "@action:inmenu"
  2713. msgid "Set as Active Extruder"
  2714. msgstr "Etkin Ekstruder olarak ayarla"
  2715. msgctxt "@title:column"
  2716. msgid "Setting"
  2717. msgstr "Ayar"
  2718. msgctxt "@title:tab"
  2719. msgid "Setting Visibility"
  2720. msgstr "Görünürlüğü Ayarlama"
  2721. msgctxt "@info:progress"
  2722. msgid "Setting up preferences..."
  2723. msgstr "Tercihler ayarlanıyor..."
  2724. msgctxt "@info:progress"
  2725. msgid "Setting up scene..."
  2726. msgstr "Görünüm ayarlanıyor..."
  2727. msgctxt "@action:label"
  2728. msgid "Setting visibility"
  2729. msgstr "Görünürlük ayarı"
  2730. msgctxt "@label"
  2731. msgid "Settings"
  2732. msgstr "Ayarlar"
  2733. msgctxt "@title:tab"
  2734. msgid "Settings"
  2735. msgstr "Ayarlar"
  2736. msgctxt "@action:label"
  2737. msgid "Settings Loaded from UCP file"
  2738. msgstr "UCP dosyasından yüklenen ayarlar"
  2739. msgctxt "@info:message Followed by a list of settings."
  2740. msgid "Settings have been changed to match the current availability of extruders:"
  2741. msgstr "Ayarlar, ekstrüderlerin mevcut kullanılabilirliğine uyacak şekilde değiştirildi:"
  2742. msgctxt "@info:title"
  2743. msgid "Settings updated"
  2744. msgstr "Ayarlar güncellendi"
  2745. msgctxt "@text"
  2746. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  2747. msgstr "UltiMaker Topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın"
  2748. msgctxt "@label"
  2749. msgid "Shell"
  2750. msgstr "Kabuk"
  2751. msgctxt "@action:label"
  2752. msgid "Shell Thickness"
  2753. msgstr "Katman Kalınlığı"
  2754. msgctxt "@info:tooltip"
  2755. msgid "Should Cura check for updates when the program is started?"
  2756. msgstr "Cura, program başladığında güncellemeleri kontrol etmeli mi?"
  2757. msgctxt "@info:tooltip"
  2758. msgid "Should Cura open at the location it was closed?"
  2759. msgstr "Cura kapatıldığı yerden mi başlatılsın?"
  2760. msgctxt "@info:tooltip"
  2761. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  2762. msgstr "Yazıcı adına bağlı bir ön ek otomatik olarak yazdırma işinin adına eklenmeli mi?"
  2763. msgctxt "@info:tooltip"
  2764. msgid "Should a summary be shown when saving a project file?"
  2765. msgstr "Bir proje dosyasını kaydederken özet gösterilmeli mi?"
  2766. msgctxt "@info:tooltip"
  2767. 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!"
  2768. 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!"
  2769. msgctxt "@info:tooltip"
  2770. 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."
  2771. 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."
  2772. msgctxt "@info:tooltip"
  2773. msgid "Should layer be forced into compatibility mode?"
  2774. msgstr "Katman, uyumluluk moduna zorlansın mı?"
  2775. msgctxt "@info:tooltip"
  2776. msgid "Should models be scaled to the build volume if they are too large?"
  2777. msgstr "Modeller çok büyükse yapı hacmine göre ölçeklendirilmeli mi?"
  2778. msgctxt "@info:tooltip"
  2779. msgid "Should models be selected after they are loaded?"
  2780. msgstr "Yüklendikten sonra modeller seçilsin mi?"
  2781. msgctxt "@info:tooltip"
  2782. msgid "Should models on the platform be moved down to touch the build plate?"
  2783. msgstr "Platformun üzerindeki modeller yapı levhasına değmeleri için indirilmeli mi?"
  2784. msgctxt "@info:tooltip"
  2785. msgid "Should models on the platform be moved so that they no longer intersect?"
  2786. msgstr "Platformun üzerindeki öğeler kesişmemeleri için hareket ettirilmeli mi?"
  2787. msgctxt "@info:tooltip"
  2788. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  2789. msgstr "Masaüstünden veya harici uygulamalardan açılan dosyalar aynı Cura örneğinde mi açılacak?"
  2790. msgctxt "@info:tooltip"
  2791. msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission."
  2792. msgstr "Dilimleme çökmeleri otomatik olarak Ultimaker'a bildirilmeli mi? Açıkça izin vermediğiniz sürece hiçbir modelin, IP adresinin veya diğer kişisel bilgilerin gönderilmediğini veya saklanmadığını unutmayın."
  2793. msgctxt "@info:tooltip"
  2794. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  2795. msgstr "Cura'nın tek örneğinde yeni bir model yüklenmeden önce yapı plakası temizlensin mi?"
  2796. msgctxt "@info:tooltip"
  2797. msgid "Should the default zoom behavior of cura be inverted?"
  2798. msgstr "Cura’nın varsayılan yakınlaştırma davranışı tersine çevrilsin mi?"
  2799. msgctxt "@info:tooltip"
  2800. msgid "Should zooming move in the direction of the mouse?"
  2801. msgstr "Yakınlaştırma farenin hareket yönüne uygun olsun mu?"
  2802. msgctxt "@label"
  2803. msgid "Show 5 Detailed Layers On Top"
  2804. msgstr "En Üstteki 5 Ayrıntılı Katmanı Göster"
  2805. msgctxt "@action:inmenu menubar:help"
  2806. msgid "Show Configuration Folder"
  2807. msgstr "Yapılandırma Klasörünü Göster"
  2808. msgctxt "@button"
  2809. msgid "Show Custom"
  2810. msgstr "Özeli Göster"
  2811. msgctxt "@action:inmenu menubar:help"
  2812. msgid "Show Online &Documentation"
  2813. msgstr "Çevrimiçi Belgeleri Göster"
  2814. msgctxt "@action:inmenu"
  2815. msgid "Show Online Troubleshooting"
  2816. msgstr "Çevrimiçi Sorun Giderme Kılavuzunu Göster"
  2817. msgctxt "@label:checkbox"
  2818. msgid "Show all"
  2819. msgstr "Tümünü göster"
  2820. msgctxt "@label"
  2821. msgid "Show all connected printers"
  2822. msgstr "Bağlı tüm yazıcıları göster"
  2823. msgctxt "@info:tooltip"
  2824. msgid "Show an icon and notifications in the system notification area."
  2825. msgstr "Sistem bildirim alanında bir simge ve bildirimler gösterin."
  2826. msgctxt "@info:tooltip"
  2827. msgid "Show caution message in g-code reader."
  2828. msgstr "G-code okuyucuda uyarı mesajı göster."
  2829. msgctxt "@action:button"
  2830. msgid "Show configuration folder"
  2831. msgstr "Yapılandırma Klasörünü Göster"
  2832. msgctxt "@action:button"
  2833. msgid "Show detailed crash report"
  2834. msgstr "Ayrıntılı çökme raporu göster"
  2835. msgctxt "@action:button"
  2836. msgid "Show settings"
  2837. msgstr "Ayarları göster"
  2838. msgctxt "@option:check"
  2839. msgid "Show summary dialog when saving project"
  2840. msgstr "Projeyi kaydederken özet iletişim kutusunu göster"
  2841. msgctxt "@tooltip:button"
  2842. msgid "Show your support for Cura with a donation."
  2843. msgstr "Bağış yaparak Cura'ya desteğinizi gösterin."
  2844. msgctxt "@button"
  2845. msgid "Sign Out"
  2846. msgstr "Çıkış yap"
  2847. msgctxt "@action:button"
  2848. msgid "Sign in"
  2849. msgstr "Giriş yap"
  2850. msgctxt "@button"
  2851. msgid "Sign in"
  2852. msgstr "Giriş yap"
  2853. msgctxt "@title:header"
  2854. msgid "Sign in"
  2855. msgstr "Giriş yap"
  2856. msgctxt "@info"
  2857. msgid "Sign in into UltiMaker Digital Factory"
  2858. msgstr "Ultimaker Digital Factory’ye giriş yapın"
  2859. msgctxt "@button"
  2860. msgid "Sign in to Digital Factory"
  2861. msgstr "Digital Factory’de oturum aç"
  2862. msgctxt "@label"
  2863. msgid "Sign in to the UltiMaker platform"
  2864. msgstr "UltiMaker platformuna giriş yapın"
  2865. msgctxt "@tooltip"
  2866. msgid "Skin"
  2867. msgstr "Yüzey Alanı"
  2868. msgctxt "@action:button"
  2869. msgid "Skip"
  2870. msgstr "Atla"
  2871. msgctxt "@button"
  2872. msgid "Skip"
  2873. msgstr "Atla"
  2874. msgctxt "@tooltip"
  2875. msgid "Skirt"
  2876. msgstr "Etek"
  2877. msgctxt "@button"
  2878. msgid "Slice"
  2879. msgstr "Dilimle"
  2880. msgctxt "@option:check"
  2881. msgid "Slice automatically"
  2882. msgstr "Otomatik olarak dilimle"
  2883. msgctxt "@info:tooltip"
  2884. msgid "Slice automatically when changing settings."
  2885. msgstr "Ayarlar değiştirilirken otomatik olarak dilimle."
  2886. msgctxt "@message:title"
  2887. msgid "Slicing failed"
  2888. msgstr "Dilimleme başarısız"
  2889. msgctxt "@label:PrintjobStatus"
  2890. msgid "Slicing..."
  2891. msgstr "Dilimleniyor..."
  2892. msgctxt "@action:label"
  2893. msgid "Smoothing"
  2894. msgstr "Düzeltme"
  2895. msgctxt "@label"
  2896. msgid "Solid"
  2897. msgstr "Katı"
  2898. msgctxt "@item:inmenu"
  2899. msgid "Solid view"
  2900. msgstr "Gerçek görünüm"
  2901. msgctxt "@label"
  2902. msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible."
  2903. msgstr "Gizlenen bazı ayarlar normal hesaplanan değerden farklı değerler kullanır."
  2904. "Bu ayarları görmek için tıklayın."
  2905. msgctxt "@info:status"
  2906. msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace."
  2907. msgstr "Proje dosyasında kullanılan paketlerden bazıları şu anda Cura'da yüklü değil. Bu durum, istenmeyen yazdırma sonuçlarına neden olabilir. Gerekli tüm paketleri Marketplace'ten yüklemenizi önemle tavsiye ederiz."
  2908. msgctxt "@info:title"
  2909. msgid "Some required packages are not installed"
  2910. msgstr "Bazı gerekli paketler yüklü değil"
  2911. msgctxt "@info %1 is the name of a profile"
  2912. msgid "Some setting-values defined in <b>%1</b> were overridden."
  2913. msgstr "<b>1</b> kapsamında tanımlanan bazı ayar değerleri geçersiz kılındı."
  2914. msgctxt "@tooltip"
  2915. msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager."
  2916. msgstr "Bazı ayar/geçersiz kılma değerleri profilinizde saklanan değerlerden farklıdır."
  2917. "Profil yöneticisini açmak için tıklayın."
  2918. msgctxt "@action:label"
  2919. msgid "Some settings from current profile were overwritten."
  2920. msgstr "Mevcut profilin bazı ayarlarının üzerine yazılmış."
  2921. msgctxt "@message"
  2922. msgid "Something unexpected happened when trying to log in, please try again."
  2923. msgstr "Oturum açmaya çalışırken beklenmeyen bir sorun oluştu, lütfen tekrar deneyin."
  2924. msgctxt "@title:header"
  2925. msgid "Something went wrong when sending the materials to the printers."
  2926. msgstr "Malzemeler yazıcılara gönderilirken bir sorun oluştu."
  2927. msgctxt "@label"
  2928. msgid "Something went wrong..."
  2929. msgstr "Bir sorun oluştu..."
  2930. msgctxt "@label:listbox"
  2931. msgid "Speed"
  2932. msgstr "Hız"
  2933. msgctxt "@action:inmenu"
  2934. msgid "Sponsor Cura"
  2935. msgstr "Cura'ya Sponsor Olun"
  2936. msgctxt "@label:button"
  2937. msgid "Sponsor Cura"
  2938. msgstr "Cura'ya Sponsor Olun"
  2939. msgctxt "@option:radio"
  2940. msgid "Stable and Beta releases"
  2941. msgstr "İstikrarlı ve Beta sürümler"
  2942. msgctxt "@option:radio"
  2943. msgid "Stable releases only"
  2944. msgstr "Yalnızca istikrarlı sürümler"
  2945. msgctxt "@item:inlistbox"
  2946. msgid "Stanford Triangle Format"
  2947. msgstr "Stanford Triangle Format"
  2948. msgctxt "@button"
  2949. msgid "Start"
  2950. msgstr "Başlat"
  2951. msgctxt "@action:button"
  2952. msgid "Start Build Plate Leveling"
  2953. msgstr "Yapı Levhasını Dengelemeyi Başlat"
  2954. msgctxt "@title:label"
  2955. msgid "Start G-code"
  2956. msgstr "G-code’u Başlat"
  2957. msgctxt "@label"
  2958. msgid "Start the slicing process"
  2959. msgstr "Dilimleme sürecini başlat"
  2960. msgctxt "@label"
  2961. msgid "Starts"
  2962. msgstr "Başlangıçlar"
  2963. msgctxt "@text"
  2964. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  2965. 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."
  2966. msgctxt "@label"
  2967. msgid "Strength"
  2968. msgstr "Sağlamlık"
  2969. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2970. msgid "Successfully exported material to <filename>%1</filename>"
  2971. msgstr "Malzeme <filename>%1</filename> dosyasına başarıyla dışa aktarıldı"
  2972. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2973. msgid "Successfully imported material <filename>%1</filename>"
  2974. msgstr "Malzeme <filename>%1</filename> dosyasına başarıyla içe aktarıldı"
  2975. msgctxt "@info:status"
  2976. msgid "Successfully imported profile {0}."
  2977. msgstr "{0} profili başarıyla içe aktarıldı."
  2978. msgctxt "@action:label"
  2979. msgid "Suggested Material settings"
  2980. msgstr "Önerilen Malzeme ayarları"
  2981. msgctxt "@action:label"
  2982. msgid "Suggested Profile settings"
  2983. msgstr "Önerilen Profil ayarları"
  2984. msgctxt "@action:title"
  2985. msgid "Summary - Cura Project"
  2986. msgstr "Özet - Cura Projesi"
  2987. msgctxt "@action:title Don't translate 'Universal Cura Project'"
  2988. msgid "Summary - Open Universal Cura Project (UCP)"
  2989. msgstr "Özet - Universal Cura Project (UCP)'i aç"
  2990. msgctxt "@action:title Don't translate 'Universal Cura Project'"
  2991. msgid "Summary - Universal Cura Project"
  2992. msgstr "Özet - Universal Cura Project"
  2993. msgctxt "@label"
  2994. msgid "Support"
  2995. msgstr "Destek"
  2996. msgctxt "@tooltip"
  2997. msgid "Support"
  2998. msgstr "Destek"
  2999. msgctxt "@label"
  3000. msgid "Support Blocker"
  3001. msgstr "Destek Engelleyici"
  3002. msgctxt "@tooltip"
  3003. msgid "Support Infill"
  3004. msgstr "Destek Dolgusu"
  3005. msgctxt "@tooltip"
  3006. msgid "Support Interface"
  3007. msgstr "Destek Arayüzü"
  3008. msgctxt "@action:label"
  3009. msgid "Support Type"
  3010. msgstr "Destek Türü"
  3011. msgctxt "@label Description for application dependency"
  3012. msgid "Support library for faster math"
  3013. msgstr "Daha hızlı matematik için destek kitaplığı"
  3014. msgctxt "@label Description for application component"
  3015. msgid "Support library for file metadata and streaming"
  3016. msgstr "Dosya meta verileri ve akış için destek kitaplığı"
  3017. msgctxt "@label Description for application component"
  3018. msgid "Support library for handling 3MF files"
  3019. msgstr "3MF dosyalarının işlenmesi için destek kitaplığı"
  3020. msgctxt "@label Description for application dependency"
  3021. msgid "Support library for handling STL files"
  3022. msgstr "STL dosyalarının işlenmesi için destek kitaplığı"
  3023. msgctxt "@label Description for application dependency"
  3024. msgid "Support library for handling triangular meshes"
  3025. msgstr "Üçgen birleşimlerin işlenmesi için destek kitaplığı"
  3026. msgctxt "@label Description for application dependency"
  3027. msgid "Support library for scientific computing"
  3028. msgstr "Bilimsel bilgi işlem için destek kitaplığı"
  3029. msgctxt "@label Description for application dependency"
  3030. msgid "Support library for system keyring access"
  3031. msgstr "Sistem anahtarlık erişimi için destek kitaplığı"
  3032. msgctxt "@action:button"
  3033. msgid "Sync"
  3034. msgstr "Senkronize et"
  3035. msgctxt "@button"
  3036. msgid "Sync"
  3037. msgstr "Senkronize et"
  3038. msgctxt "@title:header"
  3039. msgid "Sync material profiles via USB"
  3040. msgstr "Malzeme profillerini USB üzerinden senkronize edin"
  3041. msgctxt "@action:button"
  3042. msgid "Sync materials"
  3043. msgstr "Malzemeleri senkronize et"
  3044. msgctxt "@button"
  3045. msgid "Sync materials with USB"
  3046. msgstr "Malzemeleri USB ile senkronize et"
  3047. msgctxt "@title:header"
  3048. msgid "Sync materials with printers"
  3049. msgstr "Malzemeleri yazıcılarla senkronize et"
  3050. msgctxt "@title:window"
  3051. msgid "Sync materials with printers"
  3052. msgstr "Malzemeleri yazıcılarla senkronize et"
  3053. msgctxt "@action:button"
  3054. msgid "Sync with Printers"
  3055. msgstr "Yazıcılarla Senkronize Et"
  3056. msgctxt "@button"
  3057. msgid "Syncing"
  3058. msgstr "Senkronize ediliyor"
  3059. msgctxt "@info:generic"
  3060. msgid "Syncing..."
  3061. msgstr "Senkronize ediliyor..."
  3062. msgctxt "@title:groupbox"
  3063. msgid "System information"
  3064. msgstr "Sistem bilgileri"
  3065. msgctxt "@button"
  3066. msgid "Technical datasheet"
  3067. msgstr "Teknik veri sayfası"
  3068. msgctxt "@info:tooltip"
  3069. msgid "The amount of smoothing to apply to the image."
  3070. msgstr "Resme uygulanacak düzeltme miktarı."
  3071. msgctxt "@text"
  3072. msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
  3073. msgstr "Tavlama profili, baskı bittikten sonra fırında son işlem yapılmasını gerektirir. Bu profil, tavlama sonrasında basılı parçanın boyutsal doğruluğunu korur ve mukavemeti, sertliği ve termal direnci artırır."
  3074. msgctxt "@label"
  3075. msgid "The assigned printer, %1, requires the following configuration change:"
  3076. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  3077. msgstr[0] "Atanan yazıcı %1, şu yapılandırma değişikliğini gerektiriyor:"
  3078. msgstr[1] "Atanan yazıcı %1, şu yapılandırma değişikliklerini gerektiriyor:"
  3079. msgctxt "@error:file_size"
  3080. msgid "The backup exceeds the maximum file size."
  3081. msgstr "Yedekleme maksimum dosya boyutunu aşıyor."
  3082. msgctxt "@text"
  3083. msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy."
  3084. msgstr "Dengeli profil, verimlilik, yüzey kalitesi, mekanik özellikler ve boyutsal doğruluk arasında bir denge kurmayı amaçlar."
  3085. msgctxt "@info:tooltip"
  3086. msgid "The base height from the build plate in millimeters."
  3087. msgstr "Tabanın yapı levhasından milimetre cinsinden yüksekliği."
  3088. msgctxt "@info:status"
  3089. 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."
  3090. 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ı."
  3091. msgctxt "@status"
  3092. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  3093. msgstr "Bulut bağlantısı şu anda kullanılamıyor. Lütfen internet bağlantınızı kontrol edin."
  3094. msgctxt "@status"
  3095. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  3096. msgstr "Bulut bağlantısı şu anda kullanılamıyor. Bulut yazıcısına bağlanmak için lütfen oturum açın."
  3097. msgctxt "@status"
  3098. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3099. msgstr "Bulut yazıcısı çevrimdışı. Yazıcının açık ve internete bağlı olup olmadığını kontrol edin."
  3100. msgctxt "@tooltip"
  3101. msgid "The colour of the material in this extruder."
  3102. msgstr "Bu ekstruderdeki malzemenin rengi."
  3103. msgctxt "@tooltip"
  3104. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  3105. msgstr "Bu ekstrüderin yapılandırılmasına izin verilmiyor ve dilimleme yapılamaz."
  3106. msgctxt "@label"
  3107. msgid "The configurations are not available because the printer is disconnected."
  3108. msgstr "Yazıcı bağlı olmadığından yapılandırmalar kullanılamıyor."
  3109. msgctxt "@tooltip"
  3110. msgid "The current temperature of the heated bed."
  3111. msgstr "Isıtılmış yatağın geçerli sıcaklığı."
  3112. msgctxt "@tooltip"
  3113. msgid "The current temperature of this hotend."
  3114. msgstr "Bu sıcak ucun geçerli sıcaklığı."
  3115. msgctxt "@info:tooltip"
  3116. msgid "The depth in millimeters on the build plate"
  3117. msgstr "Yapı levhasındaki milimetre cinsinden derinlik"
  3118. msgctxt "@text"
  3119. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  3120. 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."
  3121. msgctxt "@text"
  3122. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  3123. 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."
  3124. msgctxt "@label"
  3125. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3126. msgstr "Destek için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır."
  3127. msgctxt "@label Don't translate the XML tag <filename>!"
  3128. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  3129. msgstr "Dosya <filename>{0}</filename> zaten mevcut. Üstüne yazmak istediğinizden emin misiniz?"
  3130. msgctxt "@label"
  3131. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  3132. 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."
  3133. msgctxt "@info:backup_failed"
  3134. msgid "The following error occurred while trying to restore a Cura backup:"
  3135. msgstr "Cura yedeklemesi geri yüklenmeye çalışılırken aşağıdaki hata oluştu:"
  3136. msgctxt "@label"
  3137. msgid "The following packages can not be installed because of an incompatible Cura version:"
  3138. msgstr "Aşağıdaki paketler uyumsuz Cura sürümü nedeniyle yüklenemiyor:"
  3139. msgctxt "@label"
  3140. msgid "The following packages will be added:"
  3141. msgstr "Aşağıdaki paketler eklenecek:"
  3142. msgctxt "@label"
  3143. msgid "The following printers in your account have been added in Cura:"
  3144. msgstr "Hesabınızdaki şu yazıcılar Cura'ya eklendi:"
  3145. msgctxt "@title:header"
  3146. msgid "The following printers will receive the new material profiles:"
  3147. msgstr "Aşağıdaki yazıcılar yeni malzeme profillerini alacak:"
  3148. msgctxt "@info:tooltip"
  3149. msgid "The following script is active:"
  3150. msgid_plural "The following scripts are active:"
  3151. msgstr[0] "Aşağıdaki komut dosyası etkin:"
  3152. msgstr[1] "Aşağıdaki komut dosyaları etkin:"
  3153. msgctxt "@label"
  3154. msgid "The following settings define the strength of your part."
  3155. msgstr "Aşağıdaki ayarlar parçanızın sağlamlığını tanımlar."
  3156. msgctxt "@info:status"
  3157. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  3158. msgstr "Vurgulanan alanlar, eksik ya da ikincil yüzeyleri gösterir. Modelinizi düzeltin ve Cura'da tekrar açın."
  3159. msgctxt "@tooltip"
  3160. msgid "The material in this extruder."
  3161. msgstr "Bu ekstruderdeki malzeme."
  3162. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3163. 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."
  3164. msgstr "Cura projesiyle ilişkilendirilen malzeme paketi Ultimaker Marketplace’te bulunamadı. Cura proje dosyasında saklanan kısmi malzeme profili tanımını, riski göze alarak kullanın."
  3165. msgctxt "@info:tooltip"
  3166. msgid "The maximum distance of each pixel from \"Base.\""
  3167. msgstr "Her bir pikselin “Taban”dan en yüksek mesafesi."
  3168. msgctxt "@label (%1 is a number)"
  3169. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3170. msgstr "Yeni filaman çapı %1 mm olarak ayarlandı ve bu değer, geçerli ekstrüder ile uyumlu değil. Devam etmek istiyor musunuz?"
  3171. msgctxt "@tooltip"
  3172. msgid "The nozzle inserted in this extruder."
  3173. msgstr "Bu ekstrudere takılan nozül."
  3174. msgctxt "@label"
  3175. msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  3176. msgstr "Baskı dolgu malzemesinin deseni:"
  3177. "İşlevsel olmayan modellerin hızlı baskıları için çizgi, zikzak veya aydınlatma dolgusunu seçin."
  3178. "Çok fazla strese maruz kalmayan işlevsel parçalar için ızgara veya üçgen veya üç altıgen öneriyoruz."
  3179. "Birden fazla yönde yüksek sağlamlık gerektiren işlevsel 3D baskılar için kübik, kübik alt bölüm, çeyrek kübik, sekizli ve dönel kullanın."
  3180. msgctxt "@info:tooltip"
  3181. 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."
  3182. 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."
  3183. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3184. msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file."
  3185. msgstr "Cura projesiyle ilişkili eklenti, Ultimaker Marketplace'te bulunamadı. Projeyi dilimlemek için eklenti gerekebileceğinden dosyayı doğru şekilde dilimlemek mümkün olmayabilir."
  3186. msgctxt "@info:title"
  3187. msgid "The print job was successfully submitted"
  3188. msgstr "Baskı işi başarıyla gönderildi"
  3189. msgctxt "@label"
  3190. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  3191. msgstr "Yazıcı %1 atandı, fakat iş bilinmeyen bir malzeme yapılandırması içeriyor."
  3192. msgctxt "@label"
  3193. msgid "The printer at this address has not responded yet."
  3194. msgstr "Bu adresteki yazıcı henüz yanıt vermedi."
  3195. msgctxt "@label"
  3196. msgid "The printer at this address has not yet responded."
  3197. msgstr "Bu adresteki yazıcı henüz yanıt vermedi."
  3198. msgctxt "@info:status"
  3199. msgid "The printer is not connected."
  3200. msgstr "Yazıcı bağlı değil."
  3201. msgctxt "@label"
  3202. msgid "The printer(s) below cannot be connected because they are part of a group"
  3203. msgstr "Aşağıdaki yazıcı(lar) bir grubun parçası olmadıkları için bağlanamıyor"
  3204. msgctxt "@message"
  3205. msgid "The provided state is not correct."
  3206. msgstr "Sağlanan durum doğru değil."
  3207. msgctxt "@text:window"
  3208. msgid "The release notes could not be opened."
  3209. msgstr "Sürüm notları açılamadı."
  3210. msgctxt "@text:error"
  3211. msgid "The response from Digital Factory appears to be corrupted."
  3212. msgstr "Digital Factory'den gelen yanıt bozuk görünüyor."
  3213. msgctxt "@text:error"
  3214. msgid "The response from Digital Factory is missing important information."
  3215. msgstr "Digital Factory'den gelen yanıtta önemli bilgiler eksik."
  3216. msgctxt "@tooltip"
  3217. 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."
  3218. 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."
  3219. msgctxt "@tooltip"
  3220. 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."
  3221. 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."
  3222. msgctxt "@tooltip of temperature input"
  3223. msgid "The temperature to pre-heat the bed to."
  3224. msgstr "Yatağın ön ısıtma sıcaklığı."
  3225. msgctxt "@tooltip of temperature input"
  3226. msgid "The temperature to pre-heat the hotend to."
  3227. msgstr "Sıcak ucun ön ısıtma sıcaklığı."
  3228. msgctxt "@text"
  3229. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  3230. 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."
  3231. msgctxt "@info:tooltip"
  3232. msgid "The width in millimeters on the build plate"
  3233. msgstr "Yapı plakasındaki milimetre cinsinden genişlik"
  3234. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  3235. msgid "Theme*:"
  3236. msgstr "Tema*:"
  3237. msgctxt "@info:status"
  3238. msgid "There are no file formats available to write with!"
  3239. msgstr "Yazılacak dosya biçimleri mevcut değil!"
  3240. msgctxt "@label"
  3241. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  3242. msgstr "Kuyrukta baskı işi yok. Bir iş eklemek için dilimleme yapın ve gönderin."
  3243. msgctxt "@tooltip"
  3244. msgid "There are no profiles matching the configuration of this extruder."
  3245. msgstr "Bu ekstrüderin yapılandırmasıyla eşleşen profil yok."
  3246. msgctxt "@info:status"
  3247. msgid "There is no active printer yet."
  3248. msgstr "Henüz etkin bir yazıcı yok."
  3249. msgctxt "@label"
  3250. msgid "There is no printer found over your network."
  3251. msgstr "Ağınızda yazıcı bulunamadı."
  3252. msgctxt "@error"
  3253. msgid "There is no workspace yet to write. Please add a printer first."
  3254. msgstr "Henüz yazılacak bir çalışma alanı yok. Lütfen önce bir yazıcı ekleyin."
  3255. msgctxt "@info:backup_status"
  3256. msgid "There was an error trying to restore your backup."
  3257. msgstr "Yedeklemeniz geri yüklenirken bir hata oluştu."
  3258. msgctxt "@info:backup_status"
  3259. msgid "There was an error while creating your backup."
  3260. msgstr "Yedeklemeniz oluşturulurken bir hata oluştu."
  3261. msgctxt "@info:backup_status"
  3262. msgid "There was an error while uploading your backup."
  3263. msgstr "Yedeklemeniz yüklenirken bir hata oluştu."
  3264. msgctxt "@label"
  3265. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3266. 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."
  3267. msgctxt "@text:window"
  3268. msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?"
  3269. msgstr "Bu bir Cura Universal proje dosyasıdır. Cura projesi veya Cura Universal Project olarak mı açmak istiyorsunuz yoksa içindeki modelleri mi aktarmak istiyorsunuz?"
  3270. msgctxt "@text:window"
  3271. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3272. msgstr "Bu bir Cura proje dosyasıdır. Bir proje olarak açmak mı yoksa içindeki modelleri içe aktarmak mı istiyorsunuz?"
  3273. msgctxt "@label"
  3274. msgid "This material is linked to %1 and shares some of its properties."
  3275. msgstr "Bu malzeme %1’e bağlıdır ve özelliklerinden bazılarını paylaşır."
  3276. msgctxt "@label"
  3277. msgid "This package will be installed after restarting."
  3278. msgstr "Bu paket yeniden başlatmanın ardından kurulacak."
  3279. msgctxt "@label"
  3280. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3281. msgstr "Bu yazıcı bilinmeyen bir yazıcı olduğu veya bir grubun ana makinesi olmadığı için eklenemiyor."
  3282. msgctxt "info:status"
  3283. msgid "This printer is not linked to the Digital Factory:"
  3284. msgid_plural "These printers are not linked to the Digital Factory:"
  3285. msgstr[0] "Bu yazıcı Digital Factory ile bağlantılandırılmamış:"
  3286. msgstr[1] "Bu yazıcılar Digital Factory ile bağlantılandırılmamış:"
  3287. msgctxt "@status"
  3288. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  3289. msgstr "Yazıcı hesabınızla bağlanmamış. Bağlantı kurmak için lütfen Ultimaker Digital Factory bölümünü ziyaret edin."
  3290. msgctxt "@label"
  3291. msgid "This printer is not set up to host a group of printers."
  3292. msgstr "Bu yazıcı, bir yazıcı grubunu barındırmak için ayarlı değildir."
  3293. msgctxt "@label"
  3294. msgid "This printer is the host for a group of %1 printers."
  3295. msgstr "Bu yazıcı, %1 yazıcı grubunun ana makinesidir."
  3296. msgctxt "@info:status Don't translate the XML tags <filename>!"
  3297. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  3298. msgstr "Bu <filename>{0}</filename> profili yanlış veri içeriyor, içeri aktarılamadı."
  3299. msgctxt "@action:label"
  3300. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3301. 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."
  3302. msgctxt "@label"
  3303. msgid "This project contains materials or plugins that are currently not installed in Cura.<br/>Install the missing packages and reopen the project."
  3304. msgstr "Bu proje şu anda Cura'da yüklü olmayan materyal veya eklentiler içeriyor.<br/>Eksik paketleri kurun ve projeyi yeniden açın."
  3305. msgctxt "@label"
  3306. msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile."
  3307. msgstr "Bu ayarın değeri profilden farklıdır."
  3308. "Profil değerini yenilemek için tıklayın."
  3309. msgctxt "@item:tooltip"
  3310. msgid "This setting has been hidden by the active machine and will not be visible."
  3311. msgstr "Bu ayar etkin makine tarafından saklanmış ve görünür olmayacak."
  3312. msgctxt "@item:tooltip %1 is list of setting names"
  3313. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  3314. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  3315. msgstr[0] "Bu ayar %1 değerle saklanmış. Ayarı görünür yapmak için ayar değerini değiştirin."
  3316. msgstr[1] "Bu ayar %1 değerle saklanmış. Ayarı görünür yapmak için bu ayarların değerini değiştirin."
  3317. msgctxt "@label"
  3318. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  3319. 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."
  3320. msgctxt "@label"
  3321. msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value."
  3322. msgstr "Bu ayar normal olarak yapılır ama şu anda mutlak değer ayarı var."
  3323. "Hesaplanan değeri yenilemek için tıklayın."
  3324. msgctxt "@label"
  3325. msgid "This setting is not used because all the settings that it influences are overridden."
  3326. msgstr "Etkilediği tüm ayarlar geçersiz kılındığı için bu ayar kullanılmamaktadır."
  3327. msgctxt "@label"
  3328. msgid "This setting is resolved from conflicting extruder-specific values:"
  3329. msgstr "Bu ayar, çakışan ekstrüdere özgü değerlerden çözümlenir:"
  3330. msgctxt "@tooltip Don't translate 'Universal Cura Project'"
  3331. msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk."
  3332. msgstr "Bu ayar, Universal Cura Project'e aktarım sırasında iyi performans göstermeyebilir. Kullanıcıların bu ayarı riski kendilerine ait olmak üzere eklemeleri istenir."
  3333. msgctxt "@tooltip Don't translate 'Universal Cura Project'"
  3334. msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk."
  3335. msgstr "Bu ayar Universal Cura Project'e aktarım sırasında iyi performans göstermeyebilir. Kullanıcılardan riski kendilerine ait olmak üzere eklemeleri istenir."
  3336. msgctxt "@info:warning"
  3337. msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}"
  3338. msgstr "Bu sürüm üretimde kullanıma yönelik değildir. Herhangi bir sorunla karşılaşırsanız, lütfen tam sürümü {self.getVersion()} belirterek GitHub sayfamıza bildirin."
  3339. msgctxt "@label"
  3340. msgid "Time estimation"
  3341. msgstr "Süre tahmini"
  3342. msgctxt "@message"
  3343. msgid "Timeout when authenticating with the account server."
  3344. msgstr "Hesap sunucusuyla kimlik doğrulaması yapılırken zaman aşımı oluştu."
  3345. msgctxt "@text"
  3346. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  3347. 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."
  3348. msgctxt "info:status"
  3349. msgid "To establish a connection, please visit the {website_link}"
  3350. msgstr "Bağlantı kurmak için lütfen {website_link} adresini ziyaret edin"
  3351. msgctxt "@label"
  3352. 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."
  3353. 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."
  3354. msgctxt "@label"
  3355. 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."
  3356. 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."
  3357. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3358. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  3359. msgstr "{printer_name} yazıcısını kalıcı olarak kaldırmak için {digital_factory_link} adresini ziyaret edin"
  3360. msgctxt "@action:inmenu"
  3361. msgid "Toggle Full Screen"
  3362. msgstr "Tam Ekrana Geç"
  3363. msgctxt "@label"
  3364. msgid "Top / Bottom"
  3365. msgstr "Üst / Alt"
  3366. msgctxt "@action:inmenu menubar:view"
  3367. msgid "Top View"
  3368. msgstr "Yukarıdan Görünüm"
  3369. msgctxt "@info:tooltip"
  3370. msgid "Top View"
  3371. msgstr "Yukarıdan Görünüm"
  3372. msgctxt "@label"
  3373. msgid "Total print time"
  3374. msgstr "Toplam yazdırma süresi"
  3375. msgctxt "@action:tooltip"
  3376. msgid "Track the print in Ultimaker Digital Factory"
  3377. msgstr "Ultimaker Digital Factory'de baskıyı izleyin"
  3378. msgctxt "@item:inlistbox"
  3379. msgid "Translucency"
  3380. msgstr "Yarı saydamlık"
  3381. msgctxt "@tooltip"
  3382. msgid "Travel"
  3383. msgstr "Hareket"
  3384. msgctxt "@label"
  3385. msgid "Travels"
  3386. msgstr "Geçişler"
  3387. msgctxt "@info:backup_failed"
  3388. msgid "Tried to restore a Cura backup that is higher than the current version."
  3389. msgstr "Geçerli sürümünüzden yüksek bir sürüme sahip bir Cura yedeği geri yüklenmeye çalışıldı."
  3390. msgctxt "@info:backup_failed"
  3391. msgid "Tried to restore a Cura backup without having proper data or meta data."
  3392. msgstr "Uygun veri veya meta veri olmadan Cura yedeği geri yüklenmeye çalışıldı."
  3393. msgctxt "@button"
  3394. msgid "Troubleshooting"
  3395. msgstr "Sorun giderme"
  3396. msgctxt "@label"
  3397. msgid "Troubleshooting"
  3398. msgstr "Sorun giderme"
  3399. msgctxt "@button"
  3400. msgid "Try again"
  3401. msgstr "Yeniden dene"
  3402. msgctxt "@action:label"
  3403. msgid "Type"
  3404. msgstr "Tür"
  3405. msgctxt "@label"
  3406. msgid "Type"
  3407. msgstr "Tür"
  3408. msgctxt "@item:inmenu"
  3409. msgid "USB printing"
  3410. msgstr "USB yazdırma"
  3411. msgctxt "@button"
  3412. msgid "UltiMaker Account"
  3413. msgstr "UltiMaker hesabı"
  3414. msgctxt "@info"
  3415. msgid "UltiMaker Certified Material"
  3416. msgstr "UltiMaker Sertifikalı Malzeme"
  3417. msgctxt "@text:window"
  3418. 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:"
  3419. 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:"
  3420. msgctxt "@item:inlistbox"
  3421. msgid "UltiMaker Format Package"
  3422. msgstr "UltiMaker Biçim Paketi"
  3423. msgctxt "@info"
  3424. msgid "UltiMaker Verified Package"
  3425. msgstr "UltiMaker Tarafından Doğrulanmış Paket"
  3426. msgctxt "@info"
  3427. msgid "UltiMaker Verified Plug-in"
  3428. msgstr "UltiMaker Tarafından Doğrulanmış Eklenti"
  3429. msgctxt "@button"
  3430. msgid "UltiMaker printer"
  3431. msgstr "UltiMaker yazıcı"
  3432. msgctxt "@label:button"
  3433. msgid "UltiMaker support"
  3434. msgstr "UltiMaker desteği"
  3435. msgctxt "info:name"
  3436. msgid "Ultimaker Digital Factory"
  3437. msgstr "Ultimaker Digital Factory"
  3438. msgctxt "@info:status"
  3439. msgid "Unable to add the profile."
  3440. msgstr "Profil eklenemiyor."
  3441. msgctxt "@info:status"
  3442. msgid "Unable to find a location within the build volume for all objects"
  3443. msgstr "Yapılan hacim içinde tüm nesneler için konum bulunamadı"
  3444. msgctxt "@info:plugin_failed"
  3445. msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}"
  3446. msgstr "{self._plugin_id} için yürütülebilir yerel EnginePlugin sunucusu bulunamıyor"
  3447. msgctxt "@info:plugin_failed"
  3448. msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied."
  3449. msgstr "Çalışan EnginePlugin sonlandırılamıyor: {self._plugin_id}"
  3450. "Erişim reddedildi."
  3451. msgctxt "@info"
  3452. msgid "Unable to reach the UltiMaker account server."
  3453. msgstr "Ultimaker hesabı sunucusuna ulaşılamadı."
  3454. msgctxt "@text"
  3455. msgid "Unable to read example data file."
  3456. msgstr "Örnek veri dosyası okunamıyor."
  3457. msgctxt "@info:title"
  3458. msgid "Unable to slice"
  3459. msgstr "Dilimlenemedi"
  3460. msgctxt "@label:PrintjobStatus"
  3461. msgid "Unable to slice"
  3462. msgstr "Dilimlenemedi"
  3463. msgctxt "@info:status"
  3464. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  3465. msgstr "İlk direk veya ilk konum(lar) geçersiz olduğu için dilimlenemiyor."
  3466. msgctxt "@info:status"
  3467. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  3468. msgstr "Etkisizleştirilmiş Extruder %s ile ilgili nesneler olduğundan dilimleme yapılamıyor."
  3469. msgctxt "@info:status"
  3470. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  3471. msgstr "Modele özgü ayarlar nedeniyle dilimlenemedi. Şu ayarlar bir veya daha fazla modelde hataya yol açıyor: {error_labels}"
  3472. msgctxt "@info:status"
  3473. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  3474. msgstr "Mevcut malzeme, seçilen makine veya yapılandırma ile uyumlu olmadığından mevcut malzeme ile dilimlenemedi."
  3475. msgctxt "@info:status"
  3476. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  3477. msgstr "Geçerli ayarlarla dilimlenemiyor. Şu ayarlarda hata var: {0}"
  3478. msgctxt "@info"
  3479. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  3480. 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."
  3481. msgctxt "@info:error"
  3482. msgid "Unable to write to file: {0}"
  3483. msgstr "Dosyaya yazılamıyor: {0}"
  3484. msgctxt "@label:status"
  3485. msgid "Unavailable"
  3486. msgstr "Mevcut değil"
  3487. msgctxt "@label"
  3488. msgid "Unavailable printer"
  3489. msgstr "Kullanım dışı yazıcı"
  3490. msgctxt "@action:inmenu menubar:edit"
  3491. msgid "Ungroup Models"
  3492. msgstr "Model Grubunu Çöz"
  3493. msgctxt "@button"
  3494. msgid "Uninstall"
  3495. msgstr "Kaldır"
  3496. msgctxt "@title:column Unit of measurement"
  3497. msgid "Unit"
  3498. msgstr "Birim"
  3499. msgctxt "@item:inlistbox"
  3500. msgid "Universal Cura Project"
  3501. msgstr "Universal Cura Project"
  3502. msgctxt "@action:description Don't translate 'Universal Cura Project'"
  3503. msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing."
  3504. msgstr "Universal Cura Project dosyaları, konumsal veriler ve seçilen ayarlar korunarak farklı 3D yazıcılarda yazdırılabilir. Dışa aktarıldığı zaman baskı tablasından bulunan tüm modeller mevcut konumları, yönelimleri ve ölçekleriyle birlikte dahil edilecektir. Düzgün yazdırmayı sağlamak için hangi ekstruder başına veya model başına ayarların dahil olması gerektiğini de seçebilirsiniz."
  3505. msgctxt "@label Description for development tool"
  3506. msgid "Universal build system configuration"
  3507. msgstr "Evrensel yapı sistemi yapılandırması"
  3508. msgctxt "@label"
  3509. msgid "Unknown"
  3510. msgstr "Bilinmiyor"
  3511. msgctxt "@label unknown version of Cura"
  3512. msgid "Unknown"
  3513. msgstr "Bilinmiyor"
  3514. msgctxt "@label:property"
  3515. msgid "Unknown Author"
  3516. msgstr "Bilinmeyen Yazar"
  3517. msgctxt "@label:property"
  3518. msgid "Unknown Package"
  3519. msgstr "Bilinmeyen Paket"
  3520. msgctxt "@error:send"
  3521. msgid "Unknown error code when uploading print job: {0}"
  3522. msgstr "Baskı işi yüklenirken bilinmeyen hata kodu: {0}"
  3523. msgctxt "@text"
  3524. msgid "Unknown error."
  3525. msgstr "Bilinmeyen hata."
  3526. msgctxt "@label"
  3527. msgid "Unlink Material"
  3528. msgstr "Malzemeyi Ayır"
  3529. msgctxt "@label:status"
  3530. msgid "Unreachable"
  3531. msgstr "Ulaşılamıyor"
  3532. msgctxt "@label"
  3533. msgid "Untitled"
  3534. msgstr "Başlıksız"
  3535. msgctxt "@text Print job name"
  3536. msgid "Untitled"
  3537. msgstr "Başlıksız"
  3538. msgctxt "@button"
  3539. msgid "Update"
  3540. msgstr "Güncelle"
  3541. msgctxt "@action"
  3542. msgid "Update Firmware"
  3543. msgstr "Aygıt Yazılımını Güncelle"
  3544. msgctxt "@title"
  3545. msgid "Update Firmware"
  3546. msgstr "Aygıt Yazılımını Güncelle"
  3547. msgctxt "@action:ComboBox Update/override existing profile"
  3548. msgid "Update existing"
  3549. msgstr "Var olanları güncelleştir"
  3550. msgctxt "@action:tooltip"
  3551. msgid "Update profile with current settings/overrides"
  3552. msgstr "Profili geçerli ayarlar/geçersiz kılmalar ile güncelle"
  3553. msgctxt "@action:button"
  3554. msgid "Update profile."
  3555. msgstr "Profili güncelleyin."
  3556. msgctxt "@info:title"
  3557. msgid "Update your printer"
  3558. msgstr "Yazıcınızı güncelleyin"
  3559. msgctxt "@label"
  3560. msgid "Updates"
  3561. msgstr "Güncellemeler"
  3562. msgctxt "@label"
  3563. msgid "Updating firmware."
  3564. msgstr "Aygıt yazılımı güncelleniyor."
  3565. msgctxt "@button"
  3566. msgid "Updating..."
  3567. msgstr "Güncelleniyor..."
  3568. msgctxt "@action:button"
  3569. msgid "Upload custom Firmware"
  3570. msgstr "Özel Aygıt Yazılımı Yükle"
  3571. msgctxt "@info:status"
  3572. msgid "Uploading print job to printer."
  3573. msgstr "Baskı işi yazıcıya yükleniyor."
  3574. msgctxt "@info:backup_status"
  3575. msgid "Uploading your backup..."
  3576. msgstr "Yedeklemeniz yükleniyor..."
  3577. msgctxt "@option:check"
  3578. msgid "Use a single instance of Cura"
  3579. msgstr "Tek bir Cura örneği kullan"
  3580. msgctxt "@label"
  3581. msgid "Use glue for better adhesion with this material combination."
  3582. msgstr "Bu malzeme kombinasyonuyla daha iyi yapıştırma için yapıştırıcı kullanın."
  3583. msgctxt "@label"
  3584. msgid "User Agreement"
  3585. msgstr "Kullanıcı Anlaşması"
  3586. msgctxt "@label Description for application dependency"
  3587. msgid "Utility functions, including an image loader"
  3588. msgstr "Kullanım işlevleri, bir resim yükleyici dâhil"
  3589. msgctxt "@label Description for application dependency"
  3590. msgid "Utility library, including Voronoi generation"
  3591. msgstr "Kullanım kütüphanesi, Voronoi oluşturma dâhil"
  3592. msgctxt "@title:column"
  3593. msgid "Value"
  3594. msgstr "Değer"
  3595. msgctxt "@button"
  3596. msgid "View printers in Digital Factory"
  3597. msgstr "Yazıcıları Digital Factory’de görüntüleyin"
  3598. msgctxt "@label"
  3599. msgid "View type"
  3600. msgstr "Görüntüleme tipi"
  3601. msgctxt "@label link to technical assistance"
  3602. msgid "View user manuals online"
  3603. msgstr "Kullanım kılavuzlarını çevrimiçi olarak görüntüle"
  3604. msgctxt "@label"
  3605. msgid "Viewport behavior"
  3606. msgstr "Görünüm şekli"
  3607. msgctxt "@action:inmenu"
  3608. msgid "Visible Settings"
  3609. msgstr "Görünür ayarlar"
  3610. msgctxt "@button"
  3611. msgid "Visit plug-in website"
  3612. msgstr "Eklenti web sitesini ziyaret edin"
  3613. msgctxt "@tooltip:button"
  3614. msgid "Visit the UltiMaker website."
  3615. msgstr "UltiMaker web sitesini ziyaret edin."
  3616. msgctxt "@label"
  3617. msgid "Visual"
  3618. msgstr "Görsel"
  3619. msgctxt "@label"
  3620. msgid "Waiting for"
  3621. msgstr "Bekleniyor"
  3622. msgctxt "@label"
  3623. msgid "Waiting for Cloud response"
  3624. msgstr "Bulut yanıtı bekleniyor"
  3625. msgctxt "@button"
  3626. msgid "Waiting for new printers"
  3627. msgstr "Yeni yazıcılar bekleniyor"
  3628. msgctxt "@button"
  3629. msgid "Want more?"
  3630. msgstr "Daha fazla seçenek görüntülemek ister misiniz?"
  3631. msgctxt "@info:title"
  3632. msgid "Warning"
  3633. msgstr "Uyarı"
  3634. msgctxt "@info:status"
  3635. 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."
  3636. 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."
  3637. msgctxt "@text:window"
  3638. 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."
  3639. 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."
  3640. msgctxt "@text:window"
  3641. 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?"
  3642. 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?"
  3643. msgctxt "@info"
  3644. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  3645. 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."
  3646. msgctxt "@button"
  3647. msgid "Website"
  3648. msgstr "Web sitesi"
  3649. msgctxt "@label"
  3650. msgid "What printer would you like to setup?"
  3651. msgstr "Hangi yazıcıyı kurmak istersiniz?"
  3652. msgctxt "@info:tooltip"
  3653. msgid "What type of camera navigation should be used?"
  3654. msgstr "Ne tür kamera navigasyonu kullanılmalı?"
  3655. msgctxt "@info:tooltip"
  3656. msgid "What type of camera rendering should be used?"
  3657. msgstr "Ne tür bir kamera oluşturma işlemi kullanılmalıdır?"
  3658. msgctxt "@action:inmenu menubar:help"
  3659. msgid "What's New"
  3660. msgstr "Yenilikler"
  3661. msgctxt "@label"
  3662. msgid "What's New"
  3663. msgstr "Yenilikler"
  3664. msgctxt "@title:window"
  3665. msgid "What's New"
  3666. msgstr "Yenilikler"
  3667. msgctxt "@info:tooltip"
  3668. msgid "When checking for updates, check for both stable and for beta releases."
  3669. msgstr "Güncellemeleri kontrol ederken hem istikrarlı hem de beta sürümleri kontrol edin."
  3670. msgctxt "@info:tooltip"
  3671. msgid "When checking for updates, only check for stable releases."
  3672. msgstr "Güncellemeleri kontrol ederken yalnızca istikrarlı sürümleri kontrol edin."
  3673. msgctxt "@info:tooltip"
  3674. 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."
  3675. 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."
  3676. msgctxt "@button"
  3677. msgid "Why do I need to sync material profiles?"
  3678. msgstr "Malzeme profillerini neden senkronize etmem gerekiyor?"
  3679. msgctxt "@action:label"
  3680. msgid "Width (mm)"
  3681. msgstr "Genişlik (mm)"
  3682. msgctxt "@label"
  3683. msgid "X (Width)"
  3684. msgstr "X (Genişlik)"
  3685. msgctxt "@label"
  3686. msgid "X max"
  3687. msgstr "X maks"
  3688. msgctxt "@label"
  3689. msgid "X min"
  3690. msgstr "X min"
  3691. msgctxt "@item:inlistbox"
  3692. msgid "X-Ray view"
  3693. msgstr "Röntgen Görüntüsü"
  3694. msgctxt "@label"
  3695. msgid "X/Y"
  3696. msgstr "X/Y"
  3697. msgctxt "@item:inlistbox"
  3698. msgid "X3D File"
  3699. msgstr "X3D Dosyası"
  3700. msgctxt "@label"
  3701. msgid "Y (Depth)"
  3702. msgstr "Y (Derinlik)"
  3703. msgctxt "@label"
  3704. msgid "Y max"
  3705. msgstr "Y maks"
  3706. msgctxt "@label"
  3707. msgid "Y min"
  3708. msgstr "Y min"
  3709. msgctxt "@info"
  3710. msgid "Yes"
  3711. msgstr "Evet"
  3712. msgctxt "@label"
  3713. msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?"
  3714. msgstr "Tüm yazıcıları Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz."
  3715. "Devam etmek istediğinizden emin misiniz?"
  3716. msgctxt "@label"
  3717. msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?"
  3718. msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?"
  3719. msgstr[0] "{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\nDevam etmek istediğinizden emin misiniz?"
  3720. msgstr[1] "{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\nDevam etmek istediğinizden emin misiniz?"
  3721. msgctxt "@info:status"
  3722. msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware."
  3723. 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."
  3724. msgctxt "@info:status"
  3725. 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."
  3726. 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."
  3727. msgctxt "@empty_state"
  3728. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  3729. msgstr "Şu anda yedeklemeniz yok. Oluşturmak için “Şimdi Yedekle” düğmesini kullanın."
  3730. msgctxt "@text:window, %1 is a profile name"
  3731. 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'."
  3732. msgstr "Bazı profil ayarlarını özelleştirdiniz."
  3733. "Profiller arasında geçiş yapıldıktan sonra bu değişiklikleri tutmak ister misiniz?"
  3734. "Alternatif olarak, '%1' üzerinden varsayılanları yüklemek için değişiklikleri silebilirsiniz."
  3735. msgctxt "@label"
  3736. msgid "You need to accept the license to install the package"
  3737. msgstr "Paketi yüklemek için lisansı kabul etmeniz gerekir"
  3738. msgctxt "@info:generic"
  3739. msgid "You need to quit and restart {} before changes have effect."
  3740. msgstr "Değişikliklerin etkili olması için {} uygulamasını kapatarak yeniden başlatmalısınız."
  3741. msgctxt "@dialog:info"
  3742. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  3743. msgstr "Yedeklemeniz geri yüklenmeden öne Cura’yı yeniden başlatmalısınız. Cura’yı şimdi kapatmak istiyor musunuz?"
  3744. msgctxt "@info:status"
  3745. msgid "You will receive a confirmation via email when the print job is approved"
  3746. msgstr "Baskı işi onaylandığında e-posta üzerinden bir onay alacaksınız"
  3747. msgctxt "@info:backup_status"
  3748. msgid "Your backup has finished uploading."
  3749. msgstr "Yedeklemenizin yüklenmesi tamamlandı."
  3750. msgctxt "@action:label"
  3751. msgid "Your current settings match the selected profile."
  3752. msgstr "Geçerli ayarlarınız seçilen profille uyumlu."
  3753. msgctxt "@info"
  3754. msgid "Your new printer will automatically appear in Cura"
  3755. msgstr "Yeni yazıcınız Cura’da otomatik olarak görünecektir"
  3756. msgctxt "@info:status"
  3757. msgid "Your printer <b>{printer_name}</b> could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  3758. msgstr "<b>{printer_name}</b> adlı yazıcınız bulut aracılığıyla bağlanamadı."
  3759. " Baskı kuyruğunuzu yönetin ve yazıcınızı Digital Factory'ye bağlayarak baskılarınızı dilediğiniz yerden takip edin"
  3760. msgctxt "@label"
  3761. msgid "Z"
  3762. msgstr "Z"
  3763. msgctxt "@label"
  3764. msgid "Z (Height)"
  3765. msgstr "Z (Yükseklik)"
  3766. msgctxt "@label Description for application dependency"
  3767. msgid "ZeroConf discovery library"
  3768. msgstr "ZeroConf keşif kitaplığı"
  3769. msgctxt "@action:button"
  3770. msgid "Zoom toward mouse direction"
  3771. msgstr "Farenin hareket yönüne göre yakınlaştır"
  3772. msgctxt "@info:tooltip"
  3773. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3774. msgstr "Fareye doğru yakınlaştırma yapılması ortografik perspektifte desteklenmez."
  3775. msgctxt "@text Placeholder for the username if it has been deleted"
  3776. msgid "deleted user"
  3777. msgstr "silinmiş kullanıcı"
  3778. msgctxt "@item:inlistbox"
  3779. msgid "glTF Binary"
  3780. msgstr "glTF Binary"
  3781. msgctxt "@item:inlistbox"
  3782. msgid "glTF Embedded JSON"
  3783. msgstr "glTF Embedded JSON"
  3784. msgctxt "@label"
  3785. msgid "max"
  3786. msgstr "maks"
  3787. msgctxt "@label"
  3788. msgid "min"
  3789. msgstr "min"
  3790. msgctxt "@label"
  3791. msgid "mm"
  3792. msgstr "mm"
  3793. msgctxt "@label"
  3794. msgid "s"
  3795. msgstr "s"
  3796. msgctxt "@info:status"
  3797. msgid "today"
  3798. msgstr "bugün"
  3799. msgctxt "@info:status"
  3800. msgid "tomorrow"
  3801. msgstr "yarın"
  3802. msgctxt "@label"
  3803. msgid "version: %1"
  3804. msgstr "sürüm: %1"
  3805. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3806. msgid "{printer_name} will be removed until the next account sync."
  3807. msgstr "{printer_name} yazıcısı bir sonraki hesap senkronizasyonuna kadar kaldırılacak."
  3808. msgctxt "@info:generic"
  3809. msgid "{} plugins failed to download"
  3810. msgstr "{} eklenti indirilemedi"
  3811. msgctxt "description"
  3812. msgid "Manages network connections to UltiMaker networked printers."
  3813. msgstr "UltiMaker ağ bağlantılı yazıcılara olan ağ bağlantılarını yönetir."
  3814. msgctxt "name"
  3815. msgid "UltiMaker Network Connection"
  3816. msgstr "Ultimaker Ağ Bağlantısı"
  3817. msgctxt "description"
  3818. msgid "Provides support for importing profiles from g-code files."
  3819. msgstr "G-code dosyalarından profilleri içe aktarmak için destek sağlar."
  3820. msgctxt "name"
  3821. msgid "G-code Profile Reader"
  3822. msgstr "G-code Profil Okuyucu"
  3823. msgctxt "description"
  3824. msgid "Provides a normal solid mesh view."
  3825. msgstr "Normal gerçek bir ağ görünümü sağlar."
  3826. msgctxt "name"
  3827. msgid "Solid View"
  3828. msgstr "Gerçek Görünüm"
  3829. msgctxt "description"
  3830. msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps"
  3831. msgstr "Yüksek akışlı sıçramaları sınırlamak amacıyla akışı kademeli olarak düzelten CuraEngine eklentisi"
  3832. msgctxt "name"
  3833. msgid "CuraEngineGradualFlow"
  3834. msgstr "CuraEngineGradualFlow"
  3835. msgctxt "description"
  3836. msgid "Provides support for reading 3MF files."
  3837. msgstr "3MF dosyalarının okunması için destek sağlar."
  3838. msgctxt "name"
  3839. msgid "3MF Reader"
  3840. msgstr "3MF Okuyucu"
  3841. msgctxt "description"
  3842. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  3843. msgstr "G-Code’ları kabul eder ve bir yazıcıya gönderir. Eklenti aynı zamanda üretici sürümünü güncelleyebilir."
  3844. msgctxt "name"
  3845. msgid "USB printing"
  3846. msgstr "USB yazdırma"
  3847. msgctxt "description"
  3848. msgid "Checks for firmware updates."
  3849. msgstr "Bellenim güncellemelerini denetler."
  3850. msgctxt "name"
  3851. msgid "Firmware Update Checker"
  3852. msgstr "Bellenim Güncelleme Denetleyicisi"
  3853. msgctxt "description"
  3854. msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website."
  3855. msgstr "Uygulamanın uzantılarını yönetir ve Ultimaker web sitesinden uzantıların incelenmesini sağlar."
  3856. msgctxt "name"
  3857. msgid "Marketplace"
  3858. msgstr "Mağaza"
  3859. msgctxt "description"
  3860. msgid "Backup and restore your configuration."
  3861. msgstr "Yapılandırmanızı yedekleyin ve geri yükleyin."
  3862. msgctxt "name"
  3863. msgid "Cura Backups"
  3864. msgstr "Cura Yedeklemeleri"
  3865. msgctxt "description"
  3866. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  3867. msgstr "Makine ayarlarının değiştirilmesini sağlar (yapı hacmi, nozül boyutu vb.)"
  3868. msgctxt "name"
  3869. msgid "Machine Settings Action"
  3870. msgstr "Makine Ayarları eylemi"
  3871. msgctxt "description"
  3872. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  3873. msgstr "Yapılandırmaları Cura 2.5’ten Cura 2.6’ya yükseltir."
  3874. msgctxt "name"
  3875. msgid "Version Upgrade 2.5 to 2.6"
  3876. msgstr "2.5’ten 2.6’ya Sürüm Yükseltme"
  3877. msgctxt "description"
  3878. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  3879. msgstr "Yapılandırmaları Cura 4.7'den Cura 4.8'e yükseltir."
  3880. msgctxt "name"
  3881. msgid "Version Upgrade 4.7 to 4.8"
  3882. msgstr "4.7'den 4.8'e Sürüm Yükseltme"
  3883. msgctxt "description"
  3884. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  3885. msgstr "Yapılandırmaları Cura 4.4'ten Cura 4.5'e yükseltir."
  3886. msgctxt "name"
  3887. msgid "Version Upgrade 4.4 to 4.5"
  3888. msgstr "4.4'ten 4.5'e Sürüm Yükseltme"
  3889. msgctxt "description"
  3890. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  3891. msgstr "Yapılandırmaları Cura 3.0'dan Cura 3.1'e yükseltir."
  3892. msgctxt "name"
  3893. msgid "Version Upgrade 3.0 to 3.1"
  3894. msgstr "3.0'dan 3.1'e Sürüm Yükseltme"
  3895. msgctxt "description"
  3896. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  3897. msgstr "Yapılandırmaları Cura 4.11'den Cura 4.12'ye yükseltir."
  3898. msgctxt "name"
  3899. msgid "Version Upgrade 4.11 to 4.12"
  3900. msgstr "4.11'den 4.12'ye Sürüm Yükseltme"
  3901. msgctxt "description"
  3902. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  3903. msgstr "Yapılandırmaları Cura 4.1'den Cura 4.2'ye yükseltir."
  3904. msgctxt "name"
  3905. msgid "Version Upgrade 4.1 to 4.2"
  3906. msgstr "Sürüm 4.1'den 4.2'ye Yükseltme"
  3907. msgctxt "description"
  3908. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  3909. msgstr "Yapılandırmaları Cura 2.6’dan Cura 2.7’ye yükseltir."
  3910. msgctxt "name"
  3911. msgid "Version Upgrade 2.6 to 2.7"
  3912. msgstr "2.6’dan 2.7’ye Sürüm Yükseltme"
  3913. msgctxt "description"
  3914. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  3915. msgstr "Yapılandırmaları Cura 4.6.0'dan Cura 4.6.2'ye yükseltir."
  3916. msgctxt "name"
  3917. msgid "Version Upgrade 4.6.0 to 4.6.2"
  3918. msgstr "4.6.0'dan 4.6.2'ye Sürüm Yükseltme"
  3919. msgctxt "description"
  3920. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  3921. msgstr "Yapılandırmaları Cura 3.3’ten Cura 3.4’ya yükseltir."
  3922. msgctxt "name"
  3923. msgid "Version Upgrade 3.3 to 3.4"
  3924. msgstr "3.3'dan 3.4'e Sürüm Yükseltme"
  3925. msgctxt "description"
  3926. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  3927. msgstr "Yapılandırmaları Cura 4.8'den Cura 4.9'a yükseltir."
  3928. msgctxt "name"
  3929. msgid "Version Upgrade 4.8 to 4.9"
  3930. msgstr "4.8'den 4.9'a Sürüm Yükseltme"
  3931. msgctxt "description"
  3932. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  3933. msgstr "Yapılandırmaları Cura 4.5'ten Cura 4.6'ya yükseltir."
  3934. msgctxt "name"
  3935. msgid "Version Upgrade 4.5 to 4.6"
  3936. msgstr "4.5'ten 4.6'ya Sürüm Yükseltme"
  3937. msgctxt "description"
  3938. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  3939. msgstr "Yapılandırmaları Cura 4.2'den Cura 4.3'e yükseltir."
  3940. msgctxt "name"
  3941. msgid "Version Upgrade 4.2 to 4.3"
  3942. msgstr "4.2'den 4.3'e Sürüm Yükseltme"
  3943. msgctxt "description"
  3944. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  3945. msgstr "Yapılandırmaları Cura 3.2’ten Cura 3.3’ya yükseltir."
  3946. msgctxt "name"
  3947. msgid "Version Upgrade 3.2 to 3.3"
  3948. msgstr "3.2'dan 3.3'e Sürüm Yükseltme"
  3949. msgctxt "description"
  3950. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  3951. msgstr "Yapılandırmaları Cura 4.3'ten Cura 4.4'e yükseltir."
  3952. msgctxt "name"
  3953. msgid "Version Upgrade 4.3 to 4.4"
  3954. msgstr "4.3'ten 4.4'e Sürüm Yükseltme"
  3955. msgctxt "description"
  3956. msgid "Upgrades configurations from Cura 5.6 to Cura 5.7."
  3957. msgstr "Yapılandırmaları, Cura 5.6'dan Cura 5.7'ye yükseltir."
  3958. msgctxt "name"
  3959. msgid "Version Upgrade 5.6 to 5.7"
  3960. msgstr "5.6'dan 5.7'ye Sürüm Yükseltme"
  3961. msgctxt "description"
  3962. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  3963. msgstr "Yapılandırmaları Cura 2.1’den Cura 2.2’ye yükseltir."
  3964. msgctxt "name"
  3965. msgid "Version Upgrade 2.1 to 2.2"
  3966. msgstr "2.1’den 2.2’ye Sürüm Yükseltme"
  3967. msgctxt "description"
  3968. msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
  3969. msgstr "Cura 5.3'ten Cura 5.4'e yükseltme yapılandırmaları"
  3970. msgctxt "name"
  3971. msgid "Version Upgrade 5.3 to 5.4"
  3972. msgstr "5.3'ten 5.4'e Sürüm Yükseltme"
  3973. msgctxt "description"
  3974. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  3975. msgstr "Yapılandırmaları Cura 4.9'dan Cura 4.10'a yükseltir."
  3976. msgctxt "name"
  3977. msgid "Version Upgrade 4.9 to 4.10"
  3978. msgstr "4.9'dan 4.10'a Sürüm Yükseltme"
  3979. msgctxt "description"
  3980. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  3981. msgstr "Yapılandırmaları Cura 2.7’den Cura 3.0’a yükseltir."
  3982. msgctxt "name"
  3983. msgid "Version Upgrade 2.7 to 3.0"
  3984. msgstr "2.7’den 3.0’a Sürüm Yükseltme"
  3985. msgctxt "description"
  3986. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  3987. msgstr "Yapılandırmaları Cura 3.5’ten Cura 4.0’a yükseltir."
  3988. msgctxt "name"
  3989. msgid "Version Upgrade 3.5 to 4.0"
  3990. msgstr "3.5’ten 4.0’a Sürüm Yükseltme"
  3991. msgctxt "description"
  3992. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  3993. msgstr "Yapılandırmaları Cura 5.2'dan Cura 5.3'a yükseltir."
  3994. msgctxt "name"
  3995. msgid "Version Upgrade 5.2 to 5.3"
  3996. msgstr "5.2'dan 5.3'a Sürüm Yükseltme"
  3997. msgctxt "description"
  3998. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  3999. msgstr "Yapılandırmaları Cura 4.0’dan Cura 4.1’e yükseltir."
  4000. msgctxt "name"
  4001. msgid "Version Upgrade 4.0 to 4.1"
  4002. msgstr "4.0’dan 4.1’e Sürüm Yükseltme"
  4003. msgctxt "description"
  4004. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  4005. msgstr "Yapılandırmaları Cura 4.13'ten Cura 5.0'a yükseltir."
  4006. msgctxt "name"
  4007. msgid "Version Upgrade 4.13 to 5.0"
  4008. msgstr "4.13'ten 5.0'a Sürüm Yükseltme"
  4009. msgctxt "description"
  4010. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4011. msgstr "Yapılandırmaları Cura 3.4’ten Cura 3.5’e yükseltir."
  4012. msgctxt "name"
  4013. msgid "Version Upgrade 3.4 to 3.5"
  4014. msgstr "3.4’ten 3.5’e Sürüm Yükseltme"
  4015. msgctxt "description"
  4016. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4017. msgstr "Yapılandırmaları Cura 2.2’den Cura 2.4’e yükseltir."
  4018. msgctxt "name"
  4019. msgid "Version Upgrade 2.2 to 2.4"
  4020. msgstr "2.2’den 2.4’e Sürüm Yükseltme"
  4021. msgctxt "description"
  4022. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4023. msgstr "Yapılandırmaları Cura 4.6.2'den Cura 4.7'ye yükseltir."
  4024. msgctxt "name"
  4025. msgid "Version Upgrade 4.6.2 to 4.7"
  4026. msgstr "4.6.2'den 4.7'ye Sürüm Yükseltme"
  4027. msgctxt "description"
  4028. msgid "Upgrades configurations from Cura 5.4 to Cura 5.5."
  4029. msgstr "Cura 5.4'ten Cura 5.5'e yükseltme yapılandırmaları"
  4030. msgctxt "name"
  4031. msgid "Version Upgrade 5.4 to 5.5"
  4032. msgstr "5.4'ten 5.5'e Sürüm Yükseltme"
  4033. msgctxt "description"
  4034. msgid "Allows loading and displaying G-code files."
  4035. msgstr "G-code dosyalarının yüklenmesine ve görüntülenmesine olanak tanır."
  4036. msgctxt "name"
  4037. msgid "G-code Reader"
  4038. msgstr "G-code Okuyucu"
  4039. msgctxt "description"
  4040. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4041. msgstr "Anonim dilim bilgisi gönderir. Tercihlerden devre dışı bırakılabilir."
  4042. msgctxt "name"
  4043. msgid "Slice info"
  4044. msgstr "Dilim bilgisi"
  4045. msgctxt "description"
  4046. msgid "Provides removable drive hotplugging and writing support."
  4047. msgstr "Çıkarılabilir sürücünün takılıp çıkarılmasını ve yazma desteği sağlar."
  4048. msgctxt "name"
  4049. msgid "Removable Drive Output Device Plugin"
  4050. msgstr "Çıkarılabilir Sürücü Çıkış Cihazı Eklentisi"
  4051. msgctxt "description"
  4052. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4053. msgstr "Belirli yerlerde desteğin yazdırılmasını engellemek için bir silici yüzey oluşturur"
  4054. msgctxt "name"
  4055. msgid "Support Eraser"
  4056. msgstr "Destek Silici"
  4057. msgctxt "description"
  4058. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4059. msgstr "Olası yazdırma sorunlarına karşı modelleri ve yazdırma yapılandırmasını kontrol eder ve öneriler verir."
  4060. msgctxt "name"
  4061. msgid "Model Checker"
  4062. msgstr "Model Kontrol Edici"
  4063. msgctxt "description"
  4064. msgid "Provides a prepare stage in Cura."
  4065. msgstr "Cura’da hazırlık aşaması sunar."
  4066. msgctxt "name"
  4067. msgid "Prepare Stage"
  4068. msgstr "Hazırlık Aşaması"
  4069. msgctxt "description"
  4070. msgid "Provides the preview of sliced layerdata."
  4071. msgstr "Dilimlenen katman verilerinin önizlemesini sağlar."
  4072. msgctxt "name"
  4073. msgid "Simulation View"
  4074. msgstr "Simülasyon Görünümü"
  4075. msgctxt "description"
  4076. msgid "Provides support for reading AMF files."
  4077. msgstr "AMF dosyalarının okunması için destek sağlar."
  4078. msgctxt "name"
  4079. msgid "AMF Reader"
  4080. msgstr "AMF Okuyucu"
  4081. msgctxt "description"
  4082. msgid "Provides the X-Ray view."
  4083. msgstr "Röntgen Görüntüsü sağlar."
  4084. msgctxt "name"
  4085. msgid "X-Ray View"
  4086. msgstr "Röntgen Görüntüsü"
  4087. msgctxt "description"
  4088. msgid "Provides a machine actions for updating firmware."
  4089. msgstr "Aygıt yazılımını güncellemeye yönelik makine eylemleri sağlar."
  4090. msgctxt "name"
  4091. msgid "Firmware Updater"
  4092. msgstr "Aygıt Yazılımı Güncelleyici"
  4093. msgctxt "description"
  4094. msgid "Provides support for importing profiles from legacy Cura versions."
  4095. msgstr "Eski Cura sürümlerinden profilleri içe aktarmak için destek sağlar."
  4096. msgctxt "name"
  4097. msgid "Legacy Cura Profile Reader"
  4098. msgstr "Eski Cura Profil Okuyucu"
  4099. msgctxt "description"
  4100. msgid "Extension that allows for user created scripts for post processing"
  4101. msgstr "Kullanıcının oluşturduğu komut dosyalarına son işleme için izin veren uzantı"
  4102. msgctxt "name"
  4103. msgid "Post Processing"
  4104. msgstr "Son İşleme"
  4105. msgctxt "description"
  4106. msgid "Logs certain events so that they can be used by the crash reporter"
  4107. msgstr "Çökme raporlayıcının kullanabilmesi için belirli olayları günlüğe kaydeder"
  4108. msgctxt "name"
  4109. msgid "Sentry Logger"
  4110. msgstr "Nöbetçi Günlükçü"
  4111. msgctxt "description"
  4112. msgid "Provides support for writing MakerBot Format Packages."
  4113. msgstr "MakerBot Format Paketleri yazmayı destekler."
  4114. msgctxt "name"
  4115. msgid "Makerbot Printfile Writer"
  4116. msgstr "Makerbot Baskı Dosyası Yazarı"
  4117. msgctxt "description"
  4118. msgid "Provides support for importing Cura profiles."
  4119. msgstr "Cura profillerinin içe aktarılması için destek sağlar."
  4120. msgctxt "name"
  4121. msgid "Cura Profile Reader"
  4122. msgstr "Cura Profil Okuyucu"
  4123. msgctxt "description"
  4124. msgid "Provides support for reading Ultimaker Format Packages."
  4125. msgstr "Ultimaker Biçim Paketlerinin okunması için destek sağlar."
  4126. msgctxt "name"
  4127. msgid "UFP Reader"
  4128. msgstr "UFP Okuyucu"
  4129. msgctxt "description"
  4130. msgid "Enables ability to generate printable geometry from 2D image files."
  4131. msgstr "2D resim dosyasından yazdırılabilir geometri oluşturulmasını sağlar."
  4132. msgctxt "name"
  4133. msgid "Image Reader"
  4134. msgstr "Resim Okuyucu"
  4135. msgctxt "description"
  4136. msgid "Provides the link to the CuraEngine slicing backend."
  4137. msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar."
  4138. msgctxt "name"
  4139. msgid "CuraEngine Backend"
  4140. msgstr "CuraEngine Arka Uç"
  4141. msgctxt "description"
  4142. msgid "Writes g-code to a compressed archive."
  4143. msgstr "G-code’u bir sıkıştırılmış arşive yazar."
  4144. msgctxt "name"
  4145. msgid "Compressed G-code Writer"
  4146. msgstr "Sıkıştırılmış G-code Yazıcısı"
  4147. msgctxt "description"
  4148. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4149. msgstr "Ultimaker makineleri için makine eylemleri sunar (yatak dengeleme sihirbazı, yükseltme seçme vb.)"
  4150. msgctxt "name"
  4151. msgid "UltiMaker machine actions"
  4152. msgstr "Ultimaker makine eylemleri"
  4153. msgctxt "description"
  4154. msgid "Reads g-code from a compressed archive."
  4155. msgstr "Bir sıkıştırılmış arşivden g-code okur."
  4156. msgctxt "name"
  4157. msgid "Compressed G-code Reader"
  4158. msgstr "Sıkıştırılmış G-code Okuyucusu"
  4159. msgctxt "description"
  4160. msgid "Provides a preview stage in Cura."
  4161. msgstr "Cura’da ön izleme aşaması sunar."
  4162. msgctxt "name"
  4163. msgid "Preview Stage"
  4164. msgstr "Öz İzleme Aşaması"
  4165. msgctxt "description"
  4166. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  4167. msgstr "Digital Library'ye bağlanarak Cura'nın Digital Library'deki dosyaları açmasına ve kaydetmesine olanak tanır."
  4168. msgctxt "name"
  4169. msgid "Ultimaker Digital Library"
  4170. msgstr "Ultimaker Digital Library"
  4171. msgctxt "description"
  4172. msgid "Provides support for exporting Cura profiles."
  4173. msgstr "Cura profillerinin dışa aktarılması için destek sağlar."
  4174. msgctxt "name"
  4175. msgid "Cura Profile Writer"
  4176. msgstr "Cura Profili Yazıcı"
  4177. msgctxt "description"
  4178. msgid "Provides support for reading X3D files."
  4179. msgstr "X3D dosyalarının okunması için destek sağlar."
  4180. msgctxt "name"
  4181. msgid "X3D Reader"
  4182. msgstr "X3D Okuyucu"
  4183. msgctxt "description"
  4184. msgid "Provides support for reading model files."
  4185. msgstr "Model dosyalarını okuma desteği sağlar."
  4186. msgctxt "name"
  4187. msgid "Trimesh Reader"
  4188. msgstr "Trimesh Okuyucu"
  4189. msgctxt "description"
  4190. msgid "Provides a monitor stage in Cura."
  4191. msgstr "Cura’da görüntüleme aşaması sunar."
  4192. msgctxt "name"
  4193. msgid "Monitor Stage"
  4194. msgstr "Görüntüleme Aşaması"
  4195. msgctxt "description"
  4196. msgid "Provides the Per Model Settings."
  4197. msgstr "Model Başına Ayarları sağlar."
  4198. msgctxt "name"
  4199. msgid "Per Model Settings Tool"
  4200. msgstr "Model Başına Ayarlar Aracı"
  4201. msgctxt "description"
  4202. msgid "Provides capabilities to read and write XML-based material profiles."
  4203. msgstr "XML tabanlı malzeme profillerini okuma ve yazma olanağı sağlar."
  4204. msgctxt "name"
  4205. msgid "Material Profiles"
  4206. msgstr "Malzeme Profilleri"
  4207. msgctxt "description"
  4208. msgid "Provides support for writing 3MF and UCP files."
  4209. msgstr "3MF ve UCP dosyalarının yazılması için destek sağlar."
  4210. msgctxt "name"
  4211. msgid "3MF Writer"
  4212. msgstr "3MF Yazıcı"
  4213. msgctxt "description"
  4214. msgid "Provides support for writing Ultimaker Format Packages."
  4215. msgstr "Ultimaker Biçim Paketleri yazmak için destek sağlar."
  4216. msgctxt "name"
  4217. msgid "UFP Writer"
  4218. msgstr "UPF Yazıcı"
  4219. msgctxt "description"
  4220. msgid "Writes g-code to a file."
  4221. msgstr "G-code’u bir dosyaya yazar."
  4222. msgctxt "name"
  4223. msgid "G-code Writer"
  4224. msgstr "G-code Yazıcı"