cura.po 320 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902
  1. # Cura
  2. # Copyright (C) 2020 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 4.8\n"
  8. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  9. "POT-Creation-Date: 2020-10-19 13:15+0200\n"
  10. "PO-Revision-Date: 2019-11-15 15:23+0100\n"
  11. "Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
  12. "Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
  13. "Language: pl_PL\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  18. "X-Generator: Poedit 2.2.4\n"
  19. "X-Poedit-SourceCharset: UTF-8\n"
  20. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  21. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110
  22. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361
  23. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1581
  24. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
  25. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
  26. msgctxt "@label"
  27. msgid "Unknown"
  28. msgstr "Nieznany"
  29. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  30. msgctxt "@label"
  31. msgid "The printer(s) below cannot be connected because they are part of a group"
  32. msgstr "Poniższa drukarka nie może być podłączona, ponieważ jest częścią grupy"
  33. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  34. msgctxt "@label"
  35. msgid "Available networked printers"
  36. msgstr "Dostępne drukarki sieciowe"
  37. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211
  38. msgctxt "@menuitem"
  39. msgid "Not overridden"
  40. msgstr "Nie zastąpione"
  41. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76
  42. #, python-brace-format
  43. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  44. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  45. msgstr ""
  46. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  47. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11
  48. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338
  49. msgctxt "@label"
  50. msgid "Default"
  51. msgstr "Domyślne"
  52. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  53. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14
  54. msgctxt "@label"
  55. msgid "Visual"
  56. msgstr "Wizualny"
  57. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  58. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15
  59. msgctxt "@text"
  60. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  61. msgstr "Profil wizualny jest przeznaczony do drukowania prototypów i modeli z zamiarem podkreślenia wysokiej jakości wizualnej i powierzchni."
  62. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  63. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18
  64. msgctxt "@label"
  65. msgid "Engineering"
  66. msgstr "Inżynieria"
  67. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  68. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19
  69. msgctxt "@text"
  70. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  71. msgstr "Profil inżynieryjny jest przeznaczony do drukowania prototypów funkcjonalnych i części końcowych z naciskiem na lepszą dokładność i lepszą tolerancję."
  72. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  73. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22
  74. msgctxt "@label"
  75. msgid "Draft"
  76. msgstr "Szkic"
  77. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  78. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23
  79. msgctxt "@text"
  80. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  81. msgstr "Profil szkicu służy do drukowania początkowych prototypów i weryfikacji koncepcji z naciskiem na krótki czasu drukowania."
  82. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:226
  83. msgctxt "@label"
  84. msgid "Custom Material"
  85. msgstr "Niestandardowy materiał"
  86. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:227
  87. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
  88. msgctxt "@label"
  89. msgid "Custom"
  90. msgstr "Niestandardowy"
  91. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383
  92. msgctxt "@label"
  93. msgid "Custom profiles"
  94. msgstr "Profile niestandardowe"
  95. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418
  96. #, python-brace-format
  97. msgctxt "@item:inlistbox"
  98. msgid "All Supported Types ({0})"
  99. msgstr "Wszystkie Wspierane Typy ({0})"
  100. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419
  101. msgctxt "@item:inlistbox"
  102. msgid "All Files (*)"
  103. msgstr "Wszystkie Pliki (*)"
  104. #: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:178
  105. msgctxt "@info:title"
  106. msgid "Login failed"
  107. msgstr "Logowanie nie powiodło się"
  108. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
  109. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  110. msgctxt "@info:status"
  111. msgid "Finding new location for objects"
  112. msgstr "Znajdowanie nowej lokalizacji obiektów"
  113. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
  114. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  115. msgctxt "@info:title"
  116. msgid "Finding Location"
  117. msgstr "Szukanie Lokalizacji"
  118. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
  119. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41
  120. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76
  121. msgctxt "@info:status"
  122. msgid "Unable to find a location within the build volume for all objects"
  123. msgstr "Nie można znaleźć lokalizacji w obrębie obszaru roboczego dla wszystkich obiektów"
  124. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
  125. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  126. msgctxt "@info:title"
  127. msgid "Can't Find Location"
  128. msgstr "Nie można Znaleźć Lokalizacji"
  129. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:104
  130. msgctxt "@info:backup_failed"
  131. msgid "Could not create archive from user data directory: {}"
  132. msgstr "Nie można utworzyć archiwum z folderu danych użytkownika: {}"
  133. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:110
  134. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
  135. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
  136. msgctxt "@info:title"
  137. msgid "Backup"
  138. msgstr "Kopia zapasowa"
  139. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:123
  140. msgctxt "@info:backup_failed"
  141. msgid "Tried to restore a Cura backup without having proper data or meta data."
  142. msgstr "Podjęto próbę przywrócenia kopii zapasowej Cura na podstawie niepoprawnych danych lub metadanych."
  143. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134
  144. msgctxt "@info:backup_failed"
  145. msgid "Tried to restore a Cura backup that is higher than the current version."
  146. msgstr "Próbowano przywrócić kopię zapasową Cura, nowszą od aktualnej wersji."
  147. #: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98
  148. msgctxt "@info:status"
  149. 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."
  150. msgstr "Wysokość obszaru roboczego została zmniejszona ze względu na wartość ustawienia Print Sequence (Sekwencja wydruku), aby zapobiec kolizji z wydrukowanymi modelami."
  151. #: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100
  152. msgctxt "@info:title"
  153. msgid "Build Volume"
  154. msgstr "Obszar Roboczy"
  155. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107
  156. msgctxt "@title:window"
  157. msgid "Cura can't start"
  158. msgstr "Cura nie może się uruchomić"
  159. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113
  160. msgctxt "@label crash message"
  161. msgid ""
  162. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  163. " <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"
  164. " <p>Backups can be found in the configuration folder.</p>\n"
  165. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  166. " "
  167. msgstr ""
  168. "<p><b>Ups, Ultimaker Cura natrafiła coś co nie wygląda dobrze.</p></b>\n"
  169. " <p>Natrafiliśmy na nieodwracalny błąd podczas uruchamiania. Prawdopodobnie jest to spowodowane błędem w plikach konfiguracyjnych. Zalecamy backup i reset konfiguracji.</p>\n"
  170. " <p>Backupy mogą być znalezione w folderze konfiguracyjnym.</p>\n"
  171. " <p>Proszę wyślij do nas ten Raport Błędu, aby rozwiązać problem.</p>\n"
  172. " "
  173. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122
  174. msgctxt "@action:button"
  175. msgid "Send crash report to Ultimaker"
  176. msgstr "Wyślij raport błędu do Ultimaker"
  177. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125
  178. msgctxt "@action:button"
  179. msgid "Show detailed crash report"
  180. msgstr "Pokaż szczegółowy raport błędu"
  181. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129
  182. msgctxt "@action:button"
  183. msgid "Show configuration folder"
  184. msgstr "Pokaż folder konfiguracyjny"
  185. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140
  186. msgctxt "@action:button"
  187. msgid "Backup and Reset Configuration"
  188. msgstr "Zrób Backup i Zresetuj Konfigurację"
  189. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171
  190. msgctxt "@title:window"
  191. msgid "Crash Report"
  192. msgstr "Raport Błędu"
  193. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190
  194. msgctxt "@label crash message"
  195. msgid ""
  196. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  197. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  198. " "
  199. msgstr ""
  200. "<p><b>Wystąpił błąd krytyczny. Proszę wyślij do nas ten Raport Błędu, aby rozwiązać problem</p></b>\n"
  201. " <p>Proszę użyj przycisku \"Wyślij raport\", aby wysłać raport błędu automatycznie na nasze serwery</p>\n"
  202. " "
  203. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198
  204. msgctxt "@title:groupbox"
  205. msgid "System information"
  206. msgstr "Informacje o systemie"
  207. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207
  208. msgctxt "@label unknown version of Cura"
  209. msgid "Unknown"
  210. msgstr "Nieznany"
  211. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228
  212. msgctxt "@label Cura version number"
  213. msgid "Cura version"
  214. msgstr "Wersja Cura"
  215. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229
  216. msgctxt "@label"
  217. msgid "Cura language"
  218. msgstr ""
  219. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230
  220. msgctxt "@label"
  221. msgid "OS language"
  222. msgstr ""
  223. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231
  224. msgctxt "@label Type of platform"
  225. msgid "Platform"
  226. msgstr "Platforma"
  227. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232
  228. msgctxt "@label"
  229. msgid "Qt version"
  230. msgstr "Wersja Qt"
  231. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233
  232. msgctxt "@label"
  233. msgid "PyQt version"
  234. msgstr "Wersja PyQt"
  235. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234
  236. msgctxt "@label OpenGL version"
  237. msgid "OpenGL"
  238. msgstr "OpenGL"
  239. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264
  240. msgctxt "@label"
  241. msgid "Not yet initialized<br/>"
  242. msgstr "Jeszcze nie uruchomiono<br/>"
  243. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267
  244. #, python-brace-format
  245. msgctxt "@label OpenGL version"
  246. msgid "<li>OpenGL Version: {version}</li>"
  247. msgstr "<li>Wersja OpenGL: {version}</li>"
  248. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268
  249. #, python-brace-format
  250. msgctxt "@label OpenGL vendor"
  251. msgid "<li>OpenGL Vendor: {vendor}</li>"
  252. msgstr "<li>Wydawca OpenGL: {vendor}</li>"
  253. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269
  254. #, python-brace-format
  255. msgctxt "@label OpenGL renderer"
  256. msgid "<li>OpenGL Renderer: {renderer}</li>"
  257. msgstr "<li>OpenGL Renderer: {renderer}</li>"
  258. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303
  259. msgctxt "@title:groupbox"
  260. msgid "Error traceback"
  261. msgstr "Śledzenie błedu"
  262. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389
  263. msgctxt "@title:groupbox"
  264. msgid "Logs"
  265. msgstr "Logi"
  266. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417
  267. msgctxt "@action:button"
  268. msgid "Send report"
  269. msgstr "Wyślij raport"
  270. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:521
  271. msgctxt "@info:progress"
  272. msgid "Loading machines..."
  273. msgstr "Ładowanie drukarek..."
  274. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:528
  275. msgctxt "@info:progress"
  276. msgid "Setting up preferences..."
  277. msgstr "Ustawianie preferencji..."
  278. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:657
  279. msgctxt "@info:progress"
  280. msgid "Initializing Active Machine..."
  281. msgstr ""
  282. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:788
  283. msgctxt "@info:progress"
  284. msgid "Initializing machine manager..."
  285. msgstr ""
  286. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:802
  287. msgctxt "@info:progress"
  288. msgid "Initializing build volume..."
  289. msgstr ""
  290. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:870
  291. msgctxt "@info:progress"
  292. msgid "Setting up scene..."
  293. msgstr "Ustawianie sceny ..."
  294. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:906
  295. msgctxt "@info:progress"
  296. msgid "Loading interface..."
  297. msgstr "Ładowanie interfejsu ..."
  298. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:911
  299. msgctxt "@info:progress"
  300. msgid "Initializing engine..."
  301. msgstr ""
  302. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1221
  303. #, python-format
  304. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  305. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  306. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  307. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1777
  308. #, python-brace-format
  309. msgctxt "@info:status"
  310. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  311. msgstr "Jednocześnie można załadować tylko jeden plik G-code. Pominięto importowanie {0}"
  312. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1778
  313. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:188
  314. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:242
  315. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  316. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  317. msgctxt "@info:title"
  318. msgid "Warning"
  319. msgstr "Ostrzeżenie"
  320. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1787
  321. #, python-brace-format
  322. msgctxt "@info:status"
  323. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  324. msgstr "Nie można otworzyć żadnego innego pliku, jeśli ładuje się G-code. Pominięto importowanie {0}"
  325. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1788
  326. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146
  327. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153
  328. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  329. msgctxt "@info:title"
  330. msgid "Error"
  331. msgstr "Błąd"
  332. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26
  333. msgctxt "@info:status"
  334. msgid "Multiplying and placing objects"
  335. msgstr "Zwielokrotnienie i umieszczanie przedmiotów"
  336. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28
  337. msgctxt "@info:title"
  338. msgid "Placing Objects"
  339. msgstr "Umieść Obiekty"
  340. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77
  341. msgctxt "@info:title"
  342. msgid "Placing Object"
  343. msgstr "Rozmieszczenie Obiektów"
  344. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:90
  345. msgctxt "@message"
  346. msgid "Could not read response."
  347. msgstr "Nie można odczytać odpowiedzi."
  348. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
  349. msgctxt "@message"
  350. msgid "The provided state is not correct."
  351. msgstr ""
  352. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
  353. msgctxt "@message"
  354. msgid "Please give the required permissions when authorizing this application."
  355. msgstr "Proszę nadać wymagane uprawnienia podczas autoryzacji tej aplikacji."
  356. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
  357. msgctxt "@message"
  358. msgid "Something unexpected happened when trying to log in, please try again."
  359. msgstr "Coś nieoczekiwanego się stało, podczas próby logowania, spróbuj ponownie."
  360. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:187
  361. msgctxt "@info"
  362. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  363. msgstr ""
  364. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:242
  365. msgctxt "@info"
  366. msgid "Unable to reach the Ultimaker account server."
  367. msgstr "Nie można uzyskać dostępu do serwera kont Ultimaker."
  368. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205
  369. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132
  370. msgctxt "@title:window"
  371. msgid "File Already Exists"
  372. msgstr "Plik już istnieje"
  373. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206
  374. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133
  375. #, python-brace-format
  376. msgctxt "@label Don't translate the XML tag <filename>!"
  377. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  378. msgstr "Plik <filename>{0}</filename> już istnieje. Czy na pewno chcesz go nadpisać?"
  379. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:452
  380. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:455
  381. msgctxt "@info:status"
  382. msgid "Invalid file URL:"
  383. msgstr "Nieprawidłowy adres URL pliku:"
  384. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144
  385. #, python-brace-format
  386. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  387. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  388. msgstr "Nie udało się wyeksportować profilu do <filename>{0}</filename>: <message>{1}</message>"
  389. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151
  390. #, python-brace-format
  391. msgctxt "@info:status Don't translate the XML tag <filename>!"
  392. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  393. msgstr "Nie można eksportować profilu do <filename>{0}</filename>: Wtyczka pisarza zgłosiła błąd."
  394. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156
  395. #, python-brace-format
  396. msgctxt "@info:status Don't translate the XML tag <filename>!"
  397. msgid "Exported profile to <filename>{0}</filename>"
  398. msgstr "Wyeksportowano profil do <filename>{0}</filename>"
  399. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157
  400. msgctxt "@info:title"
  401. msgid "Export succeeded"
  402. msgstr "Eksport udany"
  403. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188
  404. #, python-brace-format
  405. msgctxt "@info:status Don't translate the XML tags <filename>!"
  406. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  407. msgstr "Nie powiódł się import profilu z <filename>{0}</filename>: {1}"
  408. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192
  409. #, python-brace-format
  410. msgctxt "@info:status Don't translate the XML tags <filename>!"
  411. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  412. msgstr "Nie można importować profilu z <filename>{0}</filename> przed dodaniem drukarki."
  413. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207
  414. #, python-brace-format
  415. msgctxt "@info:status Don't translate the XML tags <filename>!"
  416. msgid "No custom profile to import in file <filename>{0}</filename>"
  417. msgstr "Brak niestandardowego profilu do importu w pliku <filename>{0}</filename>"
  418. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211
  419. #, python-brace-format
  420. msgctxt "@info:status Don't translate the XML tags <filename>!"
  421. msgid "Failed to import profile from <filename>{0}</filename>:"
  422. msgstr "Nie powiódł się import profilu z <filename>{0}</filename>:"
  423. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235
  424. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245
  425. #, python-brace-format
  426. msgctxt "@info:status Don't translate the XML tags <filename>!"
  427. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  428. msgstr "Profil <filename>{0}</filename> zawiera błędne dane, nie można go importować."
  429. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338
  430. #, python-brace-format
  431. msgctxt "@info:status Don't translate the XML tag <filename>!"
  432. msgid "Failed to import profile from <filename>{0}</filename>:"
  433. msgstr "Błąd importu profilu z <filename>{0}</filename>:"
  434. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342
  435. #, python-brace-format
  436. msgctxt "@info:status"
  437. msgid "Successfully imported profile {0}."
  438. msgstr ""
  439. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349
  440. #, python-brace-format
  441. msgctxt "@info:status"
  442. msgid "File {0} does not contain any valid profile."
  443. msgstr "Plik {0} nie zawiera żadnego poprawnego profilu."
  444. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352
  445. #, python-brace-format
  446. msgctxt "@info:status"
  447. msgid "Profile {0} has an unknown file type or is corrupted."
  448. msgstr "Profil {0} ma nieznany typ pliku lub jest uszkodzony."
  449. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:423
  450. msgctxt "@label"
  451. msgid "Custom profile"
  452. msgstr "Niestandardowy profil"
  453. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:439
  454. msgctxt "@info:status"
  455. msgid "Profile is missing a quality type."
  456. msgstr "Profilowi brakuje typu jakości."
  457. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443
  458. msgctxt "@info:status"
  459. msgid "Global stack is missing."
  460. msgstr ""
  461. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:449
  462. msgctxt "@info:status"
  463. msgid "Unable to add the profile."
  464. msgstr ""
  465. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463
  466. #, python-brace-format
  467. msgctxt "@info:status"
  468. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  469. msgstr ""
  470. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:468
  471. #, python-brace-format
  472. msgctxt "@info:status"
  473. 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."
  474. msgstr ""
  475. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36
  476. msgctxt "@info:not supported profile"
  477. msgid "Not supported"
  478. msgstr "Niewspierany"
  479. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55
  480. msgctxt "@info:No intent profile selected"
  481. msgid "Default"
  482. msgstr "Domyślne"
  483. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:712
  484. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
  485. msgctxt "@label"
  486. msgid "Nozzle"
  487. msgstr "Dysza"
  488. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:860
  489. msgctxt "@info:message Followed by a list of settings."
  490. msgid "Settings have been changed to match the current availability of extruders:"
  491. msgstr "Ustawienia zostały zmienione w celu dopasowania do bieżącej dostępności ekstruderów:"
  492. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:862
  493. msgctxt "@info:title"
  494. msgid "Settings updated"
  495. msgstr "Ustawienia zostały zaaktualizowane"
  496. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1447
  497. msgctxt "@info:title"
  498. msgid "Extruder(s) Disabled"
  499. msgstr "Ekstruder(y) wyłączony(/e)"
  500. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17
  501. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
  502. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
  503. msgctxt "@action:button"
  504. msgid "Add"
  505. msgstr "Dodaj"
  506. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26
  507. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:263
  508. msgctxt "@action:button"
  509. msgid "Finish"
  510. msgstr ""
  511. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33
  512. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:441
  513. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234
  514. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  515. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
  516. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
  517. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
  518. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
  519. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
  520. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:87
  521. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
  522. msgctxt "@action:button"
  523. msgid "Cancel"
  524. msgstr "Anuluj"
  525. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69
  526. #, python-brace-format
  527. msgctxt "@label"
  528. msgid "Group #{group_nr}"
  529. msgstr "Grupa #{group_nr}"
  530. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83
  531. msgctxt "@tooltip"
  532. msgid "Outer Wall"
  533. msgstr "Zewnętrzna ściana"
  534. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84
  535. msgctxt "@tooltip"
  536. msgid "Inner Walls"
  537. msgstr "Ściany wewnętrzne"
  538. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85
  539. msgctxt "@tooltip"
  540. msgid "Skin"
  541. msgstr "Skin"
  542. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86
  543. msgctxt "@tooltip"
  544. msgid "Infill"
  545. msgstr "Wypełnienie"
  546. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87
  547. msgctxt "@tooltip"
  548. msgid "Support Infill"
  549. msgstr "Wypełnienie podpór"
  550. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88
  551. msgctxt "@tooltip"
  552. msgid "Support Interface"
  553. msgstr "Łączenie podpory"
  554. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89
  555. msgctxt "@tooltip"
  556. msgid "Support"
  557. msgstr "Podpory"
  558. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90
  559. msgctxt "@tooltip"
  560. msgid "Skirt"
  561. msgstr "Obwódka"
  562. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91
  563. msgctxt "@tooltip"
  564. msgid "Prime Tower"
  565. msgstr "Wieża czyszcząca"
  566. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92
  567. msgctxt "@tooltip"
  568. msgid "Travel"
  569. msgstr "Ruch jałowy"
  570. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93
  571. msgctxt "@tooltip"
  572. msgid "Retractions"
  573. msgstr "Retrakcja"
  574. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94
  575. msgctxt "@tooltip"
  576. msgid "Other"
  577. msgstr "Inny"
  578. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56
  579. msgctxt "@action:button"
  580. msgid "Next"
  581. msgstr "Następny"
  582. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:17
  583. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
  584. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
  585. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
  586. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:173
  587. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127
  588. msgctxt "@action:button"
  589. msgid "Close"
  590. msgstr "Zamknij"
  591. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31
  592. msgctxt "@info:title"
  593. msgid "3D Model Assistant"
  594. msgstr "Asystent Modelu 3D"
  595. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96
  596. #, python-brace-format
  597. msgctxt "@info:status"
  598. msgid ""
  599. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  600. "<p>{model_names}</p>\n"
  601. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  602. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  603. msgstr ""
  604. "<p>Jeden lub więcej modeli 3D może nie zostać wydrukowanych optymalnie ze względu na wymiary modelu oraz konfigurację materiału:</p>\n"
  605. "<p>{model_names}</p>\n"
  606. "<p>Dowiedz się, jak zapewnić najlepszą możliwą jakość oraz niezawodnośc wydruku.</p>\n"
  607. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Zobacz przewodnik po jakości wydruku (strona w języku angielskim)</a></p>"
  608. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:535
  609. #, python-brace-format
  610. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  611. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  612. msgstr "Plik projektu <filename>{0}</filename> zawiera nieznany typ maszyny <message>{1}</message>. Nie można zaimportować maszyny. Zostaną zaimportowane modele."
  613. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:538
  614. msgctxt "@info:title"
  615. msgid "Open Project File"
  616. msgstr "Otwórz Plik Projektu"
  617. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:634
  618. #, python-brace-format
  619. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  620. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  621. msgstr ""
  622. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:635
  623. msgctxt "@info:title"
  624. msgid "Can't Open Project File"
  625. msgstr ""
  626. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:686
  627. #, python-brace-format
  628. msgctxt "@info:error Don't translate the XML tag <filename>!"
  629. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  630. msgstr ""
  631. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  632. msgctxt "@title:tab"
  633. msgid "Recommended"
  634. msgstr "Zalecane"
  635. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  636. msgctxt "@title:tab"
  637. msgid "Custom"
  638. msgstr "Niestandardowe"
  639. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27
  640. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33
  641. msgctxt "@item:inlistbox"
  642. msgid "3MF File"
  643. msgstr "Plik 3MF"
  644. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  645. msgctxt "@error:zip"
  646. msgid "3MF Writer plug-in is corrupt."
  647. msgstr ""
  648. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
  649. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
  650. msgctxt "@error:zip"
  651. msgid "No permission to write the workspace here."
  652. msgstr ""
  653. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
  654. msgctxt "@error:zip"
  655. msgid "The operating system does not allow saving a project file to this location or with this file name."
  656. msgstr ""
  657. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:185
  658. msgctxt "@error:zip"
  659. msgid "Error writing 3mf file."
  660. msgstr "Błąd zapisu pliku 3mf."
  661. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26
  662. msgctxt "@item:inlistbox"
  663. msgid "3MF file"
  664. msgstr "Plik 3MF"
  665. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34
  666. msgctxt "@item:inlistbox"
  667. msgid "Cura Project 3MF file"
  668. msgstr "Plik Cura Project 3MF"
  669. #: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15
  670. msgctxt "@item:inlistbox"
  671. msgid "AMF File"
  672. msgstr "Plik AMF"
  673. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  674. msgctxt "@info:title"
  675. msgid "Backups"
  676. msgstr "Kopie zapasowe"
  677. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
  678. msgctxt "@info:backup_status"
  679. msgid "There was an error while uploading your backup."
  680. msgstr "Wystąpił błąd podczas wgrywania kopii zapasowej."
  681. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
  682. msgctxt "@info:backup_status"
  683. msgid "Creating your backup..."
  684. msgstr ""
  685. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
  686. msgctxt "@info:backup_status"
  687. msgid "There was an error while creating your backup."
  688. msgstr ""
  689. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
  690. msgctxt "@info:backup_status"
  691. msgid "Uploading your backup..."
  692. msgstr "Wgrywanie kopii zapasowej..."
  693. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
  694. msgctxt "@info:backup_status"
  695. msgid "Your backup has finished uploading."
  696. msgstr "Wgrywanie kopii zapasowej zakończone."
  697. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
  698. msgctxt "@error:file_size"
  699. msgid "The backup exceeds the maximum file size."
  700. msgstr ""
  701. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:82
  702. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:23
  703. msgctxt "@info:backup_status"
  704. msgid "There was an error trying to restore your backup."
  705. msgstr "Wystąpił błąd podczas próby przywrócenia kopii zapasowej."
  706. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
  707. msgctxt "@item:inmenu"
  708. msgid "Manage backups"
  709. msgstr "Zarządzaj kopiami zapasowymi"
  710. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:356
  711. msgctxt "@info:status"
  712. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  713. msgstr "Nie można pociąć z obecnym materiałem, ponieważ nie jest on kompatybilny z wybraną maszyną lub konfiguracją."
  714. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:356
  715. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387
  716. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:411
  717. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:420
  718. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429
  719. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:441
  720. msgctxt "@info:title"
  721. msgid "Unable to slice"
  722. msgstr "Nie można pociąć"
  723. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386
  724. #, python-brace-format
  725. msgctxt "@info:status"
  726. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  727. msgstr "Nie można pociąć z bieżącymi ustawieniami. Następujące ustawienia mają błędy: {0}"
  728. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:410
  729. #, python-brace-format
  730. msgctxt "@info:status"
  731. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  732. msgstr "Nie można pokroić przez ustawienia osobne dla modelu. Następujące ustawienia mają błędy w jednym lub więcej modeli: {error_labels}"
  733. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:419
  734. msgctxt "@info:status"
  735. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  736. msgstr "Nie można pociąć, ponieważ wieża czyszcząca lub jej pozycja(e) są niewłaściwe."
  737. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428
  738. #, python-format
  739. msgctxt "@info:status"
  740. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  741. msgstr "Nie można pociąć, ponieważ obecne są obiekty powiązane z wyłączonym ekstruderem %s."
  742. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
  743. msgctxt "@info:status"
  744. msgid ""
  745. "Please review settings and check if your models:\n"
  746. "- Fit within the build volume\n"
  747. "- Are assigned to an enabled extruder\n"
  748. "- Are not all set as modifier meshes"
  749. msgstr ""
  750. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  751. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  752. msgctxt "@info:status"
  753. msgid "Processing Layers"
  754. msgstr "Przetwarzanie warstw"
  755. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  756. msgctxt "@info:title"
  757. msgid "Information"
  758. msgstr "Informacja"
  759. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
  760. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
  761. msgctxt "@item:inlistbox"
  762. msgid "Cura Profile"
  763. msgstr "Profile Cura"
  764. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  765. msgctxt "@info"
  766. msgid "Could not access update information."
  767. msgstr "Nie można uzyskać dostępu do informacji o aktualizacji."
  768. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  769. #, python-brace-format
  770. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  771. msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
  772. msgstr ""
  773. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  774. #, python-format
  775. msgctxt "@info:title The %s gets replaced with the printer name."
  776. msgid "New %s firmware available"
  777. msgstr "Nowe oprogramowanie %s jest dostępne"
  778. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  779. msgctxt "@action:button"
  780. msgid "How to update"
  781. msgstr "Jak zaktualizować"
  782. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  783. msgctxt "@action"
  784. msgid "Update Firmware"
  785. msgstr "Aktualizacja Oprogramowania Sprzętowego"
  786. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
  787. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
  788. msgctxt "@item:inlistbox"
  789. msgid "Compressed G-code File"
  790. msgstr "Skompresowany Plik G-code"
  791. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  792. msgctxt "@error:not supported"
  793. msgid "GCodeGzWriter does not support text mode."
  794. msgstr "Zapisywacz skompresowanego G-code nie obsługuje trybu tekstowego."
  795. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
  796. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14
  797. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16
  798. msgctxt "@item:inlistbox"
  799. msgid "G-code File"
  800. msgstr "Pliki G-code"
  801. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347
  802. msgctxt "@info:status"
  803. msgid "Parsing G-code"
  804. msgstr "Analizowanie G-code"
  805. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349
  806. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503
  807. msgctxt "@info:title"
  808. msgid "G-code Details"
  809. msgstr "Szczegóły G-code"
  810. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501
  811. msgctxt "@info:generic"
  812. 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."
  813. msgstr "Przed wysłaniem pliku upewnij się, że G-code jest odpowiedni do konfiguracji drukarki. Przedstawienie G-kodu może nie być dokładne."
  814. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18
  815. msgctxt "@item:inlistbox"
  816. msgid "G File"
  817. msgstr "Plik G-code"
  818. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  819. msgctxt "@error:not supported"
  820. msgid "GCodeWriter does not support non-text mode."
  821. msgstr "Zapisywacz G-code nie obsługuje trybu nietekstowego."
  822. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80
  823. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  824. msgctxt "@warning:status"
  825. msgid "Please prepare G-code before exporting."
  826. msgstr "Przygotuj G-code przed eksportem."
  827. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14
  828. msgctxt "@item:inlistbox"
  829. msgid "JPG Image"
  830. msgstr "Obraz JPG"
  831. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18
  832. msgctxt "@item:inlistbox"
  833. msgid "JPEG Image"
  834. msgstr "Obraz JPEG"
  835. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22
  836. msgctxt "@item:inlistbox"
  837. msgid "PNG Image"
  838. msgstr "Obraz PNG"
  839. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26
  840. msgctxt "@item:inlistbox"
  841. msgid "BMP Image"
  842. msgstr "Obraz BMP"
  843. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30
  844. msgctxt "@item:inlistbox"
  845. msgid "GIF Image"
  846. msgstr "Obraz GIF"
  847. #: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
  848. msgctxt "@item:inlistbox"
  849. msgid "Cura 15.04 profiles"
  850. msgstr "Profile Cura 15.04"
  851. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  852. msgctxt "@action"
  853. msgid "Machine Settings"
  854. msgstr "Ustawienia drukarki"
  855. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14
  856. msgctxt "@item:inmenu"
  857. msgid "Monitor"
  858. msgstr "Monitor"
  859. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  860. msgctxt "@label"
  861. msgid "Per Model Settings"
  862. msgstr "Ustawienia każdego modelu osobno"
  863. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  864. msgctxt "@info:tooltip"
  865. msgid "Configure Per Model Settings"
  866. msgstr "Konfiguruj ustawienia każdego modelu z osobna"
  867. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  868. msgctxt "@item:inmenu"
  869. msgid "Post Processing"
  870. msgstr "Przetwarzanie końcowe"
  871. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  872. msgctxt "@item:inmenu"
  873. msgid "Modify G-Code"
  874. msgstr "Modyfikuj G-code"
  875. #: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12
  876. msgctxt "@item:inmenu"
  877. msgid "Prepare"
  878. msgstr "Przygotuj"
  879. #: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13
  880. msgctxt "@item:inmenu"
  881. msgid "Preview"
  882. msgstr "Podgląd"
  883. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  884. msgctxt "@action:button Preceded by 'Ready to'."
  885. msgid "Save to Removable Drive"
  886. msgstr "Zapisz na dysk wymienny"
  887. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  888. #, python-brace-format
  889. msgctxt "@item:inlistbox"
  890. msgid "Save to Removable Drive {0}"
  891. msgstr "Zapisz na dysk wymienny {0}"
  892. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  893. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  894. msgctxt "@info:status"
  895. msgid "There are no file formats available to write with!"
  896. msgstr "Nie ma żadnych formatów plików do zapisania!"
  897. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  898. #, python-brace-format
  899. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  900. msgid "Saving to Removable Drive <filename>{0}</filename>"
  901. msgstr "Zapisywanie na Dysk Wymienny <filename>{0}</filename>"
  902. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  903. msgctxt "@info:title"
  904. msgid "Saving"
  905. msgstr "Zapisywanie"
  906. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
  907. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  908. #, python-brace-format
  909. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  910. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  911. msgstr "Nie mogę zapisać do <filename>{0}</filename>: <message>{1}</message>"
  912. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
  913. #, python-brace-format
  914. msgctxt "@info:status Don't translate the tag {device}!"
  915. msgid "Could not find a file name when trying to write to {device}."
  916. msgstr "Nie mogę znaleźć nazwy pliku podczas próby zapisu do {device}."
  917. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
  918. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  919. #, python-brace-format
  920. msgctxt "@info:status"
  921. msgid "Could not save to removable drive {0}: {1}"
  922. msgstr "Nie można zapisać na wymiennym dysku {0}: {1}"
  923. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  924. #, python-brace-format
  925. msgctxt "@info:status"
  926. msgid "Saved to Removable Drive {0} as {1}"
  927. msgstr "Zapisano na dysk wymienny {0} jako {1}"
  928. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  929. msgctxt "@info:title"
  930. msgid "File Saved"
  931. msgstr "Plik Zapisany"
  932. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  933. msgctxt "@action:button"
  934. msgid "Eject"
  935. msgstr "Wyjmij"
  936. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  937. #, python-brace-format
  938. msgctxt "@action"
  939. msgid "Eject removable device {0}"
  940. msgstr "Wyjmij urządzenie wymienne {0}"
  941. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  942. #, python-brace-format
  943. msgctxt "@info:status"
  944. msgid "Ejected {0}. You can now safely remove the drive."
  945. msgstr "Wyjęto {0}. Możesz teraz bezpiecznie wyjąć dysk."
  946. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  947. msgctxt "@info:title"
  948. msgid "Safely Remove Hardware"
  949. msgstr "Bezpiecznie Odłącz Urządzenie"
  950. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  951. #, python-brace-format
  952. msgctxt "@info:status"
  953. msgid "Failed to eject {0}. Another program may be using the drive."
  954. msgstr "Nie można wysunąć {0}. Inny program może używać dysku."
  955. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  956. msgctxt "@item:intext"
  957. msgid "Removable Drive"
  958. msgstr "Dysk wymienny"
  959. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:121
  960. msgctxt "@info:status"
  961. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  962. msgstr ""
  963. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:122
  964. msgctxt "@info:title"
  965. msgid "Simulation View"
  966. msgstr "Widok symulacji"
  967. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:123
  968. msgctxt "@info:status"
  969. msgid "Nothing is shown because you need to slice first."
  970. msgstr ""
  971. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:123
  972. msgctxt "@info:title"
  973. msgid "No layers to show"
  974. msgstr ""
  975. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:124
  976. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73
  977. msgctxt "@info:option_text"
  978. msgid "Do not show this message again"
  979. msgstr "Nie pokazuj tego komunikatu ponownie"
  980. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15
  981. msgctxt "@item:inlistbox"
  982. msgid "Layer view"
  983. msgstr "Widok warstwy"
  984. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:70
  985. msgctxt "@info:status"
  986. msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  987. msgstr ""
  988. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:72
  989. msgctxt "@info:title"
  990. msgid "Model errors"
  991. msgstr ""
  992. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12
  993. msgctxt "@item:inmenu"
  994. msgid "Solid view"
  995. msgstr "Widok modelu"
  996. #: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12
  997. msgctxt "@label"
  998. msgid "Support Blocker"
  999. msgstr "Blokada Podpory"
  1000. #: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13
  1001. msgctxt "@info:tooltip"
  1002. msgid "Create a volume in which supports are not printed."
  1003. msgstr "Stwórz obszar, w którym podpory nie będą drukowane."
  1004. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
  1005. msgctxt "@info:generic"
  1006. msgid "Do you want to sync material and software packages with your account?"
  1007. msgstr ""
  1008. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
  1009. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
  1010. msgctxt "@info:title"
  1011. msgid "Changes detected from your Ultimaker account"
  1012. msgstr ""
  1013. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:146
  1014. msgctxt "@action:button"
  1015. msgid "Sync"
  1016. msgstr ""
  1017. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
  1018. msgctxt "@info:generic"
  1019. msgid "Syncing..."
  1020. msgstr ""
  1021. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
  1022. msgctxt "@button"
  1023. msgid "Decline"
  1024. msgstr ""
  1025. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
  1026. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  1027. msgctxt "@button"
  1028. msgid "Agree"
  1029. msgstr "Zgadzam się"
  1030. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
  1031. msgctxt "@title:window"
  1032. msgid "Plugin License Agreement"
  1033. msgstr "Akceptowanie Licencji Wtyczki"
  1034. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
  1035. msgctxt "@button"
  1036. msgid "Decline and remove from account"
  1037. msgstr ""
  1038. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
  1039. msgctxt "@info:generic"
  1040. msgid "You need to quit and restart {} before changes have effect."
  1041. msgstr ""
  1042. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:76
  1043. msgctxt "@info:generic"
  1044. msgid "{} plugins failed to download"
  1045. msgstr ""
  1046. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15
  1047. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1048. msgid "Open Compressed Triangle Mesh"
  1049. msgstr "Otwórz skompresowaną siatkę trójkątów"
  1050. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19
  1051. msgctxt "@item:inlistbox"
  1052. msgid "COLLADA Digital Asset Exchange"
  1053. msgstr "Cyfrowa wymiana zasobów COLLADA"
  1054. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23
  1055. msgctxt "@item:inlistbox"
  1056. msgid "glTF Binary"
  1057. msgstr "Biblioteka glTF"
  1058. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27
  1059. msgctxt "@item:inlistbox"
  1060. msgid "glTF Embedded JSON"
  1061. msgstr "Załączony JSON glTF"
  1062. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36
  1063. msgctxt "@item:inlistbox"
  1064. msgid "Stanford Triangle Format"
  1065. msgstr "Format trójkątów Stanforda"
  1066. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40
  1067. msgctxt "@item:inlistbox"
  1068. msgid "Compressed COLLADA Digital Asset Exchange"
  1069. msgstr "Skompresowana cyfrowa wymiana zasobów COLLADA"
  1070. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22
  1071. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28
  1072. msgctxt "@item:inlistbox"
  1073. msgid "Ultimaker Format Package"
  1074. msgstr "Pakiet Formatu Ultimaker"
  1075. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:146
  1076. msgctxt "@info:error"
  1077. msgid "Can't write to UFP file:"
  1078. msgstr ""
  1079. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  1080. msgctxt "@action"
  1081. msgid "Level build plate"
  1082. msgstr "Wypoziomuj stół"
  1083. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  1084. msgctxt "@action"
  1085. msgid "Select upgrades"
  1086. msgstr "Wybierz aktualizacje"
  1087. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
  1088. msgctxt "@action:button"
  1089. msgid "Print via cloud"
  1090. msgstr ""
  1091. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
  1092. msgctxt "@properties:tooltip"
  1093. msgid "Print via cloud"
  1094. msgstr ""
  1095. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  1096. msgctxt "@info:status"
  1097. msgid "Connected via cloud"
  1098. msgstr ""
  1099. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:264
  1100. #, python-brace-format
  1101. msgctxt "@error:send"
  1102. msgid "Unknown error code when uploading print job: {0}"
  1103. msgstr ""
  1104. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
  1105. msgctxt "info:status"
  1106. msgid "New printer detected from your Ultimaker account"
  1107. msgid_plural "New printers detected from your Ultimaker account"
  1108. msgstr[0] ""
  1109. msgstr[1] ""
  1110. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
  1111. #, python-brace-format
  1112. msgctxt "info:status Filled in with printer name and printer model."
  1113. msgid "Adding printer {name} ({model}) from your account"
  1114. msgstr ""
  1115. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
  1116. #, python-brace-format
  1117. msgctxt "info:{0} gets replaced by a number of printers"
  1118. msgid "... and {0} other"
  1119. msgid_plural "... and {0} others"
  1120. msgstr[0] ""
  1121. msgstr[1] ""
  1122. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
  1123. msgctxt "info:status"
  1124. msgid "Printers added from Digital Factory:"
  1125. msgstr ""
  1126. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
  1127. msgctxt "info:status"
  1128. msgid "A cloud connection is not available for a printer"
  1129. msgid_plural "A cloud connection is not available for some printers"
  1130. msgstr[0] ""
  1131. msgstr[1] ""
  1132. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
  1133. msgctxt "info:status"
  1134. msgid "This printer is not linked to the Digital Factory:"
  1135. msgid_plural "These printers are not linked to the Digital Factory:"
  1136. msgstr[0] ""
  1137. msgstr[1] ""
  1138. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
  1139. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
  1140. msgctxt "info:name"
  1141. msgid "Ultimaker Digital Factory"
  1142. msgstr ""
  1143. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
  1144. #, python-brace-format
  1145. msgctxt "info:status"
  1146. msgid "To establish a connection, please visit the {website_link}"
  1147. msgstr ""
  1148. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  1149. msgctxt "@action:button"
  1150. msgid "Keep printer configurations"
  1151. msgstr ""
  1152. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
  1153. msgctxt "@action:button"
  1154. msgid "Remove printers"
  1155. msgstr ""
  1156. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
  1157. #, python-brace-format
  1158. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1159. msgid "{printer_name} will be removed until the next account sync."
  1160. msgstr ""
  1161. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  1162. #, python-brace-format
  1163. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1164. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  1165. msgstr ""
  1166. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
  1167. #, python-brace-format
  1168. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1169. msgid "Are you sure you want to remove {printer_name} temporarily?"
  1170. msgstr ""
  1171. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
  1172. msgctxt "@title:window"
  1173. msgid "Remove printers?"
  1174. msgstr ""
  1175. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
  1176. #, python-brace-format
  1177. msgctxt "@label"
  1178. msgid ""
  1179. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  1180. "Are you sure you want to continue?"
  1181. msgid_plural ""
  1182. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  1183. "Are you sure you want to continue?"
  1184. msgstr[0] ""
  1185. msgstr[1] ""
  1186. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
  1187. msgctxt "@label"
  1188. msgid ""
  1189. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  1190. "Are you sure you want to continue?"
  1191. msgstr ""
  1192. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
  1193. msgctxt "@info:status"
  1194. msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  1195. msgstr "Wyślij i nadzoruj zadania druku z każdego miejsca, używając konta Ultimaker."
  1196. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
  1197. msgctxt "@info:status Ultimaker Cloud should not be translated."
  1198. msgid "Connect to Ultimaker Digital Factory"
  1199. msgstr ""
  1200. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
  1201. msgctxt "@action"
  1202. msgid "Get started"
  1203. msgstr "Rozpocznij"
  1204. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  1205. msgctxt "@info:status"
  1206. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  1207. msgstr "Próbujesz połączyć się z drukarką, na której nie działa Ultimaker Connect. Zaktualizuj drukarkę do najnowszej wersji firmware."
  1208. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  1209. msgctxt "@info:title"
  1210. msgid "Update your printer"
  1211. msgstr "Zaktualizuj swoją drukarkę"
  1212. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  1213. #, python-brace-format
  1214. msgctxt "@info:status"
  1215. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  1216. msgstr "Cura wykryła profile materiałów, które nie zostały jeszcze zainstalowane na gospodarzu grupy {0}."
  1217. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  1218. msgctxt "@info:title"
  1219. msgid "Sending materials to printer"
  1220. msgstr "Wysyłanie materiałów do drukarki"
  1221. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  1222. #, python-brace-format
  1223. msgctxt "@info:status"
  1224. 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."
  1225. msgstr "Próbujesz połączyć się z {0}, ale nie jest to gospodarz grupy. Możesz odwiedzić stronę internetową, aby skonfigurować jako gospodarza."
  1226. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  1227. msgctxt "@info:title"
  1228. msgid "Not a group host"
  1229. msgstr "Nie jest gospodarzem grupy"
  1230. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
  1231. msgctxt "@action"
  1232. msgid "Configure group"
  1233. msgstr "Konfiguruj grupę"
  1234. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  1235. msgctxt "@info:status"
  1236. msgid "Please wait until the current job has been sent."
  1237. msgstr "Poczekaj, aż bieżące zadanie zostanie wysłane."
  1238. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  1239. msgctxt "@info:title"
  1240. msgid "Print error"
  1241. msgstr "Błąd druku"
  1242. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  1243. msgctxt "@info:text"
  1244. msgid "Could not upload the data to the printer."
  1245. msgstr "Nie można wgrać danych do drukarki."
  1246. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  1247. msgctxt "@info:title"
  1248. msgid "Network error"
  1249. msgstr "Błąd sieci"
  1250. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  1251. msgctxt "@info:status"
  1252. msgid "Sending Print Job"
  1253. msgstr "Wysyłanie zadania druku"
  1254. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  1255. msgctxt "@info:status"
  1256. msgid "Uploading print job to printer."
  1257. msgstr "Przesyłanie zadania do drukarki."
  1258. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  1259. msgctxt "@info:status"
  1260. msgid "Print job queue is full. The printer can't accept a new job."
  1261. msgstr ""
  1262. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  1263. msgctxt "@info:title"
  1264. msgid "Queue Full"
  1265. msgstr ""
  1266. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  1267. msgctxt "@info:status"
  1268. msgid "Print job was successfully sent to the printer."
  1269. msgstr "Zadanie drukowania zostało pomyślnie wysłane do drukarki."
  1270. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  1271. msgctxt "@info:title"
  1272. msgid "Data Sent"
  1273. msgstr "Dane Wysłane"
  1274. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  1275. msgctxt "@action:button Preceded by 'Ready to'."
  1276. msgid "Print over network"
  1277. msgstr "Drukuj przez sieć"
  1278. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  1279. msgctxt "@properties:tooltip"
  1280. msgid "Print over network"
  1281. msgstr "Drukuj przez sieć"
  1282. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  1283. msgctxt "@info:status"
  1284. msgid "Connected over the network"
  1285. msgstr "Połączone przez sieć"
  1286. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  1287. msgctxt "@action"
  1288. msgid "Connect via Network"
  1289. msgstr "Połącz przez sieć"
  1290. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  1291. msgctxt "@info:status"
  1292. msgid "tomorrow"
  1293. msgstr "jutro"
  1294. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  1295. msgctxt "@info:status"
  1296. msgid "today"
  1297. msgstr "dziś"
  1298. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  1299. msgctxt "@item:inmenu"
  1300. msgid "USB printing"
  1301. msgstr "Drukowanie USB"
  1302. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  1303. msgctxt "@action:button Preceded by 'Ready to'."
  1304. msgid "Print via USB"
  1305. msgstr "Drukuj przez USB"
  1306. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  1307. msgctxt "@info:tooltip"
  1308. msgid "Print via USB"
  1309. msgstr "Drukuj przez USB"
  1310. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  1311. msgctxt "@info:status"
  1312. msgid "Connected via USB"
  1313. msgstr "Połączono przez USB"
  1314. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  1315. msgctxt "@label"
  1316. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  1317. msgstr "Trwa drukowanie przez USB, zamknięcie Cura spowoduje jego zatrzymanie. Jesteś pewien?"
  1318. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  1319. msgctxt "@message"
  1320. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  1321. msgstr "Nadal trwa drukowanie. Cura nie może rozpocząć kolejnego wydruku przez USB, dopóki poprzedni wydruk nie zostanie zakończony."
  1322. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  1323. msgctxt "@message"
  1324. msgid "Print in Progress"
  1325. msgstr "Drukowanie w toku"
  1326. #: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13
  1327. msgctxt "@item:inlistbox"
  1328. msgid "X3D File"
  1329. msgstr "X3D Plik"
  1330. #: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12
  1331. msgctxt "@item:inlistbox"
  1332. msgid "X-Ray view"
  1333. msgstr "Widok X-Ray"
  1334. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
  1335. msgctxt "@info:tooltip"
  1336. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  1337. msgstr "Niektóre rzeczy mogą być problematyczne podczas tego wydruku. Kliknij, aby zobaczyć porady dotyczące regulacji."
  1338. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:14
  1339. msgctxt "@title:window"
  1340. msgid "Open Project"
  1341. msgstr "Otwórz projekt"
  1342. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:61
  1343. msgctxt "@action:ComboBox Update/override existing profile"
  1344. msgid "Update existing"
  1345. msgstr "Zaktualizuj istniejące"
  1346. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
  1347. msgctxt "@action:ComboBox Save settings in a new profile"
  1348. msgid "Create new"
  1349. msgstr "Utwórz nowy"
  1350. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:74
  1351. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
  1352. msgctxt "@action:title"
  1353. msgid "Summary - Cura Project"
  1354. msgstr "Podsumowanie - Projekt Cura"
  1355. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:96
  1356. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
  1357. msgctxt "@action:label"
  1358. msgid "Printer settings"
  1359. msgstr "Ustawienia drukarki"
  1360. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:112
  1361. msgctxt "@info:tooltip"
  1362. msgid "How should the conflict in the machine be resolved?"
  1363. msgstr "Jak powinny być rozwiązywane błędy w maszynie?"
  1364. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:165
  1365. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
  1366. msgctxt "@action:label"
  1367. msgid "Type"
  1368. msgstr "Typ"
  1369. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:181
  1370. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  1371. msgctxt "@action:label"
  1372. msgid "Printer Group"
  1373. msgstr "Grupa drukarek"
  1374. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:203
  1375. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
  1376. msgctxt "@action:label"
  1377. msgid "Profile settings"
  1378. msgstr "Ustawienia profilu"
  1379. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:219
  1380. msgctxt "@info:tooltip"
  1381. msgid "How should the conflict in the profile be resolved?"
  1382. msgstr "Jak powinien zostać rozwiązany problem z profilem?"
  1383. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239
  1384. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:349
  1385. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  1386. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
  1387. msgctxt "@action:label"
  1388. msgid "Name"
  1389. msgstr "Nazwa"
  1390. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:255
  1391. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
  1392. msgctxt "@action:label"
  1393. msgid "Intent"
  1394. msgstr "Cel"
  1395. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:271
  1396. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
  1397. msgctxt "@action:label"
  1398. msgid "Not in profile"
  1399. msgstr "Nie w profilu"
  1400. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:276
  1401. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
  1402. msgctxt "@action:label"
  1403. msgid "%1 override"
  1404. msgid_plural "%1 overrides"
  1405. msgstr[0] "%1 nadpisanie"
  1406. msgstr[1] "%1 Zastępuje"
  1407. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:287
  1408. msgctxt "@action:label"
  1409. msgid "Derivative from"
  1410. msgstr "Pochodna z"
  1411. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292
  1412. msgctxt "@action:label"
  1413. msgid "%1, %2 override"
  1414. msgid_plural "%1, %2 overrides"
  1415. msgstr[0] "%1, %2 nadpisanie"
  1416. msgstr[1] "%1, %2 zastępuje"
  1417. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:309
  1418. msgctxt "@action:label"
  1419. msgid "Material settings"
  1420. msgstr "Ustawienia materiału"
  1421. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:325
  1422. msgctxt "@info:tooltip"
  1423. msgid "How should the conflict in the material be resolved?"
  1424. msgstr "Jak powinien zostać rozwiązany problem z materiałem?"
  1425. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:369
  1426. msgctxt "@action:label"
  1427. msgid "Setting visibility"
  1428. msgstr "Ustawienie widoczności"
  1429. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:378
  1430. msgctxt "@action:label"
  1431. msgid "Mode"
  1432. msgstr "Tryb"
  1433. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:394
  1434. msgctxt "@action:label"
  1435. msgid "Visible settings:"
  1436. msgstr "Widoczne ustawienie:"
  1437. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:399
  1438. msgctxt "@action:label"
  1439. msgid "%1 out of %2"
  1440. msgstr "%1 poza %2"
  1441. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:425
  1442. msgctxt "@action:warning"
  1443. msgid "Loading a project will clear all models on the build plate."
  1444. msgstr "Ładowanie projektu usunie wszystkie modele z platformy roboczej."
  1445. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:453
  1446. msgctxt "@action:button"
  1447. msgid "Open"
  1448. msgstr "Otwórz"
  1449. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  1450. msgctxt "@button"
  1451. msgid "Want more?"
  1452. msgstr "Chcesz więcej?"
  1453. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  1454. msgctxt "@button"
  1455. msgid "Backup Now"
  1456. msgstr "Utwórz kopię zapasową"
  1457. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  1458. msgctxt "@checkbox:description"
  1459. msgid "Auto Backup"
  1460. msgstr "Automatyczne tworzenie kopii zapasowej"
  1461. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  1462. msgctxt "@checkbox:description"
  1463. msgid "Automatically create a backup each day that Cura is started."
  1464. msgstr "Automatycznie twórz kopie zapasowe każdego dnia, w którym uruchomiono Curę."
  1465. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  1466. msgctxt "@button"
  1467. msgid "Restore"
  1468. msgstr "Przywróć"
  1469. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
  1470. msgctxt "@dialog:title"
  1471. msgid "Delete Backup"
  1472. msgstr "Usuń kopię zapasową"
  1473. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  1474. msgctxt "@dialog:info"
  1475. msgid "Are you sure you want to delete this backup? This cannot be undone."
  1476. msgstr "Czy na pewno chcesz usunąć tę kopię zapasową? Tej czynności nie można cofnąć."
  1477. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
  1478. msgctxt "@dialog:title"
  1479. msgid "Restore Backup"
  1480. msgstr "Przywróć kopię zapasową"
  1481. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  1482. msgctxt "@dialog:info"
  1483. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  1484. msgstr "Musisz zrestartować Curę przed przywróceniem kopii zapasowej. Czy chcesz teraz zamknąć Curę?"
  1485. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  1486. msgctxt "@backuplist:label"
  1487. msgid "Cura Version"
  1488. msgstr "Wersja Cura"
  1489. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  1490. msgctxt "@backuplist:label"
  1491. msgid "Machines"
  1492. msgstr "Drukarki"
  1493. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  1494. msgctxt "@backuplist:label"
  1495. msgid "Materials"
  1496. msgstr "Materiały"
  1497. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  1498. msgctxt "@backuplist:label"
  1499. msgid "Profiles"
  1500. msgstr "Profile"
  1501. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  1502. msgctxt "@backuplist:label"
  1503. msgid "Plugins"
  1504. msgstr "Pluginy"
  1505. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25
  1506. msgctxt "@title:window"
  1507. msgid "Cura Backups"
  1508. msgstr "Kopie zapasowe cura"
  1509. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1510. msgctxt "@title"
  1511. msgid "My Backups"
  1512. msgstr "Moje Kopie Zapasowe"
  1513. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  1514. msgctxt "@empty_state"
  1515. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1516. msgstr "Nie masz żadnych kopii zapasowych. Użyj przycisku „Utwórz kopię zapasową”, aby go utworzyć."
  1517. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  1518. msgctxt "@backup_limit_info"
  1519. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1520. msgstr "Podczas fazy podglądu będziesz ograniczony do 5 widocznych kopii zapasowych. Usuń kopię zapasową, aby zobaczyć starsze."
  1521. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1522. msgctxt "@description"
  1523. msgid "Backup and synchronize your Cura settings."
  1524. msgstr "Wykonaj kopię zapasową i zsynchronizuj ustawienia Cura."
  1525. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
  1526. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
  1527. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:68
  1528. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:125
  1529. msgctxt "@button"
  1530. msgid "Sign in"
  1531. msgstr "Zaloguj"
  1532. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1533. msgctxt "@title"
  1534. msgid "Update Firmware"
  1535. msgstr "Aktualizacja Oprogramowania Sprzętowego"
  1536. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1537. msgctxt "@label"
  1538. 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."
  1539. msgstr "Oprogramowanie ukłądowe jest częścią oprogramowania działającego bezpośrednio na drukarce 3D. Oprogramowanie to steruje silnikami krokowymi, reguluje temperaturę i ostatecznie sprawia, że drukarka działa."
  1540. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1541. msgctxt "@label"
  1542. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1543. msgstr "Oprogramowanie ukłądowe dostarczane z nowymi drukarkami działa, ale nowe wersje mają zazwyczaj więcej funkcji i ulepszeń."
  1544. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1545. msgctxt "@action:button"
  1546. msgid "Automatically upgrade Firmware"
  1547. msgstr "Automatycznie uaktualnij oprogramowanie"
  1548. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1549. msgctxt "@action:button"
  1550. msgid "Upload custom Firmware"
  1551. msgstr "Prześlij niestandardowe oprogramowanie"
  1552. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1553. msgctxt "@label"
  1554. msgid "Firmware can not be updated because there is no connection with the printer."
  1555. msgstr "Oprogramowanie sprzętowe nie może być zaktualizowane, ponieważ nie ma połączenia z drukarką."
  1556. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1557. msgctxt "@label"
  1558. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1559. msgstr "Oprogramowanie sprzętowe nie może być zaktualizowane, ponieważ połączenie z drukarką nie wspiera usługi."
  1560. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1561. msgctxt "@title:window"
  1562. msgid "Select custom firmware"
  1563. msgstr "Wybierz niestandardowe oprogramowanie"
  1564. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1565. msgctxt "@title:window"
  1566. msgid "Firmware Update"
  1567. msgstr "Aktualizacja oprogramowania układowego"
  1568. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1569. msgctxt "@label"
  1570. msgid "Updating firmware."
  1571. msgstr "Aktualizowanie oprogramowania."
  1572. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1573. msgctxt "@label"
  1574. msgid "Firmware update completed."
  1575. msgstr "Aktualizacja oprogramowania zakończona."
  1576. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1577. msgctxt "@label"
  1578. msgid "Firmware update failed due to an unknown error."
  1579. msgstr "Aktualizacja oprogramowania nie powiodła się z powodu nieznanego błędu."
  1580. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1581. msgctxt "@label"
  1582. msgid "Firmware update failed due to an communication error."
  1583. msgstr "Aktualizacja oprogramowania nie powiodła się z powodu błędu komunikacji."
  1584. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1585. msgctxt "@label"
  1586. msgid "Firmware update failed due to an input/output error."
  1587. msgstr "Aktualizacja oprogramowania nie powiodła się z powodu błędu wejścia / wyjścia."
  1588. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1589. msgctxt "@label"
  1590. msgid "Firmware update failed due to missing firmware."
  1591. msgstr "Aktualizacja oprogramowania nie powiodła się z powodu utraconego oprogramowania."
  1592. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
  1593. msgctxt "@title:window"
  1594. msgid "Convert Image..."
  1595. msgstr "Konwertuj obraz ..."
  1596. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
  1597. msgctxt "@info:tooltip"
  1598. msgid "The maximum distance of each pixel from \"Base.\""
  1599. msgstr "Maksymalna odległość każdego piksela od \"Bazy.\""
  1600. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
  1601. msgctxt "@action:label"
  1602. msgid "Height (mm)"
  1603. msgstr "Wysokość (mm)"
  1604. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
  1605. msgctxt "@info:tooltip"
  1606. msgid "The base height from the build plate in millimeters."
  1607. msgstr "Wysokość podstawy od stołu w milimetrach."
  1608. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
  1609. msgctxt "@action:label"
  1610. msgid "Base (mm)"
  1611. msgstr "Baza (mm)"
  1612. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
  1613. msgctxt "@info:tooltip"
  1614. msgid "The width in millimeters on the build plate."
  1615. msgstr "Szerokość w milimetrach na stole."
  1616. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
  1617. msgctxt "@action:label"
  1618. msgid "Width (mm)"
  1619. msgstr "Szerokość (mm)"
  1620. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
  1621. msgctxt "@info:tooltip"
  1622. msgid "The depth in millimeters on the build plate"
  1623. msgstr "Głębokość w milimetrach na stole"
  1624. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
  1625. msgctxt "@action:label"
  1626. msgid "Depth (mm)"
  1627. msgstr "Głębokość (mm)"
  1628. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
  1629. msgctxt "@info:tooltip"
  1630. 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."
  1631. msgstr "Dla litofanów ciemne piksele powinny odpowiadać grubszym miejscom, aby zablokować więcej światła. Dla zaznaczenia wysokości map, jaśniejsze piksele oznaczają wyższy teren, więc jaśniejsze piksele powinny odpowiadać wyższym położeniom w wygenerowanym modelu 3D."
  1632. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1633. msgctxt "@item:inlistbox"
  1634. msgid "Darker is higher"
  1635. msgstr "Ciemniejsze jest wyższe"
  1636. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1637. msgctxt "@item:inlistbox"
  1638. msgid "Lighter is higher"
  1639. msgstr "Jaśniejszy jest wyższy"
  1640. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
  1641. msgctxt "@info:tooltip"
  1642. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1643. msgstr ""
  1644. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
  1645. msgctxt "@item:inlistbox"
  1646. msgid "Linear"
  1647. msgstr ""
  1648. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
  1649. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172
  1650. msgctxt "@item:inlistbox"
  1651. msgid "Translucency"
  1652. msgstr ""
  1653. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171
  1654. msgctxt "@info:tooltip"
  1655. 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."
  1656. msgstr ""
  1657. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177
  1658. msgctxt "@action:label"
  1659. msgid "1mm Transmittance (%)"
  1660. msgstr ""
  1661. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195
  1662. msgctxt "@info:tooltip"
  1663. msgid "The amount of smoothing to apply to the image."
  1664. msgstr "Ilość wygładzania do zastosowania do obrazu."
  1665. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200
  1666. msgctxt "@action:label"
  1667. msgid "Smoothing"
  1668. msgstr "Wygładzanie"
  1669. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227
  1670. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
  1671. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
  1672. msgctxt "@action:button"
  1673. msgid "OK"
  1674. msgstr "OK"
  1675. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1676. msgctxt "@title:tab"
  1677. msgid "Printer"
  1678. msgstr "Drukarka"
  1679. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1680. msgctxt "@title:label"
  1681. msgid "Nozzle Settings"
  1682. msgstr "Ustawienia dyszy"
  1683. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  1684. msgctxt "@label"
  1685. msgid "Nozzle size"
  1686. msgstr "Rozmiar dyszy"
  1687. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  1688. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  1689. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  1690. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  1691. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  1692. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  1693. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
  1694. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
  1695. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  1696. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
  1697. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  1698. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  1699. msgctxt "@label"
  1700. msgid "mm"
  1701. msgstr "mm"
  1702. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  1703. msgctxt "@label"
  1704. msgid "Compatible material diameter"
  1705. msgstr "Kompatybilna średnica materiału"
  1706. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  1707. msgctxt "@label"
  1708. msgid "Nozzle offset X"
  1709. msgstr "Korekcja dyszy X"
  1710. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  1711. msgctxt "@label"
  1712. msgid "Nozzle offset Y"
  1713. msgstr "Korekcja dyszy Y"
  1714. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  1715. msgctxt "@label"
  1716. msgid "Cooling Fan Number"
  1717. msgstr "Numer Wentylatora"
  1718. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1719. msgctxt "@title:label"
  1720. msgid "Extruder Start G-code"
  1721. msgstr "Początkowy G-code ekstrudera"
  1722. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1723. msgctxt "@title:label"
  1724. msgid "Extruder End G-code"
  1725. msgstr "Końcowy G-code ekstrudera"
  1726. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1727. msgctxt "@title:label"
  1728. msgid "Printer Settings"
  1729. msgstr "Ustawienia drukarki"
  1730. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  1731. msgctxt "@label"
  1732. msgid "X (Width)"
  1733. msgstr "X (Szerokość)"
  1734. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  1735. msgctxt "@label"
  1736. msgid "Y (Depth)"
  1737. msgstr "Y (Głębokość)"
  1738. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  1739. msgctxt "@label"
  1740. msgid "Z (Height)"
  1741. msgstr "Z (Wysokość)"
  1742. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  1743. msgctxt "@label"
  1744. msgid "Build plate shape"
  1745. msgstr "Kształt stołu roboczego"
  1746. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  1747. msgctxt "@label"
  1748. msgid "Origin at center"
  1749. msgstr "Początek na środku"
  1750. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  1751. msgctxt "@label"
  1752. msgid "Heated bed"
  1753. msgstr "Podgrzewany stół"
  1754. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  1755. msgctxt "@label"
  1756. msgid "Heated build volume"
  1757. msgstr "Grzany obszar roboczy"
  1758. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  1759. msgctxt "@label"
  1760. msgid "G-code flavor"
  1761. msgstr "Wersja G-code"
  1762. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  1763. msgctxt "@title:label"
  1764. msgid "Printhead Settings"
  1765. msgstr "Ustawienia głowicy"
  1766. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1767. msgctxt "@label"
  1768. msgid "X min"
  1769. msgstr "X min"
  1770. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1771. msgctxt "@label"
  1772. msgid "Y min"
  1773. msgstr "Y min"
  1774. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1775. msgctxt "@label"
  1776. msgid "X max"
  1777. msgstr "X max"
  1778. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1779. msgctxt "@label"
  1780. msgid "Y max"
  1781. msgstr "Y max"
  1782. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1783. msgctxt "@label"
  1784. msgid "Gantry Height"
  1785. msgstr "Wysokość wózka"
  1786. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  1787. msgctxt "@label"
  1788. msgid "Number of Extruders"
  1789. msgstr "Liczba ekstruderów"
  1790. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:374
  1791. msgctxt "@title:label"
  1792. msgid "Start G-code"
  1793. msgstr "Początkowy G-code"
  1794. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:385
  1795. msgctxt "@title:label"
  1796. msgid "End G-code"
  1797. msgstr "Końcowy G-code"
  1798. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100
  1799. msgctxt "@info"
  1800. msgid ""
  1801. "Please make sure your printer has a connection:\n"
  1802. "- Check if the printer is turned on.\n"
  1803. "- Check if the printer is connected to the network.\n"
  1804. "- Check if you are signed in to discover cloud-connected printers."
  1805. msgstr ""
  1806. "Upewnij się, że drukarka ma połączenie:\n"
  1807. "- Sprawdź, czy drukarka jest włączona.\n"
  1808. "- Sprawdź, czy drukarka jest podłączona do sieci.\n"
  1809. "- Sprawdź, czy jesteś zalogowany, aby znaleźć drukarki podłączone do chmury."
  1810. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
  1811. msgctxt "@info"
  1812. msgid "Please connect your printer to the network."
  1813. msgstr "Podłącz drukarkę do sieci."
  1814. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155
  1815. msgctxt "@label link to technical assistance"
  1816. msgid "View user manuals online"
  1817. msgstr "Pokaż instrukcję użytkownika online"
  1818. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
  1819. msgctxt "@label"
  1820. msgid "Mesh Type"
  1821. msgstr "Typ siatki"
  1822. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
  1823. msgctxt "@label"
  1824. msgid "Normal model"
  1825. msgstr "Normalny model"
  1826. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
  1827. msgctxt "@label"
  1828. msgid "Print as support"
  1829. msgstr "Drukuj jako podpora"
  1830. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
  1831. msgctxt "@label"
  1832. msgid "Modify settings for overlaps"
  1833. msgstr "Modyfikuj ustawienia nakładania"
  1834. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
  1835. msgctxt "@label"
  1836. msgid "Don't support overlaps"
  1837. msgstr "Nie wspieraj nałożenia"
  1838. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
  1839. msgctxt "@item:inlistbox"
  1840. msgid "Infill mesh only"
  1841. msgstr ""
  1842. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
  1843. msgctxt "@item:inlistbox"
  1844. msgid "Cutting mesh"
  1845. msgstr ""
  1846. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
  1847. msgctxt "@action:button"
  1848. msgid "Select settings"
  1849. msgstr "Wybierz ustawienia"
  1850. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  1851. msgctxt "@title:window"
  1852. msgid "Select Settings to Customize for this model"
  1853. msgstr "Wybierz Ustawienia, aby dostosować ten model"
  1854. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
  1855. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
  1856. msgctxt "@label:textbox"
  1857. msgid "Filter..."
  1858. msgstr "Filtr..."
  1859. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
  1860. msgctxt "@label:checkbox"
  1861. msgid "Show all"
  1862. msgstr "Pokaż wszystko"
  1863. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
  1864. msgctxt "@title:window"
  1865. msgid "Post Processing Plugin"
  1866. msgstr "Plugin post-processingu"
  1867. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1868. msgctxt "@label"
  1869. msgid "Post Processing Scripts"
  1870. msgstr "Skrypty post-processingu"
  1871. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
  1872. msgctxt "@action"
  1873. msgid "Add a script"
  1874. msgstr "Dodaj skrypt"
  1875. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
  1876. msgctxt "@label"
  1877. msgid "Settings"
  1878. msgstr "Ustawienia"
  1879. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:499
  1880. msgctxt "@info:tooltip"
  1881. msgid "Change active post-processing scripts."
  1882. msgstr ""
  1883. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:503
  1884. msgctxt "@info:tooltip"
  1885. msgid "The following script is active:"
  1886. msgid_plural "The following scripts are active:"
  1887. msgstr[0] ""
  1888. msgstr[1] ""
  1889. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
  1890. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  1891. msgctxt "@label"
  1892. msgid "Color scheme"
  1893. msgstr "Schemat kolorów"
  1894. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:107
  1895. msgctxt "@label:listbox"
  1896. msgid "Material Color"
  1897. msgstr "Kolor materiału"
  1898. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:111
  1899. msgctxt "@label:listbox"
  1900. msgid "Line Type"
  1901. msgstr "Rodzaj linii"
  1902. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:115
  1903. msgctxt "@label:listbox"
  1904. msgid "Speed"
  1905. msgstr ""
  1906. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:119
  1907. msgctxt "@label:listbox"
  1908. msgid "Layer thickness"
  1909. msgstr "Grubość warstwy"
  1910. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:156
  1911. msgctxt "@label"
  1912. msgid "Compatibility Mode"
  1913. msgstr "Tryb zgodności"
  1914. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:230
  1915. msgctxt "@label"
  1916. msgid "Travels"
  1917. msgstr "Ruchy"
  1918. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:236
  1919. msgctxt "@label"
  1920. msgid "Helpers"
  1921. msgstr "Pomoce"
  1922. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:242
  1923. msgctxt "@label"
  1924. msgid "Shell"
  1925. msgstr "Obrys"
  1926. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:248
  1927. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  1928. msgctxt "@label"
  1929. msgid "Infill"
  1930. msgstr "Wypełnienie"
  1931. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:298
  1932. msgctxt "@label"
  1933. msgid "Only Show Top Layers"
  1934. msgstr "Pokaż tylko najwyższe warstwy"
  1935. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:308
  1936. msgctxt "@label"
  1937. msgid "Show 5 Detailed Layers On Top"
  1938. msgstr "Pokaż 5 Szczegółowych Warstw"
  1939. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
  1940. msgctxt "@label"
  1941. msgid "Top / Bottom"
  1942. msgstr "Góra/ Dół"
  1943. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326
  1944. msgctxt "@label"
  1945. msgid "Inner Wall"
  1946. msgstr "Wewnętrzna ściana"
  1947. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:384
  1948. msgctxt "@label"
  1949. msgid "min"
  1950. msgstr "min"
  1951. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:433
  1952. msgctxt "@label"
  1953. msgid "max"
  1954. msgstr "max"
  1955. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  1956. msgctxt "@title:window"
  1957. msgid "More information on anonymous data collection"
  1958. msgstr "Wiećej informacji o zbieraniu anonimowych danych"
  1959. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  1960. msgctxt "@text:window"
  1961. 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:"
  1962. msgstr "Ultimaker Cura zbiera anonimowe dane w celu poprawy jakości druku i komfortu użytkowania. Poniżej znajduje się przykład wszystkich udostępnianych danych:"
  1963. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  1964. msgctxt "@text:window"
  1965. msgid "I don't want to send anonymous data"
  1966. msgstr "Nie chcę wysyłać anonimowych danych"
  1967. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  1968. msgctxt "@text:window"
  1969. msgid "Allow sending anonymous data"
  1970. msgstr "Pozwól na wysyłanie anonimowych danych"
  1971. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
  1972. msgctxt "@action:button"
  1973. msgid "Back"
  1974. msgstr "Powrót"
  1975. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
  1976. msgctxt "@label"
  1977. msgid "Compatibility"
  1978. msgstr "Zgodność"
  1979. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
  1980. msgctxt "@label:table_header"
  1981. msgid "Machine"
  1982. msgstr "Drukarka"
  1983. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
  1984. msgctxt "@label:table_header"
  1985. msgid "Build Plate"
  1986. msgstr "Stół roboczy"
  1987. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
  1988. msgctxt "@label:table_header"
  1989. msgid "Support"
  1990. msgstr "Podpory"
  1991. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
  1992. msgctxt "@label:table_header"
  1993. msgid "Quality"
  1994. msgstr "Jakość"
  1995. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
  1996. msgctxt "@action:label"
  1997. msgid "Technical Data Sheet"
  1998. msgstr "Dane Techniczne"
  1999. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
  2000. msgctxt "@action:label"
  2001. msgid "Safety Data Sheet"
  2002. msgstr "Dane Bezpieczeństwa"
  2003. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
  2004. msgctxt "@action:label"
  2005. msgid "Printing Guidelines"
  2006. msgstr "Wskazówki Drukowania"
  2007. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
  2008. msgctxt "@action:label"
  2009. msgid "Website"
  2010. msgstr "Strona Internetowa"
  2011. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
  2012. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
  2013. msgctxt "@action:button"
  2014. msgid "Installed"
  2015. msgstr "Zainstalowane"
  2016. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
  2017. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2018. msgid "<a href='%1'>Log in</a> is required to install or update"
  2019. msgstr "<a href=‚%1’>Zaloguj</a> aby zainstalować lub aktualizować"
  2020. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
  2021. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2022. msgid "<a href='%1'>Buy material spools</a>"
  2023. msgstr "<a href=‚%1’>Kup materiał na szpulach</a>"
  2024. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
  2025. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
  2026. msgctxt "@action:button"
  2027. msgid "Update"
  2028. msgstr "Aktualizuj"
  2029. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
  2030. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
  2031. msgctxt "@action:button"
  2032. msgid "Updating"
  2033. msgstr "Aktualizowanie"
  2034. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
  2035. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
  2036. msgctxt "@action:button"
  2037. msgid "Updated"
  2038. msgstr "Zaktualizowano"
  2039. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
  2040. msgctxt "@label"
  2041. msgid "Premium"
  2042. msgstr ""
  2043. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
  2044. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
  2045. msgctxt "@info:tooltip"
  2046. msgid "Go to Web Marketplace"
  2047. msgstr ""
  2048. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
  2049. msgctxt "@label"
  2050. msgid "Search materials"
  2051. msgstr ""
  2052. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
  2053. msgctxt "@info"
  2054. msgid "You will need to restart Cura before changes in packages have effect."
  2055. msgstr "Należy uruchomić ponownie Cura, aby zmiany w pakietach przyniosły efekt."
  2056. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
  2057. msgctxt "@info:button, %1 is the application name"
  2058. msgid "Quit %1"
  2059. msgstr ""
  2060. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
  2061. msgctxt "@title:tab"
  2062. msgid "Plugins"
  2063. msgstr "Wtyczki"
  2064. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
  2065. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466
  2066. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
  2067. msgctxt "@title:tab"
  2068. msgid "Materials"
  2069. msgstr "Materiał"
  2070. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
  2071. msgctxt "@title:tab"
  2072. msgid "Installed"
  2073. msgstr "Zainstalowano"
  2074. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
  2075. msgctxt "@label"
  2076. msgid "Will install upon restarting"
  2077. msgstr "Zostanie zainstalowane po ponownym uruchomieniu"
  2078. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
  2079. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2080. msgid "<a href='%1'>Log in</a> is required to update"
  2081. msgstr "<a href='%1'>Zaloguj</a> aby aktualizować"
  2082. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2083. msgctxt "@action:button"
  2084. msgid "Downgrade"
  2085. msgstr "Zainstaluj poprzednią wersję"
  2086. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2087. msgctxt "@action:button"
  2088. msgid "Uninstall"
  2089. msgstr "Odinstaluj"
  2090. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
  2091. msgctxt "@action:button"
  2092. msgid "Install"
  2093. msgstr "Instaluj"
  2094. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
  2095. msgctxt "@title"
  2096. msgid "Changes from your account"
  2097. msgstr ""
  2098. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  2099. msgctxt "@button"
  2100. msgid "Dismiss"
  2101. msgstr ""
  2102. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  2103. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  2104. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  2105. msgctxt "@button"
  2106. msgid "Next"
  2107. msgstr "Dalej"
  2108. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
  2109. msgctxt "@label"
  2110. msgid "The following packages will be added:"
  2111. msgstr ""
  2112. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
  2113. msgctxt "@label"
  2114. msgid "The following packages can not be installed because of an incompatible Cura version:"
  2115. msgstr ""
  2116. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
  2117. msgctxt "@title:window"
  2118. msgid "Confirm uninstall"
  2119. msgstr "Potwierdź deinstalację"
  2120. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
  2121. msgctxt "@text:window"
  2122. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  2123. msgstr "Odinstalowujesz materiały i/lub profile, które są aktualnie używane. Zatwierdzenie spowoduje przywrócenie bieżących ustawień materiału/profilu do ustawień domyślnych."
  2124. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
  2125. msgctxt "@text:window"
  2126. msgid "Materials"
  2127. msgstr "Materiały"
  2128. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
  2129. msgctxt "@text:window"
  2130. msgid "Profiles"
  2131. msgstr "Profile"
  2132. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
  2133. msgctxt "@action:button"
  2134. msgid "Confirm"
  2135. msgstr "Potwierdź"
  2136. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
  2137. msgctxt "@label"
  2138. msgid "You need to accept the license to install the package"
  2139. msgstr ""
  2140. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
  2141. msgctxt "@label"
  2142. msgid "Website"
  2143. msgstr "Strona internetowa"
  2144. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
  2145. msgctxt "@label"
  2146. msgid "Email"
  2147. msgstr "E-mail"
  2148. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
  2149. msgctxt "@label"
  2150. msgid "Version"
  2151. msgstr "Wersja"
  2152. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
  2153. msgctxt "@label"
  2154. msgid "Last updated"
  2155. msgstr "Ostatnia aktualizacja"
  2156. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
  2157. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  2158. msgctxt "@label"
  2159. msgid "Brand"
  2160. msgstr "Marka"
  2161. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
  2162. msgctxt "@label"
  2163. msgid "Downloads"
  2164. msgstr "Pobrań"
  2165. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2166. msgctxt "@label"
  2167. msgid "Community Contributions"
  2168. msgstr "Udział Społeczności"
  2169. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2170. msgctxt "@label"
  2171. msgid "Community Plugins"
  2172. msgstr "Wtyczki Społeczności"
  2173. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
  2174. msgctxt "@label"
  2175. msgid "Generic Materials"
  2176. msgstr "Materiały Podstawowe"
  2177. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
  2178. msgctxt "@info"
  2179. msgid "Could not connect to the Cura Package database. Please check your connection."
  2180. msgstr "Nie można połączyć się z bazą danych pakietów Cura. Sprawdź swoje połączenie z internetem."
  2181. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
  2182. msgctxt "@title:tab"
  2183. msgid "Installed plugins"
  2184. msgstr ""
  2185. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
  2186. msgctxt "@info"
  2187. msgid "No plugin has been installed."
  2188. msgstr ""
  2189. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
  2190. msgctxt "@title:tab"
  2191. msgid "Installed materials"
  2192. msgstr ""
  2193. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
  2194. msgctxt "@info"
  2195. msgid "No material has been installed."
  2196. msgstr ""
  2197. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
  2198. msgctxt "@title:tab"
  2199. msgid "Bundled plugins"
  2200. msgstr ""
  2201. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
  2202. msgctxt "@title:tab"
  2203. msgid "Bundled materials"
  2204. msgstr ""
  2205. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
  2206. msgctxt "@info"
  2207. msgid "Fetching packages..."
  2208. msgstr "Uzyskiwanie pakietów..."
  2209. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
  2210. msgctxt "@description"
  2211. msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  2212. msgstr ""
  2213. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
  2214. msgctxt "@title"
  2215. msgid "Marketplace"
  2216. msgstr "Marketplace"
  2217. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2218. msgctxt "@title"
  2219. msgid "Build Plate Leveling"
  2220. msgstr "Poziomowanie stołu"
  2221. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2222. msgctxt "@label"
  2223. 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."
  2224. msgstr "Aby upewnić się, że wydruki będą wychodziły świetne, możesz teraz wyregulować stół. Po kliknięciu przycisku \"Przejdź do następnego położenia\" dysza będzie się poruszać do różnych pozycji, które można wyregulować."
  2225. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2226. msgctxt "@label"
  2227. 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."
  2228. msgstr "Dla każdej pozycji; Włóż kartkę papieru pod dyszę i wyreguluj wysokość stołu roboczego. Wysokość stołu jest prawidłowa, gdy papier stawia lekki opór."
  2229. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2230. msgctxt "@action:button"
  2231. msgid "Start Build Plate Leveling"
  2232. msgstr "Rozpocznij poziomowanie stołu roboczego"
  2233. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2234. msgctxt "@action:button"
  2235. msgid "Move to Next Position"
  2236. msgstr "Przejdź do następnego położenia"
  2237. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2238. msgctxt "@label"
  2239. msgid "Please select any upgrades made to this Ultimaker Original"
  2240. msgstr "Proszę wybrać ulepszenia wykonane w tym Ultimaker Original"
  2241. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2242. msgctxt "@label"
  2243. msgid "Heated Build Plate (official kit or self-built)"
  2244. msgstr "Płyta grzewcza (zestaw oficjalny lub własnej roboty)"
  2245. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  2246. msgctxt "@title:window"
  2247. msgid "Connect to Networked Printer"
  2248. msgstr "Połącz się z drukarką sieciową"
  2249. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2250. msgctxt "@label"
  2251. 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."
  2252. msgstr "Aby drukować bezpośrednio na drukarce przez sieć, upewnij się, że drukarka jest podłączona do sieci za pomocą kabla sieciowego lub do sieci WIFI. Jeśli nie podłączysz Cury do drukarki, możesz nadal używać napędu USB do przesyłania plików G-Code do drukarki."
  2253. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2254. msgctxt "@label"
  2255. msgid "Select your printer from the list below:"
  2256. msgstr "Wybierz swoją drukarkę z poniższej listy:"
  2257. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  2258. msgctxt "@action:button"
  2259. msgid "Edit"
  2260. msgstr "Edycja"
  2261. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
  2262. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55
  2263. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
  2264. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138
  2265. msgctxt "@action:button"
  2266. msgid "Remove"
  2267. msgstr "Usunąć"
  2268. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  2269. msgctxt "@action:button"
  2270. msgid "Refresh"
  2271. msgstr "Odśwież"
  2272. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  2273. msgctxt "@label"
  2274. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2275. msgstr "Jeżeli twojej drukarki nie ma na liście, przeczytaj <a href='%1'>poradnik o problemach z drukowaniem przez sieć</a>"
  2276. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
  2277. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  2278. msgctxt "@label"
  2279. msgid "Type"
  2280. msgstr "Rodzaj"
  2281. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
  2282. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  2283. msgctxt "@label"
  2284. msgid "Firmware version"
  2285. msgstr "Wersja oprogramowania"
  2286. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
  2287. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  2288. msgctxt "@label"
  2289. msgid "Address"
  2290. msgstr "Adres"
  2291. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  2292. msgctxt "@label"
  2293. msgid "This printer is not set up to host a group of printers."
  2294. msgstr "Ta drukarka nie jest skonfigurowana jako host dla grupy drukarek."
  2295. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  2296. msgctxt "@label"
  2297. msgid "This printer is the host for a group of %1 printers."
  2298. msgstr "Ta drukarka jest hostem grupy %1 drukarek."
  2299. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  2300. msgctxt "@label"
  2301. msgid "The printer at this address has not yet responded."
  2302. msgstr "Drukarka pod tym adresem jeszcze nie odpowiedziała."
  2303. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  2304. msgctxt "@action:button"
  2305. msgid "Connect"
  2306. msgstr "Połącz"
  2307. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  2308. msgctxt "@title:window"
  2309. msgid "Invalid IP address"
  2310. msgstr "Nieprawidłowy adres IP"
  2311. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2312. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  2313. msgctxt "@text"
  2314. msgid "Please enter a valid IP address."
  2315. msgstr "Proszę podać poprawny adres IP."
  2316. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  2317. msgctxt "@title:window"
  2318. msgid "Printer Address"
  2319. msgstr "Adres drukarki"
  2320. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
  2321. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  2322. msgctxt "@label"
  2323. msgid "Enter the IP address of your printer on the network."
  2324. msgstr "Wprowadź adres IP drukarki."
  2325. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2326. msgctxt "@title:window"
  2327. msgid "Configuration Changes"
  2328. msgstr "Zmiany konfiguracji"
  2329. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  2330. msgctxt "@action:button"
  2331. msgid "Override"
  2332. msgstr "Nadpisz"
  2333. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  2334. msgctxt "@label"
  2335. msgid "The assigned printer, %1, requires the following configuration change:"
  2336. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2337. msgstr[0] "Przypisana drukarka, %1, wymaga następującej zmiany konfiguracji:"
  2338. msgstr[1] "Przypisana drukarka, %1, wymaga następujących zmian konfiguracji:"
  2339. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  2340. msgctxt "@label"
  2341. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2342. msgstr "Drukarka %1 jest przypisana, ale zadanie zawiera nieznaną konfigurację materiału."
  2343. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  2344. msgctxt "@label"
  2345. msgid "Change material %1 from %2 to %3."
  2346. msgstr "Zmień materiał %1 z %2 na %3."
  2347. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  2348. msgctxt "@label"
  2349. msgid "Load %3 as material %1 (This cannot be overridden)."
  2350. msgstr "Załaduj %3 jako materiał %1 (Nie można nadpisać)."
  2351. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  2352. msgctxt "@label"
  2353. msgid "Change print core %1 from %2 to %3."
  2354. msgstr "Zmień rdzeń drukujący %1 z %2 na %3."
  2355. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  2356. msgctxt "@label"
  2357. msgid "Change build plate to %1 (This cannot be overridden)."
  2358. msgstr "Zmień stół na %1 (Nie można nadpisać)."
  2359. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  2360. msgctxt "@label"
  2361. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2362. msgstr "Nadpisanie spowoduje użycie określonych ustawień w istniejącej konfiguracji drukarki. Może to spowodować niepowodzenie druku."
  2363. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
  2364. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
  2365. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
  2366. msgctxt "@label"
  2367. msgid "Glass"
  2368. msgstr "Szkło"
  2369. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  2370. msgctxt "@label"
  2371. msgid "Aluminum"
  2372. msgstr "Aluminum"
  2373. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  2374. msgctxt "@label"
  2375. msgid "Move to top"
  2376. msgstr "Przesuń na początek"
  2377. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  2378. msgctxt "@label"
  2379. msgid "Delete"
  2380. msgstr "Usuń"
  2381. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  2382. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:289
  2383. msgctxt "@label"
  2384. msgid "Resume"
  2385. msgstr "Ponów"
  2386. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  2387. msgctxt "@label"
  2388. msgid "Pausing..."
  2389. msgstr "Zatrzymywanie..."
  2390. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  2391. msgctxt "@label"
  2392. msgid "Resuming..."
  2393. msgstr "Przywracanie..."
  2394. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  2395. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284
  2396. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:293
  2397. msgctxt "@label"
  2398. msgid "Pause"
  2399. msgstr "Wstrzymaj"
  2400. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2401. msgctxt "@label"
  2402. msgid "Aborting..."
  2403. msgstr "Przerywanie..."
  2404. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2405. msgctxt "@label"
  2406. msgid "Abort"
  2407. msgstr "Anuluj"
  2408. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  2409. msgctxt "@label %1 is the name of a print job."
  2410. msgid "Are you sure you want to move %1 to the top of the queue?"
  2411. msgstr "Czy jesteś pewien, że chcesz przesunąć %1 na początek kolejki?"
  2412. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2413. msgctxt "@window:title"
  2414. msgid "Move print job to top"
  2415. msgstr "Przesuń zadanie drukowania na początek"
  2416. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  2417. msgctxt "@label %1 is the name of a print job."
  2418. msgid "Are you sure you want to delete %1?"
  2419. msgstr "Czy jesteś pewien, że chcesz usunąć %1?"
  2420. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  2421. msgctxt "@window:title"
  2422. msgid "Delete print job"
  2423. msgstr "Usuń zadanie drukowania"
  2424. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  2425. msgctxt "@label %1 is the name of a print job."
  2426. msgid "Are you sure you want to abort %1?"
  2427. msgstr "Czy jesteś pewien, że chcesz anulować %1?"
  2428. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
  2429. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:335
  2430. msgctxt "@window:title"
  2431. msgid "Abort print"
  2432. msgstr "Anuluj wydruk"
  2433. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
  2434. msgctxt "@label link to Connect and Cloud interfaces"
  2435. msgid "Manage printer"
  2436. msgstr "Zarządzaj drukarkami"
  2437. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
  2438. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:519
  2439. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
  2440. msgctxt "@info"
  2441. msgid "Please update your printer's firmware to manage the queue remotely."
  2442. msgstr "Zaktualizuj oprogramowanie drukarki, aby zdalnie zarządzać kolejką."
  2443. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2444. msgctxt "@label:status"
  2445. msgid "Loading..."
  2446. msgstr "Wczytywanie..."
  2447. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2448. msgctxt "@label:status"
  2449. msgid "Unavailable"
  2450. msgstr "Niedostępne"
  2451. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2452. msgctxt "@label:status"
  2453. msgid "Unreachable"
  2454. msgstr "Nieosiągalna"
  2455. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  2456. msgctxt "@label:status"
  2457. msgid "Idle"
  2458. msgstr "Zajęta"
  2459. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:365
  2460. msgctxt "@label:status"
  2461. msgid "Printing"
  2462. msgstr "Drukowanie"
  2463. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:406
  2464. msgctxt "@label"
  2465. msgid "Untitled"
  2466. msgstr "Bez tytułu"
  2467. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:427
  2468. msgctxt "@label"
  2469. msgid "Anonymous"
  2470. msgstr "Anonimowa"
  2471. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:454
  2472. msgctxt "@label:status"
  2473. msgid "Requires configuration changes"
  2474. msgstr "Wymaga zmian konfiguracji"
  2475. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:492
  2476. msgctxt "@action:button"
  2477. msgid "Details"
  2478. msgstr "Szczegóły"
  2479. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
  2480. msgctxt "@label"
  2481. msgid "Unavailable printer"
  2482. msgstr "Drukarka niedostępna"
  2483. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
  2484. msgctxt "@label"
  2485. msgid "First available"
  2486. msgstr "Pierwsza dostępna"
  2487. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2488. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2489. msgctxt "@label:status"
  2490. msgid "Aborted"
  2491. msgstr "Anulowano"
  2492. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2493. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2494. msgctxt "@label:status"
  2495. msgid "Finished"
  2496. msgstr "Zakończono"
  2497. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2498. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2499. msgctxt "@label:status"
  2500. msgid "Preparing..."
  2501. msgstr "Przygotowyję..."
  2502. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2503. msgctxt "@label:status"
  2504. msgid "Aborting..."
  2505. msgstr "Przerywanie..."
  2506. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2507. msgctxt "@label:status"
  2508. msgid "Pausing..."
  2509. msgstr "Zatrzymywanie..."
  2510. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2511. msgctxt "@label:status"
  2512. msgid "Paused"
  2513. msgstr "Wstrzymana"
  2514. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2515. msgctxt "@label:status"
  2516. msgid "Resuming..."
  2517. msgstr "Przywracanie..."
  2518. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2519. msgctxt "@label:status"
  2520. msgid "Action required"
  2521. msgstr "Konieczne są działania"
  2522. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2523. msgctxt "@label:status"
  2524. msgid "Finishes %1 at %2"
  2525. msgstr "Zakończone %1 z %2"
  2526. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  2527. msgctxt "@label"
  2528. msgid "Queued"
  2529. msgstr "W kolejce"
  2530. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
  2531. msgctxt "@label link to connect manager"
  2532. msgid "Manage in browser"
  2533. msgstr "Zarządzaj w przeglądarce"
  2534. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2535. msgctxt "@label"
  2536. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2537. msgstr "W kolejce nie ma zadań drukowania. Potnij i wyślij zadanie, aby dodać."
  2538. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
  2539. msgctxt "@label"
  2540. msgid "Print jobs"
  2541. msgstr "Zadania druku"
  2542. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
  2543. msgctxt "@label"
  2544. msgid "Total print time"
  2545. msgstr "Łączny czas druku"
  2546. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
  2547. msgctxt "@label"
  2548. msgid "Waiting for"
  2549. msgstr "Oczekiwanie na"
  2550. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
  2551. msgctxt "@title:window"
  2552. msgid "Print over network"
  2553. msgstr "Drukuj przez sieć"
  2554. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
  2555. msgctxt "@action:button"
  2556. msgid "Print"
  2557. msgstr "Drukuj"
  2558. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
  2559. msgctxt "@label"
  2560. msgid "Printer selection"
  2561. msgstr "Wybór drukarki"
  2562. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24
  2563. msgctxt "@action:button"
  2564. msgid "Sign in"
  2565. msgstr "Zaloguj"
  2566. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:40
  2567. msgctxt "@label"
  2568. msgid "Your key to connected 3D printing"
  2569. msgstr ""
  2570. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:51
  2571. msgctxt "@text"
  2572. msgid ""
  2573. "- Customize your experience with more print profiles and plugins\n"
  2574. "- Stay flexible by syncing your setup and loading it anywhere\n"
  2575. "- Increase efficiency with a remote workflow on Ultimaker printers"
  2576. msgstr ""
  2577. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:78
  2578. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:142
  2579. msgctxt "@button"
  2580. msgid "Create account"
  2581. msgstr "Utwórz konto"
  2582. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28
  2583. msgctxt "@label"
  2584. msgid "Checking..."
  2585. msgstr ""
  2586. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35
  2587. msgctxt "@label"
  2588. msgid "Account synced"
  2589. msgstr ""
  2590. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42
  2591. msgctxt "@label"
  2592. msgid "Something went wrong..."
  2593. msgstr ""
  2594. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96
  2595. msgctxt "@button"
  2596. msgid "Install pending updates"
  2597. msgstr ""
  2598. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118
  2599. msgctxt "@button"
  2600. msgid "Check for account updates"
  2601. msgstr ""
  2602. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81
  2603. msgctxt "@label The argument is a timestamp"
  2604. msgid "Last update: %1"
  2605. msgstr ""
  2606. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109
  2607. msgctxt "@button"
  2608. msgid "Ultimaker Account"
  2609. msgstr ""
  2610. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125
  2611. msgctxt "@button"
  2612. msgid "Sign Out"
  2613. msgstr ""
  2614. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  2615. msgctxt "@label"
  2616. msgid "No time estimation available"
  2617. msgstr "Szacunkowy czas niedostępny"
  2618. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  2619. msgctxt "@label"
  2620. msgid "No cost estimation available"
  2621. msgstr "Szacunkowy koszt niedostępny"
  2622. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  2623. msgctxt "@button"
  2624. msgid "Preview"
  2625. msgstr "Podgląd"
  2626. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  2627. msgctxt "@label"
  2628. msgid "Time estimation"
  2629. msgstr "Szacunkowy czas"
  2630. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  2631. msgctxt "@label"
  2632. msgid "Material estimation"
  2633. msgstr "Szacunkowy materiał"
  2634. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  2635. msgctxt "@label m for meter"
  2636. msgid "%1m"
  2637. msgstr "%1m"
  2638. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  2639. msgctxt "@label g for grams"
  2640. msgid "%1g"
  2641. msgstr "%1g"
  2642. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  2643. msgctxt "@label:PrintjobStatus"
  2644. msgid "Slicing..."
  2645. msgstr "Cięcie..."
  2646. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
  2647. msgctxt "@label:PrintjobStatus"
  2648. msgid "Unable to slice"
  2649. msgstr "Nie można pociąć"
  2650. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  2651. msgctxt "@button"
  2652. msgid "Processing"
  2653. msgstr "Przetwarzanie"
  2654. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  2655. msgctxt "@button"
  2656. msgid "Slice"
  2657. msgstr "Potnij"
  2658. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
  2659. msgctxt "@label"
  2660. msgid "Start the slicing process"
  2661. msgstr "Rozpocznij proces cięcia"
  2662. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
  2663. msgctxt "@button"
  2664. msgid "Cancel"
  2665. msgstr "Anuluj"
  2666. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:82
  2667. msgctxt "@action:inmenu"
  2668. msgid "Show Online Troubleshooting Guide"
  2669. msgstr "Pokaż przewodnik rozwiązywania problemów online"
  2670. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:89
  2671. msgctxt "@action:inmenu"
  2672. msgid "Toggle Full Screen"
  2673. msgstr "Przełącz tryb pełnoekranowy"
  2674. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:97
  2675. msgctxt "@action:inmenu"
  2676. msgid "Exit Full Screen"
  2677. msgstr "Wyłącz tryb pełnoekranowy"
  2678. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:104
  2679. msgctxt "@action:inmenu menubar:edit"
  2680. msgid "&Undo"
  2681. msgstr "&Cofnij"
  2682. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:114
  2683. msgctxt "@action:inmenu menubar:edit"
  2684. msgid "&Redo"
  2685. msgstr "&Ponów"
  2686. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:124
  2687. msgctxt "@action:inmenu menubar:file"
  2688. msgid "&Quit"
  2689. msgstr "&Zamknij"
  2690. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:132
  2691. msgctxt "@action:inmenu menubar:view"
  2692. msgid "3D View"
  2693. msgstr "Widok 3D"
  2694. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139
  2695. msgctxt "@action:inmenu menubar:view"
  2696. msgid "Front View"
  2697. msgstr "Widok z przodu"
  2698. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146
  2699. msgctxt "@action:inmenu menubar:view"
  2700. msgid "Top View"
  2701. msgstr "Widok z góry"
  2702. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153
  2703. msgctxt "@action:inmenu menubar:view"
  2704. msgid "Left Side View"
  2705. msgstr "Widok z lewej strony"
  2706. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160
  2707. msgctxt "@action:inmenu menubar:view"
  2708. msgid "Right Side View"
  2709. msgstr "Widok z prawej strony"
  2710. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167
  2711. msgctxt "@action:inmenu"
  2712. msgid "Configure Cura..."
  2713. msgstr "Konfiguruj Cura..."
  2714. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174
  2715. msgctxt "@action:inmenu menubar:printer"
  2716. msgid "&Add Printer..."
  2717. msgstr "&Dodaj drukarkę..."
  2718. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:180
  2719. msgctxt "@action:inmenu menubar:printer"
  2720. msgid "Manage Pr&inters..."
  2721. msgstr "Zarządzaj drukarkami..."
  2722. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:187
  2723. msgctxt "@action:inmenu"
  2724. msgid "Manage Materials..."
  2725. msgstr "Zarządzaj materiałami..."
  2726. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195
  2727. msgctxt "@action:inmenu"
  2728. msgid "Add more materials from Marketplace"
  2729. msgstr ""
  2730. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:202
  2731. msgctxt "@action:inmenu menubar:profile"
  2732. msgid "&Update profile with current settings/overrides"
  2733. msgstr "&Aktualizuj profil z bieżącymi ustawieniami"
  2734. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210
  2735. msgctxt "@action:inmenu menubar:profile"
  2736. msgid "&Discard current changes"
  2737. msgstr "&Odrzuć bieżące zmiany"
  2738. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:222
  2739. msgctxt "@action:inmenu menubar:profile"
  2740. msgid "&Create profile from current settings/overrides..."
  2741. msgstr "&Utwórz profil z bieżących ustawień..."
  2742. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:228
  2743. msgctxt "@action:inmenu menubar:profile"
  2744. msgid "Manage Profiles..."
  2745. msgstr "Zarządzaj profilami..."
  2746. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236
  2747. msgctxt "@action:inmenu menubar:help"
  2748. msgid "Show Online &Documentation"
  2749. msgstr "Pokaż dokumentację internetową"
  2750. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244
  2751. msgctxt "@action:inmenu menubar:help"
  2752. msgid "Report a &Bug"
  2753. msgstr "Zgłoś błąd"
  2754. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252
  2755. msgctxt "@action:inmenu menubar:help"
  2756. msgid "What's New"
  2757. msgstr "Co nowego"
  2758. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:258
  2759. msgctxt "@action:inmenu menubar:help"
  2760. msgid "About..."
  2761. msgstr "O..."
  2762. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265
  2763. msgctxt "@action:inmenu menubar:edit"
  2764. msgid "Delete Selected Model"
  2765. msgid_plural "Delete Selected Models"
  2766. msgstr[0] "Usuń wybrany model"
  2767. msgstr[1] "Usuń wybrane modele"
  2768. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:275
  2769. msgctxt "@action:inmenu menubar:edit"
  2770. msgid "Center Selected Model"
  2771. msgid_plural "Center Selected Models"
  2772. msgstr[0] "Wyśrodkuj wybrany model"
  2773. msgstr[1] "Wyśrodkuj wybrane modele"
  2774. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:284
  2775. msgctxt "@action:inmenu menubar:edit"
  2776. msgid "Multiply Selected Model"
  2777. msgid_plural "Multiply Selected Models"
  2778. msgstr[0] "Rozmnóż wybrany model"
  2779. msgstr[1] "Rozmnóż wybrane modele"
  2780. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:293
  2781. msgctxt "@action:inmenu"
  2782. msgid "Delete Model"
  2783. msgstr "Usuń model"
  2784. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301
  2785. msgctxt "@action:inmenu"
  2786. msgid "Ce&nter Model on Platform"
  2787. msgstr "Wyśrodkuj model na platformie"
  2788. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:307
  2789. msgctxt "@action:inmenu menubar:edit"
  2790. msgid "&Group Models"
  2791. msgstr "&Grupuj modele"
  2792. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:327
  2793. msgctxt "@action:inmenu menubar:edit"
  2794. msgid "Ungroup Models"
  2795. msgstr "Rozgrupuj modele"
  2796. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:337
  2797. msgctxt "@action:inmenu menubar:edit"
  2798. msgid "&Merge Models"
  2799. msgstr "Połącz modele"
  2800. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:347
  2801. msgctxt "@action:inmenu"
  2802. msgid "&Multiply Model..."
  2803. msgstr "&Powiel model..."
  2804. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:354
  2805. msgctxt "@action:inmenu menubar:edit"
  2806. msgid "Select All Models"
  2807. msgstr "Wybierz wszystkie modele"
  2808. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:364
  2809. msgctxt "@action:inmenu menubar:edit"
  2810. msgid "Clear Build Plate"
  2811. msgstr "Wyczyść stół"
  2812. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:374
  2813. msgctxt "@action:inmenu menubar:file"
  2814. msgid "Reload All Models"
  2815. msgstr "Przeładuj wszystkie modele"
  2816. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383
  2817. msgctxt "@action:inmenu menubar:edit"
  2818. msgid "Arrange All Models To All Build Plates"
  2819. msgstr "Rozłóż Wszystkie Modele na Wszystkie Platformy Robocze"
  2820. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:390
  2821. msgctxt "@action:inmenu menubar:edit"
  2822. msgid "Arrange All Models"
  2823. msgstr "Ułóż wszystkie modele"
  2824. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398
  2825. msgctxt "@action:inmenu menubar:edit"
  2826. msgid "Arrange Selection"
  2827. msgstr "Wybór ułożenia"
  2828. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:405
  2829. msgctxt "@action:inmenu menubar:edit"
  2830. msgid "Reset All Model Positions"
  2831. msgstr "Zresetuj wszystkie pozycje modelu"
  2832. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412
  2833. msgctxt "@action:inmenu menubar:edit"
  2834. msgid "Reset All Model Transformations"
  2835. msgstr "Zresetuj wszystkie przekształcenia modelu"
  2836. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:419
  2837. msgctxt "@action:inmenu menubar:file"
  2838. msgid "&Open File(s)..."
  2839. msgstr "&Otwórz plik(i)..."
  2840. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427
  2841. msgctxt "@action:inmenu menubar:file"
  2842. msgid "&New Project..."
  2843. msgstr "&Nowy projekt..."
  2844. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434
  2845. msgctxt "@action:inmenu menubar:help"
  2846. msgid "Show Configuration Folder"
  2847. msgstr "Pokaż folder konfiguracji"
  2848. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:441
  2849. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:538
  2850. msgctxt "@action:menu"
  2851. msgid "Configure setting visibility..."
  2852. msgstr "Skonfiguruj widoczność ustawień ..."
  2853. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:448
  2854. msgctxt "@action:menu"
  2855. msgid "&Marketplace"
  2856. msgstr "&Marketplace"
  2857. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:266
  2858. msgctxt "@label"
  2859. msgid "This package will be installed after restarting."
  2860. msgstr "Ten pakiet zostanie zainstalowany po ponownym uruchomieniu."
  2861. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459
  2862. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15
  2863. msgctxt "@title:tab"
  2864. msgid "General"
  2865. msgstr "Ogólny"
  2866. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:462
  2867. msgctxt "@title:tab"
  2868. msgid "Settings"
  2869. msgstr "Ustawienia"
  2870. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:464
  2871. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
  2872. msgctxt "@title:tab"
  2873. msgid "Printers"
  2874. msgstr "Drukarki"
  2875. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468
  2876. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34
  2877. msgctxt "@title:tab"
  2878. msgid "Profiles"
  2879. msgstr "Profile"
  2880. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:587
  2881. msgctxt "@title:window %1 is the application name"
  2882. msgid "Closing %1"
  2883. msgstr ""
  2884. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:588
  2885. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:600
  2886. msgctxt "@label %1 is the application name"
  2887. msgid "Are you sure you want to exit %1?"
  2888. msgstr ""
  2889. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:638
  2890. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
  2891. msgctxt "@title:window"
  2892. msgid "Open file(s)"
  2893. msgstr "Otwórz plik(i)"
  2894. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:744
  2895. msgctxt "@window:title"
  2896. msgid "Install Package"
  2897. msgstr "Instaluj pakiety"
  2898. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:752
  2899. msgctxt "@title:window"
  2900. msgid "Open File(s)"
  2901. msgstr "Otwórz plik(i)"
  2902. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:755
  2903. msgctxt "@text:window"
  2904. 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."
  2905. msgstr "Znaleziono jeden lub więcej plików G-code w wybranych plikach. Możesz otwierać tylko jeden plik G-code jednocześnie. Jeśli chcesz otworzyć plik G-code, proszę wybierz tylko jeden."
  2906. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:858
  2907. msgctxt "@title:window"
  2908. msgid "Add Printer"
  2909. msgstr "Dodaj drukarkę"
  2910. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:866
  2911. msgctxt "@title:window"
  2912. msgid "What's New"
  2913. msgstr "Co nowego"
  2914. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  2915. msgctxt "@title:window The argument is the application name."
  2916. msgid "About %1"
  2917. msgstr ""
  2918. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  2919. msgctxt "@label"
  2920. msgid "version: %1"
  2921. msgstr "version: %1"
  2922. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  2923. msgctxt "@label"
  2924. msgid "End-to-end solution for fused filament 3D printing."
  2925. msgstr "Kompletne rozwiązanie do druku przestrzennego."
  2926. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  2927. msgctxt "@info:credit"
  2928. msgid ""
  2929. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2930. "Cura proudly uses the following open source projects:"
  2931. msgstr ""
  2932. "Cura jest rozwijana przez firmę Ultimaker B.V. we współpracy ze społecznością.\n"
  2933. "Cura z dumą korzysta z następujących projektów open source:"
  2934. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  2935. msgctxt "@label"
  2936. msgid "Graphical user interface"
  2937. msgstr "Graficzny interfejs użytkownika"
  2938. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  2939. msgctxt "@label"
  2940. msgid "Application framework"
  2941. msgstr "Struktura aplikacji"
  2942. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  2943. msgctxt "@label"
  2944. msgid "G-code generator"
  2945. msgstr "Generator g-code"
  2946. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  2947. msgctxt "@label"
  2948. msgid "Interprocess communication library"
  2949. msgstr "Biblioteka komunikacji międzyprocesowej"
  2950. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  2951. msgctxt "@label"
  2952. msgid "Programming language"
  2953. msgstr "Język programowania"
  2954. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  2955. msgctxt "@label"
  2956. msgid "GUI framework"
  2957. msgstr "Framework GUI"
  2958. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  2959. msgctxt "@label"
  2960. msgid "GUI framework bindings"
  2961. msgstr "Powiązania Frameworka GUI"
  2962. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  2963. msgctxt "@label"
  2964. msgid "C/C++ Binding library"
  2965. msgstr "Biblioteka Powiązań C/C++"
  2966. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  2967. msgctxt "@label"
  2968. msgid "Data interchange format"
  2969. msgstr "Format wymiany danych"
  2970. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  2971. msgctxt "@label"
  2972. msgid "Support library for scientific computing"
  2973. msgstr "Wsparcie biblioteki do obliczeń naukowych"
  2974. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  2975. msgctxt "@label"
  2976. msgid "Support library for faster math"
  2977. msgstr "Wsparcie biblioteki dla szybszej matematyki"
  2978. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  2979. msgctxt "@label"
  2980. msgid "Support library for handling STL files"
  2981. msgstr "Wsparcie biblioteki do obsługi plików STL"
  2982. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  2983. msgctxt "@label"
  2984. msgid "Support library for handling planar objects"
  2985. msgstr "Biblioteka pomocnicza do obsługi obiektów płaskich"
  2986. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  2987. msgctxt "@label"
  2988. msgid "Support library for handling triangular meshes"
  2989. msgstr "Biblioteka pomocnicza do obsługi siatek trójkątów"
  2990. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  2991. msgctxt "@label"
  2992. msgid "Support library for handling 3MF files"
  2993. msgstr "Wsparcie biblioteki do obsługi plików 3MF"
  2994. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  2995. msgctxt "@label"
  2996. msgid "Support library for file metadata and streaming"
  2997. msgstr "Biblioteka pomocy dla metadanych plików i przesyłania strumieniowego"
  2998. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  2999. msgctxt "@label"
  3000. msgid "Serial communication library"
  3001. msgstr "Biblioteka komunikacji szeregowej"
  3002. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  3003. msgctxt "@label"
  3004. msgid "ZeroConf discovery library"
  3005. msgstr "Bilbiotek poszukująca Zeroconf"
  3006. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  3007. msgctxt "@label"
  3008. msgid "Polygon clipping library"
  3009. msgstr "Biblioteka edytująca pola"
  3010. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  3011. msgctxt "@Label"
  3012. msgid "Static type checker for Python"
  3013. msgstr ""
  3014. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  3015. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  3016. msgctxt "@Label"
  3017. msgid "Root Certificates for validating SSL trustworthiness"
  3018. msgstr ""
  3019. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  3020. msgctxt "@Label"
  3021. msgid "Python Error tracking library"
  3022. msgstr ""
  3023. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3024. msgctxt "@label"
  3025. msgid "Polygon packing library, developed by Prusa Research"
  3026. msgstr ""
  3027. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  3028. msgctxt "@label"
  3029. msgid "Python bindings for libnest2d"
  3030. msgstr ""
  3031. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  3032. msgctxt "@label"
  3033. msgid "Font"
  3034. msgstr "Czcionka"
  3035. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  3036. msgctxt "@label"
  3037. msgid "SVG icons"
  3038. msgstr "Ikony SVG"
  3039. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  3040. msgctxt "@label"
  3041. msgid "Linux cross-distribution application deployment"
  3042. msgstr "Wdrożenie aplikacji pomiędzy dystrybucjami Linux"
  3043. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  3044. msgctxt "@title:window"
  3045. msgid "Open project file"
  3046. msgstr "Otwórz plik projektu"
  3047. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:93
  3048. msgctxt "@text:window"
  3049. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3050. msgstr "Jest to plik projektu Cura. Czy chcesz otworzyć go jako projekt, czy zaimportować z niego modele?"
  3051. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:103
  3052. msgctxt "@text:window"
  3053. msgid "Remember my choice"
  3054. msgstr "Zapamiętaj mój wybór"
  3055. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:122
  3056. msgctxt "@action:button"
  3057. msgid "Open as project"
  3058. msgstr "Otwórz jako projekt"
  3059. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:131
  3060. msgctxt "@action:button"
  3061. msgid "Import models"
  3062. msgstr "Importuj modele"
  3063. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
  3064. msgctxt "@title:window"
  3065. msgid "Discard or Keep changes"
  3066. msgstr "Odrzuć lub zachowaj zmiany"
  3067. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
  3068. msgctxt "@text:window, %1 is a profile name"
  3069. msgid ""
  3070. "You have customized some profile settings.\n"
  3071. "Would you like to Keep these changed settings after switching profiles?\n"
  3072. "Alternatively, you can discard the changes to load the defaults from '%1'."
  3073. msgstr ""
  3074. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
  3075. msgctxt "@title:column"
  3076. msgid "Profile settings"
  3077. msgstr "Ustawienia profilu"
  3078. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  3079. msgctxt "@title:column"
  3080. msgid "Current changes"
  3081. msgstr ""
  3082. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
  3083. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:747
  3084. msgctxt "@option:discardOrKeep"
  3085. msgid "Always ask me this"
  3086. msgstr "Zawsze pytaj o to"
  3087. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
  3088. msgctxt "@option:discardOrKeep"
  3089. msgid "Discard and never ask again"
  3090. msgstr "Odrzuć i nigdy nie pytaj"
  3091. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
  3092. msgctxt "@option:discardOrKeep"
  3093. msgid "Keep and never ask again"
  3094. msgstr "Zachowaj i nigdy nie pytaj"
  3095. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
  3096. msgctxt "@action:button"
  3097. msgid "Discard changes"
  3098. msgstr ""
  3099. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
  3100. msgctxt "@action:button"
  3101. msgid "Keep changes"
  3102. msgstr ""
  3103. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  3104. msgctxt "@text:window"
  3105. 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?"
  3106. msgstr "Znaleziono jeden lub więcej plików projektu w wybranych plikach. Możesz otwierać tylko jeden plik projektu na raz. Proponujemy importowanie tylko modeli z tych plików. Czy chcesz kontynuować?"
  3107. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:99
  3108. msgctxt "@action:button"
  3109. msgid "Import all as models"
  3110. msgstr "Importuj wszystkie jako modele"
  3111. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
  3112. msgctxt "@title:window"
  3113. msgid "Save Project"
  3114. msgstr "Zapisz projekt"
  3115. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
  3116. msgctxt "@action:label"
  3117. msgid "Extruder %1"
  3118. msgstr "Ekstruder %1"
  3119. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
  3120. msgctxt "@action:label"
  3121. msgid "%1 & material"
  3122. msgstr "%1 & materiał"
  3123. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
  3124. msgctxt "@action:label"
  3125. msgid "Material"
  3126. msgstr "Materiał"
  3127. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
  3128. msgctxt "@action:label"
  3129. msgid "Don't show project summary on save again"
  3130. msgstr "Nie pokazuj podsumowania projektu podczas ponownego zapisywania"
  3131. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
  3132. msgctxt "@action:button"
  3133. msgid "Save"
  3134. msgstr "Zapisz"
  3135. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16
  3136. msgctxt "@label %1 is filled in with the name of an extruder"
  3137. msgid "Print Selected Model with %1"
  3138. msgid_plural "Print Selected Models with %1"
  3139. msgstr[0] "Drukuj Wybrany Model z %1"
  3140. msgstr[1] "Drukuj Wybrane Modele z %1"
  3141. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99
  3142. msgctxt "@text Print job name"
  3143. msgid "Untitled"
  3144. msgstr "Bez tytułu"
  3145. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
  3146. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13
  3147. msgctxt "@title:menu menubar:toplevel"
  3148. msgid "&File"
  3149. msgstr "&Plik"
  3150. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  3151. msgctxt "@title:menu menubar:toplevel"
  3152. msgid "&Edit"
  3153. msgstr "&Edytuj"
  3154. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
  3155. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
  3156. msgctxt "@title:menu menubar:toplevel"
  3157. msgid "&View"
  3158. msgstr "&Widok"
  3159. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
  3160. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13
  3161. msgctxt "@title:menu menubar:toplevel"
  3162. msgid "&Settings"
  3163. msgstr "Opcje"
  3164. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
  3165. msgctxt "@title:menu menubar:toplevel"
  3166. msgid "E&xtensions"
  3167. msgstr "&Rozszerzenia"
  3168. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
  3169. msgctxt "@title:menu menubar:toplevel"
  3170. msgid "P&references"
  3171. msgstr "Preferencje"
  3172. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
  3173. msgctxt "@title:menu menubar:toplevel"
  3174. msgid "&Help"
  3175. msgstr "P&omoc"
  3176. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
  3177. msgctxt "@title:window"
  3178. msgid "New project"
  3179. msgstr "Nowy projekt"
  3180. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
  3181. msgctxt "@info:question"
  3182. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  3183. msgstr "Czy na pewno chcesz rozpocząć nowy projekt? Spowoduje to wyczyszczenie stołu i niezapisanych ustawień."
  3184. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
  3185. msgctxt "@action:button"
  3186. msgid "Marketplace"
  3187. msgstr "Marketplace"
  3188. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3189. msgctxt "@header"
  3190. msgid "Configurations"
  3191. msgstr "Konfiguracje"
  3192. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  3193. msgctxt "@label"
  3194. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3195. msgstr "Ta konfiguracja jest niedostępna, ponieważ %1 jest nierozpoznany. Przejdź do %2, aby pobrać prawidłowy profil materiału."
  3196. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  3197. msgctxt "@label"
  3198. msgid "Marketplace"
  3199. msgstr "Marketplace"
  3200. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
  3201. msgctxt "@label"
  3202. msgid "Loading available configurations from the printer..."
  3203. msgstr "Ładowanie dostępnych konfiguracji z drukarki..."
  3204. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
  3205. msgctxt "@label"
  3206. msgid "The configurations are not available because the printer is disconnected."
  3207. msgstr "Konfiguracje są niedostępne, ponieważ drukarka jest odłączona."
  3208. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
  3209. msgctxt "@label"
  3210. msgid "Select configuration"
  3211. msgstr "Wybierz konfigurację"
  3212. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
  3213. msgctxt "@label"
  3214. msgid "Configurations"
  3215. msgstr "Konfiguracje"
  3216. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  3217. msgctxt "@header"
  3218. msgid "Custom"
  3219. msgstr "Niestandardowe"
  3220. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  3221. msgctxt "@label"
  3222. msgid "Printer"
  3223. msgstr "Drukarka"
  3224. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  3225. msgctxt "@label"
  3226. msgid "Enabled"
  3227. msgstr "Włączona"
  3228. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
  3229. msgctxt "@label"
  3230. msgid "Material"
  3231. msgstr "Materiał"
  3232. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:394
  3233. msgctxt "@label"
  3234. msgid "Use glue for better adhesion with this material combination."
  3235. msgstr "Użyj kleju dla lepszej przyczepności dla tej kombinacji materiałów."
  3236. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
  3237. msgctxt "@label"
  3238. msgid "Print Selected Model With:"
  3239. msgid_plural "Print Selected Models With:"
  3240. msgstr[0] "Wydrukuj wybrany model z:"
  3241. msgstr[1] "Wydrukuj wybrane modele z:"
  3242. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
  3243. msgctxt "@title:window"
  3244. msgid "Multiply Selected Model"
  3245. msgid_plural "Multiply Selected Models"
  3246. msgstr[0] "Zduplikuj wybrany model"
  3247. msgstr[1] "Zduplikuj wybrane modele"
  3248. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
  3249. msgctxt "@label"
  3250. msgid "Number of Copies"
  3251. msgstr "Liczba kopii"
  3252. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:33
  3253. msgctxt "@title:menu menubar:file"
  3254. msgid "&Save Project..."
  3255. msgstr ""
  3256. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:54
  3257. msgctxt "@title:menu menubar:file"
  3258. msgid "&Export..."
  3259. msgstr "&Eksportuj..."
  3260. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:65
  3261. msgctxt "@action:inmenu menubar:file"
  3262. msgid "Export Selection..."
  3263. msgstr "Eksportuj Zaznaczenie..."
  3264. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3265. msgctxt "@label:category menu label"
  3266. msgid "Material"
  3267. msgstr "Materiał"
  3268. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54
  3269. msgctxt "@label:category menu label"
  3270. msgid "Favorites"
  3271. msgstr "Ulubione"
  3272. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79
  3273. msgctxt "@label:category menu label"
  3274. msgid "Generic"
  3275. msgstr "Podstawowe"
  3276. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
  3277. msgctxt "@label:category menu label"
  3278. msgid "Network enabled printers"
  3279. msgstr "Drukarki dostępne w sieci"
  3280. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
  3281. msgctxt "@label:category menu label"
  3282. msgid "Local printers"
  3283. msgstr "Drukarki lokalne"
  3284. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  3285. msgctxt "@title:menu menubar:file"
  3286. msgid "Open &Recent"
  3287. msgstr "Otwórz &ostatnio używane"
  3288. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15
  3289. msgctxt "@title:menu menubar:settings"
  3290. msgid "&Printer"
  3291. msgstr "&Drukarka"
  3292. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29
  3293. msgctxt "@title:menu"
  3294. msgid "&Material"
  3295. msgstr "&Materiał"
  3296. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44
  3297. msgctxt "@action:inmenu"
  3298. msgid "Set as Active Extruder"
  3299. msgstr "Ustaw jako aktywną głowicę"
  3300. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50
  3301. msgctxt "@action:inmenu"
  3302. msgid "Enable Extruder"
  3303. msgstr "Włącz Ekstruder"
  3304. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57
  3305. msgctxt "@action:inmenu"
  3306. msgid "Disable Extruder"
  3307. msgstr "Wyłącz Ekstruder"
  3308. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
  3309. msgctxt "@action:inmenu"
  3310. msgid "Visible Settings"
  3311. msgstr "Widoczne Ustawienia"
  3312. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  3313. msgctxt "@action:inmenu"
  3314. msgid "Collapse All Categories"
  3315. msgstr ""
  3316. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  3317. msgctxt "@action:inmenu"
  3318. msgid "Manage Setting Visibility..."
  3319. msgstr "Ustaw Widoczność Ustawień..."
  3320. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19
  3321. msgctxt "@action:inmenu menubar:view"
  3322. msgid "&Camera position"
  3323. msgstr "&Pozycja kamery"
  3324. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:44
  3325. msgctxt "@action:inmenu menubar:view"
  3326. msgid "Camera view"
  3327. msgstr "Widok z kamery"
  3328. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:47
  3329. msgctxt "@action:inmenu menubar:view"
  3330. msgid "Perspective"
  3331. msgstr "Perspektywiczny"
  3332. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59
  3333. msgctxt "@action:inmenu menubar:view"
  3334. msgid "Orthographic"
  3335. msgstr "Rzut ortograficzny"
  3336. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:80
  3337. msgctxt "@action:inmenu menubar:view"
  3338. msgid "&Build plate"
  3339. msgstr "P&ole robocze"
  3340. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119
  3341. msgctxt "@label:MonitorStatus"
  3342. msgid "Not connected to a printer"
  3343. msgstr "Nie podłączono do drukarki"
  3344. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123
  3345. msgctxt "@label:MonitorStatus"
  3346. msgid "Printer does not accept commands"
  3347. msgstr "Drukarka nie akceptuje poleceń"
  3348. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133
  3349. msgctxt "@label:MonitorStatus"
  3350. msgid "In maintenance. Please check the printer"
  3351. msgstr "W naprawie. Sprawdź drukarkę"
  3352. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144
  3353. msgctxt "@label:MonitorStatus"
  3354. msgid "Lost connection with the printer"
  3355. msgstr "Utracone połączenie z drukarką"
  3356. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146
  3357. msgctxt "@label:MonitorStatus"
  3358. msgid "Printing..."
  3359. msgstr "Drukowanie..."
  3360. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149
  3361. msgctxt "@label:MonitorStatus"
  3362. msgid "Paused"
  3363. msgstr "Wstrzymano"
  3364. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152
  3365. msgctxt "@label:MonitorStatus"
  3366. msgid "Preparing..."
  3367. msgstr "Przygotowywanie ..."
  3368. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154
  3369. msgctxt "@label:MonitorStatus"
  3370. msgid "Please remove the print"
  3371. msgstr "Usuń wydruk"
  3372. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:325
  3373. msgctxt "@label"
  3374. msgid "Abort Print"
  3375. msgstr "Anuluj Wydruk"
  3376. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:337
  3377. msgctxt "@label"
  3378. msgid "Are you sure you want to abort the print?"
  3379. msgstr "Czy na pewno chcesz przerwać drukowanie?"
  3380. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114
  3381. msgctxt "@label"
  3382. msgid "Is printed as support."
  3383. msgstr ""
  3384. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117
  3385. msgctxt "@label"
  3386. msgid "Other models overlapping with this model are modified."
  3387. msgstr ""
  3388. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120
  3389. msgctxt "@label"
  3390. msgid "Infill overlapping with this model is modified."
  3391. msgstr ""
  3392. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123
  3393. msgctxt "@label"
  3394. msgid "Overlaps with this model are not supported."
  3395. msgstr ""
  3396. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130
  3397. msgctxt "@label %1 is the number of settings it overrides."
  3398. msgid "Overrides %1 setting."
  3399. msgid_plural "Overrides %1 settings."
  3400. msgstr[0] ""
  3401. msgstr[1] ""
  3402. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59
  3403. msgctxt "@label"
  3404. msgid "Object list"
  3405. msgstr "Lista obiektów"
  3406. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137
  3407. msgctxt "@label"
  3408. msgid "Interface"
  3409. msgstr "Interfejs"
  3410. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:216
  3411. msgctxt "@label"
  3412. msgid "Currency:"
  3413. msgstr "Waluta:"
  3414. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:229
  3415. msgctxt "@label"
  3416. msgid "Theme:"
  3417. msgstr "Motyw:"
  3418. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:285
  3419. msgctxt "@label"
  3420. msgid "You will need to restart the application for these changes to have effect."
  3421. msgstr "Musisz zrestartować aplikację, aby te zmiany zaczęły obowiązywać."
  3422. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:302
  3423. msgctxt "@info:tooltip"
  3424. msgid "Slice automatically when changing settings."
  3425. msgstr "Tnij automatycznie podczas zmiany ustawień."
  3426. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:310
  3427. msgctxt "@option:check"
  3428. msgid "Slice automatically"
  3429. msgstr "Automatyczne Cięcie"
  3430. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:324
  3431. msgctxt "@label"
  3432. msgid "Viewport behavior"
  3433. msgstr "Zachowanie okna edycji"
  3434. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:332
  3435. msgctxt "@info:tooltip"
  3436. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3437. msgstr "Zaznacz nieobsługiwane obszary modelu na czerwono. Bez wsparcia te obszary nie będą drukowane prawidłowo."
  3438. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:341
  3439. msgctxt "@option:check"
  3440. msgid "Display overhang"
  3441. msgstr "Wyświetl zwis"
  3442. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:351
  3443. msgctxt "@info:tooltip"
  3444. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3445. msgstr ""
  3446. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360
  3447. msgctxt "@option:check"
  3448. msgid "Display model errors"
  3449. msgstr ""
  3450. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:368
  3451. msgctxt "@info:tooltip"
  3452. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3453. msgstr "Przenosi kamerę, aby model był w centrum widoku, gdy wybrano model"
  3454. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:373
  3455. msgctxt "@action:button"
  3456. msgid "Center camera when item is selected"
  3457. msgstr "Wyśrodkuj kamerę kiedy przedmiot jest zaznaczony"
  3458. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:383
  3459. msgctxt "@info:tooltip"
  3460. msgid "Should the default zoom behavior of cura be inverted?"
  3461. msgstr "Czy domyślne zachowanie zoomu powinno zostać odwrócone?"
  3462. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388
  3463. msgctxt "@action:button"
  3464. msgid "Invert the direction of camera zoom."
  3465. msgstr "Odwróć kierunek zoomu kamery."
  3466. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3467. msgctxt "@info:tooltip"
  3468. msgid "Should zooming move in the direction of the mouse?"
  3469. msgstr "Czy przybliżanie powinno poruszać się w kierunku myszy?"
  3470. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3471. msgctxt "@info:tooltip"
  3472. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3473. msgstr "Powiększanie w kierunku myszy nie jest obsługiwane w danej perspektywie."
  3474. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:409
  3475. msgctxt "@action:button"
  3476. msgid "Zoom toward mouse direction"
  3477. msgstr "Przybliżaj w kierunku myszy"
  3478. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:435
  3479. msgctxt "@info:tooltip"
  3480. msgid "Should models on the platform be moved so that they no longer intersect?"
  3481. msgstr "Czy modele na platformie powinny być przenoszone w taki sposób, aby nie przecinały się?"
  3482. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:440
  3483. msgctxt "@option:check"
  3484. msgid "Ensure models are kept apart"
  3485. msgstr "Upewnij się, że modele są oddzielone"
  3486. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:449
  3487. msgctxt "@info:tooltip"
  3488. msgid "Should models on the platform be moved down to touch the build plate?"
  3489. msgstr "Czy modele na platformie powinny być przesunięte w dół, aby dotknęły stołu roboczego?"
  3490. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:454
  3491. msgctxt "@option:check"
  3492. msgid "Automatically drop models to the build plate"
  3493. msgstr "Automatycznie upuść modele na stół roboczy"
  3494. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:466
  3495. msgctxt "@info:tooltip"
  3496. msgid "Show caution message in g-code reader."
  3497. msgstr "Pokaż wiadomości ostrzegawcze w czytniku g-code."
  3498. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:475
  3499. msgctxt "@option:check"
  3500. msgid "Caution message in g-code reader"
  3501. msgstr "Wiadomość ostrzegawcza w czytniku g-code"
  3502. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:483
  3503. msgctxt "@info:tooltip"
  3504. msgid "Should layer be forced into compatibility mode?"
  3505. msgstr "Czy warstwa powinna być wymuszona w trybie zgodności?"
  3506. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:488
  3507. msgctxt "@option:check"
  3508. msgid "Force layer view compatibility mode (restart required)"
  3509. msgstr "Wymuszenie widoku warstw w trybie zgodności (wymaga ponownego uruchomienia)"
  3510. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:498
  3511. msgctxt "@info:tooltip"
  3512. msgid "Should Cura open at the location it was closed?"
  3513. msgstr "Czy Cura powinna się otwierać w miejscu, w którym została zamknięta?"
  3514. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503
  3515. msgctxt "@option:check"
  3516. msgid "Restore window position on start"
  3517. msgstr "Przywróć pozycję okna przy starcie"
  3518. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:513
  3519. msgctxt "@info:tooltip"
  3520. msgid "What type of camera rendering should be used?"
  3521. msgstr "Jakiego rodzaju kamery należy użyć do renderowania?"
  3522. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:520
  3523. msgctxt "@window:text"
  3524. msgid "Camera rendering:"
  3525. msgstr "Renderowanie z kamery: "
  3526. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531
  3527. msgid "Perspective"
  3528. msgstr "Perspektywiczny"
  3529. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:532
  3530. msgid "Orthographic"
  3531. msgstr "Rzut ortograficzny"
  3532. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:563
  3533. msgctxt "@label"
  3534. msgid "Opening and saving files"
  3535. msgstr "Otwieranie i zapisywanie plików"
  3536. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570
  3537. msgctxt "@info:tooltip"
  3538. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3539. msgstr ""
  3540. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575
  3541. msgctxt "@option:check"
  3542. msgid "Use a single instance of Cura"
  3543. msgstr ""
  3544. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585
  3545. msgctxt "@info:tooltip"
  3546. msgid "Should models be scaled to the build volume if they are too large?"
  3547. msgstr "Czy modele powinny być skalowane do wielkości obszaru roboczego, jeśli są zbyt duże?"
  3548. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590
  3549. msgctxt "@option:check"
  3550. msgid "Scale large models"
  3551. msgstr "Skaluj duże modele"
  3552. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600
  3553. msgctxt "@info:tooltip"
  3554. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3555. msgstr "Model może wydawać się bardzo mały, jeśli jego jednostka jest na przykład w metrach, a nie w milimetrach. Czy takie modele powinny być skalowane?"
  3556. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605
  3557. msgctxt "@option:check"
  3558. msgid "Scale extremely small models"
  3559. msgstr "Skaluj bardzo małe modele"
  3560. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615
  3561. msgctxt "@info:tooltip"
  3562. msgid "Should models be selected after they are loaded?"
  3563. msgstr "Czy modele powinny zostać zaznaczone po załadowaniu?"
  3564. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620
  3565. msgctxt "@option:check"
  3566. msgid "Select models when loaded"
  3567. msgstr "Zaznaczaj modele po załadowaniu"
  3568. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630
  3569. msgctxt "@info:tooltip"
  3570. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3571. msgstr "Czy przedrostek oparty na nazwie drukarki powinien być automatycznie dodawany do nazwy zadania?"
  3572. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635
  3573. msgctxt "@option:check"
  3574. msgid "Add machine prefix to job name"
  3575. msgstr "Dodaj przedrostek maszyny do nazwy zadania"
  3576. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:645
  3577. msgctxt "@info:tooltip"
  3578. msgid "Should a summary be shown when saving a project file?"
  3579. msgstr "Czy podsumowanie powinno być wyświetlane podczas zapisu projektu?"
  3580. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:649
  3581. msgctxt "@option:check"
  3582. msgid "Show summary dialog when saving project"
  3583. msgstr "Pokaż okno podsumowania podczas zapisywaniu projektu"
  3584. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:659
  3585. msgctxt "@info:tooltip"
  3586. msgid "Default behavior when opening a project file"
  3587. msgstr "Domyślne zachowanie podczas otwierania pliku projektu"
  3588. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667
  3589. msgctxt "@window:text"
  3590. msgid "Default behavior when opening a project file: "
  3591. msgstr "Domyślne zachowanie podczas otwierania pliku projektu: "
  3592. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:681
  3593. msgctxt "@option:openProject"
  3594. msgid "Always ask me this"
  3595. msgstr "Zawsze pytaj"
  3596. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:682
  3597. msgctxt "@option:openProject"
  3598. msgid "Always open as a project"
  3599. msgstr "Zawsze otwieraj jako projekt"
  3600. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683
  3601. msgctxt "@option:openProject"
  3602. msgid "Always import models"
  3603. msgstr "Zawsze importuj modele"
  3604. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719
  3605. msgctxt "@info:tooltip"
  3606. 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."
  3607. msgstr "Kiedy dokonasz zmian w profilu i przełączysz się na inny, zostanie wyświetlone okno z pytaniem, czy chcesz zachować twoje zmiany, czy nie. Możesz też wybrać domyślne zachowanie, żeby to okno już nigdy nie było pokazywane."
  3608. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:728
  3609. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
  3610. msgctxt "@label"
  3611. msgid "Profiles"
  3612. msgstr "Profile"
  3613. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733
  3614. msgctxt "@window:text"
  3615. msgid "Default behavior for changed setting values when switching to a different profile: "
  3616. msgstr "Domyślne zachowanie dla zmienionych ustawień podczas zmiany profilu na inny: "
  3617. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748
  3618. msgctxt "@option:discardOrKeep"
  3619. msgid "Always discard changed settings"
  3620. msgstr "Zawsze odrzucaj wprowadzone zmiany"
  3621. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:749
  3622. msgctxt "@option:discardOrKeep"
  3623. msgid "Always transfer changed settings to new profile"
  3624. msgstr "Zawsze przenoś wprowadzone zmiany do nowego profilu"
  3625. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:783
  3626. msgctxt "@label"
  3627. msgid "Privacy"
  3628. msgstr "Prywatność"
  3629. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:790
  3630. msgctxt "@info:tooltip"
  3631. msgid "Should Cura check for updates when the program is started?"
  3632. msgstr "Czy Cura ma sprawdzać dostępność aktualizacji podczas uruchamiania programu?"
  3633. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:795
  3634. msgctxt "@option:check"
  3635. msgid "Check for updates on start"
  3636. msgstr "Sprawdź, dostępność aktualizacji podczas uruchamiania"
  3637. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:805
  3638. msgctxt "@info:tooltip"
  3639. 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."
  3640. msgstr "Czy anonimowe dane na temat wydruku mają być wysyłane do Ultimaker? Uwaga. Żadne modele, adresy IP, ani żadne inne dane osobiste nie będą wysyłane i/lub przechowywane."
  3641. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:810
  3642. msgctxt "@option:check"
  3643. msgid "Send (anonymous) print information"
  3644. msgstr "Wyślij (anonimowe) informacje o drukowaniu"
  3645. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:819
  3646. msgctxt "@action:button"
  3647. msgid "More information"
  3648. msgstr "Więcej informacji"
  3649. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40
  3650. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
  3651. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84
  3652. msgctxt "@action:button"
  3653. msgid "Activate"
  3654. msgstr "Aktywuj"
  3655. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63
  3656. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  3657. msgctxt "@action:button"
  3658. msgid "Rename"
  3659. msgstr "Zmień nazwę"
  3660. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  3661. msgctxt "@action:button"
  3662. msgid "Create"
  3663. msgstr "Stwórz"
  3664. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  3665. msgctxt "@action:button"
  3666. msgid "Duplicate"
  3667. msgstr "Duplikuj"
  3668. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
  3669. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167
  3670. msgctxt "@action:button"
  3671. msgid "Import"
  3672. msgstr "Importuj"
  3673. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
  3674. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179
  3675. msgctxt "@action:button"
  3676. msgid "Export"
  3677. msgstr "Eksportuj"
  3678. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
  3679. msgctxt "@action:label"
  3680. msgid "Printer"
  3681. msgstr "Drukarka"
  3682. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298
  3683. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:274
  3684. msgctxt "@title:window"
  3685. msgid "Confirm Remove"
  3686. msgstr "Potwierdź Usunięcie"
  3687. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301
  3688. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:275
  3689. msgctxt "@label (%1 is object name)"
  3690. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3691. msgstr "Czy na pewno chcesz usunąć %1? Nie można tego cofnąć!"
  3692. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
  3693. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
  3694. msgctxt "@title:window"
  3695. msgid "Import Material"
  3696. msgstr "Importuj Materiał"
  3697. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
  3698. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3699. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3700. msgstr "Nie można zaimportować materiału <filename>%1</filename>: <message>%2</message>"
  3701. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
  3702. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3703. msgid "Successfully imported material <filename>%1</filename>"
  3704. msgstr "Udało się zaimportować materiał <filename>%1</filename>"
  3705. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346
  3706. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
  3707. msgctxt "@title:window"
  3708. msgid "Export Material"
  3709. msgstr "Eksportuj Materiał"
  3710. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
  3711. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3712. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3713. msgstr "Nie udało się wyeksportować materiału do <filename>%1</filename>: <message>%2</message>"
  3714. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
  3715. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3716. msgid "Successfully exported material to <filename>%1</filename>"
  3717. msgstr "Udało się wyeksportować materiał do <filename>%1</filename>"
  3718. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  3719. msgctxt "@title"
  3720. msgid "Information"
  3721. msgstr "Informacja"
  3722. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  3723. msgctxt "@title:window"
  3724. msgid "Confirm Diameter Change"
  3725. msgstr "Potwierdź Zmianę Średnicy"
  3726. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  3727. msgctxt "@label (%1 is a number)"
  3728. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3729. msgstr "Średnica nowego filamentu została ustawiona na %1mm, i nie jest kompatybilna z bieżącym ekstruderem. Czy chcesz kontynuować?"
  3730. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  3731. msgctxt "@label"
  3732. msgid "Display Name"
  3733. msgstr "Wyświetlana nazwa"
  3734. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  3735. msgctxt "@label"
  3736. msgid "Material Type"
  3737. msgstr "Typ Materiału"
  3738. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  3739. msgctxt "@label"
  3740. msgid "Color"
  3741. msgstr "Kolor"
  3742. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  3743. msgctxt "@label"
  3744. msgid "Properties"
  3745. msgstr "Właściwości"
  3746. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  3747. msgctxt "@label"
  3748. msgid "Density"
  3749. msgstr "Gęstość"
  3750. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  3751. msgctxt "@label"
  3752. msgid "Diameter"
  3753. msgstr "Średnica"
  3754. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  3755. msgctxt "@label"
  3756. msgid "Filament Cost"
  3757. msgstr "Koszt Filamentu"
  3758. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  3759. msgctxt "@label"
  3760. msgid "Filament weight"
  3761. msgstr "Waga filamentu"
  3762. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  3763. msgctxt "@label"
  3764. msgid "Filament length"
  3765. msgstr "Długość Filamentu"
  3766. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  3767. msgctxt "@label"
  3768. msgid "Cost per Meter"
  3769. msgstr "Koszt na metr"
  3770. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  3771. msgctxt "@label"
  3772. msgid "This material is linked to %1 and shares some of its properties."
  3773. msgstr "Ten materiał jest powiązany z %1 i dzieli się niekórymi swoimi właściwościami."
  3774. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  3775. msgctxt "@label"
  3776. msgid "Unlink Material"
  3777. msgstr "Odłącz materiał"
  3778. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  3779. msgctxt "@label"
  3780. msgid "Description"
  3781. msgstr "Opis"
  3782. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  3783. msgctxt "@label"
  3784. msgid "Adhesion Information"
  3785. msgstr "Informacje dotyczące przyczepności"
  3786. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
  3787. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  3788. msgctxt "@label"
  3789. msgid "Print settings"
  3790. msgstr "Ustawienia druku"
  3791. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  3792. msgctxt "@label"
  3793. msgid "Create"
  3794. msgstr "Stwórz"
  3795. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  3796. msgctxt "@label"
  3797. msgid "Duplicate"
  3798. msgstr "Duplikuj"
  3799. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  3800. msgctxt "@title:window"
  3801. msgid "Create Profile"
  3802. msgstr "Stwórz profil"
  3803. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  3804. msgctxt "@info"
  3805. msgid "Please provide a name for this profile."
  3806. msgstr "Podaj nazwę tego profilu."
  3807. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:260
  3808. msgctxt "@title:window"
  3809. msgid "Duplicate Profile"
  3810. msgstr "Duplikuj profil"
  3811. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:291
  3812. msgctxt "@title:window"
  3813. msgid "Rename Profile"
  3814. msgstr "Zmień nazwę profilu"
  3815. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:304
  3816. msgctxt "@title:window"
  3817. msgid "Import Profile"
  3818. msgstr "Importuj Profil"
  3819. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:333
  3820. msgctxt "@title:window"
  3821. msgid "Export Profile"
  3822. msgstr "Eksportuj Profil"
  3823. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:396
  3824. msgctxt "@label %1 is printer name"
  3825. msgid "Printer: %1"
  3826. msgstr "Drukarka: %1"
  3827. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:554
  3828. msgctxt "@action:button"
  3829. msgid "Update profile with current settings/overrides"
  3830. msgstr "Aktualizuj profil z bieżącymi ustawieniami"
  3831. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:561
  3832. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
  3833. msgctxt "@action:button"
  3834. msgid "Discard current changes"
  3835. msgstr "Odrzuć bieżące zmiany"
  3836. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:580
  3837. msgctxt "@action:label"
  3838. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3839. msgstr "Ten profil używa ustawień domyślnych określonych przez drukarkę, dlatego nie ma żadnych ustawień z poniższej liście."
  3840. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:588
  3841. msgctxt "@action:label"
  3842. msgid "Your current settings match the selected profile."
  3843. msgstr "Aktualne ustawienia odpowiadają wybranemu profilowi."
  3844. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:606
  3845. msgctxt "@title:tab"
  3846. msgid "Global Settings"
  3847. msgstr "Ustawienia ogólne"
  3848. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61
  3849. msgctxt "@info:status"
  3850. msgid "Calculated"
  3851. msgstr "Przeliczone"
  3852. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75
  3853. msgctxt "@title:column"
  3854. msgid "Setting"
  3855. msgstr "Ustawienie"
  3856. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
  3857. msgctxt "@title:column"
  3858. msgid "Profile"
  3859. msgstr "Profil"
  3860. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89
  3861. msgctxt "@title:column"
  3862. msgid "Current"
  3863. msgstr "Aktualny"
  3864. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97
  3865. msgctxt "@title:column"
  3866. msgid "Unit"
  3867. msgstr "Jednostka"
  3868. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
  3869. msgctxt "@title:tab"
  3870. msgid "Setting Visibility"
  3871. msgstr "Widoczność ustawienia"
  3872. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
  3873. msgctxt "@label:textbox"
  3874. msgid "Check all"
  3875. msgstr "Zaznacz wszystko"
  3876. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  3877. msgctxt "@label"
  3878. msgid "Extruder"
  3879. msgstr "Ekstruder"
  3880. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  3881. msgctxt "@tooltip"
  3882. 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."
  3883. msgstr "Docelowa temperatura głowicy. Głowica będzie się rozgrzewać lub chłodzić do tej temperatury. Jeżeli jest równe 0, grzanie głowicy będzie wyłączone."
  3884. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  3885. msgctxt "@tooltip"
  3886. msgid "The current temperature of this hotend."
  3887. msgstr "Aktualna temperatura tej głowicy."
  3888. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  3889. msgctxt "@tooltip of temperature input"
  3890. msgid "The temperature to pre-heat the hotend to."
  3891. msgstr "Temperatura do wstępnego podgrzewania głowicy."
  3892. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
  3893. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  3894. msgctxt "@button Cancel pre-heating"
  3895. msgid "Cancel"
  3896. msgstr "Anuluj"
  3897. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
  3898. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  3899. msgctxt "@button"
  3900. msgid "Pre-heat"
  3901. msgstr "Podgrzewanie wstępne"
  3902. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  3903. msgctxt "@tooltip of pre-heat"
  3904. 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."
  3905. msgstr "Podgrzej głowicę przed drukowaniem. Możesz w dalszym ciągu dostosowywać drukowanie podczas podgrzewania i nie będziesz musiał czekać na podgrzanie głowicy kiedy będziesz gotowy."
  3906. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  3907. msgctxt "@tooltip"
  3908. msgid "The colour of the material in this extruder."
  3909. msgstr "Kolor materiału w tym ekstruderze."
  3910. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  3911. msgctxt "@tooltip"
  3912. msgid "The material in this extruder."
  3913. msgstr "Materiał w głowicy drukującej."
  3914. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  3915. msgctxt "@tooltip"
  3916. msgid "The nozzle inserted in this extruder."
  3917. msgstr "Dysza włożona do tego ekstrudera."
  3918. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  3919. msgctxt "@label"
  3920. msgid "Build plate"
  3921. msgstr "Stół roboczy"
  3922. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  3923. msgctxt "@tooltip"
  3924. 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."
  3925. msgstr "Temperatura docelowa podgrzewanego stołu. Stół rozgrzeje się lub schłodzi w kierunku tej temperatury. Jeśli ustawione jest 0, grzanie stołu jest wyłączone."
  3926. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  3927. msgctxt "@tooltip"
  3928. msgid "The current temperature of the heated bed."
  3929. msgstr "Bieżąca temperatura podgrzewanego stołu."
  3930. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  3931. msgctxt "@tooltip of temperature input"
  3932. msgid "The temperature to pre-heat the bed to."
  3933. msgstr "Temperatura do wstępnego podgrzewania stołu."
  3934. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  3935. msgctxt "@tooltip of pre-heat"
  3936. 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."
  3937. msgstr "Przed drukowaniem podgrzej stół. W dalszym ciągu można dostosowywać druk podczas nagrzewania, a nie będziesz musiał czekać na rozgrzanie stołu, gdy będziesz gotowy do drukowania."
  3938. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  3939. msgctxt "@label"
  3940. msgid "Printer control"
  3941. msgstr "Kontrola drukarką"
  3942. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  3943. msgctxt "@label"
  3944. msgid "Jog Position"
  3945. msgstr "Pozycja Swobodnego Ruchu"
  3946. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  3947. msgctxt "@label"
  3948. msgid "X/Y"
  3949. msgstr "X/Y"
  3950. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  3951. msgctxt "@label"
  3952. msgid "Z"
  3953. msgstr "Z"
  3954. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  3955. msgctxt "@label"
  3956. msgid "Jog Distance"
  3957. msgstr "Dystans Swobodnego Ruchu"
  3958. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  3959. msgctxt "@label"
  3960. msgid "Send G-code"
  3961. msgstr "Wyślij G-code"
  3962. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  3963. msgctxt "@tooltip of G-code command input"
  3964. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  3965. msgstr "Wyślij niestandardową komendę G-code do podłączonej drukarki. Naciśnij 'enter', aby wysłać komendę."
  3966. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  3967. msgctxt "@info:status"
  3968. msgid "The printer is not connected."
  3969. msgstr "Drukarka nie jest podłączona."
  3970. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  3971. msgctxt "@status"
  3972. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3973. msgstr ""
  3974. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  3975. msgctxt "@status"
  3976. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  3977. msgstr ""
  3978. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  3979. msgctxt "@status"
  3980. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  3981. msgstr ""
  3982. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  3983. msgctxt "@status"
  3984. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  3985. msgstr ""
  3986. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
  3987. msgctxt "@button"
  3988. msgid "Add printer"
  3989. msgstr "Dodaj drukarkę"
  3990. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
  3991. msgctxt "@button"
  3992. msgid "Manage printers"
  3993. msgstr "Zarządzaj drukarkami"
  3994. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3995. msgctxt "@label"
  3996. msgid "Connected printers"
  3997. msgstr "Podłączone drukarki"
  3998. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3999. msgctxt "@label"
  4000. msgid "Preset printers"
  4001. msgstr "Zdefiniowane drukarki"
  4002. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140
  4003. msgctxt "@label"
  4004. msgid "Active print"
  4005. msgstr "Aktywny wydruk"
  4006. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148
  4007. msgctxt "@label"
  4008. msgid "Job Name"
  4009. msgstr "Nazwa pracy"
  4010. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156
  4011. msgctxt "@label"
  4012. msgid "Printing Time"
  4013. msgstr "Czas druku"
  4014. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164
  4015. msgctxt "@label"
  4016. msgid "Estimated time left"
  4017. msgstr "Szacowany czas pozostały"
  4018. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  4019. msgctxt "@label"
  4020. msgid "Profile"
  4021. msgstr "Profil"
  4022. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
  4023. msgctxt "@tooltip"
  4024. msgid ""
  4025. "Some setting/override values are different from the values stored in the profile.\n"
  4026. "\n"
  4027. "Click to open the profile manager."
  4028. msgstr ""
  4029. "Niektóre wartości ustawień różnią się od wartości zapisanych w profilu.\n"
  4030. "\n"
  4031. "Kliknij, aby otworzyć menedżer profili."
  4032. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
  4033. msgctxt "@label:header"
  4034. msgid "Custom profiles"
  4035. msgstr "Profile niestandardowe"
  4036. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  4037. msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
  4038. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  4039. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  4040. msgstr[0] "Nie ma profilu %1 dla konfiguracji w ekstruderze %2. Zamiast tego zostaną użyte domyślne cale"
  4041. msgstr[1] "Nie ma profilu %1 dla konfiguracji w ekstruderach %2. Zamiast tego zostaną użyte domyślne cale"
  4042. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  4043. msgctxt "@label shown when we load a Gcode file"
  4044. msgid "Print setup disabled. G-code file can not be modified."
  4045. msgstr "Ustawienia druku niedostępne. Plik .gcode nie może być modyfikowany."
  4046. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  4047. msgctxt "@button"
  4048. msgid "Recommended"
  4049. msgstr "Polecane"
  4050. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  4051. msgctxt "@button"
  4052. msgid "Custom"
  4053. msgstr "Niestandardowe"
  4054. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  4055. msgctxt "@label:Should be short"
  4056. msgid "On"
  4057. msgstr "Wł"
  4058. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  4059. msgctxt "@label:Should be short"
  4060. msgid "Off"
  4061. msgstr "Wył"
  4062. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
  4063. msgctxt "@label"
  4064. msgid "Experimental"
  4065. msgstr "Eksperymentalne"
  4066. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  4067. msgctxt "@label"
  4068. msgid "Adhesion"
  4069. msgstr "Przyczepność"
  4070. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
  4071. msgctxt "@label"
  4072. 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."
  4073. msgstr "Włącz drukowanie obrysu lub tratwy. Spowoduje to dodanie płaskiej powierzchni wokół lub pod Twoim obiektem, która jest łatwa do usunięcia po wydruku."
  4074. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
  4075. msgctxt "@label"
  4076. msgid "Gradual infill"
  4077. msgstr "Stopniowe wypełnienie"
  4078. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
  4079. msgctxt "@label"
  4080. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  4081. msgstr "Stopniowe wypełnienie stopniowo zwiększa ilość wypełnień w górę."
  4082. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
  4083. msgctxt "@tooltip"
  4084. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  4085. msgstr "Zmodyfikowałeś ustawienia profilu. Jeżeli chcesz je zmienić, przejdź do trybu niestandardowego."
  4086. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  4087. msgctxt "@label"
  4088. msgid "Support"
  4089. msgstr "Podpory"
  4090. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
  4091. msgctxt "@label"
  4092. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  4093. msgstr "Generuje podpory wspierające części modelu, które mają zwis. Bez tych podpór takie części mogłyby spaść podczas drukowania."
  4094. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200
  4095. msgctxt "@label"
  4096. msgid ""
  4097. "Some hidden settings use values different from their normal calculated value.\n"
  4098. "\n"
  4099. "Click to make these settings visible."
  4100. msgstr ""
  4101. "Niektóre ukryte ustawienia używają wartości różniących się od ich normalnej, obliczonej wartości.\n"
  4102. "\n"
  4103. "Kliknij, aby te ustawienia były widoczne."
  4104. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81
  4105. msgctxt "@label"
  4106. msgid "This setting is not used because all the settings that it influences are overridden."
  4107. msgstr "To ustawienie nie jest używane, ponieważ wszystkie ustawienia, na które wpływa, są nadpisane."
  4108. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86
  4109. msgctxt "@label Header for list of settings."
  4110. msgid "Affects"
  4111. msgstr "Wpływać"
  4112. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91
  4113. msgctxt "@label Header for list of settings."
  4114. msgid "Affected By"
  4115. msgstr "Pod wpływem"
  4116. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187
  4117. msgctxt "@label"
  4118. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  4119. msgstr "To ustawienie jest dzielone pomiędzy wszystkimi ekstruderami. Zmiana tutaj spowoduje zmianę dla wszystkich ekstruderów."
  4120. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191
  4121. msgctxt "@label"
  4122. msgid "This setting is resolved from conflicting extruder-specific values:"
  4123. msgstr ""
  4124. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230
  4125. msgctxt "@label"
  4126. msgid ""
  4127. "This setting has a value that is different from the profile.\n"
  4128. "\n"
  4129. "Click to restore the value of the profile."
  4130. msgstr ""
  4131. "To ustawienie ma inną wartość niż w profilu.\n"
  4132. "\n"
  4133. "Kliknij, aby przywrócić wartość z profilu."
  4134. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329
  4135. msgctxt "@label"
  4136. msgid ""
  4137. "This setting is normally calculated, but it currently has an absolute value set.\n"
  4138. "\n"
  4139. "Click to restore the calculated value."
  4140. msgstr ""
  4141. "To ustawienie jest zwykle obliczane, ale obecnie ma wartość bezwzględną.\n"
  4142. "\n"
  4143. "Kliknij, aby przywrócić wartość obliczoną."
  4144. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68
  4145. msgctxt "@label:textbox"
  4146. msgid "Search settings"
  4147. msgstr "Ustawienia wyszukiwania"
  4148. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:456
  4149. msgctxt "@action:menu"
  4150. msgid "Copy value to all extruders"
  4151. msgstr "Skopiuj wartość do wszystkich ekstruderów"
  4152. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:465
  4153. msgctxt "@action:menu"
  4154. msgid "Copy all changed values to all extruders"
  4155. msgstr "Skopiuj wszystkie zmienione wartości do wszystkich ekstruderów"
  4156. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:502
  4157. msgctxt "@action:menu"
  4158. msgid "Hide this setting"
  4159. msgstr "Ukryj tę opcję"
  4160. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:515
  4161. msgctxt "@action:menu"
  4162. msgid "Don't show this setting"
  4163. msgstr "Nie pokazuj tej opcji"
  4164. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:519
  4165. msgctxt "@action:menu"
  4166. msgid "Keep this setting visible"
  4167. msgstr "Pozostaw tę opcję widoczną"
  4168. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27
  4169. msgctxt "@info:tooltip"
  4170. msgid "3D View"
  4171. msgstr "Widok 3D"
  4172. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40
  4173. msgctxt "@info:tooltip"
  4174. msgid "Front View"
  4175. msgstr "Widok z przodu"
  4176. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53
  4177. msgctxt "@info:tooltip"
  4178. msgid "Top View"
  4179. msgstr "Widok z góry"
  4180. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66
  4181. msgctxt "@info:tooltip"
  4182. msgid "Left View"
  4183. msgstr "Widok z lewej strony"
  4184. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79
  4185. msgctxt "@info:tooltip"
  4186. msgid "Right View"
  4187. msgstr "Widok z prawej strony"
  4188. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50
  4189. msgctxt "@label"
  4190. msgid "View type"
  4191. msgstr "Typ widoku"
  4192. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  4193. msgctxt "@label"
  4194. msgid "Add a Cloud printer"
  4195. msgstr ""
  4196. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  4197. msgctxt "@label"
  4198. msgid "Waiting for Cloud response"
  4199. msgstr ""
  4200. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  4201. msgctxt "@label"
  4202. msgid "No printers found in your account?"
  4203. msgstr ""
  4204. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  4205. msgctxt "@label"
  4206. msgid "The following printers in your account have been added in Cura:"
  4207. msgstr ""
  4208. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
  4209. msgctxt "@button"
  4210. msgid "Add printer manually"
  4211. msgstr ""
  4212. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:218
  4213. msgctxt "@button"
  4214. msgid "Finish"
  4215. msgstr "Koniec"
  4216. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
  4217. msgctxt "@label"
  4218. msgid "Manufacturer"
  4219. msgstr "Producent"
  4220. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
  4221. msgctxt "@label"
  4222. msgid "Profile author"
  4223. msgstr ""
  4224. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
  4225. msgctxt "@label"
  4226. msgid "Printer name"
  4227. msgstr "Nazwa drukarki"
  4228. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
  4229. msgctxt "@text"
  4230. msgid "Please name your printer"
  4231. msgstr ""
  4232. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  4233. msgctxt "@label"
  4234. msgid "Add a printer"
  4235. msgstr "Dodaj drukarkę"
  4236. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  4237. msgctxt "@label"
  4238. msgid "Add a networked printer"
  4239. msgstr "Dodaj drukarkę sieciową"
  4240. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
  4241. msgctxt "@label"
  4242. msgid "Add a non-networked printer"
  4243. msgstr "Dodaj drukarkę niesieciową"
  4244. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  4245. msgctxt "@label"
  4246. msgid "There is no printer found over your network."
  4247. msgstr "Nie znaleziono drukarki w Twojej sieci."
  4248. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
  4249. msgctxt "@label"
  4250. msgid "Refresh"
  4251. msgstr "Odśwież"
  4252. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
  4253. msgctxt "@label"
  4254. msgid "Add printer by IP"
  4255. msgstr "Dodaj drukarkę przez IP"
  4256. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
  4257. msgctxt "@label"
  4258. msgid "Add cloud printer"
  4259. msgstr ""
  4260. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
  4261. msgctxt "@label"
  4262. msgid "Troubleshooting"
  4263. msgstr "Rozwiązywanie problemów"
  4264. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  4265. msgctxt "@label"
  4266. msgid "Add printer by IP address"
  4267. msgstr "Dodaj drukarkę przez IP"
  4268. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  4269. msgctxt "@text"
  4270. msgid "Enter your printer's IP address."
  4271. msgstr ""
  4272. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  4273. msgctxt "@button"
  4274. msgid "Add"
  4275. msgstr "Dodaj"
  4276. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  4277. msgctxt "@label"
  4278. msgid "Could not connect to device."
  4279. msgstr "Nie można połączyć się z urządzeniem."
  4280. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
  4281. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  4282. msgctxt "@label"
  4283. msgid "Can't connect to your Ultimaker printer?"
  4284. msgstr ""
  4285. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  4286. msgctxt "@label"
  4287. msgid "The printer at this address has not responded yet."
  4288. msgstr "Drukarka pod tym adresem jeszcze nie odpowiedziała."
  4289. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  4290. msgctxt "@label"
  4291. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  4292. msgstr "Ta drukarka nie może zostać dodana, ponieważ jest nieznana lub nie jest hostem grupy."
  4293. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  4294. msgctxt "@button"
  4295. msgid "Back"
  4296. msgstr "Wstecz"
  4297. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  4298. msgctxt "@button"
  4299. msgid "Connect"
  4300. msgstr "Połącz"
  4301. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:43
  4302. msgctxt "@label"
  4303. msgid "Ultimaker Account"
  4304. msgstr ""
  4305. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:84
  4306. msgctxt "@text"
  4307. msgid "Your key to connected 3D printing"
  4308. msgstr ""
  4309. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:101
  4310. msgctxt "@text"
  4311. msgid "- Customize your experience with more print profiles and plugins"
  4312. msgstr ""
  4313. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:104
  4314. msgctxt "@text"
  4315. msgid "- Stay flexible by syncing your setup and loading it anywhere"
  4316. msgstr ""
  4317. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:107
  4318. msgctxt "@text"
  4319. msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  4320. msgstr ""
  4321. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:157
  4322. msgctxt "@button"
  4323. msgid "Skip"
  4324. msgstr ""
  4325. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  4326. msgctxt "@label"
  4327. msgid "Help us to improve Ultimaker Cura"
  4328. msgstr "Pomóż nam ulepszyć Ultimaker Cura"
  4329. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  4330. msgctxt "@text"
  4331. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  4332. msgstr "Ultimaker Cura zbiera anonimowe dane w celu poprawy jakości druku i komfortu użytkownika, w tym:"
  4333. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  4334. msgctxt "@text"
  4335. msgid "Machine types"
  4336. msgstr "Typy maszyn"
  4337. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  4338. msgctxt "@text"
  4339. msgid "Material usage"
  4340. msgstr "Zużycie materiału"
  4341. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  4342. msgctxt "@text"
  4343. msgid "Number of slices"
  4344. msgstr "Ilość warstw"
  4345. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  4346. msgctxt "@text"
  4347. msgid "Print settings"
  4348. msgstr "Ustawienia druku"
  4349. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  4350. msgctxt "@text"
  4351. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  4352. msgstr "Dane zebrane przez Ultimaker Cura nie będą zawierać żadnych prywatnych danych osobowych."
  4353. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  4354. msgctxt "@text"
  4355. msgid "More information"
  4356. msgstr "Więcej informacji"
  4357. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  4358. msgctxt "@label"
  4359. msgid "Empty"
  4360. msgstr "Pusty"
  4361. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  4362. msgctxt "@label"
  4363. msgid "User Agreement"
  4364. msgstr "Umowa z użytkownikiem"
  4365. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  4366. msgctxt "@button"
  4367. msgid "Decline and close"
  4368. msgstr "Odrzuć i zamknij"
  4369. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:29
  4370. msgctxt "@label"
  4371. msgid "Welcome to Ultimaker Cura"
  4372. msgstr "Witaj w Ultimaker Cura"
  4373. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:47
  4374. msgctxt "@text"
  4375. msgid ""
  4376. "Please follow these steps to set up\n"
  4377. "Ultimaker Cura. This will only take a few moments."
  4378. msgstr ""
  4379. "Wykonaj poniższe kroki, aby skonfigurować\n"
  4380. "Ultimaker Cura. To zajmie tylko kilka chwil."
  4381. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:58
  4382. msgctxt "@button"
  4383. msgid "Get started"
  4384. msgstr "Rozpocznij"
  4385. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:24
  4386. msgctxt "@label"
  4387. msgid "What's new in Ultimaker Cura"
  4388. msgstr "Co nowego w Ultimaker Cura"
  4389. #: ModelChecker/plugin.json
  4390. msgctxt "description"
  4391. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4392. msgstr "Sprawdza możliwe problemy drukowania modeli i konfiguracji wydruku i podaje porady."
  4393. #: ModelChecker/plugin.json
  4394. msgctxt "name"
  4395. msgid "Model Checker"
  4396. msgstr "Sprawdzacz Modelu"
  4397. #: 3MFReader/plugin.json
  4398. msgctxt "description"
  4399. msgid "Provides support for reading 3MF files."
  4400. msgstr "Zapewnia wsparcie dla czytania plików 3MF."
  4401. #: 3MFReader/plugin.json
  4402. msgctxt "name"
  4403. msgid "3MF Reader"
  4404. msgstr "Czytnik 3MF"
  4405. #: 3MFWriter/plugin.json
  4406. msgctxt "description"
  4407. msgid "Provides support for writing 3MF files."
  4408. msgstr "Zapewnia wsparcie dla tworzenia plików 3MF."
  4409. #: 3MFWriter/plugin.json
  4410. msgctxt "name"
  4411. msgid "3MF Writer"
  4412. msgstr "3MF Writer"
  4413. #: AMFReader/plugin.json
  4414. msgctxt "description"
  4415. msgid "Provides support for reading AMF files."
  4416. msgstr "Zapewnia wsparcie dla czytania plików AMF."
  4417. #: AMFReader/plugin.json
  4418. msgctxt "name"
  4419. msgid "AMF Reader"
  4420. msgstr "Czytnik AMF"
  4421. #: CuraDrive/plugin.json
  4422. msgctxt "description"
  4423. msgid "Backup and restore your configuration."
  4424. msgstr "Utwórz kopię zapasową i przywróć konfigurację."
  4425. #: CuraDrive/plugin.json
  4426. msgctxt "name"
  4427. msgid "Cura Backups"
  4428. msgstr "Kopie zapasowe Cura"
  4429. #: CuraEngineBackend/plugin.json
  4430. msgctxt "description"
  4431. msgid "Provides the link to the CuraEngine slicing backend."
  4432. msgstr "Zapewnia połączenie z tnącym zapleczem CuraEngine."
  4433. #: CuraEngineBackend/plugin.json
  4434. msgctxt "name"
  4435. msgid "CuraEngine Backend"
  4436. msgstr "Zaplecze CuraEngine"
  4437. #: CuraProfileReader/plugin.json
  4438. msgctxt "description"
  4439. msgid "Provides support for importing Cura profiles."
  4440. msgstr "Zapewnia wsparcie dla importowania profili Cura."
  4441. #: CuraProfileReader/plugin.json
  4442. msgctxt "name"
  4443. msgid "Cura Profile Reader"
  4444. msgstr "Czytnik Profili Cura"
  4445. #: CuraProfileWriter/plugin.json
  4446. msgctxt "description"
  4447. msgid "Provides support for exporting Cura profiles."
  4448. msgstr "Zapewnia wsparcie dla eksportowania profili Cura."
  4449. #: CuraProfileWriter/plugin.json
  4450. msgctxt "name"
  4451. msgid "Cura Profile Writer"
  4452. msgstr "Cura Profile Writer"
  4453. #: FirmwareUpdateChecker/plugin.json
  4454. msgctxt "description"
  4455. msgid "Checks for firmware updates."
  4456. msgstr "Sprawdź aktualizacje oprogramowania."
  4457. #: FirmwareUpdateChecker/plugin.json
  4458. msgctxt "name"
  4459. msgid "Firmware Update Checker"
  4460. msgstr "Sprawdzacz Aktualizacji Oprogramowania"
  4461. #: FirmwareUpdater/plugin.json
  4462. msgctxt "description"
  4463. msgid "Provides a machine actions for updating firmware."
  4464. msgstr "Dostarcza działanie, pozwalające na aktualizację oprogramowania sprzętowego."
  4465. #: FirmwareUpdater/plugin.json
  4466. msgctxt "name"
  4467. msgid "Firmware Updater"
  4468. msgstr "Aktualizacja oprogramowania sprzętowego"
  4469. #: GCodeGzReader/plugin.json
  4470. msgctxt "description"
  4471. msgid "Reads g-code from a compressed archive."
  4472. msgstr "Odczytuje g-code ze skompresowanych archiwum."
  4473. #: GCodeGzReader/plugin.json
  4474. msgctxt "name"
  4475. msgid "Compressed G-code Reader"
  4476. msgstr "Czytnik Skompresowanego G-code"
  4477. #: GCodeGzWriter/plugin.json
  4478. msgctxt "description"
  4479. msgid "Writes g-code to a compressed archive."
  4480. msgstr "Zapisuje g-code do skompresowanego archiwum."
  4481. #: GCodeGzWriter/plugin.json
  4482. msgctxt "name"
  4483. msgid "Compressed G-code Writer"
  4484. msgstr "Zapisywacz Skompresowanego G-code"
  4485. #: GCodeProfileReader/plugin.json
  4486. msgctxt "description"
  4487. msgid "Provides support for importing profiles from g-code files."
  4488. msgstr "Zapewnia wsparcie dla importowania profili z plików g-code."
  4489. #: GCodeProfileReader/plugin.json
  4490. msgctxt "name"
  4491. msgid "G-code Profile Reader"
  4492. msgstr "Czytnik Profili G-code"
  4493. #: GCodeReader/plugin.json
  4494. msgctxt "description"
  4495. msgid "Allows loading and displaying G-code files."
  4496. msgstr "Pozwala na ładowanie i wyświetlanie plików G-code."
  4497. #: GCodeReader/plugin.json
  4498. msgctxt "name"
  4499. msgid "G-code Reader"
  4500. msgstr "Czytnik G-code"
  4501. #: GCodeWriter/plugin.json
  4502. msgctxt "description"
  4503. msgid "Writes g-code to a file."
  4504. msgstr "Zapisuje g-code do pliku."
  4505. #: GCodeWriter/plugin.json
  4506. msgctxt "name"
  4507. msgid "G-code Writer"
  4508. msgstr "Zapisywacz G-code"
  4509. #: ImageReader/plugin.json
  4510. msgctxt "description"
  4511. msgid "Enables ability to generate printable geometry from 2D image files."
  4512. msgstr "Włącza możliwość generowania drukowalnej geometrii z pliku obrazu 2D."
  4513. #: ImageReader/plugin.json
  4514. msgctxt "name"
  4515. msgid "Image Reader"
  4516. msgstr "Czytnik Obrazu"
  4517. #: LegacyProfileReader/plugin.json
  4518. msgctxt "description"
  4519. msgid "Provides support for importing profiles from legacy Cura versions."
  4520. msgstr "Zapewnia wsparcie dla importowania profili ze starszych wersji Cura."
  4521. #: LegacyProfileReader/plugin.json
  4522. msgctxt "name"
  4523. msgid "Legacy Cura Profile Reader"
  4524. msgstr "Czytnik Profili Starszej Cura"
  4525. #: MachineSettingsAction/plugin.json
  4526. msgctxt "description"
  4527. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4528. msgstr "Zapewnia możliwość zmiany ustawień maszyny (takich jak objętość robocza, rozmiar dyszy itp.)."
  4529. #: MachineSettingsAction/plugin.json
  4530. msgctxt "name"
  4531. msgid "Machine Settings Action"
  4532. msgstr ""
  4533. #: MonitorStage/plugin.json
  4534. msgctxt "description"
  4535. msgid "Provides a monitor stage in Cura."
  4536. msgstr "Zapewnia etap monitorowania w Cura."
  4537. #: MonitorStage/plugin.json
  4538. msgctxt "name"
  4539. msgid "Monitor Stage"
  4540. msgstr "Etap Monitorowania"
  4541. #: PerObjectSettingsTool/plugin.json
  4542. msgctxt "description"
  4543. msgid "Provides the Per Model Settings."
  4544. msgstr "Zapewnia Ustawienia dla Każdego Modelu."
  4545. #: PerObjectSettingsTool/plugin.json
  4546. msgctxt "name"
  4547. msgid "Per Model Settings Tool"
  4548. msgstr "Narzędzie Ustawień dla Każdego Modelu"
  4549. #: PostProcessingPlugin/plugin.json
  4550. msgctxt "description"
  4551. msgid "Extension that allows for user created scripts for post processing"
  4552. msgstr "Dodatek, który pozwala użytkownikowi tworzenie skryptów do post processingu"
  4553. #: PostProcessingPlugin/plugin.json
  4554. msgctxt "name"
  4555. msgid "Post Processing"
  4556. msgstr "Post Processing"
  4557. #: PrepareStage/plugin.json
  4558. msgctxt "description"
  4559. msgid "Provides a prepare stage in Cura."
  4560. msgstr "Zapewnia etap przygotowania w Cura."
  4561. #: PrepareStage/plugin.json
  4562. msgctxt "name"
  4563. msgid "Prepare Stage"
  4564. msgstr "Etap Przygotowania"
  4565. #: PreviewStage/plugin.json
  4566. msgctxt "description"
  4567. msgid "Provides a preview stage in Cura."
  4568. msgstr "Dostarcza podgląd w Cura."
  4569. #: PreviewStage/plugin.json
  4570. msgctxt "name"
  4571. msgid "Preview Stage"
  4572. msgstr "Podgląd"
  4573. #: RemovableDriveOutputDevice/plugin.json
  4574. msgctxt "description"
  4575. msgid "Provides removable drive hotplugging and writing support."
  4576. msgstr "Zapewnia wsparcie dla podłączania i zapisywania dysków zewnętrznych."
  4577. #: RemovableDriveOutputDevice/plugin.json
  4578. msgctxt "name"
  4579. msgid "Removable Drive Output Device Plugin"
  4580. msgstr "Wtyczka Urządzenia Wyjścia Dysku Zewnętrznego"
  4581. #: SentryLogger/plugin.json
  4582. msgctxt "description"
  4583. msgid "Logs certain events so that they can be used by the crash reporter"
  4584. msgstr ""
  4585. #: SentryLogger/plugin.json
  4586. msgctxt "name"
  4587. msgid "Sentry Logger"
  4588. msgstr ""
  4589. #: SimulationView/plugin.json
  4590. msgctxt "description"
  4591. msgid "Provides the Simulation view."
  4592. msgstr "Zapewnia widok Symulacji."
  4593. #: SimulationView/plugin.json
  4594. msgctxt "name"
  4595. msgid "Simulation View"
  4596. msgstr "Widok Symulacji"
  4597. #: SliceInfoPlugin/plugin.json
  4598. msgctxt "description"
  4599. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4600. msgstr "Zatwierdza anonimowe informację o cięciu. Może być wyłączone w preferencjach."
  4601. #: SliceInfoPlugin/plugin.json
  4602. msgctxt "name"
  4603. msgid "Slice info"
  4604. msgstr "Informacje o cięciu"
  4605. #: SolidView/plugin.json
  4606. msgctxt "description"
  4607. msgid "Provides a normal solid mesh view."
  4608. msgstr "Zapewnia normalny widok siatki."
  4609. #: SolidView/plugin.json
  4610. msgctxt "name"
  4611. msgid "Solid View"
  4612. msgstr "Widok Bryły"
  4613. #: SupportEraser/plugin.json
  4614. msgctxt "description"
  4615. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4616. msgstr "Tworzy siatkę do blokowania drukowania podpór w określonych miejscach"
  4617. #: SupportEraser/plugin.json
  4618. msgctxt "name"
  4619. msgid "Support Eraser"
  4620. msgstr "Usuwacz Podpór"
  4621. #: Toolbox/plugin.json
  4622. msgctxt "description"
  4623. msgid "Find, manage and install new Cura packages."
  4624. msgstr "Znajdź, zarządzaj i instaluj nowe pakiety Cura."
  4625. #: Toolbox/plugin.json
  4626. msgctxt "name"
  4627. msgid "Toolbox"
  4628. msgstr "Narzędzia"
  4629. #: TrimeshReader/plugin.json
  4630. msgctxt "description"
  4631. msgid "Provides support for reading model files."
  4632. msgstr "Zapewnia wsparcie dla czytania plików modeli."
  4633. #: TrimeshReader/plugin.json
  4634. msgctxt "name"
  4635. msgid "Trimesh Reader"
  4636. msgstr "Czytnik siatki trójkątów"
  4637. #: UFPReader/plugin.json
  4638. msgctxt "description"
  4639. msgid "Provides support for reading Ultimaker Format Packages."
  4640. msgstr "Zapewnia obsługę odczytu pakietów formatu Ultimaker."
  4641. #: UFPReader/plugin.json
  4642. msgctxt "name"
  4643. msgid "UFP Reader"
  4644. msgstr "Czytnik UFP"
  4645. #: UFPWriter/plugin.json
  4646. msgctxt "description"
  4647. msgid "Provides support for writing Ultimaker Format Packages."
  4648. msgstr "Zapewnia wsparcie dla zapisywania Pakietów Formatów Ultimaker."
  4649. #: UFPWriter/plugin.json
  4650. msgctxt "name"
  4651. msgid "UFP Writer"
  4652. msgstr "Zapisywacz UFP"
  4653. #: UltimakerMachineActions/plugin.json
  4654. msgctxt "description"
  4655. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4656. msgstr "Zapewnia czynności maszyny dla urządzeń Ultimaker (na przykład kreator poziomowania stołu, wybór ulepszeń itp.)."
  4657. #: UltimakerMachineActions/plugin.json
  4658. msgctxt "name"
  4659. msgid "Ultimaker machine actions"
  4660. msgstr "Czynności maszyny Ultimaker"
  4661. #: UM3NetworkPrinting/plugin.json
  4662. msgctxt "description"
  4663. msgid "Manages network connections to Ultimaker networked printers."
  4664. msgstr "Zarządza połączeniami z sieciowymi drukarkami Ultimaker."
  4665. #: UM3NetworkPrinting/plugin.json
  4666. msgctxt "name"
  4667. msgid "Ultimaker Network Connection"
  4668. msgstr "Połączenie sieciowe Ultimaker"
  4669. #: USBPrinting/plugin.json
  4670. msgctxt "description"
  4671. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4672. msgstr "Akceptuje G-Code i wysyła je do drukarki. Wtyczka może też aktualizować oprogramowanie."
  4673. #: USBPrinting/plugin.json
  4674. msgctxt "name"
  4675. msgid "USB printing"
  4676. msgstr "Drukowanie USB"
  4677. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4678. msgctxt "description"
  4679. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4680. msgstr "Ulepsza konfigurację z Cura 2.1 do Cura 2.2."
  4681. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4682. msgctxt "name"
  4683. msgid "Version Upgrade 2.1 to 2.2"
  4684. msgstr "Ulepszenie Wersji z 2.1 do 2.2"
  4685. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4686. msgctxt "description"
  4687. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4688. msgstr "Ulepsza konfigurację z Cura 2.2 do Cura 2.4."
  4689. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4690. msgctxt "name"
  4691. msgid "Version Upgrade 2.2 to 2.4"
  4692. msgstr "Ulepszenie Wersji z 2.2 do 2.4"
  4693. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4694. msgctxt "description"
  4695. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4696. msgstr "Ulepsza konfigurację z Cura 2.5 do Cura 2.6."
  4697. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4698. msgctxt "name"
  4699. msgid "Version Upgrade 2.5 to 2.6"
  4700. msgstr "Ulepszenie Wersji z 2.5 do 2.6"
  4701. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4702. msgctxt "description"
  4703. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  4704. msgstr "Ulepsza konfigurację z Cura 2.6 do Cura 2.7."
  4705. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4706. msgctxt "name"
  4707. msgid "Version Upgrade 2.6 to 2.7"
  4708. msgstr "Ulepszenie Wersji z 2.6 do 2.7"
  4709. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4710. msgctxt "description"
  4711. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4712. msgstr "Ulepsza konfigurację z Cura 2.7 do Cura 3.0."
  4713. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4714. msgctxt "name"
  4715. msgid "Version Upgrade 2.7 to 3.0"
  4716. msgstr "Ulepszenie Wersji 2.7 do 3.0"
  4717. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4718. msgctxt "description"
  4719. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  4720. msgstr "Ulepsza konfigurację z Cura 3.0 do Cura 3.1."
  4721. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4722. msgctxt "name"
  4723. msgid "Version Upgrade 3.0 to 3.1"
  4724. msgstr "Ulepszenie Wersji 3.0 do 3.1"
  4725. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4726. msgctxt "description"
  4727. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4728. msgstr "Ulepsza konfigurację z Cura 3.2 do Cura 3.3."
  4729. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4730. msgctxt "name"
  4731. msgid "Version Upgrade 3.2 to 3.3"
  4732. msgstr "Ulepszenie Wersji z 3.2 do 3.3"
  4733. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4734. msgctxt "description"
  4735. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  4736. msgstr "Ulepsza konfigurację z Cura 3.3 do Cura 3.4."
  4737. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4738. msgctxt "name"
  4739. msgid "Version Upgrade 3.3 to 3.4"
  4740. msgstr "Ulepszenie Wersji z 3.3 do 3.4"
  4741. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4742. msgctxt "description"
  4743. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4744. msgstr "Ulepsza konfigurację z Cura 3.4 do Cura 3.5."
  4745. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4746. msgctxt "name"
  4747. msgid "Version Upgrade 3.4 to 3.5"
  4748. msgstr "Ulepszenie Wersji z 3.4 do 3.5"
  4749. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4750. msgctxt "description"
  4751. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  4752. msgstr "Uaktualnia konfiguracje z Cura 3.5 to Cura 4.0."
  4753. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4754. msgctxt "name"
  4755. msgid "Version Upgrade 3.5 to 4.0"
  4756. msgstr "Uaktualnij wersję 3.5 do 4.0"
  4757. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4758. msgctxt "description"
  4759. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  4760. msgstr "Uaktualnia konfiguracje z Cura 4.0 to Cura 4.1."
  4761. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4762. msgctxt "name"
  4763. msgid "Version Upgrade 4.0 to 4.1"
  4764. msgstr "Uaktualnij wersję 4.0 do 4.1"
  4765. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4766. msgctxt "description"
  4767. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  4768. msgstr "Uaktualnia konfiguracje z Cura 4.1 to Cura 4.2."
  4769. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4770. msgctxt "name"
  4771. msgid "Version Upgrade 4.1 to 4.2"
  4772. msgstr "Uaktualnij wersję 4.1 do 4.2"
  4773. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4774. msgctxt "description"
  4775. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  4776. msgstr "Uaktualnia konfiguracje z Cura 4.2 to Cura 4.3."
  4777. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4778. msgctxt "name"
  4779. msgid "Version Upgrade 4.2 to 4.3"
  4780. msgstr "Uaktualnij wersję 4.2 do 4.3"
  4781. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4782. msgctxt "description"
  4783. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  4784. msgstr "Uaktualnia konfiguracje z Cura 4.3 to Cura 4.4."
  4785. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4786. msgctxt "name"
  4787. msgid "Version Upgrade 4.3 to 4.4"
  4788. msgstr "Uaktualnij wersję 4.3 do 4.4"
  4789. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4790. msgctxt "description"
  4791. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  4792. msgstr ""
  4793. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4794. msgctxt "name"
  4795. msgid "Version Upgrade 4.4 to 4.5"
  4796. msgstr ""
  4797. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4798. msgctxt "description"
  4799. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  4800. msgstr ""
  4801. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4802. msgctxt "name"
  4803. msgid "Version Upgrade 4.5 to 4.6"
  4804. msgstr ""
  4805. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4806. msgctxt "description"
  4807. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  4808. msgstr ""
  4809. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4810. msgctxt "name"
  4811. msgid "Version Upgrade 4.6.0 to 4.6.2"
  4812. msgstr ""
  4813. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4814. msgctxt "description"
  4815. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4816. msgstr ""
  4817. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4818. msgctxt "name"
  4819. msgid "Version Upgrade 4.6.2 to 4.7"
  4820. msgstr ""
  4821. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4822. msgctxt "description"
  4823. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  4824. msgstr ""
  4825. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4826. msgctxt "name"
  4827. msgid "Version Upgrade 4.7 to 4.8"
  4828. msgstr ""
  4829. #: X3DReader/plugin.json
  4830. msgctxt "description"
  4831. msgid "Provides support for reading X3D files."
  4832. msgstr "Zapewnia możliwość czytania plików X3D."
  4833. #: X3DReader/plugin.json
  4834. msgctxt "name"
  4835. msgid "X3D Reader"
  4836. msgstr "Czytnik X3D"
  4837. #: XmlMaterialProfile/plugin.json
  4838. msgctxt "description"
  4839. msgid "Provides capabilities to read and write XML-based material profiles."
  4840. msgstr "Zapewnia możliwość czytania i tworzenia profili materiałów opartych o XML."
  4841. #: XmlMaterialProfile/plugin.json
  4842. msgctxt "name"
  4843. msgid "Material Profiles"
  4844. msgstr "Profile Materiału"
  4845. #: XRayView/plugin.json
  4846. msgctxt "description"
  4847. msgid "Provides the X-Ray view."
  4848. msgstr "Zapewnia widok rentgena."
  4849. #: XRayView/plugin.json
  4850. msgctxt "name"
  4851. msgid "X-Ray View"
  4852. msgstr "Widok Rentgena"
  4853. #~ msgctxt "@info:status"
  4854. #~ msgid "The selected model was too small to load."
  4855. #~ msgstr "Wybrany model był zbyta mały do załadowania."
  4856. #~ msgctxt "@info:status"
  4857. #~ msgid "Successfully imported profile {0}"
  4858. #~ msgstr "Profil zaimportowany {0}"
  4859. #~ msgctxt "@info:status"
  4860. #~ msgid "Could not find a quality type {0} for the current configuration."
  4861. #~ msgstr "Nie można znaleźć typu jakości {0} dla bieżącej konfiguracji."
  4862. #~ msgctxt "@action:ComboBox option"
  4863. #~ msgid "Update"
  4864. #~ msgstr "Aktualizacja"
  4865. #~ msgctxt "@action:ComboBox option"
  4866. #~ msgid "Create new"
  4867. #~ msgstr "Utwórz nowy"
  4868. #~ msgctxt "@info"
  4869. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  4870. #~ msgstr "Kamera nie jest dostępna, ponieważ nadzorujesz drukarkę w chmurze."
  4871. #~ msgctxt "@text"
  4872. #~ msgid "Please give your printer a name"
  4873. #~ msgstr "Podaj nazwę drukarki"
  4874. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  4875. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  4876. #~ msgstr "Nowe funkcje są dostępne dla twojej {machine_name}! Rekomendowane jest zaktualizowanie oprogramowania drukarki."
  4877. #~ msgctxt "@action:button"
  4878. #~ msgid "Print via Cloud"
  4879. #~ msgstr "Drukuj przez Chmurę"
  4880. #~ msgctxt "@properties:tooltip"
  4881. #~ msgid "Print via Cloud"
  4882. #~ msgstr "Drukuj przez Chmurę"
  4883. #~ msgctxt "@info:status"
  4884. #~ msgid "Connected via Cloud"
  4885. #~ msgstr "Połączony z Chmurą"
  4886. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  4887. #~ msgid "Connect to Ultimaker Cloud"
  4888. #~ msgstr "Połacz z Ultimaker Cloud"
  4889. #~ msgctxt "@label"
  4890. #~ msgid "You need to login first before you can rate"
  4891. #~ msgstr "Musisz być zalogowany aby ocenić"
  4892. #~ msgctxt "@label"
  4893. #~ msgid "You need to install the package before you can rate"
  4894. #~ msgstr "Musisz zainstalować pakiety zanim będziesz mógł ocenić"
  4895. #~ msgctxt "@label"
  4896. #~ msgid "ratings"
  4897. #~ msgstr "oceny"
  4898. #~ msgctxt "@label"
  4899. #~ msgid "Featured"
  4900. #~ msgstr "Polecane"
  4901. #~ msgctxt "@label"
  4902. #~ msgid "Your rating"
  4903. #~ msgstr "Twoja ocena"
  4904. #~ msgctxt "@label"
  4905. #~ msgid "Author"
  4906. #~ msgstr "Autor"
  4907. #~ msgctxt "@label The argument is a username."
  4908. #~ msgid "Hi %1"
  4909. #~ msgstr "Cześć %1"
  4910. #~ msgctxt "@button"
  4911. #~ msgid "Ultimaker account"
  4912. #~ msgstr "Konto Ultimaker"
  4913. #~ msgctxt "@button"
  4914. #~ msgid "Sign out"
  4915. #~ msgstr "Wyloguj"
  4916. #~ msgctxt "@label"
  4917. #~ msgid "Support library for analysis of complex networks"
  4918. #~ msgstr "Biblioteka pomocnicza do analizy złożonych sieci"
  4919. #~ msgctxt "@Label"
  4920. #~ msgid "Python HTTP library"
  4921. #~ msgstr "Biblioteka Python HTTP"
  4922. #~ msgctxt "@text:window"
  4923. #~ msgid ""
  4924. #~ "You have customized some profile settings.\n"
  4925. #~ "Would you like to keep or discard those settings?"
  4926. #~ msgstr ""
  4927. #~ "Dostosowałeś ustawienia profilu.\n"
  4928. #~ "Chcesz zachować, czy usunąć te ustawienia?"
  4929. #~ msgctxt "@title:column"
  4930. #~ msgid "Default"
  4931. #~ msgstr "Domyślne"
  4932. #~ msgctxt "@title:column"
  4933. #~ msgid "Customized"
  4934. #~ msgstr "Dostosowane"
  4935. #~ msgctxt "@action:button"
  4936. #~ msgid "Discard"
  4937. #~ msgstr "Odrzuć"
  4938. #~ msgctxt "@action:button"
  4939. #~ msgid "Keep"
  4940. #~ msgstr "Zachowaj"
  4941. #~ msgctxt "@action:button"
  4942. #~ msgid "Create New Profile"
  4943. #~ msgstr "Utwórz nowy profil"
  4944. #~ msgctxt "@title:menu menubar:file"
  4945. #~ msgid "&Save..."
  4946. #~ msgstr "&Zapisz..."
  4947. #~ msgctxt "@text"
  4948. #~ msgid "Place enter your printer's IP address."
  4949. #~ msgstr "Wprowadź adres IP drukarki."
  4950. #~ msgctxt "@button"
  4951. #~ msgid "Create an account"
  4952. #~ msgstr "Stwórz konto"
  4953. #~ msgctxt "@info:status"
  4954. #~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder."
  4955. #~ msgstr "Nic do pocięcia, ponieważ żaden z modeli nie mieści się w obszarze roboczym lub jest przypisany do wyłączonego ekstrudera. Skaluj lub obróć modele, aby dopasować lub włącz ekstruder."
  4956. #~ msgctxt "@info:backup_status"
  4957. #~ msgid "There was an error listing your backups."
  4958. #~ msgstr "Wystąpił błąd z listą kopii zapasowych."
  4959. #~ msgctxt "@title:groupbox"
  4960. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  4961. #~ msgstr "Opis użytkownika (Uwaga: programiści mogą nie mówić w Twoim języku, w miarę możliwości używaj angielskiego)"
  4962. #~ msgctxt "@title:window"
  4963. #~ msgid "Closing Cura"
  4964. #~ msgstr "Zamykanie Cura"
  4965. #~ msgctxt "@label"
  4966. #~ msgid "Are you sure you want to exit Cura?"
  4967. #~ msgstr "Czy jesteś pewien, że chcesz zakończyć Cura?"
  4968. #~ msgctxt "@label"
  4969. #~ msgid "Language:"
  4970. #~ msgstr "Język:"
  4971. #~ msgctxt "@label"
  4972. #~ msgid "Ultimaker Cloud"
  4973. #~ msgstr "Chmura Ultimaker"
  4974. #~ msgctxt "@text"
  4975. #~ msgid "The next generation 3D printing workflow"
  4976. #~ msgstr "Nowa generacja systemu drukowania 3D"
  4977. #~ msgctxt "@text"
  4978. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  4979. #~ msgstr "- Wysyłaj zadania druku do drukarek Ultimaker poza siecią lokalną"
  4980. #~ msgctxt "@text"
  4981. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  4982. #~ msgstr "- Przechowuj ustawienia Ultimaker Cura w chmurze, aby używać w każdym miejscu"
  4983. #~ msgctxt "@text"
  4984. #~ msgid "- Get exclusive access to print profiles from leading brands"
  4985. #~ msgstr "- Uzyskaj wyłączny dostęp do profili materiałów wiodących marek"
  4986. #~ msgctxt "@label"
  4987. #~ msgid "The value is resolved from per-extruder values "
  4988. #~ msgstr "Wartość jest pobierana z osobna dla każdego ekstrudera "
  4989. #~ msgctxt "@label"
  4990. #~ msgid "The next generation 3D printing workflow"
  4991. #~ msgstr "Nowa generacja systemu drukowania 3D"
  4992. #~ msgctxt "@text"
  4993. #~ msgid ""
  4994. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  4995. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  4996. #~ "- Get exclusive access to print profiles from leading brands"
  4997. #~ msgstr ""
  4998. #~ "- Wysyłaj zadania druku do drukarek Ultimaker poza siecią lokalną\n"
  4999. #~ "- Przechowuj ustawienia Ultimaker Cura w chmurze, aby używać w każdym miejscu\n"
  5000. #~ "- Uzyskaj wyłączny dostęp do profili materiałów wiodących marek"
  5001. #~ msgctxt "@info:button"
  5002. #~ msgid "Quit Cura"
  5003. #~ msgstr "Zakończ Cura"
  5004. #~ msgctxt "@action:checkbox"
  5005. #~ msgid "Infill only"
  5006. #~ msgstr "Tylko wypełnienie"
  5007. #~ msgctxt "@info:tooltip"
  5008. #~ msgid "Change active post-processing scripts"
  5009. #~ msgstr "Zmień aktywne skrypty post-processingu"
  5010. #~ msgctxt "@label:listbox"
  5011. #~ msgid "Feedrate"
  5012. #~ msgstr "Szybkość Posuwu"
  5013. #~ msgctxt "name"
  5014. #~ msgid "Machine Settings action"
  5015. #~ msgstr "Ustawienia Maszyny"
  5016. #~ msgctxt "@info:title"
  5017. #~ msgid "New cloud printers found"
  5018. #~ msgstr "Znaleziono nowe drukarki w chmurze"
  5019. #~ msgctxt "@info:message"
  5020. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5021. #~ msgstr "Nowe drukarki podłączone do Twojego konta zostały znalezione, można je odszukać na liście wykrytych drukarek."
  5022. #~ msgctxt "@info:status"
  5023. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5024. #~ msgstr "Cura nie wyświetla dokładnie warstw kiedy drukowanie przewodowe jest włączone"
  5025. #~ msgctxt "@label"
  5026. #~ msgid "Pre-sliced file {0}"
  5027. #~ msgstr "Plik pocięty wcześniej {0}"
  5028. #~ msgctxt "@label"
  5029. #~ msgid ""
  5030. #~ "This plugin contains a license.\n"
  5031. #~ "You need to accept this license to install this plugin.\n"
  5032. #~ "Do you agree with the terms below?"
  5033. #~ msgstr ""
  5034. #~ "Ten plugin zawiera licencje.\n"
  5035. #~ "Musisz zaakceptować tę licencję, aby zainstalować ten plugin.\n"
  5036. #~ "Akceptujesz poniższe postanowienia?"
  5037. #~ msgctxt "@action:button"
  5038. #~ msgid "Accept"
  5039. #~ msgstr "Akceptuj"
  5040. #~ msgctxt "@action:button"
  5041. #~ msgid "Decline"
  5042. #~ msgstr "Odrzuć"
  5043. #~ msgctxt "@action:inmenu"
  5044. #~ msgid "Show All Settings"
  5045. #~ msgstr "Pokaż Wszystkie Ustawienia"
  5046. #~ msgctxt "@title:window"
  5047. #~ msgid "Ultimaker Cura"
  5048. #~ msgstr "Cura Ultimaker"
  5049. #~ msgctxt "@title:window"
  5050. #~ msgid "About Cura"
  5051. #~ msgstr "O Cura"
  5052. #~ msgctxt "@item:inmenu"
  5053. #~ msgid "Flatten active settings"
  5054. #~ msgstr "Spłaszczyć aktywne ustawienia"
  5055. #~ msgctxt "@info:status"
  5056. #~ msgid "Profile has been flattened & activated."
  5057. #~ msgstr "Profil został spłaszczony i aktywowany."
  5058. #~ msgctxt "X3g Writer Plugin Description"
  5059. #~ msgid "Writes X3g to files"
  5060. #~ msgstr "Zapisuje do plików X3g"
  5061. #~ msgctxt "X3g Writer File Description"
  5062. #~ msgid "X3g File"
  5063. #~ msgstr "Plik X3g"
  5064. #~ msgctxt "X3G Writer File Description"
  5065. #~ msgid "X3G File"
  5066. #~ msgstr "Plik X3G"
  5067. #~ msgctxt "@item:inlistbox"
  5068. #~ msgid "Open Compressed Triangle Mesh"
  5069. #~ msgstr "Otwórz skompresowaną siatkę trójkątów"
  5070. #~ msgctxt "@item:inmenu"
  5071. #~ msgid "Profile Assistant"
  5072. #~ msgstr "Asystent Profilu"
  5073. #~ msgctxt "@item:inlistbox"
  5074. #~ msgid "Profile Assistant"
  5075. #~ msgstr "Asystent Profilu"
  5076. #~ msgctxt "@action:button"
  5077. #~ msgid "Retry"
  5078. #~ msgstr "Spróbuj ponownie"
  5079. #~ msgctxt "@label:table_header"
  5080. #~ msgid "Print Core"
  5081. #~ msgstr "Rdzeń drukujący"
  5082. #~ msgctxt "@label"
  5083. #~ msgid "Don't support overlap with other models"
  5084. #~ msgstr "Nie wspieraj nałożeń z innymi modelami"
  5085. #~ msgctxt "@label"
  5086. #~ msgid "Modify settings for overlap with other models"
  5087. #~ msgstr "Modyfikuj ustawienia nakładania z innymi modelami"
  5088. #~ msgctxt "@label"
  5089. #~ msgid "Modify settings for infill of other models"
  5090. #~ msgstr "Modyfikuj ustawienia wypełnienia innych modeli"
  5091. #~ msgctxt "@action:ComboBox option"
  5092. #~ msgid "Update existing"
  5093. #~ msgstr "Zaktualizuj istniejące"
  5094. #~ msgctxt "@label"
  5095. #~ msgid "Not supported"
  5096. #~ msgstr "Niewspierany"
  5097. #~ msgctxt "@action:button"
  5098. #~ msgid "Previous"
  5099. #~ msgstr "Poprzedni"
  5100. #~ msgctxt "@label"
  5101. #~ msgid "Tip"
  5102. #~ msgstr "Końcówka"
  5103. #~ msgctxt "@label"
  5104. #~ msgid "Print experiment"
  5105. #~ msgstr "Próbny wydruk"
  5106. #~ msgctxt "@label"
  5107. #~ msgid "Checklist"
  5108. #~ msgstr "Lista kontrolna"
  5109. #~ msgctxt "@label"
  5110. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  5111. #~ msgstr "Proszę wybrać ulepszenia w tym Ultimaker 2."
  5112. #~ msgctxt "@label"
  5113. #~ msgid "Olsson Block"
  5114. #~ msgstr "Olsson Block"
  5115. #~ msgctxt "@window:text"
  5116. #~ msgid "Camera rendering: "
  5117. #~ msgstr "Renderowanie z kamery: "
  5118. #~ msgctxt "@info:tooltip"
  5119. #~ msgid "Use multi build plate functionality"
  5120. #~ msgstr "Użyj funkcji wielu pól roboczych"
  5121. #~ msgctxt "@option:check"
  5122. #~ msgid "Use multi build plate functionality (restart required)"
  5123. #~ msgstr "Użyj funkcji wielu pól roboczych (wymagany restart)"
  5124. #~ msgctxt "@label"
  5125. #~ msgid "Default profiles"
  5126. #~ msgstr "Domyślne profile"
  5127. #~ msgctxt "@label:textbox"
  5128. #~ msgid "search settings"
  5129. #~ msgstr "ustawienia wyszukiwania"
  5130. #~ msgctxt "@label"
  5131. #~ msgid "Layer Height"
  5132. #~ msgstr "Wysokość warstwy"
  5133. #~ msgctxt "@tooltip"
  5134. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  5135. #~ msgstr "Ten profil jakości nie jest dostępny dla bieżącej konfiguracji materiałów i dysz. Zmień ją, aby włączyć ten profil jakości."
  5136. #~ msgctxt "@tooltip"
  5137. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  5138. #~ msgstr "Niestandardowy profil jest obecnie aktywny. Aby włączyć pasek jakości, wybierz domyślny profil w zakładce Niestandardowe"
  5139. #~ msgctxt "@title:menu"
  5140. #~ msgid "&Build plate"
  5141. #~ msgstr "&Pole robocze"
  5142. #~ msgctxt "@title:settings"
  5143. #~ msgid "&Profile"
  5144. #~ msgstr "&Profil"
  5145. #~ msgctxt "@action:label"
  5146. #~ msgid "Build plate"
  5147. #~ msgstr "Pole robocze"
  5148. #~ msgctxt "description"
  5149. #~ msgid "Dump the contents of all settings to a HTML file."
  5150. #~ msgstr "Wsypuje zawartość wszystkich ustawień do pliku HTML."
  5151. #~ msgctxt "name"
  5152. #~ msgid "God Mode"
  5153. #~ msgstr "Tryb Boga"
  5154. #~ msgctxt "description"
  5155. #~ msgid "Create a flattened quality changes profile."
  5156. #~ msgstr "Stwórz spłaszczony profil zmian jakości."
  5157. #~ msgctxt "name"
  5158. #~ msgid "Profile Flattener"
  5159. #~ msgstr "Spłaszcz profil"
  5160. #~ msgctxt "description"
  5161. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  5162. #~ msgstr "Pozwala twórcą materiałów na tworzenie nowych profili materiałów i jakości używając rozwijanego menu."
  5163. #~ msgctxt "name"
  5164. #~ msgid "Print Profile Assistant"
  5165. #~ msgstr "Asystent Profilów Druku"
  5166. #~ msgctxt "@info:status"
  5167. #~ msgid "Connected over the network."
  5168. #~ msgstr "Połączono przez sieć."
  5169. #~ msgctxt "@info:status"
  5170. #~ msgid "Connected over the network. Please approve the access request on the printer."
  5171. #~ msgstr "Połączono przez sieć. Proszę zatwierdzić żądanie dostępu na drukarce."
  5172. #~ msgctxt "@info:status"
  5173. #~ msgid "Connected over the network. No access to control the printer."
  5174. #~ msgstr "Połączono przez sieć. Brak dostępu do sterowania drukarką."
  5175. #~ msgctxt "@info:status"
  5176. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  5177. #~ msgstr "Wymagany dostęp do drukarki. Proszę zatwierdzić prośbę na drukarce"
  5178. #~ msgctxt "@info:title"
  5179. #~ msgid "Authentication status"
  5180. #~ msgstr "Status uwierzytelniania"
  5181. #~ msgctxt "@info:title"
  5182. #~ msgid "Authentication Status"
  5183. #~ msgstr "Status Uwierzytelniania"
  5184. #~ msgctxt "@info:tooltip"
  5185. #~ msgid "Re-send the access request"
  5186. #~ msgstr "Prześlij ponownie żądanie dostępu"
  5187. #~ msgctxt "@info:status"
  5188. #~ msgid "Access to the printer accepted"
  5189. #~ msgstr "Dostęp do drukarki został zaakceptowany"
  5190. #~ msgctxt "@info:status"
  5191. #~ msgid "No access to print with this printer. Unable to send print job."
  5192. #~ msgstr "Brak dostępu do tej drukarki. Nie można wysłać zadania drukowania."
  5193. #~ msgctxt "@action:button"
  5194. #~ msgid "Request Access"
  5195. #~ msgstr "Poproś o dostęp"
  5196. #~ msgctxt "@info:tooltip"
  5197. #~ msgid "Send access request to the printer"
  5198. #~ msgstr "Wyślij żądanie dostępu do drukarki"
  5199. #~ msgctxt "@label"
  5200. #~ msgid "Unable to start a new print job."
  5201. #~ msgstr "Nie można uruchomić nowego zadania drukowania."
  5202. #~ msgctxt "@label"
  5203. #~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing."
  5204. #~ msgstr "Wystąpił problem z konfiguracją twojego Ultimaker'a, przez który nie można rozpocząć wydruku. Proszę rozwiąż te problemy przed kontynuowaniem."
  5205. #~ msgctxt "@window:title"
  5206. #~ msgid "Mismatched configuration"
  5207. #~ msgstr "Niedopasowana konfiguracja"
  5208. #~ msgctxt "@label"
  5209. #~ msgid "Are you sure you wish to print with the selected configuration?"
  5210. #~ msgstr "Czy na pewno chcesz drukować z wybraną konfiguracją?"
  5211. #~ msgctxt "@label"
  5212. #~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  5213. #~ msgstr "Występuje niezgodność między konfiguracją lub kalibracją drukarki a Curą. Aby uzyskać najlepszy rezultat, zawsze tnij dla Print core'ów i materiałów włożonych do drukarki."
  5214. #~ msgctxt "@info:status"
  5215. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  5216. #~ msgstr "Wysyłanie nowych zadań (tymczasowo) zostało zablokowane, dalej wysyłane jest poprzednie zadanie."
  5217. #~ msgctxt "@info:status"
  5218. #~ msgid "Sending data to printer"
  5219. #~ msgstr "Wysyłanie danych do drukarki"
  5220. #~ msgctxt "@info:title"
  5221. #~ msgid "Sending Data"
  5222. #~ msgstr "Wysyłanie danych"
  5223. #~ msgctxt "@info:status"
  5224. #~ msgid "No Printcore loaded in slot {slot_number}"
  5225. #~ msgstr "Brak Printcore'a w slocie {slot_number}"
  5226. #~ msgctxt "@info:status"
  5227. #~ msgid "No material loaded in slot {slot_number}"
  5228. #~ msgstr "Brak załadowanego materiału w slocie {slot_number}"
  5229. #~ msgctxt "@label"
  5230. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  5231. #~ msgstr "Inny PrintCore (Cura: {cura_printcore_name}, Drukarka: {remote_printcore_name}) wybrany dla extrudera {extruder_id}"
  5232. #~ msgctxt "@label"
  5233. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5234. #~ msgstr "Różne materiały (Cura: {0}, Drukarka: {1}) wybrane do dzyszy {2}"
  5235. #~ msgctxt "@window:title"
  5236. #~ msgid "Sync with your printer"
  5237. #~ msgstr "Synchronizuj się z drukarką"
  5238. #~ msgctxt "@label"
  5239. #~ msgid "Would you like to use your current printer configuration in Cura?"
  5240. #~ msgstr "Czy chcesz używać bieżącej konfiguracji drukarki w programie Cura?"
  5241. #~ msgctxt "@label"
  5242. #~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  5243. #~ msgstr "PrintCore'y i/lub materiały w drukarce różnią się od tych w obecnym projekcie. Dla najlepszego rezultatu, zawsze tnij dla wybranych PrinCore'ów i materiałów, które są umieszczone w drukarce."
  5244. #~ msgctxt "@action:button"
  5245. #~ msgid "View in Monitor"
  5246. #~ msgstr "Zobacz w Monitorze"
  5247. #~ msgctxt "@info:status"
  5248. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  5249. #~ msgstr "{printer_name} skończyła drukowanie '{job_name}'."
  5250. #~ msgctxt "@info:status"
  5251. #~ msgid "The print job '{job_name}' was finished."
  5252. #~ msgstr "Zadanie '{job_name}' zostało zakończone."
  5253. #~ msgctxt "@info:status"
  5254. #~ msgid "Print finished"
  5255. #~ msgstr "Drukowanie zakończone"
  5256. #~ msgctxt "@label:material"
  5257. #~ msgid "Empty"
  5258. #~ msgstr "Pusty"
  5259. #~ msgctxt "@label:material"
  5260. #~ msgid "Unknown"
  5261. #~ msgstr "Nieznany"
  5262. #~ msgctxt "@info:title"
  5263. #~ msgid "Cloud error"
  5264. #~ msgstr "Błąd Chmury"
  5265. #~ msgctxt "@info:status"
  5266. #~ msgid "Could not export print job."
  5267. #~ msgstr "Nie można eksportować zadania druku."
  5268. #~ msgctxt "@info:description"
  5269. #~ msgid "There was an error connecting to the cloud."
  5270. #~ msgstr "Wystąpił błąd połączenia z chmurą."
  5271. #~ msgctxt "@info:status"
  5272. #~ msgid "Uploading via Ultimaker Cloud"
  5273. #~ msgstr "Przesyłanie z Ultimaker Cloud"
  5274. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  5275. #~ msgid "Connect to Ultimaker Cloud"
  5276. #~ msgstr "Połącz z Ultimaker Cloud"
  5277. #~ msgctxt "@action"
  5278. #~ msgid "Don't ask me again for this printer."
  5279. #~ msgstr "Nie pytaj więcej dla tej drukarki."
  5280. #~ msgctxt "@info:status"
  5281. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  5282. #~ msgstr "Możesz teraz wysłać i nadzorować zadania druku z każdego miejsca, używając konta Ultimaker."
  5283. #~ msgctxt "@info:status"
  5284. #~ msgid "Connected!"
  5285. #~ msgstr "Połączono!"
  5286. #~ msgctxt "@action"
  5287. #~ msgid "Review your connection"
  5288. #~ msgstr "Odnów połączenie"
  5289. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  5290. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5291. #~ msgstr "Drukarka zdefiniowana w profilu <filename>{0}</filename> ({1}) nie jest zgodna z bieżącą drukarką ({2}), nie można jej importować."
  5292. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5293. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  5294. #~ msgstr "Nie powiódł się import profilu z <filename>{0}</filename>:"
  5295. #~ msgctxt "@window:title"
  5296. #~ msgid "Existing Connection"
  5297. #~ msgstr "Istniejące Połączenie"
  5298. #~ msgctxt "@message:text"
  5299. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  5300. #~ msgstr "Ta drukarka/grupa jest już dodana do Cura. Proszę wybierz inną drukarkę/grupę."
  5301. #~ msgctxt "@label"
  5302. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5303. #~ msgstr "Podaj adres IP lub nazwę hosta drukarki w sieci."
  5304. #~ msgctxt "@info:tooltip"
  5305. #~ msgid "Connect to a printer"
  5306. #~ msgstr "Podłącz do drukarki"
  5307. #~ msgctxt "@title"
  5308. #~ msgid "Cura Settings Guide"
  5309. #~ msgstr "Przewodnik po ustawieniach Cura"
  5310. #~ msgctxt "description"
  5311. #~ msgid "Manages network connections to Ultimaker 3 printers."
  5312. #~ msgstr "Zarządza ustawieniami połączenia sieciowego z drukarkami Ultimaker 3."
  5313. #~ msgctxt "name"
  5314. #~ msgid "UM3 Network Connection"
  5315. #~ msgstr "Połączenie Sieciowe UM3"
  5316. #~ msgctxt "description"
  5317. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  5318. #~ msgstr "Zawiera dodatkowe informacje i objaśnienia dotyczące ustawień w Cura, z obrazami i animacjami."
  5319. #~ msgctxt "name"
  5320. #~ msgid "Settings Guide"
  5321. #~ msgstr "Przewodnik po ustawieniach"
  5322. #~ msgctxt "@item:inmenu"
  5323. #~ msgid "Cura Settings Guide"
  5324. #~ msgstr "Przewodnik po ustawieniach Cura"
  5325. #~ msgctxt "@info:generic"
  5326. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  5327. #~ msgstr "Ustawienia został zmienione, aby pasowały do obecnej dostępności extruderów: [%s]"
  5328. #~ msgctxt "@title:groupbox"
  5329. #~ msgid "User description"
  5330. #~ msgstr "Opis użytkownika"
  5331. #~ msgctxt "@info"
  5332. #~ msgid "These options are not available because you are monitoring a cloud printer."
  5333. #~ msgstr "Te opcje nie są dostępne, ponieważ nadzorujesz drukarkę w chmurze."
  5334. #~ msgctxt "@label link to connect manager"
  5335. #~ msgid "Go to Cura Connect"
  5336. #~ msgstr "Idź do Cura Connect"
  5337. #~ msgctxt "@info"
  5338. #~ msgid "All jobs are printed."
  5339. #~ msgstr "Wszystkie zadania są drukowane."
  5340. #~ msgctxt "@label link to connect manager"
  5341. #~ msgid "View print history"
  5342. #~ msgstr "Poważ historię druku"
  5343. #~ msgctxt "@label"
  5344. #~ msgid ""
  5345. #~ "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.\n"
  5346. #~ "\n"
  5347. #~ "Select your printer from the list below:"
  5348. #~ msgstr ""
  5349. #~ "Aby drukować bezpośrednio w drukarce w sieci, upewnij się, że drukarka jest podłączona do sieci przy użyciu kabla sieciowego lub sieci WIFI. Jeśli nie podłączasz Cury do drukarki, możesz nadal używać dysku USB do przesyłania plików g-code do drukarki.\n"
  5350. #~ "\n"
  5351. #~ "Wybierz drukarkę z poniższej listy:"
  5352. #~ msgctxt "@info"
  5353. #~ msgid ""
  5354. #~ "Please make sure your printer has a connection:\n"
  5355. #~ "- Check if the printer is turned on.\n"
  5356. #~ "- Check if the printer is connected to the network."
  5357. #~ msgstr ""
  5358. #~ "Upewnij się czy drukarka jest połączona:\n"
  5359. #~ "- Sprawdź czy drukarka jest włączona.\n"
  5360. #~ "- Sprawdź czy drukarka jest podłączona do sieci."
  5361. #~ msgctxt "@option:check"
  5362. #~ msgid "See only current build plate"
  5363. #~ msgstr "Pokaż tylko aktualną platformę roboczą"
  5364. #~ msgctxt "@action:button"
  5365. #~ msgid "Arrange to all build plates"
  5366. #~ msgstr "Rozłóż na wszystkich platformach roboczych"
  5367. #~ msgctxt "@action:button"
  5368. #~ msgid "Arrange current build plate"
  5369. #~ msgstr "Rozłóż na obecnej platformie roboczej"
  5370. #~ msgctxt "description"
  5371. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  5372. #~ msgstr "Umożliwia zapisanie wyników cięcia jako plik X3G, aby wspierać drukarki obsługujące ten format (Malyan, Makerbot oraz inne oparte o oprogramowanie Sailfish)."
  5373. #~ msgctxt "name"
  5374. #~ msgid "X3GWriter"
  5375. #~ msgstr "Zapisywacz X3G"
  5376. #~ msgctxt "description"
  5377. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  5378. #~ msgstr "Czyta pliki SVG jako ścieżki, do debugowania ruchów drukarki."
  5379. #~ msgctxt "name"
  5380. #~ msgid "SVG Toolpath Reader"
  5381. #~ msgstr "Czytnik ścieżek SVG"
  5382. #~ msgctxt "@item:inmenu"
  5383. #~ msgid "Changelog"
  5384. #~ msgstr "Lista zmian"
  5385. #~ msgctxt "@item:inmenu"
  5386. #~ msgid "Show Changelog"
  5387. #~ msgstr "Pokaż Dziennik"
  5388. #~ msgctxt "@info:status"
  5389. #~ msgid "Sending data to remote cluster"
  5390. #~ msgstr "Wysyłanie danych do zdalnego klastra"
  5391. #~ msgctxt "@info:status"
  5392. #~ msgid "Connect to Ultimaker Cloud"
  5393. #~ msgstr "Połącz z Ultimaker Cloud"
  5394. #~ msgctxt "@info"
  5395. #~ msgid "Cura collects anonymized usage statistics."
  5396. #~ msgstr "Cura zbiera anonimowe dane statystyczne."
  5397. #~ msgctxt "@info:title"
  5398. #~ msgid "Collecting Data"
  5399. #~ msgstr "Zbieranie Danych"
  5400. #~ msgctxt "@action:button"
  5401. #~ msgid "More info"
  5402. #~ msgstr "Więcej informacji"
  5403. #~ msgctxt "@action:tooltip"
  5404. #~ msgid "See more information on what data Cura sends."
  5405. #~ msgstr "Zobacz więcej informacji o tym, jakie dane przesyła Cura."
  5406. #~ msgctxt "@action:button"
  5407. #~ msgid "Allow"
  5408. #~ msgstr "Zezwól"
  5409. #~ msgctxt "@action:tooltip"
  5410. #~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing."
  5411. #~ msgstr "Zezwól Cura na wysyłanie anonimowych danych statystycznych, aby pomóc w wyborze przyszłych usprawnień Cura. Część twoich ustawień i preferencji jest wysyłana, a także wersja Cury i kod modelu który tniesz."
  5412. #~ msgctxt "@item:inmenu"
  5413. #~ msgid "Evaluation"
  5414. #~ msgstr "Obliczanie"
  5415. #~ msgctxt "@info:title"
  5416. #~ msgid "Network enabled printers"
  5417. #~ msgstr "Drukarki dostępne w sieci"
  5418. #~ msgctxt "@info:title"
  5419. #~ msgid "Local printers"
  5420. #~ msgstr "Drukarki lokalne"
  5421. #~ msgctxt "@info:backup_failed"
  5422. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  5423. #~ msgstr "Podjęto próbę przywrócenia kopii zapasowej Cura, która nie odpowiada obecnej wersji programu."
  5424. #~ msgctxt "@title"
  5425. #~ msgid "Machine Settings"
  5426. #~ msgstr "Ustawienia Drukarki"
  5427. #~ msgctxt "@label"
  5428. #~ msgid "Printer Settings"
  5429. #~ msgstr "Ustawienia drukarki"
  5430. #~ msgctxt "@option:check"
  5431. #~ msgid "Origin at center"
  5432. #~ msgstr "Początek na środku"
  5433. #~ msgctxt "@option:check"
  5434. #~ msgid "Heated bed"
  5435. #~ msgstr "Podgrzewany stół"
  5436. #~ msgctxt "@label"
  5437. #~ msgid "Printhead Settings"
  5438. #~ msgstr "Ustawienia głowic drukujących"
  5439. #~ msgctxt "@tooltip"
  5440. #~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5441. #~ msgstr "Odległość od lewej strony głowicy do środka dyszy. Używane do unikania kolizji pomiędzy poprzednimi wydrukami a głowicą podczas drukowania \"Jeden na Raz\"."
  5442. #~ msgctxt "@tooltip"
  5443. #~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5444. #~ msgstr "Odległość od przedniej strony głowicy do środka dyszy. Używane do unikania kolizji pomiędzy poprzednimi wydrukami a głowicą podczas drukowania \"Jeden na Raz\"."
  5445. #~ msgctxt "@tooltip"
  5446. #~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5447. #~ msgstr "Odległość od prawej strony głowicy do środka dyszy. Używane do unikania kolizji pomiędzy poprzednimi wydrukami a głowicą podczas drukowania \"Jeden na Raz\"."
  5448. #~ msgctxt "@tooltip"
  5449. #~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5450. #~ msgstr "Odległość od tylnej strony głowicy do środka dyszy. Używane do unikania kolizji pomiędzy poprzednimi wydrukami a głowicą podczas drukowania \"Jeden na Raz\"."
  5451. #~ msgctxt "@label"
  5452. #~ msgid "Gantry height"
  5453. #~ msgstr "Wysokość ramy"
  5454. #~ msgctxt "@tooltip"
  5455. #~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"."
  5456. #~ msgstr "Różnica w wysokości pomiędzy końcówką dyszy i systemem suwnym (osie X i Y). Używane do unikania kolizji z poprzednimi wydrukami podczas drukowania \"Jeden na Raz\"."
  5457. #~ msgctxt "@label"
  5458. #~ msgid "Start G-code"
  5459. #~ msgstr "Początkowy G-code"
  5460. #~ msgctxt "@tooltip"
  5461. #~ msgid "G-code commands to be executed at the very start."
  5462. #~ msgstr "Komedy G-code, które są wykonywane na samym początku."
  5463. #~ msgctxt "@label"
  5464. #~ msgid "End G-code"
  5465. #~ msgstr "Końcowy G-code"
  5466. #~ msgctxt "@tooltip"
  5467. #~ msgid "G-code commands to be executed at the very end."
  5468. #~ msgstr "Komendy G-code, które są wykonywane na samym końcu."
  5469. #~ msgctxt "@label"
  5470. #~ msgid "Nozzle Settings"
  5471. #~ msgstr "Ustawienia dyszy"
  5472. #~ msgctxt "@tooltip"
  5473. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  5474. #~ msgstr "Nominalna średnica filamentu wspierana przez drukarkę. Dokładna średnica będzie nadpisana przez materiał i/lub profil."
  5475. #~ msgctxt "@label"
  5476. #~ msgid "Extruder Start G-code"
  5477. #~ msgstr "Początkowy G-code Ekstrudera"
  5478. #~ msgctxt "@label"
  5479. #~ msgid "Extruder End G-code"
  5480. #~ msgstr "Końcowy G-code Ekstrudera"
  5481. #~ msgctxt "@label"
  5482. #~ msgid "Changelog"
  5483. #~ msgstr "Dziennik"
  5484. #~ msgctxt "@title:window"
  5485. #~ msgid "User Agreement"
  5486. #~ msgstr "Zgoda Użytkownika"
  5487. #~ msgctxt "@alabel"
  5488. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5489. #~ msgstr "Wpisz adres IP lub nazwę hosta drukarki w sieci."
  5490. #~ msgctxt "@info"
  5491. #~ msgid "Please select a network connected printer to monitor."
  5492. #~ msgstr "Wybierz drukarkę połączoną z siecią, aby nadzorować."
  5493. #~ msgctxt "@info"
  5494. #~ msgid "Please connect your Ultimaker printer to your local network."
  5495. #~ msgstr "Połącz drukarkę Ultimaker z twoją siecią lokalną."
  5496. #~ msgctxt "@text:window"
  5497. #~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent."
  5498. #~ msgstr "Cura wysyła anonimowe dane do Ultimaker w celu polepszenia jakości wydruków oraz interakcji z użytkownikiem. Poniżej podano przykład wszystkich danych, jakie mogą być przesyłane."
  5499. #~ msgctxt "@text:window"
  5500. #~ msgid "I don't want to send this data"
  5501. #~ msgstr "Nie chcę wysyłać danych"
  5502. #~ msgctxt "@text:window"
  5503. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  5504. #~ msgstr "Pozwól wysłać te dane do Ultimakera i pomóż nam ulepszyć Curę"
  5505. #~ msgctxt "@label"
  5506. #~ msgid "No print selected"
  5507. #~ msgstr "Żaden wydruk nie jest zaznaczony"
  5508. #~ msgctxt "@info:tooltip"
  5509. #~ msgid "By default, white pixels represent high points on the mesh and black pixels represent low points on the mesh. Change this option to reverse the behavior such that black pixels represent high points on the mesh and white pixels represent low points on the mesh."
  5510. #~ msgstr "Domyślnie białe piksele przedstawiają wysokie punkty na siatce, a czarne piksele przedstawiają niskie punkty na siatce. Zmień tę opcję, aby odwrócić takie zachowanie, tak żeby czarne piksele przedstawiają wysokie punkty na siatce, a białe piksele przedstawiają niskie punkty na siatce."
  5511. #~ msgctxt "@title"
  5512. #~ msgid "Select Printer Upgrades"
  5513. #~ msgstr "Wybierz ulepszenia drukarki"
  5514. #~ msgctxt "@label"
  5515. #~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  5516. #~ msgstr "Wybierz, który ekstruder ma służyć do drukowania podpór. Powoduje to tworzenie podpór poniżej modelu, aby zapobiec spadaniu lub drukowaniu modelu w powietrzu."
  5517. #~ msgctxt "@tooltip"
  5518. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  5519. #~ msgstr "Ten profil jakości nie jest dostępny dla bieżącej konfiguracji materiałów i dysz. Zmień je, aby włączyć ten profil jakości"
  5520. #~ msgctxt "@label shown when we load a Gcode file"
  5521. #~ msgid "Print setup disabled. G code file can not be modified."
  5522. #~ msgstr "Ustawienia druku niedostępne. Plik .gcode nie może być modyfikowany."
  5523. #~ msgctxt "@label"
  5524. #~ msgid "See the material compatibility chart"
  5525. #~ msgstr "Zobacz tabelę kompatybilności materiałów"
  5526. #~ msgctxt "@label"
  5527. #~ msgid "View types"
  5528. #~ msgstr "Typy widoków"
  5529. #~ msgctxt "@label"
  5530. #~ msgid "Hi "
  5531. #~ msgstr "Cześć "
  5532. #~ msgctxt "@text"
  5533. #~ msgid ""
  5534. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5535. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5536. #~ "- Get exclusive access to material profiles from leading brands"
  5537. #~ msgstr ""
  5538. #~ "- Wysyłaj zadania druku do drukarek Ultimaker poza siecią lokalną\n"
  5539. #~ "- Przechowuj ustawienia Ultimaker Cura w chmurze, aby używać w każdym miejscu\n"
  5540. #~ "- Uzyskaj wyłączny dostęp do profili materiałów wiodących marek"
  5541. #~ msgctxt "@label:PrintjobStatus"
  5542. #~ msgid "Unable to Slice"
  5543. #~ msgstr "Nie można pociąć"
  5544. #~ msgctxt "@label"
  5545. #~ msgid "Time specification"
  5546. #~ msgstr "Specyfikacja czasu"
  5547. #~ msgctxt "@label"
  5548. #~ msgid "Material specification"
  5549. #~ msgstr "Specyfikacja materiału"
  5550. #~ msgctxt "@title:tab"
  5551. #~ msgid "Add a printer to Cura"
  5552. #~ msgstr "Dodaj drukarkę do Cura"
  5553. #~ msgctxt "@title:tab"
  5554. #~ msgid ""
  5555. #~ "Select the printer you want to use from the list below.\n"
  5556. #~ "\n"
  5557. #~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog."
  5558. #~ msgstr ""
  5559. #~ "Z poniższej listy wybierz drukarkę, której chcesz użyć.\n"
  5560. #~ "\n"
  5561. #~ "Jeśli drukarki nie ma na liście, użyj „Niestandardowa drukarka FFF” z kategorii „Niestandardowy” i dostosuj ustawienia, aby pasowały do drukarki w następnym oknie dialogowym."
  5562. #~ msgctxt "@label"
  5563. #~ msgid "Printer Name"
  5564. #~ msgstr "Nazwa drukarki"
  5565. #~ msgctxt "@action:button"
  5566. #~ msgid "Add Printer"
  5567. #~ msgstr "Dodaj drukarkę"
  5568. #~ msgid "Modify G-Code"
  5569. #~ msgstr "Modyfikuj G-Code"
  5570. #~ msgctxt "@info:status"
  5571. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  5572. #~ msgstr "Nic do pocięcia, ponieważ żaden z modeli nie pasuje do obszaru roboczego. Proszę o przeskalowanie lub obrócenie modelu, żeby pasował."
  5573. #~ msgctxt "@info:status"
  5574. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  5575. #~ msgstr "Wybrany materiał jest niezgodny z wybranym urządzeniem lub konfiguracją."
  5576. #~ msgctxt "@info:title"
  5577. #~ msgid "Incompatible Material"
  5578. #~ msgstr "Niekompatybilny Materiał"
  5579. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5580. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  5581. #~ msgstr "Nie udało się zaimportować profilu z <filename>{0}</filename>: <message>{1}</message>"
  5582. #~ msgctxt "@title"
  5583. #~ msgid "Toolbox"
  5584. #~ msgstr "Narzędzia"
  5585. #~ msgctxt "@label"
  5586. #~ msgid "Not available"
  5587. #~ msgstr "Niedostępny"
  5588. #~ msgctxt "@label"
  5589. #~ msgid "Unreachable"
  5590. #~ msgstr "Nieosiągalny"
  5591. #~ msgctxt "@label"
  5592. #~ msgid "Available"
  5593. #~ msgstr "Dostępny"
  5594. #~ msgctxt "@label:status"
  5595. #~ msgid "Preparing"
  5596. #~ msgstr "Przygotowywanie"
  5597. #~ msgctxt "@label:status"
  5598. #~ msgid "Pausing"
  5599. #~ msgstr "Wstrzymywanie"
  5600. #~ msgctxt "@label:status"
  5601. #~ msgid "Resuming"
  5602. #~ msgstr "Wznawianie"
  5603. #~ msgctxt "@label"
  5604. #~ msgid "Waiting for: Unavailable printer"
  5605. #~ msgstr "Oczekiwanie na: Niedostępną drukarkę"
  5606. #~ msgctxt "@label"
  5607. #~ msgid "Waiting for: First available"
  5608. #~ msgstr "Oczekiwanie na: Pierwszą dostępną"
  5609. #~ msgctxt "@label"
  5610. #~ msgid "Waiting for: "
  5611. #~ msgstr "Oczekiwanie na: "
  5612. #~ msgctxt "@label link to connect manager"
  5613. #~ msgid "Manage queue"
  5614. #~ msgstr "Zarządzaj kolejką"
  5615. #~ msgctxt "@label"
  5616. #~ msgid "Printing"
  5617. #~ msgstr "Drukowanie"
  5618. #~ msgctxt "@label link to connect manager"
  5619. #~ msgid "Manage printers"
  5620. #~ msgstr "Zarządzaj drukarkami"
  5621. #~ msgctxt "@action:button"
  5622. #~ msgid "Activate Configuration"
  5623. #~ msgstr "Uaktywnij konfigurację"
  5624. #~ msgctxt "@info:tooltip"
  5625. #~ msgid "Load the configuration of the printer into Cura"
  5626. #~ msgstr "Załaduj konfigurację drukarki do Cura"
  5627. #~ msgctxt "@label"
  5628. #~ msgid "Show Travels"
  5629. #~ msgstr "Pokaż ruch jałowy"
  5630. #~ msgctxt "@label"
  5631. #~ msgid "Show Helpers"
  5632. #~ msgstr "Pokaż pomocnik"
  5633. #~ msgctxt "@label"
  5634. #~ msgid "Show Shell"
  5635. #~ msgstr "Pokaż powłokę"
  5636. #~ msgctxt "@label"
  5637. #~ msgid "Show Infill"
  5638. #~ msgstr "Pokaż wypełnienie"
  5639. #~ msgctxt "@text:window"
  5640. #~ msgid "I don't want to send these data"
  5641. #~ msgstr "Nie chcę przesyłać tych danych"
  5642. #~ msgctxt "@text:window"
  5643. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  5644. #~ msgstr "Zezwól na przesyłanie tych danych do Ultimaker i pomóż nam ulepszać Cura"
  5645. #~ msgctxt "@label"
  5646. #~ msgid "Printer type:"
  5647. #~ msgstr "Typ drukarki:"
  5648. #~ msgctxt "@label"
  5649. #~ msgid "Connection:"
  5650. #~ msgstr "Połączenie:"
  5651. #~ msgctxt "@label"
  5652. #~ msgid "State:"
  5653. #~ msgstr "Stan:"
  5654. #~ msgctxt "@label:MonitorStatus"
  5655. #~ msgid "Waiting for a printjob"
  5656. #~ msgstr "Oczekiwanie na zadanie drukowania"
  5657. #~ msgctxt "@label:MonitorStatus"
  5658. #~ msgid "Waiting for someone to clear the build plate"
  5659. #~ msgstr "Oczekiwanie na wyczyszczenie stołu roboczego"
  5660. #~ msgctxt "@label:MonitorStatus"
  5661. #~ msgid "Aborting print..."
  5662. #~ msgstr "Przerywanie drukowania..."
  5663. #~ msgctxt "@label"
  5664. #~ msgid "Protected profiles"
  5665. #~ msgstr "Chronione profile"
  5666. #~ msgctxt "@label"
  5667. #~ msgid "Printer Name:"
  5668. #~ msgstr "Nazwa drukarki:"
  5669. #~ msgctxt "@label"
  5670. #~ msgid "Profile:"
  5671. #~ msgstr "Profil:"
  5672. #~ msgctxt "@label:textbox"
  5673. #~ msgid "Search..."
  5674. #~ msgstr "Szukanie..."
  5675. #~ msgctxt "@action:inmenu"
  5676. #~ msgid "Collapse All"
  5677. #~ msgstr "Schowaj wszystkie"
  5678. #~ msgctxt "@action:inmenu"
  5679. #~ msgid "Expand All"
  5680. #~ msgstr "Rozwiń wszystkie"
  5681. #~ msgctxt "@label:header configurations"
  5682. #~ msgid "Available configurations"
  5683. #~ msgstr "Dostępne konfiguracje"
  5684. #~ msgctxt "@label:extruder label"
  5685. #~ msgid "Extruder"
  5686. #~ msgstr "Ekstruder"
  5687. #~ msgctxt "@label:extruder label"
  5688. #~ msgid "Yes"
  5689. #~ msgstr "Tak"
  5690. #~ msgctxt "@label:extruder label"
  5691. #~ msgid "No"
  5692. #~ msgstr "Nie"
  5693. #~ msgctxt "@label:listbox"
  5694. #~ msgid "Print Setup"
  5695. #~ msgstr "Ustawienia druku"
  5696. #~ msgctxt "@label:listbox"
  5697. #~ msgid ""
  5698. #~ "Print Setup disabled\n"
  5699. #~ "G-code files cannot be modified"
  5700. #~ msgstr ""
  5701. #~ "Konfiguracja wydruku jest wyłączona\n"
  5702. #~ "Pliki G-code nie mogą zostać zmodyfikowane"
  5703. #~ msgctxt "@label Hours and minutes"
  5704. #~ msgid "00h 00min"
  5705. #~ msgstr "00godz. 00min."
  5706. #~ msgctxt "@tooltip"
  5707. #~ msgid "Time specification"
  5708. #~ msgstr "Specyfikacja czasu"
  5709. #~ msgctxt "@label"
  5710. #~ msgid "Cost specification"
  5711. #~ msgstr "Szacowanie kosztów"
  5712. #~ msgctxt "@label"
  5713. #~ msgid "Total:"
  5714. #~ msgstr "Razem:"
  5715. #~ msgctxt "@tooltip"
  5716. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  5717. #~ msgstr "<b>Zalecana konfiguracja wydruku</b><br/><br/>Drukowanie z zalecanymi ustawieniami dla wybranej drukarki, materiału i jakości."
  5718. #~ msgctxt "@tooltip"
  5719. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  5720. #~ msgstr "<b>Niestandardowa konfiguracja wydruku</b><br/><br/>Drukowanie z precyzyjną kontrolą nad każdym elementem procesu cięcia."
  5721. #~ msgctxt "@action:inmenu menubar:help"
  5722. #~ msgid "Show Engine &Log..."
  5723. #~ msgstr "Pokaż &dziennik silnika..."
  5724. #~ msgctxt "@action:menu"
  5725. #~ msgid "Browse packages..."
  5726. #~ msgstr "Przeglądaj pakiety..."
  5727. #~ msgctxt "@action:inmenu menubar:view"
  5728. #~ msgid "Expand/Collapse Sidebar"
  5729. #~ msgstr "Rozłóż/Schowaj Pasek Boczny"
  5730. #~ msgctxt "@label:PrintjobStatus"
  5731. #~ msgid "Please load a 3D model"
  5732. #~ msgstr "Proszę załaduj model 3D"
  5733. #~ msgctxt "@label:PrintjobStatus"
  5734. #~ msgid "Ready to slice"
  5735. #~ msgstr "Gotowy do cięcia"
  5736. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  5737. #~ msgid "Ready to %1"
  5738. #~ msgstr "Gotowy do %1"
  5739. #~ msgctxt "@label:PrintjobStatus"
  5740. #~ msgid "Slicing unavailable"
  5741. #~ msgstr "Cięcie niedostępne"
  5742. #~ msgctxt "@info:tooltip"
  5743. #~ msgid "Slice current printjob"
  5744. #~ msgstr "Potnij aktualny wydruk"
  5745. #~ msgctxt "@info:tooltip"
  5746. #~ msgid "Cancel slicing process"
  5747. #~ msgstr "Przerwij proces cięcia"
  5748. #~ msgctxt "@label:Printjob"
  5749. #~ msgid "Prepare"
  5750. #~ msgstr "Przygotuj"
  5751. #~ msgctxt "@label:Printjob"
  5752. #~ msgid "Cancel"
  5753. #~ msgstr "Anuluj"
  5754. #~ msgctxt "@info:tooltip"
  5755. #~ msgid "Select the active output device"
  5756. #~ msgstr "Wybierz aktywne urządzenie wyjściowe"
  5757. #~ msgctxt "@title:menu"
  5758. #~ msgid "&View"
  5759. #~ msgstr "&Widok"
  5760. #~ msgctxt "@title:menu"
  5761. #~ msgid "&Settings"
  5762. #~ msgstr "&Ustawienia"
  5763. #~ msgctxt "@title:menu menubar:toplevel"
  5764. #~ msgid "&Toolbox"
  5765. #~ msgstr "&Narzędzia"
  5766. #~ msgctxt "@action:button"
  5767. #~ msgid "Open File"
  5768. #~ msgstr "Otwórz plik"
  5769. #~ msgctxt "@tooltip"
  5770. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  5771. #~ msgstr "Ten profil jakości nie jest dostępny dla wybranego materiału i konfiguracji dyszy. Proszę to zmienić, aby włączyć ten profil jakości"
  5772. #~ msgctxt "@label"
  5773. #~ msgid "Print Speed"
  5774. #~ msgstr "Prędkość Druku"
  5775. #~ msgctxt "@label"
  5776. #~ msgid "Slower"
  5777. #~ msgstr "Wolniej"
  5778. #~ msgctxt "@label"
  5779. #~ msgid "Faster"
  5780. #~ msgstr "Szybciej"
  5781. #~ msgctxt "@label"
  5782. #~ msgid "Enable gradual"
  5783. #~ msgstr "Włącz stopniowane"
  5784. #~ msgctxt "@label"
  5785. #~ msgid "Generate Support"
  5786. #~ msgstr "Generuj podpory"
  5787. #~ msgctxt "@label"
  5788. #~ msgid "Build Plate Adhesion"
  5789. #~ msgstr "Popraw przycz. modelu"
  5790. #~ msgctxt "@label"
  5791. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  5792. #~ msgstr "Potrzebujesz pomocy w ulepszaniu wydruków?<br>Przeczytaj <a href='%1'>instrukcje dotyczące rozwiązywania problemów</a>"
  5793. #~ msgctxt "@title:window"
  5794. #~ msgid "Engine Log"
  5795. #~ msgstr "Dziennik silnika"
  5796. #~ msgctxt "@label"
  5797. #~ msgid "Printer type"
  5798. #~ msgstr "Typ drukarki"
  5799. #~ msgctxt "@label"
  5800. #~ msgid "Use glue with this material combination"
  5801. #~ msgstr "Użyj kleju z tą kombinacją materiałów"
  5802. #~ msgctxt "@label"
  5803. #~ msgid "Check compatibility"
  5804. #~ msgstr "Sprawdź kompatybilność"
  5805. #~ msgctxt "@tooltip"
  5806. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  5807. #~ msgstr "Kliknij, aby sprawdzić zgodność materiału na Ultimaker.com."
  5808. #~ msgctxt "description"
  5809. #~ msgid "Shows changes since latest checked version."
  5810. #~ msgstr "Pokazuje zmiany od ostatniej sprawdzonej wersji."
  5811. #~ msgctxt "name"
  5812. #~ msgid "Changelog"
  5813. #~ msgstr "Lista zmian"
  5814. #~ msgctxt "description"
  5815. #~ msgid "Create a flattend quality changes profile."
  5816. #~ msgstr "Utwórz charakterystyczny profil zmiany jakości."
  5817. #~ msgctxt "name"
  5818. #~ msgid "Profile flatener"
  5819. #~ msgstr "Charakterystyka Profilu"
  5820. #~ msgctxt "description"
  5821. #~ msgid "Ask the user once if he/she agrees with our license."
  5822. #~ msgstr "Zapytaj użytkownika jednokrotnie, czy zgadza się z warunkami naszej licencji."
  5823. #~ msgctxt "name"
  5824. #~ msgid "UserAgreement"
  5825. #~ msgstr "ZgodaUżytkownika"
  5826. #~ msgctxt "@warning:status"
  5827. #~ msgid "Please generate G-code before saving."
  5828. #~ msgstr "Wygeneruj G-code przed zapisem."
  5829. #~ msgctxt "@action"
  5830. #~ msgid "Upgrade Firmware"
  5831. #~ msgstr "Uaktualnij oprogramowanie układowe"
  5832. #~ msgctxt "@label unknown material"
  5833. #~ msgid "Unknown"
  5834. #~ msgstr "Nieznany"
  5835. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5836. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  5837. #~ msgstr "Brak niestandardowego profilu do zaimportowania do pliku <filename>{0}</filename>"
  5838. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5839. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  5840. #~ msgstr "Ten profil <filename>{0}</filename> zawiera błędne dane, nie można go zaimportować."
  5841. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5842. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5843. #~ msgstr "Maszyna zdefiniowana w profilu <filename>{0}</filename> ({1}) nie zgadza się z obecnie wybraną maszyną ({2}), nie można tego zaimportować."
  5844. #~ msgctxt "@title:window"
  5845. #~ msgid "Confirm uninstall "
  5846. #~ msgstr "Potwierdź odinstalowanie "
  5847. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  5848. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  5849. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  5850. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  5851. #~ msgid "%1m / ~ %2g"
  5852. #~ msgstr "%1m / ~ %2g"
  5853. #~ msgctxt "@title"
  5854. #~ msgid "Upgrade Firmware"
  5855. #~ msgstr "Uaktualnij oprogramowanie"
  5856. #~ msgctxt "@action:button"
  5857. #~ msgid "Print with Doodle3D WiFi-Box"
  5858. #~ msgstr "Drukuj z Doodle3D WiFi-Box"
  5859. #~ msgctxt "@properties:tooltip"
  5860. #~ msgid "Print with Doodle3D WiFi-Box"
  5861. #~ msgstr "Drukuj z Doodle3D WiFi-Box"
  5862. #~ msgctxt "@info:status"
  5863. #~ msgid "Connecting to Doodle3D Connect"
  5864. #~ msgstr "Łączenie z Doodle3D Connect"
  5865. #~ msgctxt "@info:status"
  5866. #~ msgid "Sending data to Doodle3D Connect"
  5867. #~ msgstr "Wysyłanie danych do Doodle3D Connect"
  5868. #~ msgctxt "@info:status"
  5869. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  5870. #~ msgstr "Nie można wysłać danych do Doodle3D Connect. Czy inne zadanie jest aktywne?"
  5871. #~ msgctxt "@info:status"
  5872. #~ msgid "Storing data on Doodle3D Connect"
  5873. #~ msgstr "Przetrzymywanie danych na Doodle3D Connect"
  5874. #~ msgctxt "@info:status"
  5875. #~ msgid "File sent to Doodle3D Connect"
  5876. #~ msgstr "Plik wysłany do Doodle3D Connect"
  5877. #~ msgctxt "@action:button"
  5878. #~ msgid "Open Connect..."
  5879. #~ msgstr "Otwórz Connect..."
  5880. #~ msgctxt "@info:tooltip"
  5881. #~ msgid "Open the Doodle3D Connect web interface"
  5882. #~ msgstr "Otwórz interfejs Doodle3D Connect"
  5883. #~ msgctxt "@item:inlistbox"
  5884. #~ msgid "Blender file"
  5885. #~ msgstr "Plik Blender"
  5886. #~ msgctxt "@info:status"
  5887. #~ msgid ""
  5888. #~ "Could not export using \"{}\" quality!\n"
  5889. #~ "Felt back to \"{}\"."
  5890. #~ msgstr ""
  5891. #~ "Nie można wyeksportować używając \"{}\" jakości!\n"
  5892. #~ "Powrócono do \"{}\"."
  5893. #~ msgctxt "@label"
  5894. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  5895. #~ msgstr "Ta drukarka nie jest skonfigurowana do zarządzania grupą drukarek Ultimaker 3."
  5896. #~ msgctxt "@label"
  5897. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  5898. #~ msgstr "Ta drukarka jest gospodarzem grupy %1 drukarek Ultimaker 3."
  5899. #~ msgctxt "@label: arg 1 is group name"
  5900. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  5901. #~ msgstr "%1 nie została ustawiona do hostowania grupy podłączonych drukarek Ultimaker 3"
  5902. #~ msgctxt "@label link to connect manager"
  5903. #~ msgid "Add/Remove printers"
  5904. #~ msgstr "Dodaj/Usuń drukarki"
  5905. #~ msgctxt "@info:tooltip"
  5906. #~ msgid "Opens the print jobs page with your default web browser."
  5907. #~ msgstr "Otwiera stronę zadań drukowania w twojej domyślnej przeglądarce sieciowej."
  5908. #~ msgctxt "@action:button"
  5909. #~ msgid "View print jobs"
  5910. #~ msgstr "Zobacz zadania drukowania"
  5911. #~ msgctxt "@label:status"
  5912. #~ msgid "Preparing to print"
  5913. #~ msgstr "Przygotowywanie do drukowania"
  5914. #~ msgctxt "@label:status"
  5915. #~ msgid "Available"
  5916. #~ msgstr "Dostępna"
  5917. #~ msgctxt "@label:status"
  5918. #~ msgid "Lost connection with the printer"
  5919. #~ msgstr "Utracono połączenie z drukarką"
  5920. #~ msgctxt "@label:status"
  5921. #~ msgid "Unknown"
  5922. #~ msgstr "Nieznane"
  5923. #~ msgctxt "@label:status"
  5924. #~ msgid "Disabled"
  5925. #~ msgstr "Wyłączona"
  5926. #~ msgctxt "@label:status"
  5927. #~ msgid "Reserved"
  5928. #~ msgstr "Zajęta"
  5929. #~ msgctxt "@label"
  5930. #~ msgid "Preparing to print"
  5931. #~ msgstr "Przygotowywanie do druku"
  5932. #~ msgctxt "@label:status"
  5933. #~ msgid "Print aborted"
  5934. #~ msgstr "Drukowanie zostaje przerwane"
  5935. #~ msgctxt "@label"
  5936. #~ msgid "Not accepting print jobs"
  5937. #~ msgstr "Nie akceptuje zadań drukowania"
  5938. #~ msgctxt "@label"
  5939. #~ msgid "Finishes at: "
  5940. #~ msgstr "Wykończenia na: "
  5941. #~ msgctxt "@label"
  5942. #~ msgid "Clear build plate"
  5943. #~ msgstr "Oczyść platformę roboczą"
  5944. #~ msgctxt "@label"
  5945. #~ msgid "Waiting for configuration change"
  5946. #~ msgstr "Oczekuje na zmianę konfiguracji"
  5947. #~ msgctxt "@title"
  5948. #~ msgid "Print jobs"
  5949. #~ msgstr "Zadania drukowania"
  5950. #~ msgctxt "@label:title"
  5951. #~ msgid "Printers"
  5952. #~ msgstr "Drukarki"
  5953. #~ msgctxt "@action:button"
  5954. #~ msgid "View printers"
  5955. #~ msgstr "Zobacz drukarki"
  5956. #~ msgctxt "@label:"
  5957. #~ msgid "Pause"
  5958. #~ msgstr "Wstrzymaj"
  5959. #~ msgctxt "@label:"
  5960. #~ msgid "Resume"
  5961. #~ msgstr "Wznów"
  5962. #~ msgctxt "@label:"
  5963. #~ msgid "Abort Print"
  5964. #~ msgstr "Przerwij wydruk"
  5965. #~ msgctxt "@option:openProject"
  5966. #~ msgid "Always ask"
  5967. #~ msgstr "Zawsze pytaj"
  5968. #~ msgctxt "@label"
  5969. #~ msgid "Override Profile"
  5970. #~ msgstr "Nadpisz profil"
  5971. #~ msgctxt "@info:tooltip"
  5972. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  5973. #~ msgstr "Czy nowo załadowane modele powinny zostać rozłożone na platformie roboczej? Używane w połączeniu z multi platformą roboczą (EKSPERYMENTALNE)"
  5974. #~ msgctxt "@option:check"
  5975. #~ msgid "Do not arrange objects on load"
  5976. #~ msgstr "Nie układaj obiektów podczas ładowania"
  5977. #~ msgctxt "@action:inmenu menubar:file"
  5978. #~ msgid "&Save Selection to File"
  5979. #~ msgstr "Z&apisz wybór w pliku"
  5980. #~ msgctxt "@title:menu menubar:file"
  5981. #~ msgid "Save &As..."
  5982. #~ msgstr "Zapisz &jako..."
  5983. #~ msgctxt "@title:menu menubar:file"
  5984. #~ msgid "Save &Project..."
  5985. #~ msgstr "Zapisz &Project..."
  5986. #~ msgctxt "description"
  5987. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  5988. #~ msgstr "Akceptuje G-Code i wysyła go przez WiFi do Doodle3D WiFi-Box."
  5989. #~ msgctxt "name"
  5990. #~ msgid "Doodle3D WiFi-Box"
  5991. #~ msgstr "Doodle3D WiFi-Box"
  5992. #~ msgctxt "description"
  5993. #~ msgid "Provides an edit window for direct script editing."
  5994. #~ msgstr "Zapewnia okno edycji dla bezpośredniego edytowania skryptów."
  5995. #~ msgctxt "name"
  5996. #~ msgid "Live scripting tool"
  5997. #~ msgstr "Narzędzie pisania skryptów na żywo."
  5998. #~ msgctxt "description"
  5999. #~ msgid "Helps to open Blender files directly in Cura."
  6000. #~ msgstr "Pomaga w otwieraniu plików Blender bezpośrednio w Cura."
  6001. #~ msgctxt "name"
  6002. #~ msgid "Blender Integration (experimental)"
  6003. #~ msgstr "Integracja z Blenderem (eksperymentalny)"
  6004. #~ msgctxt "@info:title"
  6005. #~ msgid "Model Checker Warning"
  6006. #~ msgstr "Ostrzeżenie Sprawdzacza Modelu"
  6007. #~ msgctxt "@info:status"
  6008. #~ msgid ""
  6009. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6010. #~ "Tips that may be useful to improve the print quality:\n"
  6011. #~ "1) Use rounded corners.\n"
  6012. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6013. #~ "3) Use a different material."
  6014. #~ msgstr ""
  6015. #~ "Niektóre modele nie będą drukowane optymalnie z powodu rozmiaru obiektu i wybranych materiałów dla modeli: {model_names}.\n"
  6016. #~ "Porady, które mogą się przydać, aby poprawić jakość wydruku:\n"
  6017. #~ "1) Używaj zaokrąglonych narożników.\n"
  6018. #~ "2) Wyłącz wentylator (tylko jeśli model nie ma małych detali).\n"
  6019. #~ "3) Użyj innego materiału."
  6020. #~ msgctxt "@info:status"
  6021. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6022. #~ msgstr "SolidWorks zgłosił błędy podczas otwierania twojego pliku. Zalecamy rozwiązanie tych problemów w samym SolidWorks."
  6023. #~ msgctxt "@info:status"
  6024. #~ msgid ""
  6025. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6026. #~ "\n"
  6027. #~ "Thanks!"
  6028. #~ msgstr ""
  6029. #~ "Nie znaleziono modeli wewnątrz twojego rysunku. Czy mógłbyś sprawdzić jego zawartość ponownie i upewnić się, że znajduje się tam jedna część lub złożenie?\n"
  6030. #~ "\n"
  6031. #~ "Dziękuję!."
  6032. #~ msgctxt "@info:status"
  6033. #~ msgid ""
  6034. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6035. #~ "\n"
  6036. #~ "Sorry!"
  6037. #~ msgstr ""
  6038. #~ "Znaleziono więcej niż jedną część lub złożenie wewnątrz rysunku. Obecnie obsługujemy tylko rysunki z dokładnie jedną częścią lub złożeniem.\n"
  6039. #~ "\n"
  6040. #~ "Przepraszamy!"
  6041. #~ msgctxt "@item:inlistbox"
  6042. #~ msgid "SolidWorks part file"
  6043. #~ msgstr "Plik części SolidWorks"
  6044. #~ msgctxt "@item:inlistbox"
  6045. #~ msgid "SolidWorks assembly file"
  6046. #~ msgstr "Plik złożenia SolidWorks"
  6047. #~ msgctxt "@item:inlistbox"
  6048. #~ msgid "SolidWorks drawing file"
  6049. #~ msgstr "Plik rysunku SolidWorks"
  6050. #~ msgctxt "@info:status"
  6051. #~ msgid ""
  6052. #~ "Dear customer,\n"
  6053. #~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n"
  6054. #~ "\n"
  6055. #~ "With kind regards\n"
  6056. #~ " - Thomas Karl Pietrowski"
  6057. #~ msgstr ""
  6058. #~ "Szanowny kliencie,\n"
  6059. #~ "Nie mogliśmy znaleźć poprawnej instalacji SolidWorks w twoim systemie. To oznacza, że albo nie masz zainstalowanego SolidWorks, albo nie masz ważnej licencji. Proszę upewnić się, że uruchomiony SolidWorks działa bez żadnych problemów i/lub skontaktuj się z ICT.\n"
  6060. #~ "\n"
  6061. #~ "Z wyrazami szacunku,\n"
  6062. #~ " - Thomas Karl Pietrowski"
  6063. #~ msgctxt "@info:status"
  6064. #~ msgid ""
  6065. #~ "Dear customer,\n"
  6066. #~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n"
  6067. #~ "\n"
  6068. #~ "With kind regards\n"
  6069. #~ " - Thomas Karl Pietrowski"
  6070. #~ msgstr ""
  6071. #~ "Szanowny kliencie,\n"
  6072. #~ "Używasz aktualnie tego pluginu na innym systemie niż Windows. Ten plugin działa tylko w Windows razem z zainstalowanym SolidWorks, włączając w to poprawną licencję. Proszę zainstalować ten plugin na maszynie z systemem Windows z zainstalowanym SolidWorks.\n"
  6073. #~ "Z wyrazami szacunku,\n"
  6074. #~ " - Thomas Karl Pietrowski"
  6075. #~ msgid "Configure"
  6076. #~ msgstr "Konfiguruj"
  6077. #~ msgid "Installation guide for SolidWorks macro"
  6078. #~ msgstr "Instalacja poradnika dla skrótów SolidWorks"
  6079. #~ msgctxt "@action:button"
  6080. #~ msgid "Disable"
  6081. #~ msgstr "Wyłącz"
  6082. #~ msgctxt "@action:tooltip"
  6083. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  6084. #~ msgstr "Nie zezwalaj Cura na wysyłanie anonimowych danych statystycznych. Możesz to włączyć ponownie w preferencjach."
  6085. #~ msgid "Install"
  6086. #~ msgstr "Zainstaluj"
  6087. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  6088. #~ msgstr "Nie udało się skopiować plików pluginu Siemens NX. Proszę sprawdź twój UGII_USER_DIR. Nie jest ustawiony do folderu."
  6089. #~ msgid "Successfully installed Siemens NX Cura plugin."
  6090. #~ msgstr "Udało się zainstalować plugin Cura Siemens NX."
  6091. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  6092. #~ msgstr "Nie udało się skopiować plików pluginu Siemens NX. Proszę sprawdź twój UGII_USER_DIR."
  6093. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  6094. #~ msgstr "Nie udało się zainstalować pluginu Siemens NX. Nie można ustawić zmiennej środowiskowej UGII_USER_DIR dla Siemens NX."
  6095. #~ msgctxt "@info:status"
  6096. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  6097. #~ msgstr "Nie udało się uzyskać ID wtyczki z <filename>{0}</filename>"
  6098. #~ msgctxt "@info:tile"
  6099. #~ msgid "Warning"
  6100. #~ msgstr "Ostrzeżenie"
  6101. #~ msgctxt "@window:title"
  6102. #~ msgid "Plugin browser"
  6103. #~ msgstr "Przeglądarka wtyczek"
  6104. #~ msgctxt "@label"
  6105. #~ msgid "Ultimaker 3"
  6106. #~ msgstr "Ultimaker 3"
  6107. #~ msgctxt "@label"
  6108. #~ msgid "Ultimaker 3 Extended"
  6109. #~ msgstr "Ultimaker 3 Extended"
  6110. #~ msgctxt "@title:window"
  6111. #~ msgid "SolidWorks: Export wizard"
  6112. #~ msgstr "SolidWorks: Kreator eksportu"
  6113. #~ msgctxt "@action:label"
  6114. #~ msgid "Quality:"
  6115. #~ msgstr "Jakość:"
  6116. #~ msgctxt "@option:curaSolidworksStlQuality"
  6117. #~ msgid "Fine (3D-printing)"
  6118. #~ msgstr "Dobra (druk 3D)"
  6119. #~ msgctxt "@option:curaSolidworksStlQuality"
  6120. #~ msgid "Coarse (3D-printing)"
  6121. #~ msgstr "Słaba (druk 3D)"
  6122. #~ msgctxt "@option:curaSolidworksStlQuality"
  6123. #~ msgid "Fine (SolidWorks)"
  6124. #~ msgstr "Dobra (SolidWorks)"
  6125. #~ msgctxt "@option:curaSolidworksStlQuality"
  6126. #~ msgid "Coarse (SolidWorks)"
  6127. #~ msgstr "Słaba (Solidworks)"
  6128. #~ msgctxt "@text:window"
  6129. #~ msgid "Show this dialog again"
  6130. #~ msgstr "Pokaż to okno ponownie"
  6131. #~ msgctxt "@action:button"
  6132. #~ msgid "Continue"
  6133. #~ msgstr "Kontynuuj"
  6134. #~ msgctxt "@action:button"
  6135. #~ msgid "Abort"
  6136. #~ msgstr "Przerwij"
  6137. #~ msgctxt "@title:window"
  6138. #~ msgid "How to install Cura SolidWorks macro"
  6139. #~ msgstr "Jak zainstalować skróty SolidWorks dla Cura"
  6140. #~ msgctxt "@description:label"
  6141. #~ msgid "Steps:"
  6142. #~ msgstr "Kroki:"
  6143. #~ msgctxt "@action:button"
  6144. #~ msgid ""
  6145. #~ "Open the directory\n"
  6146. #~ "with macro and icon"
  6147. #~ msgstr ""
  6148. #~ "Otwórz folder\n"
  6149. #~ "ze skrótem i ikoną"
  6150. #~ msgctxt "@description:label"
  6151. #~ msgid "Instructions:"
  6152. #~ msgstr "Instrukcje:"
  6153. #~ msgctxt "@action:playpause"
  6154. #~ msgid "Play"
  6155. #~ msgstr "Odtwórz"
  6156. #~ msgctxt "@action:playpause"
  6157. #~ msgid "Pause"
  6158. #~ msgstr "Zatrzymaj"
  6159. #~ msgctxt "@action:button"
  6160. #~ msgid "Previous Step"
  6161. #~ msgstr "Poprzedni Krok"
  6162. #~ msgctxt "@action:button"
  6163. #~ msgid "Done"
  6164. #~ msgstr "Zrobione"
  6165. #~ msgctxt "@action:button"
  6166. #~ msgid "Next Step"
  6167. #~ msgstr "Następny Krok"
  6168. #~ msgctxt "@title:window"
  6169. #~ msgid "SolidWorks plugin: Configuration"
  6170. #~ msgstr "Plugin SolidWorks: Konfiguracja"
  6171. #~ msgctxt "@title:tab"
  6172. #~ msgid "Conversion settings"
  6173. #~ msgstr "Konwersja ustawień"
  6174. #~ msgctxt "@label"
  6175. #~ msgid "First choice:"
  6176. #~ msgstr "Pierwszy wybór:"
  6177. #~ msgctxt "@text:menu"
  6178. #~ msgid "Latest installed version (Recommended)"
  6179. #~ msgstr "Ostatnio zainstalowana wersja (Rekomendowana)"
  6180. #~ msgctxt "@text:menu"
  6181. #~ msgid "Default version"
  6182. #~ msgstr "Domyślna wersja"
  6183. #~ msgctxt "@label"
  6184. #~ msgid "Show wizard before opening SolidWorks files"
  6185. #~ msgstr "Pokaż konfigurator przed otworzeniem plików SolidWorks"
  6186. #~ msgctxt "@label"
  6187. #~ msgid "Automatically rotate opened file into normed orientation"
  6188. #~ msgstr "Automatycznie obracaj otworzone pliki do unormowanej pozycji"
  6189. #~ msgctxt "@title:tab"
  6190. #~ msgid "Installation(s)"
  6191. #~ msgstr "Instalacja(-e)"
  6192. #~ msgctxt "@label"
  6193. #~ msgid "COM service found"
  6194. #~ msgstr "Usługa COM znaleziona"
  6195. #~ msgctxt "@label"
  6196. #~ msgid "Executable found"
  6197. #~ msgstr "Znaleziono plik wykonywalny"
  6198. #~ msgctxt "@label"
  6199. #~ msgid "COM starting"
  6200. #~ msgstr "Uruchamianie COM"
  6201. #~ msgctxt "@label"
  6202. #~ msgid "Revision number"
  6203. #~ msgstr "Numer wydania"
  6204. #~ msgctxt "@label"
  6205. #~ msgid "Functions available"
  6206. #~ msgstr "Dostępne funkcje"
  6207. #~ msgctxt "@label (%1 is object name)"
  6208. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  6209. #~ msgstr "Nowa średnica materiał jest ustawiona na %1 mm, co nie jest kompatybilne z obecną maszyną. Czy chciałbyś kontynuować?"
  6210. #~ msgctxt "@action:menu"
  6211. #~ msgid "Browse plugins..."
  6212. #~ msgstr "Przeglądaj wtyczki..."
  6213. #~ msgctxt "@title:menu menubar:toplevel"
  6214. #~ msgid "P&lugins"
  6215. #~ msgstr "W&tyczki"
  6216. #~ msgctxt "@window:title"
  6217. #~ msgid "Install Plugin"
  6218. #~ msgstr "Zainstaluj Wtyczkę"
  6219. #~ msgctxt "description"
  6220. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6221. #~ msgstr "Zapewnia możliwość zmiany ustawień maszyny (tj. obszaru roboczego, rozmiaru dyszy itd.)"
  6222. #~ msgctxt "description"
  6223. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6224. #~ msgstr "Zarządza połączeniem sieciowym z drukarką Ultimaker 3"
  6225. #~ msgctxt "description"
  6226. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  6227. #~ msgstr "Daje Tobie możliwość otwierania plików używają samego SolidWorks. Konwersja jest wykonywana przez ten plugin i dodatkowo optymalizowana."
  6228. #~ msgctxt "name"
  6229. #~ msgid "SolidWorks Integration"
  6230. #~ msgstr "Integracja z SolidWorks"
  6231. #~ msgctxt "description"
  6232. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6233. #~ msgstr "Automatycznie zapisuje Preferencje, Maszyny i Profile po zmianie."
  6234. #~ msgctxt "name"
  6235. #~ msgid "Auto Save"
  6236. #~ msgstr "Auto Zapis"
  6237. #~ msgctxt "description"
  6238. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  6239. #~ msgstr "Pomaga zainstalować przycisk 'eksportuj do Cura' w Siemens NX."
  6240. #~ msgctxt "name"
  6241. #~ msgid "Siemens NX Integration"
  6242. #~ msgstr "Integracja z Siemens NX"
  6243. #~ msgctxt "description"
  6244. #~ msgid "Find, manage and install new plugins."
  6245. #~ msgstr "Szuka, zarządza i instaluje nowe wtyczki."
  6246. #~ msgctxt "name"
  6247. #~ msgid "Plugin Browser"
  6248. #~ msgstr "Przeglądarka Wtyczek"
  6249. #~ msgctxt "description"
  6250. #~ msgid "Ask the user once if he/she agrees with our license"
  6251. #~ msgstr "Pyta użytkownika czy zgadza się z naszą licencją"
  6252. #~ msgctxt "description"
  6253. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6254. #~ msgstr "Zapewnia czynności maszyny dla maszyn Ultimaker (tj. poziomowanie stołu, wybór ulepszeń, itd.)"
  6255. #~ msgctxt "@item:inlistbox"
  6256. #~ msgid "GCode File"
  6257. #~ msgstr "Plik GCode"
  6258. #~ msgctxt "@info:status"
  6259. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  6260. #~ msgstr "Nie można uruchomić nowego zadania, ponieważ drukarka jest zajęta lub nie jest podłączona."
  6261. #~ msgctxt "@info:title"
  6262. #~ msgid "Printer Unavailable"
  6263. #~ msgstr "Drukarka Niedostępna"
  6264. #~ msgctxt "@info:status"
  6265. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  6266. #~ msgstr "Ta drukarka nie obsługuje drukowania USB, ponieważ korzysta z UltiGCode."
  6267. #~ msgctxt "@info:title"
  6268. #~ msgid "USB Printing"
  6269. #~ msgstr "Drukowanie przez USB"
  6270. #~ msgctxt "@info:status"
  6271. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  6272. #~ msgstr "Nie można uruchomić nowego zadania, ponieważ drukarka nie obsługuje drukowania poprzez USB."
  6273. #~ msgctxt "@info"
  6274. #~ msgid "Unable to update firmware because there are no printers connected."
  6275. #~ msgstr "Nie można zaktualizować oprogramowania, ponieważ nie ma podłączonych drukarek."
  6276. #~ msgctxt "@info"
  6277. #~ msgid "Could not find firmware required for the printer at %s."
  6278. #~ msgstr "Nie znaleziono oprogramowania wymaganego dla drukarki w %s."
  6279. #~ msgctxt "@info:title"
  6280. #~ msgid "Printer Firmware"
  6281. #~ msgstr "Oprogramowanie Drukarki"
  6282. #~ msgctxt "@info:title"
  6283. #~ msgid "Connection status"
  6284. #~ msgstr "Status połączenia"
  6285. #~ msgctxt "@info:title"
  6286. #~ msgid "Connection Status"
  6287. #~ msgstr "Status połączenia"
  6288. #~ msgctxt "@info:status"
  6289. #~ msgid "Access request was denied on the printer."
  6290. #~ msgstr "Żądanie dostępu zostało odrzucone na drukarce."
  6291. #~ msgctxt "@info:status"
  6292. #~ msgid "Access request failed due to a timeout."
  6293. #~ msgstr "Żądanie dostępu nie powiodło się z powodu limitu czasu."
  6294. #~ msgctxt "@info:status"
  6295. #~ msgid "The connection with the network was lost."
  6296. #~ msgstr "Połączenie z siecią zostało utracone."
  6297. #~ msgctxt "@info:status"
  6298. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  6299. #~ msgstr "Połączenie z drukarką zostało utracone. Sprawdź, czy drukarka jest podłączona."
  6300. #~ msgctxt "@info:status"
  6301. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  6302. #~ msgstr "Nie można uruchomić nowego zadania, drukarka jest zajęta. Aktualny stan drukarki to %s."
  6303. #~ msgctxt "@info:title"
  6304. #~ msgid "Printer Status"
  6305. #~ msgstr "Status Drukarki"
  6306. #~ msgctxt "@info:status"
  6307. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  6308. #~ msgstr "Nie można uruchomić nowego zadania. Brak Printcore w slocie {0}"
  6309. #~ msgctxt "@info:status"
  6310. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  6311. #~ msgstr "Nie można uruchomić nowego zadania. Brak materiału w slocie {0}"
  6312. #~ msgctxt "@label"
  6313. #~ msgid "Not enough material for spool {0}."
  6314. #~ msgstr "Nie ma wystarczającej ilości materiału na szpuli {0}."
  6315. #~ msgctxt "@label"
  6316. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6317. #~ msgstr "Różne PrintCore (Cura: {0}, Drukarka: {1}) wybrane dla ekstrudera {2}"
  6318. #~ msgctxt "@label"
  6319. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6320. #~ msgstr "PrintCore {0} nie jest poprawnie skalibrowany. Kalibracja XY musi zostać wykonana na tej drukarce."
  6321. #~ msgctxt "@info:status"
  6322. #~ msgid "Unable to send data to printer. Is another job still active?"
  6323. #~ msgstr "Nie można wysłać danych do drukarki. Czy inna praca jest nadal aktywna?"
  6324. #~ msgctxt "@label:MonitorStatus"
  6325. #~ msgid "Print aborted. Please check the printer"
  6326. #~ msgstr "Wydruk został przerwany. Sprawdź drukarkę"
  6327. #~ msgctxt "@label:MonitorStatus"
  6328. #~ msgid "Pausing print..."
  6329. #~ msgstr "Wstrzymywanie drukowania..."
  6330. #~ msgctxt "@label:MonitorStatus"
  6331. #~ msgid "Resuming print..."
  6332. #~ msgstr "Wznawianie drukowania ..."
  6333. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  6334. #~ msgstr "Ta drukarka nie jest skonfigurowana do zarządzania grupą podłączonych drukarek Ultimaker 3."
  6335. #~ msgctxt "Count is number of printers."
  6336. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  6337. #~ msgstr "Ta drukarka jest gospodarzem grupy {count} podłączonych drukarek Ultimaker 3."
  6338. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  6339. #~ msgstr "{printer_name} skończyła drukowanie '{job_name}'. Proszę zabrać wydruk i potwierdzić oczyszczenie platformy roboczej."
  6340. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  6341. #~ msgstr "{printer_name} jest zarezerwowana do druku '{job_name}'. Proszę zmień konfigurację drukarki, żeby pasowała do zadania dla niej, aby rozpocząć drukowanie."
  6342. #~ msgctxt "@info:status"
  6343. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  6344. #~ msgstr "Nie można wysłać nowego zadania: ta drukarka 3D nie jest (jeszcze) ustawiona jako gospodarz grupy podłączonych drukarek Ultimaker 3."
  6345. #~ msgctxt "@info:status"
  6346. #~ msgid "Unable to send print job to group {cluster_name}."
  6347. #~ msgstr "Nie można wysłać zadania do grupy {cluster_name}."
  6348. #~ msgctxt "@info:status"
  6349. #~ msgid "Sent {file_name} to group {cluster_name}."
  6350. #~ msgstr "Wysłano {file_name} do grupy {cluster_name}."
  6351. #~ msgctxt "@action:button"
  6352. #~ msgid "Show print jobs"
  6353. #~ msgstr "Pokaż zadania druku"
  6354. #~ msgctxt "@info:tooltip"
  6355. #~ msgid "Opens the print jobs interface in your browser."
  6356. #~ msgstr "Otwiera interfejs zadań druku w przeglądarce."
  6357. #~ msgctxt "@label Printer name"
  6358. #~ msgid "Unknown"
  6359. #~ msgstr "Nieznana"
  6360. #~ msgctxt "@info:progress"
  6361. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  6362. #~ msgstr "Wysyłanie <filename>{file_name}</filename> do grupy {cluster_name}"
  6363. #~ msgctxt "@info:status"
  6364. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6365. #~ msgstr "SolidWorks zgłosił błędy podczas otwierania twojego pliku. Zalecamy rozwiązanie tego problemu w samym SolidWorksie."
  6366. #~ msgctxt "@info:status"
  6367. #~ msgid ""
  6368. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  6369. #~ "\n"
  6370. #~ " Thanks!."
  6371. #~ msgstr ""
  6372. #~ "Nie znaleziono modeli wewnątrz twojego rysunku. Czy mógłbyś sprawdzić jego zawartość ponownie i upewnić się, że znajduje się tam jedna część lub złożenie?\n"
  6373. #~ "\n"
  6374. #~ "Dziękuję!."
  6375. #~ msgctxt "@info:status"
  6376. #~ msgid ""
  6377. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6378. #~ "\n"
  6379. #~ "Sorry!"
  6380. #~ msgstr ""
  6381. #~ "Znaleziono więcej niż jedną część lub złożenie wewnątrz rysunku. Obecnie obsługujemy tylko rysunki z dokładnie jedną częścią lub złożeniem.\n"
  6382. #~ "\n"
  6383. #~ "Przepraszamy!"
  6384. #~ msgctxt "@item:material"
  6385. #~ msgid "No material loaded"
  6386. #~ msgstr "Nie załadowano materiału"
  6387. #~ msgctxt "@item:material"
  6388. #~ msgid "Unknown material"
  6389. #~ msgstr "Nieznany materiał"
  6390. #~ msgctxt "@info:status Has a cancel button next to it."
  6391. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  6392. #~ msgstr "Wybrana średnica materiału powoduje, że materiał jest niekompatybilny z obecną drukarką."
  6393. #~ msgctxt "@action:button"
  6394. #~ msgid "Undo"
  6395. #~ msgstr "Cofnij"
  6396. #~ msgctxt "@action"
  6397. #~ msgid "Undo changing the material diameter."
  6398. #~ msgstr "Cofnij zmianę średnicy materiału."
  6399. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6400. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  6401. #~ msgstr "Maszyna zdefiniowana w profilu <filename>{0}</filename> nie zgadza się z obecnie wybraną maszyną, nie można zaimportować."
  6402. #~ msgctxt "@label crash message"
  6403. #~ msgid ""
  6404. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6405. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6406. #~ " "
  6407. #~ msgstr ""
  6408. #~ "<p><b>Wystąpił błąd krytyczny. Proszę wysłać do nas ten Raport Błędu, aby rozwiązać ten problem</p></b>\n"
  6409. #~ " <p>Proszę użyć przycisku \"Wyślij raport\" aby wysłać raport automatycznie na nasze serwery</p>\n"
  6410. #~ " "
  6411. #~ msgctxt "@label"
  6412. #~ msgid "not yet initialised<br/>"
  6413. #~ msgstr "jeszcze nie uruchomiono<br/>"
  6414. #~ msgctxt "@label"
  6415. #~ msgid "Gcode flavor"
  6416. #~ msgstr "Wersja Gcode"
  6417. #~ msgctxt "@label"
  6418. #~ msgid "Start Gcode"
  6419. #~ msgstr "Początk. Gcode"
  6420. #~ msgctxt "@tooltip"
  6421. #~ msgid "Gcode commands to be executed at the very start."
  6422. #~ msgstr "Komendy Gcode wykonywane na samym początku."
  6423. #~ msgctxt "@label"
  6424. #~ msgid "End Gcode"
  6425. #~ msgstr "Końcowy Gcode"
  6426. #~ msgctxt "@tooltip"
  6427. #~ msgid "Gcode commands to be executed at the very end."
  6428. #~ msgstr "Komendy Gcode wykonywane na samym początku."
  6429. #~ msgctxt "@label"
  6430. #~ msgid "Extruder Start Gcode"
  6431. #~ msgstr "Początkowy Gcode ekstrudera"
  6432. #~ msgctxt "@label"
  6433. #~ msgid "Extruder End Gcode"
  6434. #~ msgstr "Końcowy Gcode ekstrudera"
  6435. #~ msgctxt "@label"
  6436. #~ msgid "Starting firmware update, this may take a while."
  6437. #~ msgstr "Uruchamianie aktualizacji oprogramowania, to może potrwać chwilę."
  6438. #~ msgctxt "@label"
  6439. #~ msgid "Unknown error code: %1"
  6440. #~ msgstr "Nieznany kod błędu: %1"
  6441. #~ msgctxt "@label Printer name"
  6442. #~ msgid "Ultimaker 3"
  6443. #~ msgstr "Ultimaker 3"
  6444. #~ msgctxt "@label Printer name"
  6445. #~ msgid "Ultimaker 3 Extended"
  6446. #~ msgstr "Ultimaker 3 Extended"
  6447. #~ msgctxt "@label Printer status"
  6448. #~ msgid "Unknown"
  6449. #~ msgstr "Nieznany"
  6450. #~ msgctxt "@title:window"
  6451. #~ msgid "Find & Update plugins"
  6452. #~ msgstr "Znajdź i Zaktualizuj Wtyczki"
  6453. #~ msgctxt "@label"
  6454. #~ msgid "Here you can find a list of Third Party plugins."
  6455. #~ msgstr "Tutaj możesz znaleźć listę wtyczek innych firm."
  6456. #~ msgctxt "@action:button"
  6457. #~ msgid "Upgrade"
  6458. #~ msgstr "Ulepsz"
  6459. #~ msgctxt "@action:button"
  6460. #~ msgid "Download"
  6461. #~ msgstr "Pobierz"
  6462. #~ msgctxt "@info:tooltip"
  6463. #~ msgid "Show caution message in gcode reader."
  6464. #~ msgstr "Pokaż komunikat ostrzegawczy w tekście G-code."
  6465. #~ msgctxt "@option:check"
  6466. #~ msgid "Caution message in gcode reader"
  6467. #~ msgstr "Komunikat ostrzegawczy w tekście G-code"
  6468. #~ msgctxt "@window:title"
  6469. #~ msgid "Import Profile"
  6470. #~ msgstr "Importuj Profil"
  6471. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  6472. #~ msgid "Printer: %1, %2: %3"
  6473. #~ msgstr "Drukarka: %1, %2: %3"
  6474. #~ msgctxt "@action:label %1 is printer name"
  6475. #~ msgid "Printer: %1"
  6476. #~ msgstr "Drukarka: %1"
  6477. #~ msgctxt "@label"
  6478. #~ msgid "GCode generator"
  6479. #~ msgstr "Generator GCode"
  6480. #~ msgctxt "@action:menu"
  6481. #~ msgid "Configure setting visiblity..."
  6482. #~ msgstr "Skonfiguruj widoczność ustawień..."
  6483. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  6484. #~ msgid "Automatic: %1"
  6485. #~ msgstr "Automatyczny: %1"
  6486. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  6487. #~ msgid "Automatic: %1"
  6488. #~ msgstr "Automatyczny: %1"
  6489. #~ msgctxt "@info:status"
  6490. #~ msgid "No printer connected"
  6491. #~ msgstr "Nie podłączono drukarki"
  6492. #~ msgctxt "@tooltip"
  6493. #~ msgid "The current temperature of this extruder."
  6494. #~ msgstr "Bieżąca temperatura głowicy drukującej."
  6495. #~ msgctxt "@action:menu"
  6496. #~ msgid "Installed plugins..."
  6497. #~ msgstr "Zainstalowane wtyczki..."
  6498. #~ msgctxt "@label"
  6499. #~ msgid "Support Extruder"
  6500. #~ msgstr "Ekstruder od podpór"
  6501. #~ msgctxt "description"
  6502. #~ msgid "Writes GCode to a file."
  6503. #~ msgstr "Zapisuje Gcode do pliku."
  6504. #~ msgctxt "name"
  6505. #~ msgid "GCode Writer"
  6506. #~ msgstr "GCode Writer"
  6507. #~ msgctxt "name"
  6508. #~ msgid "GCode Profile Reader"
  6509. #~ msgstr "Czytnik Profili GCode"
  6510. #~ msgctxt "@info:status"
  6511. #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!"
  6512. #~ msgstr "Wystąpił błąd podczas otwierania pliku SolidWorks! Proszę sprawdź, czy możesz otworzyć plik SolidWorks bez żadnych problemów!"
  6513. #~ msgctxt "@info:status"
  6514. #~ msgid "Error while starting %s!"
  6515. #~ msgstr "Błąd podczas rozpoczynania %s!"
  6516. #~ msgctxt "@item:inlistbox"
  6517. #~ msgid "Simulation view"
  6518. #~ msgstr "Widok symulacji"
  6519. #~ msgctxt "@info"
  6520. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  6521. #~ msgstr "Cura zbiera anonimowe statystyki cięcia. Możesz wyłączyć to w ustawieniach."
  6522. #~ msgctxt "@action:button"
  6523. #~ msgid "Dismiss"
  6524. #~ msgstr "Anuluj"
  6525. #~ msgctxt "@menuitem"
  6526. #~ msgid "Global"
  6527. #~ msgstr "Globalny"
  6528. #~ msgctxt "@label crash message"
  6529. #~ msgid ""
  6530. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6531. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6532. #~ " "
  6533. #~ msgstr ""
  6534. #~ "<p><b>Wystąpił fatalny błąd. Proszę wyślij do nas ten Raport Błędu, abyśmy mogli naprawić błąd</p></b>\n"
  6535. #~ " <p>Proszę użyj przycisku \"Wyślij raport\", aby wysłać raport błędu automatycznie na nasze serwery.</p>\n"
  6536. #~ " "
  6537. #~ msgctxt "@label Cura version"
  6538. #~ msgid "<b>Cura version:</b> {version}<br/>"
  6539. #~ msgstr "<b>Wersja Cura:</b> {version}<br/>"
  6540. #~ msgctxt "@label Platform"
  6541. #~ msgid "<b>Platform:</b> {platform}<br/>"
  6542. #~ msgstr "<b>Platforma:</b> {platform}<br/>"
  6543. #~ msgctxt "@label Qt version"
  6544. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  6545. #~ msgstr "<b>Wersja Qt:</b> {qt}<br/>"
  6546. #~ msgctxt "@label PyQt version"
  6547. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  6548. #~ msgstr "<b>Wersja PyQt:</b> {pyqt}<br/>"
  6549. #~ msgctxt "@label OpenGL"
  6550. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  6551. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  6552. #~ msgctxt "@title:groupbox"
  6553. #~ msgid "Exception traceback"
  6554. #~ msgstr "Śledzenie błędów"
  6555. #~ msgctxt "@label"
  6556. #~ msgid "Material diameter"
  6557. #~ msgstr "Średnica materiału"
  6558. #~ msgctxt "@title:window"
  6559. #~ msgid "Cura SolidWorks Plugin Configuration"
  6560. #~ msgstr "Konfiguracja Wtyczki Cura SolidWorks"
  6561. #~ msgctxt "@action:label"
  6562. #~ msgid "Default quality of the exported STL:"
  6563. #~ msgstr "Domyślna jakość eksportowanego STL:"
  6564. #~ msgctxt "@option:curaSolidworksStlQuality"
  6565. #~ msgid "Always ask"
  6566. #~ msgstr "Zawsze pytaj"
  6567. #~ msgctxt "@option:curaSolidworksStlQuality"
  6568. #~ msgid "Always use Fine quality"
  6569. #~ msgstr "Zawsze używaj Dobrej jakości"
  6570. #~ msgctxt "@option:curaSolidworksStlQuality"
  6571. #~ msgid "Always use Coarse quality"
  6572. #~ msgstr "Zawsze używaj Słabej jakości"
  6573. #~ msgctxt "@title:window"
  6574. #~ msgid "Import SolidWorks File as STL..."
  6575. #~ msgstr "Importuj Plik SolidWorks jako STL..."
  6576. #~ msgctxt "@info:tooltip"
  6577. #~ msgid "Quality of the Exported STL"
  6578. #~ msgstr "Jakość Eksportowanego STL"
  6579. #~ msgctxt "@action:label"
  6580. #~ msgid "Quality"
  6581. #~ msgstr "Jakość"
  6582. #~ msgctxt "@option:curaSolidworksStlQuality"
  6583. #~ msgid "Coarse"
  6584. #~ msgstr "Słaba"
  6585. #~ msgctxt "@option:curaSolidworksStlQuality"
  6586. #~ msgid "Fine"
  6587. #~ msgstr "Dobra"
  6588. #~ msgctxt "@"
  6589. #~ msgid "No Profile Available"
  6590. #~ msgstr "Brak Dostępnego Profilu"
  6591. #~ msgctxt "@label"
  6592. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  6593. #~ msgstr "To ustawienie jest zawsze dzielone między wszystkie ekstrudery. Zmiana jego wartości tutaj spowoduje zmianę dla wszystkich ekstruderów"
  6594. #~ msgctxt "@tooltip"
  6595. #~ msgid "<b>Time specification</b><br/><table>"
  6596. #~ msgstr "<b>Szacowany czas</b><br/><table>"
  6597. #~ msgctxt "@action:inmenu menubar:view"
  6598. #~ msgid "&Reset camera position"
  6599. #~ msgstr "&Zresetuj pozycję kamery"
  6600. #~ msgctxt "@title:menu menubar:file"
  6601. #~ msgid "Save project"
  6602. #~ msgstr "Zapisz projekt"
  6603. #~ msgctxt "@title:tab"
  6604. #~ msgid "Prepare"
  6605. #~ msgstr "Przygotuj"
  6606. #~ msgctxt "@title:tab"
  6607. #~ msgid "Monitor"
  6608. #~ msgstr "Monitor"
  6609. #~ msgctxt "@label"
  6610. #~ msgid "<a href='%1'>Check compatibility</a>"
  6611. #~ msgstr "<a href='%1'>Sprawdź kompatybilność</a>"
  6612. #~ msgctxt "description"
  6613. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  6614. #~ msgstr "Daje tobie możliwość otwierania plików poprzez SolidWorks. Pliki są potem konwertowane i ładowane do Cura"
  6615. #~ msgctxt "@label:status"
  6616. #~ msgid "Blocked"
  6617. #~ msgstr "Zablokowany"
  6618. #~ msgctxt "@label:status"
  6619. #~ msgid "Can't start print"
  6620. #~ msgstr "Nie mogę rozpocząć drukowania"
  6621. #~ msgctxt "@action:button"
  6622. #~ msgid "Open Connect.."
  6623. #~ msgstr "Otwórz Connect.."
  6624. #~ msgctxt "@info:title"
  6625. #~ msgid "Print Details"
  6626. #~ msgstr "Szczegółu druku"
  6627. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6628. #~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB."
  6629. #~ msgstr "Aby upewnić się że twoja {machine_name} jest wyposażona w najnowsze opcje rekomendowane jest aktualizowanie oprogramowania regularnie. Może to być wykonane na {machine_name} (kiedy jest podłączona do sieci) lub przez USB."
  6630. #~ msgctxt "@info:title"
  6631. #~ msgid "Layer View"
  6632. #~ msgstr "Widok warstwy"
  6633. #~ msgctxt "@menuitem"
  6634. #~ msgid "Browse plugins"
  6635. #~ msgstr "Przeglądaj wtyczki"
  6636. #~ msgctxt "@info:title"
  6637. #~ msgid "Export Details"
  6638. #~ msgstr "Szczegóły Eskportu"
  6639. #~ msgctxt "@label"
  6640. #~ msgid ""
  6641. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6642. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6643. #~ " "
  6644. #~ msgstr ""
  6645. #~ "<p>Pojawił się fatalny wyjątek, z którego nie możemy odzyskać!</p>\n"
  6646. #~ " <p>Aby przesłać zgłoszenie błędu, skorzystaj z poniższych informacji <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6647. #~ " "
  6648. #~ msgctxt "@action:button"
  6649. #~ msgid "Open Web Page"
  6650. #~ msgstr "Otwórz stronę sieci Web"
  6651. #~ msgctxt "@action:button"
  6652. #~ msgid "Ok"
  6653. #~ msgstr "Ok"
  6654. #~ msgctxt "@label"
  6655. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  6656. #~ msgstr "Ta drukarka nie została ustawiona do hostowania grupy podłączonych drukarek Ultimaker 3"
  6657. #~ msgctxt "@label"
  6658. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  6659. #~ msgstr "Ta drukarka nie została ustawiona do hostowania grupy %1 podłączonych drukarek Ultimaker 3"
  6660. #~ msgctxt "@label"
  6661. #~ msgid "Completed on: "
  6662. #~ msgstr "Zakończono:"
  6663. #~ msgctxt "@info:tooltip"
  6664. #~ msgid "Opens the print jobs page with your default web browser."
  6665. #~ msgstr "Otwiera stronę zadań drukowania za pomocą domyślnej przeglądarki."
  6666. #~ msgctxt "@label"
  6667. #~ msgid "PRINTER GROUP"
  6668. #~ msgstr "GRUPA DRUKAREK"
  6669. #~ msgctxt "@action:warning"
  6670. #~ msgid "Loading a project will clear all models on the buildplate"
  6671. #~ msgstr "Załadowanie projektu spowoduje usunięcie wszystkich modeli ze stołu"
  6672. #~ msgctxt "@label"
  6673. #~ msgid ""
  6674. #~ " plugin contains a license.\n"
  6675. #~ "You need to accept this license to install this plugin.\n"
  6676. #~ "Do you agree with the terms below?"
  6677. #~ msgstr ""
  6678. #~ " wtyczka zawiera licencje.\n"
  6679. #~ "Musisz zaakceptować tą licencję, aby zainstalować wtyczkę.\n"
  6680. #~ "Akceptujesz poniższe postanowienia?"
  6681. #~ msgctxt "@label"
  6682. #~ msgid "00h 00min"
  6683. #~ msgstr "00h 00min"
  6684. #~ msgctxt "@tooltip"
  6685. #~ msgid "<b>Time information</b>"
  6686. #~ msgstr "<b>Informacje o czasie</b>"
  6687. #~ msgctxt "@description"
  6688. #~ msgid "Print time"
  6689. #~ msgstr "Czas druku"
  6690. #~ msgctxt "@label"
  6691. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6692. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6693. #~ msgctxt "@label"
  6694. #~ msgid "%1m / ~ %2g"
  6695. #~ msgstr "%1m / ~ %2g"
  6696. #~ msgctxt "@title:window"
  6697. #~ msgid "Cura"
  6698. #~ msgstr "Cura"
  6699. #~ msgctxt "@label"
  6700. #~ msgid "<a href='%1'>Check material compatibility</a>"
  6701. #~ msgstr "<a href='%1'>Sprawdź kompatybilność materiału</a>"
  6702. #~ msgctxt "name"
  6703. #~ msgid "UM3 Network Connection (Cluster)"
  6704. #~ msgstr "Połączenie Sieciowe UM3 (Grupa)"
  6705. #~ msgctxt "description"
  6706. #~ msgid "Provides the Layer view."
  6707. #~ msgstr "Zapewnia widok warstw."
  6708. #~ msgctxt "name"
  6709. #~ msgid "Layer View"
  6710. #~ msgstr "Widok Warstw"
  6711. #~ msgctxt "@item:inlistbox"
  6712. #~ msgid "X-Ray"
  6713. #~ msgstr "Prześwietlenie"
  6714. #~ msgctxt "@label"
  6715. #~ msgid "Doodle3D"
  6716. #~ msgstr "Doodle3D"
  6717. #~ msgctxt "@info:whatsthis"
  6718. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6719. #~ msgstr "Akceptuje G-code i wysyła je przez WiFi do Doodle3D WiFi-Box."
  6720. #~ msgctxt "@item:inmenu"
  6721. #~ msgid "Doodle3D printing"
  6722. #~ msgstr "Drukowanie Doodle3D"
  6723. #~ msgctxt "@action:button"
  6724. #~ msgid "Print with Doodle3D"
  6725. #~ msgstr "Drukuj z Doodle3D"
  6726. #~ msgctxt "@info:tooltip"
  6727. #~ msgid "Print with "
  6728. #~ msgstr "Drukuj z "
  6729. #~ msgctxt "@title:menu"
  6730. #~ msgid "Doodle3D"
  6731. #~ msgstr "Doodle3D"
  6732. #~ msgctxt "@item:inlistbox"
  6733. #~ msgid "Enable Scan devices..."
  6734. #~ msgstr "Włącz skanowanie urządzeń ..."
  6735. #~ msgctxt "@info:progress"
  6736. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  6737. #~ msgstr "Zapisywanie na dysk wymienny <filename>{0}</filename>"
  6738. #~ msgctxt "@info:status"
  6739. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  6740. #~ msgstr "Nie udało się zapisać do <filename>{0}</filename>: <message>{1}</message>"
  6741. #~ msgctxt "@info:status"
  6742. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  6743. #~ msgstr "Pamiętaj, że musisz ponownie otworzyć plik SolidWorks ręcznie! Przeładowanie modelu nie będzie działać!"
  6744. #~ msgctxt "@item:inlistbox"
  6745. #~ msgid "Layers"
  6746. #~ msgstr "Warstwy"
  6747. #~ msgid "Browse plugins"
  6748. #~ msgstr "Przeglądaj wtyczki"
  6749. #~ msgctxt "@item:inmenu"
  6750. #~ msgid "Solid"
  6751. #~ msgstr "Bryła"
  6752. #~ msgctxt "@label"
  6753. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  6754. #~ msgstr "Plik <filename>{0}</filename> już istnieje. Czy na pewno chcesz go nadpisać?"
  6755. #~ msgctxt "@info:status"
  6756. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  6757. #~ msgstr "Nie można wyeksportować profilu do <filename>{0}</filename>: <message>{1}</message>"
  6758. #~ msgctxt "@info:status"
  6759. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  6760. #~ msgstr "Nie można wyeksportować profilu do <filename>{0}</filename>: Wtyczka Cura zgłosiła błąd."
  6761. #~ msgctxt "@info:status"
  6762. #~ msgid "Exported profile to <filename>{0}</filename>"
  6763. #~ msgstr "Wyeksportowano profil do <filename>{0}</filename>"
  6764. #~ msgctxt "@info:status"
  6765. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6766. #~ msgstr "Nie można zaimportować profilu z <filename>{0}</filename>: <message>{1}</message>"
  6767. #~ msgctxt "@title:window"
  6768. #~ msgid "Doodle3D Settings"
  6769. #~ msgstr "Ustawienia Doodle3D"
  6770. #~ msgctxt "@title:window"
  6771. #~ msgid "Print to: %1"
  6772. #~ msgstr "Drukuj do: %1"
  6773. #~ msgctxt "@label"
  6774. #~ msgid "Extruder Temperature: %1/%2°C"
  6775. #~ msgstr "Temperatura dyszy: %1/%2°C"
  6776. #~ msgctxt "@label"
  6777. #~ msgid "Bed Temperature: %1/%2°C"
  6778. #~ msgstr "Temperatura stołu: %1/%2°C"
  6779. #~ msgctxt "@label"
  6780. #~ msgid "%1"
  6781. #~ msgstr "%1"
  6782. #~ msgctxt "@label"
  6783. #~ msgid "View Mode: Layers"
  6784. #~ msgstr "Tryb widoku: warstwy"
  6785. #~ msgctxt "@info:status"
  6786. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  6787. #~ msgstr "Nie można zaimportować materiału <filename>%1</filename>: <message>%2</message>"
  6788. #~ msgctxt "@info:status"
  6789. #~ msgid "Successfully imported material <filename>%1</filename>"
  6790. #~ msgstr "Pomyślnie zaimportowano materiał <filename>%1</filename>"
  6791. #~ msgctxt "@info:status"
  6792. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  6793. #~ msgstr "Nie udało się wyeksportować materiału do <filename>%1</filename>: <message>%2</message>"
  6794. #~ msgctxt "@info:status"
  6795. #~ msgid "Successfully exported material to <filename>%1</filename>"
  6796. #~ msgstr "Udało się wyeksportować materiał do <filename>%1</filename>"
  6797. #~ msgctxt "@label"
  6798. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  6799. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  6800. #~ msgctxt "@label"
  6801. #~ msgid "%1 m / ~ %2 g"
  6802. #~ msgstr "%1 m / ~ %2 g"
  6803. #~ msgctxt "@label"
  6804. #~ msgid "Hotend"
  6805. #~ msgstr "Głowica"
  6806. #~ msgctxt "@action:button"
  6807. #~ msgid "View Mode"
  6808. #~ msgstr "Tryb podglądu"
  6809. #~ msgctxt "@title:tab"
  6810. #~ msgid "Print"
  6811. #~ msgstr "Drukuj"
  6812. #~ msgctxt "@label"
  6813. #~ msgid "0%"
  6814. #~ msgstr "0%"
  6815. #~ msgctxt "@label"
  6816. #~ msgid "Empty infill will leave your model hollow with low strength."
  6817. #~ msgstr "Puste wypełnienie pozostawi twój model pusty z niską wytrzymałością."
  6818. #~ msgctxt "@label"
  6819. #~ msgid "20%"
  6820. #~ msgstr "20%"
  6821. #~ msgctxt "@label"
  6822. #~ msgid "Light (20%) infill will give your model an average strength."
  6823. #~ msgstr "Lekkie (20%) wypełnienie sprawi, że model będzie średniej wytrzymałości."
  6824. #~ msgctxt "@label"
  6825. #~ msgid "50%"
  6826. #~ msgstr "50%"
  6827. #~ msgctxt "@label"
  6828. #~ msgid "Dense (50%) infill will give your model an above average strength."
  6829. #~ msgstr "Gęste wypełnienie (50%) da modelowi wyższą niż średnia wytrzymałość."
  6830. #~ msgctxt "@label"
  6831. #~ msgid "100%"
  6832. #~ msgstr "100%"
  6833. #~ msgctxt "@label"
  6834. #~ msgid "Solid (100%) infill will make your model completely solid."
  6835. #~ msgstr "Pełne (100%) wypełnienie sprawi, że model będzie całkowicie wypełniony."
  6836. #~ msgctxt "@label"
  6837. #~ msgid "Gradual"
  6838. #~ msgstr "Stopniowy"
  6839. #~ msgctxt "description"
  6840. #~ msgid "Provides support for writing X3G files"
  6841. #~ msgstr "Zapewnia wsparcie w tworzeniu plików X3G"
  6842. #~ msgctxt "name"
  6843. #~ msgid "X3G Writer"
  6844. #~ msgstr "X3G Writer"
  6845. #~ msgctxt "@label"
  6846. #~ msgid "Machine Settings action"
  6847. #~ msgstr "Czynność ustawienia drukarki"
  6848. #~ msgctxt "@info:whatsthis"
  6849. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6850. #~ msgstr "Zapewnia sposób zmiany ustawień maszyn (takich jak objętość robocza, rozmiar dyszy itd.)"
  6851. #~ msgctxt "@label"
  6852. #~ msgid "X-Ray View"
  6853. #~ msgstr "Widok rentgenowski"
  6854. #~ msgctxt "@info:whatsthis"
  6855. #~ msgid "Provides the X-Ray view."
  6856. #~ msgstr "Zapewnia widok rentgenowski."
  6857. #~ msgctxt "@label"
  6858. #~ msgid "X3D Reader"
  6859. #~ msgstr "Czytnik X3D"
  6860. #~ msgctxt "@info:whatsthis"
  6861. #~ msgid "Provides support for reading X3D files."
  6862. #~ msgstr "Zapewnia obsługę czytania plików X3D."
  6863. #~ msgctxt "@label"
  6864. #~ msgid "GCode Writer"
  6865. #~ msgstr "GCode Autor"
  6866. #~ msgctxt "@info:whatsthis"
  6867. #~ msgid "Writes GCode to a file."
  6868. #~ msgstr "Zapisuje kod GCode do pliku."
  6869. #~ msgctxt "@action:button Preceded by 'Ready to'."
  6870. #~ msgid "Print with Doodle3D"
  6871. #~ msgstr "Drukuj z Doodle3D"
  6872. #~ msgctxt "@info:whatsthis"
  6873. #~ msgid "Shows changes since latest checked version."
  6874. #~ msgstr "Pokazuje zmiany od ostatniej sprawdzonej wersji."
  6875. #~ msgctxt "@label"
  6876. #~ msgid "Profile flatener"
  6877. #~ msgstr "Charakterystyka Profila"
  6878. #~ msgctxt "@info:whatsthis"
  6879. #~ msgid "Create a flattend quality changes profile."
  6880. #~ msgstr "Utwórz charakterystyczny profil jakości"
  6881. #~ msgctxt "@label"
  6882. #~ msgid "USB printing"
  6883. #~ msgstr "Drukowanie USB"
  6884. #~ msgctxt "@info:whatsthis"
  6885. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  6886. #~ msgstr "Akceptuje G-code i wysyła je do drukarki. Wtyczka może również aktualizować oprogramowanie układowe."
  6887. #~ msgctxt "X3G Writer Plugin Description"
  6888. #~ msgid "Writes X3G to a file"
  6889. #~ msgstr "Zapisuje do pliku X3G"
  6890. #~ msgctxt "@label"
  6891. #~ msgid "Removable Drive Output Device Plugin"
  6892. #~ msgstr "Usuwana wtyczka urządzenia wyjściowego napędu"
  6893. #~ msgctxt "@info:whatsthis"
  6894. #~ msgid "Provides removable drive hotplugging and writing support."
  6895. #~ msgstr "Zapewnia podłączanie wymiennego dysku i zapisywania na bieżąco."
  6896. #~ msgctxt "@info:whatsthis"
  6897. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6898. #~ msgstr "Zarządza połączeniami sieciowymi z drukarkami Ultimaker 3"
  6899. #~ msgctxt "@label"
  6900. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6901. #~ msgstr "Różne Print core (Cura: {0}, Drukarka: {1}) wybrane dla dyszy {2}"
  6902. #~ msgctxt "@label"
  6903. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6904. #~ msgstr "Print core {0} nie jest poprawnie skalibrowany. Na drukarce powinna zostać przeprowadzona Kalibracja XY."
  6905. #~ msgctxt "@label"
  6906. #~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer."
  6907. #~ msgstr "Print core'y i/lub materiały w twojej drukarce różnią się od tych, które zostały wybrane w obecnym projekcie. Dla najlepszego rezultatu, zawsze tnij modele dla pint core'ów i materiałów, które są umieszczone w twojej drukarce."
  6908. #~ msgctxt "@label"
  6909. #~ msgid "Post Processing"
  6910. #~ msgstr "Przetwarzanie "
  6911. #~ msgctxt "Description of plugin"
  6912. #~ msgid "Extension that allows for user created scripts for post processing"
  6913. #~ msgstr "Rozszerzenie, które pozwala tworzyć skrypty dla użytkowników po przetworzeniu"
  6914. #~ msgctxt "@label"
  6915. #~ msgid "Auto Save"
  6916. #~ msgstr "Automatyczne zapisywanie"
  6917. #~ msgctxt "@info:whatsthis"
  6918. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6919. #~ msgstr "Automatycznie zapisuje ustawienia, maszyny i profile po zmianach."
  6920. #~ msgctxt "@label"
  6921. #~ msgid "Slice info"
  6922. #~ msgstr "Cura informacja"
  6923. #~ msgctxt "@info:whatsthis"
  6924. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  6925. #~ msgstr "Składa anonimową listę cięc. Można wyłączyć przez preferencje."
  6926. #~ msgctxt "@info"
  6927. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  6928. #~ msgstr "Cura zbiera anonimowe statystyki. Możesz wyłączyć to w preferencjach"
  6929. #~ msgctxt "@label"
  6930. #~ msgid "Material Profiles"
  6931. #~ msgstr "Profile materiałów"
  6932. #~ msgctxt "@info:whatsthis"
  6933. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  6934. #~ msgstr "Zapewnia możliwość odczytu i zapisu profili materiałów opartych na XML."
  6935. #~ msgctxt "@label"
  6936. #~ msgid "Legacy Cura Profile Reader"
  6937. #~ msgstr "Starszy czytnik Cura"
  6938. #~ msgctxt "@info:whatsthis"
  6939. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  6940. #~ msgstr "Zapewnia obsługę importowania profili w starszych wersjach Cura."
  6941. #~ msgctxt "@label"
  6942. #~ msgid "GCode Profile Reader"
  6943. #~ msgstr "Czytnik profilu GCode"
  6944. #~ msgctxt "@info:whatsthis"
  6945. #~ msgid "Provides support for importing profiles from g-code files."
  6946. #~ msgstr "Zapewnia obsługę importowania profili z plików g-code."
  6947. #~ msgctxt "@label"
  6948. #~ msgid "Layer View"
  6949. #~ msgstr "Widok warstwy"
  6950. #~ msgctxt "@info:whatsthis"
  6951. #~ msgid "Provides the Layer view."
  6952. #~ msgstr "Zapewnia widok warstwy."
  6953. #~ msgctxt "@label"
  6954. #~ msgid "Version Upgrade 2.5 to 2.6"
  6955. #~ msgstr "Aktualizacja wersji 2.5 do 2.6"
  6956. #~ msgctxt "@info:whatsthis"
  6957. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  6958. #~ msgstr "Uaktualnia konfiguracji z Cura 2.5 do Cura 2.6."
  6959. #~ msgctxt "@label"
  6960. #~ msgid "Version Upgrade 2.1 to 2.2"
  6961. #~ msgstr "Aktualizacja wersji 2.1 do 2.2"
  6962. #~ msgctxt "@info:whatsthis"
  6963. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  6964. #~ msgstr "Uaktualnia konfiguracji z Cura 2.1 do Cura 2.2."
  6965. #~ msgctxt "@label"
  6966. #~ msgid "Version Upgrade 2.2 to 2.4"
  6967. #~ msgstr "Aktualizacja wersji 2.2 do 2.4"
  6968. #~ msgctxt "@info:whatsthis"
  6969. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  6970. #~ msgstr "Uaktualnia konfiguracji z Cura 2.2 do Cura 2.4."
  6971. #~ msgctxt "@label"
  6972. #~ msgid "Image Reader"
  6973. #~ msgstr "Czytnik Obrazów"
  6974. #~ msgctxt "@info:whatsthis"
  6975. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  6976. #~ msgstr "Umożliwia generowanie drukowanej geometrii z plików obrazów 2D."
  6977. #~ msgctxt "@label"
  6978. #~ msgid "CuraEngine Backend"
  6979. #~ msgstr "CuraEngine Backend"
  6980. #~ msgctxt "@info:whatsthis"
  6981. #~ msgid "Provides the link to the CuraEngine slicing backend."
  6982. #~ msgstr "Zapewnia połączenie do narzędzi cięcia CuraEngine."
  6983. #~ msgctxt "@label"
  6984. #~ msgid "Per Model Settings Tool"
  6985. #~ msgstr "Narzędzie ustawień osobno dla każdego modelu"
  6986. #~ msgctxt "@info:whatsthis"
  6987. #~ msgid "Provides the Per Model Settings."
  6988. #~ msgstr "Zapewnia ustawienia każdego modelu osobno."
  6989. #~ msgctxt "@label"
  6990. #~ msgid "3MF Reader"
  6991. #~ msgstr "Czytnik 3MF"
  6992. #~ msgctxt "@info:whatsthis"
  6993. #~ msgid "Provides support for reading 3MF files."
  6994. #~ msgstr "Zapewnia obsługę czytania plików 3MF."
  6995. #~ msgctxt "@label"
  6996. #~ msgid "Solid View"
  6997. #~ msgstr "Widok bryły"
  6998. #~ msgctxt "@info:whatsthis"
  6999. #~ msgid "Provides a normal solid mesh view."
  7000. #~ msgstr "Zapewnia normalny widok siatki."
  7001. #~ msgctxt "@label"
  7002. #~ msgid "G-code Reader"
  7003. #~ msgstr "Czytnik G-code"
  7004. #~ msgctxt "@info:whatsthis"
  7005. #~ msgid "Allows loading and displaying G-code files."
  7006. #~ msgstr "Umożliwia ładowanie i wyświetlanie plików G-code."
  7007. #~ msgctxt "@label"
  7008. #~ msgid "Cura Profile Writer"
  7009. #~ msgstr "Pisarz Profili Cura"
  7010. #~ msgctxt "@info:whatsthis"
  7011. #~ msgid "Provides support for exporting Cura profiles."
  7012. #~ msgstr "Zapewnia obsługę eksportowania profili Cura."
  7013. #~ msgctxt "@label"
  7014. #~ msgid "3MF Writer"
  7015. #~ msgstr "3MF Writer"
  7016. #~ msgctxt "@info:whatsthis"
  7017. #~ msgid "Provides support for writing 3MF files."
  7018. #~ msgstr "Zapewnia obsługę pisania plików 3MF."
  7019. #~ msgctxt "@label"
  7020. #~ msgid "Ultimaker machine actions"
  7021. #~ msgstr "Działania maszyny Ultimaker"
  7022. #~ msgctxt "@info:whatsthis"
  7023. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7024. #~ msgstr "Zapewnia działania maszyny Ultimaker (takie jak kreator poziomowania stołu, wybierania ulepszeń itd.)"
  7025. #~ msgctxt "@label"
  7026. #~ msgid "Cura Profile Reader"
  7027. #~ msgstr "Czytnik profilu Cura"
  7028. #~ msgctxt "@info:whatsthis"
  7029. #~ msgid "Provides support for importing Cura profiles."
  7030. #~ msgstr "Zapewnia wsparcie dla importowania profili Cura."
  7031. #~ msgctxt "@info"
  7032. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  7033. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  7034. #~ msgctxt "@label"
  7035. #~ msgid "Build Plate Shape"
  7036. #~ msgstr "Kształt stołu"
  7037. #~ msgctxt "@option:check"
  7038. #~ msgid "Machine Center is Zero"
  7039. #~ msgstr "Środek drukarki to zero"
  7040. #~ msgctxt "@option:check"
  7041. #~ msgid "Heated Bed"
  7042. #~ msgstr "Stół podgrzewany"
  7043. #~ msgctxt "@label"
  7044. #~ msgid "GCode Flavor"
  7045. #~ msgstr "GCode Flavor"
  7046. #~ msgctxt "@label"
  7047. #~ msgid "Material Diameter"
  7048. #~ msgstr "Średnica filamentu"
  7049. #~ msgctxt "@label"
  7050. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  7051. #~ msgstr "Jeśli drukarka nie ma na liście, przeczytaj <a href='%1'>przewodnik o rozwiązywaniu problemów z drukowaniem sieciowym</a>"
  7052. #~ msgctxt "@item:inlistbox"
  7053. #~ msgid "Ultimaker"
  7054. #~ msgstr "Ultimaker"
  7055. #~ msgctxt "@label"
  7056. #~ msgid "Support library for scientific computing "
  7057. #~ msgstr "Wsparcie biblioteki dla obliczeń naukowych "
  7058. #~ msgctxt "@tooltip"
  7059. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  7060. #~ msgstr "<b>Ustawienia drukowania</b><br/><br/>Edytuj lub przejrzyj ustawienia dla aktywnego zadania."
  7061. #~ msgctxt "@tooltip"
  7062. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  7063. #~ msgstr "<b>Monitor wydruku</b><br/><br/>Monitorowanie stanu podłączonej drukarki i aktualnego zadania."
  7064. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  7065. #~ msgid "Automatic: %1"
  7066. #~ msgstr "Automatyczny: %1"
  7067. #~ msgctxt "@label:PrintjobStatus"
  7068. #~ msgid "Please load a 3d model"
  7069. #~ msgstr "Proszę załaduj model 3d"
  7070. #~ msgctxt "@label"
  7071. #~ msgid "Print Selected Model with %1"
  7072. #~ msgid_plural "Print Selected Models With %1"
  7073. #~ msgstr[0] "Wydrukuj wybrany model z %1"
  7074. #~ msgstr[1] "Wydrukuj wybrane modele z %1"